Sun Jun 16 00:40:20 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
[glibc.git] / sunrpc / auth_unix.c
blob92703fbbc126c98a717033d83bef7d6ecdcca524
1 /* @(#)auth_unix.c 2.2 88/08/01 4.0 RPCSRC */
2 /*
3 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
4 * unrestricted use provided that this legend is included on all tape
5 * media and as a part of the software program in whole or part. Users
6 * may copy or modify Sun RPC without charge, but are not authorized
7 * to license or distribute it to anyone else except as part of a product or
8 * program developed by the user.
10 * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
11 * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
12 * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
14 * Sun RPC is provided with no support and without any obligation on the
15 * part of Sun Microsystems, Inc. to assist in its use, correction,
16 * modification or enhancement.
18 * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
19 * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
20 * OR ANY PART THEREOF.
22 * In no event will Sun Microsystems, Inc. be liable for any lost revenue
23 * or profits or other special, indirect and consequential damages, even if
24 * Sun has been advised of the possibility of such damages.
26 * Sun Microsystems, Inc.
27 * 2550 Garcia Avenue
28 * Mountain View, California 94043
30 #if !defined(lint) && defined(SCCSIDS)
31 static char sccsid[] = "@(#)auth_unix.c 1.19 87/08/11 Copyr 1984 Sun Micro";
32 #endif
35 * auth_unix.c, Implements UNIX style authentication parameters.
37 * Copyright (C) 1984, Sun Microsystems, Inc.
39 * The system is very weak. The client uses no encryption for it's
40 * credentials and only sends null verifiers. The server sends backs
41 * null verifiers or optionally a verifier that suggests a new short hand
42 * for the credentials.
46 #include <stdio.h>
48 #include <rpc/types.h>
49 #include <rpc/xdr.h>
50 #include <rpc/auth.h>
51 #include <rpc/auth_unix.h>
54 * Unix authenticator operations vector
56 static void authunix_nextverf();
57 static bool_t authunix_marshal();
58 static bool_t authunix_validate();
59 static bool_t authunix_refresh();
60 static void authunix_destroy();
62 static struct auth_ops auth_unix_ops = {
63 authunix_nextverf,
64 authunix_marshal,
65 authunix_validate,
66 authunix_refresh,
67 authunix_destroy
71 * This struct is pointed to by the ah_private field of an auth_handle.
73 struct audata {
74 struct opaque_auth au_origcred; /* original credentials */
75 struct opaque_auth au_shcred; /* short hand cred */
76 u_long au_shfaults; /* short hand cache faults */
77 char au_marshed[MAX_AUTH_BYTES];
78 u_int au_mpos; /* xdr pos at end of marshed */
80 #define AUTH_PRIVATE(auth) ((struct audata *)auth->ah_private)
82 static bool_t marshal_new_auth();
86 * Create a unix style authenticator.
87 * Returns an auth handle with the given stuff in it.
89 AUTH *
90 authunix_create(machname, uid, gid, len, aup_gids)
91 char *machname;
92 int uid;
93 int gid;
94 register int len;
95 int *aup_gids;
97 struct authunix_parms aup;
98 char mymem[MAX_AUTH_BYTES];
99 struct timeval now;
100 XDR xdrs;
101 register AUTH *auth;
102 register struct audata *au;
105 * Allocate and set up auth handle
107 auth = (AUTH *)mem_alloc(sizeof(*auth));
108 #ifndef KERNEL
109 if (auth == NULL) {
110 (void)fprintf(stderr, "authunix_create: out of memory\n");
111 return (NULL);
113 #endif
114 au = (struct audata *)mem_alloc(sizeof(*au));
115 #ifndef KERNEL
116 if (au == NULL) {
117 (void)fprintf(stderr, "authunix_create: out of memory\n");
118 return (NULL);
120 #endif
121 auth->ah_ops = &auth_unix_ops;
122 auth->ah_private = (caddr_t)au;
123 auth->ah_verf = au->au_shcred = _null_auth;
124 au->au_shfaults = 0;
127 * fill in param struct from the given params
129 (void)gettimeofday(&now, (struct timezone *)0);
130 aup.aup_time = now.tv_sec;
131 aup.aup_machname = machname;
132 aup.aup_uid = uid;
133 aup.aup_gid = gid;
134 aup.aup_len = (u_int)len;
135 aup.aup_gids = aup_gids;
138 * Serialize the parameters into origcred
140 xdrmem_create(&xdrs, mymem, MAX_AUTH_BYTES, XDR_ENCODE);
141 if (! xdr_authunix_parms(&xdrs, &aup))
142 abort();
143 au->au_origcred.oa_length = len = XDR_GETPOS(&xdrs);
144 au->au_origcred.oa_flavor = AUTH_UNIX;
145 #ifdef KERNEL
146 au->au_origcred.oa_base = mem_alloc((u_int) len);
147 #else
148 if ((au->au_origcred.oa_base = mem_alloc((u_int) len)) == NULL) {
149 (void)fprintf(stderr, "authunix_create: out of memory\n");
150 return (NULL);
152 #endif
153 bcopy(mymem, au->au_origcred.oa_base, (u_int)len);
156 * set auth handle to reflect new cred.
158 auth->ah_cred = au->au_origcred;
159 marshal_new_auth(auth);
160 return (auth);
164 * Returns an auth handle with parameters determined by doing lots of
165 * syscalls.
167 AUTH *
168 authunix_create_default()
170 register int len;
171 char machname[MAX_MACHINE_NAME + 1];
172 register int uid;
173 register int gid;
174 int gids[NGRPS];
176 if (gethostname(machname, MAX_MACHINE_NAME) == -1)
177 abort();
178 machname[MAX_MACHINE_NAME] = 0;
179 uid = geteuid();
180 gid = getegid();
181 if ((len = getgroups(NGRPS, gids)) < 0)
182 abort();
183 return (authunix_create(machname, uid, gid, len, gids));
187 * authunix operations
190 static void
191 authunix_nextverf(auth)
192 AUTH *auth;
194 /* no action necessary */
197 static bool_t
198 authunix_marshal(auth, xdrs)
199 AUTH *auth;
200 XDR *xdrs;
202 register struct audata *au = AUTH_PRIVATE(auth);
204 return (XDR_PUTBYTES(xdrs, au->au_marshed, au->au_mpos));
207 static bool_t
208 authunix_validate(auth, verf)
209 register AUTH *auth;
210 struct opaque_auth verf;
212 register struct audata *au;
213 XDR xdrs;
215 if (verf.oa_flavor == AUTH_SHORT) {
216 au = AUTH_PRIVATE(auth);
217 xdrmem_create(&xdrs, verf.oa_base, verf.oa_length, XDR_DECODE);
219 if (au->au_shcred.oa_base != NULL) {
220 mem_free(au->au_shcred.oa_base,
221 au->au_shcred.oa_length);
222 au->au_shcred.oa_base = NULL;
224 if (xdr_opaque_auth(&xdrs, &au->au_shcred)) {
225 auth->ah_cred = au->au_shcred;
226 } else {
227 xdrs.x_op = XDR_FREE;
228 (void)xdr_opaque_auth(&xdrs, &au->au_shcred);
229 au->au_shcred.oa_base = NULL;
230 auth->ah_cred = au->au_origcred;
232 marshal_new_auth(auth);
234 return (TRUE);
237 static bool_t
238 authunix_refresh(auth)
239 register AUTH *auth;
241 register struct audata *au = AUTH_PRIVATE(auth);
242 struct authunix_parms aup;
243 struct timeval now;
244 XDR xdrs;
245 register int stat;
247 if (auth->ah_cred.oa_base == au->au_origcred.oa_base) {
248 /* there is no hope. Punt */
249 return (FALSE);
251 au->au_shfaults ++;
253 /* first deserialize the creds back into a struct authunix_parms */
254 aup.aup_machname = NULL;
255 aup.aup_gids = (int *)NULL;
256 xdrmem_create(&xdrs, au->au_origcred.oa_base,
257 au->au_origcred.oa_length, XDR_DECODE);
258 stat = xdr_authunix_parms(&xdrs, &aup);
259 if (! stat)
260 goto done;
262 /* update the time and serialize in place */
263 (void)gettimeofday(&now, (struct timezone *)0);
264 aup.aup_time = now.tv_sec;
265 xdrs.x_op = XDR_ENCODE;
266 XDR_SETPOS(&xdrs, 0);
267 stat = xdr_authunix_parms(&xdrs, &aup);
268 if (! stat)
269 goto done;
270 auth->ah_cred = au->au_origcred;
271 marshal_new_auth(auth);
272 done:
273 /* free the struct authunix_parms created by deserializing */
274 xdrs.x_op = XDR_FREE;
275 (void)xdr_authunix_parms(&xdrs, &aup);
276 XDR_DESTROY(&xdrs);
277 return (stat);
280 static void
281 authunix_destroy(auth)
282 register AUTH *auth;
284 register struct audata *au = AUTH_PRIVATE(auth);
286 mem_free(au->au_origcred.oa_base, au->au_origcred.oa_length);
288 if (au->au_shcred.oa_base != NULL)
289 mem_free(au->au_shcred.oa_base, au->au_shcred.oa_length);
291 mem_free(auth->ah_private, sizeof(struct audata));
293 if (auth->ah_verf.oa_base != NULL)
294 mem_free(auth->ah_verf.oa_base, auth->ah_verf.oa_length);
296 mem_free((caddr_t)auth, sizeof(*auth));
300 * Marshals (pre-serializes) an auth struct.
301 * sets private data, au_marshed and au_mpos
303 static bool_t
304 marshal_new_auth(auth)
305 register AUTH *auth;
307 XDR xdr_stream;
308 register XDR *xdrs = &xdr_stream;
309 register struct audata *au = AUTH_PRIVATE(auth);
311 xdrmem_create(xdrs, au->au_marshed, MAX_AUTH_BYTES, XDR_ENCODE);
312 if ((! xdr_opaque_auth(xdrs, &(auth->ah_cred))) ||
313 (! xdr_opaque_auth(xdrs, &(auth->ah_verf)))) {
314 perror(_("auth_none.c - Fatal marshalling problem"));
315 } else {
316 au->au_mpos = XDR_GETPOS(xdrs);
318 XDR_DESTROY(xdrs);