Imported Upstream version 0.2.2
[platform/upstream/libtirpc.git] / src / svc_auth_unix.c
1 /*
2  * Copyright (c) 2009, Sun Microsystems, Inc.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  * - Redistributions of source code must retain the above copyright notice,
8  *   this list of conditions and the following disclaimer.
9  * - Redistributions in binary form must reproduce the above copyright notice,
10  *   this list of conditions and the following disclaimer in the documentation
11  *   and/or other materials provided with the distribution.
12  * - Neither the name of Sun Microsystems, Inc. nor the names of its
13  *   contributors may be used to endorse or promote products derived
14  *   from this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
20  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26  * POSSIBILITY OF SUCH DAMAGE.
27  */
28
29 /*
30  * svc_auth_unix.c
31  * Handles UNIX flavor authentication parameters on the service side of rpc.
32  * There are two svc auth implementations here: AUTH_UNIX and AUTH_SHORT.
33  * _svcauth_unix does full blown unix style uid,gid+gids auth,
34  * _svcauth_short uses a shorthand auth to index into a cache of longhand auths.
35  * Note: the shorthand has been gutted for efficiency.
36  *
37  * Copyright (C) 1984, Sun Microsystems, Inc.
38  */
39 #include <pthread.h>
40 #include <assert.h>
41 #include <stdio.h>
42 #include <string.h>
43
44 #include <rpc/rpc.h>
45
46 /*
47  * Unix longhand authenticator
48  */
49 enum auth_stat
50 _svcauth_unix(rqst, msg)
51         struct svc_req *rqst;
52         struct rpc_msg *msg;
53 {
54         enum auth_stat stat;
55         XDR xdrs;
56         struct authunix_parms *aup;
57         int32_t *buf;
58         struct area {
59                 struct authunix_parms area_aup;
60                 char area_machname[MAX_MACHINE_NAME+1];
61                 gid_t area_gids[NGRPS];
62         } *area;
63         u_int auth_len;
64         size_t str_len, gid_len;
65         u_int i;
66
67         assert(rqst != NULL);
68         assert(msg != NULL);
69
70         area = (struct area *) rqst->rq_clntcred;
71         aup = &area->area_aup;
72         aup->aup_machname = area->area_machname;
73         aup->aup_gids = area->area_gids;
74         auth_len = (u_int)msg->rm_call.cb_cred.oa_length;
75         xdrmem_create(&xdrs, msg->rm_call.cb_cred.oa_base, auth_len,XDR_DECODE);
76         buf = XDR_INLINE(&xdrs, auth_len);
77         if (buf != NULL) {
78                 aup->aup_time = IXDR_GET_INT32(buf);
79                 str_len = (size_t)IXDR_GET_U_INT32(buf);
80                 if (str_len > MAX_MACHINE_NAME) {
81                         stat = AUTH_BADCRED;
82                         goto done;
83                 }
84                 memmove(aup->aup_machname, buf, str_len);
85                 aup->aup_machname[str_len] = 0;
86                 str_len = RNDUP(str_len);
87                 buf += str_len / sizeof (int32_t);
88                 aup->aup_uid = (int)IXDR_GET_INT32(buf);
89                 aup->aup_gid = (int)IXDR_GET_INT32(buf);
90                 gid_len = (size_t)IXDR_GET_U_INT32(buf);
91                 if (gid_len > NGRPS) {
92                         stat = AUTH_BADCRED;
93                         goto done;
94                 }
95                 aup->aup_len = gid_len;
96                 for (i = 0; i < gid_len; i++) {
97                         aup->aup_gids[i] = (int)IXDR_GET_INT32(buf);
98                 }
99                 /*
100                  * five is the smallest unix credentials structure -
101                  * timestamp, hostname len (0), uid, gid, and gids len (0).
102                  */
103                 if ((5 + gid_len) * BYTES_PER_XDR_UNIT + str_len > auth_len) {
104                         (void) printf("bad auth_len gid %ld str %ld auth %u\n",
105                             (long)gid_len, (long)str_len, auth_len);
106                         stat = AUTH_BADCRED;
107                         goto done;
108                 }
109         } else if (! xdr_authunix_parms(&xdrs, aup)) {
110                 xdrs.x_op = XDR_FREE;
111                 (void)xdr_authunix_parms(&xdrs, aup);
112                 stat = AUTH_BADCRED;
113                 goto done;
114         }
115
116        /* get the verifier */
117         if ((u_int)msg->rm_call.cb_verf.oa_length) {
118                 rqst->rq_xprt->xp_verf.oa_flavor =
119                         msg->rm_call.cb_verf.oa_flavor;
120                 rqst->rq_xprt->xp_verf.oa_base =
121                         msg->rm_call.cb_verf.oa_base;
122                 rqst->rq_xprt->xp_verf.oa_length =
123                         msg->rm_call.cb_verf.oa_length;
124         } else {
125                 rqst->rq_xprt->xp_verf.oa_flavor = AUTH_NULL;
126                 rqst->rq_xprt->xp_verf.oa_length = 0;
127         }
128         stat = AUTH_OK;
129 done:
130         XDR_DESTROY(&xdrs);
131         return (stat);
132 }
133
134
135 /*
136  * Shorthand unix authenticator
137  * Looks up longhand in a cache.
138  */
139 /*ARGSUSED*/
140 enum auth_stat 
141 _svcauth_short(rqst, msg)
142         struct svc_req *rqst;
143         struct rpc_msg *msg;
144 {
145         return (AUTH_REJECTEDCRED);
146 }