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>
6  *
7  * RPCSEC_GSS server authentication.
8  * This implements RPCSEC_GSS as defined in rfc2203 (rpcsec_gss) and rfc2078
9  * (gssapi)
10  *
11  * The RPCSEC_GSS involves three stages:
12  *  1/ context creation
13  *  2/ data exchange
14  *  3/ context destruction
15  *
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
22  *
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.
30  *
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
37  *
38  */
39 
40 #include <linux/slab.h>
41 #include <linux/types.h>
42 #include <linux/module.h>
43 #include <linux/pagemap.h>
44 #include <linux/user_namespace.h>
45 
46 #include <linux/sunrpc/auth_gss.h>
47 #include <linux/sunrpc/gss_err.h>
48 #include <linux/sunrpc/svcauth.h>
49 #include <linux/sunrpc/svcauth_gss.h>
50 #include <linux/sunrpc/cache.h>
51 #include "gss_rpc_upcall.h"
52 
53 
54 #if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
55 # define RPCDBG_FACILITY	RPCDBG_AUTH
56 #endif
57 
58 /* The rpcsec_init cache is used for mapping RPCSEC_GSS_{,CONT_}INIT requests
59  * into replies.
60  *
61  * Key is context handle (\x if empty) and gss_token.
62  * Content is major_status minor_status (integers) context_handle, reply_token.
63  *
64  */
65 
66 static int netobj_equal(struct xdr_netobj *a, struct xdr_netobj *b)
67 {
68 	return a->len == b->len && 0 == memcmp(a->data, b->data, a->len);
69 }
70 
71 #define	RSI_HASHBITS	6
72 #define	RSI_HASHMAX	(1<<RSI_HASHBITS)
73 
74 struct rsi {
75 	struct cache_head	h;
76 	struct xdr_netobj	in_handle, in_token;
77 	struct xdr_netobj	out_handle, out_token;
78 	int			major_status, minor_status;
79 	struct rcu_head		rcu_head;
80 };
81 
82 static struct rsi *rsi_update(struct cache_detail *cd, struct rsi *new, struct rsi *old);
83 static struct rsi *rsi_lookup(struct cache_detail *cd, struct rsi *item);
84 
85 static void rsi_free(struct rsi *rsii)
86 {
87 	kfree(rsii->in_handle.data);
88 	kfree(rsii->in_token.data);
89 	kfree(rsii->out_handle.data);
90 	kfree(rsii->out_token.data);
91 }
92 
93 static void rsi_free_rcu(struct rcu_head *head)
94 {
95 	struct rsi *rsii = container_of(head, struct rsi, rcu_head);
96 
97 	rsi_free(rsii);
98 	kfree(rsii);
99 }
100 
101 static void rsi_put(struct kref *ref)
102 {
103 	struct rsi *rsii = container_of(ref, struct rsi, h.ref);
104 
105 	call_rcu(&rsii->rcu_head, rsi_free_rcu);
106 }
107 
108 static inline int rsi_hash(struct rsi *item)
109 {
110 	return hash_mem(item->in_handle.data, item->in_handle.len, RSI_HASHBITS)
111 	     ^ hash_mem(item->in_token.data, item->in_token.len, RSI_HASHBITS);
112 }
113 
114 static int rsi_match(struct cache_head *a, struct cache_head *b)
115 {
116 	struct rsi *item = container_of(a, struct rsi, h);
117 	struct rsi *tmp = container_of(b, struct rsi, h);
118 	return netobj_equal(&item->in_handle, &tmp->in_handle) &&
119 	       netobj_equal(&item->in_token, &tmp->in_token);
120 }
121 
122 static int dup_to_netobj(struct xdr_netobj *dst, char *src, int len)
123 {
124 	dst->len = len;
125 	dst->data = (len ? kmemdup(src, len, GFP_KERNEL) : NULL);
126 	if (len && !dst->data)
127 		return -ENOMEM;
128 	return 0;
129 }
130 
131 static inline int dup_netobj(struct xdr_netobj *dst, struct xdr_netobj *src)
132 {
133 	return dup_to_netobj(dst, src->data, src->len);
134 }
135 
136 static void rsi_init(struct cache_head *cnew, struct cache_head *citem)
137 {
138 	struct rsi *new = container_of(cnew, struct rsi, h);
139 	struct rsi *item = container_of(citem, struct rsi, h);
140 
141 	new->out_handle.data = NULL;
142 	new->out_handle.len = 0;
143 	new->out_token.data = NULL;
144 	new->out_token.len = 0;
145 	new->in_handle.len = item->in_handle.len;
146 	item->in_handle.len = 0;
147 	new->in_token.len = item->in_token.len;
148 	item->in_token.len = 0;
149 	new->in_handle.data = item->in_handle.data;
150 	item->in_handle.data = NULL;
151 	new->in_token.data = item->in_token.data;
152 	item->in_token.data = NULL;
153 }
154 
155 static void update_rsi(struct cache_head *cnew, struct cache_head *citem)
156 {
157 	struct rsi *new = container_of(cnew, struct rsi, h);
158 	struct rsi *item = container_of(citem, struct rsi, h);
159 
160 	BUG_ON(new->out_handle.data || new->out_token.data);
161 	new->out_handle.len = item->out_handle.len;
162 	item->out_handle.len = 0;
163 	new->out_token.len = item->out_token.len;
164 	item->out_token.len = 0;
165 	new->out_handle.data = item->out_handle.data;
166 	item->out_handle.data = NULL;
167 	new->out_token.data = item->out_token.data;
168 	item->out_token.data = NULL;
169 
170 	new->major_status = item->major_status;
171 	new->minor_status = item->minor_status;
172 }
173 
174 static struct cache_head *rsi_alloc(void)
175 {
176 	struct rsi *rsii = kmalloc(sizeof(*rsii), GFP_KERNEL);
177 	if (rsii)
178 		return &rsii->h;
179 	else
180 		return NULL;
181 }
182 
183 static void rsi_request(struct cache_detail *cd,
184 		       struct cache_head *h,
185 		       char **bpp, int *blen)
186 {
187 	struct rsi *rsii = container_of(h, struct rsi, h);
188 
189 	qword_addhex(bpp, blen, rsii->in_handle.data, rsii->in_handle.len);
190 	qword_addhex(bpp, blen, rsii->in_token.data, rsii->in_token.len);
191 	(*bpp)[-1] = '\n';
192 }
193 
194 static int rsi_parse(struct cache_detail *cd,
195 		    char *mesg, int mlen)
196 {
197 	/* context token expiry major minor context token */
198 	char *buf = mesg;
199 	char *ep;
200 	int len;
201 	struct rsi rsii, *rsip = NULL;
202 	time_t expiry;
203 	int status = -EINVAL;
204 
205 	memset(&rsii, 0, sizeof(rsii));
206 	/* handle */
207 	len = qword_get(&mesg, buf, mlen);
208 	if (len < 0)
209 		goto out;
210 	status = -ENOMEM;
211 	if (dup_to_netobj(&rsii.in_handle, buf, len))
212 		goto out;
213 
214 	/* token */
215 	len = qword_get(&mesg, buf, mlen);
216 	status = -EINVAL;
217 	if (len < 0)
218 		goto out;
219 	status = -ENOMEM;
220 	if (dup_to_netobj(&rsii.in_token, buf, len))
221 		goto out;
222 
223 	rsip = rsi_lookup(cd, &rsii);
224 	if (!rsip)
225 		goto out;
226 
227 	rsii.h.flags = 0;
228 	/* expiry */
229 	expiry = get_expiry(&mesg);
230 	status = -EINVAL;
231 	if (expiry == 0)
232 		goto out;
233 
234 	/* major/minor */
235 	len = qword_get(&mesg, buf, mlen);
236 	if (len <= 0)
237 		goto out;
238 	rsii.major_status = simple_strtoul(buf, &ep, 10);
239 	if (*ep)
240 		goto out;
241 	len = qword_get(&mesg, buf, mlen);
242 	if (len <= 0)
243 		goto out;
244 	rsii.minor_status = simple_strtoul(buf, &ep, 10);
245 	if (*ep)
246 		goto out;
247 
248 	/* out_handle */
249 	len = qword_get(&mesg, buf, mlen);
250 	if (len < 0)
251 		goto out;
252 	status = -ENOMEM;
253 	if (dup_to_netobj(&rsii.out_handle, buf, len))
254 		goto out;
255 
256 	/* out_token */
257 	len = qword_get(&mesg, buf, mlen);
258 	status = -EINVAL;
259 	if (len < 0)
260 		goto out;
261 	status = -ENOMEM;
262 	if (dup_to_netobj(&rsii.out_token, buf, len))
263 		goto out;
264 	rsii.h.expiry_time = expiry;
265 	rsip = rsi_update(cd, &rsii, rsip);
266 	status = 0;
267 out:
268 	rsi_free(&rsii);
269 	if (rsip)
270 		cache_put(&rsip->h, cd);
271 	else
272 		status = -ENOMEM;
273 	return status;
274 }
275 
276 static const struct cache_detail rsi_cache_template = {
277 	.owner		= THIS_MODULE,
278 	.hash_size	= RSI_HASHMAX,
279 	.name           = "auth.rpcsec.init",
280 	.cache_put      = rsi_put,
281 	.cache_request  = rsi_request,
282 	.cache_parse    = rsi_parse,
283 	.match		= rsi_match,
284 	.init		= rsi_init,
285 	.update		= update_rsi,
286 	.alloc		= rsi_alloc,
287 };
288 
289 static struct rsi *rsi_lookup(struct cache_detail *cd, struct rsi *item)
290 {
291 	struct cache_head *ch;
292 	int hash = rsi_hash(item);
293 
294 	ch = sunrpc_cache_lookup_rcu(cd, &item->h, hash);
295 	if (ch)
296 		return container_of(ch, struct rsi, h);
297 	else
298 		return NULL;
299 }
300 
301 static struct rsi *rsi_update(struct cache_detail *cd, struct rsi *new, struct rsi *old)
302 {
303 	struct cache_head *ch;
304 	int hash = rsi_hash(new);
305 
306 	ch = sunrpc_cache_update(cd, &new->h,
307 				 &old->h, hash);
308 	if (ch)
309 		return container_of(ch, struct rsi, h);
310 	else
311 		return NULL;
312 }
313 
314 
315 /*
316  * The rpcsec_context cache is used to store a context that is
317  * used in data exchange.
318  * The key is a context handle. The content is:
319  *  uid, gidlist, mechanism, service-set, mech-specific-data
320  */
321 
322 #define	RSC_HASHBITS	10
323 #define	RSC_HASHMAX	(1<<RSC_HASHBITS)
324 
325 #define GSS_SEQ_WIN	128
326 
327 struct gss_svc_seq_data {
328 	/* highest seq number seen so far: */
329 	int			sd_max;
330 	/* for i such that sd_max-GSS_SEQ_WIN < i <= sd_max, the i-th bit of
331 	 * sd_win is nonzero iff sequence number i has been seen already: */
332 	unsigned long		sd_win[GSS_SEQ_WIN/BITS_PER_LONG];
333 	spinlock_t		sd_lock;
334 };
335 
336 struct rsc {
337 	struct cache_head	h;
338 	struct xdr_netobj	handle;
339 	struct svc_cred		cred;
340 	struct gss_svc_seq_data	seqdata;
341 	struct gss_ctx		*mechctx;
342 	struct rcu_head		rcu_head;
343 };
344 
345 static struct rsc *rsc_update(struct cache_detail *cd, struct rsc *new, struct rsc *old);
346 static struct rsc *rsc_lookup(struct cache_detail *cd, struct rsc *item);
347 
348 static void rsc_free(struct rsc *rsci)
349 {
350 	kfree(rsci->handle.data);
351 	if (rsci->mechctx)
352 		gss_delete_sec_context(&rsci->mechctx);
353 	free_svc_cred(&rsci->cred);
354 }
355 
356 static void rsc_free_rcu(struct rcu_head *head)
357 {
358 	struct rsc *rsci = container_of(head, struct rsc, rcu_head);
359 
360 	kfree(rsci->handle.data);
361 	kfree(rsci);
362 }
363 
364 static void rsc_put(struct kref *ref)
365 {
366 	struct rsc *rsci = container_of(ref, struct rsc, h.ref);
367 
368 	if (rsci->mechctx)
369 		gss_delete_sec_context(&rsci->mechctx);
370 	free_svc_cred(&rsci->cred);
371 	call_rcu(&rsci->rcu_head, rsc_free_rcu);
372 }
373 
374 static inline int
375 rsc_hash(struct rsc *rsci)
376 {
377 	return hash_mem(rsci->handle.data, rsci->handle.len, RSC_HASHBITS);
378 }
379 
380 static int
381 rsc_match(struct cache_head *a, struct cache_head *b)
382 {
383 	struct rsc *new = container_of(a, struct rsc, h);
384 	struct rsc *tmp = container_of(b, struct rsc, h);
385 
386 	return netobj_equal(&new->handle, &tmp->handle);
387 }
388 
389 static void
390 rsc_init(struct cache_head *cnew, struct cache_head *ctmp)
391 {
392 	struct rsc *new = container_of(cnew, struct rsc, h);
393 	struct rsc *tmp = container_of(ctmp, struct rsc, h);
394 
395 	new->handle.len = tmp->handle.len;
396 	tmp->handle.len = 0;
397 	new->handle.data = tmp->handle.data;
398 	tmp->handle.data = NULL;
399 	new->mechctx = NULL;
400 	init_svc_cred(&new->cred);
401 }
402 
403 static void
404 update_rsc(struct cache_head *cnew, struct cache_head *ctmp)
405 {
406 	struct rsc *new = container_of(cnew, struct rsc, h);
407 	struct rsc *tmp = container_of(ctmp, struct rsc, h);
408 
409 	new->mechctx = tmp->mechctx;
410 	tmp->mechctx = NULL;
411 	memset(&new->seqdata, 0, sizeof(new->seqdata));
412 	spin_lock_init(&new->seqdata.sd_lock);
413 	new->cred = tmp->cred;
414 	init_svc_cred(&tmp->cred);
415 }
416 
417 static struct cache_head *
418 rsc_alloc(void)
419 {
420 	struct rsc *rsci = kmalloc(sizeof(*rsci), GFP_KERNEL);
421 	if (rsci)
422 		return &rsci->h;
423 	else
424 		return NULL;
425 }
426 
427 static int rsc_parse(struct cache_detail *cd,
428 		     char *mesg, int mlen)
429 {
430 	/* contexthandle expiry [ uid gid N <n gids> mechname ...mechdata... ] */
431 	char *buf = mesg;
432 	int id;
433 	int len, rv;
434 	struct rsc rsci, *rscp = NULL;
435 	time_t expiry;
436 	int status = -EINVAL;
437 	struct gss_api_mech *gm = NULL;
438 
439 	memset(&rsci, 0, sizeof(rsci));
440 	/* context handle */
441 	len = qword_get(&mesg, buf, mlen);
442 	if (len < 0) goto out;
443 	status = -ENOMEM;
444 	if (dup_to_netobj(&rsci.handle, buf, len))
445 		goto out;
446 
447 	rsci.h.flags = 0;
448 	/* expiry */
449 	expiry = get_expiry(&mesg);
450 	status = -EINVAL;
451 	if (expiry == 0)
452 		goto out;
453 
454 	rscp = rsc_lookup(cd, &rsci);
455 	if (!rscp)
456 		goto out;
457 
458 	/* uid, or NEGATIVE */
459 	rv = get_int(&mesg, &id);
460 	if (rv == -EINVAL)
461 		goto out;
462 	if (rv == -ENOENT)
463 		set_bit(CACHE_NEGATIVE, &rsci.h.flags);
464 	else {
465 		int N, i;
466 
467 		/*
468 		 * NOTE: we skip uid_valid()/gid_valid() checks here:
469 		 * instead, * -1 id's are later mapped to the
470 		 * (export-specific) anonymous id by nfsd_setuser.
471 		 *
472 		 * (But supplementary gid's get no such special
473 		 * treatment so are checked for validity here.)
474 		 */
475 		/* uid */
476 		rsci.cred.cr_uid = make_kuid(&init_user_ns, id);
477 
478 		/* gid */
479 		if (get_int(&mesg, &id))
480 			goto out;
481 		rsci.cred.cr_gid = make_kgid(&init_user_ns, id);
482 
483 		/* number of additional gid's */
484 		if (get_int(&mesg, &N))
485 			goto out;
486 		if (N < 0 || N > NGROUPS_MAX)
487 			goto out;
488 		status = -ENOMEM;
489 		rsci.cred.cr_group_info = groups_alloc(N);
490 		if (rsci.cred.cr_group_info == NULL)
491 			goto out;
492 
493 		/* gid's */
494 		status = -EINVAL;
495 		for (i=0; i<N; i++) {
496 			kgid_t kgid;
497 			if (get_int(&mesg, &id))
498 				goto out;
499 			kgid = make_kgid(&init_user_ns, id);
500 			if (!gid_valid(kgid))
501 				goto out;
502 			rsci.cred.cr_group_info->gid[i] = kgid;
503 		}
504 		groups_sort(rsci.cred.cr_group_info);
505 
506 		/* mech name */
507 		len = qword_get(&mesg, buf, mlen);
508 		if (len < 0)
509 			goto out;
510 		gm = rsci.cred.cr_gss_mech = gss_mech_get_by_name(buf);
511 		status = -EOPNOTSUPP;
512 		if (!gm)
513 			goto out;
514 
515 		status = -EINVAL;
516 		/* mech-specific data: */
517 		len = qword_get(&mesg, buf, mlen);
518 		if (len < 0)
519 			goto out;
520 		status = gss_import_sec_context(buf, len, gm, &rsci.mechctx,
521 						NULL, GFP_KERNEL);
522 		if (status)
523 			goto out;
524 
525 		/* get client name */
526 		len = qword_get(&mesg, buf, mlen);
527 		if (len > 0) {
528 			rsci.cred.cr_principal = kstrdup(buf, GFP_KERNEL);
529 			if (!rsci.cred.cr_principal) {
530 				status = -ENOMEM;
531 				goto out;
532 			}
533 		}
534 
535 	}
536 	rsci.h.expiry_time = expiry;
537 	rscp = rsc_update(cd, &rsci, rscp);
538 	status = 0;
539 out:
540 	rsc_free(&rsci);
541 	if (rscp)
542 		cache_put(&rscp->h, cd);
543 	else
544 		status = -ENOMEM;
545 	return status;
546 }
547 
548 static const struct cache_detail rsc_cache_template = {
549 	.owner		= THIS_MODULE,
550 	.hash_size	= RSC_HASHMAX,
551 	.name		= "auth.rpcsec.context",
552 	.cache_put	= rsc_put,
553 	.cache_parse	= rsc_parse,
554 	.match		= rsc_match,
555 	.init		= rsc_init,
556 	.update		= update_rsc,
557 	.alloc		= rsc_alloc,
558 };
559 
560 static struct rsc *rsc_lookup(struct cache_detail *cd, struct rsc *item)
561 {
562 	struct cache_head *ch;
563 	int hash = rsc_hash(item);
564 
565 	ch = sunrpc_cache_lookup_rcu(cd, &item->h, hash);
566 	if (ch)
567 		return container_of(ch, struct rsc, h);
568 	else
569 		return NULL;
570 }
571 
572 static struct rsc *rsc_update(struct cache_detail *cd, struct rsc *new, struct rsc *old)
573 {
574 	struct cache_head *ch;
575 	int hash = rsc_hash(new);
576 
577 	ch = sunrpc_cache_update(cd, &new->h,
578 				 &old->h, hash);
579 	if (ch)
580 		return container_of(ch, struct rsc, h);
581 	else
582 		return NULL;
583 }
584 
585 
586 static struct rsc *
587 gss_svc_searchbyctx(struct cache_detail *cd, struct xdr_netobj *handle)
588 {
589 	struct rsc rsci;
590 	struct rsc *found;
591 
592 	memset(&rsci, 0, sizeof(rsci));
593 	if (dup_to_netobj(&rsci.handle, handle->data, handle->len))
594 		return NULL;
595 	found = rsc_lookup(cd, &rsci);
596 	rsc_free(&rsci);
597 	if (!found)
598 		return NULL;
599 	if (cache_check(cd, &found->h, NULL))
600 		return NULL;
601 	return found;
602 }
603 
604 /* Implements sequence number algorithm as specified in RFC 2203. */
605 static int
606 gss_check_seq_num(struct rsc *rsci, int seq_num)
607 {
608 	struct gss_svc_seq_data *sd = &rsci->seqdata;
609 
610 	spin_lock(&sd->sd_lock);
611 	if (seq_num > sd->sd_max) {
612 		if (seq_num >= sd->sd_max + GSS_SEQ_WIN) {
613 			memset(sd->sd_win,0,sizeof(sd->sd_win));
614 			sd->sd_max = seq_num;
615 		} else while (sd->sd_max < seq_num) {
616 			sd->sd_max++;
617 			__clear_bit(sd->sd_max % GSS_SEQ_WIN, sd->sd_win);
618 		}
619 		__set_bit(seq_num % GSS_SEQ_WIN, sd->sd_win);
620 		goto ok;
621 	} else if (seq_num <= sd->sd_max - GSS_SEQ_WIN) {
622 		goto drop;
623 	}
624 	/* sd_max - GSS_SEQ_WIN < seq_num <= sd_max */
625 	if (__test_and_set_bit(seq_num % GSS_SEQ_WIN, sd->sd_win))
626 		goto drop;
627 ok:
628 	spin_unlock(&sd->sd_lock);
629 	return 1;
630 drop:
631 	spin_unlock(&sd->sd_lock);
632 	return 0;
633 }
634 
635 static inline u32 round_up_to_quad(u32 i)
636 {
637 	return (i + 3 ) & ~3;
638 }
639 
640 static inline int
641 svc_safe_getnetobj(struct kvec *argv, struct xdr_netobj *o)
642 {
643 	int l;
644 
645 	if (argv->iov_len < 4)
646 		return -1;
647 	o->len = svc_getnl(argv);
648 	l = round_up_to_quad(o->len);
649 	if (argv->iov_len < l)
650 		return -1;
651 	o->data = argv->iov_base;
652 	argv->iov_base += l;
653 	argv->iov_len -= l;
654 	return 0;
655 }
656 
657 static inline int
658 svc_safe_putnetobj(struct kvec *resv, struct xdr_netobj *o)
659 {
660 	u8 *p;
661 
662 	if (resv->iov_len + 4 > PAGE_SIZE)
663 		return -1;
664 	svc_putnl(resv, o->len);
665 	p = resv->iov_base + resv->iov_len;
666 	resv->iov_len += round_up_to_quad(o->len);
667 	if (resv->iov_len > PAGE_SIZE)
668 		return -1;
669 	memcpy(p, o->data, o->len);
670 	memset(p + o->len, 0, round_up_to_quad(o->len) - o->len);
671 	return 0;
672 }
673 
674 /*
675  * Verify the checksum on the header and return SVC_OK on success.
676  * Otherwise, return SVC_DROP (in the case of a bad sequence number)
677  * or return SVC_DENIED and indicate error in authp.
678  */
679 static int
680 gss_verify_header(struct svc_rqst *rqstp, struct rsc *rsci,
681 		  __be32 *rpcstart, struct rpc_gss_wire_cred *gc, __be32 *authp)
682 {
683 	struct gss_ctx		*ctx_id = rsci->mechctx;
684 	struct xdr_buf		rpchdr;
685 	struct xdr_netobj	checksum;
686 	u32			flavor = 0;
687 	struct kvec		*argv = &rqstp->rq_arg.head[0];
688 	struct kvec		iov;
689 
690 	/* data to compute the checksum over: */
691 	iov.iov_base = rpcstart;
692 	iov.iov_len = (u8 *)argv->iov_base - (u8 *)rpcstart;
693 	xdr_buf_from_iov(&iov, &rpchdr);
694 
695 	*authp = rpc_autherr_badverf;
696 	if (argv->iov_len < 4)
697 		return SVC_DENIED;
698 	flavor = svc_getnl(argv);
699 	if (flavor != RPC_AUTH_GSS)
700 		return SVC_DENIED;
701 	if (svc_safe_getnetobj(argv, &checksum))
702 		return SVC_DENIED;
703 
704 	if (rqstp->rq_deferred) /* skip verification of revisited request */
705 		return SVC_OK;
706 	if (gss_verify_mic(ctx_id, &rpchdr, &checksum) != GSS_S_COMPLETE) {
707 		*authp = rpcsec_gsserr_credproblem;
708 		return SVC_DENIED;
709 	}
710 
711 	if (gc->gc_seq > MAXSEQ) {
712 		dprintk("RPC:       svcauth_gss: discarding request with "
713 				"large sequence number %d\n", gc->gc_seq);
714 		*authp = rpcsec_gsserr_ctxproblem;
715 		return SVC_DENIED;
716 	}
717 	if (!gss_check_seq_num(rsci, gc->gc_seq)) {
718 		dprintk("RPC:       svcauth_gss: discarding request with "
719 				"old sequence number %d\n", gc->gc_seq);
720 		return SVC_DROP;
721 	}
722 	return SVC_OK;
723 }
724 
725 static int
726 gss_write_null_verf(struct svc_rqst *rqstp)
727 {
728 	__be32     *p;
729 
730 	svc_putnl(rqstp->rq_res.head, RPC_AUTH_NULL);
731 	p = rqstp->rq_res.head->iov_base + rqstp->rq_res.head->iov_len;
732 	/* don't really need to check if head->iov_len > PAGE_SIZE ... */
733 	*p++ = 0;
734 	if (!xdr_ressize_check(rqstp, p))
735 		return -1;
736 	return 0;
737 }
738 
739 static int
740 gss_write_verf(struct svc_rqst *rqstp, struct gss_ctx *ctx_id, u32 seq)
741 {
742 	__be32			*xdr_seq;
743 	u32			maj_stat;
744 	struct xdr_buf		verf_data;
745 	struct xdr_netobj	mic;
746 	__be32			*p;
747 	struct kvec		iov;
748 	int err = -1;
749 
750 	svc_putnl(rqstp->rq_res.head, RPC_AUTH_GSS);
751 	xdr_seq = kmalloc(4, GFP_KERNEL);
752 	if (!xdr_seq)
753 		return -1;
754 	*xdr_seq = htonl(seq);
755 
756 	iov.iov_base = xdr_seq;
757 	iov.iov_len = 4;
758 	xdr_buf_from_iov(&iov, &verf_data);
759 	p = rqstp->rq_res.head->iov_base + rqstp->rq_res.head->iov_len;
760 	mic.data = (u8 *)(p + 1);
761 	maj_stat = gss_get_mic(ctx_id, &verf_data, &mic);
762 	if (maj_stat != GSS_S_COMPLETE)
763 		goto out;
764 	*p++ = htonl(mic.len);
765 	memset((u8 *)p + mic.len, 0, round_up_to_quad(mic.len) - mic.len);
766 	p += XDR_QUADLEN(mic.len);
767 	if (!xdr_ressize_check(rqstp, p))
768 		goto out;
769 	err = 0;
770 out:
771 	kfree(xdr_seq);
772 	return err;
773 }
774 
775 struct gss_domain {
776 	struct auth_domain	h;
777 	u32			pseudoflavor;
778 };
779 
780 static struct auth_domain *
781 find_gss_auth_domain(struct gss_ctx *ctx, u32 svc)
782 {
783 	char *name;
784 
785 	name = gss_service_to_auth_domain_name(ctx->mech_type, svc);
786 	if (!name)
787 		return NULL;
788 	return auth_domain_find(name);
789 }
790 
791 static struct auth_ops svcauthops_gss;
792 
793 u32 svcauth_gss_flavor(struct auth_domain *dom)
794 {
795 	struct gss_domain *gd = container_of(dom, struct gss_domain, h);
796 
797 	return gd->pseudoflavor;
798 }
799 
800 EXPORT_SYMBOL_GPL(svcauth_gss_flavor);
801 
802 int
803 svcauth_gss_register_pseudoflavor(u32 pseudoflavor, char * name)
804 {
805 	struct gss_domain	*new;
806 	struct auth_domain	*test;
807 	int			stat = -ENOMEM;
808 
809 	new = kmalloc(sizeof(*new), GFP_KERNEL);
810 	if (!new)
811 		goto out;
812 	kref_init(&new->h.ref);
813 	new->h.name = kstrdup(name, GFP_KERNEL);
814 	if (!new->h.name)
815 		goto out_free_dom;
816 	new->h.flavour = &svcauthops_gss;
817 	new->pseudoflavor = pseudoflavor;
818 
819 	stat = 0;
820 	test = auth_domain_lookup(name, &new->h);
821 	if (test != &new->h) { /* Duplicate registration */
822 		auth_domain_put(test);
823 		kfree(new->h.name);
824 		goto out_free_dom;
825 	}
826 	return 0;
827 
828 out_free_dom:
829 	kfree(new);
830 out:
831 	return stat;
832 }
833 
834 EXPORT_SYMBOL_GPL(svcauth_gss_register_pseudoflavor);
835 
836 static inline int
837 read_u32_from_xdr_buf(struct xdr_buf *buf, int base, u32 *obj)
838 {
839 	__be32  raw;
840 	int     status;
841 
842 	status = read_bytes_from_xdr_buf(buf, base, &raw, sizeof(*obj));
843 	if (status)
844 		return status;
845 	*obj = ntohl(raw);
846 	return 0;
847 }
848 
849 /* It would be nice if this bit of code could be shared with the client.
850  * Obstacles:
851  *	The client shouldn't malloc(), would have to pass in own memory.
852  *	The server uses base of head iovec as read pointer, while the
853  *	client uses separate pointer. */
854 static int
855 unwrap_integ_data(struct svc_rqst *rqstp, struct xdr_buf *buf, u32 seq, struct gss_ctx *ctx)
856 {
857 	int stat = -EINVAL;
858 	u32 integ_len, maj_stat;
859 	struct xdr_netobj mic;
860 	struct xdr_buf integ_buf;
861 
862 	/* NFS READ normally uses splice to send data in-place. However
863 	 * the data in cache can change after the reply's MIC is computed
864 	 * but before the RPC reply is sent. To prevent the client from
865 	 * rejecting the server-computed MIC in this somewhat rare case,
866 	 * do not use splice with the GSS integrity service.
867 	 */
868 	clear_bit(RQ_SPLICE_OK, &rqstp->rq_flags);
869 
870 	/* Did we already verify the signature on the original pass through? */
871 	if (rqstp->rq_deferred)
872 		return 0;
873 
874 	integ_len = svc_getnl(&buf->head[0]);
875 	if (integ_len & 3)
876 		return stat;
877 	if (integ_len > buf->len)
878 		return stat;
879 	if (xdr_buf_subsegment(buf, &integ_buf, 0, integ_len)) {
880 		WARN_ON_ONCE(1);
881 		return stat;
882 	}
883 	/* copy out mic... */
884 	if (read_u32_from_xdr_buf(buf, integ_len, &mic.len))
885 		return stat;
886 	if (mic.len > RPC_MAX_AUTH_SIZE)
887 		return stat;
888 	mic.data = kmalloc(mic.len, GFP_KERNEL);
889 	if (!mic.data)
890 		return stat;
891 	if (read_bytes_from_xdr_buf(buf, integ_len + 4, mic.data, mic.len))
892 		goto out;
893 	maj_stat = gss_verify_mic(ctx, &integ_buf, &mic);
894 	if (maj_stat != GSS_S_COMPLETE)
895 		goto out;
896 	if (svc_getnl(&buf->head[0]) != seq)
897 		goto out;
898 	/* trim off the mic and padding at the end before returning */
899 	xdr_buf_trim(buf, round_up_to_quad(mic.len) + 4);
900 	stat = 0;
901 out:
902 	kfree(mic.data);
903 	return stat;
904 }
905 
906 static inline int
907 total_buf_len(struct xdr_buf *buf)
908 {
909 	return buf->head[0].iov_len + buf->page_len + buf->tail[0].iov_len;
910 }
911 
912 static void
913 fix_priv_head(struct xdr_buf *buf, int pad)
914 {
915 	if (buf->page_len == 0) {
916 		/* We need to adjust head and buf->len in tandem in this
917 		 * case to make svc_defer() work--it finds the original
918 		 * buffer start using buf->len - buf->head[0].iov_len. */
919 		buf->head[0].iov_len -= pad;
920 	}
921 }
922 
923 static int
924 unwrap_priv_data(struct svc_rqst *rqstp, struct xdr_buf *buf, u32 seq, struct gss_ctx *ctx)
925 {
926 	u32 priv_len, maj_stat;
927 	int pad, saved_len, remaining_len, offset;
928 
929 	clear_bit(RQ_SPLICE_OK, &rqstp->rq_flags);
930 
931 	priv_len = svc_getnl(&buf->head[0]);
932 	if (rqstp->rq_deferred) {
933 		/* Already decrypted last time through! The sequence number
934 		 * check at out_seq is unnecessary but harmless: */
935 		goto out_seq;
936 	}
937 	/* buf->len is the number of bytes from the original start of the
938 	 * request to the end, where head[0].iov_len is just the bytes
939 	 * not yet read from the head, so these two values are different: */
940 	remaining_len = total_buf_len(buf);
941 	if (priv_len > remaining_len)
942 		return -EINVAL;
943 	pad = remaining_len - priv_len;
944 	buf->len -= pad;
945 	fix_priv_head(buf, pad);
946 
947 	/* Maybe it would be better to give gss_unwrap a length parameter: */
948 	saved_len = buf->len;
949 	buf->len = priv_len;
950 	maj_stat = gss_unwrap(ctx, 0, buf);
951 	pad = priv_len - buf->len;
952 	buf->len = saved_len;
953 	buf->len -= pad;
954 	/* The upper layers assume the buffer is aligned on 4-byte boundaries.
955 	 * In the krb5p case, at least, the data ends up offset, so we need to
956 	 * move it around. */
957 	/* XXX: This is very inefficient.  It would be better to either do
958 	 * this while we encrypt, or maybe in the receive code, if we can peak
959 	 * ahead and work out the service and mechanism there. */
960 	offset = buf->head[0].iov_len % 4;
961 	if (offset) {
962 		buf->buflen = RPCSVC_MAXPAYLOAD;
963 		xdr_shift_buf(buf, offset);
964 		fix_priv_head(buf, pad);
965 	}
966 	if (maj_stat != GSS_S_COMPLETE)
967 		return -EINVAL;
968 out_seq:
969 	if (svc_getnl(&buf->head[0]) != seq)
970 		return -EINVAL;
971 	return 0;
972 }
973 
974 struct gss_svc_data {
975 	/* decoded gss client cred: */
976 	struct rpc_gss_wire_cred	clcred;
977 	/* save a pointer to the beginning of the encoded verifier,
978 	 * for use in encryption/checksumming in svcauth_gss_release: */
979 	__be32				*verf_start;
980 	struct rsc			*rsci;
981 };
982 
983 static int
984 svcauth_gss_set_client(struct svc_rqst *rqstp)
985 {
986 	struct gss_svc_data *svcdata = rqstp->rq_auth_data;
987 	struct rsc *rsci = svcdata->rsci;
988 	struct rpc_gss_wire_cred *gc = &svcdata->clcred;
989 	int stat;
990 
991 	/*
992 	 * A gss export can be specified either by:
993 	 * 	export	*(sec=krb5,rw)
994 	 * or by
995 	 * 	export gss/krb5(rw)
996 	 * The latter is deprecated; but for backwards compatibility reasons
997 	 * the nfsd code will still fall back on trying it if the former
998 	 * doesn't work; so we try to make both available to nfsd, below.
999 	 */
1000 	rqstp->rq_gssclient = find_gss_auth_domain(rsci->mechctx, gc->gc_svc);
1001 	if (rqstp->rq_gssclient == NULL)
1002 		return SVC_DENIED;
1003 	stat = svcauth_unix_set_client(rqstp);
1004 	if (stat == SVC_DROP || stat == SVC_CLOSE)
1005 		return stat;
1006 	return SVC_OK;
1007 }
1008 
1009 static inline int
1010 gss_write_init_verf(struct cache_detail *cd, struct svc_rqst *rqstp,
1011 		struct xdr_netobj *out_handle, int *major_status)
1012 {
1013 	struct rsc *rsci;
1014 	int        rc;
1015 
1016 	if (*major_status != GSS_S_COMPLETE)
1017 		return gss_write_null_verf(rqstp);
1018 	rsci = gss_svc_searchbyctx(cd, out_handle);
1019 	if (rsci == NULL) {
1020 		*major_status = GSS_S_NO_CONTEXT;
1021 		return gss_write_null_verf(rqstp);
1022 	}
1023 	rc = gss_write_verf(rqstp, rsci->mechctx, GSS_SEQ_WIN);
1024 	cache_put(&rsci->h, cd);
1025 	return rc;
1026 }
1027 
1028 static inline int
1029 gss_read_common_verf(struct rpc_gss_wire_cred *gc,
1030 		     struct kvec *argv, __be32 *authp,
1031 		     struct xdr_netobj *in_handle)
1032 {
1033 	/* Read the verifier; should be NULL: */
1034 	*authp = rpc_autherr_badverf;
1035 	if (argv->iov_len < 2 * 4)
1036 		return SVC_DENIED;
1037 	if (svc_getnl(argv) != RPC_AUTH_NULL)
1038 		return SVC_DENIED;
1039 	if (svc_getnl(argv) != 0)
1040 		return SVC_DENIED;
1041 	/* Martial context handle and token for upcall: */
1042 	*authp = rpc_autherr_badcred;
1043 	if (gc->gc_proc == RPC_GSS_PROC_INIT && gc->gc_ctx.len != 0)
1044 		return SVC_DENIED;
1045 	if (dup_netobj(in_handle, &gc->gc_ctx))
1046 		return SVC_CLOSE;
1047 	*authp = rpc_autherr_badverf;
1048 
1049 	return 0;
1050 }
1051 
1052 static inline int
1053 gss_read_verf(struct rpc_gss_wire_cred *gc,
1054 	      struct kvec *argv, __be32 *authp,
1055 	      struct xdr_netobj *in_handle,
1056 	      struct xdr_netobj *in_token)
1057 {
1058 	struct xdr_netobj tmpobj;
1059 	int res;
1060 
1061 	res = gss_read_common_verf(gc, argv, authp, in_handle);
1062 	if (res)
1063 		return res;
1064 
1065 	if (svc_safe_getnetobj(argv, &tmpobj)) {
1066 		kfree(in_handle->data);
1067 		return SVC_DENIED;
1068 	}
1069 	if (dup_netobj(in_token, &tmpobj)) {
1070 		kfree(in_handle->data);
1071 		return SVC_CLOSE;
1072 	}
1073 
1074 	return 0;
1075 }
1076 
1077 /* Ok this is really heavily depending on a set of semantics in
1078  * how rqstp is set up by svc_recv and pages laid down by the
1079  * server when reading a request. We are basically guaranteed that
1080  * the token lays all down linearly across a set of pages, starting
1081  * at iov_base in rq_arg.head[0] which happens to be the first of a
1082  * set of pages stored in rq_pages[].
1083  * rq_arg.head[0].iov_base will provide us the page_base to pass
1084  * to the upcall.
1085  */
1086 static inline int
1087 gss_read_proxy_verf(struct svc_rqst *rqstp,
1088 		    struct rpc_gss_wire_cred *gc, __be32 *authp,
1089 		    struct xdr_netobj *in_handle,
1090 		    struct gssp_in_token *in_token)
1091 {
1092 	struct kvec *argv = &rqstp->rq_arg.head[0];
1093 	u32 inlen;
1094 	int res;
1095 
1096 	res = gss_read_common_verf(gc, argv, authp, in_handle);
1097 	if (res)
1098 		return res;
1099 
1100 	inlen = svc_getnl(argv);
1101 	if (inlen > (argv->iov_len + rqstp->rq_arg.page_len))
1102 		return SVC_DENIED;
1103 
1104 	in_token->pages = rqstp->rq_pages;
1105 	in_token->page_base = (ulong)argv->iov_base & ~PAGE_MASK;
1106 	in_token->page_len = inlen;
1107 
1108 	return 0;
1109 }
1110 
1111 static inline int
1112 gss_write_resv(struct kvec *resv, size_t size_limit,
1113 	       struct xdr_netobj *out_handle, struct xdr_netobj *out_token,
1114 	       int major_status, int minor_status)
1115 {
1116 	if (resv->iov_len + 4 > size_limit)
1117 		return -1;
1118 	svc_putnl(resv, RPC_SUCCESS);
1119 	if (svc_safe_putnetobj(resv, out_handle))
1120 		return -1;
1121 	if (resv->iov_len + 3 * 4 > size_limit)
1122 		return -1;
1123 	svc_putnl(resv, major_status);
1124 	svc_putnl(resv, minor_status);
1125 	svc_putnl(resv, GSS_SEQ_WIN);
1126 	if (svc_safe_putnetobj(resv, out_token))
1127 		return -1;
1128 	return 0;
1129 }
1130 
1131 /*
1132  * Having read the cred already and found we're in the context
1133  * initiation case, read the verifier and initiate (or check the results
1134  * of) upcalls to userspace for help with context initiation.  If
1135  * the upcall results are available, write the verifier and result.
1136  * Otherwise, drop the request pending an answer to the upcall.
1137  */
1138 static int svcauth_gss_legacy_init(struct svc_rqst *rqstp,
1139 			struct rpc_gss_wire_cred *gc, __be32 *authp)
1140 {
1141 	struct kvec *argv = &rqstp->rq_arg.head[0];
1142 	struct kvec *resv = &rqstp->rq_res.head[0];
1143 	struct rsi *rsip, rsikey;
1144 	int ret;
1145 	struct sunrpc_net *sn = net_generic(rqstp->rq_xprt->xpt_net, sunrpc_net_id);
1146 
1147 	memset(&rsikey, 0, sizeof(rsikey));
1148 	ret = gss_read_verf(gc, argv, authp,
1149 			    &rsikey.in_handle, &rsikey.in_token);
1150 	if (ret)
1151 		return ret;
1152 
1153 	/* Perform upcall, or find upcall result: */
1154 	rsip = rsi_lookup(sn->rsi_cache, &rsikey);
1155 	rsi_free(&rsikey);
1156 	if (!rsip)
1157 		return SVC_CLOSE;
1158 	if (cache_check(sn->rsi_cache, &rsip->h, &rqstp->rq_chandle) < 0)
1159 		/* No upcall result: */
1160 		return SVC_CLOSE;
1161 
1162 	ret = SVC_CLOSE;
1163 	/* Got an answer to the upcall; use it: */
1164 	if (gss_write_init_verf(sn->rsc_cache, rqstp,
1165 				&rsip->out_handle, &rsip->major_status))
1166 		goto out;
1167 	if (gss_write_resv(resv, PAGE_SIZE,
1168 			   &rsip->out_handle, &rsip->out_token,
1169 			   rsip->major_status, rsip->minor_status))
1170 		goto out;
1171 
1172 	ret = SVC_COMPLETE;
1173 out:
1174 	cache_put(&rsip->h, sn->rsi_cache);
1175 	return ret;
1176 }
1177 
1178 static int gss_proxy_save_rsc(struct cache_detail *cd,
1179 				struct gssp_upcall_data *ud,
1180 				uint64_t *handle)
1181 {
1182 	struct rsc rsci, *rscp = NULL;
1183 	static atomic64_t ctxhctr;
1184 	long long ctxh;
1185 	struct gss_api_mech *gm = NULL;
1186 	time_t expiry;
1187 	int status = -EINVAL;
1188 
1189 	memset(&rsci, 0, sizeof(rsci));
1190 	/* context handle */
1191 	status = -ENOMEM;
1192 	/* the handle needs to be just a unique id,
1193 	 * use a static counter */
1194 	ctxh = atomic64_inc_return(&ctxhctr);
1195 
1196 	/* make a copy for the caller */
1197 	*handle = ctxh;
1198 
1199 	/* make a copy for the rsc cache */
1200 	if (dup_to_netobj(&rsci.handle, (char *)handle, sizeof(uint64_t)))
1201 		goto out;
1202 	rscp = rsc_lookup(cd, &rsci);
1203 	if (!rscp)
1204 		goto out;
1205 
1206 	/* creds */
1207 	if (!ud->found_creds) {
1208 		/* userspace seem buggy, we should always get at least a
1209 		 * mapping to nobody */
1210 		dprintk("RPC:       No creds found!\n");
1211 		goto out;
1212 	} else {
1213 
1214 		/* steal creds */
1215 		rsci.cred = ud->creds;
1216 		memset(&ud->creds, 0, sizeof(struct svc_cred));
1217 
1218 		status = -EOPNOTSUPP;
1219 		/* get mech handle from OID */
1220 		gm = gss_mech_get_by_OID(&ud->mech_oid);
1221 		if (!gm)
1222 			goto out;
1223 		rsci.cred.cr_gss_mech = gm;
1224 
1225 		status = -EINVAL;
1226 		/* mech-specific data: */
1227 		status = gss_import_sec_context(ud->out_handle.data,
1228 						ud->out_handle.len,
1229 						gm, &rsci.mechctx,
1230 						&expiry, GFP_KERNEL);
1231 		if (status)
1232 			goto out;
1233 	}
1234 
1235 	rsci.h.expiry_time = expiry;
1236 	rscp = rsc_update(cd, &rsci, rscp);
1237 	status = 0;
1238 out:
1239 	rsc_free(&rsci);
1240 	if (rscp)
1241 		cache_put(&rscp->h, cd);
1242 	else
1243 		status = -ENOMEM;
1244 	return status;
1245 }
1246 
1247 static int svcauth_gss_proxy_init(struct svc_rqst *rqstp,
1248 			struct rpc_gss_wire_cred *gc, __be32 *authp)
1249 {
1250 	struct kvec *resv = &rqstp->rq_res.head[0];
1251 	struct xdr_netobj cli_handle;
1252 	struct gssp_upcall_data ud;
1253 	uint64_t handle;
1254 	int status;
1255 	int ret;
1256 	struct net *net = rqstp->rq_xprt->xpt_net;
1257 	struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
1258 
1259 	memset(&ud, 0, sizeof(ud));
1260 	ret = gss_read_proxy_verf(rqstp, gc, authp,
1261 				  &ud.in_handle, &ud.in_token);
1262 	if (ret)
1263 		return ret;
1264 
1265 	ret = SVC_CLOSE;
1266 
1267 	/* Perform synchronous upcall to gss-proxy */
1268 	status = gssp_accept_sec_context_upcall(net, &ud);
1269 	if (status)
1270 		goto out;
1271 
1272 	dprintk("RPC:       svcauth_gss: gss major status = %d "
1273 			"minor status = %d\n",
1274 			ud.major_status, ud.minor_status);
1275 
1276 	switch (ud.major_status) {
1277 	case GSS_S_CONTINUE_NEEDED:
1278 		cli_handle = ud.out_handle;
1279 		break;
1280 	case GSS_S_COMPLETE:
1281 		status = gss_proxy_save_rsc(sn->rsc_cache, &ud, &handle);
1282 		if (status)
1283 			goto out;
1284 		cli_handle.data = (u8 *)&handle;
1285 		cli_handle.len = sizeof(handle);
1286 		break;
1287 	default:
1288 		ret = SVC_CLOSE;
1289 		goto out;
1290 	}
1291 
1292 	/* Got an answer to the upcall; use it: */
1293 	if (gss_write_init_verf(sn->rsc_cache, rqstp,
1294 				&cli_handle, &ud.major_status))
1295 		goto out;
1296 	if (gss_write_resv(resv, PAGE_SIZE,
1297 			   &cli_handle, &ud.out_token,
1298 			   ud.major_status, ud.minor_status))
1299 		goto out;
1300 
1301 	ret = SVC_COMPLETE;
1302 out:
1303 	gssp_free_upcall_data(&ud);
1304 	return ret;
1305 }
1306 
1307 /*
1308  * Try to set the sn->use_gss_proxy variable to a new value. We only allow
1309  * it to be changed if it's currently undefined (-1). If it's any other value
1310  * then return -EBUSY unless the type wouldn't have changed anyway.
1311  */
1312 static int set_gss_proxy(struct net *net, int type)
1313 {
1314 	struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
1315 	int ret;
1316 
1317 	WARN_ON_ONCE(type != 0 && type != 1);
1318 	ret = cmpxchg(&sn->use_gss_proxy, -1, type);
1319 	if (ret != -1 && ret != type)
1320 		return -EBUSY;
1321 	return 0;
1322 }
1323 
1324 static bool use_gss_proxy(struct net *net)
1325 {
1326 	struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
1327 
1328 	/* If use_gss_proxy is still undefined, then try to disable it */
1329 	if (sn->use_gss_proxy == -1)
1330 		set_gss_proxy(net, 0);
1331 	return sn->use_gss_proxy;
1332 }
1333 
1334 #ifdef CONFIG_PROC_FS
1335 
1336 static ssize_t write_gssp(struct file *file, const char __user *buf,
1337 			 size_t count, loff_t *ppos)
1338 {
1339 	struct net *net = PDE_DATA(file_inode(file));
1340 	char tbuf[20];
1341 	unsigned long i;
1342 	int res;
1343 
1344 	if (*ppos || count > sizeof(tbuf)-1)
1345 		return -EINVAL;
1346 	if (copy_from_user(tbuf, buf, count))
1347 		return -EFAULT;
1348 
1349 	tbuf[count] = 0;
1350 	res = kstrtoul(tbuf, 0, &i);
1351 	if (res)
1352 		return res;
1353 	if (i != 1)
1354 		return -EINVAL;
1355 	res = set_gssp_clnt(net);
1356 	if (res)
1357 		return res;
1358 	res = set_gss_proxy(net, 1);
1359 	if (res)
1360 		return res;
1361 	return count;
1362 }
1363 
1364 static ssize_t read_gssp(struct file *file, char __user *buf,
1365 			 size_t count, loff_t *ppos)
1366 {
1367 	struct net *net = PDE_DATA(file_inode(file));
1368 	struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
1369 	unsigned long p = *ppos;
1370 	char tbuf[10];
1371 	size_t len;
1372 
1373 	snprintf(tbuf, sizeof(tbuf), "%d\n", sn->use_gss_proxy);
1374 	len = strlen(tbuf);
1375 	if (p >= len)
1376 		return 0;
1377 	len -= p;
1378 	if (len > count)
1379 		len = count;
1380 	if (copy_to_user(buf, (void *)(tbuf+p), len))
1381 		return -EFAULT;
1382 	*ppos += len;
1383 	return len;
1384 }
1385 
1386 static const struct file_operations use_gss_proxy_ops = {
1387 	.open = nonseekable_open,
1388 	.write = write_gssp,
1389 	.read = read_gssp,
1390 };
1391 
1392 static int create_use_gss_proxy_proc_entry(struct net *net)
1393 {
1394 	struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
1395 	struct proc_dir_entry **p = &sn->use_gssp_proc;
1396 
1397 	sn->use_gss_proxy = -1;
1398 	*p = proc_create_data("use-gss-proxy", S_IFREG | 0600,
1399 			      sn->proc_net_rpc,
1400 			      &use_gss_proxy_ops, net);
1401 	if (!*p)
1402 		return -ENOMEM;
1403 	init_gssp_clnt(sn);
1404 	return 0;
1405 }
1406 
1407 static void destroy_use_gss_proxy_proc_entry(struct net *net)
1408 {
1409 	struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
1410 
1411 	if (sn->use_gssp_proc) {
1412 		remove_proc_entry("use-gss-proxy", sn->proc_net_rpc);
1413 		clear_gssp_clnt(sn);
1414 	}
1415 }
1416 #else /* CONFIG_PROC_FS */
1417 
1418 static int create_use_gss_proxy_proc_entry(struct net *net)
1419 {
1420 	return 0;
1421 }
1422 
1423 static void destroy_use_gss_proxy_proc_entry(struct net *net) {}
1424 
1425 #endif /* CONFIG_PROC_FS */
1426 
1427 /*
1428  * Accept an rpcsec packet.
1429  * If context establishment, punt to user space
1430  * If data exchange, verify/decrypt
1431  * If context destruction, handle here
1432  * In the context establishment and destruction case we encode
1433  * response here and return SVC_COMPLETE.
1434  */
1435 static int
1436 svcauth_gss_accept(struct svc_rqst *rqstp, __be32 *authp)
1437 {
1438 	struct kvec	*argv = &rqstp->rq_arg.head[0];
1439 	struct kvec	*resv = &rqstp->rq_res.head[0];
1440 	u32		crlen;
1441 	struct gss_svc_data *svcdata = rqstp->rq_auth_data;
1442 	struct rpc_gss_wire_cred *gc;
1443 	struct rsc	*rsci = NULL;
1444 	__be32		*rpcstart;
1445 	__be32		*reject_stat = resv->iov_base + resv->iov_len;
1446 	int		ret;
1447 	struct sunrpc_net *sn = net_generic(rqstp->rq_xprt->xpt_net, sunrpc_net_id);
1448 
1449 	dprintk("RPC:       svcauth_gss: argv->iov_len = %zd\n",
1450 			argv->iov_len);
1451 
1452 	*authp = rpc_autherr_badcred;
1453 	if (!svcdata)
1454 		svcdata = kmalloc(sizeof(*svcdata), GFP_KERNEL);
1455 	if (!svcdata)
1456 		goto auth_err;
1457 	rqstp->rq_auth_data = svcdata;
1458 	svcdata->verf_start = NULL;
1459 	svcdata->rsci = NULL;
1460 	gc = &svcdata->clcred;
1461 
1462 	/* start of rpc packet is 7 u32's back from here:
1463 	 * xid direction rpcversion prog vers proc flavour
1464 	 */
1465 	rpcstart = argv->iov_base;
1466 	rpcstart -= 7;
1467 
1468 	/* credential is:
1469 	 *   version(==1), proc(0,1,2,3), seq, service (1,2,3), handle
1470 	 * at least 5 u32s, and is preceded by length, so that makes 6.
1471 	 */
1472 
1473 	if (argv->iov_len < 5 * 4)
1474 		goto auth_err;
1475 	crlen = svc_getnl(argv);
1476 	if (svc_getnl(argv) != RPC_GSS_VERSION)
1477 		goto auth_err;
1478 	gc->gc_proc = svc_getnl(argv);
1479 	gc->gc_seq = svc_getnl(argv);
1480 	gc->gc_svc = svc_getnl(argv);
1481 	if (svc_safe_getnetobj(argv, &gc->gc_ctx))
1482 		goto auth_err;
1483 	if (crlen != round_up_to_quad(gc->gc_ctx.len) + 5 * 4)
1484 		goto auth_err;
1485 
1486 	if ((gc->gc_proc != RPC_GSS_PROC_DATA) && (rqstp->rq_proc != 0))
1487 		goto auth_err;
1488 
1489 	*authp = rpc_autherr_badverf;
1490 	switch (gc->gc_proc) {
1491 	case RPC_GSS_PROC_INIT:
1492 	case RPC_GSS_PROC_CONTINUE_INIT:
1493 		if (use_gss_proxy(SVC_NET(rqstp)))
1494 			return svcauth_gss_proxy_init(rqstp, gc, authp);
1495 		else
1496 			return svcauth_gss_legacy_init(rqstp, gc, authp);
1497 	case RPC_GSS_PROC_DATA:
1498 	case RPC_GSS_PROC_DESTROY:
1499 		/* Look up the context, and check the verifier: */
1500 		*authp = rpcsec_gsserr_credproblem;
1501 		rsci = gss_svc_searchbyctx(sn->rsc_cache, &gc->gc_ctx);
1502 		if (!rsci)
1503 			goto auth_err;
1504 		switch (gss_verify_header(rqstp, rsci, rpcstart, gc, authp)) {
1505 		case SVC_OK:
1506 			break;
1507 		case SVC_DENIED:
1508 			goto auth_err;
1509 		case SVC_DROP:
1510 			goto drop;
1511 		}
1512 		break;
1513 	default:
1514 		*authp = rpc_autherr_rejectedcred;
1515 		goto auth_err;
1516 	}
1517 
1518 	/* now act upon the command: */
1519 	switch (gc->gc_proc) {
1520 	case RPC_GSS_PROC_DESTROY:
1521 		if (gss_write_verf(rqstp, rsci->mechctx, gc->gc_seq))
1522 			goto auth_err;
1523 		/* Delete the entry from the cache_list and call cache_put */
1524 		sunrpc_cache_unhash(sn->rsc_cache, &rsci->h);
1525 		if (resv->iov_len + 4 > PAGE_SIZE)
1526 			goto drop;
1527 		svc_putnl(resv, RPC_SUCCESS);
1528 		goto complete;
1529 	case RPC_GSS_PROC_DATA:
1530 		*authp = rpcsec_gsserr_ctxproblem;
1531 		svcdata->verf_start = resv->iov_base + resv->iov_len;
1532 		if (gss_write_verf(rqstp, rsci->mechctx, gc->gc_seq))
1533 			goto auth_err;
1534 		rqstp->rq_cred = rsci->cred;
1535 		get_group_info(rsci->cred.cr_group_info);
1536 		*authp = rpc_autherr_badcred;
1537 		switch (gc->gc_svc) {
1538 		case RPC_GSS_SVC_NONE:
1539 			break;
1540 		case RPC_GSS_SVC_INTEGRITY:
1541 			/* placeholders for length and seq. number: */
1542 			svc_putnl(resv, 0);
1543 			svc_putnl(resv, 0);
1544 			if (unwrap_integ_data(rqstp, &rqstp->rq_arg,
1545 					gc->gc_seq, rsci->mechctx))
1546 				goto garbage_args;
1547 			rqstp->rq_auth_slack = RPC_MAX_AUTH_SIZE;
1548 			break;
1549 		case RPC_GSS_SVC_PRIVACY:
1550 			/* placeholders for length and seq. number: */
1551 			svc_putnl(resv, 0);
1552 			svc_putnl(resv, 0);
1553 			if (unwrap_priv_data(rqstp, &rqstp->rq_arg,
1554 					gc->gc_seq, rsci->mechctx))
1555 				goto garbage_args;
1556 			rqstp->rq_auth_slack = RPC_MAX_AUTH_SIZE * 2;
1557 			break;
1558 		default:
1559 			goto auth_err;
1560 		}
1561 		svcdata->rsci = rsci;
1562 		cache_get(&rsci->h);
1563 		rqstp->rq_cred.cr_flavor = gss_svc_to_pseudoflavor(
1564 					rsci->mechctx->mech_type,
1565 					GSS_C_QOP_DEFAULT,
1566 					gc->gc_svc);
1567 		ret = SVC_OK;
1568 		goto out;
1569 	}
1570 garbage_args:
1571 	ret = SVC_GARBAGE;
1572 	goto out;
1573 auth_err:
1574 	/* Restore write pointer to its original value: */
1575 	xdr_ressize_check(rqstp, reject_stat);
1576 	ret = SVC_DENIED;
1577 	goto out;
1578 complete:
1579 	ret = SVC_COMPLETE;
1580 	goto out;
1581 drop:
1582 	ret = SVC_CLOSE;
1583 out:
1584 	if (rsci)
1585 		cache_put(&rsci->h, sn->rsc_cache);
1586 	return ret;
1587 }
1588 
1589 static __be32 *
1590 svcauth_gss_prepare_to_wrap(struct xdr_buf *resbuf, struct gss_svc_data *gsd)
1591 {
1592 	__be32 *p;
1593 	u32 verf_len;
1594 
1595 	p = gsd->verf_start;
1596 	gsd->verf_start = NULL;
1597 
1598 	/* If the reply stat is nonzero, don't wrap: */
1599 	if (*(p-1) != rpc_success)
1600 		return NULL;
1601 	/* Skip the verifier: */
1602 	p += 1;
1603 	verf_len = ntohl(*p++);
1604 	p += XDR_QUADLEN(verf_len);
1605 	/* move accept_stat to right place: */
1606 	memcpy(p, p + 2, 4);
1607 	/* Also don't wrap if the accept stat is nonzero: */
1608 	if (*p != rpc_success) {
1609 		resbuf->head[0].iov_len -= 2 * 4;
1610 		return NULL;
1611 	}
1612 	p++;
1613 	return p;
1614 }
1615 
1616 static inline int
1617 svcauth_gss_wrap_resp_integ(struct svc_rqst *rqstp)
1618 {
1619 	struct gss_svc_data *gsd = (struct gss_svc_data *)rqstp->rq_auth_data;
1620 	struct rpc_gss_wire_cred *gc = &gsd->clcred;
1621 	struct xdr_buf *resbuf = &rqstp->rq_res;
1622 	struct xdr_buf integ_buf;
1623 	struct xdr_netobj mic;
1624 	struct kvec *resv;
1625 	__be32 *p;
1626 	int integ_offset, integ_len;
1627 	int stat = -EINVAL;
1628 
1629 	p = svcauth_gss_prepare_to_wrap(resbuf, gsd);
1630 	if (p == NULL)
1631 		goto out;
1632 	integ_offset = (u8 *)(p + 1) - (u8 *)resbuf->head[0].iov_base;
1633 	integ_len = resbuf->len - integ_offset;
1634 	BUG_ON(integ_len % 4);
1635 	*p++ = htonl(integ_len);
1636 	*p++ = htonl(gc->gc_seq);
1637 	if (xdr_buf_subsegment(resbuf, &integ_buf, integ_offset, integ_len)) {
1638 		WARN_ON_ONCE(1);
1639 		goto out_err;
1640 	}
1641 	if (resbuf->tail[0].iov_base == NULL) {
1642 		if (resbuf->head[0].iov_len + RPC_MAX_AUTH_SIZE > PAGE_SIZE)
1643 			goto out_err;
1644 		resbuf->tail[0].iov_base = resbuf->head[0].iov_base
1645 						+ resbuf->head[0].iov_len;
1646 		resbuf->tail[0].iov_len = 0;
1647 	}
1648 	resv = &resbuf->tail[0];
1649 	mic.data = (u8 *)resv->iov_base + resv->iov_len + 4;
1650 	if (gss_get_mic(gsd->rsci->mechctx, &integ_buf, &mic))
1651 		goto out_err;
1652 	svc_putnl(resv, mic.len);
1653 	memset(mic.data + mic.len, 0,
1654 			round_up_to_quad(mic.len) - mic.len);
1655 	resv->iov_len += XDR_QUADLEN(mic.len) << 2;
1656 	/* not strictly required: */
1657 	resbuf->len += XDR_QUADLEN(mic.len) << 2;
1658 	BUG_ON(resv->iov_len > PAGE_SIZE);
1659 out:
1660 	stat = 0;
1661 out_err:
1662 	return stat;
1663 }
1664 
1665 static inline int
1666 svcauth_gss_wrap_resp_priv(struct svc_rqst *rqstp)
1667 {
1668 	struct gss_svc_data *gsd = (struct gss_svc_data *)rqstp->rq_auth_data;
1669 	struct rpc_gss_wire_cred *gc = &gsd->clcred;
1670 	struct xdr_buf *resbuf = &rqstp->rq_res;
1671 	struct page **inpages = NULL;
1672 	__be32 *p, *len;
1673 	int offset;
1674 	int pad;
1675 
1676 	p = svcauth_gss_prepare_to_wrap(resbuf, gsd);
1677 	if (p == NULL)
1678 		return 0;
1679 	len = p++;
1680 	offset = (u8 *)p - (u8 *)resbuf->head[0].iov_base;
1681 	*p++ = htonl(gc->gc_seq);
1682 	inpages = resbuf->pages;
1683 	/* XXX: Would be better to write some xdr helper functions for
1684 	 * nfs{2,3,4}xdr.c that place the data right, instead of copying: */
1685 
1686 	/*
1687 	 * If there is currently tail data, make sure there is
1688 	 * room for the head, tail, and 2 * RPC_MAX_AUTH_SIZE in
1689 	 * the page, and move the current tail data such that
1690 	 * there is RPC_MAX_AUTH_SIZE slack space available in
1691 	 * both the head and tail.
1692 	 */
1693 	if (resbuf->tail[0].iov_base) {
1694 		BUG_ON(resbuf->tail[0].iov_base >= resbuf->head[0].iov_base
1695 							+ PAGE_SIZE);
1696 		BUG_ON(resbuf->tail[0].iov_base < resbuf->head[0].iov_base);
1697 		if (resbuf->tail[0].iov_len + resbuf->head[0].iov_len
1698 				+ 2 * RPC_MAX_AUTH_SIZE > PAGE_SIZE)
1699 			return -ENOMEM;
1700 		memmove(resbuf->tail[0].iov_base + RPC_MAX_AUTH_SIZE,
1701 			resbuf->tail[0].iov_base,
1702 			resbuf->tail[0].iov_len);
1703 		resbuf->tail[0].iov_base += RPC_MAX_AUTH_SIZE;
1704 	}
1705 	/*
1706 	 * If there is no current tail data, make sure there is
1707 	 * room for the head data, and 2 * RPC_MAX_AUTH_SIZE in the
1708 	 * allotted page, and set up tail information such that there
1709 	 * is RPC_MAX_AUTH_SIZE slack space available in both the
1710 	 * head and tail.
1711 	 */
1712 	if (resbuf->tail[0].iov_base == NULL) {
1713 		if (resbuf->head[0].iov_len + 2*RPC_MAX_AUTH_SIZE > PAGE_SIZE)
1714 			return -ENOMEM;
1715 		resbuf->tail[0].iov_base = resbuf->head[0].iov_base
1716 			+ resbuf->head[0].iov_len + RPC_MAX_AUTH_SIZE;
1717 		resbuf->tail[0].iov_len = 0;
1718 	}
1719 	if (gss_wrap(gsd->rsci->mechctx, offset, resbuf, inpages))
1720 		return -ENOMEM;
1721 	*len = htonl(resbuf->len - offset);
1722 	pad = 3 - ((resbuf->len - offset - 1)&3);
1723 	p = (__be32 *)(resbuf->tail[0].iov_base + resbuf->tail[0].iov_len);
1724 	memset(p, 0, pad);
1725 	resbuf->tail[0].iov_len += pad;
1726 	resbuf->len += pad;
1727 	return 0;
1728 }
1729 
1730 static int
1731 svcauth_gss_release(struct svc_rqst *rqstp)
1732 {
1733 	struct gss_svc_data *gsd = (struct gss_svc_data *)rqstp->rq_auth_data;
1734 	struct rpc_gss_wire_cred *gc = &gsd->clcred;
1735 	struct xdr_buf *resbuf = &rqstp->rq_res;
1736 	int stat = -EINVAL;
1737 	struct sunrpc_net *sn = net_generic(rqstp->rq_xprt->xpt_net, sunrpc_net_id);
1738 
1739 	if (gc->gc_proc != RPC_GSS_PROC_DATA)
1740 		goto out;
1741 	/* Release can be called twice, but we only wrap once. */
1742 	if (gsd->verf_start == NULL)
1743 		goto out;
1744 	/* normally not set till svc_send, but we need it here: */
1745 	/* XXX: what for?  Do we mess it up the moment we call svc_putu32
1746 	 * or whatever? */
1747 	resbuf->len = total_buf_len(resbuf);
1748 	switch (gc->gc_svc) {
1749 	case RPC_GSS_SVC_NONE:
1750 		break;
1751 	case RPC_GSS_SVC_INTEGRITY:
1752 		stat = svcauth_gss_wrap_resp_integ(rqstp);
1753 		if (stat)
1754 			goto out_err;
1755 		break;
1756 	case RPC_GSS_SVC_PRIVACY:
1757 		stat = svcauth_gss_wrap_resp_priv(rqstp);
1758 		if (stat)
1759 			goto out_err;
1760 		break;
1761 	/*
1762 	 * For any other gc_svc value, svcauth_gss_accept() already set
1763 	 * the auth_error appropriately; just fall through:
1764 	 */
1765 	}
1766 
1767 out:
1768 	stat = 0;
1769 out_err:
1770 	if (rqstp->rq_client)
1771 		auth_domain_put(rqstp->rq_client);
1772 	rqstp->rq_client = NULL;
1773 	if (rqstp->rq_gssclient)
1774 		auth_domain_put(rqstp->rq_gssclient);
1775 	rqstp->rq_gssclient = NULL;
1776 	if (rqstp->rq_cred.cr_group_info)
1777 		put_group_info(rqstp->rq_cred.cr_group_info);
1778 	rqstp->rq_cred.cr_group_info = NULL;
1779 	if (gsd->rsci)
1780 		cache_put(&gsd->rsci->h, sn->rsc_cache);
1781 	gsd->rsci = NULL;
1782 
1783 	return stat;
1784 }
1785 
1786 static void
1787 svcauth_gss_domain_release_rcu(struct rcu_head *head)
1788 {
1789 	struct auth_domain *dom = container_of(head, struct auth_domain, rcu_head);
1790 	struct gss_domain *gd = container_of(dom, struct gss_domain, h);
1791 
1792 	kfree(dom->name);
1793 	kfree(gd);
1794 }
1795 
1796 static void
1797 svcauth_gss_domain_release(struct auth_domain *dom)
1798 {
1799 	call_rcu(&dom->rcu_head, svcauth_gss_domain_release_rcu);
1800 }
1801 
1802 static struct auth_ops svcauthops_gss = {
1803 	.name		= "rpcsec_gss",
1804 	.owner		= THIS_MODULE,
1805 	.flavour	= RPC_AUTH_GSS,
1806 	.accept		= svcauth_gss_accept,
1807 	.release	= svcauth_gss_release,
1808 	.domain_release = svcauth_gss_domain_release,
1809 	.set_client	= svcauth_gss_set_client,
1810 };
1811 
1812 static int rsi_cache_create_net(struct net *net)
1813 {
1814 	struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
1815 	struct cache_detail *cd;
1816 	int err;
1817 
1818 	cd = cache_create_net(&rsi_cache_template, net);
1819 	if (IS_ERR(cd))
1820 		return PTR_ERR(cd);
1821 	err = cache_register_net(cd, net);
1822 	if (err) {
1823 		cache_destroy_net(cd, net);
1824 		return err;
1825 	}
1826 	sn->rsi_cache = cd;
1827 	return 0;
1828 }
1829 
1830 static void rsi_cache_destroy_net(struct net *net)
1831 {
1832 	struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
1833 	struct cache_detail *cd = sn->rsi_cache;
1834 
1835 	sn->rsi_cache = NULL;
1836 	cache_purge(cd);
1837 	cache_unregister_net(cd, net);
1838 	cache_destroy_net(cd, net);
1839 }
1840 
1841 static int rsc_cache_create_net(struct net *net)
1842 {
1843 	struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
1844 	struct cache_detail *cd;
1845 	int err;
1846 
1847 	cd = cache_create_net(&rsc_cache_template, net);
1848 	if (IS_ERR(cd))
1849 		return PTR_ERR(cd);
1850 	err = cache_register_net(cd, net);
1851 	if (err) {
1852 		cache_destroy_net(cd, net);
1853 		return err;
1854 	}
1855 	sn->rsc_cache = cd;
1856 	return 0;
1857 }
1858 
1859 static void rsc_cache_destroy_net(struct net *net)
1860 {
1861 	struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
1862 	struct cache_detail *cd = sn->rsc_cache;
1863 
1864 	sn->rsc_cache = NULL;
1865 	cache_purge(cd);
1866 	cache_unregister_net(cd, net);
1867 	cache_destroy_net(cd, net);
1868 }
1869 
1870 int
1871 gss_svc_init_net(struct net *net)
1872 {
1873 	int rv;
1874 
1875 	rv = rsc_cache_create_net(net);
1876 	if (rv)
1877 		return rv;
1878 	rv = rsi_cache_create_net(net);
1879 	if (rv)
1880 		goto out1;
1881 	rv = create_use_gss_proxy_proc_entry(net);
1882 	if (rv)
1883 		goto out2;
1884 	return 0;
1885 out2:
1886 	destroy_use_gss_proxy_proc_entry(net);
1887 out1:
1888 	rsc_cache_destroy_net(net);
1889 	return rv;
1890 }
1891 
1892 void
1893 gss_svc_shutdown_net(struct net *net)
1894 {
1895 	destroy_use_gss_proxy_proc_entry(net);
1896 	rsi_cache_destroy_net(net);
1897 	rsc_cache_destroy_net(net);
1898 }
1899 
1900 int
1901 gss_svc_init(void)
1902 {
1903 	return svc_auth_register(RPC_AUTH_GSS, &svcauthops_gss);
1904 }
1905 
1906 void
1907 gss_svc_shutdown(void)
1908 {
1909 	svc_auth_unregister(RPC_AUTH_GSS);
1910 }
1911