GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / net / sunrpc / auth_gss / svcauth_gss.c
bloba8b7b27c3b85dc0baaf3942641dd2463848be1d9
1 /*
2 * Neil Brown <neilb@cse.unsw.edu.au>
3 * J. Bruce Fields <bfields@umich.edu>
4 * Andy Adamson <andros@umich.edu>
5 * Dug Song <dugsong@monkey.org>
7 * RPCSEC_GSS server authentication.
8 * This implements RPCSEC_GSS as defined in rfc2203 (rpcsec_gss) and rfc2078
9 * (gssapi)
11 * The RPCSEC_GSS involves three stages:
12 * 1/ context creation
13 * 2/ data exchange
14 * 3/ context destruction
16 * Context creation is handled largely by upcalls to user-space.
17 * In particular, GSS_Accept_sec_context is handled by an upcall
18 * Data exchange is handled entirely within the kernel
19 * In particular, GSS_GetMIC, GSS_VerifyMIC, GSS_Seal, GSS_Unseal are in-kernel.
20 * Context destruction is handled in-kernel
21 * GSS_Delete_sec_context is in-kernel
23 * Context creation is initiated by a RPCSEC_GSS_INIT request arriving.
24 * The context handle and gss_token are used as a key into the rpcsec_init cache.
25 * The content of this cache includes some of the outputs of GSS_Accept_sec_context,
26 * being major_status, minor_status, context_handle, reply_token.
27 * These are sent back to the client.
28 * Sequence window management is handled by the kernel. The window size if currently
29 * a compile time constant.
31 * When user-space is happy that a context is established, it places an entry
32 * in the rpcsec_context cache. The key for this cache is the context_handle.
33 * The content includes:
34 * uid/gidlist - for determining access rights
35 * mechanism type
36 * mechanism specific information, such as a key
40 #include <linux/slab.h>
41 #include <linux/types.h>
42 #include <linux/module.h>
43 #include <linux/pagemap.h>
45 #include <linux/sunrpc/auth_gss.h>
46 #include <linux/sunrpc/gss_err.h>
47 #include <linux/sunrpc/svcauth.h>
48 #include <linux/sunrpc/svcauth_gss.h>
49 #include <linux/sunrpc/cache.h>
51 #ifdef RPC_DEBUG
52 # define RPCDBG_FACILITY RPCDBG_AUTH
53 #endif
55 /* The rpcsec_init cache is used for mapping RPCSEC_GSS_{,CONT_}INIT requests
56 * into replies.
58 * Key is context handle (\x if empty) and gss_token.
59 * Content is major_status minor_status (integers) context_handle, reply_token.
63 static int netobj_equal(struct xdr_netobj *a, struct xdr_netobj *b)
65 return a->len == b->len && 0 == memcmp(a->data, b->data, a->len);
68 #define RSI_HASHBITS 6
69 #define RSI_HASHMAX (1<<RSI_HASHBITS)
70 #define RSI_HASHMASK (RSI_HASHMAX-1)
72 struct rsi {
73 struct cache_head h;
74 struct xdr_netobj in_handle, in_token;
75 struct xdr_netobj out_handle, out_token;
76 int major_status, minor_status;
79 static struct cache_head *rsi_table[RSI_HASHMAX];
80 static struct cache_detail rsi_cache;
81 static struct rsi *rsi_update(struct rsi *new, struct rsi *old);
82 static struct rsi *rsi_lookup(struct rsi *item);
84 static void rsi_free(struct rsi *rsii)
86 kfree(rsii->in_handle.data);
87 kfree(rsii->in_token.data);
88 kfree(rsii->out_handle.data);
89 kfree(rsii->out_token.data);
92 static void rsi_put(struct kref *ref)
94 struct rsi *rsii = container_of(ref, struct rsi, h.ref);
95 rsi_free(rsii);
96 kfree(rsii);
99 static inline int rsi_hash(struct rsi *item)
101 return hash_mem(item->in_handle.data, item->in_handle.len, RSI_HASHBITS)
102 ^ hash_mem(item->in_token.data, item->in_token.len, RSI_HASHBITS);
105 static int rsi_match(struct cache_head *a, struct cache_head *b)
107 struct rsi *item = container_of(a, struct rsi, h);
108 struct rsi *tmp = container_of(b, struct rsi, h);
109 return netobj_equal(&item->in_handle, &tmp->in_handle) &&
110 netobj_equal(&item->in_token, &tmp->in_token);
113 static int dup_to_netobj(struct xdr_netobj *dst, char *src, int len)
115 dst->len = len;
116 dst->data = (len ? kmemdup(src, len, GFP_KERNEL) : NULL);
117 if (len && !dst->data)
118 return -ENOMEM;
119 return 0;
122 static inline int dup_netobj(struct xdr_netobj *dst, struct xdr_netobj *src)
124 return dup_to_netobj(dst, src->data, src->len);
127 static void rsi_init(struct cache_head *cnew, struct cache_head *citem)
129 struct rsi *new = container_of(cnew, struct rsi, h);
130 struct rsi *item = container_of(citem, struct rsi, h);
132 new->out_handle.data = NULL;
133 new->out_handle.len = 0;
134 new->out_token.data = NULL;
135 new->out_token.len = 0;
136 new->in_handle.len = item->in_handle.len;
137 item->in_handle.len = 0;
138 new->in_token.len = item->in_token.len;
139 item->in_token.len = 0;
140 new->in_handle.data = item->in_handle.data;
141 item->in_handle.data = NULL;
142 new->in_token.data = item->in_token.data;
143 item->in_token.data = NULL;
146 static void update_rsi(struct cache_head *cnew, struct cache_head *citem)
148 struct rsi *new = container_of(cnew, struct rsi, h);
149 struct rsi *item = container_of(citem, struct rsi, h);
151 BUG_ON(new->out_handle.data || new->out_token.data);
152 new->out_handle.len = item->out_handle.len;
153 item->out_handle.len = 0;
154 new->out_token.len = item->out_token.len;
155 item->out_token.len = 0;
156 new->out_handle.data = item->out_handle.data;
157 item->out_handle.data = NULL;
158 new->out_token.data = item->out_token.data;
159 item->out_token.data = NULL;
161 new->major_status = item->major_status;
162 new->minor_status = item->minor_status;
165 static struct cache_head *rsi_alloc(void)
167 struct rsi *rsii = kmalloc(sizeof(*rsii), GFP_KERNEL);
168 if (rsii)
169 return &rsii->h;
170 else
171 return NULL;
174 static void rsi_request(struct cache_detail *cd,
175 struct cache_head *h,
176 char **bpp, int *blen)
178 struct rsi *rsii = container_of(h, struct rsi, h);
180 qword_addhex(bpp, blen, rsii->in_handle.data, rsii->in_handle.len);
181 qword_addhex(bpp, blen, rsii->in_token.data, rsii->in_token.len);
182 (*bpp)[-1] = '\n';
185 static int rsi_upcall(struct cache_detail *cd, struct cache_head *h)
187 return sunrpc_cache_pipe_upcall(cd, h, rsi_request);
191 static int rsi_parse(struct cache_detail *cd,
192 char *mesg, int mlen)
194 /* context token expiry major minor context token */
195 char *buf = mesg;
196 char *ep;
197 int len;
198 struct rsi rsii, *rsip = NULL;
199 time_t expiry;
200 int status = -EINVAL;
202 memset(&rsii, 0, sizeof(rsii));
203 /* handle */
204 len = qword_get(&mesg, buf, mlen);
205 if (len < 0)
206 goto out;
207 status = -ENOMEM;
208 if (dup_to_netobj(&rsii.in_handle, buf, len))
209 goto out;
211 /* token */
212 len = qword_get(&mesg, buf, mlen);
213 status = -EINVAL;
214 if (len < 0)
215 goto out;
216 status = -ENOMEM;
217 if (dup_to_netobj(&rsii.in_token, buf, len))
218 goto out;
220 rsip = rsi_lookup(&rsii);
221 if (!rsip)
222 goto out;
224 rsii.h.flags = 0;
225 /* expiry */
226 expiry = get_expiry(&mesg);
227 status = -EINVAL;
228 if (expiry == 0)
229 goto out;
231 /* major/minor */
232 len = qword_get(&mesg, buf, mlen);
233 if (len <= 0)
234 goto out;
235 rsii.major_status = simple_strtoul(buf, &ep, 10);
236 if (*ep)
237 goto out;
238 len = qword_get(&mesg, buf, mlen);
239 if (len <= 0)
240 goto out;
241 rsii.minor_status = simple_strtoul(buf, &ep, 10);
242 if (*ep)
243 goto out;
245 /* out_handle */
246 len = qword_get(&mesg, buf, mlen);
247 if (len < 0)
248 goto out;
249 status = -ENOMEM;
250 if (dup_to_netobj(&rsii.out_handle, buf, len))
251 goto out;
253 /* out_token */
254 len = qword_get(&mesg, buf, mlen);
255 status = -EINVAL;
256 if (len < 0)
257 goto out;
258 status = -ENOMEM;
259 if (dup_to_netobj(&rsii.out_token, buf, len))
260 goto out;
261 rsii.h.expiry_time = expiry;
262 rsip = rsi_update(&rsii, rsip);
263 status = 0;
264 out:
265 rsi_free(&rsii);
266 if (rsip)
267 cache_put(&rsip->h, &rsi_cache);
268 else
269 status = -ENOMEM;
270 return status;
273 static struct cache_detail rsi_cache = {
274 .owner = THIS_MODULE,
275 .hash_size = RSI_HASHMAX,
276 .hash_table = rsi_table,
277 .name = "auth.rpcsec.init",
278 .cache_put = rsi_put,
279 .cache_upcall = rsi_upcall,
280 .cache_parse = rsi_parse,
281 .match = rsi_match,
282 .init = rsi_init,
283 .update = update_rsi,
284 .alloc = rsi_alloc,
287 static struct rsi *rsi_lookup(struct rsi *item)
289 struct cache_head *ch;
290 int hash = rsi_hash(item);
292 ch = sunrpc_cache_lookup(&rsi_cache, &item->h, hash);
293 if (ch)
294 return container_of(ch, struct rsi, h);
295 else
296 return NULL;
299 static struct rsi *rsi_update(struct rsi *new, struct rsi *old)
301 struct cache_head *ch;
302 int hash = rsi_hash(new);
304 ch = sunrpc_cache_update(&rsi_cache, &new->h,
305 &old->h, hash);
306 if (ch)
307 return container_of(ch, struct rsi, h);
308 else
309 return NULL;
314 * The rpcsec_context cache is used to store a context that is
315 * used in data exchange.
316 * The key is a context handle. The content is:
317 * uid, gidlist, mechanism, service-set, mech-specific-data
320 #define RSC_HASHBITS 10
321 #define RSC_HASHMAX (1<<RSC_HASHBITS)
322 #define RSC_HASHMASK (RSC_HASHMAX-1)
324 #define GSS_SEQ_WIN 128
326 struct gss_svc_seq_data {
327 /* highest seq number seen so far: */
328 int sd_max;
329 /* for i such that sd_max-GSS_SEQ_WIN < i <= sd_max, the i-th bit of
330 * sd_win is nonzero iff sequence number i has been seen already: */
331 unsigned long sd_win[GSS_SEQ_WIN/BITS_PER_LONG];
332 spinlock_t sd_lock;
335 struct rsc {
336 struct cache_head h;
337 struct xdr_netobj handle;
338 struct svc_cred cred;
339 struct gss_svc_seq_data seqdata;
340 struct gss_ctx *mechctx;
341 char *client_name;
344 static struct cache_head *rsc_table[RSC_HASHMAX];
345 static struct cache_detail rsc_cache;
346 static struct rsc *rsc_update(struct rsc *new, struct rsc *old);
347 static struct rsc *rsc_lookup(struct rsc *item);
349 static void rsc_free(struct rsc *rsci)
351 kfree(rsci->handle.data);
352 if (rsci->mechctx)
353 gss_delete_sec_context(&rsci->mechctx);
354 if (rsci->cred.cr_group_info)
355 put_group_info(rsci->cred.cr_group_info);
356 kfree(rsci->client_name);
359 static void rsc_put(struct kref *ref)
361 struct rsc *rsci = container_of(ref, struct rsc, h.ref);
363 rsc_free(rsci);
364 kfree(rsci);
367 static inline int
368 rsc_hash(struct rsc *rsci)
370 return hash_mem(rsci->handle.data, rsci->handle.len, RSC_HASHBITS);
373 static int
374 rsc_match(struct cache_head *a, struct cache_head *b)
376 struct rsc *new = container_of(a, struct rsc, h);
377 struct rsc *tmp = container_of(b, struct rsc, h);
379 return netobj_equal(&new->handle, &tmp->handle);
382 static void
383 rsc_init(struct cache_head *cnew, struct cache_head *ctmp)
385 struct rsc *new = container_of(cnew, struct rsc, h);
386 struct rsc *tmp = container_of(ctmp, struct rsc, h);
388 new->handle.len = tmp->handle.len;
389 tmp->handle.len = 0;
390 new->handle.data = tmp->handle.data;
391 tmp->handle.data = NULL;
392 new->mechctx = NULL;
393 new->cred.cr_group_info = NULL;
394 new->client_name = NULL;
397 static void
398 update_rsc(struct cache_head *cnew, struct cache_head *ctmp)
400 struct rsc *new = container_of(cnew, struct rsc, h);
401 struct rsc *tmp = container_of(ctmp, struct rsc, h);
403 new->mechctx = tmp->mechctx;
404 tmp->mechctx = NULL;
405 memset(&new->seqdata, 0, sizeof(new->seqdata));
406 spin_lock_init(&new->seqdata.sd_lock);
407 new->cred = tmp->cred;
408 tmp->cred.cr_group_info = NULL;
409 new->client_name = tmp->client_name;
410 tmp->client_name = NULL;
413 static struct cache_head *
414 rsc_alloc(void)
416 struct rsc *rsci = kmalloc(sizeof(*rsci), GFP_KERNEL);
417 if (rsci)
418 return &rsci->h;
419 else
420 return NULL;
423 static int rsc_parse(struct cache_detail *cd,
424 char *mesg, int mlen)
426 /* contexthandle expiry [ uid gid N <n gids> mechname ...mechdata... ] */
427 char *buf = mesg;
428 int len, rv;
429 struct rsc rsci, *rscp = NULL;
430 time_t expiry;
431 int status = -EINVAL;
432 struct gss_api_mech *gm = NULL;
434 memset(&rsci, 0, sizeof(rsci));
435 /* context handle */
436 len = qword_get(&mesg, buf, mlen);
437 if (len < 0) goto out;
438 status = -ENOMEM;
439 if (dup_to_netobj(&rsci.handle, buf, len))
440 goto out;
442 rsci.h.flags = 0;
443 /* expiry */
444 expiry = get_expiry(&mesg);
445 status = -EINVAL;
446 if (expiry == 0)
447 goto out;
449 rscp = rsc_lookup(&rsci);
450 if (!rscp)
451 goto out;
453 /* uid, or NEGATIVE */
454 rv = get_int(&mesg, &rsci.cred.cr_uid);
455 if (rv == -EINVAL)
456 goto out;
457 if (rv == -ENOENT)
458 set_bit(CACHE_NEGATIVE, &rsci.h.flags);
459 else {
460 int N, i;
462 /* gid */
463 if (get_int(&mesg, &rsci.cred.cr_gid))
464 goto out;
466 /* number of additional gid's */
467 if (get_int(&mesg, &N))
468 goto out;
469 status = -ENOMEM;
470 rsci.cred.cr_group_info = groups_alloc(N);
471 if (rsci.cred.cr_group_info == NULL)
472 goto out;
474 /* gid's */
475 status = -EINVAL;
476 for (i=0; i<N; i++) {
477 gid_t gid;
478 if (get_int(&mesg, &gid))
479 goto out;
480 GROUP_AT(rsci.cred.cr_group_info, i) = gid;
483 /* mech name */
484 len = qword_get(&mesg, buf, mlen);
485 if (len < 0)
486 goto out;
487 gm = gss_mech_get_by_name(buf);
488 status = -EOPNOTSUPP;
489 if (!gm)
490 goto out;
492 status = -EINVAL;
493 /* mech-specific data: */
494 len = qword_get(&mesg, buf, mlen);
495 if (len < 0)
496 goto out;
497 status = gss_import_sec_context(buf, len, gm, &rsci.mechctx, GFP_KERNEL);
498 if (status)
499 goto out;
501 /* get client name */
502 len = qword_get(&mesg, buf, mlen);
503 if (len > 0) {
504 rsci.client_name = kstrdup(buf, GFP_KERNEL);
505 if (!rsci.client_name)
506 goto out;
510 rsci.h.expiry_time = expiry;
511 rscp = rsc_update(&rsci, rscp);
512 status = 0;
513 out:
514 gss_mech_put(gm);
515 rsc_free(&rsci);
516 if (rscp)
517 cache_put(&rscp->h, &rsc_cache);
518 else
519 status = -ENOMEM;
520 return status;
523 static struct cache_detail rsc_cache = {
524 .owner = THIS_MODULE,
525 .hash_size = RSC_HASHMAX,
526 .hash_table = rsc_table,
527 .name = "auth.rpcsec.context",
528 .cache_put = rsc_put,
529 .cache_parse = rsc_parse,
530 .match = rsc_match,
531 .init = rsc_init,
532 .update = update_rsc,
533 .alloc = rsc_alloc,
536 static struct rsc *rsc_lookup(struct rsc *item)
538 struct cache_head *ch;
539 int hash = rsc_hash(item);
541 ch = sunrpc_cache_lookup(&rsc_cache, &item->h, hash);
542 if (ch)
543 return container_of(ch, struct rsc, h);
544 else
545 return NULL;
548 static struct rsc *rsc_update(struct rsc *new, struct rsc *old)
550 struct cache_head *ch;
551 int hash = rsc_hash(new);
553 ch = sunrpc_cache_update(&rsc_cache, &new->h,
554 &old->h, hash);
555 if (ch)
556 return container_of(ch, struct rsc, h);
557 else
558 return NULL;
562 static struct rsc *
563 gss_svc_searchbyctx(struct xdr_netobj *handle)
565 struct rsc rsci;
566 struct rsc *found;
568 memset(&rsci, 0, sizeof(rsci));
569 if (dup_to_netobj(&rsci.handle, handle->data, handle->len))
570 return NULL;
571 found = rsc_lookup(&rsci);
572 rsc_free(&rsci);
573 if (!found)
574 return NULL;
575 if (cache_check(&rsc_cache, &found->h, NULL))
576 return NULL;
577 return found;
580 /* Implements sequence number algorithm as specified in RFC 2203. */
581 static int
582 gss_check_seq_num(struct rsc *rsci, int seq_num)
584 struct gss_svc_seq_data *sd = &rsci->seqdata;
586 spin_lock(&sd->sd_lock);
587 if (seq_num > sd->sd_max) {
588 if (seq_num >= sd->sd_max + GSS_SEQ_WIN) {
589 memset(sd->sd_win,0,sizeof(sd->sd_win));
590 sd->sd_max = seq_num;
591 } else while (sd->sd_max < seq_num) {
592 sd->sd_max++;
593 __clear_bit(sd->sd_max % GSS_SEQ_WIN, sd->sd_win);
595 __set_bit(seq_num % GSS_SEQ_WIN, sd->sd_win);
596 goto ok;
597 } else if (seq_num <= sd->sd_max - GSS_SEQ_WIN) {
598 goto drop;
600 /* sd_max - GSS_SEQ_WIN < seq_num <= sd_max */
601 if (__test_and_set_bit(seq_num % GSS_SEQ_WIN, sd->sd_win))
602 goto drop;
604 spin_unlock(&sd->sd_lock);
605 return 1;
606 drop:
607 spin_unlock(&sd->sd_lock);
608 return 0;
611 static inline u32 round_up_to_quad(u32 i)
613 return (i + 3 ) & ~3;
616 static inline int
617 svc_safe_getnetobj(struct kvec *argv, struct xdr_netobj *o)
619 int l;
621 if (argv->iov_len < 4)
622 return -1;
623 o->len = svc_getnl(argv);
624 l = round_up_to_quad(o->len);
625 if (argv->iov_len < l)
626 return -1;
627 o->data = argv->iov_base;
628 argv->iov_base += l;
629 argv->iov_len -= l;
630 return 0;
633 static inline int
634 svc_safe_putnetobj(struct kvec *resv, struct xdr_netobj *o)
636 u8 *p;
638 if (resv->iov_len + 4 > PAGE_SIZE)
639 return -1;
640 svc_putnl(resv, o->len);
641 p = resv->iov_base + resv->iov_len;
642 resv->iov_len += round_up_to_quad(o->len);
643 if (resv->iov_len > PAGE_SIZE)
644 return -1;
645 memcpy(p, o->data, o->len);
646 memset(p + o->len, 0, round_up_to_quad(o->len) - o->len);
647 return 0;
651 * Verify the checksum on the header and return SVC_OK on success.
652 * Otherwise, return SVC_DROP (in the case of a bad sequence number)
653 * or return SVC_DENIED and indicate error in authp.
655 static int
656 gss_verify_header(struct svc_rqst *rqstp, struct rsc *rsci,
657 __be32 *rpcstart, struct rpc_gss_wire_cred *gc, __be32 *authp)
659 struct gss_ctx *ctx_id = rsci->mechctx;
660 struct xdr_buf rpchdr;
661 struct xdr_netobj checksum;
662 u32 flavor = 0;
663 struct kvec *argv = &rqstp->rq_arg.head[0];
664 struct kvec iov;
666 /* data to compute the checksum over: */
667 iov.iov_base = rpcstart;
668 iov.iov_len = (u8 *)argv->iov_base - (u8 *)rpcstart;
669 xdr_buf_from_iov(&iov, &rpchdr);
671 *authp = rpc_autherr_badverf;
672 if (argv->iov_len < 4)
673 return SVC_DENIED;
674 flavor = svc_getnl(argv);
675 if (flavor != RPC_AUTH_GSS)
676 return SVC_DENIED;
677 if (svc_safe_getnetobj(argv, &checksum))
678 return SVC_DENIED;
680 if (rqstp->rq_deferred) /* skip verification of revisited request */
681 return SVC_OK;
682 if (gss_verify_mic(ctx_id, &rpchdr, &checksum) != GSS_S_COMPLETE) {
683 *authp = rpcsec_gsserr_credproblem;
684 return SVC_DENIED;
687 if (gc->gc_seq > MAXSEQ) {
688 dprintk("RPC: svcauth_gss: discarding request with "
689 "large sequence number %d\n", gc->gc_seq);
690 *authp = rpcsec_gsserr_ctxproblem;
691 return SVC_DENIED;
693 if (!gss_check_seq_num(rsci, gc->gc_seq)) {
694 dprintk("RPC: svcauth_gss: discarding request with "
695 "old sequence number %d\n", gc->gc_seq);
696 return SVC_DROP;
698 return SVC_OK;
701 static int
702 gss_write_null_verf(struct svc_rqst *rqstp)
704 __be32 *p;
706 svc_putnl(rqstp->rq_res.head, RPC_AUTH_NULL);
707 p = rqstp->rq_res.head->iov_base + rqstp->rq_res.head->iov_len;
708 /* don't really need to check if head->iov_len > PAGE_SIZE ... */
709 *p++ = 0;
710 if (!xdr_ressize_check(rqstp, p))
711 return -1;
712 return 0;
715 static int
716 gss_write_verf(struct svc_rqst *rqstp, struct gss_ctx *ctx_id, u32 seq)
718 __be32 xdr_seq;
719 u32 maj_stat;
720 struct xdr_buf verf_data;
721 struct xdr_netobj mic;
722 __be32 *p;
723 struct kvec iov;
725 svc_putnl(rqstp->rq_res.head, RPC_AUTH_GSS);
726 xdr_seq = htonl(seq);
728 iov.iov_base = &xdr_seq;
729 iov.iov_len = sizeof(xdr_seq);
730 xdr_buf_from_iov(&iov, &verf_data);
731 p = rqstp->rq_res.head->iov_base + rqstp->rq_res.head->iov_len;
732 mic.data = (u8 *)(p + 1);
733 maj_stat = gss_get_mic(ctx_id, &verf_data, &mic);
734 if (maj_stat != GSS_S_COMPLETE)
735 return -1;
736 *p++ = htonl(mic.len);
737 memset((u8 *)p + mic.len, 0, round_up_to_quad(mic.len) - mic.len);
738 p += XDR_QUADLEN(mic.len);
739 if (!xdr_ressize_check(rqstp, p))
740 return -1;
741 return 0;
744 struct gss_domain {
745 struct auth_domain h;
746 u32 pseudoflavor;
749 static struct auth_domain *
750 find_gss_auth_domain(struct gss_ctx *ctx, u32 svc)
752 char *name;
754 name = gss_service_to_auth_domain_name(ctx->mech_type, svc);
755 if (!name)
756 return NULL;
757 return auth_domain_find(name);
760 static struct auth_ops svcauthops_gss;
762 u32 svcauth_gss_flavor(struct auth_domain *dom)
764 struct gss_domain *gd = container_of(dom, struct gss_domain, h);
766 return gd->pseudoflavor;
769 EXPORT_SYMBOL_GPL(svcauth_gss_flavor);
772 svcauth_gss_register_pseudoflavor(u32 pseudoflavor, char * name)
774 struct gss_domain *new;
775 struct auth_domain *test;
776 int stat = -ENOMEM;
778 new = kmalloc(sizeof(*new), GFP_KERNEL);
779 if (!new)
780 goto out;
781 kref_init(&new->h.ref);
782 new->h.name = kstrdup(name, GFP_KERNEL);
783 if (!new->h.name)
784 goto out_free_dom;
785 new->h.flavour = &svcauthops_gss;
786 new->pseudoflavor = pseudoflavor;
788 stat = 0;
789 test = auth_domain_lookup(name, &new->h);
790 if (test != &new->h) { /* Duplicate registration */
791 auth_domain_put(test);
792 kfree(new->h.name);
793 goto out_free_dom;
795 return 0;
797 out_free_dom:
798 kfree(new);
799 out:
800 return stat;
803 EXPORT_SYMBOL_GPL(svcauth_gss_register_pseudoflavor);
805 static inline int
806 read_u32_from_xdr_buf(struct xdr_buf *buf, int base, u32 *obj)
808 __be32 raw;
809 int status;
811 status = read_bytes_from_xdr_buf(buf, base, &raw, sizeof(*obj));
812 if (status)
813 return status;
814 *obj = ntohl(raw);
815 return 0;
818 /* It would be nice if this bit of code could be shared with the client.
819 * Obstacles:
820 * The client shouldn't malloc(), would have to pass in own memory.
821 * The server uses base of head iovec as read pointer, while the
822 * client uses separate pointer. */
823 static int
824 unwrap_integ_data(struct xdr_buf *buf, u32 seq, struct gss_ctx *ctx)
826 int stat = -EINVAL;
827 u32 integ_len, maj_stat;
828 struct xdr_netobj mic;
829 struct xdr_buf integ_buf;
831 integ_len = svc_getnl(&buf->head[0]);
832 if (integ_len & 3)
833 return stat;
834 if (integ_len > buf->len)
835 return stat;
836 if (xdr_buf_subsegment(buf, &integ_buf, 0, integ_len))
837 BUG();
838 /* copy out mic... */
839 if (read_u32_from_xdr_buf(buf, integ_len, &mic.len))
840 BUG();
841 if (mic.len > RPC_MAX_AUTH_SIZE)
842 return stat;
843 mic.data = kmalloc(mic.len, GFP_KERNEL);
844 if (!mic.data)
845 return stat;
846 if (read_bytes_from_xdr_buf(buf, integ_len + 4, mic.data, mic.len))
847 goto out;
848 maj_stat = gss_verify_mic(ctx, &integ_buf, &mic);
849 if (maj_stat != GSS_S_COMPLETE)
850 goto out;
851 if (svc_getnl(&buf->head[0]) != seq)
852 goto out;
853 stat = 0;
854 out:
855 kfree(mic.data);
856 return stat;
859 static inline int
860 total_buf_len(struct xdr_buf *buf)
862 return buf->head[0].iov_len + buf->page_len + buf->tail[0].iov_len;
865 static void
866 fix_priv_head(struct xdr_buf *buf, int pad)
868 if (buf->page_len == 0) {
869 /* We need to adjust head and buf->len in tandem in this
870 * case to make svc_defer() work--it finds the original
871 * buffer start using buf->len - buf->head[0].iov_len. */
872 buf->head[0].iov_len -= pad;
876 static int
877 unwrap_priv_data(struct svc_rqst *rqstp, struct xdr_buf *buf, u32 seq, struct gss_ctx *ctx)
879 u32 priv_len, maj_stat;
880 int pad, saved_len, remaining_len, offset;
882 rqstp->rq_splice_ok = 0;
884 priv_len = svc_getnl(&buf->head[0]);
885 if (rqstp->rq_deferred) {
886 /* Already decrypted last time through! The sequence number
887 * check at out_seq is unnecessary but harmless: */
888 goto out_seq;
890 /* buf->len is the number of bytes from the original start of the
891 * request to the end, where head[0].iov_len is just the bytes
892 * not yet read from the head, so these two values are different: */
893 remaining_len = total_buf_len(buf);
894 if (priv_len > remaining_len)
895 return -EINVAL;
896 pad = remaining_len - priv_len;
897 buf->len -= pad;
898 fix_priv_head(buf, pad);
900 /* Maybe it would be better to give gss_unwrap a length parameter: */
901 saved_len = buf->len;
902 buf->len = priv_len;
903 maj_stat = gss_unwrap(ctx, 0, buf);
904 pad = priv_len - buf->len;
905 buf->len = saved_len;
906 buf->len -= pad;
907 /* The upper layers assume the buffer is aligned on 4-byte boundaries.
908 * In the krb5p case, at least, the data ends up offset, so we need to
909 * move it around. */
910 offset = buf->head[0].iov_len % 4;
911 if (offset) {
912 buf->buflen = RPCSVC_MAXPAYLOAD;
913 xdr_shift_buf(buf, offset);
914 fix_priv_head(buf, pad);
916 if (maj_stat != GSS_S_COMPLETE)
917 return -EINVAL;
918 out_seq:
919 if (svc_getnl(&buf->head[0]) != seq)
920 return -EINVAL;
921 return 0;
924 struct gss_svc_data {
925 /* decoded gss client cred: */
926 struct rpc_gss_wire_cred clcred;
927 /* save a pointer to the beginning of the encoded verifier,
928 * for use in encryption/checksumming in svcauth_gss_release: */
929 __be32 *verf_start;
930 struct rsc *rsci;
933 char *svc_gss_principal(struct svc_rqst *rqstp)
935 struct gss_svc_data *gd = (struct gss_svc_data *)rqstp->rq_auth_data;
937 if (gd && gd->rsci)
938 return gd->rsci->client_name;
939 return NULL;
941 EXPORT_SYMBOL_GPL(svc_gss_principal);
943 static int
944 svcauth_gss_set_client(struct svc_rqst *rqstp)
946 struct gss_svc_data *svcdata = rqstp->rq_auth_data;
947 struct rsc *rsci = svcdata->rsci;
948 struct rpc_gss_wire_cred *gc = &svcdata->clcred;
949 int stat;
952 * A gss export can be specified either by:
953 * export *(sec=krb5,rw)
954 * or by
955 * export gss/krb5(rw)
956 * The latter is deprecated; but for backwards compatibility reasons
957 * the nfsd code will still fall back on trying it if the former
958 * doesn't work; so we try to make both available to nfsd, below.
960 rqstp->rq_gssclient = find_gss_auth_domain(rsci->mechctx, gc->gc_svc);
961 if (rqstp->rq_gssclient == NULL)
962 return SVC_DENIED;
963 stat = svcauth_unix_set_client(rqstp);
964 if (stat == SVC_DROP)
965 return stat;
966 return SVC_OK;
969 static inline int
970 gss_write_init_verf(struct svc_rqst *rqstp, struct rsi *rsip)
972 struct rsc *rsci;
973 int rc;
975 if (rsip->major_status != GSS_S_COMPLETE)
976 return gss_write_null_verf(rqstp);
977 rsci = gss_svc_searchbyctx(&rsip->out_handle);
978 if (rsci == NULL) {
979 rsip->major_status = GSS_S_NO_CONTEXT;
980 return gss_write_null_verf(rqstp);
982 rc = gss_write_verf(rqstp, rsci->mechctx, GSS_SEQ_WIN);
983 cache_put(&rsci->h, &rsc_cache);
984 return rc;
988 * Having read the cred already and found we're in the context
989 * initiation case, read the verifier and initiate (or check the results
990 * of) upcalls to userspace for help with context initiation. If
991 * the upcall results are available, write the verifier and result.
992 * Otherwise, drop the request pending an answer to the upcall.
994 static int svcauth_gss_handle_init(struct svc_rqst *rqstp,
995 struct rpc_gss_wire_cred *gc, __be32 *authp)
997 struct kvec *argv = &rqstp->rq_arg.head[0];
998 struct kvec *resv = &rqstp->rq_res.head[0];
999 struct xdr_netobj tmpobj;
1000 struct rsi *rsip, rsikey;
1001 int ret;
1003 /* Read the verifier; should be NULL: */
1004 *authp = rpc_autherr_badverf;
1005 if (argv->iov_len < 2 * 4)
1006 return SVC_DENIED;
1007 if (svc_getnl(argv) != RPC_AUTH_NULL)
1008 return SVC_DENIED;
1009 if (svc_getnl(argv) != 0)
1010 return SVC_DENIED;
1012 /* Martial context handle and token for upcall: */
1013 *authp = rpc_autherr_badcred;
1014 if (gc->gc_proc == RPC_GSS_PROC_INIT && gc->gc_ctx.len != 0)
1015 return SVC_DENIED;
1016 memset(&rsikey, 0, sizeof(rsikey));
1017 if (dup_netobj(&rsikey.in_handle, &gc->gc_ctx))
1018 return SVC_DROP;
1019 *authp = rpc_autherr_badverf;
1020 if (svc_safe_getnetobj(argv, &tmpobj)) {
1021 kfree(rsikey.in_handle.data);
1022 return SVC_DENIED;
1024 if (dup_netobj(&rsikey.in_token, &tmpobj)) {
1025 kfree(rsikey.in_handle.data);
1026 return SVC_DROP;
1029 /* Perform upcall, or find upcall result: */
1030 rsip = rsi_lookup(&rsikey);
1031 rsi_free(&rsikey);
1032 if (!rsip)
1033 return SVC_DROP;
1034 switch (cache_check(&rsi_cache, &rsip->h, &rqstp->rq_chandle)) {
1035 case -EAGAIN:
1036 case -ETIMEDOUT:
1037 case -ENOENT:
1038 /* No upcall result: */
1039 return SVC_DROP;
1040 case 0:
1041 ret = SVC_DROP;
1042 /* Got an answer to the upcall; use it: */
1043 if (gss_write_init_verf(rqstp, rsip))
1044 goto out;
1045 if (resv->iov_len + 4 > PAGE_SIZE)
1046 goto out;
1047 svc_putnl(resv, RPC_SUCCESS);
1048 if (svc_safe_putnetobj(resv, &rsip->out_handle))
1049 goto out;
1050 if (resv->iov_len + 3 * 4 > PAGE_SIZE)
1051 goto out;
1052 svc_putnl(resv, rsip->major_status);
1053 svc_putnl(resv, rsip->minor_status);
1054 svc_putnl(resv, GSS_SEQ_WIN);
1055 if (svc_safe_putnetobj(resv, &rsip->out_token))
1056 goto out;
1058 ret = SVC_COMPLETE;
1059 out:
1060 cache_put(&rsip->h, &rsi_cache);
1061 return ret;
1065 * Accept an rpcsec packet.
1066 * If context establishment, punt to user space
1067 * If data exchange, verify/decrypt
1068 * If context destruction, handle here
1069 * In the context establishment and destruction case we encode
1070 * response here and return SVC_COMPLETE.
1072 static int
1073 svcauth_gss_accept(struct svc_rqst *rqstp, __be32 *authp)
1075 struct kvec *argv = &rqstp->rq_arg.head[0];
1076 struct kvec *resv = &rqstp->rq_res.head[0];
1077 u32 crlen;
1078 struct gss_svc_data *svcdata = rqstp->rq_auth_data;
1079 struct rpc_gss_wire_cred *gc;
1080 struct rsc *rsci = NULL;
1081 __be32 *rpcstart;
1082 __be32 *reject_stat = resv->iov_base + resv->iov_len;
1083 int ret;
1085 dprintk("RPC: svcauth_gss: argv->iov_len = %zd\n",
1086 argv->iov_len);
1088 *authp = rpc_autherr_badcred;
1089 if (!svcdata)
1090 svcdata = kmalloc(sizeof(*svcdata), GFP_KERNEL);
1091 if (!svcdata)
1092 goto auth_err;
1093 rqstp->rq_auth_data = svcdata;
1094 svcdata->verf_start = NULL;
1095 svcdata->rsci = NULL;
1096 gc = &svcdata->clcred;
1098 /* start of rpc packet is 7 u32's back from here:
1099 * xid direction rpcversion prog vers proc flavour
1101 rpcstart = argv->iov_base;
1102 rpcstart -= 7;
1104 /* credential is:
1105 * version(==1), proc(0,1,2,3), seq, service (1,2,3), handle
1106 * at least 5 u32s, and is preceeded by length, so that makes 6.
1109 if (argv->iov_len < 5 * 4)
1110 goto auth_err;
1111 crlen = svc_getnl(argv);
1112 if (svc_getnl(argv) != RPC_GSS_VERSION)
1113 goto auth_err;
1114 gc->gc_proc = svc_getnl(argv);
1115 gc->gc_seq = svc_getnl(argv);
1116 gc->gc_svc = svc_getnl(argv);
1117 if (svc_safe_getnetobj(argv, &gc->gc_ctx))
1118 goto auth_err;
1119 if (crlen != round_up_to_quad(gc->gc_ctx.len) + 5 * 4)
1120 goto auth_err;
1122 if ((gc->gc_proc != RPC_GSS_PROC_DATA) && (rqstp->rq_proc != 0))
1123 goto auth_err;
1125 *authp = rpc_autherr_badverf;
1126 switch (gc->gc_proc) {
1127 case RPC_GSS_PROC_INIT:
1128 case RPC_GSS_PROC_CONTINUE_INIT:
1129 return svcauth_gss_handle_init(rqstp, gc, authp);
1130 case RPC_GSS_PROC_DATA:
1131 case RPC_GSS_PROC_DESTROY:
1132 /* Look up the context, and check the verifier: */
1133 *authp = rpcsec_gsserr_credproblem;
1134 rsci = gss_svc_searchbyctx(&gc->gc_ctx);
1135 if (!rsci)
1136 goto auth_err;
1137 switch (gss_verify_header(rqstp, rsci, rpcstart, gc, authp)) {
1138 case SVC_OK:
1139 break;
1140 case SVC_DENIED:
1141 goto auth_err;
1142 case SVC_DROP:
1143 goto drop;
1145 break;
1146 default:
1147 *authp = rpc_autherr_rejectedcred;
1148 goto auth_err;
1151 /* now act upon the command: */
1152 switch (gc->gc_proc) {
1153 case RPC_GSS_PROC_DESTROY:
1154 if (gss_write_verf(rqstp, rsci->mechctx, gc->gc_seq))
1155 goto auth_err;
1156 rsci->h.expiry_time = get_seconds();
1157 set_bit(CACHE_NEGATIVE, &rsci->h.flags);
1158 if (resv->iov_len + 4 > PAGE_SIZE)
1159 goto drop;
1160 svc_putnl(resv, RPC_SUCCESS);
1161 goto complete;
1162 case RPC_GSS_PROC_DATA:
1163 *authp = rpcsec_gsserr_ctxproblem;
1164 svcdata->verf_start = resv->iov_base + resv->iov_len;
1165 if (gss_write_verf(rqstp, rsci->mechctx, gc->gc_seq))
1166 goto auth_err;
1167 rqstp->rq_cred = rsci->cred;
1168 get_group_info(rsci->cred.cr_group_info);
1169 *authp = rpc_autherr_badcred;
1170 switch (gc->gc_svc) {
1171 case RPC_GSS_SVC_NONE:
1172 break;
1173 case RPC_GSS_SVC_INTEGRITY:
1174 /* placeholders for length and seq. number: */
1175 svc_putnl(resv, 0);
1176 svc_putnl(resv, 0);
1177 if (unwrap_integ_data(&rqstp->rq_arg,
1178 gc->gc_seq, rsci->mechctx))
1179 goto garbage_args;
1180 break;
1181 case RPC_GSS_SVC_PRIVACY:
1182 /* placeholders for length and seq. number: */
1183 svc_putnl(resv, 0);
1184 svc_putnl(resv, 0);
1185 if (unwrap_priv_data(rqstp, &rqstp->rq_arg,
1186 gc->gc_seq, rsci->mechctx))
1187 goto garbage_args;
1188 break;
1189 default:
1190 goto auth_err;
1192 svcdata->rsci = rsci;
1193 cache_get(&rsci->h);
1194 rqstp->rq_flavor = gss_svc_to_pseudoflavor(
1195 rsci->mechctx->mech_type, gc->gc_svc);
1196 ret = SVC_OK;
1197 goto out;
1199 garbage_args:
1200 ret = SVC_GARBAGE;
1201 goto out;
1202 auth_err:
1203 /* Restore write pointer to its original value: */
1204 xdr_ressize_check(rqstp, reject_stat);
1205 ret = SVC_DENIED;
1206 goto out;
1207 complete:
1208 ret = SVC_COMPLETE;
1209 goto out;
1210 drop:
1211 ret = SVC_DROP;
1212 out:
1213 if (rsci)
1214 cache_put(&rsci->h, &rsc_cache);
1215 return ret;
1218 static __be32 *
1219 svcauth_gss_prepare_to_wrap(struct xdr_buf *resbuf, struct gss_svc_data *gsd)
1221 __be32 *p;
1222 u32 verf_len;
1224 p = gsd->verf_start;
1225 gsd->verf_start = NULL;
1227 /* If the reply stat is nonzero, don't wrap: */
1228 if (*(p-1) != rpc_success)
1229 return NULL;
1230 /* Skip the verifier: */
1231 p += 1;
1232 verf_len = ntohl(*p++);
1233 p += XDR_QUADLEN(verf_len);
1234 /* move accept_stat to right place: */
1235 memcpy(p, p + 2, 4);
1236 /* Also don't wrap if the accept stat is nonzero: */
1237 if (*p != rpc_success) {
1238 resbuf->head[0].iov_len -= 2 * 4;
1239 return NULL;
1241 p++;
1242 return p;
1245 static inline int
1246 svcauth_gss_wrap_resp_integ(struct svc_rqst *rqstp)
1248 struct gss_svc_data *gsd = (struct gss_svc_data *)rqstp->rq_auth_data;
1249 struct rpc_gss_wire_cred *gc = &gsd->clcred;
1250 struct xdr_buf *resbuf = &rqstp->rq_res;
1251 struct xdr_buf integ_buf;
1252 struct xdr_netobj mic;
1253 struct kvec *resv;
1254 __be32 *p;
1255 int integ_offset, integ_len;
1256 int stat = -EINVAL;
1258 p = svcauth_gss_prepare_to_wrap(resbuf, gsd);
1259 if (p == NULL)
1260 goto out;
1261 integ_offset = (u8 *)(p + 1) - (u8 *)resbuf->head[0].iov_base;
1262 integ_len = resbuf->len - integ_offset;
1263 BUG_ON(integ_len % 4);
1264 *p++ = htonl(integ_len);
1265 *p++ = htonl(gc->gc_seq);
1266 if (xdr_buf_subsegment(resbuf, &integ_buf, integ_offset,
1267 integ_len))
1268 BUG();
1269 if (resbuf->tail[0].iov_base == NULL) {
1270 if (resbuf->head[0].iov_len + RPC_MAX_AUTH_SIZE > PAGE_SIZE)
1271 goto out_err;
1272 resbuf->tail[0].iov_base = resbuf->head[0].iov_base
1273 + resbuf->head[0].iov_len;
1274 resbuf->tail[0].iov_len = 0;
1275 resv = &resbuf->tail[0];
1276 } else {
1277 resv = &resbuf->tail[0];
1279 mic.data = (u8 *)resv->iov_base + resv->iov_len + 4;
1280 if (gss_get_mic(gsd->rsci->mechctx, &integ_buf, &mic))
1281 goto out_err;
1282 svc_putnl(resv, mic.len);
1283 memset(mic.data + mic.len, 0,
1284 round_up_to_quad(mic.len) - mic.len);
1285 resv->iov_len += XDR_QUADLEN(mic.len) << 2;
1286 /* not strictly required: */
1287 resbuf->len += XDR_QUADLEN(mic.len) << 2;
1288 BUG_ON(resv->iov_len > PAGE_SIZE);
1289 out:
1290 stat = 0;
1291 out_err:
1292 return stat;
1295 static inline int
1296 svcauth_gss_wrap_resp_priv(struct svc_rqst *rqstp)
1298 struct gss_svc_data *gsd = (struct gss_svc_data *)rqstp->rq_auth_data;
1299 struct rpc_gss_wire_cred *gc = &gsd->clcred;
1300 struct xdr_buf *resbuf = &rqstp->rq_res;
1301 struct page **inpages = NULL;
1302 __be32 *p, *len;
1303 int offset;
1304 int pad;
1306 p = svcauth_gss_prepare_to_wrap(resbuf, gsd);
1307 if (p == NULL)
1308 return 0;
1309 len = p++;
1310 offset = (u8 *)p - (u8 *)resbuf->head[0].iov_base;
1311 *p++ = htonl(gc->gc_seq);
1312 inpages = resbuf->pages;
1315 * If there is currently tail data, make sure there is
1316 * room for the head, tail, and 2 * RPC_MAX_AUTH_SIZE in
1317 * the page, and move the current tail data such that
1318 * there is RPC_MAX_AUTH_SIZE slack space available in
1319 * both the head and tail.
1321 if (resbuf->tail[0].iov_base) {
1322 BUG_ON(resbuf->tail[0].iov_base >= resbuf->head[0].iov_base
1323 + PAGE_SIZE);
1324 BUG_ON(resbuf->tail[0].iov_base < resbuf->head[0].iov_base);
1325 if (resbuf->tail[0].iov_len + resbuf->head[0].iov_len
1326 + 2 * RPC_MAX_AUTH_SIZE > PAGE_SIZE)
1327 return -ENOMEM;
1328 memmove(resbuf->tail[0].iov_base + RPC_MAX_AUTH_SIZE,
1329 resbuf->tail[0].iov_base,
1330 resbuf->tail[0].iov_len);
1331 resbuf->tail[0].iov_base += RPC_MAX_AUTH_SIZE;
1334 * If there is no current tail data, make sure there is
1335 * room for the head data, and 2 * RPC_MAX_AUTH_SIZE in the
1336 * allotted page, and set up tail information such that there
1337 * is RPC_MAX_AUTH_SIZE slack space available in both the
1338 * head and tail.
1340 if (resbuf->tail[0].iov_base == NULL) {
1341 if (resbuf->head[0].iov_len + 2*RPC_MAX_AUTH_SIZE > PAGE_SIZE)
1342 return -ENOMEM;
1343 resbuf->tail[0].iov_base = resbuf->head[0].iov_base
1344 + resbuf->head[0].iov_len + RPC_MAX_AUTH_SIZE;
1345 resbuf->tail[0].iov_len = 0;
1347 if (gss_wrap(gsd->rsci->mechctx, offset, resbuf, inpages))
1348 return -ENOMEM;
1349 *len = htonl(resbuf->len - offset);
1350 pad = 3 - ((resbuf->len - offset - 1)&3);
1351 p = (__be32 *)(resbuf->tail[0].iov_base + resbuf->tail[0].iov_len);
1352 memset(p, 0, pad);
1353 resbuf->tail[0].iov_len += pad;
1354 resbuf->len += pad;
1355 return 0;
1358 static int
1359 svcauth_gss_release(struct svc_rqst *rqstp)
1361 struct gss_svc_data *gsd = (struct gss_svc_data *)rqstp->rq_auth_data;
1362 struct rpc_gss_wire_cred *gc = &gsd->clcred;
1363 struct xdr_buf *resbuf = &rqstp->rq_res;
1364 int stat = -EINVAL;
1366 if (gc->gc_proc != RPC_GSS_PROC_DATA)
1367 goto out;
1368 /* Release can be called twice, but we only wrap once. */
1369 if (gsd->verf_start == NULL)
1370 goto out;
1371 /* normally not set till svc_send, but we need it here: */
1372 resbuf->len = total_buf_len(resbuf);
1373 switch (gc->gc_svc) {
1374 case RPC_GSS_SVC_NONE:
1375 break;
1376 case RPC_GSS_SVC_INTEGRITY:
1377 stat = svcauth_gss_wrap_resp_integ(rqstp);
1378 if (stat)
1379 goto out_err;
1380 break;
1381 case RPC_GSS_SVC_PRIVACY:
1382 stat = svcauth_gss_wrap_resp_priv(rqstp);
1383 if (stat)
1384 goto out_err;
1385 break;
1387 * For any other gc_svc value, svcauth_gss_accept() already set
1388 * the auth_error appropriately; just fall through:
1392 out:
1393 stat = 0;
1394 out_err:
1395 if (rqstp->rq_client)
1396 auth_domain_put(rqstp->rq_client);
1397 rqstp->rq_client = NULL;
1398 if (rqstp->rq_gssclient)
1399 auth_domain_put(rqstp->rq_gssclient);
1400 rqstp->rq_gssclient = NULL;
1401 if (rqstp->rq_cred.cr_group_info)
1402 put_group_info(rqstp->rq_cred.cr_group_info);
1403 rqstp->rq_cred.cr_group_info = NULL;
1404 if (gsd->rsci)
1405 cache_put(&gsd->rsci->h, &rsc_cache);
1406 gsd->rsci = NULL;
1408 return stat;
1411 static void
1412 svcauth_gss_domain_release(struct auth_domain *dom)
1414 struct gss_domain *gd = container_of(dom, struct gss_domain, h);
1416 kfree(dom->name);
1417 kfree(gd);
1420 static struct auth_ops svcauthops_gss = {
1421 .name = "rpcsec_gss",
1422 .owner = THIS_MODULE,
1423 .flavour = RPC_AUTH_GSS,
1424 .accept = svcauth_gss_accept,
1425 .release = svcauth_gss_release,
1426 .domain_release = svcauth_gss_domain_release,
1427 .set_client = svcauth_gss_set_client,
1431 gss_svc_init(void)
1433 int rv = svc_auth_register(RPC_AUTH_GSS, &svcauthops_gss);
1434 if (rv)
1435 return rv;
1436 rv = cache_register(&rsc_cache);
1437 if (rv)
1438 goto out1;
1439 rv = cache_register(&rsi_cache);
1440 if (rv)
1441 goto out2;
1442 return 0;
1443 out2:
1444 cache_unregister(&rsc_cache);
1445 out1:
1446 svc_auth_unregister(RPC_AUTH_GSS);
1447 return rv;
1450 void
1451 gss_svc_shutdown(void)
1453 cache_unregister(&rsc_cache);
1454 cache_unregister(&rsi_cache);
1455 svc_auth_unregister(RPC_AUTH_GSS);