blob: 152790ed309c6f2cb10df426afbf3f9f603025c1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090040#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/types.h>
42#include <linux/module.h>
43#include <linux/pagemap.h>
Eric W. Biedermanae2975b2011-11-14 15:56:38 -080044#include <linux/user_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46#include <linux/sunrpc/auth_gss.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#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>
Simo Sorce030d7942012-05-25 18:09:56 -040051#include "gss_rpc_upcall.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +040053
Jeff Laytonf895b252014-11-17 16:58:04 -050054#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055# 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
66static 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)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74struct 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;
Trond Myklebust6d1616b2018-10-01 10:41:48 -040079 struct rcu_head rcu_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080};
81
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +040082static struct rsi *rsi_update(struct cache_detail *cd, struct rsi *new, struct rsi *old);
83static struct rsi *rsi_lookup(struct cache_detail *cd, struct rsi *item);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85static 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
Trond Myklebust6d1616b2018-10-01 10:41:48 -040093static 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
NeilBrownbaab9352006-03-27 01:15:09 -0800101static void rsi_put(struct kref *ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102{
NeilBrownbaab9352006-03-27 01:15:09 -0800103 struct rsi *rsii = container_of(ref, struct rsi, h.ref);
Trond Myklebust6d1616b2018-10-01 10:41:48 -0400104
105 call_rcu(&rsii->rcu_head, rsi_free_rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106}
107
108static 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
NeilBrownd4d11ea2006-03-27 01:15:04 -0800114static int rsi_match(struct cache_head *a, struct cache_head *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
NeilBrownd4d11ea2006-03-27 01:15:04 -0800116 struct rsi *item = container_of(a, struct rsi, h);
117 struct rsi *tmp = container_of(b, struct rsi, h);
Joe Perchesf64f9e72009-11-29 16:55:45 -0800118 return netobj_equal(&item->in_handle, &tmp->in_handle) &&
119 netobj_equal(&item->in_token, &tmp->in_token);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
121
122static int dup_to_netobj(struct xdr_netobj *dst, char *src, int len)
123{
124 dst->len = len;
Arnaldo Carvalho de Meloe69062b2006-11-21 01:21:34 -0200125 dst->data = (len ? kmemdup(src, len, GFP_KERNEL) : NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 if (len && !dst->data)
127 return -ENOMEM;
128 return 0;
129}
130
131static 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
NeilBrownd4d11ea2006-03-27 01:15:04 -0800136static void rsi_init(struct cache_head *cnew, struct cache_head *citem)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
NeilBrownd4d11ea2006-03-27 01:15:04 -0800138 struct rsi *new = container_of(cnew, struct rsi, h);
139 struct rsi *item = container_of(citem, struct rsi, h);
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 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
NeilBrownd4d11ea2006-03-27 01:15:04 -0800155static void update_rsi(struct cache_head *cnew, struct cache_head *citem)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
NeilBrownd4d11ea2006-03-27 01:15:04 -0800157 struct rsi *new = container_of(cnew, struct rsi, h);
158 struct rsi *item = container_of(citem, struct rsi, h);
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 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
NeilBrownd4d11ea2006-03-27 01:15:04 -0800174static 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183static void rsi_request(struct cache_detail *cd,
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800184 struct cache_head *h,
185 char **bpp, int *blen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194static int rsi_parse(struct cache_detail *cd,
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800195 char *mesg, int mlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
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
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +0400223 rsip = rsi_lookup(cd, &rsii);
NeilBrownd4d11ea2006-03-27 01:15:04 -0800224 if (!rsip)
225 goto out;
226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 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);
J. Bruce Fieldsb39c18f2008-01-06 21:32:37 -0500236 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 if (len < 0)
251 goto out;
J. Bruce Fieldsb39c18f2008-01-06 21:32:37 -0500252 status = -ENOMEM;
253 if (dup_to_netobj(&rsii.out_handle, buf, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
J. Bruce Fieldsb39c18f2008-01-06 21:32:37 -0500256 /* 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 rsii.h.expiry_time = expiry;
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +0400265 rsip = rsi_update(cd, &rsii, rsip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 status = 0;
267out:
268 rsi_free(&rsii);
269 if (rsip)
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +0400270 cache_put(&rsip->h, cd);
NeilBrownd4d11ea2006-03-27 01:15:04 -0800271 else
272 status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 return status;
274}
275
Bhumika Goyalee24eac2017-10-17 18:14:26 +0200276static const struct cache_detail rsi_cache_template = {
Bruce Allanf35279d2005-09-06 15:17:08 -0700277 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 .hash_size = RSI_HASHMAX,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 .name = "auth.rpcsec.init",
280 .cache_put = rsi_put,
Stanislav Kinsbursky73fb8472013-02-04 14:02:45 +0300281 .cache_request = rsi_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 .cache_parse = rsi_parse,
NeilBrownd4d11ea2006-03-27 01:15:04 -0800283 .match = rsi_match,
284 .init = rsi_init,
285 .update = update_rsi,
286 .alloc = rsi_alloc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287};
288
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +0400289static struct rsi *rsi_lookup(struct cache_detail *cd, struct rsi *item)
NeilBrownd4d11ea2006-03-27 01:15:04 -0800290{
291 struct cache_head *ch;
292 int hash = rsi_hash(item);
293
Trond Myklebust6d1616b2018-10-01 10:41:48 -0400294 ch = sunrpc_cache_lookup_rcu(cd, &item->h, hash);
NeilBrownd4d11ea2006-03-27 01:15:04 -0800295 if (ch)
296 return container_of(ch, struct rsi, h);
297 else
298 return NULL;
299}
300
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +0400301static struct rsi *rsi_update(struct cache_detail *cd, struct rsi *new, struct rsi *old)
NeilBrownd4d11ea2006-03-27 01:15:04 -0800302{
303 struct cache_head *ch;
304 int hash = rsi_hash(new);
305
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +0400306 ch = sunrpc_cache_update(cd, &new->h,
NeilBrownd4d11ea2006-03-27 01:15:04 -0800307 &old->h, hash);
308 if (ch)
309 return container_of(ch, struct rsi, h);
310 else
311 return NULL;
312}
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
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)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
325#define GSS_SEQ_WIN 128
326
327struct 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
336struct 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;
Trond Myklebust6d1616b2018-10-01 10:41:48 -0400342 struct rcu_head rcu_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343};
344
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +0400345static struct rsc *rsc_update(struct cache_detail *cd, struct rsc *new, struct rsc *old);
346static struct rsc *rsc_lookup(struct cache_detail *cd, struct rsc *item);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
348static void rsc_free(struct rsc *rsci)
349{
350 kfree(rsci->handle.data);
351 if (rsci->mechctx)
352 gss_delete_sec_context(&rsci->mechctx);
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -0400353 free_svc_cred(&rsci->cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354}
355
Trond Myklebust6d1616b2018-10-01 10:41:48 -0400356static 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
NeilBrownbaab9352006-03-27 01:15:09 -0800364static void rsc_put(struct kref *ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365{
NeilBrownbaab9352006-03-27 01:15:09 -0800366 struct rsc *rsci = container_of(ref, struct rsc, h.ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Trond Myklebust6d1616b2018-10-01 10:41:48 -0400368 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372}
373
374static inline int
375rsc_hash(struct rsc *rsci)
376{
377 return hash_mem(rsci->handle.data, rsci->handle.len, RSC_HASHBITS);
378}
379
NeilBrown17f834b2006-03-27 01:15:05 -0800380static int
381rsc_match(struct cache_head *a, struct cache_head *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
NeilBrown17f834b2006-03-27 01:15:05 -0800383 struct rsc *new = container_of(a, struct rsc, h);
384 struct rsc *tmp = container_of(b, struct rsc, h);
385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 return netobj_equal(&new->handle, &tmp->handle);
387}
388
NeilBrown17f834b2006-03-27 01:15:05 -0800389static void
390rsc_init(struct cache_head *cnew, struct cache_head *ctmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391{
NeilBrown17f834b2006-03-27 01:15:05 -0800392 struct rsc *new = container_of(cnew, struct rsc, h);
393 struct rsc *tmp = container_of(ctmp, struct rsc, h);
394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 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;
J. Bruce Fields44234062013-05-14 16:53:40 -0400400 init_svc_cred(&new->cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401}
402
NeilBrown17f834b2006-03-27 01:15:05 -0800403static void
404update_rsc(struct cache_head *cnew, struct cache_head *ctmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405{
NeilBrown17f834b2006-03-27 01:15:05 -0800406 struct rsc *new = container_of(cnew, struct rsc, h);
407 struct rsc *tmp = container_of(ctmp, struct rsc, h);
408
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 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;
J. Bruce Fields44234062013-05-14 16:53:40 -0400414 init_svc_cred(&tmp->cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415}
416
NeilBrown17f834b2006-03-27 01:15:05 -0800417static struct cache_head *
418rsc_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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427static 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;
Eric W. Biederman683428fae2013-02-02 01:40:53 -0800432 int id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 int len, rv;
434 struct rsc rsci, *rscp = NULL;
435 time_t expiry;
436 int status = -EINVAL;
J. Bruce Fields1df0cad2006-06-30 01:56:16 -0700437 struct gss_api_mech *gm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
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
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +0400454 rscp = rsc_lookup(cd, &rsci);
NeilBrown17f834b2006-03-27 01:15:05 -0800455 if (!rscp)
456 goto out;
457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 /* uid, or NEGATIVE */
Eric W. Biederman683428fae2013-02-02 01:40:53 -0800459 rv = get_int(&mesg, &id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 if (rv == -EINVAL)
461 goto out;
462 if (rv == -ENOENT)
463 set_bit(CACHE_NEGATIVE, &rsci.h.flags);
464 else {
465 int N, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
J. Bruce Fields3c34ae12013-03-04 08:44:01 -0500467 /*
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 */
Eric W. Biederman683428fae2013-02-02 01:40:53 -0800475 /* uid */
476 rsci.cred.cr_uid = make_kuid(&init_user_ns, id);
Eric W. Biederman683428fae2013-02-02 01:40:53 -0800477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 /* gid */
Eric W. Biederman683428fae2013-02-02 01:40:53 -0800479 if (get_int(&mesg, &id))
480 goto out;
481 rsci.cred.cr_gid = make_kgid(&init_user_ns, id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
483 /* number of additional gid's */
484 if (get_int(&mesg, &N))
485 goto out;
Dan Carpenter76cb4be2015-02-24 18:34:01 +0300486 if (N < 0 || N > NGROUPS_MAX)
487 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 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++) {
Eric W. Biedermanae2975b2011-11-14 15:56:38 -0800496 kgid_t kgid;
Eric W. Biederman683428fae2013-02-02 01:40:53 -0800497 if (get_int(&mesg, &id))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 goto out;
Eric W. Biederman683428fae2013-02-02 01:40:53 -0800499 kgid = make_kgid(&init_user_ns, id);
Eric W. Biedermanae2975b2011-11-14 15:56:38 -0800500 if (!gid_valid(kgid))
501 goto out;
Alexey Dobriyan81243ea2016-10-07 17:03:12 -0700502 rsci.cred.cr_group_info->gid[i] = kgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 }
Thiago Rafael Beckerbdcf0a42017-12-14 15:33:12 -0800504 groups_sort(rsci.cred.cr_group_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
506 /* mech name */
507 len = qword_get(&mesg, buf, mlen);
508 if (len < 0)
509 goto out;
J. Bruce Fields0dc15312013-05-14 16:07:13 -0400510 gm = rsci.cred.cr_gss_mech = gss_mech_get_by_name(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 status = -EOPNOTSUPP;
512 if (!gm)
513 goto out;
514
515 status = -EINVAL;
516 /* mech-specific data: */
517 len = qword_get(&mesg, buf, mlen);
J. Bruce Fields1df0cad2006-06-30 01:56:16 -0700518 if (len < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 goto out;
Simo Sorce400f26b2012-05-25 18:09:53 -0400520 status = gss_import_sec_context(buf, len, gm, &rsci.mechctx,
521 NULL, GFP_KERNEL);
J. Bruce Fields1df0cad2006-06-30 01:56:16 -0700522 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 goto out;
Olga Kornievskaia68e76ad2008-12-23 16:17:15 -0500524
525 /* get client name */
526 len = qword_get(&mesg, buf, mlen);
527 if (len > 0) {
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -0400528 rsci.cred.cr_principal = kstrdup(buf, GFP_KERNEL);
Wei Yongjun1eb6d622013-04-18 10:49:09 +0800529 if (!rsci.cred.cr_principal) {
530 status = -ENOMEM;
Olga Kornievskaia68e76ad2008-12-23 16:17:15 -0500531 goto out;
Wei Yongjun1eb6d622013-04-18 10:49:09 +0800532 }
Olga Kornievskaia68e76ad2008-12-23 16:17:15 -0500533 }
534
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 }
536 rsci.h.expiry_time = expiry;
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +0400537 rscp = rsc_update(cd, &rsci, rscp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 status = 0;
539out:
540 rsc_free(&rsci);
541 if (rscp)
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +0400542 cache_put(&rscp->h, cd);
NeilBrown17f834b2006-03-27 01:15:05 -0800543 else
544 status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 return status;
546}
547
Bhumika Goyalee24eac2017-10-17 18:14:26 +0200548static const struct cache_detail rsc_cache_template = {
Bruce Allanf35279d2005-09-06 15:17:08 -0700549 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 .hash_size = RSC_HASHMAX,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 .name = "auth.rpcsec.context",
552 .cache_put = rsc_put,
553 .cache_parse = rsc_parse,
NeilBrown17f834b2006-03-27 01:15:05 -0800554 .match = rsc_match,
555 .init = rsc_init,
556 .update = update_rsc,
557 .alloc = rsc_alloc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558};
559
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +0400560static struct rsc *rsc_lookup(struct cache_detail *cd, struct rsc *item)
NeilBrown17f834b2006-03-27 01:15:05 -0800561{
562 struct cache_head *ch;
563 int hash = rsc_hash(item);
564
Trond Myklebust6d1616b2018-10-01 10:41:48 -0400565 ch = sunrpc_cache_lookup_rcu(cd, &item->h, hash);
NeilBrown17f834b2006-03-27 01:15:05 -0800566 if (ch)
567 return container_of(ch, struct rsc, h);
568 else
569 return NULL;
570}
571
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +0400572static struct rsc *rsc_update(struct cache_detail *cd, struct rsc *new, struct rsc *old)
NeilBrown17f834b2006-03-27 01:15:05 -0800573{
574 struct cache_head *ch;
575 int hash = rsc_hash(new);
576
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +0400577 ch = sunrpc_cache_update(cd, &new->h,
NeilBrown17f834b2006-03-27 01:15:05 -0800578 &old->h, hash);
579 if (ch)
580 return container_of(ch, struct rsc, h);
581 else
582 return NULL;
583}
584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
586static struct rsc *
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +0400587gss_svc_searchbyctx(struct cache_detail *cd, struct xdr_netobj *handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588{
589 struct rsc rsci;
590 struct rsc *found;
591
592 memset(&rsci, 0, sizeof(rsci));
Chuck Leverbf2c4b62016-09-01 10:50:38 -0400593 if (dup_to_netobj(&rsci.handle, handle->data, handle->len))
594 return NULL;
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +0400595 found = rsc_lookup(cd, &rsci);
Chuck Leverbf2c4b62016-09-01 10:50:38 -0400596 rsc_free(&rsci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 if (!found)
598 return NULL;
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +0400599 if (cache_check(cd, &found->h, NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 return NULL;
601 return found;
602}
603
604/* Implements sequence number algorithm as specified in RFC 2203. */
605static int
606gss_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;
627ok:
628 spin_unlock(&sd->sd_lock);
629 return 1;
630drop:
631 spin_unlock(&sd->sd_lock);
632 return 0;
633}
634
635static inline u32 round_up_to_quad(u32 i)
636{
637 return (i + 3 ) & ~3;
638}
639
640static inline int
641svc_safe_getnetobj(struct kvec *argv, struct xdr_netobj *o)
642{
643 int l;
644
645 if (argv->iov_len < 4)
646 return -1;
Alexey Dobriyan76994312006-09-26 22:28:46 -0700647 o->len = svc_getnl(argv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 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
657static inline int
658svc_safe_putnetobj(struct kvec *resv, struct xdr_netobj *o)
659{
Al Viro753ed902006-09-26 22:30:23 -0700660 u8 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
662 if (resv->iov_len + 4 > PAGE_SIZE)
663 return -1;
Alexey Dobriyan76994312006-09-26 22:28:46 -0700664 svc_putnl(resv, o->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 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);
Al Viro753ed902006-09-26 22:30:23 -0700670 memset(p + o->len, 0, round_up_to_quad(o->len) - o->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 return 0;
672}
673
J. Bruce Fields21fcd022007-08-09 20:16:22 -0400674/*
675 * Verify the checksum on the header and return SVC_OK on success.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 * Otherwise, return SVC_DROP (in the case of a bad sequence number)
677 * or return SVC_DENIED and indicate error in authp.
678 */
679static int
680gss_verify_header(struct svc_rqst *rqstp, struct rsc *rsci,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700681 __be32 *rpcstart, struct rpc_gss_wire_cred *gc, __be32 *authp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
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;
Alexey Dobriyan76994312006-09-26 22:28:46 -0700698 flavor = svc_getnl(argv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 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;
J. Bruce Fields00fd6e12005-10-13 16:55:18 -0400706 if (gss_verify_mic(ctx_id, &rpchdr, &checksum) != GSS_S_COMPLETE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 *authp = rpcsec_gsserr_credproblem;
708 return SVC_DENIED;
709 }
710
711 if (gc->gc_seq > MAXSEQ) {
Chuck Lever8885cb32007-01-31 12:14:05 -0500712 dprintk("RPC: svcauth_gss: discarding request with "
713 "large sequence number %d\n", gc->gc_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 *authp = rpcsec_gsserr_ctxproblem;
715 return SVC_DENIED;
716 }
717 if (!gss_check_seq_num(rsci, gc->gc_seq)) {
Chuck Lever8885cb32007-01-31 12:14:05 -0500718 dprintk("RPC: svcauth_gss: discarding request with "
719 "old sequence number %d\n", gc->gc_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 return SVC_DROP;
721 }
722 return SVC_OK;
723}
724
725static int
Andy Adamson822f1002006-01-18 17:43:24 -0800726gss_write_null_verf(struct svc_rqst *rqstp)
727{
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700728 __be32 *p;
Andy Adamson822f1002006-01-18 17:43:24 -0800729
Alexey Dobriyan76994312006-09-26 22:28:46 -0700730 svc_putnl(rqstp->rq_res.head, RPC_AUTH_NULL);
Andy Adamson822f1002006-01-18 17:43:24 -0800731 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
739static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740gss_write_verf(struct svc_rqst *rqstp, struct gss_ctx *ctx_id, u32 seq)
741{
J. Bruce Fields2876a342016-10-18 16:30:09 -0400742 __be32 *xdr_seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 u32 maj_stat;
744 struct xdr_buf verf_data;
745 struct xdr_netobj mic;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700746 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 struct kvec iov;
J. Bruce Fields2876a342016-10-18 16:30:09 -0400748 int err = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Alexey Dobriyan76994312006-09-26 22:28:46 -0700750 svc_putnl(rqstp->rq_res.head, RPC_AUTH_GSS);
J. Bruce Fields2876a342016-10-18 16:30:09 -0400751 xdr_seq = kmalloc(4, GFP_KERNEL);
752 if (!xdr_seq)
753 return -1;
754 *xdr_seq = htonl(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
J. Bruce Fields2876a342016-10-18 16:30:09 -0400756 iov.iov_base = xdr_seq;
757 iov.iov_len = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 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);
J. Bruce Fields00fd6e12005-10-13 16:55:18 -0400761 maj_stat = gss_get_mic(ctx_id, &verf_data, &mic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 if (maj_stat != GSS_S_COMPLETE)
J. Bruce Fields2876a342016-10-18 16:30:09 -0400763 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 *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))
J. Bruce Fields2876a342016-10-18 16:30:09 -0400768 goto out;
769 err = 0;
770out:
771 kfree(xdr_seq);
772 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773}
774
775struct gss_domain {
776 struct auth_domain h;
777 u32 pseudoflavor;
778};
779
780static struct auth_domain *
781find_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
NeilBrownefc36aa2006-03-27 01:14:59 -0800791static struct auth_ops svcauthops_gss;
792
J. Bruce Fields4796f452007-07-17 04:04:51 -0700793u32 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
Trond Myklebust7bd88262008-12-23 15:21:32 -0500800EXPORT_SYMBOL_GPL(svcauth_gss_flavor);
J. Bruce Fields4796f452007-07-17 04:04:51 -0700801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802int
803svcauth_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;
NeilBrownefc36aa2006-03-27 01:14:59 -0800812 kref_init(&new->h.ref);
Arnaldo Carvalho de Meloe69062b2006-11-21 01:21:34 -0200813 new->h.name = kstrdup(name, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 if (!new->h.name)
815 goto out_free_dom;
NeilBrownefc36aa2006-03-27 01:14:59 -0800816 new->h.flavour = &svcauthops_gss;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 new->pseudoflavor = pseudoflavor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
J. Bruce Fieldscb276802007-07-23 18:43:52 -0700819 stat = 0;
NeilBrownefc36aa2006-03-27 01:14:59 -0800820 test = auth_domain_lookup(name, &new->h);
J. Bruce Fieldscb276802007-07-23 18:43:52 -0700821 if (test != &new->h) { /* Duplicate registration */
822 auth_domain_put(test);
823 kfree(new->h.name);
824 goto out_free_dom;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 }
826 return 0;
827
828out_free_dom:
829 kfree(new);
830out:
831 return stat;
832}
833
Trond Myklebust7bd88262008-12-23 15:21:32 -0500834EXPORT_SYMBOL_GPL(svcauth_gss_register_pseudoflavor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
836static inline int
837read_u32_from_xdr_buf(struct xdr_buf *buf, int base, u32 *obj)
838{
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700839 __be32 raw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 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. */
854static int
Jeff Layton4c190e22013-02-06 08:28:55 -0500855unwrap_integ_data(struct svc_rqst *rqstp, struct xdr_buf *buf, u32 seq, struct gss_ctx *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856{
857 int stat = -EINVAL;
858 u32 integ_len, maj_stat;
859 struct xdr_netobj mic;
860 struct xdr_buf integ_buf;
861
Chuck Lever06eb8a52017-06-19 14:00:40 -0400862 /* 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
Jeff Layton4c190e22013-02-06 08:28:55 -0500870 /* Did we already verify the signature on the original pass through? */
871 if (rqstp->rq_deferred)
872 return 0;
873
Alexey Dobriyan76994312006-09-26 22:28:46 -0700874 integ_len = svc_getnl(&buf->head[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 if (integ_len & 3)
J.Bruce Fieldsb797b5b2006-12-13 00:35:19 -0800876 return stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 if (integ_len > buf->len)
J.Bruce Fieldsb797b5b2006-12-13 00:35:19 -0800878 return stat;
J. Bruce Fields1754eb22017-10-24 14:58:11 -0400879 if (xdr_buf_subsegment(buf, &integ_buf, 0, integ_len)) {
880 WARN_ON_ONCE(1);
881 return stat;
882 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 /* copy out mic... */
884 if (read_u32_from_xdr_buf(buf, integ_len, &mic.len))
J. Bruce Fields1754eb22017-10-24 14:58:11 -0400885 return stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 if (mic.len > RPC_MAX_AUTH_SIZE)
J.Bruce Fieldsb797b5b2006-12-13 00:35:19 -0800887 return stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 mic.data = kmalloc(mic.len, GFP_KERNEL);
889 if (!mic.data)
J.Bruce Fieldsb797b5b2006-12-13 00:35:19 -0800890 return stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 if (read_bytes_from_xdr_buf(buf, integ_len + 4, mic.data, mic.len))
892 goto out;
J. Bruce Fields00fd6e12005-10-13 16:55:18 -0400893 maj_stat = gss_verify_mic(ctx, &integ_buf, &mic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 if (maj_stat != GSS_S_COMPLETE)
895 goto out;
Alexey Dobriyan76994312006-09-26 22:28:46 -0700896 if (svc_getnl(&buf->head[0]) != seq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 goto out;
Tomáš Trnkac0cb8bf2016-05-20 16:41:10 +0200898 /* trim off the mic and padding at the end before returning */
899 xdr_buf_trim(buf, round_up_to_quad(mic.len) + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 stat = 0;
901out:
J.Bruce Fieldsb797b5b2006-12-13 00:35:19 -0800902 kfree(mic.data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 return stat;
904}
905
J. Bruce Fields7c9fdcf2006-06-30 01:56:19 -0700906static inline int
907total_buf_len(struct xdr_buf *buf)
908{
909 return buf->head[0].iov_len + buf->page_len + buf->tail[0].iov_len;
910}
911
912static void
913fix_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
923static int
924unwrap_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
Jeff Layton779fb0f2014-11-19 07:51:18 -0500929 clear_bit(RQ_SPLICE_OK, &rqstp->rq_flags);
J. Bruce Fields7c9fdcf2006-06-30 01:56:19 -0700930
Alexey Dobriyan76994312006-09-26 22:28:46 -0700931 priv_len = svc_getnl(&buf->head[0]);
J. Bruce Fields7c9fdcf2006-06-30 01:56:19 -0700932 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;
968out_seq:
Alexey Dobriyan76994312006-09-26 22:28:46 -0700969 if (svc_getnl(&buf->head[0]) != seq)
J. Bruce Fields7c9fdcf2006-06-30 01:56:19 -0700970 return -EINVAL;
971 return 0;
972}
973
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974struct gss_svc_data {
975 /* decoded gss client cred: */
976 struct rpc_gss_wire_cred clcred;
J.Bruce Fields5b304bc2006-10-04 02:16:07 -0700977 /* save a pointer to the beginning of the encoded verifier,
978 * for use in encryption/checksumming in svcauth_gss_release: */
979 __be32 *verf_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 struct rsc *rsci;
981};
982
983static int
984svcauth_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;
J. Bruce Fields3ab4d8b2007-07-17 04:04:46 -0700989 int stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
J. Bruce Fields3ab4d8b2007-07-17 04:04:46 -0700991 /*
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)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 return SVC_DENIED;
J. Bruce Fields3ab4d8b2007-07-17 04:04:46 -07001003 stat = svcauth_unix_set_client(rqstp);
NeilBrown1ebede82010-08-12 17:04:07 +10001004 if (stat == SVC_DROP || stat == SVC_CLOSE)
J. Bruce Fields3ab4d8b2007-07-17 04:04:46 -07001005 return stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 return SVC_OK;
1007}
1008
Kevin Coffman91a47622006-01-18 17:43:25 -08001009static inline int
Simo Sorcefc2952a2012-04-17 09:39:06 -04001010gss_write_init_verf(struct cache_detail *cd, struct svc_rqst *rqstp,
1011 struct xdr_netobj *out_handle, int *major_status)
Kevin Coffman91a47622006-01-18 17:43:25 -08001012{
1013 struct rsc *rsci;
Frank Filz54f92472007-05-09 02:34:53 -07001014 int rc;
Kevin Coffman91a47622006-01-18 17:43:25 -08001015
Simo Sorcefc2952a2012-04-17 09:39:06 -04001016 if (*major_status != GSS_S_COMPLETE)
Kevin Coffman91a47622006-01-18 17:43:25 -08001017 return gss_write_null_verf(rqstp);
Simo Sorcefc2952a2012-04-17 09:39:06 -04001018 rsci = gss_svc_searchbyctx(cd, out_handle);
Kevin Coffman91a47622006-01-18 17:43:25 -08001019 if (rsci == NULL) {
Simo Sorcefc2952a2012-04-17 09:39:06 -04001020 *major_status = GSS_S_NO_CONTEXT;
Kevin Coffman91a47622006-01-18 17:43:25 -08001021 return gss_write_null_verf(rqstp);
1022 }
Frank Filz54f92472007-05-09 02:34:53 -07001023 rc = gss_write_verf(rqstp, rsci->mechctx, GSS_SEQ_WIN);
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +04001024 cache_put(&rsci->h, cd);
Frank Filz54f92472007-05-09 02:34:53 -07001025 return rc;
Kevin Coffman91a47622006-01-18 17:43:25 -08001026}
1027
Simo Sorcefc2952a2012-04-17 09:39:06 -04001028static inline int
Simo Sorce030d7942012-05-25 18:09:56 -04001029gss_read_common_verf(struct rpc_gss_wire_cred *gc,
1030 struct kvec *argv, __be32 *authp,
1031 struct xdr_netobj *in_handle)
Simo Sorcefc2952a2012-04-17 09:39:06 -04001032{
Simo Sorcefc2952a2012-04-17 09:39:06 -04001033 /* 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;
Simo Sorce030d7942012-05-25 18:09:56 -04001048
1049 return 0;
1050}
1051
1052static inline int
1053gss_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
Simo Sorcefc2952a2012-04-17 09:39:06 -04001065 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
Simo Sorce030d7942012-05-25 18:09:56 -04001077/* 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 */
1086static inline int
1087gss_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
Simo Sorcefc2952a2012-04-17 09:39:06 -04001111static inline int
1112gss_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
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131/*
J. Bruce Fields21fcd022007-08-09 20:16:22 -04001132 * 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 */
Simo Sorce030d7942012-05-25 18:09:56 -04001138static int svcauth_gss_legacy_init(struct svc_rqst *rqstp,
J. Bruce Fields21fcd022007-08-09 20:16:22 -04001139 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];
J. Bruce Fields21fcd022007-08-09 20:16:22 -04001143 struct rsi *rsip, rsikey;
J. Bruce Fields980e5a42007-12-12 18:21:17 -05001144 int ret;
Vasily Averinb8be5672018-12-24 14:44:42 +03001145 struct sunrpc_net *sn = net_generic(SVC_NET(rqstp), sunrpc_net_id);
J. Bruce Fields21fcd022007-08-09 20:16:22 -04001146
J. Bruce Fields21fcd022007-08-09 20:16:22 -04001147 memset(&rsikey, 0, sizeof(rsikey));
Simo Sorcefc2952a2012-04-17 09:39:06 -04001148 ret = gss_read_verf(gc, argv, authp,
1149 &rsikey.in_handle, &rsikey.in_token);
1150 if (ret)
1151 return ret;
J. Bruce Fields21fcd022007-08-09 20:16:22 -04001152
1153 /* Perform upcall, or find upcall result: */
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +04001154 rsip = rsi_lookup(sn->rsi_cache, &rsikey);
J. Bruce Fields21fcd022007-08-09 20:16:22 -04001155 rsi_free(&rsikey);
1156 if (!rsip)
NeilBrown1ebede82010-08-12 17:04:07 +10001157 return SVC_CLOSE;
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +04001158 if (cache_check(sn->rsi_cache, &rsip->h, &rqstp->rq_chandle) < 0)
J. Bruce Fields21fcd022007-08-09 20:16:22 -04001159 /* No upcall result: */
NeilBrown1ebede82010-08-12 17:04:07 +10001160 return SVC_CLOSE;
NeilBrown2ed52822010-08-12 17:04:07 +10001161
1162 ret = SVC_CLOSE;
1163 /* Got an answer to the upcall; use it: */
Simo Sorcefc2952a2012-04-17 09:39:06 -04001164 if (gss_write_init_verf(sn->rsc_cache, rqstp,
1165 &rsip->out_handle, &rsip->major_status))
NeilBrown2ed52822010-08-12 17:04:07 +10001166 goto out;
Simo Sorcefc2952a2012-04-17 09:39:06 -04001167 if (gss_write_resv(resv, PAGE_SIZE,
1168 &rsip->out_handle, &rsip->out_token,
1169 rsip->major_status, rsip->minor_status))
NeilBrown2ed52822010-08-12 17:04:07 +10001170 goto out;
1171
J. Bruce Fields980e5a42007-12-12 18:21:17 -05001172 ret = SVC_COMPLETE;
1173out:
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +04001174 cache_put(&rsip->h, sn->rsi_cache);
J. Bruce Fields980e5a42007-12-12 18:21:17 -05001175 return ret;
J. Bruce Fields21fcd022007-08-09 20:16:22 -04001176}
1177
Simo Sorce030d7942012-05-25 18:09:56 -04001178static 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 */
J. Bruce Fields3be34552013-10-08 15:53:07 -04001210 dprintk("RPC: No creds found!\n");
1211 goto out;
Simo Sorce030d7942012-05-25 18:09:56 -04001212 } 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;
J. Bruce Fields7193bd12013-07-31 17:51:42 -04001223 rsci.cred.cr_gss_mech = gm;
Simo Sorce030d7942012-05-25 18:09:56 -04001224
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;
1238out:
Simo Sorce030d7942012-05-25 18:09:56 -04001239 rsc_free(&rsci);
1240 if (rscp)
1241 cache_put(&rscp->h, cd);
1242 else
1243 status = -ENOMEM;
1244 return status;
1245}
1246
1247static 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;
Vasily Averinb8be5672018-12-24 14:44:42 +03001256 struct net *net = SVC_NET(rqstp);
Simo Sorce030d7942012-05-25 18:09:56 -04001257 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
Scott Mayhew04d70ed2016-06-15 09:40:31 -04001272 dprintk("RPC: svcauth_gss: gss major status = %d "
1273 "minor status = %d\n",
1274 ud.major_status, ud.minor_status);
Simo Sorce030d7942012-05-25 18:09:56 -04001275
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;
1302out:
1303 gssp_free_upcall_data(&ud);
1304 return ret;
1305}
1306
Jeff Layton0fdc2672014-01-04 07:18:05 -05001307/*
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 */
1312static 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}
Simo Sorce030d7942012-05-25 18:09:56 -04001323
1324static bool use_gss_proxy(struct net *net)
1325{
1326 struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
1327
Jeff Layton0fdc2672014-01-04 07:18:05 -05001328 /* 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;
Simo Sorce030d7942012-05-25 18:09:56 -04001332}
1333
J. Bruce Fields0ff3bab2013-04-29 17:03:31 -04001334#ifdef CONFIG_PROC_FS
1335
Simo Sorce030d7942012-05-25 18:09:56 -04001336static ssize_t write_gssp(struct file *file, const char __user *buf,
1337 size_t count, loff_t *ppos)
1338{
Al Viroe77e4302013-06-16 17:25:12 +04001339 struct net *net = PDE_DATA(file_inode(file));
Simo Sorce030d7942012-05-25 18:09:56 -04001340 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;
Jeff Laytona92e5eb2014-01-04 07:18:04 -05001355 res = set_gssp_clnt(net);
Simo Sorce030d7942012-05-25 18:09:56 -04001356 if (res)
1357 return res;
Jeff Laytona92e5eb2014-01-04 07:18:04 -05001358 res = set_gss_proxy(net, 1);
Simo Sorce030d7942012-05-25 18:09:56 -04001359 if (res)
1360 return res;
1361 return count;
1362}
1363
1364static ssize_t read_gssp(struct file *file, char __user *buf,
1365 size_t count, loff_t *ppos)
1366{
Al Viroe77e4302013-06-16 17:25:12 +04001367 struct net *net = PDE_DATA(file_inode(file));
Jeff Layton1654a042014-01-04 07:18:03 -05001368 struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
Simo Sorce030d7942012-05-25 18:09:56 -04001369 unsigned long p = *ppos;
1370 char tbuf[10];
1371 size_t len;
Simo Sorce030d7942012-05-25 18:09:56 -04001372
Jeff Layton1654a042014-01-04 07:18:03 -05001373 snprintf(tbuf, sizeof(tbuf), "%d\n", sn->use_gss_proxy);
Simo Sorce030d7942012-05-25 18:09:56 -04001374 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
1386static const struct file_operations use_gss_proxy_ops = {
1387 .open = nonseekable_open,
1388 .write = write_gssp,
1389 .read = read_gssp,
1390};
1391
1392static 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;
Joe Perchesd6444062018-03-23 15:54:38 -07001398 *p = proc_create_data("use-gss-proxy", S_IFREG | 0600,
Simo Sorce030d7942012-05-25 18:09:56 -04001399 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
1407static 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) {
Stephen Hemminger8fdee4c2018-07-24 12:29:15 -07001412 remove_proc_entry("use-gss-proxy", sn->proc_net_rpc);
Simo Sorce030d7942012-05-25 18:09:56 -04001413 clear_gssp_clnt(sn);
1414 }
1415}
J. Bruce Fields0ff3bab2013-04-29 17:03:31 -04001416#else /* CONFIG_PROC_FS */
1417
1418static int create_use_gss_proxy_proc_entry(struct net *net)
1419{
1420 return 0;
1421}
1422
1423static void destroy_use_gss_proxy_proc_entry(struct net *net) {}
Simo Sorce030d7942012-05-25 18:09:56 -04001424
1425#endif /* CONFIG_PROC_FS */
1426
J. Bruce Fields21fcd022007-08-09 20:16:22 -04001427/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 * 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 */
1435static int
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001436svcauth_gss_accept(struct svc_rqst *rqstp, __be32 *authp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437{
1438 struct kvec *argv = &rqstp->rq_arg.head[0];
1439 struct kvec *resv = &rqstp->rq_res.head[0];
1440 u32 crlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 struct gss_svc_data *svcdata = rqstp->rq_auth_data;
1442 struct rpc_gss_wire_cred *gc;
1443 struct rsc *rsci = NULL;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001444 __be32 *rpcstart;
1445 __be32 *reject_stat = resv->iov_base + resv->iov_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 int ret;
Vasily Averinb8be5672018-12-24 14:44:42 +03001447 struct sunrpc_net *sn = net_generic(SVC_NET(rqstp), sunrpc_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
Chuck Lever8885cb32007-01-31 12:14:05 -05001449 dprintk("RPC: svcauth_gss: argv->iov_len = %zd\n",
1450 argv->iov_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
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;
J.Bruce Fields5b304bc2006-10-04 02:16:07 -07001458 svcdata->verf_start = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 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
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001470 * at least 5 u32s, and is preceded by length, so that makes 6.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 */
1472
1473 if (argv->iov_len < 5 * 4)
1474 goto auth_err;
Alexey Dobriyan76994312006-09-26 22:28:46 -07001475 crlen = svc_getnl(argv);
1476 if (svc_getnl(argv) != RPC_GSS_VERSION)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 goto auth_err;
Alexey Dobriyan76994312006-09-26 22:28:46 -07001478 gc->gc_proc = svc_getnl(argv);
1479 gc->gc_seq = svc_getnl(argv);
1480 gc->gc_svc = svc_getnl(argv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 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
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 *authp = rpc_autherr_badverf;
1490 switch (gc->gc_proc) {
1491 case RPC_GSS_PROC_INIT:
1492 case RPC_GSS_PROC_CONTINUE_INIT:
Simo Sorce030d7942012-05-25 18:09:56 -04001493 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 case RPC_GSS_PROC_DATA:
1498 case RPC_GSS_PROC_DESTROY:
J. Bruce Fields21fcd022007-08-09 20:16:22 -04001499 /* Look up the context, and check the verifier: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 *authp = rpcsec_gsserr_credproblem;
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +04001501 rsci = gss_svc_searchbyctx(sn->rsc_cache, &gc->gc_ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 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) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 case RPC_GSS_PROC_DESTROY:
Wei Yongjunc5e434c982007-05-09 02:34:54 -07001521 if (gss_write_verf(rqstp, rsci->mechctx, gc->gc_seq))
1522 goto auth_err;
Neil Brown2b477c02016-12-22 12:38:06 -05001523 /* Delete the entry from the cache_list and call cache_put */
1524 sunrpc_cache_unhash(sn->rsc_cache, &rsci->h);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 if (resv->iov_len + 4 > PAGE_SIZE)
1526 goto drop;
Alexey Dobriyan76994312006-09-26 22:28:46 -07001527 svc_putnl(resv, RPC_SUCCESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 goto complete;
1529 case RPC_GSS_PROC_DATA:
1530 *authp = rpcsec_gsserr_ctxproblem;
J.Bruce Fields5b304bc2006-10-04 02:16:07 -07001531 svcdata->verf_start = resv->iov_base + resv->iov_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 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:
J. Bruce Fieldsb6207542008-07-03 15:26:35 -04001541 /* placeholders for length and seq. number: */
1542 svc_putnl(resv, 0);
1543 svc_putnl(resv, 0);
Jeff Layton4c190e22013-02-06 08:28:55 -05001544 if (unwrap_integ_data(rqstp, &rqstp->rq_arg,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 gc->gc_seq, rsci->mechctx))
Harshula Jayasuriyadd352102008-02-20 10:56:56 +11001546 goto garbage_args;
J. Bruce Fieldsa5cddc82014-05-12 18:10:58 -04001547 rqstp->rq_auth_slack = RPC_MAX_AUTH_SIZE;
J. Bruce Fieldsb6207542008-07-03 15:26:35 -04001548 break;
1549 case RPC_GSS_SVC_PRIVACY:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 /* placeholders for length and seq. number: */
Alexey Dobriyan76994312006-09-26 22:28:46 -07001551 svc_putnl(resv, 0);
1552 svc_putnl(resv, 0);
J. Bruce Fields7c9fdcf2006-06-30 01:56:19 -07001553 if (unwrap_priv_data(rqstp, &rqstp->rq_arg,
1554 gc->gc_seq, rsci->mechctx))
Harshula Jayasuriyadd352102008-02-20 10:56:56 +11001555 goto garbage_args;
J. Bruce Fieldsa5cddc82014-05-12 18:10:58 -04001556 rqstp->rq_auth_slack = RPC_MAX_AUTH_SIZE * 2;
J. Bruce Fields7c9fdcf2006-06-30 01:56:19 -07001557 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 default:
1559 goto auth_err;
1560 }
1561 svcdata->rsci = rsci;
1562 cache_get(&rsci->h);
J. Bruce Fieldsd5497fc2012-05-14 22:06:49 -04001563 rqstp->rq_cred.cr_flavor = gss_svc_to_pseudoflavor(
Chuck Lever83523d02013-03-16 15:55:01 -04001564 rsci->mechctx->mech_type,
1565 GSS_C_QOP_DEFAULT,
1566 gc->gc_svc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 ret = SVC_OK;
1568 goto out;
1569 }
Harshula Jayasuriyadd352102008-02-20 10:56:56 +11001570garbage_args:
Harshula Jayasuriyadd352102008-02-20 10:56:56 +11001571 ret = SVC_GARBAGE;
1572 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573auth_err:
J. Bruce Fields21fcd022007-08-09 20:16:22 -04001574 /* Restore write pointer to its original value: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 xdr_ressize_check(rqstp, reject_stat);
1576 ret = SVC_DENIED;
1577 goto out;
1578complete:
1579 ret = SVC_COMPLETE;
1580 goto out;
1581drop:
Chuck Lever4d712ef2016-11-29 11:04:34 -05001582 ret = SVC_CLOSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583out:
1584 if (rsci)
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +04001585 cache_put(&rsci->h, sn->rsc_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 return ret;
1587}
1588
Al Virocfbdbab2006-10-10 22:49:27 +01001589static __be32 *
J.Bruce Fields3c15a482006-10-04 02:16:06 -07001590svcauth_gss_prepare_to_wrap(struct xdr_buf *resbuf, struct gss_svc_data *gsd)
1591{
Al Virocfbdbab2006-10-10 22:49:27 +01001592 __be32 *p;
1593 u32 verf_len;
J.Bruce Fields3c15a482006-10-04 02:16:06 -07001594
J.Bruce Fields5b304bc2006-10-04 02:16:07 -07001595 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);
J.Bruce Fields3c15a482006-10-04 02:16:06 -07001605 /* move accept_stat to right place: */
1606 memcpy(p, p + 2, 4);
J.Bruce Fields5b304bc2006-10-04 02:16:07 -07001607 /* Also don't wrap if the accept stat is nonzero: */
J.Bruce Fields3c15a482006-10-04 02:16:06 -07001608 if (*p != rpc_success) {
1609 resbuf->head[0].iov_len -= 2 * 4;
1610 return NULL;
1611 }
1612 p++;
1613 return p;
1614}
1615
J. Bruce Fieldse142ede2006-06-30 01:56:18 -07001616static inline int
1617svcauth_gss_wrap_resp_integ(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618{
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;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001625 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 int integ_offset, integ_len;
1627 int stat = -EINVAL;
1628
J.Bruce Fields3c15a482006-10-04 02:16:06 -07001629 p = svcauth_gss_prepare_to_wrap(resbuf, gsd);
1630 if (p == NULL)
J. Bruce Fieldse142ede2006-06-30 01:56:18 -07001631 goto out;
J. Bruce Fieldse142ede2006-06-30 01:56:18 -07001632 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);
J. Bruce Fields1754eb22017-10-24 14:58:11 -04001637 if (xdr_buf_subsegment(resbuf, &integ_buf, integ_offset, integ_len)) {
1638 WARN_ON_ONCE(1);
1639 goto out_err;
1640 }
NeilBrown153e44d2007-05-09 02:34:52 -07001641 if (resbuf->tail[0].iov_base == NULL) {
J. Bruce Fieldse142ede2006-06-30 01:56:18 -07001642 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;
J. Bruce Fieldse142ede2006-06-30 01:56:18 -07001647 }
J. Bruce Fieldsbba0f882013-01-18 11:33:08 -05001648 resv = &resbuf->tail[0];
J. Bruce Fieldse142ede2006-06-30 01:56:18 -07001649 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;
Alexey Dobriyan76994312006-09-26 22:28:46 -07001652 svc_putnl(resv, mic.len);
J. Bruce Fieldse142ede2006-06-30 01:56:18 -07001653 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);
1659out:
1660 stat = 0;
1661out_err:
1662 return stat;
1663}
1664
J. Bruce Fields7c9fdcf2006-06-30 01:56:19 -07001665static inline int
1666svcauth_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;
Al Viro753ed902006-09-26 22:30:23 -07001672 __be32 *p, *len;
1673 int offset;
J. Bruce Fields7c9fdcf2006-06-30 01:56:19 -07001674 int pad;
1675
J.Bruce Fields3c15a482006-10-04 02:16:06 -07001676 p = svcauth_gss_prepare_to_wrap(resbuf, gsd);
1677 if (p == NULL)
J. Bruce Fields7c9fdcf2006-06-30 01:56:19 -07001678 return 0;
J. Bruce Fields7c9fdcf2006-06-30 01:56:19 -07001679 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: */
Kevin Coffman75610422010-03-17 13:02:47 -04001685
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 */
NeilBrown44524352006-10-04 02:15:46 -07001693 if (resbuf->tail[0].iov_base) {
J. Bruce Fields7c9fdcf2006-06-30 01:56:19 -07001694 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 }
Kevin Coffman75610422010-03-17 13:02:47 -04001705 /*
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 */
J. Bruce Fields7c9fdcf2006-06-30 01:56:19 -07001712 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;
J. Bruce Fields7c9fdcf2006-06-30 01:56:19 -07001718 }
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);
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001723 p = (__be32 *)(resbuf->tail[0].iov_base + resbuf->tail[0].iov_len);
J. Bruce Fields7c9fdcf2006-06-30 01:56:19 -07001724 memset(p, 0, pad);
1725 resbuf->tail[0].iov_len += pad;
1726 resbuf->len += pad;
1727 return 0;
1728}
1729
J. Bruce Fieldse142ede2006-06-30 01:56:18 -07001730static int
1731svcauth_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;
Vasily Averinb8be5672018-12-24 14:44:42 +03001737 struct sunrpc_net *sn = net_generic(SVC_NET(rqstp), sunrpc_net_id);
J. Bruce Fieldse142ede2006-06-30 01:56:18 -07001738
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 if (gc->gc_proc != RPC_GSS_PROC_DATA)
1740 goto out;
1741 /* Release can be called twice, but we only wrap once. */
J.Bruce Fields5b304bc2006-10-04 02:16:07 -07001742 if (gsd->verf_start == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 goto out;
1744 /* normally not set till svc_send, but we need it here: */
J. Bruce Fields7c9fdcf2006-06-30 01:56:19 -07001745 /* XXX: what for? Do we mess it up the moment we call svc_putu32
1746 * or whatever? */
1747 resbuf->len = total_buf_len(resbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 switch (gc->gc_svc) {
1749 case RPC_GSS_SVC_NONE:
1750 break;
1751 case RPC_GSS_SVC_INTEGRITY:
J. Bruce Fields7c9fdcf2006-06-30 01:56:19 -07001752 stat = svcauth_gss_wrap_resp_integ(rqstp);
1753 if (stat)
1754 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 break;
1756 case RPC_GSS_SVC_PRIVACY:
J. Bruce Fields7c9fdcf2006-06-30 01:56:19 -07001757 stat = svcauth_gss_wrap_resp_priv(rqstp);
1758 if (stat)
1759 goto out_err;
1760 break;
Wei Yongjuneac817362009-08-04 17:27:52 +08001761 /*
1762 * For any other gc_svc value, svcauth_gss_accept() already set
1763 * the auth_error appropriately; just fall through:
1764 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 }
1766
1767out:
1768 stat = 0;
1769out_err:
1770 if (rqstp->rq_client)
1771 auth_domain_put(rqstp->rq_client);
1772 rqstp->rq_client = NULL;
J. Bruce Fields3ab4d8b2007-07-17 04:04:46 -07001773 if (rqstp->rq_gssclient)
1774 auth_domain_put(rqstp->rq_gssclient);
1775 rqstp->rq_gssclient = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 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)
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +04001780 cache_put(&gsd->rsci->h, sn->rsc_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 gsd->rsci = NULL;
1782
1783 return stat;
1784}
1785
1786static void
Trond Myklebust608a0ab2018-10-01 10:41:44 -04001787svcauth_gss_domain_release_rcu(struct rcu_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788{
Trond Myklebust608a0ab2018-10-01 10:41:44 -04001789 struct auth_domain *dom = container_of(head, struct auth_domain, rcu_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 struct gss_domain *gd = container_of(dom, struct gss_domain, h);
1791
1792 kfree(dom->name);
1793 kfree(gd);
1794}
1795
Trond Myklebust608a0ab2018-10-01 10:41:44 -04001796static void
1797svcauth_gss_domain_release(struct auth_domain *dom)
1798{
1799 call_rcu(&dom->rcu_head, svcauth_gss_domain_release_rcu);
1800}
1801
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802static 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
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +04001812static 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
1830static 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
1841static 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
1859static 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
1870int
1871gss_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;
Simo Sorce030d7942012-05-25 18:09:56 -04001881 rv = create_use_gss_proxy_proc_entry(net);
1882 if (rv)
1883 goto out2;
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +04001884 return 0;
Simo Sorce030d7942012-05-25 18:09:56 -04001885out2:
1886 destroy_use_gss_proxy_proc_entry(net);
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +04001887out1:
1888 rsc_cache_destroy_net(net);
1889 return rv;
1890}
1891
1892void
1893gss_svc_shutdown_net(struct net *net)
1894{
Simo Sorce030d7942012-05-25 18:09:56 -04001895 destroy_use_gss_proxy_proc_entry(net);
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +04001896 rsi_cache_destroy_net(net);
1897 rsc_cache_destroy_net(net);
1898}
1899
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900int
1901gss_svc_init(void)
1902{
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +04001903 return svc_auth_register(RPC_AUTH_GSS, &svcauthops_gss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904}
1905
1906void
1907gss_svc_shutdown(void)
1908{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 svc_auth_unregister(RPC_AUTH_GSS);
1910}