Whamcloud - gitweb
LU-6401 uapi: migrate remaining uapi headers to uapi directory
[fs/lustre-release.git] / lustre / ptlrpc / gss / gss_svc_upcall.c
1 /*
2  * Modifications for Lustre
3  *
4  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
5  *
6  * Copyright (c) 2012, 2014, Intel Corporation.
7  *
8  * Author: Eric Mei <ericm@clusterfs.com>
9  */
10
11 /*
12  * Neil Brown <neilb@cse.unsw.edu.au>
13  * J. Bruce Fields <bfields@umich.edu>
14  * Andy Adamson <andros@umich.edu>
15  * Dug Song <dugsong@monkey.org>
16  *
17  * RPCSEC_GSS server authentication.
18  * This implements RPCSEC_GSS as defined in rfc2203 (rpcsec_gss) and rfc2078
19  * (gssapi)
20  *
21  * The RPCSEC_GSS involves three stages:
22  *  1/ context creation
23  *  2/ data exchange
24  *  3/ context destruction
25  *
26  * Context creation is handled largely by upcalls to user-space.
27  *  In particular, GSS_Accept_sec_context is handled by an upcall
28  * Data exchange is handled entirely within the kernel
29  *  In particular, GSS_GetMIC, GSS_VerifyMIC, GSS_Seal, GSS_Unseal are in-kernel.
30  * Context destruction is handled in-kernel
31  *  GSS_Delete_sec_context is in-kernel
32  *
33  * Context creation is initiated by a RPCSEC_GSS_INIT request arriving.
34  * The context handle and gss_token are used as a key into the rpcsec_init cache.
35  * The content of this cache includes some of the outputs of GSS_Accept_sec_context,
36  * being major_status, minor_status, context_handle, reply_token.
37  * These are sent back to the client.
38  * Sequence window management is handled by the kernel.  The window size if currently
39  * a compile time constant.
40  *
41  * When user-space is happy that a context is established, it places an entry
42  * in the rpcsec_context cache. The key for this cache is the context_handle.
43  * The content includes:
44  *   uid/gidlist - for determining access rights
45  *   mechanism type
46  *   mechanism specific information, such as a key
47  *
48  */
49
50 #define DEBUG_SUBSYSTEM S_SEC
51 #include <linux/types.h>
52 #include <linux/init.h>
53 #include <linux/module.h>
54 #include <linux/slab.h>
55 #include <linux/hash.h>
56 #include <linux/mutex.h>
57 #include <linux/sunrpc/cache.h>
58 #include <net/sock.h>
59
60 #include <obd.h>
61 #include <obd_class.h>
62 #include <obd_support.h>
63 #include <lustre_import.h>
64 #include <lustre_net.h>
65 #include <lustre_nodemap.h>
66 #include <lustre_sec.h>
67
68 #include "gss_err.h"
69 #include "gss_internal.h"
70 #include "gss_api.h"
71
72 #define GSS_SVC_UPCALL_TIMEOUT  (20)
73
74 static spinlock_t __ctx_index_lock;
75 static __u64 __ctx_index;
76
77 __u64 gss_get_next_ctx_index(void)
78 {
79         __u64 idx;
80
81         spin_lock(&__ctx_index_lock);
82         idx = __ctx_index++;
83         spin_unlock(&__ctx_index_lock);
84
85         return idx;
86 }
87
88 static inline unsigned long hash_mem(char *buf, int length, int bits)
89 {
90         unsigned long hash = 0;
91         unsigned long l = 0;
92         int len = 0;
93         unsigned char c;
94
95         do {
96                 if (len == length) {
97                         c = (char) len;
98                         len = -1;
99                 } else
100                         c = *buf++;
101
102                 l = (l << 8) | c;
103                 len++;
104
105                 if ((len & (BITS_PER_LONG/8-1)) == 0)
106                         hash = hash_long(hash^l, BITS_PER_LONG);
107         } while (len);
108
109         return hash >> (BITS_PER_LONG - bits);
110 }
111
112 /* This compatibility can be removed once kernel 3.3 is used,
113  * since cache_register_net/cache_unregister_net are exported.
114  * Note that since kernel 3.4 cache_register and cache_unregister
115  * are removed.
116 */
117 static inline int _cache_register_net(struct cache_detail *cd, struct net *net)
118 {
119 #ifdef HAVE_CACHE_REGISTER
120         return cache_register(cd);
121 #else
122         return cache_register_net(cd, net);
123 #endif
124 }
125 static inline void _cache_unregister_net(struct cache_detail *cd,
126                                          struct net *net)
127 {
128 #ifdef HAVE_CACHE_REGISTER
129         cache_unregister(cd);
130 #else
131         cache_unregister_net(cd, net);
132 #endif
133 }
134 /****************************************
135  * rpc sec init (rsi) cache *
136  ****************************************/
137
138 #define RSI_HASHBITS    (6)
139 #define RSI_HASHMAX     (1 << RSI_HASHBITS)
140 #define RSI_HASHMASK    (RSI_HASHMAX - 1)
141
142 struct rsi {
143         struct cache_head       h;
144         __u32                   lustre_svc;
145         __u64                   nid;
146         char                    nm_name[LUSTRE_NODEMAP_NAME_LENGTH + 1];
147         wait_queue_head_t       waitq;
148         rawobj_t                in_handle, in_token;
149         rawobj_t                out_handle, out_token;
150         int                     major_status, minor_status;
151 };
152
153 #ifdef HAVE_CACHE_HEAD_HLIST
154 static struct hlist_head rsi_table[RSI_HASHMAX];
155 #else
156 static struct cache_head *rsi_table[RSI_HASHMAX];
157 #endif
158 static struct cache_detail rsi_cache;
159 static struct rsi *rsi_update(struct rsi *new, struct rsi *old);
160 static struct rsi *rsi_lookup(struct rsi *item);
161
162 static inline int rsi_hash(struct rsi *item)
163 {
164         return hash_mem((char *)item->in_handle.data, item->in_handle.len,
165                         RSI_HASHBITS) ^
166                hash_mem((char *)item->in_token.data, item->in_token.len,
167                         RSI_HASHBITS);
168 }
169
170 static inline int __rsi_match(struct rsi *item, struct rsi *tmp)
171 {
172         return (rawobj_equal(&item->in_handle, &tmp->in_handle) &&
173                 rawobj_equal(&item->in_token, &tmp->in_token));
174 }
175
176 static void rsi_free(struct rsi *rsi)
177 {
178         rawobj_free(&rsi->in_handle);
179         rawobj_free(&rsi->in_token);
180         rawobj_free(&rsi->out_handle);
181         rawobj_free(&rsi->out_token);
182 }
183
184 /* See handle_channel_req() userspace for where the upcall data is read */
185 static void rsi_request(struct cache_detail *cd,
186                         struct cache_head *h,
187                         char **bpp, int *blen)
188 {
189         struct rsi *rsi = container_of(h, struct rsi, h);
190         __u64 index = 0;
191
192         /* if in_handle is null, provide kernel suggestion */
193         if (rsi->in_handle.len == 0)
194                 index = gss_get_next_ctx_index();
195
196         qword_addhex(bpp, blen, (char *) &rsi->lustre_svc,
197                         sizeof(rsi->lustre_svc));
198         qword_addhex(bpp, blen, (char *) &rsi->nid, sizeof(rsi->nid));
199         qword_addhex(bpp, blen, (char *) &index, sizeof(index));
200         qword_addhex(bpp, blen, (char *) rsi->nm_name,
201                      strlen(rsi->nm_name) + 1);
202         qword_addhex(bpp, blen, rsi->in_handle.data, rsi->in_handle.len);
203         qword_addhex(bpp, blen, rsi->in_token.data, rsi->in_token.len);
204         (*bpp)[-1] = '\n';
205 }
206
207 #ifdef HAVE_SUNRPC_UPCALL_HAS_3ARGS
208 static int rsi_upcall(struct cache_detail *cd, struct cache_head *h)
209 {
210         return sunrpc_cache_pipe_upcall(cd, h, rsi_request);
211 }
212 #else
213
214 static int rsi_upcall(struct cache_detail *cd, struct cache_head *h)
215 {
216         return sunrpc_cache_pipe_upcall(cd, h);
217 }
218 #endif
219
220 static inline void __rsi_init(struct rsi *new, struct rsi *item)
221 {
222         new->out_handle = RAWOBJ_EMPTY;
223         new->out_token = RAWOBJ_EMPTY;
224
225         new->in_handle = item->in_handle;
226         item->in_handle = RAWOBJ_EMPTY;
227         new->in_token = item->in_token;
228         item->in_token = RAWOBJ_EMPTY;
229
230         new->lustre_svc = item->lustre_svc;
231         new->nid = item->nid;
232         memcpy(new->nm_name, item->nm_name, sizeof(item->nm_name));
233         init_waitqueue_head(&new->waitq);
234 }
235
236 static inline void __rsi_update(struct rsi *new, struct rsi *item)
237 {
238         LASSERT(new->out_handle.len == 0);
239         LASSERT(new->out_token.len == 0);
240
241         new->out_handle = item->out_handle;
242         item->out_handle = RAWOBJ_EMPTY;
243         new->out_token = item->out_token;
244         item->out_token = RAWOBJ_EMPTY;
245
246         new->major_status = item->major_status;
247         new->minor_status = item->minor_status;
248 }
249
250 static void rsi_put(struct kref *ref)
251 {
252         struct rsi *rsi = container_of(ref, struct rsi, h.ref);
253
254 #ifdef HAVE_CACHE_HEAD_HLIST
255         LASSERT(rsi->h.cache_list.next == NULL);
256 #else
257         LASSERT(rsi->h.next == NULL);
258 #endif
259         rsi_free(rsi);
260         OBD_FREE_PTR(rsi);
261 }
262
263 static int rsi_match(struct cache_head *a, struct cache_head *b)
264 {
265         struct rsi *item = container_of(a, struct rsi, h);
266         struct rsi *tmp = container_of(b, struct rsi, h);
267
268         return __rsi_match(item, tmp);
269 }
270
271 static void rsi_init(struct cache_head *cnew, struct cache_head *citem)
272 {
273         struct rsi *new = container_of(cnew, struct rsi, h);
274         struct rsi *item = container_of(citem, struct rsi, h);
275
276         __rsi_init(new, item);
277 }
278
279 static void update_rsi(struct cache_head *cnew, struct cache_head *citem)
280 {
281         struct rsi *new = container_of(cnew, struct rsi, h);
282         struct rsi *item = container_of(citem, struct rsi, h);
283
284         __rsi_update(new, item);
285 }
286
287 static struct cache_head *rsi_alloc(void)
288 {
289         struct rsi *rsi;
290
291         OBD_ALLOC_PTR(rsi);
292         if (rsi) 
293                 return &rsi->h;
294         else
295                 return NULL;
296 }
297
298 static int rsi_parse(struct cache_detail *cd, char *mesg, int mlen)
299 {
300         char           *buf = mesg;
301         char           *ep;
302         int             len;
303         struct rsi      rsii, *rsip = NULL;
304         time_t          expiry;
305         int             status = -EINVAL;
306         ENTRY;
307
308
309         memset(&rsii, 0, sizeof(rsii));
310
311         /* handle */
312         len = qword_get(&mesg, buf, mlen);
313         if (len < 0)
314                 goto out;
315         if (rawobj_alloc(&rsii.in_handle, buf, len)) {
316                 status = -ENOMEM;
317                 goto out;
318         }
319
320         /* token */
321         len = qword_get(&mesg, buf, mlen);
322         if (len < 0)
323                 goto out;
324         if (rawobj_alloc(&rsii.in_token, buf, len)) {
325                 status = -ENOMEM;
326                 goto out;
327         }
328
329         rsip = rsi_lookup(&rsii);
330         if (!rsip)
331                 goto out;
332
333         rsii.h.flags = 0;
334         /* expiry */
335         expiry = get_expiry(&mesg);
336         if (expiry == 0)
337                 goto out;
338
339         len = qword_get(&mesg, buf, mlen);
340         if (len <= 0)
341                 goto out;
342
343         /* major */
344         rsii.major_status = simple_strtol(buf, &ep, 10);
345         if (*ep)
346                 goto out;
347
348         /* minor */
349         len = qword_get(&mesg, buf, mlen);
350         if (len <= 0)
351                 goto out;
352         rsii.minor_status = simple_strtol(buf, &ep, 10);
353         if (*ep)
354                 goto out;
355
356         /* out_handle */
357         len = qword_get(&mesg, buf, mlen);
358         if (len < 0)
359                 goto out;
360         if (rawobj_alloc(&rsii.out_handle, buf, len)) {
361                 status = -ENOMEM;
362                 goto out;
363         }
364
365         /* out_token */
366         len = qword_get(&mesg, buf, mlen);
367         if (len < 0)
368                 goto out;
369         if (rawobj_alloc(&rsii.out_token, buf, len)) {
370                 status = -ENOMEM;
371                 goto out;
372         }
373
374         rsii.h.expiry_time = expiry;
375         rsip = rsi_update(&rsii, rsip);
376         status = 0;
377 out:
378         rsi_free(&rsii);
379         if (rsip) {
380                 wake_up_all(&rsip->waitq);
381                 cache_put(&rsip->h, &rsi_cache);
382         } else {
383                 status = -ENOMEM;
384         }
385
386         if (status)
387                 CERROR("rsi parse error %d\n", status);
388         RETURN(status);
389 }
390
391 static struct cache_detail rsi_cache = {
392         .hash_size      = RSI_HASHMAX,
393         .hash_table     = rsi_table,
394         .name           = "auth.sptlrpc.init",
395         .cache_put      = rsi_put,
396 #ifndef HAVE_SUNRPC_UPCALL_HAS_3ARGS
397         .cache_request  = rsi_request,
398 #endif
399         .cache_upcall   = rsi_upcall,
400         .cache_parse    = rsi_parse,
401         .match          = rsi_match,
402         .init           = rsi_init,
403         .update         = update_rsi,
404         .alloc          = rsi_alloc,
405 };
406
407 static struct rsi *rsi_lookup(struct rsi *item)
408 {
409         struct cache_head *ch;
410         int hash = rsi_hash(item);
411
412         ch = sunrpc_cache_lookup(&rsi_cache, &item->h, hash);
413         if (ch)
414                 return container_of(ch, struct rsi, h);
415         else
416                 return NULL;
417 }
418
419 static struct rsi *rsi_update(struct rsi *new, struct rsi *old)
420 {
421         struct cache_head *ch;
422         int hash = rsi_hash(new);
423
424         ch = sunrpc_cache_update(&rsi_cache, &new->h, &old->h, hash);
425         if (ch)
426                 return container_of(ch, struct rsi, h);
427         else
428                 return NULL;
429 }
430
431 /****************************************
432  * rpc sec context (rsc) cache                            *
433  ****************************************/
434
435 #define RSC_HASHBITS    (10)
436 #define RSC_HASHMAX     (1 << RSC_HASHBITS)
437 #define RSC_HASHMASK    (RSC_HASHMAX - 1)
438
439 struct rsc {
440         struct cache_head       h;
441         struct obd_device      *target;
442         rawobj_t                handle;
443         struct gss_svc_ctx      ctx;
444 };
445
446 #ifdef HAVE_CACHE_HEAD_HLIST
447 static struct hlist_head rsc_table[RSC_HASHMAX];
448 #else
449 static struct cache_head *rsc_table[RSC_HASHMAX];
450 #endif
451 static struct cache_detail rsc_cache;
452 static struct rsc *rsc_update(struct rsc *new, struct rsc *old);
453 static struct rsc *rsc_lookup(struct rsc *item);
454
455 static void rsc_free(struct rsc *rsci)
456 {
457         rawobj_free(&rsci->handle);
458         rawobj_free(&rsci->ctx.gsc_rvs_hdl);
459         lgss_delete_sec_context(&rsci->ctx.gsc_mechctx);
460 }
461
462 static inline int rsc_hash(struct rsc *rsci)
463 {
464         return hash_mem((char *)rsci->handle.data,
465                         rsci->handle.len, RSC_HASHBITS);
466 }
467
468 static inline int __rsc_match(struct rsc *new, struct rsc *tmp)
469 {
470         return rawobj_equal(&new->handle, &tmp->handle);
471 }
472
473 static inline void __rsc_init(struct rsc *new, struct rsc *tmp)
474 {
475         new->handle = tmp->handle;
476         tmp->handle = RAWOBJ_EMPTY;
477
478         new->target = NULL;
479         memset(&new->ctx, 0, sizeof(new->ctx));
480         new->ctx.gsc_rvs_hdl = RAWOBJ_EMPTY;
481 }
482
483 static inline void __rsc_update(struct rsc *new, struct rsc *tmp)
484 {
485         new->ctx = tmp->ctx;
486         tmp->ctx.gsc_rvs_hdl = RAWOBJ_EMPTY;
487         tmp->ctx.gsc_mechctx = NULL;
488
489         memset(&new->ctx.gsc_seqdata, 0, sizeof(new->ctx.gsc_seqdata));
490         spin_lock_init(&new->ctx.gsc_seqdata.ssd_lock);
491 }
492
493 static void rsc_put(struct kref *ref)
494 {
495         struct rsc *rsci = container_of(ref, struct rsc, h.ref);
496
497 #ifdef HAVE_CACHE_HEAD_HLIST
498         LASSERT(rsci->h.cache_list.next == NULL);
499 #else
500         LASSERT(rsci->h.next == NULL);
501 #endif
502         rsc_free(rsci);
503         OBD_FREE_PTR(rsci);
504 }
505
506 static int rsc_match(struct cache_head *a, struct cache_head *b)
507 {
508         struct rsc *new = container_of(a, struct rsc, h);
509         struct rsc *tmp = container_of(b, struct rsc, h);
510
511         return __rsc_match(new, tmp);
512 }
513
514 static void rsc_init(struct cache_head *cnew, struct cache_head *ctmp)
515 {
516         struct rsc *new = container_of(cnew, struct rsc, h);
517         struct rsc *tmp = container_of(ctmp, struct rsc, h);
518
519         __rsc_init(new, tmp);
520 }
521
522 static void update_rsc(struct cache_head *cnew, struct cache_head *ctmp)
523 {
524         struct rsc *new = container_of(cnew, struct rsc, h);
525         struct rsc *tmp = container_of(ctmp, struct rsc, h);
526
527         __rsc_update(new, tmp);
528 }
529
530 static struct cache_head * rsc_alloc(void)
531 {
532         struct rsc *rsc;
533
534         OBD_ALLOC_PTR(rsc);
535         if (rsc)
536                 return &rsc->h;
537         else
538                 return NULL;
539 }
540
541 static int rsc_parse(struct cache_detail *cd, char *mesg, int mlen)
542 {
543         char                *buf = mesg;
544         int                  len, rv, tmp_int;
545         struct rsc           rsci, *rscp = NULL;
546         time_t               expiry;
547         int                  status = -EINVAL;
548         struct gss_api_mech *gm = NULL;
549
550         memset(&rsci, 0, sizeof(rsci));
551
552         /* context handle */
553         len = qword_get(&mesg, buf, mlen);
554         if (len < 0) goto out;
555         status = -ENOMEM;
556         if (rawobj_alloc(&rsci.handle, buf, len))
557                 goto out;
558
559         rsci.h.flags = 0;
560         /* expiry */
561         expiry = get_expiry(&mesg);
562         status = -EINVAL;
563         if (expiry == 0)
564                 goto out;
565
566         /* remote flag */
567         rv = get_int(&mesg, &tmp_int);
568         if (rv) {
569                 CERROR("fail to get remote flag\n");
570                 goto out;
571         }
572         rsci.ctx.gsc_remote = (tmp_int != 0);
573
574         /* root user flag */
575         rv = get_int(&mesg, &tmp_int);
576         if (rv) {
577                 CERROR("fail to get root user flag\n");
578                 goto out;
579         }
580         rsci.ctx.gsc_usr_root = (tmp_int != 0);
581
582         /* mds user flag */
583         rv = get_int(&mesg, &tmp_int);
584         if (rv) {
585                 CERROR("fail to get mds user flag\n");
586                 goto out;
587         }
588         rsci.ctx.gsc_usr_mds = (tmp_int != 0);
589
590         /* oss user flag */
591         rv = get_int(&mesg, &tmp_int);
592         if (rv) {
593                 CERROR("fail to get oss user flag\n");
594                 goto out;
595         }
596         rsci.ctx.gsc_usr_oss = (tmp_int != 0);
597
598         /* mapped uid */
599         rv = get_int(&mesg, (int *) &rsci.ctx.gsc_mapped_uid);
600         if (rv) {
601                 CERROR("fail to get mapped uid\n");
602                 goto out;
603         }
604
605         rscp = rsc_lookup(&rsci);
606         if (!rscp)
607                 goto out;
608
609         /* uid, or NEGATIVE */
610         rv = get_int(&mesg, (int *) &rsci.ctx.gsc_uid);
611         if (rv == -EINVAL)
612                 goto out;
613         if (rv == -ENOENT) {
614                 CERROR("NOENT? set rsc entry negative\n");
615                 set_bit(CACHE_NEGATIVE, &rsci.h.flags);
616         } else {
617                 rawobj_t tmp_buf;
618                 unsigned long ctx_expiry;
619
620                 /* gid */
621                 if (get_int(&mesg, (int *) &rsci.ctx.gsc_gid))
622                         goto out;
623
624                 /* mech name */
625                 len = qword_get(&mesg, buf, mlen);
626                 if (len < 0)
627                         goto out;
628                 gm = lgss_name_to_mech(buf);
629                 status = -EOPNOTSUPP;
630                 if (!gm)
631                         goto out;
632
633                 status = -EINVAL;
634                 /* mech-specific data: */
635                 len = qword_get(&mesg, buf, mlen);
636                 if (len < 0)
637                         goto out;
638
639                 tmp_buf.len = len;
640                 tmp_buf.data = (unsigned char *)buf;
641                 if (lgss_import_sec_context(&tmp_buf, gm,
642                                             &rsci.ctx.gsc_mechctx))
643                         goto out;
644
645                 /* currently the expiry time passed down from user-space
646                  * is invalid, here we retrive it from mech. */
647                 if (lgss_inquire_context(rsci.ctx.gsc_mechctx, &ctx_expiry)) {
648                         CERROR("unable to get expire time, drop it\n");
649                         goto out;
650                 }
651                 expiry = (time_t) ctx_expiry;
652         }
653
654         rsci.h.expiry_time = expiry;
655         rscp = rsc_update(&rsci, rscp);
656         status = 0;
657 out:
658         if (gm)
659                 lgss_mech_put(gm);
660         rsc_free(&rsci);
661         if (rscp)
662                 cache_put(&rscp->h, &rsc_cache);
663         else
664                 status = -ENOMEM;
665
666         if (status)
667                 CERROR("parse rsc error %d\n", status);
668         return status;
669 }
670
671 static struct cache_detail rsc_cache = {
672         .hash_size      = RSC_HASHMAX,
673         .hash_table     = rsc_table,
674         .name           = "auth.sptlrpc.context",
675         .cache_put      = rsc_put,
676         .cache_parse    = rsc_parse,
677         .match          = rsc_match,
678         .init           = rsc_init,
679         .update         = update_rsc,
680         .alloc          = rsc_alloc,
681 };
682
683 static struct rsc *rsc_lookup(struct rsc *item)
684 {
685         struct cache_head *ch;
686         int                hash = rsc_hash(item);
687
688         ch = sunrpc_cache_lookup(&rsc_cache, &item->h, hash);
689         if (ch)
690                 return container_of(ch, struct rsc, h);
691         else
692                 return NULL;
693 }
694
695 static struct rsc *rsc_update(struct rsc *new, struct rsc *old)
696 {
697         struct cache_head *ch;
698         int                hash = rsc_hash(new);
699
700         ch = sunrpc_cache_update(&rsc_cache, &new->h, &old->h, hash);
701         if (ch)
702                 return container_of(ch, struct rsc, h);
703         else
704                 return NULL;
705 }
706
707 #define COMPAT_RSC_PUT(item, cd)        cache_put((item), (cd))
708
709 /****************************************
710  * rsc cache flush                      *
711  ****************************************/
712
713 typedef int rsc_entry_match(struct rsc *rscp, long data);
714
715 static void rsc_flush(rsc_entry_match *match, long data)
716 {
717 #ifdef HAVE_CACHE_HEAD_HLIST
718         struct cache_head *ch = NULL;
719         struct hlist_head *head;
720 #else
721         struct cache_head **ch;
722 #endif
723         struct rsc *rscp;
724         int n;
725         ENTRY;
726
727         write_lock(&rsc_cache.hash_lock);
728         for (n = 0; n < RSC_HASHMAX; n++) {
729 #ifdef HAVE_CACHE_HEAD_HLIST
730                 head = &rsc_cache.hash_table[n];
731                 hlist_for_each_entry(ch, head, cache_list) {
732                         rscp = container_of(ch, struct rsc, h);
733 #else
734                 for (ch = &rsc_cache.hash_table[n]; *ch;) {
735                         rscp = container_of(*ch, struct rsc, h);
736 #endif
737
738                         if (!match(rscp, data)) {
739 #ifndef HAVE_CACHE_HEAD_HLIST
740                                 ch = &((*ch)->next);
741 #endif
742                                 continue;
743                         }
744
745                         /* it seems simply set NEGATIVE doesn't work */
746 #ifdef HAVE_CACHE_HEAD_HLIST
747                         hlist_del_init(&ch->cache_list);
748 #else
749                         *ch = (*ch)->next;
750                         rscp->h.next = NULL;
751 #endif
752                         cache_get(&rscp->h);
753                         set_bit(CACHE_NEGATIVE, &rscp->h.flags);
754                         COMPAT_RSC_PUT(&rscp->h, &rsc_cache);
755                         rsc_cache.entries--;
756                 }
757         }
758         write_unlock(&rsc_cache.hash_lock);
759         EXIT;
760 }
761
762 static int match_uid(struct rsc *rscp, long uid)
763 {
764         if ((int) uid == -1)
765                 return 1;
766         return ((int) rscp->ctx.gsc_uid == (int) uid);
767 }
768
769 static int match_target(struct rsc *rscp, long target)
770 {
771         return (rscp->target == (struct obd_device *) target);
772 }
773
774 static inline void rsc_flush_uid(int uid)
775 {
776         if (uid == -1)
777                 CWARN("flush all gss contexts...\n");
778
779         rsc_flush(match_uid, (long) uid);
780 }
781
782 static inline void rsc_flush_target(struct obd_device *target)
783 {
784         rsc_flush(match_target, (long) target);
785 }
786
787 void gss_secsvc_flush(struct obd_device *target)
788 {
789         rsc_flush_target(target);
790 }
791
792 static struct rsc *gss_svc_searchbyctx(rawobj_t *handle)
793 {
794         struct rsc  rsci;
795         struct rsc *found;
796
797         memset(&rsci, 0, sizeof(rsci));
798         if (rawobj_dup(&rsci.handle, handle))
799                 return NULL;
800
801         found = rsc_lookup(&rsci);
802         rsc_free(&rsci);
803         if (!found)
804                 return NULL;
805         if (cache_check(&rsc_cache, &found->h, NULL))
806                 return NULL;
807         return found;
808 }
809
810 int gss_svc_upcall_install_rvs_ctx(struct obd_import *imp,
811                                    struct gss_sec *gsec,
812                                    struct gss_cli_ctx *gctx)
813 {
814         struct rsc      rsci, *rscp = NULL;
815         unsigned long   ctx_expiry;
816         __u32           major;
817         int             rc;
818         ENTRY;
819
820         memset(&rsci, 0, sizeof(rsci));
821
822         if (rawobj_alloc(&rsci.handle, (char *) &gsec->gs_rvs_hdl,
823                          sizeof(gsec->gs_rvs_hdl)))
824                 GOTO(out, rc = -ENOMEM);
825
826         rscp = rsc_lookup(&rsci);
827         if (rscp == NULL)
828                 GOTO(out, rc = -ENOMEM);
829
830         major = lgss_copy_reverse_context(gctx->gc_mechctx,
831                                           &rsci.ctx.gsc_mechctx);
832         if (major != GSS_S_COMPLETE)
833                 GOTO(out, rc = -ENOMEM);
834
835         if (lgss_inquire_context(rsci.ctx.gsc_mechctx, &ctx_expiry)) {
836                 CERROR("unable to get expire time, drop it\n");
837                 GOTO(out, rc = -EINVAL);
838         }
839         rsci.h.expiry_time = (time_t) ctx_expiry;
840
841         switch (imp->imp_obd->u.cli.cl_sp_to) {
842         case LUSTRE_SP_MDT:
843                 rsci.ctx.gsc_usr_mds = 1;
844                 break;
845         case LUSTRE_SP_OST:
846                 rsci.ctx.gsc_usr_oss = 1;
847                 break;
848         case LUSTRE_SP_CLI:
849                 rsci.ctx.gsc_usr_root = 1;
850         default:
851                 break;
852         }
853
854         rscp = rsc_update(&rsci, rscp);
855         if (rscp == NULL)
856                 GOTO(out, rc = -ENOMEM);
857
858         rscp->target = imp->imp_obd;
859         rawobj_dup(&gctx->gc_svc_handle, &rscp->handle);
860
861         CWARN("create reverse svc ctx %p to %s: idx %#llx\n",
862               &rscp->ctx, obd2cli_tgt(imp->imp_obd), gsec->gs_rvs_hdl);
863         rc = 0;
864 out:
865         if (rscp)
866                 cache_put(&rscp->h, &rsc_cache);
867         rsc_free(&rsci);
868
869         if (rc)
870                 CERROR("create reverse svc ctx: idx %#llx, rc %d\n",
871                        gsec->gs_rvs_hdl, rc);
872         RETURN(rc);
873 }
874
875 int gss_svc_upcall_expire_rvs_ctx(rawobj_t *handle)
876 {
877         const cfs_time_t        expire = 20;
878         struct rsc             *rscp;
879
880         rscp = gss_svc_searchbyctx(handle);
881         if (rscp) {
882                 CDEBUG(D_SEC, "reverse svcctx %p (rsc %p) expire soon\n",
883                        &rscp->ctx, rscp);
884
885                 rscp->h.expiry_time = cfs_time_current_sec() + expire;
886                 COMPAT_RSC_PUT(&rscp->h, &rsc_cache);
887         }
888         return 0;
889 }
890
891 int gss_svc_upcall_dup_handle(rawobj_t *handle, struct gss_svc_ctx *ctx)
892 {
893         struct rsc *rscp = container_of(ctx, struct rsc, ctx);
894
895         return rawobj_dup(handle, &rscp->handle);
896 }
897
898 int gss_svc_upcall_update_sequence(rawobj_t *handle, __u32 seq)
899 {
900         struct rsc             *rscp;
901
902         rscp = gss_svc_searchbyctx(handle);
903         if (rscp) {
904                 CDEBUG(D_SEC, "reverse svcctx %p (rsc %p) update seq to %u\n",
905                        &rscp->ctx, rscp, seq + 1);
906
907                 rscp->ctx.gsc_rvs_seq = seq + 1;
908                 COMPAT_RSC_PUT(&rscp->h, &rsc_cache);
909         }
910         return 0;
911 }
912
913 static struct cache_deferred_req* cache_upcall_defer(struct cache_req *req)
914 {
915         return NULL;
916 }
917 static struct cache_req cache_upcall_chandle = { cache_upcall_defer };
918
919 int gss_svc_upcall_handle_init(struct ptlrpc_request *req,
920                                struct gss_svc_reqctx *grctx,
921                                struct gss_wire_ctx *gw,
922                                struct obd_device *target,
923                                __u32 lustre_svc,
924                                rawobj_t *rvs_hdl,
925                                rawobj_t *in_token)
926 {
927         struct ptlrpc_reply_state *rs;
928         struct rsc                *rsci = NULL;
929         struct rsi                *rsip = NULL, rsikey;
930         wait_queue_t             wait;
931         int                        replen = sizeof(struct ptlrpc_body);
932         struct gss_rep_header     *rephdr;
933         int                        first_check = 1;
934         int                        rc = SECSVC_DROP;
935         ENTRY;
936
937         memset(&rsikey, 0, sizeof(rsikey));
938         rsikey.lustre_svc = lustre_svc;
939         rsikey.nid = (__u64) req->rq_peer.nid;
940         nodemap_test_nid(req->rq_peer.nid, rsikey.nm_name,
941                          sizeof(rsikey.nm_name));
942
943         /* duplicate context handle. for INIT it always 0 */
944         if (rawobj_dup(&rsikey.in_handle, &gw->gw_handle)) {
945                 CERROR("fail to dup context handle\n");
946                 GOTO(out, rc);
947         }
948
949         if (rawobj_dup(&rsikey.in_token, in_token)) {
950                 CERROR("can't duplicate token\n");
951                 rawobj_free(&rsikey.in_handle);
952                 GOTO(out, rc);
953         }
954
955         rsip = rsi_lookup(&rsikey);
956         rsi_free(&rsikey);
957         if (!rsip) {
958                 CERROR("error in rsi_lookup.\n");
959
960                 if (!gss_pack_err_notify(req, GSS_S_FAILURE, 0))
961                         rc = SECSVC_COMPLETE;
962
963                 GOTO(out, rc);
964         }
965
966         cache_get(&rsip->h); /* take an extra ref */
967         init_waitqueue_head(&rsip->waitq);
968         init_waitqueue_entry(&wait, current);
969         add_wait_queue(&rsip->waitq, &wait);
970
971 cache_check:
972         /* Note each time cache_check() will drop a reference if return
973          * non-zero. We hold an extra reference on initial rsip, but must
974          * take care of following calls. */
975         rc = cache_check(&rsi_cache, &rsip->h, &cache_upcall_chandle);
976         switch (rc) {
977         case -ETIMEDOUT:
978         case -EAGAIN: {
979                 int valid;
980
981                 if (first_check) {
982                         first_check = 0;
983
984                         read_lock(&rsi_cache.hash_lock);
985                         valid = test_bit(CACHE_VALID, &rsip->h.flags);
986                         if (valid == 0)
987                                 set_current_state(TASK_INTERRUPTIBLE);
988                         read_unlock(&rsi_cache.hash_lock);
989
990                         if (valid == 0) {
991                                 unsigned long jiffies;
992                                 jiffies = msecs_to_jiffies(MSEC_PER_SEC *
993                                           GSS_SVC_UPCALL_TIMEOUT);
994                                 schedule_timeout(jiffies);
995                         }
996                         cache_get(&rsip->h);
997                         goto cache_check;
998                 }
999                 CWARN("waited %ds timeout, drop\n", GSS_SVC_UPCALL_TIMEOUT);
1000                 break;
1001         }
1002         case -ENOENT:
1003                 CDEBUG(D_SEC, "cache_check return ENOENT, drop\n");
1004                 break;
1005         case 0:
1006                 /* if not the first check, we have to release the extra
1007                  * reference we just added on it. */
1008                 if (!first_check)
1009                         cache_put(&rsip->h, &rsi_cache);
1010                 CDEBUG(D_SEC, "cache_check is good\n");
1011                 break;
1012         }
1013
1014         remove_wait_queue(&rsip->waitq, &wait);
1015         cache_put(&rsip->h, &rsi_cache);
1016
1017         if (rc)
1018                 GOTO(out, rc = SECSVC_DROP);
1019
1020         rc = SECSVC_DROP;
1021         rsci = gss_svc_searchbyctx(&rsip->out_handle);
1022         if (!rsci) {
1023                 CERROR("authentication failed\n");
1024
1025                 /* gss mechanism returned major and minor code so we return
1026                  * those in error message */
1027                 if (!gss_pack_err_notify(req, rsip->major_status,
1028                                          rsip->minor_status))
1029                         rc = SECSVC_COMPLETE;
1030
1031                 GOTO(out, rc);
1032         } else {
1033                 cache_get(&rsci->h);
1034                 grctx->src_ctx = &rsci->ctx;
1035         }
1036
1037         if (rawobj_dup(&rsci->ctx.gsc_rvs_hdl, rvs_hdl)) {
1038                 CERROR("failed duplicate reverse handle\n");
1039                 GOTO(out, rc);
1040         }
1041
1042         rsci->target = target;
1043
1044         CDEBUG(D_SEC, "server create rsc %p(%u->%s)\n",
1045                rsci, rsci->ctx.gsc_uid, libcfs_nid2str(req->rq_peer.nid));
1046
1047         if (rsip->out_handle.len > PTLRPC_GSS_MAX_HANDLE_SIZE) {
1048                 CERROR("handle size %u too large\n", rsip->out_handle.len);
1049                 GOTO(out, rc = SECSVC_DROP);
1050         }
1051
1052         grctx->src_init = 1;
1053         grctx->src_reserve_len = cfs_size_round4(rsip->out_token.len);
1054
1055         rc = lustre_pack_reply_v2(req, 1, &replen, NULL, 0);
1056         if (rc) {
1057                 CERROR("failed to pack reply: %d\n", rc);
1058                 GOTO(out, rc = SECSVC_DROP);
1059         }
1060
1061         rs = req->rq_reply_state;
1062         LASSERT(rs->rs_repbuf->lm_bufcount == 3);
1063         LASSERT(rs->rs_repbuf->lm_buflens[0] >=
1064                 sizeof(*rephdr) + rsip->out_handle.len);
1065         LASSERT(rs->rs_repbuf->lm_buflens[2] >= rsip->out_token.len);
1066
1067         rephdr = lustre_msg_buf(rs->rs_repbuf, 0, 0);
1068         rephdr->gh_version = PTLRPC_GSS_VERSION;
1069         rephdr->gh_flags = 0;
1070         rephdr->gh_proc = PTLRPC_GSS_PROC_ERR;
1071         rephdr->gh_major = rsip->major_status;
1072         rephdr->gh_minor = rsip->minor_status;
1073         rephdr->gh_seqwin = GSS_SEQ_WIN;
1074         rephdr->gh_handle.len = rsip->out_handle.len;
1075         memcpy(rephdr->gh_handle.data, rsip->out_handle.data,
1076                rsip->out_handle.len);
1077
1078         memcpy(lustre_msg_buf(rs->rs_repbuf, 2, 0), rsip->out_token.data,
1079                rsip->out_token.len);
1080
1081         rs->rs_repdata_len = lustre_shrink_msg(rs->rs_repbuf, 2,
1082                                                rsip->out_token.len, 0);
1083
1084         rc = SECSVC_OK;
1085
1086 out:
1087         /* it looks like here we should put rsip also, but this mess up
1088          * with NFS cache mgmt code... FIXME
1089          * something like:
1090          * if (rsip)
1091          *     rsi_put(&rsip->h, &rsi_cache); */
1092
1093         if (rsci) {
1094                 /* if anything went wrong, we don't keep the context too */
1095                 if (rc != SECSVC_OK)
1096                         set_bit(CACHE_NEGATIVE, &rsci->h.flags);
1097                 else
1098                         CDEBUG(D_SEC, "create rsc with idx %#llx\n",
1099                                gss_handle_to_u64(&rsci->handle));
1100
1101                 COMPAT_RSC_PUT(&rsci->h, &rsc_cache);
1102         }
1103         RETURN(rc);
1104 }
1105
1106 struct gss_svc_ctx *gss_svc_upcall_get_ctx(struct ptlrpc_request *req,
1107                                            struct gss_wire_ctx *gw)
1108 {
1109         struct rsc *rsc;
1110
1111         rsc = gss_svc_searchbyctx(&gw->gw_handle);
1112         if (!rsc) {
1113                 CWARN("Invalid gss ctx idx %#llx from %s\n",
1114                       gss_handle_to_u64(&gw->gw_handle),
1115                       libcfs_nid2str(req->rq_peer.nid));
1116                 return NULL;
1117         }
1118
1119         return &rsc->ctx;
1120 }
1121
1122 void gss_svc_upcall_put_ctx(struct gss_svc_ctx *ctx)
1123 {
1124         struct rsc *rsc = container_of(ctx, struct rsc, ctx);
1125
1126         COMPAT_RSC_PUT(&rsc->h, &rsc_cache);
1127 }
1128
1129 void gss_svc_upcall_destroy_ctx(struct gss_svc_ctx *ctx)
1130 {
1131         struct rsc *rsc = container_of(ctx, struct rsc, ctx);
1132
1133         /* can't be found */
1134         set_bit(CACHE_NEGATIVE, &rsc->h.flags);
1135         /* to be removed at next scan */
1136         rsc->h.expiry_time = 1;
1137 }
1138
1139 int __init gss_init_svc_upcall(void)
1140 {
1141         int     i, rc;
1142
1143         spin_lock_init(&__ctx_index_lock);
1144         /*
1145          * this helps reducing context index confliction. after server reboot,
1146          * conflicting request from clients might be filtered out by initial
1147          * sequence number checking, thus no chance to sent error notification
1148          * back to clients.
1149          */
1150         cfs_get_random_bytes(&__ctx_index, sizeof(__ctx_index));
1151
1152         rc = _cache_register_net(&rsi_cache, &init_net);
1153         if (rc != 0)
1154                 return rc;
1155
1156         rc = _cache_register_net(&rsc_cache, &init_net);
1157         if (rc != 0) {
1158                 _cache_unregister_net(&rsi_cache, &init_net);
1159                 return rc;
1160         }
1161
1162         /* FIXME this looks stupid. we intend to give lsvcgssd a chance to open
1163          * the init upcall channel, otherwise there's big chance that the first
1164          * upcall issued before the channel be opened thus nfsv4 cache code will
1165          * drop the request direclty, thus lead to unnecessary recovery time.
1166          * here we wait at miximum 1.5 seconds. */
1167         for (i = 0; i < 6; i++) {
1168                 if (atomic_read(&rsi_cache.readers) > 0)
1169                         break;
1170                 set_current_state(TASK_UNINTERRUPTIBLE);
1171                 LASSERT(msecs_to_jiffies(MSEC_PER_SEC) >= 4);
1172                 schedule_timeout(msecs_to_jiffies(MSEC_PER_SEC / 4));
1173         }
1174
1175         if (atomic_read(&rsi_cache.readers) == 0)
1176                 CWARN("Init channel is not opened by lsvcgssd, following "
1177                       "request might be dropped until lsvcgssd is active\n");
1178
1179         return 0;
1180 }
1181
1182 void gss_exit_svc_upcall(void)
1183 {
1184         cache_purge(&rsi_cache);
1185         _cache_unregister_net(&rsi_cache, &init_net);
1186
1187         cache_purge(&rsc_cache);
1188         _cache_unregister_net(&rsc_cache, &init_net);
1189 }