blob: 0d1e8fb83b930ee4e9e472d07e2f265875389b02 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#include <linux/types.h>
2#include <linux/sched.h>
3#include <linux/module.h>
4#include <linux/sunrpc/types.h>
5#include <linux/sunrpc/xdr.h>
6#include <linux/sunrpc/svcsock.h>
7#include <linux/sunrpc/svcauth.h>
8#include <linux/err.h>
9#include <linux/seq_file.h>
10#include <linux/hash.h>
Paulo Marques543537b2005-06-23 00:09:02 -070011#include <linux/string.h>
Greg Banks7b2b1fe2006-10-04 02:15:50 -070012#include <net/sock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
14#define RPCDBG_FACILITY RPCDBG_AUTH
15
16
17/*
18 * AUTHUNIX and AUTHNULL credentials are both handled here.
19 * AUTHNULL is treated just like AUTHUNIX except that the uid/gid
20 * are always nobody (-2). i.e. we do the same IP address checks for
21 * AUTHNULL as for AUTHUNIX, and that is done here.
22 */
23
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025struct unix_domain {
26 struct auth_domain h;
27 int addr_changes;
28 /* other stuff later */
29};
30
NeilBrownefc36aa2006-03-27 01:14:59 -080031extern struct auth_ops svcauth_unix;
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033struct auth_domain *unix_domain_find(char *name)
34{
NeilBrownefc36aa2006-03-27 01:14:59 -080035 struct auth_domain *rv;
36 struct unix_domain *new = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
NeilBrownefc36aa2006-03-27 01:14:59 -080038 rv = auth_domain_lookup(name, NULL);
39 while(1) {
NeilBrownad1b5222006-03-27 01:15:11 -080040 if (rv) {
41 if (new && rv != &new->h)
42 auth_domain_put(&new->h);
43
44 if (rv->flavour != &svcauth_unix) {
45 auth_domain_put(rv);
46 return NULL;
47 }
NeilBrownefc36aa2006-03-27 01:14:59 -080048 return rv;
49 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
NeilBrownefc36aa2006-03-27 01:14:59 -080051 new = kmalloc(sizeof(*new), GFP_KERNEL);
52 if (new == NULL)
53 return NULL;
54 kref_init(&new->h.ref);
55 new->h.name = kstrdup(name, GFP_KERNEL);
NeilBrowndd08d6e2006-12-13 00:35:44 -080056 if (new->h.name == NULL) {
57 kfree(new);
58 return NULL;
59 }
NeilBrownefc36aa2006-03-27 01:14:59 -080060 new->h.flavour = &svcauth_unix;
61 new->addr_changes = 0;
62 rv = auth_domain_lookup(name, &new->h);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070064}
65
66static void svcauth_unix_domain_release(struct auth_domain *dom)
67{
68 struct unix_domain *ud = container_of(dom, struct unix_domain, h);
69
70 kfree(dom->name);
71 kfree(ud);
72}
73
74
75/**************************************************
76 * cache for IP address to unix_domain
77 * as needed by AUTH_UNIX
78 */
79#define IP_HASHBITS 8
80#define IP_HASHMAX (1<<IP_HASHBITS)
81#define IP_HASHMASK (IP_HASHMAX-1)
82
83struct ip_map {
84 struct cache_head h;
85 char m_class[8]; /* e.g. "nfsd" */
86 struct in_addr m_addr;
87 struct unix_domain *m_client;
88 int m_add_change;
89};
90static struct cache_head *ip_table[IP_HASHMAX];
91
NeilBrownbaab9352006-03-27 01:15:09 -080092static void ip_map_put(struct kref *kref)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
NeilBrownbaab9352006-03-27 01:15:09 -080094 struct cache_head *item = container_of(kref, struct cache_head, ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 struct ip_map *im = container_of(item, struct ip_map,h);
NeilBrownbaab9352006-03-27 01:15:09 -080096
97 if (test_bit(CACHE_VALID, &item->flags) &&
98 !test_bit(CACHE_NEGATIVE, &item->flags))
99 auth_domain_put(&im->m_client->h);
100 kfree(im);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101}
102
NeilBrown1f1e0302006-01-06 00:09:49 -0800103#if IP_HASHBITS == 8
104/* hash_long on a 64 bit machine is currently REALLY BAD for
105 * IP addresses in reverse-endian (i.e. on a little-endian machine).
106 * So use a trivial but reliable hash instead
107 */
Al Viro48061262006-11-08 00:22:34 -0800108static inline int hash_ip(__be32 ip)
NeilBrown1f1e0302006-01-06 00:09:49 -0800109{
Al Viro48061262006-11-08 00:22:34 -0800110 int hash = (__force u32)ip ^ ((__force u32)ip>>16);
NeilBrown1f1e0302006-01-06 00:09:49 -0800111 return (hash ^ (hash>>8)) & 0xff;
112}
113#endif
NeilBrown1a9917c2006-03-27 01:15:02 -0800114static int ip_map_match(struct cache_head *corig, struct cache_head *cnew)
115{
116 struct ip_map *orig = container_of(corig, struct ip_map, h);
117 struct ip_map *new = container_of(cnew, struct ip_map, h);
118 return strcmp(orig->m_class, new->m_class) == 0
119 && orig->m_addr.s_addr == new->m_addr.s_addr;
120}
121static void ip_map_init(struct cache_head *cnew, struct cache_head *citem)
122{
123 struct ip_map *new = container_of(cnew, struct ip_map, h);
124 struct ip_map *item = container_of(citem, struct ip_map, h);
NeilBrown1f1e0302006-01-06 00:09:49 -0800125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 strcpy(new->m_class, item->m_class);
127 new->m_addr.s_addr = item->m_addr.s_addr;
128}
NeilBrown1a9917c2006-03-27 01:15:02 -0800129static void update(struct cache_head *cnew, struct cache_head *citem)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
NeilBrown1a9917c2006-03-27 01:15:02 -0800131 struct ip_map *new = container_of(cnew, struct ip_map, h);
132 struct ip_map *item = container_of(citem, struct ip_map, h);
133
NeilBrownefc36aa2006-03-27 01:14:59 -0800134 kref_get(&item->m_client->h.ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 new->m_client = item->m_client;
136 new->m_add_change = item->m_add_change;
137}
NeilBrown1a9917c2006-03-27 01:15:02 -0800138static struct cache_head *ip_map_alloc(void)
139{
140 struct ip_map *i = kmalloc(sizeof(*i), GFP_KERNEL);
141 if (i)
142 return &i->h;
143 else
144 return NULL;
145}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147static void ip_map_request(struct cache_detail *cd,
148 struct cache_head *h,
149 char **bpp, int *blen)
150{
151 char text_addr[20];
152 struct ip_map *im = container_of(h, struct ip_map, h);
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700153 __be32 addr = im->m_addr.s_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 snprintf(text_addr, 20, "%u.%u.%u.%u",
156 ntohl(addr) >> 24 & 0xff,
157 ntohl(addr) >> 16 & 0xff,
158 ntohl(addr) >> 8 & 0xff,
159 ntohl(addr) >> 0 & 0xff);
160
161 qword_add(bpp, blen, im->m_class);
162 qword_add(bpp, blen, text_addr);
163 (*bpp)[-1] = '\n';
164}
165
NeilBrown1a9917c2006-03-27 01:15:02 -0800166static struct ip_map *ip_map_lookup(char *class, struct in_addr addr);
167static int ip_map_update(struct ip_map *ipm, struct unix_domain *udom, time_t expiry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169static int ip_map_parse(struct cache_detail *cd,
170 char *mesg, int mlen)
171{
172 /* class ipaddress [domainname] */
173 /* should be safe just to use the start of the input buffer
174 * for scratch: */
175 char *buf = mesg;
176 int len;
177 int b1,b2,b3,b4;
178 char c;
NeilBrown1a9917c2006-03-27 01:15:02 -0800179 char class[8];
180 struct in_addr addr;
181 int err;
182
183 struct ip_map *ipmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 struct auth_domain *dom;
185 time_t expiry;
186
187 if (mesg[mlen-1] != '\n')
188 return -EINVAL;
189 mesg[mlen-1] = 0;
190
191 /* class */
NeilBrown1a9917c2006-03-27 01:15:02 -0800192 len = qword_get(&mesg, class, sizeof(class));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 if (len <= 0) return -EINVAL;
194
195 /* ip address */
196 len = qword_get(&mesg, buf, mlen);
197 if (len <= 0) return -EINVAL;
198
199 if (sscanf(buf, "%u.%u.%u.%u%c", &b1, &b2, &b3, &b4, &c) != 4)
200 return -EINVAL;
201
202 expiry = get_expiry(&mesg);
203 if (expiry ==0)
204 return -EINVAL;
205
206 /* domainname, or empty for NEGATIVE */
207 len = qword_get(&mesg, buf, mlen);
208 if (len < 0) return -EINVAL;
209
210 if (len) {
211 dom = unix_domain_find(buf);
212 if (dom == NULL)
213 return -ENOENT;
214 } else
215 dom = NULL;
216
NeilBrown1a9917c2006-03-27 01:15:02 -0800217 addr.s_addr =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 htonl((((((b1<<8)|b2)<<8)|b3)<<8)|b4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
NeilBrown1a9917c2006-03-27 01:15:02 -0800220 ipmp = ip_map_lookup(class,addr);
221 if (ipmp) {
222 err = ip_map_update(ipmp,
223 container_of(dom, struct unix_domain, h),
224 expiry);
225 } else
226 err = -ENOMEM;
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 if (dom)
229 auth_domain_put(dom);
NeilBrown1a9917c2006-03-27 01:15:02 -0800230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 cache_flush();
NeilBrown1a9917c2006-03-27 01:15:02 -0800232 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
234
235static int ip_map_show(struct seq_file *m,
236 struct cache_detail *cd,
237 struct cache_head *h)
238{
239 struct ip_map *im;
240 struct in_addr addr;
241 char *dom = "-no-domain-";
242
243 if (h == NULL) {
244 seq_puts(m, "#class IP domain\n");
245 return 0;
246 }
247 im = container_of(h, struct ip_map, h);
248 /* class addr domain */
249 addr = im->m_addr;
250
251 if (test_bit(CACHE_VALID, &h->flags) &&
252 !test_bit(CACHE_NEGATIVE, &h->flags))
253 dom = im->m_client->h.name;
254
255 seq_printf(m, "%s %d.%d.%d.%d %s\n",
256 im->m_class,
Al Viro753ed902006-09-26 22:30:23 -0700257 ntohl(addr.s_addr) >> 24 & 0xff,
258 ntohl(addr.s_addr) >> 16 & 0xff,
259 ntohl(addr.s_addr) >> 8 & 0xff,
260 ntohl(addr.s_addr) >> 0 & 0xff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 dom
262 );
263 return 0;
264}
265
266
267struct cache_detail ip_map_cache = {
Bruce Allanf35279d2005-09-06 15:17:08 -0700268 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 .hash_size = IP_HASHMAX,
270 .hash_table = ip_table,
271 .name = "auth.unix.ip",
272 .cache_put = ip_map_put,
273 .cache_request = ip_map_request,
274 .cache_parse = ip_map_parse,
275 .cache_show = ip_map_show,
NeilBrown1a9917c2006-03-27 01:15:02 -0800276 .match = ip_map_match,
277 .init = ip_map_init,
278 .update = update,
279 .alloc = ip_map_alloc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280};
281
NeilBrown1a9917c2006-03-27 01:15:02 -0800282static struct ip_map *ip_map_lookup(char *class, struct in_addr addr)
283{
284 struct ip_map ip;
285 struct cache_head *ch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
NeilBrown1a9917c2006-03-27 01:15:02 -0800287 strcpy(ip.m_class, class);
288 ip.m_addr = addr;
289 ch = sunrpc_cache_lookup(&ip_map_cache, &ip.h,
290 hash_str(class, IP_HASHBITS) ^
Al Viro48061262006-11-08 00:22:34 -0800291 hash_ip(addr.s_addr));
NeilBrown1a9917c2006-03-27 01:15:02 -0800292
293 if (ch)
294 return container_of(ch, struct ip_map, h);
295 else
296 return NULL;
297}
298
299static int ip_map_update(struct ip_map *ipm, struct unix_domain *udom, time_t expiry)
300{
301 struct ip_map ip;
302 struct cache_head *ch;
303
304 ip.m_client = udom;
305 ip.h.flags = 0;
306 if (!udom)
307 set_bit(CACHE_NEGATIVE, &ip.h.flags);
308 else {
309 ip.m_add_change = udom->addr_changes;
310 /* if this is from the legacy set_client system call,
311 * we need m_add_change to be one higher
312 */
313 if (expiry == NEVER)
314 ip.m_add_change++;
315 }
316 ip.h.expiry_time = expiry;
317 ch = sunrpc_cache_update(&ip_map_cache,
318 &ip.h, &ipm->h,
319 hash_str(ipm->m_class, IP_HASHBITS) ^
Al Viro48061262006-11-08 00:22:34 -0800320 hash_ip(ipm->m_addr.s_addr));
NeilBrown1a9917c2006-03-27 01:15:02 -0800321 if (!ch)
322 return -ENOMEM;
NeilBrownbaab9352006-03-27 01:15:09 -0800323 cache_put(ch, &ip_map_cache);
NeilBrown1a9917c2006-03-27 01:15:02 -0800324 return 0;
325}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327int auth_unix_add_addr(struct in_addr addr, struct auth_domain *dom)
328{
329 struct unix_domain *udom;
NeilBrown1a9917c2006-03-27 01:15:02 -0800330 struct ip_map *ipmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
NeilBrownefc36aa2006-03-27 01:14:59 -0800332 if (dom->flavour != &svcauth_unix)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 return -EINVAL;
334 udom = container_of(dom, struct unix_domain, h);
NeilBrown1a9917c2006-03-27 01:15:02 -0800335 ipmp = ip_map_lookup("nfsd", addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
NeilBrown1a9917c2006-03-27 01:15:02 -0800337 if (ipmp)
338 return ip_map_update(ipmp, udom, NEVER);
339 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 return -ENOMEM;
341}
342
343int auth_unix_forget_old(struct auth_domain *dom)
344{
345 struct unix_domain *udom;
346
NeilBrownefc36aa2006-03-27 01:14:59 -0800347 if (dom->flavour != &svcauth_unix)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 return -EINVAL;
349 udom = container_of(dom, struct unix_domain, h);
350 udom->addr_changes++;
351 return 0;
352}
353
354struct auth_domain *auth_unix_lookup(struct in_addr addr)
355{
Greg Banks40f10522006-10-02 02:17:43 -0700356 struct ip_map *ipm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 struct auth_domain *rv;
358
NeilBrown1a9917c2006-03-27 01:15:02 -0800359 ipm = ip_map_lookup("nfsd", addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361 if (!ipm)
362 return NULL;
363 if (cache_check(&ip_map_cache, &ipm->h, NULL))
364 return NULL;
365
366 if ((ipm->m_client->addr_changes - ipm->m_add_change) >0) {
367 if (test_and_set_bit(CACHE_NEGATIVE, &ipm->h.flags) == 0)
368 auth_domain_put(&ipm->m_client->h);
369 rv = NULL;
370 } else {
371 rv = &ipm->m_client->h;
NeilBrownefc36aa2006-03-27 01:14:59 -0800372 kref_get(&rv->ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 }
NeilBrownbaab9352006-03-27 01:15:09 -0800374 cache_put(&ipm->h, &ip_map_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 return rv;
376}
377
378void svcauth_unix_purge(void)
379{
380 cache_purge(&ip_map_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381}
382
Greg Banks7b2b1fe2006-10-04 02:15:50 -0700383static inline struct ip_map *
384ip_map_cached_get(struct svc_rqst *rqstp)
385{
386 struct ip_map *ipm = rqstp->rq_sock->sk_info_authunix;
387 if (ipm != NULL) {
388 if (!cache_valid(&ipm->h)) {
389 /*
390 * The entry has been invalidated since it was
391 * remembered, e.g. by a second mount from the
392 * same IP address.
393 */
394 rqstp->rq_sock->sk_info_authunix = NULL;
395 cache_put(&ipm->h, &ip_map_cache);
396 return NULL;
397 }
398 cache_get(&ipm->h);
399 }
400 return ipm;
401}
402
403static inline void
404ip_map_cached_put(struct svc_rqst *rqstp, struct ip_map *ipm)
405{
406 struct svc_sock *svsk = rqstp->rq_sock;
407
408 if (svsk->sk_sock->type == SOCK_STREAM && svsk->sk_info_authunix == NULL)
409 svsk->sk_info_authunix = ipm; /* newly cached, keep the reference */
410 else
411 cache_put(&ipm->h, &ip_map_cache);
412}
413
414void
415svcauth_unix_info_release(void *info)
416{
417 struct ip_map *ipm = info;
418 cache_put(&ipm->h, &ip_map_cache);
419}
420
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421static int
422svcauth_unix_set_client(struct svc_rqst *rqstp)
423{
NeilBrown1a9917c2006-03-27 01:15:02 -0800424 struct ip_map *ipm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426 rqstp->rq_client = NULL;
427 if (rqstp->rq_proc == 0)
428 return SVC_OK;
429
Greg Banks7b2b1fe2006-10-04 02:15:50 -0700430 ipm = ip_map_cached_get(rqstp);
431 if (ipm == NULL)
432 ipm = ip_map_lookup(rqstp->rq_server->sv_program->pg_class,
433 rqstp->rq_addr.sin_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
435 if (ipm == NULL)
436 return SVC_DENIED;
437
438 switch (cache_check(&ip_map_cache, &ipm->h, &rqstp->rq_chandle)) {
439 default:
440 BUG();
441 case -EAGAIN:
J.Bruce Fieldse0bb89e2006-12-13 00:35:25 -0800442 case -ETIMEDOUT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 return SVC_DROP;
444 case -ENOENT:
445 return SVC_DENIED;
446 case 0:
447 rqstp->rq_client = &ipm->m_client->h;
NeilBrownefc36aa2006-03-27 01:14:59 -0800448 kref_get(&rqstp->rq_client->ref);
Greg Banks7b2b1fe2006-10-04 02:15:50 -0700449 ip_map_cached_put(rqstp, ipm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 break;
451 }
452 return SVC_OK;
453}
454
455static int
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700456svcauth_null_accept(struct svc_rqst *rqstp, __be32 *authp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457{
458 struct kvec *argv = &rqstp->rq_arg.head[0];
459 struct kvec *resv = &rqstp->rq_res.head[0];
460 struct svc_cred *cred = &rqstp->rq_cred;
461
462 cred->cr_group_info = NULL;
463 rqstp->rq_client = NULL;
464
465 if (argv->iov_len < 3*4)
466 return SVC_GARBAGE;
467
468 if (svc_getu32(argv) != 0) {
469 dprintk("svc: bad null cred\n");
470 *authp = rpc_autherr_badcred;
471 return SVC_DENIED;
472 }
Alexey Dobriyan76994312006-09-26 22:28:46 -0700473 if (svc_getu32(argv) != htonl(RPC_AUTH_NULL) || svc_getu32(argv) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 dprintk("svc: bad null verf\n");
475 *authp = rpc_autherr_badverf;
476 return SVC_DENIED;
477 }
478
479 /* Signal that mapping to nobody uid/gid is required */
480 cred->cr_uid = (uid_t) -1;
481 cred->cr_gid = (gid_t) -1;
482 cred->cr_group_info = groups_alloc(0);
483 if (cred->cr_group_info == NULL)
484 return SVC_DROP; /* kmalloc failure - client must retry */
485
486 /* Put NULL verifier */
Alexey Dobriyan76994312006-09-26 22:28:46 -0700487 svc_putnl(resv, RPC_AUTH_NULL);
488 svc_putnl(resv, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
490 return SVC_OK;
491}
492
493static int
494svcauth_null_release(struct svc_rqst *rqstp)
495{
496 if (rqstp->rq_client)
497 auth_domain_put(rqstp->rq_client);
498 rqstp->rq_client = NULL;
499 if (rqstp->rq_cred.cr_group_info)
500 put_group_info(rqstp->rq_cred.cr_group_info);
501 rqstp->rq_cred.cr_group_info = NULL;
502
503 return 0; /* don't drop */
504}
505
506
507struct auth_ops svcauth_null = {
508 .name = "null",
509 .owner = THIS_MODULE,
510 .flavour = RPC_AUTH_NULL,
511 .accept = svcauth_null_accept,
512 .release = svcauth_null_release,
513 .set_client = svcauth_unix_set_client,
514};
515
516
517static int
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700518svcauth_unix_accept(struct svc_rqst *rqstp, __be32 *authp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519{
520 struct kvec *argv = &rqstp->rq_arg.head[0];
521 struct kvec *resv = &rqstp->rq_res.head[0];
522 struct svc_cred *cred = &rqstp->rq_cred;
523 u32 slen, i;
524 int len = argv->iov_len;
525
526 cred->cr_group_info = NULL;
527 rqstp->rq_client = NULL;
528
529 if ((len -= 3*4) < 0)
530 return SVC_GARBAGE;
531
532 svc_getu32(argv); /* length */
533 svc_getu32(argv); /* time stamp */
Alexey Dobriyan76994312006-09-26 22:28:46 -0700534 slen = XDR_QUADLEN(svc_getnl(argv)); /* machname length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 if (slen > 64 || (len -= (slen + 3)*4) < 0)
536 goto badcred;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700537 argv->iov_base = (void*)((__be32*)argv->iov_base + slen); /* skip machname */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 argv->iov_len -= slen*4;
539
Alexey Dobriyan76994312006-09-26 22:28:46 -0700540 cred->cr_uid = svc_getnl(argv); /* uid */
541 cred->cr_gid = svc_getnl(argv); /* gid */
542 slen = svc_getnl(argv); /* gids length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 if (slen > 16 || (len -= (slen + 2)*4) < 0)
544 goto badcred;
545 cred->cr_group_info = groups_alloc(slen);
546 if (cred->cr_group_info == NULL)
547 return SVC_DROP;
548 for (i = 0; i < slen; i++)
Alexey Dobriyan76994312006-09-26 22:28:46 -0700549 GROUP_AT(cred->cr_group_info, i) = svc_getnl(argv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Alexey Dobriyan76994312006-09-26 22:28:46 -0700551 if (svc_getu32(argv) != htonl(RPC_AUTH_NULL) || svc_getu32(argv) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 *authp = rpc_autherr_badverf;
553 return SVC_DENIED;
554 }
555
556 /* Put NULL verifier */
Alexey Dobriyan76994312006-09-26 22:28:46 -0700557 svc_putnl(resv, RPC_AUTH_NULL);
558 svc_putnl(resv, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
560 return SVC_OK;
561
562badcred:
563 *authp = rpc_autherr_badcred;
564 return SVC_DENIED;
565}
566
567static int
568svcauth_unix_release(struct svc_rqst *rqstp)
569{
570 /* Verifier (such as it is) is already in place.
571 */
572 if (rqstp->rq_client)
573 auth_domain_put(rqstp->rq_client);
574 rqstp->rq_client = NULL;
575 if (rqstp->rq_cred.cr_group_info)
576 put_group_info(rqstp->rq_cred.cr_group_info);
577 rqstp->rq_cred.cr_group_info = NULL;
578
579 return 0;
580}
581
582
583struct auth_ops svcauth_unix = {
584 .name = "unix",
585 .owner = THIS_MODULE,
586 .flavour = RPC_AUTH_UNIX,
587 .accept = svcauth_unix_accept,
588 .release = svcauth_unix_release,
589 .domain_release = svcauth_unix_domain_release,
590 .set_client = svcauth_unix_set_client,
591};
592