]> git.decadent.org.uk Git - nfs-utils.git/blob - support/rpc/svc_auth.c
4a11be36f205b12273a8ddd8223bddf902e6a898
[nfs-utils.git] / support / rpc / svc_auth.c
1 /*
2  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
3  * unrestricted use provided that this legend is included on all tape
4  * media and as a part of the software program in whole or part.  Users
5  * may copy or modify Sun RPC without charge, but are not authorized
6  * to license or distribute it to anyone else except as part of a product or
7  * program developed by the user.
8  *
9  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
10  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
11  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
12  *
13  * Sun RPC is provided with no support and without any obligation on the
14  * part of Sun Microsystems, Inc. to assist in its use, correction,
15  * modification or enhancement.
16  *
17  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
18  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
19  * OR ANY PART THEREOF.
20  *
21  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
22  * or profits or other special, indirect and consequential damages, even if
23  * Sun has been advised of the possibility of such damages.
24  *
25  * Sun Microsystems, Inc.
26  * 2550 Garcia Avenue
27  * Mountain View, California  94043
28  */
29
30 #if defined(LIBC_SCCS) && !defined(lint)
31 static char *rcsid = "$OpenBSD: svc_auth.c,v 1.4 1998/03/19 00:27:22 millert Exp $";
32 #endif /* LIBC_SCCS and not lint */
33
34 /*
35  * svc_auth_nodes.c, Server-side rpc authenticator interface,
36  * *WITHOUT* DES authentication.
37  *
38  * Copyright (C) 1984, Sun Microsystems, Inc.
39  */
40
41 #include <rpc/rpc.h>
42
43 /*
44  * svcauthsw is the bdevsw of server side authentication.
45  *
46  * Server side authenticators are called from authenticate by
47  * using the client auth struct flavor field to index into svcauthsw.
48  * The server auth flavors must implement a routine that looks
49  * like:
50  *
51  *      enum auth_stat
52  *      flavorx_auth(rqst, msg)
53  *              register struct svc_req *rqst;
54  *              register struct rpc_msg *msg;
55  *
56  */
57
58 enum auth_stat _svcauth_none();         /* no authentication */
59 enum auth_stat _svcauth_unix();         /* unix style (uid, gids) */
60 enum auth_stat _svcauth_short();        /* short hand unix style */
61 enum auth_stat _svcauth_gss();          /* RPCSEC_GSS */
62
63 static struct {
64         enum auth_stat (*authenticator)();
65 } svcauthsw[] = {
66         { _svcauth_none },              /* AUTH_NONE */
67         { _svcauth_unix },              /* AUTH_UNIX */
68         { _svcauth_short },             /* AUTH_SHORT */
69         { _svcauth_none },              /* AUTH_DES - does not exist */
70         { _svcauth_none },
71         { _svcauth_none },
72         { _svcauth_gss }                /* RPCSEC_GSS */
73 };
74 #define AUTH_MAX        6               /* HIGHEST AUTH NUMBER */
75
76 /*
77  * The call rpc message, msg has been obtained from the wire.  The msg contains
78  * the raw form of credentials and verifiers.  authenticate returns AUTH_OK
79  * if the msg is successfully authenticated.  If AUTH_OK then the routine also
80  * does the following things:
81  * set rqst->rq_xprt->verf to the appropriate response verifier;
82  * sets rqst->rq_clntcred to the "cooked" form of the credentials.
83  *
84  * NB: rqst->rq_xprt->verf must be pre-alloctaed;
85  * its length is set appropriately.
86  *
87  * The caller still owns and is responsible for msg->u.cmb.cred and
88  * msg->u.cmb.verf.  The authentication system retains ownership of
89  * rqst->rq_clntcred, the cooked credentials.
90  *
91  * There is an assumption that any flavour less than AUTH_NONE is
92  * invalid.
93  */
94 enum auth_stat
95 _authenticate(rqst, msg, no_dispatch)
96         register struct svc_req *rqst;
97         struct rpc_msg *msg;
98         bool_t *no_dispatch;
99 {
100         register int cred_flavor;
101
102         rqst->rq_cred = msg->rm_call.cb_cred;
103         rqst->rq_xprt->xp_verf.oa_flavor = _null_auth.oa_flavor;
104         rqst->rq_xprt->xp_verf.oa_length = 0;
105         cred_flavor = rqst->rq_cred.oa_flavor;
106         *no_dispatch = FALSE;
107
108         if ((cred_flavor <= AUTH_MAX) && (cred_flavor >= AUTH_NONE)) {
109                 return ((*(svcauthsw[cred_flavor].authenticator))(rqst, msg, no_dispatch));
110         }
111
112         return (AUTH_REJECTEDCRED);
113 }