vserver 1.9.3
[linux-2.6.git] / net / sunrpc / svcauth_unix.c
1 #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>
11
12 #define RPCDBG_FACILITY RPCDBG_AUTH
13
14
15 /*
16  * AUTHUNIX and AUTHNULL credentials are both handled here.
17  * AUTHNULL is treated just like AUTHUNIX except that the uid/gid
18  * are always nobody (-2).  i.e. we do the same IP address checks for
19  * AUTHNULL as for AUTHUNIX, and that is done here.
20  */
21
22
23 static char *strdup(char *s)
24 {
25         char *rv = kmalloc(strlen(s)+1, GFP_KERNEL);
26         if (rv)
27                 strcpy(rv, s);
28         return rv;
29 }
30
31 struct unix_domain {
32         struct auth_domain      h;
33         int     addr_changes;
34         /* other stuff later */
35 };
36
37 struct auth_domain *unix_domain_find(char *name)
38 {
39         struct auth_domain *rv, ud;
40         struct unix_domain *new;
41
42         ud.name = name;
43         
44         rv = auth_domain_lookup(&ud, 0);
45
46  foundit:
47         if (rv && rv->flavour != RPC_AUTH_UNIX) {
48                 auth_domain_put(rv);
49                 return NULL;
50         }
51         if (rv)
52                 return rv;
53
54         new = kmalloc(sizeof(*new), GFP_KERNEL);
55         if (new == NULL)
56                 return NULL;
57         cache_init(&new->h.h);
58         new->h.name = strdup(name);
59         new->h.flavour = RPC_AUTH_UNIX;
60         new->addr_changes = 0;
61         new->h.h.expiry_time = NEVER;
62
63         rv = auth_domain_lookup(&new->h, 2);
64         if (rv == &new->h) {
65                 if (atomic_dec_and_test(&new->h.h.refcnt)) BUG();
66         } else {
67                 auth_domain_put(&new->h);
68                 goto foundit;
69         }
70
71         return rv;
72 }
73
74 static void svcauth_unix_domain_release(struct auth_domain *dom)
75 {
76         struct unix_domain *ud = container_of(dom, struct unix_domain, h);
77
78         kfree(dom->name);
79         kfree(ud);
80 }
81
82
83 /**************************************************
84  * cache for IP address to unix_domain
85  * as needed by AUTH_UNIX
86  */
87 #define IP_HASHBITS     8
88 #define IP_HASHMAX      (1<<IP_HASHBITS)
89 #define IP_HASHMASK     (IP_HASHMAX-1)
90
91 struct ip_map {
92         struct cache_head       h;
93         char                    m_class[8]; /* e.g. "nfsd" */
94         struct in_addr          m_addr;
95         struct unix_domain      *m_client;
96         int                     m_add_change;
97 };
98 static struct cache_head        *ip_table[IP_HASHMAX];
99
100 void ip_map_put(struct cache_head *item, struct cache_detail *cd)
101 {
102         struct ip_map *im = container_of(item, struct ip_map,h);
103         if (cache_put(item, cd)) {
104                 if (test_bit(CACHE_VALID, &item->flags) &&
105                     !test_bit(CACHE_NEGATIVE, &item->flags))
106                         auth_domain_put(&im->m_client->h);
107                 kfree(im);
108         }
109 }
110
111 static inline int ip_map_hash(struct ip_map *item)
112 {
113         return hash_str(item->m_class, IP_HASHBITS) ^ 
114                 hash_long((unsigned long)item->m_addr.s_addr, IP_HASHBITS);
115 }
116 static inline int ip_map_match(struct ip_map *item, struct ip_map *tmp)
117 {
118         return strcmp(tmp->m_class, item->m_class) == 0
119                 && tmp->m_addr.s_addr == item->m_addr.s_addr;
120 }
121 static inline void ip_map_init(struct ip_map *new, struct ip_map *item)
122 {
123         strcpy(new->m_class, item->m_class);
124         new->m_addr.s_addr = item->m_addr.s_addr;
125 }
126 static inline void ip_map_update(struct ip_map *new, struct ip_map *item)
127 {
128         cache_get(&item->m_client->h.h);
129         new->m_client = item->m_client;
130         new->m_add_change = item->m_add_change;
131 }
132
133 static void ip_map_request(struct cache_detail *cd,
134                                   struct cache_head *h,
135                                   char **bpp, int *blen)
136 {
137         char text_addr[20];
138         struct ip_map *im = container_of(h, struct ip_map, h);
139         __u32 addr = im->m_addr.s_addr;
140         
141         snprintf(text_addr, 20, "%u.%u.%u.%u",
142                  ntohl(addr) >> 24 & 0xff,
143                  ntohl(addr) >> 16 & 0xff,
144                  ntohl(addr) >>  8 & 0xff,
145                  ntohl(addr) >>  0 & 0xff);
146
147         qword_add(bpp, blen, im->m_class);
148         qword_add(bpp, blen, text_addr);
149         (*bpp)[-1] = '\n';
150 }
151
152 static struct ip_map *ip_map_lookup(struct ip_map *, int);
153 static int ip_map_parse(struct cache_detail *cd,
154                           char *mesg, int mlen)
155 {
156         /* class ipaddress [domainname] */
157         char class[50], buf[50];
158         int len;
159         int b1,b2,b3,b4;
160         char c;
161         struct ip_map ipm, *ipmp;
162         struct auth_domain *dom;
163         time_t expiry;
164
165         if (mesg[mlen-1] != '\n')
166                 return -EINVAL;
167         mesg[mlen-1] = 0;
168
169         /* class */
170         len = qword_get(&mesg, class, 50);
171         if (len <= 0) return -EINVAL;
172         if (len >= sizeof(ipm.m_class))
173                 return -EINVAL;
174
175         /* ip address */
176         len = qword_get(&mesg, buf, 50);
177         if (len <= 0) return -EINVAL;
178
179         if (sscanf(buf, "%u.%u.%u.%u%c", &b1, &b2, &b3, &b4, &c) != 4)
180                 return -EINVAL;
181         
182         expiry = get_expiry(&mesg);
183         if (expiry ==0)
184                 return -EINVAL;
185
186         /* domainname, or empty for NEGATIVE */
187         len = qword_get(&mesg, buf, 50);
188         if (len < 0) return -EINVAL;
189
190         if (len) {
191                 dom = unix_domain_find(buf);
192                 if (dom == NULL)
193                         return -ENOENT;
194         } else
195                 dom = NULL;
196
197         strcpy(ipm.m_class, class);
198         ipm.m_addr.s_addr =
199                 htonl((((((b1<<8)|b2)<<8)|b3)<<8)|b4);
200         ipm.h.flags = 0;
201         if (dom) {
202                 ipm.m_client = container_of(dom, struct unix_domain, h);
203                 ipm.m_add_change = ipm.m_client->addr_changes;
204         } else
205                 set_bit(CACHE_NEGATIVE, &ipm.h.flags);
206         ipm.h.expiry_time = expiry;
207
208         ipmp = ip_map_lookup(&ipm, 1);
209         if (ipmp)
210                 ip_map_put(&ipmp->h, &ip_map_cache);
211         if (dom)
212                 auth_domain_put(dom);
213         if (!ipmp)
214                 return -ENOMEM;
215         cache_flush();
216         return 0;
217 }
218
219 static int ip_map_show(struct seq_file *m,
220                        struct cache_detail *cd,
221                        struct cache_head *h)
222 {
223         struct ip_map *im;
224         struct in_addr addr;
225         char *dom = "-no-domain-";
226
227         if (h == NULL) {
228                 seq_puts(m, "#class IP domain\n");
229                 return 0;
230         }
231         im = container_of(h, struct ip_map, h);
232         /* class addr domain */
233         addr = im->m_addr;
234
235         if (test_bit(CACHE_VALID, &h->flags) && 
236             !test_bit(CACHE_NEGATIVE, &h->flags))
237                 dom = im->m_client->h.name;
238
239         seq_printf(m, "%s %d.%d.%d.%d %s\n",
240                    im->m_class,
241                    htonl(addr.s_addr) >> 24 & 0xff,
242                    htonl(addr.s_addr) >> 16 & 0xff,
243                    htonl(addr.s_addr) >>  8 & 0xff,
244                    htonl(addr.s_addr) >>  0 & 0xff,
245                    dom
246                    );
247         return 0;
248 }
249         
250
251 struct cache_detail ip_map_cache = {
252         .hash_size      = IP_HASHMAX,
253         .hash_table     = ip_table,
254         .name           = "auth.unix.ip",
255         .cache_put      = ip_map_put,
256         .cache_request  = ip_map_request,
257         .cache_parse    = ip_map_parse,
258         .cache_show     = ip_map_show,
259 };
260
261 static DefineSimpleCacheLookup(ip_map, 0)
262
263
264 int auth_unix_add_addr(struct in_addr addr, struct auth_domain *dom)
265 {
266         struct unix_domain *udom;
267         struct ip_map ip, *ipmp;
268
269         if (dom->flavour != RPC_AUTH_UNIX)
270                 return -EINVAL;
271         udom = container_of(dom, struct unix_domain, h);
272         strcpy(ip.m_class, "nfsd");
273         ip.m_addr = addr;
274         ip.m_client = udom;
275         ip.m_add_change = udom->addr_changes+1;
276         ip.h.flags = 0;
277         ip.h.expiry_time = NEVER;
278         
279         ipmp = ip_map_lookup(&ip, 1);
280
281         if (ipmp) {
282                 ip_map_put(&ipmp->h, &ip_map_cache);
283                 return 0;
284         } else
285                 return -ENOMEM;
286 }
287
288 int auth_unix_forget_old(struct auth_domain *dom)
289 {
290         struct unix_domain *udom;
291         
292         if (dom->flavour != RPC_AUTH_UNIX)
293                 return -EINVAL;
294         udom = container_of(dom, struct unix_domain, h);
295         udom->addr_changes++;
296         return 0;
297 }
298
299 struct auth_domain *auth_unix_lookup(struct in_addr addr)
300 {
301         struct ip_map key, *ipm;
302         struct auth_domain *rv;
303
304         strcpy(key.m_class, "nfsd");
305         key.m_addr = addr;
306
307         ipm = ip_map_lookup(&key, 0);
308
309         if (!ipm)
310                 return NULL;
311         if (cache_check(&ip_map_cache, &ipm->h, NULL))
312                 return NULL;
313
314         if ((ipm->m_client->addr_changes - ipm->m_add_change) >0) {
315                 if (test_and_set_bit(CACHE_NEGATIVE, &ipm->h.flags) == 0)
316                         auth_domain_put(&ipm->m_client->h);
317                 rv = NULL;
318         } else {
319                 rv = &ipm->m_client->h;
320                 cache_get(&rv->h);
321         }
322         ip_map_put(&ipm->h, &ip_map_cache);
323         return rv;
324 }
325
326 void svcauth_unix_purge(void)
327 {
328         cache_purge(&ip_map_cache);
329         cache_purge(&auth_domain_cache);
330 }
331
332
333 static int
334 svcauth_null_accept(struct svc_rqst *rqstp, u32 *authp)
335 {
336         struct kvec     *argv = &rqstp->rq_arg.head[0];
337         struct kvec     *resv = &rqstp->rq_res.head[0];
338         int             rv=0;
339         struct ip_map key, *ipm;
340
341         if (argv->iov_len < 3*4)
342                 return SVC_GARBAGE;
343
344         if (svc_getu32(argv) != 0) { 
345                 dprintk("svc: bad null cred\n");
346                 *authp = rpc_autherr_badcred;
347                 return SVC_DENIED;
348         }
349         if (svc_getu32(argv) != RPC_AUTH_NULL || svc_getu32(argv) != 0) {
350                 dprintk("svc: bad null verf\n");
351                 *authp = rpc_autherr_badverf;
352                 return SVC_DENIED;
353         }
354
355         /* Signal that mapping to nobody uid/gid is required */
356         rqstp->rq_cred.cr_uid = (uid_t) -1;
357         rqstp->rq_cred.cr_gid = (gid_t) -1;
358         rqstp->rq_cred.cr_group_info = groups_alloc(0);
359         if (rqstp->rq_cred.cr_group_info == NULL)
360                 return SVC_DROP; /* kmalloc failure - client must retry */
361
362         /* Put NULL verifier */
363         svc_putu32(resv, RPC_AUTH_NULL);
364         svc_putu32(resv, 0);
365
366         strcpy(key.m_class, rqstp->rq_server->sv_program->pg_class);
367         key.m_addr = rqstp->rq_addr.sin_addr;
368
369         ipm = ip_map_lookup(&key, 0);
370
371         rqstp->rq_client = NULL;
372
373         if (ipm)
374                 switch (cache_check(&ip_map_cache, &ipm->h, &rqstp->rq_chandle)) {
375                 case -EAGAIN:
376                         rv = SVC_DROP;
377                         break;
378                 case -ENOENT:
379                         rv = SVC_OK; /* rq_client is NULL */
380                         break;
381                 case 0:
382                         rqstp->rq_client = &ipm->m_client->h;
383                         cache_get(&rqstp->rq_client->h);
384                         ip_map_put(&ipm->h, &ip_map_cache);
385                         rv = SVC_OK;
386                         break;
387                 default: BUG();
388                 }
389         else rv = SVC_DROP;
390
391         if (rqstp->rq_client == NULL && rqstp->rq_proc != 0)
392                 *authp = rpc_autherr_badcred;
393
394         return rv;
395 }
396
397 static int
398 svcauth_null_release(struct svc_rqst *rqstp)
399 {
400         if (rqstp->rq_client)
401                 auth_domain_put(rqstp->rq_client);
402         rqstp->rq_client = NULL;
403         if (rqstp->rq_cred.cr_group_info)
404                 put_group_info(rqstp->rq_cred.cr_group_info);
405         rqstp->rq_cred.cr_group_info = NULL;
406
407         return 0; /* don't drop */
408 }
409
410
411 struct auth_ops svcauth_null = {
412         .name           = "null",
413         .owner          = THIS_MODULE,
414         .flavour        = RPC_AUTH_NULL,
415         .accept         = svcauth_null_accept,
416         .release        = svcauth_null_release,
417 };
418
419
420 int
421 svcauth_unix_accept(struct svc_rqst *rqstp, u32 *authp)
422 {
423         struct kvec     *argv = &rqstp->rq_arg.head[0];
424         struct kvec     *resv = &rqstp->rq_res.head[0];
425         struct svc_cred *cred = &rqstp->rq_cred;
426         u32             slen, i;
427         int             len   = argv->iov_len;
428         int             rv=0;
429         struct ip_map key, *ipm;
430
431         cred->cr_group_info = NULL;
432         rqstp->rq_client = NULL;
433
434         if ((len -= 3*4) < 0)
435                 return SVC_GARBAGE;
436
437         svc_getu32(argv);                       /* length */
438         svc_getu32(argv);                       /* time stamp */
439         slen = XDR_QUADLEN(ntohl(svc_getu32(argv)));    /* machname length */
440         if (slen > 64 || (len -= (slen + 3)*4) < 0)
441                 goto badcred;
442         argv->iov_base = (void*)((u32*)argv->iov_base + slen);  /* skip machname */
443         argv->iov_len -= slen*4;
444
445         cred->cr_uid = ntohl(svc_getu32(argv));         /* uid */
446         cred->cr_gid = ntohl(svc_getu32(argv));         /* gid */
447         slen = ntohl(svc_getu32(argv));                 /* gids length */
448         if (slen > 16 || (len -= (slen + 2)*4) < 0)
449                 goto badcred;
450         cred->cr_group_info = groups_alloc(slen);
451         if (cred->cr_group_info == NULL)
452                 return SVC_DROP;
453         for (i = 0; i < slen; i++)
454                 GROUP_AT(cred->cr_group_info, i) = ntohl(svc_getu32(argv));
455
456         if (svc_getu32(argv) != RPC_AUTH_NULL || svc_getu32(argv) != 0) {
457                 *authp = rpc_autherr_badverf;
458                 return SVC_DENIED;
459         }
460
461
462         strcpy(key.m_class, rqstp->rq_server->sv_program->pg_class);
463         key.m_addr = rqstp->rq_addr.sin_addr;
464
465
466         ipm = ip_map_lookup(&key, 0);
467
468         if (ipm)
469                 switch (cache_check(&ip_map_cache, &ipm->h, &rqstp->rq_chandle)) {
470                 case -EAGAIN:
471                         rv = SVC_DROP;
472                         break;
473                 case -ENOENT:
474                         rv = SVC_OK; /* rq_client is NULL */
475                         break;
476                 case 0:
477                         rqstp->rq_client = &ipm->m_client->h;
478                         cache_get(&rqstp->rq_client->h);
479                         ip_map_put(&ipm->h, &ip_map_cache);
480                         rv = SVC_OK;
481                         break;
482                 default: BUG();
483                 }
484         else rv = SVC_DROP;
485
486         if (rv  == SVC_OK && rqstp->rq_client == NULL && rqstp->rq_proc != 0)
487                 goto badcred;
488
489         /* Put NULL verifier */
490         svc_putu32(resv, RPC_AUTH_NULL);
491         svc_putu32(resv, 0);
492
493         return rv;
494
495 badcred:
496         *authp = rpc_autherr_badcred;
497         return SVC_DENIED;
498 }
499
500 int
501 svcauth_unix_release(struct svc_rqst *rqstp)
502 {
503         /* Verifier (such as it is) is already in place.
504          */
505         if (rqstp->rq_client)
506                 auth_domain_put(rqstp->rq_client);
507         rqstp->rq_client = NULL;
508         if (rqstp->rq_cred.cr_group_info)
509                 put_group_info(rqstp->rq_cred.cr_group_info);
510         rqstp->rq_cred.cr_group_info = NULL;
511
512         return 0;
513 }
514
515
516 struct auth_ops svcauth_unix = {
517         .name           = "unix",
518         .owner          = THIS_MODULE,
519         .flavour        = RPC_AUTH_UNIX,
520         .accept         = svcauth_unix_accept,
521         .release        = svcauth_unix_release,
522         .domain_release = svcauth_unix_domain_release,
523 };
524