1 /* @(#)auth_unix.c 2.2 88/08/01 4.0 RPCSRC */
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.
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";
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.
48 #include <rpc/types.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
= {
71 * This struct is pointed to by the ah_private field of an auth_handle.
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.
90 authunix_create(machname
, uid
, gid
, len
, aup_gids
)
97 struct authunix_parms aup
;
98 char mymem
[MAX_AUTH_BYTES
];
102 register struct audata
*au
;
105 * Allocate and set up auth handle
107 auth
= (AUTH
*)mem_alloc(sizeof(*auth
));
110 (void)fprintf(stderr
, "authunix_create: out of memory\n");
114 au
= (struct audata
*)mem_alloc(sizeof(*au
));
117 (void)fprintf(stderr
, "authunix_create: out of memory\n");
121 auth
->ah_ops
= &auth_unix_ops
;
122 auth
->ah_private
= (caddr_t
)au
;
123 auth
->ah_verf
= au
->au_shcred
= _null_auth
;
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
;
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
))
143 au
->au_origcred
.oa_length
= len
= XDR_GETPOS(&xdrs
);
144 au
->au_origcred
.oa_flavor
= AUTH_UNIX
;
146 au
->au_origcred
.oa_base
= mem_alloc((u_int
) len
);
148 if ((au
->au_origcred
.oa_base
= mem_alloc((u_int
) len
)) == NULL
) {
149 (void)fprintf(stderr
, "authunix_create: out of memory\n");
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
);
164 * Returns an auth handle with parameters determined by doing lots of
168 authunix_create_default()
171 char machname
[MAX_MACHINE_NAME
+ 1];
176 if (gethostname(machname
, MAX_MACHINE_NAME
) == -1)
178 machname
[MAX_MACHINE_NAME
] = 0;
181 if ((len
= getgroups(NGRPS
, gids
)) < 0)
183 return (authunix_create(machname
, uid
, gid
, len
, gids
));
187 * authunix operations
191 authunix_nextverf(auth
)
194 /* no action necessary */
198 authunix_marshal(auth
, xdrs
)
202 register struct audata
*au
= AUTH_PRIVATE(auth
);
204 return (XDR_PUTBYTES(xdrs
, au
->au_marshed
, au
->au_mpos
));
208 authunix_validate(auth
, verf
)
210 struct opaque_auth verf
;
212 register struct audata
*au
;
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
;
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
);
238 authunix_refresh(auth
)
241 register struct audata
*au
= AUTH_PRIVATE(auth
);
242 struct authunix_parms aup
;
247 if (auth
->ah_cred
.oa_base
== au
->au_origcred
.oa_base
) {
248 /* there is no hope. Punt */
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
);
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
);
270 auth
->ah_cred
= au
->au_origcred
;
271 marshal_new_auth(auth
);
273 /* free the struct authunix_parms created by deserializing */
274 xdrs
.x_op
= XDR_FREE
;
275 (void)xdr_authunix_parms(&xdrs
, &aup
);
281 authunix_destroy(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
304 marshal_new_auth(auth
)
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"));
316 au
->au_mpos
= XDR_GETPOS(xdrs
);