]>
git.saurik.com Git - apple/libinfo.git/blob - rpc.subproj/auth_unix.c
2 * Copyright (c) 1999 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * Portions Copyright (c) 1999 Apple Computer, Inc. All Rights
7 * Reserved. This file contains Original Code and/or Modifications of
8 * Original Code as defined in and that are subject to the Apple Public
9 * Source License Version 1.1 (the "License"). You may not use this file
10 * except in compliance with the License. Please obtain a copy of the
11 * License at http://www.apple.com/publicsource and read it before using
14 * The Original Code and all software distributed under the License are
15 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
16 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
17 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE OR NON- INFRINGEMENT. Please see the
19 * License for the specific language governing rights and limitations
22 * @APPLE_LICENSE_HEADER_END@
25 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
26 * unrestricted use provided that this legend is included on all tape
27 * media and as a part of the software program in whole or part. Users
28 * may copy or modify Sun RPC without charge, but are not authorized
29 * to license or distribute it to anyone else except as part of a product or
30 * program developed by the user.
32 * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
33 * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
34 * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
36 * Sun RPC is provided with no support and without any obligation on the
37 * part of Sun Microsystems, Inc. to assist in its use, correction,
38 * modification or enhancement.
40 * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
41 * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
42 * OR ANY PART THEREOF.
44 * In no event will Sun Microsystems, Inc. be liable for any lost revenue
45 * or profits or other special, indirect and consequential damages, even if
46 * Sun has been advised of the possibility of such damages.
48 * Sun Microsystems, Inc.
50 * Mountain View, California 94043
53 #if defined(LIBC_SCCS) && !defined(lint)
54 /*static char *sccsid = "from: @(#)auth_unix.c 1.19 87/08/11 Copyr 1984 Sun Micro";*/
55 /*static char *sccsid = "from: @(#)auth_unix.c 2.2 88/08/01 4.0 RPCSRC";*/
56 static char *rcsid
= "$Id: auth_unix.c,v 1.4 2002/02/19 20:36:22 epeyton Exp $";
60 * auth_unix.c, Implements UNIX style authentication parameters.
62 * Copyright (C) 1984, Sun Microsystems, Inc.
64 * The system is very weak. The client uses no encryption for it's
65 * credentials and only sends null verifiers. The server sends backs
66 * null verifiers or optionally a verifier that suggests a new short hand
67 * for the credentials.
75 #include <sys/param.h>
76 #include <sys/types.h>
77 #include <netinet/in.h>
79 #include <rpc/types.h>
82 #include <rpc/auth_unix.h>
84 extern bool_t
xdr_opaque_auth();
87 * Unix authenticator operations vector
89 static void authunix_nextverf();
90 static bool_t
authunix_marshal();
91 static bool_t
authunix_validate();
92 static bool_t
authunix_refresh();
93 static void authunix_destroy();
95 static struct auth_ops auth_unix_ops
= {
104 * This struct is pointed to by the ah_private field of an auth_handle.
107 struct opaque_auth au_origcred
; /* original credentials */
108 struct opaque_auth au_shcred
; /* short hand cred */
110 uint32_t au_shfaults
; /* short hand cache faults */
112 u_long au_shfaults
; /* short hand cache faults */
114 char au_marshed
[MAX_AUTH_BYTES
];
115 u_int au_mpos
; /* xdr pos at end of marshed */
117 #define AUTH_PRIVATE(auth) ((struct audata *)auth->ah_private)
119 static void marshal_new_auth();
123 * Create a unix style authenticator.
124 * Returns an auth handle with the given stuff in it.
127 authunix_create(machname
, uid
, gid
, len
, aup_gids
)
134 struct authunix_parms aup
;
135 char mymem
[MAX_AUTH_BYTES
];
139 register struct audata
*au
;
142 * Allocate and set up auth handle
144 auth
= (AUTH
*)mem_alloc(sizeof(*auth
));
147 (void)fprintf(stderr
, "authunix_create: out of memory\n");
151 au
= (struct audata
*)mem_alloc(sizeof(*au
));
154 (void)fprintf(stderr
, "authunix_create: out of memory\n");
158 auth
->ah_ops
= &auth_unix_ops
;
159 auth
->ah_private
= (caddr_t
)au
;
160 auth
->ah_verf
= au
->au_shcred
= _null_auth
;
164 * fill in param struct from the given params
166 (void)gettimeofday(&now
, (struct timezone
*)0);
167 aup
.aup_time
= now
.tv_sec
;
168 aup
.aup_machname
= machname
;
171 aup
.aup_len
= (u_int
)len
;
172 aup
.aup_gids
= aup_gids
;
175 * Serialize the parameters into origcred
177 xdrmem_create(&xdrs
, mymem
, MAX_AUTH_BYTES
, XDR_ENCODE
);
178 if (! xdr_authunix_parms(&xdrs
, &aup
))
180 au
->au_origcred
.oa_length
= len
= XDR_GETPOS(&xdrs
);
181 au
->au_origcred
.oa_flavor
= AUTH_UNIX
;
183 au
->au_origcred
.oa_base
= mem_alloc((u_int
) len
);
185 if ((au
->au_origcred
.oa_base
= mem_alloc((u_int
) len
)) == NULL
) {
186 (void)fprintf(stderr
, "authunix_create: out of memory\n");
190 bcopy(mymem
, au
->au_origcred
.oa_base
, (u_int
)len
);
193 * set auth handle to reflect new cred.
195 auth
->ah_cred
= au
->au_origcred
;
196 marshal_new_auth(auth
);
201 * Some servers will refuse mounts if the group list is larger
202 * than it expects (like 8). This allows the application to set
203 * the maximum size of the group list that will be sent.
206 static int maxgrplist
= NGROUPS
;
209 set_rpc_maxgrouplist(num
)
217 * Returns an auth handle with parameters determined by doing lots of
221 authunix_create_default()
224 char machname
[MAX_MACHINE_NAME
+ 1];
229 if (gethostname(machname
, MAX_MACHINE_NAME
) == -1)
231 machname
[MAX_MACHINE_NAME
] = 0;
234 if ((len
= getgroups(NGROUPS
, gids
)) < 0)
236 if (len
> maxgrplist
) {
239 return (authunix_create(machname
, uid
, gid
, len
, (int *)gids
));
243 * authunix operations
247 authunix_nextverf(auth
)
250 /* no action necessary */
254 authunix_marshal(auth
, xdrs
)
258 register struct audata
*au
= AUTH_PRIVATE(auth
);
260 return (XDR_PUTBYTES(xdrs
, au
->au_marshed
, au
->au_mpos
));
264 authunix_validate(auth
, verf
)
266 struct opaque_auth verf
;
268 register struct audata
*au
;
271 if (verf
.oa_flavor
== AUTH_SHORT
) {
272 au
= AUTH_PRIVATE(auth
);
273 xdrmem_create(&xdrs
, verf
.oa_base
, verf
.oa_length
, XDR_DECODE
);
275 if (au
->au_shcred
.oa_base
!= NULL
) {
276 mem_free(au
->au_shcred
.oa_base
,
277 au
->au_shcred
.oa_length
);
278 au
->au_shcred
.oa_base
= NULL
;
280 if (xdr_opaque_auth(&xdrs
, &au
->au_shcred
)) {
281 auth
->ah_cred
= au
->au_shcred
;
283 xdrs
.x_op
= XDR_FREE
;
284 (void)xdr_opaque_auth(&xdrs
, &au
->au_shcred
);
285 au
->au_shcred
.oa_base
= NULL
;
286 auth
->ah_cred
= au
->au_origcred
;
288 marshal_new_auth(auth
);
294 authunix_refresh(auth
)
297 register struct audata
*au
= AUTH_PRIVATE(auth
);
298 struct authunix_parms aup
;
303 if (auth
->ah_cred
.oa_base
== au
->au_origcred
.oa_base
) {
304 /* there is no hope. Punt */
309 /* first deserialize the creds back into a struct authunix_parms */
310 aup
.aup_machname
= NULL
;
311 aup
.aup_gids
= (int *)NULL
;
312 xdrmem_create(&xdrs
, au
->au_origcred
.oa_base
,
313 au
->au_origcred
.oa_length
, XDR_DECODE
);
314 stat
= xdr_authunix_parms(&xdrs
, &aup
);
318 /* update the time and serialize in place */
319 (void)gettimeofday(&now
, (struct timezone
*)0);
320 aup
.aup_time
= now
.tv_sec
;
321 xdrs
.x_op
= XDR_ENCODE
;
322 XDR_SETPOS(&xdrs
, 0);
323 stat
= xdr_authunix_parms(&xdrs
, &aup
);
326 auth
->ah_cred
= au
->au_origcred
;
327 marshal_new_auth(auth
);
329 /* free the struct authunix_parms created by deserializing */
330 xdrs
.x_op
= XDR_FREE
;
331 (void)xdr_authunix_parms(&xdrs
, &aup
);
337 authunix_destroy(auth
)
340 register struct audata
*au
= AUTH_PRIVATE(auth
);
342 mem_free(au
->au_origcred
.oa_base
, au
->au_origcred
.oa_length
);
344 if (au
->au_shcred
.oa_base
!= NULL
)
345 mem_free(au
->au_shcred
.oa_base
, au
->au_shcred
.oa_length
);
347 mem_free(auth
->ah_private
, sizeof(struct audata
));
349 if (auth
->ah_verf
.oa_base
!= NULL
)
350 mem_free(auth
->ah_verf
.oa_base
, auth
->ah_verf
.oa_length
);
352 mem_free((caddr_t
)auth
, sizeof(*auth
));
356 * Marshals (pre-serializes) an auth struct.
357 * sets private data, au_marshed and au_mpos
360 marshal_new_auth(auth
)
364 register XDR
*xdrs
= &xdr_stream
;
365 register struct audata
*au
= AUTH_PRIVATE(auth
);
367 xdrmem_create(xdrs
, au
->au_marshed
, MAX_AUTH_BYTES
, XDR_ENCODE
);
368 if ((! xdr_opaque_auth(xdrs
, &(auth
->ah_cred
))) ||
369 (! xdr_opaque_auth(xdrs
, &(auth
->ah_verf
)))) {
370 perror("auth_none.c - Fatal marshalling problem");
372 au
->au_mpos
= XDR_GETPOS(xdrs
);