Whamcloud - gitweb
6913e6848b7ac61d584df56cbb5c4b57011cc8f4
[fs/lustre-release.git] / lustre / ptlrpc / gss / gss_keyring.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/ptlrpc/gss/gss_keyring.c
37  *
38  * Author: Eric Mei <ericm@clusterfs.com>
39  */
40
41 #ifndef EXPORT_SYMTAB
42 # define EXPORT_SYMTAB
43 #endif
44 #define DEBUG_SUBSYSTEM S_SEC
45 #ifdef __KERNEL__
46 #include <linux/init.h>
47 #include <linux/module.h>
48 #include <linux/slab.h>
49 #include <linux/dcache.h>
50 #include <linux/fs.h>
51 #include <linux/random.h>
52 #include <linux/crypto.h>
53 #include <linux/key.h>
54 #include <linux/keyctl.h>
55 #include <linux/mutex.h>
56 #include <asm/atomic.h>
57 #else
58 #include <liblustre.h>
59 #endif
60
61 #include <obd.h>
62 #include <obd_class.h>
63 #include <obd_support.h>
64 #include <lustre/lustre_idl.h>
65 #include <lustre_sec.h>
66 #include <lustre_net.h>
67 #include <lustre_import.h>
68
69 #include "gss_err.h"
70 #include "gss_internal.h"
71 #include "gss_api.h"
72
73 static struct ptlrpc_sec_policy gss_policy_keyring;
74 static struct ptlrpc_ctx_ops gss_keyring_ctxops;
75 static struct key_type gss_key_type;
76
77 static int sec_install_rctx_kr(struct ptlrpc_sec *sec,
78                                struct ptlrpc_svc_ctx *svc_ctx);
79
80 /*
81  * the timeout is only for the case that upcall child process die abnormally.
82  * in any other cases it should finally update kernel key.
83  * 
84  * FIXME we'd better to incorporate the client & server side upcall timeouts
85  * into the framework of Adaptive Timeouts, but we need to figure out how to
86  * make sure that kernel knows the upcall processes is in-progress or died
87  * unexpectedly.
88  */
89 #define KEYRING_UPCALL_TIMEOUT  (obd_timeout + obd_timeout)
90
91 /****************************************
92  * internal helpers                     *
93  ****************************************/
94
95 #define DUMP_PROCESS_KEYRINGS(tsk)                                      \
96 {                                                                       \
97         CWARN("DUMP PK: %s[%u,%u/%u](<-%s[%u,%u/%u]): "                 \
98               "a %d, t %d, p %d, s %d, u %d, us %d, df %d\n",           \
99               tsk->comm, tsk->pid, tsk->uid, tsk->fsuid,                \
100               tsk->parent->comm, tsk->parent->pid,                      \
101               tsk->parent->uid, tsk->parent->fsuid,                     \
102               tsk->request_key_auth ?                                   \
103               tsk->request_key_auth->serial : 0,                        \
104               tsk->thread_keyring ?                                     \
105               tsk->thread_keyring->serial : 0,                          \
106               tsk->signal->process_keyring ?                            \
107               tsk->signal->process_keyring->serial : 0,                 \
108               tsk->signal->session_keyring ?                            \
109               tsk->signal->session_keyring->serial : 0,                 \
110               tsk->user->uid_keyring ?                                  \
111               tsk->user->uid_keyring->serial : 0,                       \
112               tsk->user->session_keyring ?                              \
113               tsk->user->session_keyring->serial : 0,                   \
114               tsk->jit_keyring                                          \
115              );                                                         \
116 }
117
118 #define DUMP_KEY(key)                                                   \
119 {                                                                       \
120         CWARN("DUMP KEY: %p(%d) ref %d u%u/g%u desc %s\n",              \
121               key, key->serial, atomic_read(&key->usage),               \
122               key->uid, key->gid,                                       \
123               key->description ? key->description : "n/a"               \
124              );                                                         \
125 }
126
127
128 static inline void keyring_upcall_lock(struct gss_sec_keyring *gsec_kr)
129 {
130 #ifdef HAVE_KEYRING_UPCALL_SERIALIZED
131         mutex_lock(&gsec_kr->gsk_uc_lock);
132 #endif
133 }
134
135 static inline void keyring_upcall_unlock(struct gss_sec_keyring *gsec_kr)
136 {
137 #ifdef HAVE_KEYRING_UPCALL_SERIALIZED
138         mutex_unlock(&gsec_kr->gsk_uc_lock);
139 #endif
140 }
141
142 static inline void key_revoke_locked(struct key *key)
143 {
144         set_bit(KEY_FLAG_REVOKED, &key->flags);
145 }
146
147 static void ctx_upcall_timeout_kr(unsigned long data)
148 {
149         struct ptlrpc_cli_ctx *ctx = (struct ptlrpc_cli_ctx *) data;
150         struct key            *key = ctx2gctx_keyring(ctx)->gck_key;
151
152         CWARN("ctx %p, key %p\n", ctx, key);
153
154         LASSERT(key);
155
156         cli_ctx_expire(ctx);
157         key_revoke_locked(key);
158         sptlrpc_cli_ctx_wakeup(ctx);
159 }
160
161 static
162 void ctx_start_timer_kr(struct ptlrpc_cli_ctx *ctx, long timeout)
163 {
164         struct gss_cli_ctx_keyring *gctx_kr = ctx2gctx_keyring(ctx);
165         struct timer_list          *timer = gctx_kr->gck_timer;
166
167         LASSERT(timer);
168
169         CDEBUG(D_SEC, "ctx %p: start timer %lds\n", ctx, timeout);
170         timeout = timeout * HZ + cfs_time_current();
171
172         init_timer(timer);
173         timer->expires = timeout;
174         timer->data = (unsigned long ) ctx;
175         timer->function = ctx_upcall_timeout_kr;
176
177         add_timer(timer);
178 }
179
180 /*
181  * caller should make sure no race with other threads
182  */
183 static
184 void ctx_clear_timer_kr(struct ptlrpc_cli_ctx *ctx)
185 {
186         struct gss_cli_ctx_keyring *gctx_kr = ctx2gctx_keyring(ctx);
187         struct timer_list          *timer = gctx_kr->gck_timer;
188
189         if (timer == NULL)
190                 return;
191
192         CDEBUG(D_SEC, "ctx %p, key %p\n", ctx, gctx_kr->gck_key);
193
194         gctx_kr->gck_timer = NULL;
195
196         del_singleshot_timer_sync(timer);
197
198         OBD_FREE_PTR(timer);
199 }
200
201 static
202 struct ptlrpc_cli_ctx *ctx_create_kr(struct ptlrpc_sec *sec,
203                                      struct vfs_cred *vcred)
204 {
205         struct ptlrpc_cli_ctx      *ctx;
206         struct gss_cli_ctx_keyring *gctx_kr;
207
208         OBD_ALLOC_PTR(gctx_kr);
209         if (gctx_kr == NULL)
210                 return NULL;
211
212         OBD_ALLOC_PTR(gctx_kr->gck_timer);
213         if (gctx_kr->gck_timer == NULL) {
214                 OBD_FREE_PTR(gctx_kr);
215                 return NULL;
216         }
217         init_timer(gctx_kr->gck_timer);
218
219         ctx = &gctx_kr->gck_base.gc_base;
220
221         if (gss_cli_ctx_init_common(sec, ctx, &gss_keyring_ctxops, vcred)) {
222                 OBD_FREE_PTR(gctx_kr->gck_timer);
223                 OBD_FREE_PTR(gctx_kr);
224                 return NULL;
225         }
226
227         ctx->cc_expire = cfs_time_current_sec() + KEYRING_UPCALL_TIMEOUT;
228         clear_bit(PTLRPC_CTX_NEW_BIT, &ctx->cc_flags);
229         atomic_inc(&ctx->cc_refcount); /* for the caller */
230
231         return ctx;
232 }
233
234 static void ctx_destroy_kr(struct ptlrpc_cli_ctx *ctx)
235 {
236         struct ptlrpc_sec          *sec = ctx->cc_sec;
237         struct gss_cli_ctx_keyring *gctx_kr = ctx2gctx_keyring(ctx);
238
239         CDEBUG(D_SEC, "destroying ctx %p\n", ctx);
240
241         /* at this time the association with key has been broken. */
242         LASSERT(sec);
243         LASSERT(atomic_read(&sec->ps_refcount) > 0);
244         LASSERT(atomic_read(&sec->ps_nctx) > 0);
245         LASSERT(test_bit(PTLRPC_CTX_CACHED_BIT, &ctx->cc_flags) == 0);
246         LASSERT(gctx_kr->gck_key == NULL);
247
248         ctx_clear_timer_kr(ctx);
249         LASSERT(gctx_kr->gck_timer == NULL);
250
251         if (gss_cli_ctx_fini_common(sec, ctx))
252                 return;
253
254         OBD_FREE_PTR(gctx_kr);
255
256         atomic_dec(&sec->ps_nctx);
257         sptlrpc_sec_put(sec);
258 }
259
260 static void ctx_release_kr(struct ptlrpc_cli_ctx *ctx, int sync)
261 {
262         if (sync) {
263                 ctx_destroy_kr(ctx);
264         } else {
265                 atomic_inc(&ctx->cc_refcount);
266                 sptlrpc_gc_add_ctx(ctx);
267         }
268 }
269
270 static void ctx_put_kr(struct ptlrpc_cli_ctx *ctx, int sync)
271 {
272         LASSERT(atomic_read(&ctx->cc_refcount) > 0);
273
274         if (atomic_dec_and_test(&ctx->cc_refcount))
275                 ctx_release_kr(ctx, sync);
276 }
277
278 /*
279  * key <-> ctx association and rules:
280  * - ctx might not bind with any key
281  * - key/ctx binding is protected by key semaphore (if the key present)
282  * - key and ctx each take a reference of the other
283  * - ctx enlist/unlist is protected by ctx spinlock
284  * - never enlist a ctx after it's been unlisted
285  * - whoever do enlist should also do bind, lock key before enlist:
286  *   - lock key -> lock ctx -> enlist -> unlock ctx -> bind -> unlock key
287  * - whoever do unlist should also do unbind:
288  *   - lock key -> lock ctx -> unlist -> unlock ctx -> unbind -> unlock key
289  *   - lock ctx -> unlist -> unlock ctx -> lock key -> unbind -> unlock key
290  */
291
292 static inline void spin_lock_if(spinlock_t *lock, int condition)
293 {
294         if (condition)
295                 spin_lock(lock);
296 }
297
298 static inline void spin_unlock_if(spinlock_t *lock, int condition)
299 {
300         if (condition)
301                 spin_unlock(lock);
302 }
303
304 static void ctx_enlist_kr(struct ptlrpc_cli_ctx *ctx, int is_root, int locked)
305 {
306         struct ptlrpc_sec      *sec = ctx->cc_sec;
307         struct gss_sec_keyring *gsec_kr = sec2gsec_keyring(sec);
308
309         LASSERT(!test_bit(PTLRPC_CTX_CACHED_BIT, &ctx->cc_flags));
310         LASSERT(atomic_read(&ctx->cc_refcount) > 0);
311
312         spin_lock_if(&sec->ps_lock, !locked);
313
314         atomic_inc(&ctx->cc_refcount);
315         set_bit(PTLRPC_CTX_CACHED_BIT, &ctx->cc_flags);
316         hlist_add_head(&ctx->cc_cache, &gsec_kr->gsk_clist);
317         if (is_root)
318                 gsec_kr->gsk_root_ctx = ctx;
319
320         spin_unlock_if(&sec->ps_lock, !locked);
321 }
322
323 /*
324  * Note after this get called, caller should not access ctx again because
325  * it might have been freed, unless caller hold at least one refcount of
326  * the ctx.
327  *
328  * return non-zero if we indeed unlist this ctx.
329  */
330 static int ctx_unlist_kr(struct ptlrpc_cli_ctx *ctx, int locked)
331 {
332         struct ptlrpc_sec       *sec = ctx->cc_sec;
333         struct gss_sec_keyring  *gsec_kr = sec2gsec_keyring(sec);
334
335         /* if hashed bit has gone, leave the job to somebody who is doing it */
336         if (test_and_clear_bit(PTLRPC_CTX_CACHED_BIT, &ctx->cc_flags) == 0)
337                 return 0;
338
339         /* drop ref inside spin lock to prevent race with other operations */
340         spin_lock_if(&sec->ps_lock, !locked);
341
342         if (gsec_kr->gsk_root_ctx == ctx)
343                 gsec_kr->gsk_root_ctx = NULL;
344         hlist_del_init(&ctx->cc_cache);
345         atomic_dec(&ctx->cc_refcount);
346
347         spin_unlock_if(&sec->ps_lock, !locked);
348
349         return 1;
350 }
351
352 /*
353  * bind a key with a ctx together.
354  * caller must hold write lock of the key, as well as ref on key & ctx.
355  */
356 static void bind_key_ctx(struct key *key, struct ptlrpc_cli_ctx *ctx)
357 {
358         LASSERT(atomic_read(&ctx->cc_refcount) > 0);
359         LASSERT(atomic_read(&key->usage) > 0);
360         LASSERT(ctx2gctx_keyring(ctx)->gck_key == NULL);
361         LASSERT(key->payload.data == NULL);
362
363         /* at this time context may or may not in list. */
364         key_get(key);
365         atomic_inc(&ctx->cc_refcount);
366         ctx2gctx_keyring(ctx)->gck_key = key;
367         key->payload.data = ctx;
368 }
369
370 /*
371  * unbind a key and a ctx.
372  * caller must hold write lock, as well as a ref of the key.
373  */
374 static void unbind_key_ctx(struct key *key, struct ptlrpc_cli_ctx *ctx)
375 {
376         LASSERT(key->payload.data == ctx);
377         LASSERT(test_bit(PTLRPC_CTX_CACHED_BIT, &ctx->cc_flags) == 0);
378
379         /* must revoke the key, or others may treat it as newly created */
380         key_revoke_locked(key);
381
382         key->payload.data = NULL;
383         ctx2gctx_keyring(ctx)->gck_key = NULL;
384
385         /* once ctx get split from key, the timer is meaningless */
386         ctx_clear_timer_kr(ctx);
387
388         ctx_put_kr(ctx, 1);
389         key_put(key);
390 }
391
392 /*
393  * given a ctx, unbind with its coupled key, if any.
394  * unbind could only be called once, so we don't worry the key be released
395  * by someone else.
396  */
397 static void unbind_ctx_kr(struct ptlrpc_cli_ctx *ctx)
398 {
399         struct key      *key = ctx2gctx_keyring(ctx)->gck_key;
400
401         if (key) {
402                 LASSERT(key->payload.data == ctx);
403
404                 key_get(key);
405                 down_write(&key->sem);
406                 unbind_key_ctx(key, ctx);
407                 up_write(&key->sem);
408                 key_put(key);
409         }
410 }
411
412 /*
413  * given a key, unbind with its coupled ctx, if any.
414  * caller must hold write lock, as well as a ref of the key.
415  */
416 static void unbind_key_locked(struct key *key)
417 {
418         struct ptlrpc_cli_ctx   *ctx = key->payload.data;
419
420         if (ctx)
421                 unbind_key_ctx(key, ctx);
422 }
423
424 /*
425  * unlist a ctx, and unbind from coupled key
426  */
427 static void kill_ctx_kr(struct ptlrpc_cli_ctx *ctx)
428 {
429         if (ctx_unlist_kr(ctx, 0))
430                 unbind_ctx_kr(ctx);
431 }
432
433 /*
434  * given a key, unlist and unbind with the coupled ctx (if any).
435  * caller must hold write lock, as well as a ref of the key.
436  */
437 static void kill_key_locked(struct key *key)
438 {
439         struct ptlrpc_cli_ctx *ctx = key->payload.data;
440
441         if (ctx && ctx_unlist_kr(ctx, 0))
442                 unbind_key_locked(key);
443 }
444
445 /*
446  * caller should hold one ref on contexts in freelist.
447  */
448 static void dispose_ctx_list_kr(struct hlist_head *freelist)
449 {
450         struct hlist_node      *pos, *next;
451         struct ptlrpc_cli_ctx  *ctx;
452         struct gss_cli_ctx     *gctx;
453
454         hlist_for_each_entry_safe(ctx, pos, next, freelist, cc_cache) {
455                 hlist_del_init(&ctx->cc_cache);
456
457                 /* reverse ctx: update current seq to buddy svcctx if exist.
458                  * ideally this should be done at gss_cli_ctx_finalize(), but
459                  * the ctx destroy could be delayed by:
460                  *  1) ctx still has reference;
461                  *  2) ctx destroy is asynchronous;
462                  * and reverse import call inval_all_ctx() require this be done
463                  *_immediately_ otherwise newly created reverse ctx might copy
464                  * the very old sequence number from svcctx. */
465                 gctx = ctx2gctx(ctx);
466                 if (!rawobj_empty(&gctx->gc_svc_handle) &&
467                     sec_is_reverse(gctx->gc_base.cc_sec)) {
468                         gss_svc_upcall_update_sequence(&gctx->gc_svc_handle,
469                                         (__u32) atomic_read(&gctx->gc_seq));
470                 }
471
472                 /* we need to wakeup waiting reqs here. the context might
473                  * be forced released before upcall finished, then the
474                  * late-arrived downcall can't find the ctx even. */
475                 sptlrpc_cli_ctx_wakeup(ctx);
476
477                 unbind_ctx_kr(ctx);
478                 ctx_put_kr(ctx, 0);
479         }
480 }
481
482 /*
483  * lookup a root context directly in a sec, return root ctx with a
484  * reference taken or NULL.
485  */
486 static
487 struct ptlrpc_cli_ctx * sec_lookup_root_ctx_kr(struct ptlrpc_sec *sec)
488 {
489         struct gss_sec_keyring  *gsec_kr = sec2gsec_keyring(sec);
490         struct ptlrpc_cli_ctx   *ctx = NULL;
491
492         spin_lock(&sec->ps_lock);
493
494         ctx = gsec_kr->gsk_root_ctx;
495
496         if (ctx == NULL && unlikely(sec_is_reverse(sec))) {
497                 struct hlist_node      *node;
498                 struct ptlrpc_cli_ctx  *tmp;
499
500                 /* reverse ctx, search root ctx in list, choose the one
501                  * with shortest expire time, which is most possibly have
502                  * an established peer ctx at client side. */
503                 hlist_for_each_entry(tmp, node, &gsec_kr->gsk_clist, cc_cache) {
504                         if (ctx == NULL || ctx->cc_expire == 0 ||
505                             ctx->cc_expire > tmp->cc_expire) {
506                                 ctx = tmp;
507                                 /* promote to be root_ctx */
508                                 gsec_kr->gsk_root_ctx = ctx;
509                         }
510                 }
511         }
512
513         if (ctx) {
514                 LASSERT(atomic_read(&ctx->cc_refcount) > 0);
515                 LASSERT(!hlist_empty(&gsec_kr->gsk_clist));
516                 atomic_inc(&ctx->cc_refcount);
517         }
518
519         spin_unlock(&sec->ps_lock);
520
521         return ctx;
522 }
523
524 #define RVS_CTX_EXPIRE_NICE    (10)
525
526 static
527 void rvs_sec_install_root_ctx_kr(struct ptlrpc_sec *sec,
528                                  struct ptlrpc_cli_ctx *new_ctx,
529                                  struct key *key)
530 {
531         struct gss_sec_keyring *gsec_kr = sec2gsec_keyring(sec);
532         struct hlist_node      *hnode;
533         struct ptlrpc_cli_ctx  *ctx;
534         cfs_time_t              now;
535         ENTRY;
536
537         LASSERT(sec_is_reverse(sec));
538
539         spin_lock(&sec->ps_lock);
540
541         now = cfs_time_current_sec();
542
543         /* set all existing ctxs short expiry */
544         hlist_for_each_entry(ctx, hnode, &gsec_kr->gsk_clist, cc_cache) {
545                 if (ctx->cc_expire > now + RVS_CTX_EXPIRE_NICE) {
546                         ctx->cc_early_expire = 1;
547                         ctx->cc_expire = now + RVS_CTX_EXPIRE_NICE;
548                 }
549         }
550
551         /* if there's root_ctx there, instead obsolete the current
552          * immediately, we leave it continue operating for a little while.
553          * hopefully when the first backward rpc with newest ctx send out,
554          * the client side already have the peer ctx well established. */
555         ctx_enlist_kr(new_ctx, gsec_kr->gsk_root_ctx ? 0 : 1, 1);
556
557         if (key)
558                 bind_key_ctx(key, new_ctx);
559
560         spin_unlock(&sec->ps_lock);
561 }
562
563 static void construct_key_desc(void *buf, int bufsize,
564                                struct ptlrpc_sec *sec, uid_t uid)
565 {
566         snprintf(buf, bufsize, "%d@%x", uid, sec->ps_id);
567         ((char *)buf)[bufsize - 1] = '\0';
568 }
569
570 /****************************************
571  * sec apis                             *
572  ****************************************/
573
574 static
575 struct ptlrpc_sec * gss_sec_create_kr(struct obd_import *imp,
576                                       struct ptlrpc_svc_ctx *svcctx,
577                                       struct sptlrpc_flavor *sf)
578 {
579         struct gss_sec_keyring  *gsec_kr;
580         ENTRY;
581
582         OBD_ALLOC(gsec_kr, sizeof(*gsec_kr));
583         if (gsec_kr == NULL)
584                 RETURN(NULL);
585
586         CFS_INIT_HLIST_HEAD(&gsec_kr->gsk_clist);
587         gsec_kr->gsk_root_ctx = NULL;
588         mutex_init(&gsec_kr->gsk_root_uc_lock);
589 #ifdef HAVE_KEYRING_UPCALL_SERIALIZED
590         mutex_init(&gsec_kr->gsk_uc_lock);
591 #endif
592
593         if (gss_sec_create_common(&gsec_kr->gsk_base, &gss_policy_keyring,
594                                   imp, svcctx, sf))
595                 goto err_free;
596
597         if (svcctx != NULL &&
598             sec_install_rctx_kr(&gsec_kr->gsk_base.gs_base, svcctx)) {
599                 gss_sec_destroy_common(&gsec_kr->gsk_base);
600                 goto err_free;
601         }
602
603         RETURN(&gsec_kr->gsk_base.gs_base);
604
605 err_free:
606         OBD_FREE(gsec_kr, sizeof(*gsec_kr));
607         RETURN(NULL);
608 }
609
610 static
611 void gss_sec_destroy_kr(struct ptlrpc_sec *sec)
612 {
613         struct gss_sec          *gsec = sec2gsec(sec);
614         struct gss_sec_keyring  *gsec_kr = sec2gsec_keyring(sec);
615
616         CDEBUG(D_SEC, "destroy %s@%p\n", sec->ps_policy->sp_name, sec);
617
618         LASSERT(hlist_empty(&gsec_kr->gsk_clist));
619         LASSERT(gsec_kr->gsk_root_ctx == NULL);
620
621         gss_sec_destroy_common(gsec);
622
623         OBD_FREE(gsec_kr, sizeof(*gsec_kr));
624 }
625
626 static inline int user_is_root(struct ptlrpc_sec *sec, struct vfs_cred *vcred)
627 {
628         /* except the ROOTONLY flag, treat it as root user only if real uid
629          * is 0, euid/fsuid being 0 are handled as setuid scenarios */
630         if (sec_is_rootonly(sec) || (vcred->vc_uid == 0))
631                 return 1;
632         else
633                 return 0;
634 }
635
636 /*
637  * unlink request key from it's ring, which is linked during request_key().
638  * sadly, we have to 'guess' which keyring it's linked to.
639  *
640  * FIXME this code is fragile, depend on how request_key_link() is implemented.
641  */
642 static void request_key_unlink(struct key *key)
643 {
644         struct task_struct *tsk = current;
645         struct key *ring;
646
647         switch (tsk->jit_keyring) {
648         case KEY_REQKEY_DEFL_DEFAULT:
649         case KEY_REQKEY_DEFL_THREAD_KEYRING:
650                 ring = key_get(tsk->thread_keyring);
651                 if (ring)
652                         break;
653         case KEY_REQKEY_DEFL_PROCESS_KEYRING:
654                 ring = key_get(tsk->signal->process_keyring);
655                 if (ring)
656                         break;
657         case KEY_REQKEY_DEFL_SESSION_KEYRING:
658                 rcu_read_lock();
659                 ring = key_get(rcu_dereference(tsk->signal->session_keyring));
660                 rcu_read_unlock();
661                 if (ring)
662                         break;
663         case KEY_REQKEY_DEFL_USER_SESSION_KEYRING:
664                 ring = key_get(tsk->user->session_keyring);
665                 break;
666         case KEY_REQKEY_DEFL_USER_KEYRING:
667                 ring = key_get(tsk->user->uid_keyring);
668                 break;
669         case KEY_REQKEY_DEFL_GROUP_KEYRING:
670         default:
671                 LBUG();
672         }
673
674         LASSERT(ring);
675         key_unlink(ring, key);
676         key_put(ring);
677 }
678
679 static
680 struct ptlrpc_cli_ctx * gss_sec_lookup_ctx_kr(struct ptlrpc_sec *sec,
681                                               struct vfs_cred *vcred,
682                                               int create, int remove_dead)
683 {
684         struct obd_import       *imp = sec->ps_import;
685         struct gss_sec_keyring  *gsec_kr = sec2gsec_keyring(sec);
686         struct ptlrpc_cli_ctx   *ctx = NULL;
687         unsigned int             is_root = 0, create_new = 0;
688         struct key              *key;
689         char                     desc[24];
690         char                    *coinfo;
691         int                      coinfo_size;
692         char                    *co_flags = "";
693         ENTRY;
694
695         LASSERT(imp != NULL);
696
697         is_root = user_is_root(sec, vcred);
698
699         /* a little bit optimization for root context */
700         if (is_root) {
701                 ctx = sec_lookup_root_ctx_kr(sec);
702                 /*
703                  * Only lookup directly for REVERSE sec, which should
704                  * always succeed.
705                  */
706                 if (ctx || sec_is_reverse(sec))
707                         RETURN(ctx);
708         }
709
710         LASSERT(create != 0);
711
712         /* for root context, obtain lock and check again, this time hold
713          * the root upcall lock, make sure nobody else populated new root
714          * context after last check. */
715         if (is_root) {
716                 mutex_lock(&gsec_kr->gsk_root_uc_lock);
717
718                 ctx = sec_lookup_root_ctx_kr(sec);
719                 if (ctx)
720                         goto out;
721
722                 /* update reverse handle for root user */
723                 sec2gsec(sec)->gs_rvs_hdl = gss_get_next_ctx_index();
724
725                 co_flags = "r";
726         }
727
728         /* in case of setuid, key will be constructed as owner of fsuid/fsgid,
729          * but we do authentication based on real uid/gid. the key permission
730          * bits will be exactly as POS_ALL, so only processes who subscribed
731          * this key could have the access, although the quota might be counted
732          * on others (fsuid/fsgid).
733          *
734          * keyring will use fsuid/fsgid as upcall parameters, so we have to
735          * encode real uid/gid into callout info.
736          */
737
738         construct_key_desc(desc, sizeof(desc), sec, vcred->vc_uid);
739
740         /* callout info format:
741          * secid:mech:uid:gid:flags:svc_type:peer_nid:target_uuid
742          */
743         coinfo_size = sizeof(struct obd_uuid) + MAX_OBD_NAME + 64;
744         OBD_ALLOC(coinfo, coinfo_size);
745         if (coinfo == NULL)
746                 goto out;
747
748         snprintf(coinfo, coinfo_size, "%d:%s:%u:%u:%s:%d:"LPX64":%s",
749                  sec->ps_id, sec2gsec(sec)->gs_mech->gm_name,
750                  vcred->vc_uid, vcred->vc_gid,
751                  co_flags, import_to_gss_svc(imp),
752                  imp->imp_connection->c_peer.nid, imp->imp_obd->obd_name);
753
754         CDEBUG(D_SEC, "requesting key for %s\n", desc);
755
756         keyring_upcall_lock(gsec_kr);
757         key = request_key(&gss_key_type, desc, coinfo);
758         keyring_upcall_unlock(gsec_kr);
759
760         OBD_FREE(coinfo, coinfo_size);
761
762         if (IS_ERR(key)) {
763                 CERROR("failed request key: %ld\n", PTR_ERR(key));
764                 goto out;
765         }
766         CDEBUG(D_SEC, "obtained key %08x for %s\n", key->serial, desc);
767
768         /* once payload.data was pointed to a ctx, it never changes until
769          * we de-associate them; but parallel request_key() may return
770          * a key with payload.data == NULL at the same time. so we still
771          * need wirtelock of key->sem to serialize them. */
772         down_write(&key->sem);
773
774         if (likely(key->payload.data != NULL)) {
775                 ctx = key->payload.data;
776
777                 LASSERT(atomic_read(&ctx->cc_refcount) >= 1);
778                 LASSERT(ctx2gctx_keyring(ctx)->gck_key == key);
779                 LASSERT(atomic_read(&key->usage) >= 2);
780
781                 /* simply take a ref and return. it's upper layer's
782                  * responsibility to detect & replace dead ctx. */
783                 atomic_inc(&ctx->cc_refcount);
784         } else {
785                 /* pre initialization with a cli_ctx. this can't be done in
786                  * key_instantiate() because we'v no enough information
787                  * there. */
788                 ctx = ctx_create_kr(sec, vcred);
789                 if (ctx != NULL) {
790                         ctx_enlist_kr(ctx, is_root, 0);
791                         bind_key_ctx(key, ctx);
792
793                         ctx_start_timer_kr(ctx, KEYRING_UPCALL_TIMEOUT);
794
795                         CDEBUG(D_SEC, "installed key %p <-> ctx %p (sec %p)\n",
796                                key, ctx, sec);
797                 } else {
798                         /* we'd prefer to call key_revoke(), but we more like
799                          * to revoke it within this key->sem locked period. */
800                         key_revoke_locked(key);
801                 }
802
803                 create_new = 1;
804         }
805
806         up_write(&key->sem);
807
808         if (is_root && create_new)
809                 request_key_unlink(key);
810
811         key_put(key);
812 out:
813         if (is_root)
814                 mutex_unlock(&gsec_kr->gsk_root_uc_lock);
815         RETURN(ctx);
816 }
817
818 static
819 void gss_sec_release_ctx_kr(struct ptlrpc_sec *sec,
820                             struct ptlrpc_cli_ctx *ctx,
821                             int sync)
822 {
823         LASSERT(atomic_read(&sec->ps_refcount) > 0);
824         LASSERT(atomic_read(&ctx->cc_refcount) == 0);
825         ctx_release_kr(ctx, sync);
826 }
827
828 /*
829  * flush context of normal user, we must resort to keyring itself to find out
830  * contexts which belong to me.
831  *
832  * Note here we suppose only to flush _my_ context, the "uid" will
833  * be ignored in the search.
834  */
835 static
836 void flush_user_ctx_cache_kr(struct ptlrpc_sec *sec,
837                              uid_t uid,
838                              int grace, int force)
839 {
840         struct key              *key;
841         char                     desc[24];
842
843         /* nothing to do for reverse or rootonly sec */
844         if (sec_is_reverse(sec) || sec_is_rootonly(sec))
845                 return;
846
847         construct_key_desc(desc, sizeof(desc), sec, uid);
848
849         /* there should be only one valid key, but we put it in the
850          * loop in case of any weird cases */
851         for (;;) {
852                 key = request_key(&gss_key_type, desc, NULL);
853                 if (IS_ERR(key)) {
854                         CDEBUG(D_SEC, "No more key found for current user\n");
855                         break;
856                 }
857
858                 down_write(&key->sem);
859
860                 kill_key_locked(key);
861
862                 /* kill_key_locked() should usually revoke the key, but we
863                  * revoke it again to make sure, e.g. some case the key may
864                  * not well coupled with a context. */
865                 key_revoke_locked(key);
866
867                 up_write(&key->sem);
868
869                 key_put(key);
870         }
871 }
872
873 /*
874  * flush context of root or all, we iterate through the list.
875  */
876 static
877 void flush_spec_ctx_cache_kr(struct ptlrpc_sec *sec,
878                              uid_t uid,
879                              int grace, int force)
880 {
881         struct gss_sec_keyring *gsec_kr;
882         struct hlist_head       freelist = CFS_HLIST_HEAD_INIT;
883         struct hlist_node      *pos, *next;
884         struct ptlrpc_cli_ctx  *ctx;
885         ENTRY;
886
887         gsec_kr = sec2gsec_keyring(sec);
888
889         spin_lock(&sec->ps_lock);
890         hlist_for_each_entry_safe(ctx, pos, next,
891                                   &gsec_kr->gsk_clist, cc_cache) {
892                 LASSERT(atomic_read(&ctx->cc_refcount) > 0);
893
894                 if (uid != -1 && uid != ctx->cc_vcred.vc_uid)
895                         continue;
896
897                 /* at this moment there's at least 2 base reference:
898                  * key association and in-list. */
899                 if (atomic_read(&ctx->cc_refcount) > 2) {
900                         if (!force)
901                                 continue;
902                         CWARN("flush busy ctx %p(%u->%s, extra ref %d)\n",
903                               ctx, ctx->cc_vcred.vc_uid,
904                               sec2target_str(ctx->cc_sec),
905                               atomic_read(&ctx->cc_refcount) - 2);
906                 }
907
908                 set_bit(PTLRPC_CTX_DEAD_BIT, &ctx->cc_flags);
909                 if (!grace)
910                         clear_bit(PTLRPC_CTX_UPTODATE_BIT, &ctx->cc_flags);
911
912                 atomic_inc(&ctx->cc_refcount);
913
914                 if (ctx_unlist_kr(ctx, 1)) {
915                         hlist_add_head(&ctx->cc_cache, &freelist);
916                 } else {
917                         LASSERT(atomic_read(&ctx->cc_refcount) >= 2);
918                         atomic_dec(&ctx->cc_refcount);
919                 }
920         }
921         spin_unlock(&sec->ps_lock);
922
923         dispose_ctx_list_kr(&freelist);
924         EXIT;
925 }
926
927 static
928 int gss_sec_flush_ctx_cache_kr(struct ptlrpc_sec *sec,
929                                uid_t uid,
930                                int grace, int force)
931 {
932         ENTRY;
933
934         CDEBUG(D_SEC, "sec %p(%d, nctx %d), uid %d, grace %d, force %d\n",
935                sec, atomic_read(&sec->ps_refcount), atomic_read(&sec->ps_nctx),
936                uid, grace, force);
937
938         if (uid != -1 && uid != 0)
939                 flush_user_ctx_cache_kr(sec, uid, grace, force);
940         else
941                 flush_spec_ctx_cache_kr(sec, uid, grace, force);
942
943         RETURN(0);
944 }
945
946 static
947 void gss_sec_gc_ctx_kr(struct ptlrpc_sec *sec)
948 {
949         struct gss_sec_keyring *gsec_kr = sec2gsec_keyring(sec);
950         struct hlist_head       freelist = CFS_HLIST_HEAD_INIT;
951         struct hlist_node      *pos, *next;
952         struct ptlrpc_cli_ctx  *ctx;
953         ENTRY;
954
955         CWARN("running gc\n");
956
957         spin_lock(&sec->ps_lock);
958         hlist_for_each_entry_safe(ctx, pos, next,
959                                   &gsec_kr->gsk_clist, cc_cache) {
960                 LASSERT(atomic_read(&ctx->cc_refcount) > 0);
961
962                 atomic_inc(&ctx->cc_refcount);
963
964                 if (cli_ctx_check_death(ctx) && ctx_unlist_kr(ctx, 1)) {
965                         hlist_add_head(&ctx->cc_cache, &freelist);
966                         CWARN("unhashed ctx %p\n", ctx);
967                 } else {
968                         LASSERT(atomic_read(&ctx->cc_refcount) >= 2);
969                         atomic_dec(&ctx->cc_refcount);
970                 }
971         }
972         spin_unlock(&sec->ps_lock);
973
974         dispose_ctx_list_kr(&freelist);
975         EXIT;
976         return;
977 }
978
979 static
980 int gss_sec_display_kr(struct ptlrpc_sec *sec, struct seq_file *seq)
981 {
982         struct gss_sec_keyring *gsec_kr = sec2gsec_keyring(sec);
983         struct hlist_node      *pos, *next;
984         struct ptlrpc_cli_ctx  *ctx;
985         struct gss_cli_ctx     *gctx;
986         time_t                  now = cfs_time_current_sec();
987         ENTRY;
988
989         spin_lock(&sec->ps_lock);
990         hlist_for_each_entry_safe(ctx, pos, next,
991                                   &gsec_kr->gsk_clist, cc_cache) {
992                 struct key             *key;
993                 char                    flags_str[40];
994                 char                    mech[40];
995
996                 gctx = ctx2gctx(ctx);
997                 key = ctx2gctx_keyring(ctx)->gck_key;
998
999                 gss_cli_ctx_flags2str(ctx->cc_flags,
1000                                       flags_str, sizeof(flags_str));
1001
1002                 if (gctx->gc_mechctx)
1003                         lgss_display(gctx->gc_mechctx, mech, sizeof(mech));
1004                 else
1005                         snprintf(mech, sizeof(mech), "N/A");
1006                 mech[sizeof(mech) - 1] = '\0';
1007
1008                 seq_printf(seq, "%p: uid %u, ref %d, expire %ld(%+ld), fl %s, "
1009                            "seq %d, win %u, key %08x(ref %d), "
1010                            "hdl "LPX64":"LPX64", mech: %s\n",
1011                            ctx, ctx->cc_vcred.vc_uid,
1012                            atomic_read(&ctx->cc_refcount),
1013                            ctx->cc_expire,
1014                            ctx->cc_expire ?  ctx->cc_expire - now : 0,
1015                            flags_str,
1016                            atomic_read(&gctx->gc_seq),
1017                            gctx->gc_win,
1018                            key ? key->serial : 0,
1019                            key ? atomic_read(&key->usage) : 0,
1020                            gss_handle_to_u64(&gctx->gc_handle),
1021                            gss_handle_to_u64(&gctx->gc_svc_handle),
1022                            mech);
1023         }
1024         spin_unlock(&sec->ps_lock);
1025
1026         RETURN(0);
1027 }
1028
1029 /****************************************
1030  * cli_ctx apis                         *
1031  ****************************************/
1032
1033 static
1034 int gss_cli_ctx_refresh_kr(struct ptlrpc_cli_ctx *ctx)
1035 {
1036         /* upcall is already on the way */
1037         return 0;
1038 }
1039
1040 static
1041 int gss_cli_ctx_validate_kr(struct ptlrpc_cli_ctx *ctx)
1042 {
1043         LASSERT(atomic_read(&ctx->cc_refcount) > 0);
1044         LASSERT(ctx->cc_sec);
1045
1046         if (cli_ctx_check_death(ctx)) {
1047                 kill_ctx_kr(ctx);
1048                 return 1;
1049         }
1050
1051         if (cli_ctx_is_ready(ctx))
1052                 return 0;
1053         return 1;
1054 }
1055
1056 static
1057 void gss_cli_ctx_die_kr(struct ptlrpc_cli_ctx *ctx, int grace)
1058 {
1059         LASSERT(atomic_read(&ctx->cc_refcount) > 0);
1060         LASSERT(ctx->cc_sec);
1061
1062         cli_ctx_expire(ctx);
1063         kill_ctx_kr(ctx);
1064 }
1065
1066 /****************************************
1067  * (reverse) service                    *
1068  ****************************************/
1069
1070 /*
1071  * reverse context could have nothing to do with keyrings. here we still keep
1072  * the version which bind to a key, for future reference.
1073  */
1074 #define HAVE_REVERSE_CTX_NOKEY
1075
1076 #ifdef HAVE_REVERSE_CTX_NOKEY
1077
1078 static
1079 int sec_install_rctx_kr(struct ptlrpc_sec *sec,
1080                         struct ptlrpc_svc_ctx *svc_ctx)
1081 {
1082         struct ptlrpc_cli_ctx   *cli_ctx;
1083         struct vfs_cred          vcred = { 0, 0 };
1084         int                      rc;
1085
1086         LASSERT(sec);
1087         LASSERT(svc_ctx);
1088
1089         cli_ctx = ctx_create_kr(sec, &vcred);
1090         if (cli_ctx == NULL)
1091                 return -ENOMEM;
1092
1093         rc = gss_copy_rvc_cli_ctx(cli_ctx, svc_ctx);
1094         if (rc) {
1095                 CERROR("failed copy reverse cli ctx: %d\n", rc);
1096
1097                 ctx_put_kr(cli_ctx, 1);
1098                 return rc;
1099         }
1100
1101         rvs_sec_install_root_ctx_kr(sec, cli_ctx, NULL);
1102
1103         ctx_put_kr(cli_ctx, 1);
1104
1105         return 0;
1106 }
1107
1108 #else /* ! HAVE_REVERSE_CTX_NOKEY */
1109
1110 static
1111 int sec_install_rctx_kr(struct ptlrpc_sec *sec,
1112                         struct ptlrpc_svc_ctx *svc_ctx)
1113 {
1114         struct ptlrpc_cli_ctx   *cli_ctx = NULL;
1115         struct key              *key;
1116         struct vfs_cred          vcred = { 0, 0 };
1117         char                     desc[64];
1118         int                      rc;
1119
1120         LASSERT(sec);
1121         LASSERT(svc_ctx);
1122         CWARN("called\n");
1123
1124         construct_key_desc(desc, sizeof(desc), sec, 0);
1125
1126         key = key_alloc(&gss_key_type, desc, 0, 0,
1127                         KEY_POS_ALL | KEY_USR_ALL, 1);
1128         if (IS_ERR(key)) {
1129                 CERROR("failed to alloc key: %ld\n", PTR_ERR(key));
1130                 return PTR_ERR(key);
1131         }
1132
1133         rc = key_instantiate_and_link(key, NULL, 0, NULL, NULL);
1134         if (rc) {
1135                 CERROR("failed to instantiate key: %d\n", rc);
1136                 goto err_revoke;
1137         }
1138
1139         down_write(&key->sem);
1140
1141         LASSERT(key->payload.data == NULL);
1142
1143         cli_ctx = ctx_create_kr(sec, &vcred);
1144         if (cli_ctx == NULL) {
1145                 rc = -ENOMEM;
1146                 goto err_up;
1147         }
1148
1149         rc = gss_copy_rvc_cli_ctx(cli_ctx, svc_ctx);
1150         if (rc) {
1151                 CERROR("failed copy reverse cli ctx: %d\n", rc);
1152                 goto err_put;
1153         }
1154
1155         rvs_sec_install_root_ctx_kr(sec, cli_ctx, key);
1156
1157         ctx_put_kr(cli_ctx, 1);
1158         up_write(&key->sem);
1159
1160         rc = 0;
1161         CWARN("ok!\n");
1162 out:
1163         key_put(key);
1164         return rc;
1165
1166 err_put:
1167         ctx_put_kr(cli_ctx, 1);
1168 err_up:
1169         up_write(&key->sem);
1170 err_revoke:
1171         key_revoke(key);
1172         goto out;
1173 }
1174
1175 #endif /* HAVE_REVERSE_CTX_NOKEY */
1176
1177 /****************************************
1178  * service apis                         *
1179  ****************************************/
1180
1181 static
1182 int gss_svc_accept_kr(struct ptlrpc_request *req)
1183 {
1184         return gss_svc_accept(&gss_policy_keyring, req);
1185 }
1186
1187 static
1188 int gss_svc_install_rctx_kr(struct obd_import *imp,
1189                             struct ptlrpc_svc_ctx *svc_ctx)
1190 {
1191         struct ptlrpc_sec *sec;
1192         int                rc;
1193
1194         sec = sptlrpc_import_sec_ref(imp);
1195         LASSERT(sec);
1196
1197         rc = sec_install_rctx_kr(sec, svc_ctx);
1198         sptlrpc_sec_put(sec);
1199
1200         return rc;
1201 }
1202
1203 /****************************************
1204  * key apis                             *
1205  ****************************************/
1206
1207 static
1208 int gss_kt_instantiate(struct key *key, const void *data, size_t datalen)
1209 {
1210         int             rc;
1211         ENTRY;
1212
1213         if (data != NULL || datalen != 0) {
1214                 CERROR("invalid: data %p, len "LPSZ"\n", data, datalen);
1215                 RETURN(-EINVAL);
1216         }
1217
1218         if (key->payload.data != 0) {
1219                 CERROR("key already have payload\n");
1220                 RETURN(-EINVAL);
1221         }
1222
1223         /* link the key to session keyring, so following context negotiation
1224          * rpc fired from user space could find this key. This will be unlinked
1225          * automatically when upcall processes die.
1226          *
1227          * we can't do this through keyctl from userspace, because the upcall
1228          * might be neither possessor nor owner of the key (setuid).
1229          *
1230          * the session keyring is created upon upcall, and don't change all
1231          * the way until upcall finished, so rcu lock is not needed here.
1232          */
1233         LASSERT(cfs_current()->signal->session_keyring);
1234
1235         lockdep_off();
1236         rc = key_link(cfs_current()->signal->session_keyring, key);
1237         lockdep_on();
1238         if (unlikely(rc)) {
1239                 CERROR("failed to link key %08x to keyring %08x: %d\n",
1240                        key->serial,
1241                        cfs_current()->signal->session_keyring->serial, rc);
1242                 RETURN(rc);
1243         }
1244
1245         CDEBUG(D_SEC, "key %p instantiated, ctx %p\n", key, key->payload.data);
1246         RETURN(0);
1247 }
1248
1249 /*
1250  * called with key semaphore write locked. it means we can operate
1251  * on the context without fear of loosing refcount.
1252  */
1253 static
1254 int gss_kt_update(struct key *key, const void *data, size_t datalen)
1255 {
1256         struct ptlrpc_cli_ctx   *ctx = key->payload.data;
1257         struct gss_cli_ctx      *gctx;
1258         rawobj_t                 tmpobj = RAWOBJ_EMPTY;
1259         __u32                    datalen32 = (__u32) datalen;
1260         int                      rc;
1261         ENTRY;
1262
1263         if (data == NULL || datalen == 0) {
1264                 CWARN("invalid: data %p, len "LPSZ"\n", data, datalen);
1265                 RETURN(-EINVAL);
1266         }
1267
1268         /* if upcall finished negotiation too fast (mostly likely because
1269          * of local error happened) and call kt_update(), the ctx
1270          * might be still NULL. but the key will finally be associate
1271          * with a context, or be revoked. if key status is fine, return
1272          * -EAGAIN to allow userspace sleep a while and call again. */
1273         if (ctx == NULL) {
1274                 CDEBUG(D_SEC, "update too soon: key %p(%x) flags %lx\n",
1275                       key, key->serial, key->flags);
1276
1277                 rc = key_validate(key);
1278                 if (rc == 0)
1279                         RETURN(-EAGAIN);
1280                 else
1281                         RETURN(rc);
1282         }
1283
1284         LASSERT(atomic_read(&ctx->cc_refcount) > 0);
1285         LASSERT(ctx->cc_sec);
1286
1287         ctx_clear_timer_kr(ctx);
1288
1289         /* don't proceed if already refreshed */
1290         if (cli_ctx_is_refreshed(ctx)) {
1291                 CWARN("ctx already done refresh\n");
1292                 sptlrpc_cli_ctx_wakeup(ctx);
1293                 RETURN(0);
1294         }
1295
1296         sptlrpc_cli_ctx_get(ctx);
1297         gctx = ctx2gctx(ctx);
1298
1299         rc = buffer_extract_bytes(&data, &datalen32, &gctx->gc_win,
1300                                   sizeof(gctx->gc_win));
1301         if (rc) {
1302                 CERROR("failed extract seq_win\n");
1303                 goto out;
1304         }
1305
1306         if (gctx->gc_win == 0) {
1307                 __u32   nego_rpc_err, nego_gss_err;
1308
1309                 rc = buffer_extract_bytes(&data, &datalen32, &nego_rpc_err,
1310                                           sizeof(nego_rpc_err));
1311                 if (rc) {
1312                         CERROR("failed to extrace rpc rc\n");
1313                         goto out;
1314                 }
1315
1316                 rc = buffer_extract_bytes(&data, &datalen32, &nego_gss_err,
1317                                           sizeof(nego_gss_err));
1318                 if (rc) {
1319                         CERROR("failed to extrace gss rc\n");
1320                         goto out;
1321                 }
1322
1323                 CERROR("negotiation: rpc err %d, gss err %x\n",
1324                        nego_rpc_err, nego_gss_err);
1325
1326                 rc = nego_rpc_err ? nego_rpc_err : -EACCES;
1327         } else {
1328                 rc = rawobj_extract_local_alloc(&gctx->gc_handle,
1329                                                 (__u32 **) &data, &datalen32);
1330                 if (rc) {
1331                         CERROR("failed extract handle\n");
1332                         goto out;
1333                 }
1334
1335                 rc = rawobj_extract_local(&tmpobj, (__u32 **) &data,&datalen32);
1336                 if (rc) {
1337                         CERROR("failed extract mech\n");
1338                         goto out;
1339                 }
1340
1341                 rc = lgss_import_sec_context(&tmpobj,
1342                                              sec2gsec(ctx->cc_sec)->gs_mech,
1343                                              &gctx->gc_mechctx);
1344                 if (rc != GSS_S_COMPLETE)
1345                         CERROR("failed import context\n");
1346                 else
1347                         rc = 0;
1348         }
1349 out:
1350         /* we don't care what current status of this ctx, even someone else
1351          * is operating on the ctx at the same time. we just add up our own
1352          * opinions here. */
1353         if (rc == 0) {
1354                 gss_cli_ctx_uptodate(gctx);
1355         } else {
1356                 /* this will also revoke the key. has to be done before
1357                  * wakeup waiters otherwise they can find the stale key */
1358                 kill_key_locked(key);
1359
1360                 cli_ctx_expire(ctx);
1361
1362                 if (rc != -ERESTART)
1363                         set_bit(PTLRPC_CTX_ERROR_BIT, &ctx->cc_flags);
1364         }
1365
1366         sptlrpc_cli_ctx_wakeup(ctx);
1367
1368         /* let user space think it's a success */
1369         sptlrpc_cli_ctx_put(ctx, 1);
1370         RETURN(0);
1371 }
1372
1373 static
1374 int gss_kt_match(const struct key *key, const void *desc)
1375 {
1376         return (strcmp(key->description, (const char *) desc) == 0);
1377 }
1378
1379 static
1380 void gss_kt_destroy(struct key *key)
1381 {
1382         ENTRY;
1383         LASSERT(key->payload.data == NULL);
1384         CDEBUG(D_SEC, "destroy key %p\n", key);
1385         EXIT;
1386 }
1387
1388 static
1389 void gss_kt_describe(const struct key *key, struct seq_file *s)
1390 {
1391         if (key->description == NULL)
1392                 seq_puts(s, "[null]");
1393         else
1394                 seq_puts(s, key->description);
1395 }
1396
1397 static struct key_type gss_key_type =
1398 {
1399         .name           = "lgssc",
1400         .def_datalen    = 0,
1401         .instantiate    = gss_kt_instantiate,
1402         .update         = gss_kt_update,
1403         .match          = gss_kt_match,
1404         .destroy        = gss_kt_destroy,
1405         .describe       = gss_kt_describe,
1406 };
1407
1408 /****************************************
1409  * lustre gss keyring policy            *
1410  ****************************************/
1411
1412 static struct ptlrpc_ctx_ops gss_keyring_ctxops = {
1413         .match                  = gss_cli_ctx_match,
1414         .refresh                = gss_cli_ctx_refresh_kr,
1415         .validate               = gss_cli_ctx_validate_kr,
1416         .die                    = gss_cli_ctx_die_kr,
1417         .sign                   = gss_cli_ctx_sign,
1418         .verify                 = gss_cli_ctx_verify,
1419         .seal                   = gss_cli_ctx_seal,
1420         .unseal                 = gss_cli_ctx_unseal,
1421         .wrap_bulk              = gss_cli_ctx_wrap_bulk,
1422         .unwrap_bulk            = gss_cli_ctx_unwrap_bulk,
1423 };
1424
1425 static struct ptlrpc_sec_cops gss_sec_keyring_cops = {
1426         .create_sec             = gss_sec_create_kr,
1427         .destroy_sec            = gss_sec_destroy_kr,
1428         .kill_sec               = gss_sec_kill,
1429         .lookup_ctx             = gss_sec_lookup_ctx_kr,
1430         .release_ctx            = gss_sec_release_ctx_kr,
1431         .flush_ctx_cache        = gss_sec_flush_ctx_cache_kr,
1432         .gc_ctx                 = gss_sec_gc_ctx_kr,
1433         .install_rctx           = gss_sec_install_rctx,
1434         .alloc_reqbuf           = gss_alloc_reqbuf,
1435         .free_reqbuf            = gss_free_reqbuf,
1436         .alloc_repbuf           = gss_alloc_repbuf,
1437         .free_repbuf            = gss_free_repbuf,
1438         .enlarge_reqbuf         = gss_enlarge_reqbuf,
1439         .display                = gss_sec_display_kr,
1440 };
1441
1442 static struct ptlrpc_sec_sops gss_sec_keyring_sops = {
1443         .accept                 = gss_svc_accept_kr,
1444         .invalidate_ctx         = gss_svc_invalidate_ctx,
1445         .alloc_rs               = gss_svc_alloc_rs,
1446         .authorize              = gss_svc_authorize,
1447         .free_rs                = gss_svc_free_rs,
1448         .free_ctx               = gss_svc_free_ctx,
1449         .prep_bulk              = gss_svc_prep_bulk,
1450         .unwrap_bulk            = gss_svc_unwrap_bulk,
1451         .wrap_bulk              = gss_svc_wrap_bulk,
1452         .install_rctx           = gss_svc_install_rctx_kr,
1453 };
1454
1455 static struct ptlrpc_sec_policy gss_policy_keyring = {
1456         .sp_owner               = THIS_MODULE,
1457         .sp_name                = "gss.keyring",
1458         .sp_policy              = SPTLRPC_POLICY_GSS,
1459         .sp_cops                = &gss_sec_keyring_cops,
1460         .sp_sops                = &gss_sec_keyring_sops,
1461 };
1462
1463
1464 int __init gss_init_keyring(void)
1465 {
1466         int rc;
1467
1468         rc = register_key_type(&gss_key_type);
1469         if (rc) {
1470                 CERROR("failed to register keyring type: %d\n", rc);
1471                 return rc;
1472         }
1473
1474         rc = sptlrpc_register_policy(&gss_policy_keyring);
1475         if (rc) {
1476                 unregister_key_type(&gss_key_type);
1477                 return rc;
1478         }
1479
1480         return 0;
1481 }
1482
1483 void __exit gss_exit_keyring(void)
1484 {
1485         unregister_key_type(&gss_key_type);
1486         sptlrpc_unregister_policy(&gss_policy_keyring);
1487 }