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