blob: 59a7c524a8b1759b83ff6e97eca4dab56f47a9e7 [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>
Andy Adamsonc4170583f2007-07-17 04:04:42 -07008#include <linux/sunrpc/gss_api.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/err.h>
10#include <linux/seq_file.h>
11#include <linux/hash.h>
Paulo Marques543537b2005-06-23 00:09:02 -070012#include <linux/string.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Greg Banks7b2b1fe2006-10-04 02:15:50 -070014#include <net/sock.h>
Aurélien Charbonf15364b2008-01-18 15:50:56 +010015#include <net/ipv6.h>
16#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#define RPCDBG_FACILITY RPCDBG_AUTH
18
Chuck Lever07396052010-01-26 14:03:47 -050019#include <linux/sunrpc/clnt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Pavel Emelyanov90d51b02010-09-27 14:02:29 +040021#include "netns.h"
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023/*
24 * AUTHUNIX and AUTHNULL credentials are both handled here.
25 * AUTHNULL is treated just like AUTHUNIX except that the uid/gid
26 * are always nobody (-2). i.e. we do the same IP address checks for
27 * AUTHNULL as for AUTHUNIX, and that is done here.
28 */
29
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031struct unix_domain {
32 struct auth_domain h;
33 int addr_changes;
34 /* other stuff later */
35};
36
NeilBrownefc36aa2006-03-27 01:14:59 -080037extern struct auth_ops svcauth_unix;
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039struct auth_domain *unix_domain_find(char *name)
40{
NeilBrownefc36aa2006-03-27 01:14:59 -080041 struct auth_domain *rv;
42 struct unix_domain *new = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
NeilBrownefc36aa2006-03-27 01:14:59 -080044 rv = auth_domain_lookup(name, NULL);
45 while(1) {
NeilBrownad1b5222006-03-27 01:15:11 -080046 if (rv) {
47 if (new && rv != &new->h)
48 auth_domain_put(&new->h);
49
50 if (rv->flavour != &svcauth_unix) {
51 auth_domain_put(rv);
52 return NULL;
53 }
NeilBrownefc36aa2006-03-27 01:14:59 -080054 return rv;
55 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
NeilBrownefc36aa2006-03-27 01:14:59 -080057 new = kmalloc(sizeof(*new), GFP_KERNEL);
58 if (new == NULL)
59 return NULL;
60 kref_init(&new->h.ref);
61 new->h.name = kstrdup(name, GFP_KERNEL);
NeilBrowndd08d6e2006-12-13 00:35:44 -080062 if (new->h.name == NULL) {
63 kfree(new);
64 return NULL;
65 }
NeilBrownefc36aa2006-03-27 01:14:59 -080066 new->h.flavour = &svcauth_unix;
67 new->addr_changes = 0;
68 rv = auth_domain_lookup(name, &new->h);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070070}
Trond Myklebust24c37672008-12-23 16:30:12 -050071EXPORT_SYMBOL_GPL(unix_domain_find);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73static void svcauth_unix_domain_release(struct auth_domain *dom)
74{
75 struct unix_domain *ud = container_of(dom, struct unix_domain, h);
76
77 kfree(dom->name);
78 kfree(ud);
79}
80
81
82/**************************************************
83 * cache for IP address to unix_domain
84 * as needed by AUTH_UNIX
85 */
86#define IP_HASHBITS 8
87#define IP_HASHMAX (1<<IP_HASHBITS)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89struct ip_map {
90 struct cache_head h;
91 char m_class[8]; /* e.g. "nfsd" */
Aurélien Charbonf15364b2008-01-18 15:50:56 +010092 struct in6_addr m_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 struct unix_domain *m_client;
94 int m_add_change;
95};
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
NeilBrownbaab9352006-03-27 01:15:09 -080097static void ip_map_put(struct kref *kref)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
NeilBrownbaab9352006-03-27 01:15:09 -080099 struct cache_head *item = container_of(kref, struct cache_head, ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 struct ip_map *im = container_of(item, struct ip_map,h);
NeilBrownbaab9352006-03-27 01:15:09 -0800101
102 if (test_bit(CACHE_VALID, &item->flags) &&
103 !test_bit(CACHE_NEGATIVE, &item->flags))
104 auth_domain_put(&im->m_client->h);
105 kfree(im);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106}
107
NeilBrown1f1e0302006-01-06 00:09:49 -0800108#if IP_HASHBITS == 8
109/* hash_long on a 64 bit machine is currently REALLY BAD for
110 * IP addresses in reverse-endian (i.e. on a little-endian machine).
111 * So use a trivial but reliable hash instead
112 */
Al Viro48061262006-11-08 00:22:34 -0800113static inline int hash_ip(__be32 ip)
NeilBrown1f1e0302006-01-06 00:09:49 -0800114{
Al Viro48061262006-11-08 00:22:34 -0800115 int hash = (__force u32)ip ^ ((__force u32)ip>>16);
NeilBrown1f1e0302006-01-06 00:09:49 -0800116 return (hash ^ (hash>>8)) & 0xff;
117}
118#endif
Aurélien Charbonf15364b2008-01-18 15:50:56 +0100119static inline int hash_ip6(struct in6_addr ip)
120{
121 return (hash_ip(ip.s6_addr32[0]) ^
122 hash_ip(ip.s6_addr32[1]) ^
123 hash_ip(ip.s6_addr32[2]) ^
124 hash_ip(ip.s6_addr32[3]));
125}
NeilBrown1a9917c2006-03-27 01:15:02 -0800126static int ip_map_match(struct cache_head *corig, struct cache_head *cnew)
127{
128 struct ip_map *orig = container_of(corig, struct ip_map, h);
129 struct ip_map *new = container_of(cnew, struct ip_map, h);
Joe Perchesf64f9e72009-11-29 16:55:45 -0800130 return strcmp(orig->m_class, new->m_class) == 0 &&
131 ipv6_addr_equal(&orig->m_addr, &new->m_addr);
NeilBrown1a9917c2006-03-27 01:15:02 -0800132}
133static void ip_map_init(struct cache_head *cnew, struct cache_head *citem)
134{
135 struct ip_map *new = container_of(cnew, struct ip_map, h);
136 struct ip_map *item = container_of(citem, struct ip_map, h);
NeilBrown1f1e0302006-01-06 00:09:49 -0800137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 strcpy(new->m_class, item->m_class);
Aurélien Charbonf15364b2008-01-18 15:50:56 +0100139 ipv6_addr_copy(&new->m_addr, &item->m_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140}
NeilBrown1a9917c2006-03-27 01:15:02 -0800141static void update(struct cache_head *cnew, struct cache_head *citem)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
NeilBrown1a9917c2006-03-27 01:15:02 -0800143 struct ip_map *new = container_of(cnew, struct ip_map, h);
144 struct ip_map *item = container_of(citem, struct ip_map, h);
145
NeilBrownefc36aa2006-03-27 01:14:59 -0800146 kref_get(&item->m_client->h.ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 new->m_client = item->m_client;
148 new->m_add_change = item->m_add_change;
149}
NeilBrown1a9917c2006-03-27 01:15:02 -0800150static struct cache_head *ip_map_alloc(void)
151{
152 struct ip_map *i = kmalloc(sizeof(*i), GFP_KERNEL);
153 if (i)
154 return &i->h;
155 else
156 return NULL;
157}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159static void ip_map_request(struct cache_detail *cd,
160 struct cache_head *h,
161 char **bpp, int *blen)
162{
Aurélien Charbonf15364b2008-01-18 15:50:56 +0100163 char text_addr[40];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 struct ip_map *im = container_of(h, struct ip_map, h);
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800165
Aurélien Charbonf15364b2008-01-18 15:50:56 +0100166 if (ipv6_addr_v4mapped(&(im->m_addr))) {
Harvey Harrison21454aa2008-10-31 00:54:56 -0700167 snprintf(text_addr, 20, "%pI4", &im->m_addr.s6_addr32[3]);
Aurélien Charbonf15364b2008-01-18 15:50:56 +0100168 } else {
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700169 snprintf(text_addr, 40, "%pI6", &im->m_addr);
Aurélien Charbonf15364b2008-01-18 15:50:56 +0100170 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 qword_add(bpp, blen, im->m_class);
172 qword_add(bpp, blen, text_addr);
173 (*bpp)[-1] = '\n';
174}
175
Trond Myklebustbc74b4f2009-08-09 15:14:29 -0400176static int ip_map_upcall(struct cache_detail *cd, struct cache_head *h)
177{
178 return sunrpc_cache_pipe_upcall(cd, h, ip_map_request);
179}
180
Pavel Emelyanovbf18ab32010-09-27 13:57:36 +0400181static struct ip_map *__ip_map_lookup(struct cache_detail *cd, char *class, struct in6_addr *addr);
182static int __ip_map_update(struct cache_detail *cd, struct ip_map *ipm, struct unix_domain *udom, time_t expiry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
184static int ip_map_parse(struct cache_detail *cd,
185 char *mesg, int mlen)
186{
187 /* class ipaddress [domainname] */
188 /* should be safe just to use the start of the input buffer
189 * for scratch: */
190 char *buf = mesg;
191 int len;
NeilBrown1a9917c2006-03-27 01:15:02 -0800192 char class[8];
Chuck Lever07396052010-01-26 14:03:47 -0500193 union {
194 struct sockaddr sa;
195 struct sockaddr_in s4;
196 struct sockaddr_in6 s6;
197 } address;
198 struct sockaddr_in6 sin6;
NeilBrown1a9917c2006-03-27 01:15:02 -0800199 int err;
200
201 struct ip_map *ipmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 struct auth_domain *dom;
203 time_t expiry;
204
205 if (mesg[mlen-1] != '\n')
206 return -EINVAL;
207 mesg[mlen-1] = 0;
208
209 /* class */
NeilBrown1a9917c2006-03-27 01:15:02 -0800210 len = qword_get(&mesg, class, sizeof(class));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 if (len <= 0) return -EINVAL;
212
213 /* ip address */
214 len = qword_get(&mesg, buf, mlen);
215 if (len <= 0) return -EINVAL;
216
Chuck Lever07396052010-01-26 14:03:47 -0500217 if (rpc_pton(buf, len, &address.sa, sizeof(address)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 return -EINVAL;
Chuck Lever07396052010-01-26 14:03:47 -0500219 switch (address.sa.sa_family) {
220 case AF_INET:
221 /* Form a mapped IPv4 address in sin6 */
Chuck Lever07396052010-01-26 14:03:47 -0500222 sin6.sin6_family = AF_INET6;
Pavel Emelyanov70dc78d2010-10-05 20:48:02 +0400223 ipv6_addr_set_v4mapped(address.s4.sin_addr.s_addr,
224 &sin6.sin6_addr);
Chuck Lever07396052010-01-26 14:03:47 -0500225 break;
226#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
227 case AF_INET6:
228 memcpy(&sin6, &address.s6, sizeof(sin6));
229 break;
230#endif
231 default:
232 return -EINVAL;
233 }
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 expiry = get_expiry(&mesg);
236 if (expiry ==0)
237 return -EINVAL;
238
239 /* domainname, or empty for NEGATIVE */
240 len = qword_get(&mesg, buf, mlen);
241 if (len < 0) return -EINVAL;
242
243 if (len) {
244 dom = unix_domain_find(buf);
245 if (dom == NULL)
246 return -ENOENT;
247 } else
248 dom = NULL;
249
Chuck Lever07396052010-01-26 14:03:47 -0500250 /* IPv6 scope IDs are ignored for now */
Pavel Emelyanovbf18ab32010-09-27 13:57:36 +0400251 ipmp = __ip_map_lookup(cd, class, &sin6.sin6_addr);
NeilBrown1a9917c2006-03-27 01:15:02 -0800252 if (ipmp) {
Pavel Emelyanovbf18ab32010-09-27 13:57:36 +0400253 err = __ip_map_update(cd, ipmp,
NeilBrown1a9917c2006-03-27 01:15:02 -0800254 container_of(dom, struct unix_domain, h),
255 expiry);
256 } else
257 err = -ENOMEM;
258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 if (dom)
260 auth_domain_put(dom);
NeilBrown1a9917c2006-03-27 01:15:02 -0800261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 cache_flush();
NeilBrown1a9917c2006-03-27 01:15:02 -0800263 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264}
265
266static int ip_map_show(struct seq_file *m,
267 struct cache_detail *cd,
268 struct cache_head *h)
269{
270 struct ip_map *im;
Aurélien Charbonf15364b2008-01-18 15:50:56 +0100271 struct in6_addr addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 char *dom = "-no-domain-";
273
274 if (h == NULL) {
275 seq_puts(m, "#class IP domain\n");
276 return 0;
277 }
278 im = container_of(h, struct ip_map, h);
279 /* class addr domain */
Aurélien Charbonf15364b2008-01-18 15:50:56 +0100280 ipv6_addr_copy(&addr, &im->m_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800282 if (test_bit(CACHE_VALID, &h->flags) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 !test_bit(CACHE_NEGATIVE, &h->flags))
284 dom = im->m_client->h.name;
285
Aurélien Charbonf15364b2008-01-18 15:50:56 +0100286 if (ipv6_addr_v4mapped(&addr)) {
Harvey Harrison21454aa2008-10-31 00:54:56 -0700287 seq_printf(m, "%s %pI4 %s\n",
288 im->m_class, &addr.s6_addr32[3], dom);
Aurélien Charbonf15364b2008-01-18 15:50:56 +0100289 } else {
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700290 seq_printf(m, "%s %pI6 %s\n", im->m_class, &addr, dom);
Aurélien Charbonf15364b2008-01-18 15:50:56 +0100291 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 return 0;
293}
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Pavel Emelyanovbf18ab32010-09-27 13:57:36 +0400296static struct ip_map *__ip_map_lookup(struct cache_detail *cd, char *class,
297 struct in6_addr *addr)
NeilBrown1a9917c2006-03-27 01:15:02 -0800298{
299 struct ip_map ip;
300 struct cache_head *ch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
NeilBrown1a9917c2006-03-27 01:15:02 -0800302 strcpy(ip.m_class, class);
Aurélien Charbonf15364b2008-01-18 15:50:56 +0100303 ipv6_addr_copy(&ip.m_addr, addr);
Pavel Emelyanovbf18ab32010-09-27 13:57:36 +0400304 ch = sunrpc_cache_lookup(cd, &ip.h,
NeilBrown1a9917c2006-03-27 01:15:02 -0800305 hash_str(class, IP_HASHBITS) ^
Aurélien Charbonf15364b2008-01-18 15:50:56 +0100306 hash_ip6(*addr));
NeilBrown1a9917c2006-03-27 01:15:02 -0800307
308 if (ch)
309 return container_of(ch, struct ip_map, h);
310 else
311 return NULL;
312}
313
Pavel Emelyanov352114f2010-09-27 13:59:48 +0400314static inline struct ip_map *ip_map_lookup(struct net *net, char *class,
315 struct in6_addr *addr)
Pavel Emelyanovbf18ab32010-09-27 13:57:36 +0400316{
Pavel Emelyanov90d51b02010-09-27 14:02:29 +0400317 struct sunrpc_net *sn;
318
319 sn = net_generic(net, sunrpc_net_id);
320 return __ip_map_lookup(sn->ip_map_cache, class, addr);
Pavel Emelyanovbf18ab32010-09-27 13:57:36 +0400321}
322
323static int __ip_map_update(struct cache_detail *cd, struct ip_map *ipm,
324 struct unix_domain *udom, time_t expiry)
NeilBrown1a9917c2006-03-27 01:15:02 -0800325{
326 struct ip_map ip;
327 struct cache_head *ch;
328
329 ip.m_client = udom;
330 ip.h.flags = 0;
331 if (!udom)
332 set_bit(CACHE_NEGATIVE, &ip.h.flags);
333 else {
334 ip.m_add_change = udom->addr_changes;
335 /* if this is from the legacy set_client system call,
336 * we need m_add_change to be one higher
337 */
338 if (expiry == NEVER)
339 ip.m_add_change++;
340 }
341 ip.h.expiry_time = expiry;
Pavel Emelyanovbf18ab32010-09-27 13:57:36 +0400342 ch = sunrpc_cache_update(cd, &ip.h, &ipm->h,
NeilBrown1a9917c2006-03-27 01:15:02 -0800343 hash_str(ipm->m_class, IP_HASHBITS) ^
Aurélien Charbonf15364b2008-01-18 15:50:56 +0100344 hash_ip6(ipm->m_addr));
NeilBrown1a9917c2006-03-27 01:15:02 -0800345 if (!ch)
346 return -ENOMEM;
Pavel Emelyanovbf18ab32010-09-27 13:57:36 +0400347 cache_put(ch, cd);
NeilBrown1a9917c2006-03-27 01:15:02 -0800348 return 0;
349}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Pavel Emelyanov352114f2010-09-27 13:59:48 +0400351static inline int ip_map_update(struct net *net, struct ip_map *ipm,
352 struct unix_domain *udom, time_t expiry)
Pavel Emelyanovbf18ab32010-09-27 13:57:36 +0400353{
Pavel Emelyanov90d51b02010-09-27 14:02:29 +0400354 struct sunrpc_net *sn;
355
356 sn = net_generic(net, sunrpc_net_id);
357 return __ip_map_update(sn->ip_map_cache, ipm, udom, expiry);
Pavel Emelyanovbf18ab32010-09-27 13:57:36 +0400358}
359
Pavel Emelyanov352114f2010-09-27 13:59:48 +0400360int auth_unix_add_addr(struct net *net, struct in6_addr *addr, struct auth_domain *dom)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
362 struct unix_domain *udom;
NeilBrown1a9917c2006-03-27 01:15:02 -0800363 struct ip_map *ipmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
NeilBrownefc36aa2006-03-27 01:14:59 -0800365 if (dom->flavour != &svcauth_unix)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 return -EINVAL;
367 udom = container_of(dom, struct unix_domain, h);
Pavel Emelyanov352114f2010-09-27 13:59:48 +0400368 ipmp = ip_map_lookup(net, "nfsd", addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
NeilBrown1a9917c2006-03-27 01:15:02 -0800370 if (ipmp)
Pavel Emelyanov352114f2010-09-27 13:59:48 +0400371 return ip_map_update(net, ipmp, udom, NEVER);
NeilBrown1a9917c2006-03-27 01:15:02 -0800372 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 return -ENOMEM;
374}
Trond Myklebust24c37672008-12-23 16:30:12 -0500375EXPORT_SYMBOL_GPL(auth_unix_add_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
377int auth_unix_forget_old(struct auth_domain *dom)
378{
379 struct unix_domain *udom;
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800380
NeilBrownefc36aa2006-03-27 01:14:59 -0800381 if (dom->flavour != &svcauth_unix)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 return -EINVAL;
383 udom = container_of(dom, struct unix_domain, h);
384 udom->addr_changes++;
385 return 0;
386}
Trond Myklebust24c37672008-12-23 16:30:12 -0500387EXPORT_SYMBOL_GPL(auth_unix_forget_old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Pavel Emelyanov352114f2010-09-27 13:59:48 +0400389struct auth_domain *auth_unix_lookup(struct net *net, struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390{
Greg Banks40f10522006-10-02 02:17:43 -0700391 struct ip_map *ipm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 struct auth_domain *rv;
Pavel Emelyanov90d51b02010-09-27 14:02:29 +0400393 struct sunrpc_net *sn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Pavel Emelyanov90d51b02010-09-27 14:02:29 +0400395 sn = net_generic(net, sunrpc_net_id);
Pavel Emelyanov352114f2010-09-27 13:59:48 +0400396 ipm = ip_map_lookup(net, "nfsd", addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
398 if (!ipm)
399 return NULL;
Pavel Emelyanov90d51b02010-09-27 14:02:29 +0400400 if (cache_check(sn->ip_map_cache, &ipm->h, NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 return NULL;
402
403 if ((ipm->m_client->addr_changes - ipm->m_add_change) >0) {
J. Bruce Fields31f7aa62010-12-24 14:03:38 -0500404 sunrpc_invalidate(&ipm->h, sn->ip_map_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 rv = NULL;
406 } else {
407 rv = &ipm->m_client->h;
NeilBrownefc36aa2006-03-27 01:14:59 -0800408 kref_get(&rv->ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 }
Pavel Emelyanov90d51b02010-09-27 14:02:29 +0400410 cache_put(&ipm->h, sn->ip_map_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 return rv;
412}
Trond Myklebust24c37672008-12-23 16:30:12 -0500413EXPORT_SYMBOL_GPL(auth_unix_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
415void svcauth_unix_purge(void)
416{
Pavel Emelyanov90d51b02010-09-27 14:02:29 +0400417 struct net *net;
418
419 for_each_net(net) {
420 struct sunrpc_net *sn;
421
422 sn = net_generic(net, sunrpc_net_id);
423 cache_purge(sn->ip_map_cache);
424 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425}
Trond Myklebust24c37672008-12-23 16:30:12 -0500426EXPORT_SYMBOL_GPL(svcauth_unix_purge);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Greg Banks7b2b1fe2006-10-04 02:15:50 -0700428static inline struct ip_map *
Pavel Emelyanov3be44792010-09-27 13:59:13 +0400429ip_map_cached_get(struct svc_xprt *xprt)
Greg Banks7b2b1fe2006-10-04 02:15:50 -0700430{
Tom Tuckerdef13d72007-12-30 21:08:08 -0600431 struct ip_map *ipm = NULL;
Pavel Emelyanov90d51b02010-09-27 14:02:29 +0400432 struct sunrpc_net *sn;
Tom Tuckerdef13d72007-12-30 21:08:08 -0600433
434 if (test_bit(XPT_CACHE_AUTH, &xprt->xpt_flags)) {
435 spin_lock(&xprt->xpt_lock);
436 ipm = xprt->xpt_auth_cache;
437 if (ipm != NULL) {
438 if (!cache_valid(&ipm->h)) {
439 /*
440 * The entry has been invalidated since it was
441 * remembered, e.g. by a second mount from the
442 * same IP address.
443 */
Pavel Emelyanov90d51b02010-09-27 14:02:29 +0400444 sn = net_generic(xprt->xpt_net, sunrpc_net_id);
Tom Tuckerdef13d72007-12-30 21:08:08 -0600445 xprt->xpt_auth_cache = NULL;
446 spin_unlock(&xprt->xpt_lock);
Pavel Emelyanov90d51b02010-09-27 14:02:29 +0400447 cache_put(&ipm->h, sn->ip_map_cache);
Tom Tuckerdef13d72007-12-30 21:08:08 -0600448 return NULL;
449 }
450 cache_get(&ipm->h);
Greg Banks7b2b1fe2006-10-04 02:15:50 -0700451 }
Tom Tuckerdef13d72007-12-30 21:08:08 -0600452 spin_unlock(&xprt->xpt_lock);
Greg Banks7b2b1fe2006-10-04 02:15:50 -0700453 }
454 return ipm;
455}
456
457static inline void
Pavel Emelyanov3be44792010-09-27 13:59:13 +0400458ip_map_cached_put(struct svc_xprt *xprt, struct ip_map *ipm)
Greg Banks7b2b1fe2006-10-04 02:15:50 -0700459{
Tom Tuckerdef13d72007-12-30 21:08:08 -0600460 if (test_bit(XPT_CACHE_AUTH, &xprt->xpt_flags)) {
461 spin_lock(&xprt->xpt_lock);
462 if (xprt->xpt_auth_cache == NULL) {
463 /* newly cached, keep the reference */
464 xprt->xpt_auth_cache = ipm;
465 ipm = NULL;
466 }
467 spin_unlock(&xprt->xpt_lock);
NeilBrown30f3dee2007-04-16 22:53:25 -0700468 }
Pavel Emelyanov90d51b02010-09-27 14:02:29 +0400469 if (ipm) {
470 struct sunrpc_net *sn;
471
472 sn = net_generic(xprt->xpt_net, sunrpc_net_id);
473 cache_put(&ipm->h, sn->ip_map_cache);
474 }
Greg Banks7b2b1fe2006-10-04 02:15:50 -0700475}
476
477void
Pavel Emelyanove3bfca02010-09-27 13:58:42 +0400478svcauth_unix_info_release(struct svc_xprt *xpt)
Greg Banks7b2b1fe2006-10-04 02:15:50 -0700479{
Pavel Emelyanove3bfca02010-09-27 13:58:42 +0400480 struct ip_map *ipm;
481
482 ipm = xpt->xpt_auth_cache;
Pavel Emelyanov90d51b02010-09-27 14:02:29 +0400483 if (ipm != NULL) {
484 struct sunrpc_net *sn;
485
486 sn = net_generic(xpt->xpt_net, sunrpc_net_id);
487 cache_put(&ipm->h, sn->ip_map_cache);
488 }
Greg Banks7b2b1fe2006-10-04 02:15:50 -0700489}
490
NeilBrown3fc605a2007-02-14 00:33:13 -0800491/****************************************************************************
492 * auth.unix.gid cache
493 * simple cache to map a UID to a list of GIDs
494 * because AUTH_UNIX aka AUTH_SYS has a max of 16
495 */
496#define GID_HASHBITS 8
497#define GID_HASHMAX (1<<GID_HASHBITS)
NeilBrown3fc605a2007-02-14 00:33:13 -0800498
499struct unix_gid {
500 struct cache_head h;
501 uid_t uid;
502 struct group_info *gi;
503};
504static struct cache_head *gid_table[GID_HASHMAX];
505
506static void unix_gid_put(struct kref *kref)
507{
508 struct cache_head *item = container_of(kref, struct cache_head, ref);
509 struct unix_gid *ug = container_of(item, struct unix_gid, h);
510 if (test_bit(CACHE_VALID, &item->flags) &&
511 !test_bit(CACHE_NEGATIVE, &item->flags))
512 put_group_info(ug->gi);
513 kfree(ug);
514}
515
516static int unix_gid_match(struct cache_head *corig, struct cache_head *cnew)
517{
518 struct unix_gid *orig = container_of(corig, struct unix_gid, h);
519 struct unix_gid *new = container_of(cnew, struct unix_gid, h);
520 return orig->uid == new->uid;
521}
522static void unix_gid_init(struct cache_head *cnew, struct cache_head *citem)
523{
524 struct unix_gid *new = container_of(cnew, struct unix_gid, h);
525 struct unix_gid *item = container_of(citem, struct unix_gid, h);
526 new->uid = item->uid;
527}
528static void unix_gid_update(struct cache_head *cnew, struct cache_head *citem)
529{
530 struct unix_gid *new = container_of(cnew, struct unix_gid, h);
531 struct unix_gid *item = container_of(citem, struct unix_gid, h);
532
533 get_group_info(item->gi);
534 new->gi = item->gi;
535}
536static struct cache_head *unix_gid_alloc(void)
537{
538 struct unix_gid *g = kmalloc(sizeof(*g), GFP_KERNEL);
539 if (g)
540 return &g->h;
541 else
542 return NULL;
543}
544
545static void unix_gid_request(struct cache_detail *cd,
546 struct cache_head *h,
547 char **bpp, int *blen)
548{
549 char tuid[20];
550 struct unix_gid *ug = container_of(h, struct unix_gid, h);
551
552 snprintf(tuid, 20, "%u", ug->uid);
553 qword_add(bpp, blen, tuid);
554 (*bpp)[-1] = '\n';
555}
556
Trond Myklebustbc74b4f2009-08-09 15:14:29 -0400557static int unix_gid_upcall(struct cache_detail *cd, struct cache_head *h)
558{
559 return sunrpc_cache_pipe_upcall(cd, h, unix_gid_request);
560}
561
NeilBrown3fc605a2007-02-14 00:33:13 -0800562static struct unix_gid *unix_gid_lookup(uid_t uid);
563extern struct cache_detail unix_gid_cache;
564
565static int unix_gid_parse(struct cache_detail *cd,
566 char *mesg, int mlen)
567{
568 /* uid expiry Ngid gid0 gid1 ... gidN-1 */
569 int uid;
570 int gids;
571 int rv;
572 int i;
573 int err;
574 time_t expiry;
575 struct unix_gid ug, *ugp;
576
577 if (mlen <= 0 || mesg[mlen-1] != '\n')
578 return -EINVAL;
579 mesg[mlen-1] = 0;
580
581 rv = get_int(&mesg, &uid);
582 if (rv)
583 return -EINVAL;
584 ug.uid = uid;
585
586 expiry = get_expiry(&mesg);
587 if (expiry == 0)
588 return -EINVAL;
589
590 rv = get_int(&mesg, &gids);
591 if (rv || gids < 0 || gids > 8192)
592 return -EINVAL;
593
594 ug.gi = groups_alloc(gids);
595 if (!ug.gi)
596 return -ENOMEM;
597
598 for (i = 0 ; i < gids ; i++) {
599 int gid;
600 rv = get_int(&mesg, &gid);
601 err = -EINVAL;
602 if (rv)
603 goto out;
604 GROUP_AT(ug.gi, i) = gid;
605 }
606
607 ugp = unix_gid_lookup(uid);
608 if (ugp) {
609 struct cache_head *ch;
610 ug.h.flags = 0;
611 ug.h.expiry_time = expiry;
612 ch = sunrpc_cache_update(&unix_gid_cache,
613 &ug.h, &ugp->h,
614 hash_long(uid, GID_HASHBITS));
615 if (!ch)
616 err = -ENOMEM;
617 else {
618 err = 0;
619 cache_put(ch, &unix_gid_cache);
620 }
621 } else
622 err = -ENOMEM;
623 out:
624 if (ug.gi)
625 put_group_info(ug.gi);
626 return err;
627}
628
629static int unix_gid_show(struct seq_file *m,
630 struct cache_detail *cd,
631 struct cache_head *h)
632{
633 struct unix_gid *ug;
634 int i;
635 int glen;
636
637 if (h == NULL) {
638 seq_puts(m, "#uid cnt: gids...\n");
639 return 0;
640 }
641 ug = container_of(h, struct unix_gid, h);
642 if (test_bit(CACHE_VALID, &h->flags) &&
643 !test_bit(CACHE_NEGATIVE, &h->flags))
644 glen = ug->gi->ngroups;
645 else
646 glen = 0;
647
J. Bruce Fieldsccdb3572010-03-02 15:49:21 -0500648 seq_printf(m, "%u %d:", ug->uid, glen);
NeilBrown3fc605a2007-02-14 00:33:13 -0800649 for (i = 0; i < glen; i++)
650 seq_printf(m, " %d", GROUP_AT(ug->gi, i));
651 seq_printf(m, "\n");
652 return 0;
653}
654
655struct cache_detail unix_gid_cache = {
656 .owner = THIS_MODULE,
657 .hash_size = GID_HASHMAX,
658 .hash_table = gid_table,
659 .name = "auth.unix.gid",
660 .cache_put = unix_gid_put,
Trond Myklebustbc74b4f2009-08-09 15:14:29 -0400661 .cache_upcall = unix_gid_upcall,
NeilBrown3fc605a2007-02-14 00:33:13 -0800662 .cache_parse = unix_gid_parse,
663 .cache_show = unix_gid_show,
664 .match = unix_gid_match,
665 .init = unix_gid_init,
666 .update = unix_gid_update,
667 .alloc = unix_gid_alloc,
668};
669
670static struct unix_gid *unix_gid_lookup(uid_t uid)
671{
672 struct unix_gid ug;
673 struct cache_head *ch;
674
675 ug.uid = uid;
676 ch = sunrpc_cache_lookup(&unix_gid_cache, &ug.h,
677 hash_long(uid, GID_HASHBITS));
678 if (ch)
679 return container_of(ch, struct unix_gid, h);
680 else
681 return NULL;
682}
683
J. Bruce Fieldsdc83d6e2009-10-20 18:51:34 -0400684static struct group_info *unix_gid_find(uid_t uid, struct svc_rqst *rqstp)
NeilBrown3fc605a2007-02-14 00:33:13 -0800685{
J. Bruce Fieldsdc83d6e2009-10-20 18:51:34 -0400686 struct unix_gid *ug;
687 struct group_info *gi;
688 int ret;
689
690 ug = unix_gid_lookup(uid);
NeilBrown3fc605a2007-02-14 00:33:13 -0800691 if (!ug)
J. Bruce Fieldsdc83d6e2009-10-20 18:51:34 -0400692 return ERR_PTR(-EAGAIN);
693 ret = cache_check(&unix_gid_cache, &ug->h, &rqstp->rq_chandle);
694 switch (ret) {
NeilBrown3fc605a2007-02-14 00:33:13 -0800695 case -ENOENT:
J. Bruce Fieldsdc83d6e2009-10-20 18:51:34 -0400696 return ERR_PTR(-ENOENT);
NeilBrown1ebede82010-08-12 17:04:07 +1000697 case -ETIMEDOUT:
698 return ERR_PTR(-ESHUTDOWN);
NeilBrown3fc605a2007-02-14 00:33:13 -0800699 case 0:
J. Bruce Fieldsdc83d6e2009-10-20 18:51:34 -0400700 gi = get_group_info(ug->gi);
NeilBrown560ab422009-08-04 15:22:39 +1000701 cache_put(&ug->h, &unix_gid_cache);
J. Bruce Fieldsdc83d6e2009-10-20 18:51:34 -0400702 return gi;
NeilBrown3fc605a2007-02-14 00:33:13 -0800703 default:
J. Bruce Fieldsdc83d6e2009-10-20 18:51:34 -0400704 return ERR_PTR(-EAGAIN);
NeilBrown3fc605a2007-02-14 00:33:13 -0800705 }
706}
707
J. Bruce Fields3ab4d8b2007-07-17 04:04:46 -0700708int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709svcauth_unix_set_client(struct svc_rqst *rqstp)
710{
Aurélien Charbonf15364b2008-01-18 15:50:56 +0100711 struct sockaddr_in *sin;
712 struct sockaddr_in6 *sin6, sin6_storage;
NeilBrown1a9917c2006-03-27 01:15:02 -0800713 struct ip_map *ipm;
J. Bruce Fieldsdc83d6e2009-10-20 18:51:34 -0400714 struct group_info *gi;
715 struct svc_cred *cred = &rqstp->rq_cred;
Pavel Emelyanov3be44792010-09-27 13:59:13 +0400716 struct svc_xprt *xprt = rqstp->rq_xprt;
Pavel Emelyanov90d51b02010-09-27 14:02:29 +0400717 struct net *net = xprt->xpt_net;
718 struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
Aurélien Charbonf15364b2008-01-18 15:50:56 +0100720 switch (rqstp->rq_addr.ss_family) {
721 case AF_INET:
722 sin = svc_addr_in(rqstp);
723 sin6 = &sin6_storage;
Brian Haleyb301e822009-10-07 13:58:25 -0700724 ipv6_addr_set_v4mapped(sin->sin_addr.s_addr, &sin6->sin6_addr);
Aurélien Charbonf15364b2008-01-18 15:50:56 +0100725 break;
726 case AF_INET6:
727 sin6 = svc_addr_in6(rqstp);
728 break;
729 default:
730 BUG();
731 }
732
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 rqstp->rq_client = NULL;
734 if (rqstp->rq_proc == 0)
735 return SVC_OK;
736
Pavel Emelyanov3be44792010-09-27 13:59:13 +0400737 ipm = ip_map_cached_get(xprt);
Greg Banks7b2b1fe2006-10-04 02:15:50 -0700738 if (ipm == NULL)
Pavel Emelyanov90d51b02010-09-27 14:02:29 +0400739 ipm = __ip_map_lookup(sn->ip_map_cache, rqstp->rq_server->sv_program->pg_class,
Aurélien Charbonf15364b2008-01-18 15:50:56 +0100740 &sin6->sin6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
742 if (ipm == NULL)
743 return SVC_DENIED;
744
Pavel Emelyanov90d51b02010-09-27 14:02:29 +0400745 switch (cache_check(sn->ip_map_cache, &ipm->h, &rqstp->rq_chandle)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 default:
747 BUG();
J.Bruce Fieldse0bb89e2006-12-13 00:35:25 -0800748 case -ETIMEDOUT:
NeilBrown1ebede82010-08-12 17:04:07 +1000749 return SVC_CLOSE;
750 case -EAGAIN:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 return SVC_DROP;
752 case -ENOENT:
753 return SVC_DENIED;
754 case 0:
755 rqstp->rq_client = &ipm->m_client->h;
NeilBrownefc36aa2006-03-27 01:14:59 -0800756 kref_get(&rqstp->rq_client->ref);
Pavel Emelyanov3be44792010-09-27 13:59:13 +0400757 ip_map_cached_put(xprt, ipm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 break;
759 }
J. Bruce Fieldsdc83d6e2009-10-20 18:51:34 -0400760
761 gi = unix_gid_find(cred->cr_uid, rqstp);
762 switch (PTR_ERR(gi)) {
763 case -EAGAIN:
764 return SVC_DROP;
NeilBrown1ebede82010-08-12 17:04:07 +1000765 case -ESHUTDOWN:
766 return SVC_CLOSE;
J. Bruce Fieldsdc83d6e2009-10-20 18:51:34 -0400767 case -ENOENT:
768 break;
769 default:
770 put_group_info(cred->cr_group_info);
771 cred->cr_group_info = gi;
772 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 return SVC_OK;
774}
775
Trond Myklebust24c37672008-12-23 16:30:12 -0500776EXPORT_SYMBOL_GPL(svcauth_unix_set_client);
J. Bruce Fields3ab4d8b2007-07-17 04:04:46 -0700777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778static int
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700779svcauth_null_accept(struct svc_rqst *rqstp, __be32 *authp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780{
781 struct kvec *argv = &rqstp->rq_arg.head[0];
782 struct kvec *resv = &rqstp->rq_res.head[0];
783 struct svc_cred *cred = &rqstp->rq_cred;
784
785 cred->cr_group_info = NULL;
786 rqstp->rq_client = NULL;
787
788 if (argv->iov_len < 3*4)
789 return SVC_GARBAGE;
790
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800791 if (svc_getu32(argv) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 dprintk("svc: bad null cred\n");
793 *authp = rpc_autherr_badcred;
794 return SVC_DENIED;
795 }
Alexey Dobriyan76994312006-09-26 22:28:46 -0700796 if (svc_getu32(argv) != htonl(RPC_AUTH_NULL) || svc_getu32(argv) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 dprintk("svc: bad null verf\n");
798 *authp = rpc_autherr_badverf;
799 return SVC_DENIED;
800 }
801
802 /* Signal that mapping to nobody uid/gid is required */
803 cred->cr_uid = (uid_t) -1;
804 cred->cr_gid = (gid_t) -1;
805 cred->cr_group_info = groups_alloc(0);
806 if (cred->cr_group_info == NULL)
NeilBrown1ebede82010-08-12 17:04:07 +1000807 return SVC_CLOSE; /* kmalloc failure - client must retry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
809 /* Put NULL verifier */
Alexey Dobriyan76994312006-09-26 22:28:46 -0700810 svc_putnl(resv, RPC_AUTH_NULL);
811 svc_putnl(resv, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
Andy Adamsonc4170583f2007-07-17 04:04:42 -0700813 rqstp->rq_flavor = RPC_AUTH_NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 return SVC_OK;
815}
816
817static int
818svcauth_null_release(struct svc_rqst *rqstp)
819{
820 if (rqstp->rq_client)
821 auth_domain_put(rqstp->rq_client);
822 rqstp->rq_client = NULL;
823 if (rqstp->rq_cred.cr_group_info)
824 put_group_info(rqstp->rq_cred.cr_group_info);
825 rqstp->rq_cred.cr_group_info = NULL;
826
827 return 0; /* don't drop */
828}
829
830
831struct auth_ops svcauth_null = {
832 .name = "null",
833 .owner = THIS_MODULE,
834 .flavour = RPC_AUTH_NULL,
835 .accept = svcauth_null_accept,
836 .release = svcauth_null_release,
837 .set_client = svcauth_unix_set_client,
838};
839
840
841static int
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700842svcauth_unix_accept(struct svc_rqst *rqstp, __be32 *authp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843{
844 struct kvec *argv = &rqstp->rq_arg.head[0];
845 struct kvec *resv = &rqstp->rq_res.head[0];
846 struct svc_cred *cred = &rqstp->rq_cred;
847 u32 slen, i;
848 int len = argv->iov_len;
849
850 cred->cr_group_info = NULL;
851 rqstp->rq_client = NULL;
852
853 if ((len -= 3*4) < 0)
854 return SVC_GARBAGE;
855
856 svc_getu32(argv); /* length */
857 svc_getu32(argv); /* time stamp */
Alexey Dobriyan76994312006-09-26 22:28:46 -0700858 slen = XDR_QUADLEN(svc_getnl(argv)); /* machname length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 if (slen > 64 || (len -= (slen + 3)*4) < 0)
860 goto badcred;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700861 argv->iov_base = (void*)((__be32*)argv->iov_base + slen); /* skip machname */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 argv->iov_len -= slen*4;
863
Alexey Dobriyan76994312006-09-26 22:28:46 -0700864 cred->cr_uid = svc_getnl(argv); /* uid */
865 cred->cr_gid = svc_getnl(argv); /* gid */
866 slen = svc_getnl(argv); /* gids length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 if (slen > 16 || (len -= (slen + 2)*4) < 0)
868 goto badcred;
J. Bruce Fieldsdc83d6e2009-10-20 18:51:34 -0400869 cred->cr_group_info = groups_alloc(slen);
870 if (cred->cr_group_info == NULL)
NeilBrown1ebede82010-08-12 17:04:07 +1000871 return SVC_CLOSE;
J. Bruce Fieldsdc83d6e2009-10-20 18:51:34 -0400872 for (i = 0; i < slen; i++)
873 GROUP_AT(cred->cr_group_info, i) = svc_getnl(argv);
Alexey Dobriyan76994312006-09-26 22:28:46 -0700874 if (svc_getu32(argv) != htonl(RPC_AUTH_NULL) || svc_getu32(argv) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 *authp = rpc_autherr_badverf;
876 return SVC_DENIED;
877 }
878
879 /* Put NULL verifier */
Alexey Dobriyan76994312006-09-26 22:28:46 -0700880 svc_putnl(resv, RPC_AUTH_NULL);
881 svc_putnl(resv, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Andy Adamsonc4170583f2007-07-17 04:04:42 -0700883 rqstp->rq_flavor = RPC_AUTH_UNIX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 return SVC_OK;
885
886badcred:
887 *authp = rpc_autherr_badcred;
888 return SVC_DENIED;
889}
890
891static int
892svcauth_unix_release(struct svc_rqst *rqstp)
893{
894 /* Verifier (such as it is) is already in place.
895 */
896 if (rqstp->rq_client)
897 auth_domain_put(rqstp->rq_client);
898 rqstp->rq_client = NULL;
899 if (rqstp->rq_cred.cr_group_info)
900 put_group_info(rqstp->rq_cred.cr_group_info);
901 rqstp->rq_cred.cr_group_info = NULL;
902
903 return 0;
904}
905
906
907struct auth_ops svcauth_unix = {
908 .name = "unix",
909 .owner = THIS_MODULE,
910 .flavour = RPC_AUTH_UNIX,
911 .accept = svcauth_unix_accept,
912 .release = svcauth_unix_release,
913 .domain_release = svcauth_unix_domain_release,
914 .set_client = svcauth_unix_set_client,
915};
916
Pavel Emelyanov90d51b02010-09-27 14:02:29 +0400917int ip_map_cache_create(struct net *net)
918{
919 int err = -ENOMEM;
920 struct cache_detail *cd;
921 struct cache_head **tbl;
922 struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
923
924 cd = kzalloc(sizeof(struct cache_detail), GFP_KERNEL);
925 if (cd == NULL)
926 goto err_cd;
927
928 tbl = kzalloc(IP_HASHMAX * sizeof(struct cache_head *), GFP_KERNEL);
929 if (tbl == NULL)
930 goto err_tbl;
931
932 cd->owner = THIS_MODULE,
933 cd->hash_size = IP_HASHMAX,
934 cd->hash_table = tbl,
935 cd->name = "auth.unix.ip",
936 cd->cache_put = ip_map_put,
937 cd->cache_upcall = ip_map_upcall,
938 cd->cache_parse = ip_map_parse,
939 cd->cache_show = ip_map_show,
940 cd->match = ip_map_match,
941 cd->init = ip_map_init,
942 cd->update = update,
943 cd->alloc = ip_map_alloc,
944
945 err = cache_register_net(cd, net);
946 if (err)
947 goto err_reg;
948
949 sn->ip_map_cache = cd;
950 return 0;
951
952err_reg:
953 kfree(tbl);
954err_tbl:
955 kfree(cd);
956err_cd:
957 return err;
958}
959
960void ip_map_cache_destroy(struct net *net)
961{
962 struct sunrpc_net *sn;
963
964 sn = net_generic(net, sunrpc_net_id);
965 cache_purge(sn->ip_map_cache);
966 cache_unregister_net(sn->ip_map_cache, net);
967 kfree(sn->ip_map_cache->hash_table);
968 kfree(sn->ip_map_cache);
969}