svc_auth.c
上传用户:baixin
上传日期:2008-03-13
资源大小:4795k
文件大小:4k
开发平台:

MultiPlatform

  1. /* svc_auth.c - server-side rpc authenticator interface */
  2. /* Copyright 1984-2000 Wind River Systems, Inc. */
  3. #include "copyright_wrs.h"
  4. /*
  5.  * Copyright (C) 1984, Sun Microsystems, Inc.
  6.  *
  7.  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
  8.  * unrestricted use provided that this legend is included on all tape
  9.  * media and as a part of the software program in whole or part.  Users
  10.  * may copy or modify Sun RPC without charge, but are not authorized
  11.  * to license or distribute it to anyone else except as part of a product or
  12.  * program developed by the user.
  13.  *
  14.  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
  15.  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
  16.  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
  17.  *
  18.  * Sun RPC is provided with no support and without any obligation on the
  19.  * part of Sun Microsystems, Inc. to assist in its use, correction,
  20.  * modification or enhancement.
  21.  *
  22.  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
  23.  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
  24.  * OR ANY PART THEREOF.
  25.  *
  26.  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
  27.  * or profits or other special, indirect and consequential damages, even if
  28.  * Sun has been advised of the possibility of such damages.
  29.  *
  30.  * Sun Microsystems, Inc.
  31.  * 2550 Garcia Avenue
  32.  * Mountain View, California  94043
  33.  */
  34. /*
  35. modification history
  36. --------------------
  37. 01d,18apr00,ham  fixed compilation warnings.
  38. 01c,26may92,rrr  the tree shuffle
  39.   -changed includes to have absolute path from h/
  40. 01b,04oct91,rrr  passed through the ansification filter
  41.   -changed includes to have absolute path from h/
  42.   -changed copyright notice
  43. 01a,26jun90,hjb  added modifications history; removed sccsid[].
  44. */
  45. #ifndef lint
  46. /* static char sccsid[] = "@(#)svc_auth.c 1.1 86/02/03 Copyr 1984 Sun Micro"; */
  47. #endif
  48. /*
  49.  * svc_auth.c, Server-side rpc authenticator interface.
  50.  *
  51.  */
  52. #include "rpc/rpctypes.h"
  53. #include "netinet/in.h"
  54. #include "rpc/xdr.h"
  55. #include "rpc/auth.h"
  56. #include "rpc/clnt.h"
  57. #include "rpc/rpc_msg.h"
  58. #include "rpc/svc.h"
  59. #include "rpc/svc_auth.h"
  60. /*
  61.  * svcauthsw is the bdevsw of server side authentication.
  62.  *
  63.  * Server side authenticators are called from authenticate by
  64.  * using the client auth struct flavor field to index into svcauthsw.
  65.  * The server auth flavors must implement a routine that looks
  66.  * like:
  67.  *
  68.  * enum auth_stat
  69.  * flavorx_auth(rqst, msg)
  70.  * register struct svc_req *rqst;
  71.  * register struct rpc_msg *msg;
  72.  *
  73.  */
  74. enum auth_stat _svcauth_null(); /* no authentication */
  75. enum auth_stat _svcauth_unix(); /* unix style (uid, gids) */
  76. enum auth_stat _svcauth_short(); /* short hand unix style */
  77. static struct {
  78. enum auth_stat (*authenticator)();
  79. } svcauthsw[] = {
  80. {_svcauth_null}, /* AUTH_NULL */
  81. {_svcauth_unix}, /* AUTH_UNIX */
  82. {_svcauth_short} /* AUTH_SHORT */
  83. };
  84. #define AUTH_MAX 2 /* HIGHEST AUTH NUMBER */
  85. /*
  86.  * The call rpc message, msg has been obtained from the wire.  The msg contains
  87.  * the raw form of credentials and verifiers.  authenticate returns AUTH_OK
  88.  * if the msg is successfully authenticated.  If AUTH_OK then the routine also
  89.  * does the following things:
  90.  * set rqst->rq_xprt->verf to the appropriate response verifier;
  91.  * sets rqst->rq_client_cred to the "cooked" form of the credentials.
  92.  *
  93.  * NB: rqst->rq_cxprt->verf must be pre-alloctaed;
  94.  * its length is set appropriately.
  95.  *
  96.  * The caller still owns and is responsible for msg->u.cmb.cred and
  97.  * msg->u.cmb.verf.  The authentication system retains ownership of
  98.  * rqst->rq_client_cred, the cooked credentials.
  99.  */
  100. enum auth_stat
  101. _authenticate(rqst, msg)
  102. register struct svc_req *rqst;
  103. struct rpc_msg *msg;
  104. {
  105. register int cred_flavor;
  106. rqst->rq_cred = msg->rm_call.cb_cred;
  107. rqst->rq_xprt->xp_verf.oa_flavor = _null_auth.oa_flavor;
  108. rqst->rq_xprt->xp_verf.oa_length = 0;
  109. cred_flavor = rqst->rq_cred.oa_flavor;
  110. if (cred_flavor <= AUTH_MAX) {
  111. return ((*(svcauthsw[cred_flavor].authenticator))(rqst, msg));
  112. }
  113. return (AUTH_REJECTEDCRED);
  114. }
  115. enum auth_stat
  116. _svcauth_null(/*rqst, msg*/)
  117. /*struct svc_req *rqst;
  118. struct rpc_msg *msg;*/
  119. {
  120. return (AUTH_OK);
  121. }