home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / useful / comm / tcp / amitcp / src / rpclib / svc_auth_unix.c < prev    next >
C/C++ Source or Header  |  1994-03-09  |  4KB  |  143 lines

  1. /*
  2.  * $Id: svc_auth_unix.c,v 1.3 1994/03/09 01:38:08 jraja Exp $
  3.  *
  4.  * $Log: svc_auth_unix.c,v $
  5.  * Revision 1.3  1994/03/09  01:38:08  jraja
  6.  * Changed area_gids to be of type gid_t.
  7.  *
  8.  * Revision 1.2  1993/11/10  02:48:33  jraja
  9.  * Fixed includes (added sys/param.h) + ANSI prototypes.
  10.  *
  11.  */
  12. /* @(#)svc_auth_unix.c    2.3 88/08/01 4.0 RPCSRC; from 1.28 88/02/08 SMI */
  13. /*
  14.  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
  15.  * unrestricted use provided that this legend is included on all tape
  16.  * media and as a part of the software program in whole or part.  Users
  17.  * may copy or modify Sun RPC without charge, but are not authorized
  18.  * to license or distribute it to anyone else except as part of a product or
  19.  * program developed by the user.
  20.  * 
  21.  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
  22.  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
  23.  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
  24.  * 
  25.  * Sun RPC is provided with no support and without any obligation on the
  26.  * part of Sun Microsystems, Inc. to assist in its use, correction,
  27.  * modification or enhancement.
  28.  * 
  29.  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
  30.  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
  31.  * OR ANY PART THEREOF.
  32.  * 
  33.  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
  34.  * or profits or other special, indirect and consequential damages, even if
  35.  * Sun has been advised of the possibility of such damages.
  36.  * 
  37.  * Sun Microsystems, Inc.
  38.  * 2550 Garcia Avenue
  39.  * Mountain View, California  94043
  40.  */
  41. #if !defined(lint) && defined(SCCSIDS)
  42. static char sccsid[] = "@(#)svc_auth_unix.c 1.28 88/02/08 Copyr 1984 Sun Micro";
  43. #endif
  44.  
  45. /*
  46.  * svc_auth_unix.c
  47.  * Handles UNIX flavor authentication parameters on the service side of rpc.
  48.  * There are two svc auth implementations here: AUTH_UNIX and AUTH_SHORT.
  49.  * _svcauth_unix does full blown unix style uid,gid+gids auth,
  50.  * _svcauth_short uses a shorthand auth to index into a cache of longhand auths.
  51.  * Note: the shorthand has been gutted for efficiency.
  52.  *
  53.  * Copyright (C) 1984, Sun Microsystems, Inc.
  54.  */
  55.  
  56. #include <sys/param.h>
  57. #include <stdio.h>
  58. #include <rpc/rpc.h>
  59.  
  60. /*
  61.  * Unix longhand authenticator
  62.  */
  63. enum auth_stat
  64. _svcauth_unix(register struct svc_req *rqst, register struct rpc_msg *msg)
  65. {
  66.     register enum auth_stat stat;
  67.     XDR xdrs;
  68.     register struct authunix_parms *aup;
  69.     register long *buf;
  70.     struct area {
  71.         struct authunix_parms area_aup;
  72.         char area_machname[MAX_MACHINE_NAME+1];
  73.         gid_t area_gids[NGRPS];
  74.     } *area;
  75.     u_int auth_len;
  76.     int str_len, gid_len;
  77.     register int i;
  78.  
  79.     area = (struct area *) rqst->rq_clntcred;
  80.     aup = &area->area_aup;
  81.     aup->aup_machname = area->area_machname;
  82.     aup->aup_gids = area->area_gids;
  83.     auth_len = (u_int)msg->rm_call.cb_cred.oa_length;
  84.     xdrmem_create(&xdrs, msg->rm_call.cb_cred.oa_base, auth_len,XDR_DECODE);
  85.     buf = XDR_INLINE(&xdrs, auth_len);
  86.     if (buf != NULL) {
  87.         aup->aup_time = IXDR_GET_LONG(buf);
  88.         str_len = IXDR_GET_U_LONG(buf);
  89.         if (str_len > MAX_MACHINE_NAME) {
  90.             stat = AUTH_BADCRED;
  91.             goto done;
  92.         }
  93.         bcopy((caddr_t)buf, aup->aup_machname, (u_int)str_len);
  94.         aup->aup_machname[str_len] = 0;
  95.         str_len = RNDUP(str_len);
  96.         buf += str_len / sizeof (long);
  97.         aup->aup_uid = IXDR_GET_LONG(buf);
  98.         aup->aup_gid = IXDR_GET_LONG(buf);
  99.         gid_len = IXDR_GET_U_LONG(buf);
  100.         if (gid_len > NGRPS) {
  101.             stat = AUTH_BADCRED;
  102.             goto done;
  103.         }
  104.         aup->aup_len = gid_len;
  105.         for (i = 0; i < gid_len; i++) {
  106.             aup->aup_gids[i] = IXDR_GET_LONG(buf);
  107.         }
  108.         /*
  109.          * five is the smallest unix credentials structure -
  110.          * timestamp, hostname len (0), uid, gid, and gids len (0).
  111.          */
  112.         if ((5 + gid_len) * BYTES_PER_XDR_UNIT + str_len > auth_len) {
  113.             (void) printf("bad auth_len gid %d str %d auth %d\n",
  114.                 gid_len, str_len, auth_len);
  115.             stat = AUTH_BADCRED;
  116.             goto done;
  117.         }
  118.     } else if (! xdr_authunix_parms(&xdrs, aup)) {
  119.         xdrs.x_op = XDR_FREE;
  120.         (void)xdr_authunix_parms(&xdrs, aup);
  121.         stat = AUTH_BADCRED;
  122.         goto done;
  123.     }
  124.     rqst->rq_xprt->xp_verf.oa_flavor = AUTH_NULL;
  125.     rqst->rq_xprt->xp_verf.oa_length = 0;
  126.     stat = AUTH_OK;
  127. done:
  128.     XDR_DESTROY(&xdrs);
  129.     return (stat);
  130. }
  131.  
  132.  
  133. /*
  134.  * Shorthand unix authenticator
  135.  * Looks up longhand in a cache.
  136.  */
  137. /*ARGSUSED*/
  138. enum auth_stat 
  139. _svcauth_short(struct svc_req *rqst, struct rpc_msg *msg)
  140. {
  141.     return (AUTH_REJECTEDCRED);
  142. }
  143.