blob: e894e2fc360d28a2cb37cd6206a14cd3802e0b02 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Uwe Zeisbergerf30c2262006-10-03 23:01:26 +02002 * linux/net/sunrpc/auth_gss/auth_gss.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * RPCSEC_GSS client authentication.
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08005 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Copyright (c) 2000 The Regents of the University of Michigan.
7 * All rights reserved.
8 *
9 * Dug Song <dugsong@monkey.org>
10 * Andy Adamson <andros@umich.edu>
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 *
16 * 1. Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
18 * 2. Redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution.
21 * 3. Neither the name of the University nor the names of its
22 * contributors may be used to endorse or promote products derived
23 * from this software without specific prior written permission.
24 *
25 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
26 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
27 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
28 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
32 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
34 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 *
37 * $Id$
38 */
39
40
41#include <linux/module.h>
42#include <linux/init.h>
43#include <linux/types.h>
44#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/sched.h>
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -040046#include <linux/pagemap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/sunrpc/clnt.h>
48#include <linux/sunrpc/auth.h>
49#include <linux/sunrpc/auth_gss.h>
50#include <linux/sunrpc/svcauth_gss.h>
51#include <linux/sunrpc/gss_err.h>
52#include <linux/workqueue.h>
53#include <linux/sunrpc/rpc_pipe_fs.h>
54#include <linux/sunrpc/gss_api.h>
55#include <asm/uaccess.h>
56
57static struct rpc_authops authgss_ops;
58
59static struct rpc_credops gss_credops;
60
61#ifdef RPC_DEBUG
62# define RPCDBG_FACILITY RPCDBG_AUTH
63#endif
64
65#define NFS_NGROUPS 16
66
67#define GSS_CRED_EXPIRE (60 * HZ) /* XXX: reasonable? */
68#define GSS_CRED_SLACK 1024 /* XXX: unused */
69/* length of a krb5 verifier (48), plus data added before arguments when
70 * using integrity (two 4-byte integers): */
Olga Kornievskaiaadeb8132006-12-04 20:22:34 -050071#define GSS_VERF_SLACK 100
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73/* XXX this define must match the gssd define
74* as it is passed to gssd to signal the use of
75* machine creds should be part of the shared rpc interface */
76
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -080077#define CA_RUN_AS_MACHINE 0x00000200
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79/* dump the buffer in `emacs-hexl' style */
80#define isprint(c) ((c > 0x1f) && (c < 0x7f))
81
82static DEFINE_RWLOCK(gss_ctx_lock);
83
84struct gss_auth {
85 struct rpc_auth rpc_auth;
86 struct gss_api_mech *mech;
87 enum rpc_gss_svc service;
88 struct list_head upcalls;
89 struct rpc_clnt *client;
90 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 spinlock_t lock;
92};
93
94static void gss_destroy_ctx(struct gss_cl_ctx *);
95static struct rpc_pipe_ops gss_upcall_ops;
96
Linus Torvalds1da177e2005-04-16 15:20:36 -070097static inline struct gss_cl_ctx *
98gss_get_ctx(struct gss_cl_ctx *ctx)
99{
100 atomic_inc(&ctx->count);
101 return ctx;
102}
103
104static inline void
105gss_put_ctx(struct gss_cl_ctx *ctx)
106{
107 if (atomic_dec_and_test(&ctx->count))
108 gss_destroy_ctx(ctx);
109}
110
111static void
112gss_cred_set_ctx(struct rpc_cred *cred, struct gss_cl_ctx *ctx)
113{
114 struct gss_cred *gss_cred = container_of(cred, struct gss_cred, gc_base);
115 struct gss_cl_ctx *old;
116 write_lock(&gss_ctx_lock);
117 old = gss_cred->gc_ctx;
118 gss_cred->gc_ctx = ctx;
119 cred->cr_flags |= RPCAUTH_CRED_UPTODATE;
Trond Myklebust8a317762006-02-01 12:18:36 -0500120 cred->cr_flags &= ~RPCAUTH_CRED_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 write_unlock(&gss_ctx_lock);
122 if (old)
123 gss_put_ctx(old);
124}
125
126static int
127gss_cred_is_uptodate_ctx(struct rpc_cred *cred)
128{
129 struct gss_cred *gss_cred = container_of(cred, struct gss_cred, gc_base);
130 int res = 0;
131
132 read_lock(&gss_ctx_lock);
133 if ((cred->cr_flags & RPCAUTH_CRED_UPTODATE) && gss_cred->gc_ctx)
134 res = 1;
135 read_unlock(&gss_ctx_lock);
136 return res;
137}
138
139static const void *
140simple_get_bytes(const void *p, const void *end, void *res, size_t len)
141{
142 const void *q = (const void *)((const char *)p + len);
143 if (unlikely(q > end || q < p))
144 return ERR_PTR(-EFAULT);
145 memcpy(res, p, len);
146 return q;
147}
148
149static inline const void *
150simple_get_netobj(const void *p, const void *end, struct xdr_netobj *dest)
151{
152 const void *q;
153 unsigned int len;
154
155 p = simple_get_bytes(p, end, &len, sizeof(len));
156 if (IS_ERR(p))
157 return p;
158 q = (const void *)((const char *)p + len);
159 if (unlikely(q > end || q < p))
160 return ERR_PTR(-EFAULT);
Arnaldo Carvalho de Meloe69062b2006-11-21 01:21:34 -0200161 dest->data = kmemdup(p, len, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 if (unlikely(dest->data == NULL))
163 return ERR_PTR(-ENOMEM);
164 dest->len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 return q;
166}
167
168static struct gss_cl_ctx *
169gss_cred_get_ctx(struct rpc_cred *cred)
170{
171 struct gss_cred *gss_cred = container_of(cred, struct gss_cred, gc_base);
172 struct gss_cl_ctx *ctx = NULL;
173
174 read_lock(&gss_ctx_lock);
175 if (gss_cred->gc_ctx)
176 ctx = gss_get_ctx(gss_cred->gc_ctx);
177 read_unlock(&gss_ctx_lock);
178 return ctx;
179}
180
181static struct gss_cl_ctx *
182gss_alloc_context(void)
183{
184 struct gss_cl_ctx *ctx;
185
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700186 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 if (ctx != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 ctx->gc_proc = RPC_GSS_PROC_DATA;
189 ctx->gc_seq = 1; /* NetApp 6.4R1 doesn't accept seq. no. 0 */
190 spin_lock_init(&ctx->gc_seq_lock);
191 atomic_set(&ctx->count,1);
192 }
193 return ctx;
194}
195
196#define GSSD_MIN_TIMEOUT (60 * 60)
197static const void *
198gss_fill_context(const void *p, const void *end, struct gss_cl_ctx *ctx, struct gss_api_mech *gm)
199{
200 const void *q;
201 unsigned int seclen;
202 unsigned int timeout;
203 u32 window_size;
204 int ret;
205
206 /* First unsigned int gives the lifetime (in seconds) of the cred */
207 p = simple_get_bytes(p, end, &timeout, sizeof(timeout));
208 if (IS_ERR(p))
209 goto err;
210 if (timeout == 0)
211 timeout = GSSD_MIN_TIMEOUT;
212 ctx->gc_expiry = jiffies + (unsigned long)timeout * HZ * 3 / 4;
213 /* Sequence number window. Determines the maximum number of simultaneous requests */
214 p = simple_get_bytes(p, end, &window_size, sizeof(window_size));
215 if (IS_ERR(p))
216 goto err;
217 ctx->gc_win = window_size;
218 /* gssd signals an error by passing ctx->gc_win = 0: */
219 if (ctx->gc_win == 0) {
220 /* in which case, p points to an error code which we ignore */
221 p = ERR_PTR(-EACCES);
222 goto err;
223 }
224 /* copy the opaque wire context */
225 p = simple_get_netobj(p, end, &ctx->gc_wire_ctx);
226 if (IS_ERR(p))
227 goto err;
228 /* import the opaque security context */
229 p = simple_get_bytes(p, end, &seclen, sizeof(seclen));
230 if (IS_ERR(p))
231 goto err;
232 q = (const void *)((const char *)p + seclen);
233 if (unlikely(q > end || q < p)) {
234 p = ERR_PTR(-EFAULT);
235 goto err;
236 }
237 ret = gss_import_sec_context(p, seclen, gm, &ctx->gc_gss_ctx);
238 if (ret < 0) {
239 p = ERR_PTR(ret);
240 goto err;
241 }
242 return q;
243err:
Chuck Lever8885cb32007-01-31 12:14:05 -0500244 dprintk("RPC: gss_fill_context returning %ld\n", -PTR_ERR(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 return p;
246}
247
248
249struct gss_upcall_msg {
250 atomic_t count;
251 uid_t uid;
252 struct rpc_pipe_msg msg;
253 struct list_head list;
254 struct gss_auth *auth;
255 struct rpc_wait_queue rpc_waitqueue;
256 wait_queue_head_t waitqueue;
257 struct gss_cl_ctx *ctx;
258};
259
260static void
261gss_release_msg(struct gss_upcall_msg *gss_msg)
262{
263 if (!atomic_dec_and_test(&gss_msg->count))
264 return;
265 BUG_ON(!list_empty(&gss_msg->list));
266 if (gss_msg->ctx != NULL)
267 gss_put_ctx(gss_msg->ctx);
268 kfree(gss_msg);
269}
270
271static struct gss_upcall_msg *
272__gss_find_upcall(struct gss_auth *gss_auth, uid_t uid)
273{
274 struct gss_upcall_msg *pos;
275 list_for_each_entry(pos, &gss_auth->upcalls, list) {
276 if (pos->uid != uid)
277 continue;
278 atomic_inc(&pos->count);
Chuck Lever8885cb32007-01-31 12:14:05 -0500279 dprintk("RPC: gss_find_upcall found msg %p\n", pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 return pos;
281 }
Chuck Lever8885cb32007-01-31 12:14:05 -0500282 dprintk("RPC: gss_find_upcall found nothing\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 return NULL;
284}
285
286/* Try to add a upcall to the pipefs queue.
287 * If an upcall owned by our uid already exists, then we return a reference
288 * to that upcall instead of adding the new upcall.
289 */
290static inline struct gss_upcall_msg *
291gss_add_msg(struct gss_auth *gss_auth, struct gss_upcall_msg *gss_msg)
292{
293 struct gss_upcall_msg *old;
294
295 spin_lock(&gss_auth->lock);
296 old = __gss_find_upcall(gss_auth, gss_msg->uid);
297 if (old == NULL) {
298 atomic_inc(&gss_msg->count);
299 list_add(&gss_msg->list, &gss_auth->upcalls);
300 } else
301 gss_msg = old;
302 spin_unlock(&gss_auth->lock);
303 return gss_msg;
304}
305
306static void
307__gss_unhash_msg(struct gss_upcall_msg *gss_msg)
308{
309 if (list_empty(&gss_msg->list))
310 return;
311 list_del_init(&gss_msg->list);
312 rpc_wake_up_status(&gss_msg->rpc_waitqueue, gss_msg->msg.errno);
313 wake_up_all(&gss_msg->waitqueue);
314 atomic_dec(&gss_msg->count);
315}
316
317static void
318gss_unhash_msg(struct gss_upcall_msg *gss_msg)
319{
320 struct gss_auth *gss_auth = gss_msg->auth;
321
322 spin_lock(&gss_auth->lock);
323 __gss_unhash_msg(gss_msg);
324 spin_unlock(&gss_auth->lock);
325}
326
327static void
328gss_upcall_callback(struct rpc_task *task)
329{
330 struct gss_cred *gss_cred = container_of(task->tk_msg.rpc_cred,
331 struct gss_cred, gc_base);
332 struct gss_upcall_msg *gss_msg = gss_cred->gc_upcall;
333
334 BUG_ON(gss_msg == NULL);
335 if (gss_msg->ctx)
336 gss_cred_set_ctx(task->tk_msg.rpc_cred, gss_get_ctx(gss_msg->ctx));
337 else
338 task->tk_status = gss_msg->msg.errno;
339 spin_lock(&gss_msg->auth->lock);
340 gss_cred->gc_upcall = NULL;
341 rpc_wake_up_status(&gss_msg->rpc_waitqueue, gss_msg->msg.errno);
342 spin_unlock(&gss_msg->auth->lock);
343 gss_release_msg(gss_msg);
344}
345
346static inline struct gss_upcall_msg *
347gss_alloc_msg(struct gss_auth *gss_auth, uid_t uid)
348{
349 struct gss_upcall_msg *gss_msg;
350
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700351 gss_msg = kzalloc(sizeof(*gss_msg), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 if (gss_msg != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 INIT_LIST_HEAD(&gss_msg->list);
354 rpc_init_wait_queue(&gss_msg->rpc_waitqueue, "RPCSEC_GSS upcall waitq");
355 init_waitqueue_head(&gss_msg->waitqueue);
356 atomic_set(&gss_msg->count, 1);
357 gss_msg->msg.data = &gss_msg->uid;
358 gss_msg->msg.len = sizeof(gss_msg->uid);
359 gss_msg->uid = uid;
360 gss_msg->auth = gss_auth;
361 }
362 return gss_msg;
363}
364
365static struct gss_upcall_msg *
366gss_setup_upcall(struct rpc_clnt *clnt, struct gss_auth *gss_auth, struct rpc_cred *cred)
367{
368 struct gss_upcall_msg *gss_new, *gss_msg;
369
370 gss_new = gss_alloc_msg(gss_auth, cred->cr_uid);
371 if (gss_new == NULL)
372 return ERR_PTR(-ENOMEM);
373 gss_msg = gss_add_msg(gss_auth, gss_new);
374 if (gss_msg == gss_new) {
375 int res = rpc_queue_upcall(gss_auth->dentry->d_inode, &gss_new->msg);
376 if (res) {
377 gss_unhash_msg(gss_new);
378 gss_msg = ERR_PTR(res);
379 }
380 } else
381 gss_release_msg(gss_new);
382 return gss_msg;
383}
384
385static inline int
386gss_refresh_upcall(struct rpc_task *task)
387{
388 struct rpc_cred *cred = task->tk_msg.rpc_cred;
Trond Myklebust4a8c1342007-06-07 10:14:14 -0400389 struct gss_auth *gss_auth = container_of(cred->cr_auth,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 struct gss_auth, rpc_auth);
391 struct gss_cred *gss_cred = container_of(cred,
392 struct gss_cred, gc_base);
393 struct gss_upcall_msg *gss_msg;
394 int err = 0;
395
Chuck Lever8885cb32007-01-31 12:14:05 -0500396 dprintk("RPC: %5u gss_refresh_upcall for uid %u\n", task->tk_pid,
397 cred->cr_uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 gss_msg = gss_setup_upcall(task->tk_client, gss_auth, cred);
399 if (IS_ERR(gss_msg)) {
400 err = PTR_ERR(gss_msg);
401 goto out;
402 }
403 spin_lock(&gss_auth->lock);
404 if (gss_cred->gc_upcall != NULL)
405 rpc_sleep_on(&gss_cred->gc_upcall->rpc_waitqueue, task, NULL, NULL);
406 else if (gss_msg->ctx == NULL && gss_msg->msg.errno >= 0) {
407 task->tk_timeout = 0;
408 gss_cred->gc_upcall = gss_msg;
409 /* gss_upcall_callback will release the reference to gss_upcall_msg */
410 atomic_inc(&gss_msg->count);
411 rpc_sleep_on(&gss_msg->rpc_waitqueue, task, gss_upcall_callback, NULL);
412 } else
413 err = gss_msg->msg.errno;
414 spin_unlock(&gss_auth->lock);
415 gss_release_msg(gss_msg);
416out:
Chuck Lever8885cb32007-01-31 12:14:05 -0500417 dprintk("RPC: %5u gss_refresh_upcall for uid %u result %d\n",
418 task->tk_pid, cred->cr_uid, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 return err;
420}
421
422static inline int
423gss_create_upcall(struct gss_auth *gss_auth, struct gss_cred *gss_cred)
424{
425 struct rpc_cred *cred = &gss_cred->gc_base;
426 struct gss_upcall_msg *gss_msg;
427 DEFINE_WAIT(wait);
428 int err = 0;
429
Chuck Lever8885cb32007-01-31 12:14:05 -0500430 dprintk("RPC: gss_upcall for uid %u\n", cred->cr_uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 gss_msg = gss_setup_upcall(gss_auth->client, gss_auth, cred);
432 if (IS_ERR(gss_msg)) {
433 err = PTR_ERR(gss_msg);
434 goto out;
435 }
436 for (;;) {
437 prepare_to_wait(&gss_msg->waitqueue, &wait, TASK_INTERRUPTIBLE);
438 spin_lock(&gss_auth->lock);
439 if (gss_msg->ctx != NULL || gss_msg->msg.errno < 0) {
440 spin_unlock(&gss_auth->lock);
441 break;
442 }
443 spin_unlock(&gss_auth->lock);
444 if (signalled()) {
445 err = -ERESTARTSYS;
446 goto out_intr;
447 }
448 schedule();
449 }
450 if (gss_msg->ctx)
451 gss_cred_set_ctx(cred, gss_get_ctx(gss_msg->ctx));
452 else
453 err = gss_msg->msg.errno;
454out_intr:
455 finish_wait(&gss_msg->waitqueue, &wait);
456 gss_release_msg(gss_msg);
457out:
Chuck Lever8885cb32007-01-31 12:14:05 -0500458 dprintk("RPC: gss_create_upcall for uid %u result %d\n",
459 cred->cr_uid, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 return err;
461}
462
463static ssize_t
464gss_pipe_upcall(struct file *filp, struct rpc_pipe_msg *msg,
465 char __user *dst, size_t buflen)
466{
467 char *data = (char *)msg->data + msg->copied;
468 ssize_t mlen = msg->len;
469 ssize_t left;
470
471 if (mlen > buflen)
472 mlen = buflen;
473 left = copy_to_user(dst, data, mlen);
474 if (left < 0) {
475 msg->errno = left;
476 return left;
477 }
478 mlen -= left;
479 msg->copied += mlen;
480 msg->errno = 0;
481 return mlen;
482}
483
484#define MSG_BUF_MAXSIZE 1024
485
486static ssize_t
487gss_pipe_downcall(struct file *filp, const char __user *src, size_t mlen)
488{
489 const void *p, *end;
490 void *buf;
491 struct rpc_clnt *clnt;
492 struct gss_auth *gss_auth;
493 struct rpc_cred *cred;
494 struct gss_upcall_msg *gss_msg;
495 struct gss_cl_ctx *ctx;
496 uid_t uid;
497 int err = -EFBIG;
498
499 if (mlen > MSG_BUF_MAXSIZE)
500 goto out;
501 err = -ENOMEM;
502 buf = kmalloc(mlen, GFP_KERNEL);
503 if (!buf)
504 goto out;
505
Josef Sipek303b46b2006-12-08 02:37:42 -0800506 clnt = RPC_I(filp->f_path.dentry->d_inode)->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 err = -EFAULT;
508 if (copy_from_user(buf, src, mlen))
509 goto err;
510
511 end = (const void *)((char *)buf + mlen);
512 p = simple_get_bytes(buf, end, &uid, sizeof(uid));
513 if (IS_ERR(p)) {
514 err = PTR_ERR(p);
515 goto err;
516 }
517
518 err = -ENOMEM;
519 ctx = gss_alloc_context();
520 if (ctx == NULL)
521 goto err;
522 err = 0;
523 gss_auth = container_of(clnt->cl_auth, struct gss_auth, rpc_auth);
524 p = gss_fill_context(p, end, ctx, gss_auth->mech);
525 if (IS_ERR(p)) {
526 err = PTR_ERR(p);
527 if (err != -EACCES)
528 goto err_put_ctx;
529 }
530 spin_lock(&gss_auth->lock);
531 gss_msg = __gss_find_upcall(gss_auth, uid);
532 if (gss_msg) {
533 if (err == 0 && gss_msg->ctx == NULL)
534 gss_msg->ctx = gss_get_ctx(ctx);
535 gss_msg->msg.errno = err;
536 __gss_unhash_msg(gss_msg);
537 spin_unlock(&gss_auth->lock);
538 gss_release_msg(gss_msg);
539 } else {
540 struct auth_cred acred = { .uid = uid };
541 spin_unlock(&gss_auth->lock);
Trond Myklebust8a317762006-02-01 12:18:36 -0500542 cred = rpcauth_lookup_credcache(clnt->cl_auth, &acred, RPCAUTH_LOOKUP_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 if (IS_ERR(cred)) {
544 err = PTR_ERR(cred);
545 goto err_put_ctx;
546 }
547 gss_cred_set_ctx(cred, gss_get_ctx(ctx));
548 }
549 gss_put_ctx(ctx);
550 kfree(buf);
Chuck Lever8885cb32007-01-31 12:14:05 -0500551 dprintk("RPC: gss_pipe_downcall returning length %Zu\n", mlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 return mlen;
553err_put_ctx:
554 gss_put_ctx(ctx);
555err:
556 kfree(buf);
557out:
Chuck Lever8885cb32007-01-31 12:14:05 -0500558 dprintk("RPC: gss_pipe_downcall returning %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 return err;
560}
561
562static void
563gss_pipe_release(struct inode *inode)
564{
565 struct rpc_inode *rpci = RPC_I(inode);
566 struct rpc_clnt *clnt;
567 struct rpc_auth *auth;
568 struct gss_auth *gss_auth;
569
570 clnt = rpci->private;
571 auth = clnt->cl_auth;
572 gss_auth = container_of(auth, struct gss_auth, rpc_auth);
573 spin_lock(&gss_auth->lock);
574 while (!list_empty(&gss_auth->upcalls)) {
575 struct gss_upcall_msg *gss_msg;
576
577 gss_msg = list_entry(gss_auth->upcalls.next,
578 struct gss_upcall_msg, list);
579 gss_msg->msg.errno = -EPIPE;
580 atomic_inc(&gss_msg->count);
581 __gss_unhash_msg(gss_msg);
582 spin_unlock(&gss_auth->lock);
583 gss_release_msg(gss_msg);
584 spin_lock(&gss_auth->lock);
585 }
586 spin_unlock(&gss_auth->lock);
587}
588
589static void
590gss_pipe_destroy_msg(struct rpc_pipe_msg *msg)
591{
592 struct gss_upcall_msg *gss_msg = container_of(msg, struct gss_upcall_msg, msg);
593 static unsigned long ratelimit;
594
595 if (msg->errno < 0) {
Chuck Lever8885cb32007-01-31 12:14:05 -0500596 dprintk("RPC: gss_pipe_destroy_msg releasing msg %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 gss_msg);
598 atomic_inc(&gss_msg->count);
599 gss_unhash_msg(gss_msg);
Trond Myklebust48e49182005-12-19 17:11:22 -0500600 if (msg->errno == -ETIMEDOUT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 unsigned long now = jiffies;
602 if (time_after(now, ratelimit)) {
603 printk(KERN_WARNING "RPC: AUTH_GSS upcall timed out.\n"
604 "Please check user daemon is running!\n");
605 ratelimit = now + 15*HZ;
606 }
607 }
608 gss_release_msg(gss_msg);
609 }
610}
611
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800612/*
613 * NOTE: we have the opportunity to use different
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 * parameters based on the input flavor (which must be a pseudoflavor)
615 */
616static struct rpc_auth *
617gss_create(struct rpc_clnt *clnt, rpc_authflavor_t flavor)
618{
619 struct gss_auth *gss_auth;
620 struct rpc_auth * auth;
J. Bruce Fields6a192752005-06-22 17:16:23 +0000621 int err = -ENOMEM; /* XXX? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Chuck Lever8885cb32007-01-31 12:14:05 -0500623 dprintk("RPC: creating GSS authenticator for client %p\n", clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
625 if (!try_module_get(THIS_MODULE))
J. Bruce Fields6a192752005-06-22 17:16:23 +0000626 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 if (!(gss_auth = kmalloc(sizeof(*gss_auth), GFP_KERNEL)))
628 goto out_dec;
629 gss_auth->client = clnt;
J. Bruce Fields6a192752005-06-22 17:16:23 +0000630 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 gss_auth->mech = gss_mech_get_by_pseudoflavor(flavor);
632 if (!gss_auth->mech) {
633 printk(KERN_WARNING "%s: Pseudoflavor %d not found!",
634 __FUNCTION__, flavor);
635 goto err_free;
636 }
637 gss_auth->service = gss_pseudoflavor_to_service(gss_auth->mech, flavor);
J. Bruce Fields438b6fd2005-06-22 17:16:23 +0000638 if (gss_auth->service == 0)
639 goto err_put_mech;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 INIT_LIST_HEAD(&gss_auth->upcalls);
641 spin_lock_init(&gss_auth->lock);
642 auth = &gss_auth->rpc_auth;
643 auth->au_cslack = GSS_CRED_SLACK >> 2;
644 auth->au_rslack = GSS_VERF_SLACK >> 2;
645 auth->au_ops = &authgss_ops;
646 auth->au_flavor = flavor;
647 atomic_set(&auth->au_count, 1);
648
J. Bruce Fields6a192752005-06-22 17:16:23 +0000649 err = rpcauth_init_credcache(auth, GSS_CRED_EXPIRE);
650 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 goto err_put_mech;
652
Trond Myklebust158998b2006-08-24 01:03:17 -0400653 gss_auth->dentry = rpc_mkpipe(clnt->cl_dentry, gss_auth->mech->gm_name,
654 clnt, &gss_upcall_ops, RPC_PIPE_WAIT_FOR_OPEN);
J. Bruce Fields6a192752005-06-22 17:16:23 +0000655 if (IS_ERR(gss_auth->dentry)) {
656 err = PTR_ERR(gss_auth->dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 goto err_put_mech;
J. Bruce Fields6a192752005-06-22 17:16:23 +0000658 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
660 return auth;
661err_put_mech:
662 gss_mech_put(gss_auth->mech);
663err_free:
664 kfree(gss_auth);
665out_dec:
666 module_put(THIS_MODULE);
J. Bruce Fields6a192752005-06-22 17:16:23 +0000667 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668}
669
670static void
671gss_destroy(struct rpc_auth *auth)
672{
673 struct gss_auth *gss_auth;
674
Chuck Lever8885cb32007-01-31 12:14:05 -0500675 dprintk("RPC: destroying GSS authenticator %p flavor %d\n",
676 auth, auth->au_flavor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
678 gss_auth = container_of(auth, struct gss_auth, rpc_auth);
Trond Myklebust5d674762006-07-31 14:11:48 -0700679 rpc_unlink(gss_auth->dentry);
Trond Myklebust12de3b32006-03-20 13:44:09 -0500680 gss_auth->dentry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 gss_mech_put(gss_auth->mech);
682
683 rpcauth_free_credcache(auth);
684 kfree(gss_auth);
685 module_put(THIS_MODULE);
686}
687
688/* gss_destroy_cred (and gss_destroy_ctx) are used to clean up after failure
689 * to create a new cred or context, so they check that things have been
690 * allocated before freeing them. */
691static void
692gss_destroy_ctx(struct gss_cl_ctx *ctx)
693{
Chuck Lever8885cb32007-01-31 12:14:05 -0500694 dprintk("RPC: gss_destroy_ctx\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
696 if (ctx->gc_gss_ctx)
697 gss_delete_sec_context(&ctx->gc_gss_ctx);
698
699 kfree(ctx->gc_wire_ctx.data);
700 kfree(ctx);
701}
702
703static void
704gss_destroy_cred(struct rpc_cred *rc)
705{
706 struct gss_cred *cred = container_of(rc, struct gss_cred, gc_base);
707
Chuck Lever8885cb32007-01-31 12:14:05 -0500708 dprintk("RPC: gss_destroy_cred \n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
710 if (cred->gc_ctx)
711 gss_put_ctx(cred->gc_ctx);
712 kfree(cred);
713}
714
715/*
716 * Lookup RPCSEC_GSS cred for the current process
717 */
718static struct rpc_cred *
Trond Myklebust8a317762006-02-01 12:18:36 -0500719gss_lookup_cred(struct rpc_auth *auth, struct auth_cred *acred, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720{
Trond Myklebust8a317762006-02-01 12:18:36 -0500721 return rpcauth_lookup_credcache(auth, acred, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722}
723
724static struct rpc_cred *
Trond Myklebust8a317762006-02-01 12:18:36 -0500725gss_create_cred(struct rpc_auth *auth, struct auth_cred *acred, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726{
727 struct gss_auth *gss_auth = container_of(auth, struct gss_auth, rpc_auth);
728 struct gss_cred *cred = NULL;
729 int err = -ENOMEM;
730
Chuck Lever8885cb32007-01-31 12:14:05 -0500731 dprintk("RPC: gss_create_cred for uid %d, flavor %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 acred->uid, auth->au_flavor);
733
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700734 if (!(cred = kzalloc(sizeof(*cred), GFP_KERNEL)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 goto out_err;
736
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 atomic_set(&cred->gc_count, 1);
738 cred->gc_uid = acred->uid;
739 /*
740 * Note: in order to force a call to call_refresh(), we deliberately
741 * fail to flag the credential as RPCAUTH_CRED_UPTODATE.
742 */
743 cred->gc_flags = 0;
Trond Myklebust4a8c1342007-06-07 10:14:14 -0400744 cred->gc_base.cr_auth = auth;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 cred->gc_base.cr_ops = &gss_credops;
Trond Myklebust8a317762006-02-01 12:18:36 -0500746 cred->gc_base.cr_flags = RPCAUTH_CRED_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 cred->gc_service = gss_auth->service;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 return &cred->gc_base;
749
750out_err:
Chuck Lever8885cb32007-01-31 12:14:05 -0500751 dprintk("RPC: gss_create_cred failed with error %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 return ERR_PTR(err);
753}
754
755static int
Trond Myklebustfba3bad2006-02-01 12:19:27 -0500756gss_cred_init(struct rpc_auth *auth, struct rpc_cred *cred)
757{
758 struct gss_auth *gss_auth = container_of(auth, struct gss_auth, rpc_auth);
759 struct gss_cred *gss_cred = container_of(cred,struct gss_cred, gc_base);
760 int err;
761
762 do {
763 err = gss_create_upcall(gss_auth, gss_cred);
764 } while (err == -EAGAIN);
765 return err;
766}
767
768static int
Trond Myklebust8a317762006-02-01 12:18:36 -0500769gss_match(struct auth_cred *acred, struct rpc_cred *rc, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770{
771 struct gss_cred *gss_cred = container_of(rc, struct gss_cred, gc_base);
772
Trond Myklebust8a317762006-02-01 12:18:36 -0500773 /*
774 * If the searchflags have set RPCAUTH_LOOKUP_NEW, then
775 * we don't really care if the credential has expired or not,
776 * since the caller should be prepared to reinitialise it.
777 */
778 if ((flags & RPCAUTH_LOOKUP_NEW) && (rc->cr_flags & RPCAUTH_CRED_NEW))
779 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 /* Don't match with creds that have expired. */
781 if (gss_cred->gc_ctx && time_after(jiffies, gss_cred->gc_ctx->gc_expiry))
782 return 0;
Trond Myklebust8a317762006-02-01 12:18:36 -0500783out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 return (rc->cr_uid == acred->uid);
785}
786
787/*
788* Marshal credentials.
789* Maybe we should keep a cached credential for performance reasons.
790*/
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700791static __be32 *
792gss_marshal(struct rpc_task *task, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793{
794 struct rpc_cred *cred = task->tk_msg.rpc_cred;
795 struct gss_cred *gss_cred = container_of(cred, struct gss_cred,
796 gc_base);
797 struct gss_cl_ctx *ctx = gss_cred_get_ctx(cred);
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700798 __be32 *cred_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 struct rpc_rqst *req = task->tk_rqstp;
800 u32 maj_stat = 0;
801 struct xdr_netobj mic;
802 struct kvec iov;
803 struct xdr_buf verf_buf;
804
Chuck Lever8885cb32007-01-31 12:14:05 -0500805 dprintk("RPC: %5u gss_marshal\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
807 *p++ = htonl(RPC_AUTH_GSS);
808 cred_len = p++;
809
810 spin_lock(&ctx->gc_seq_lock);
811 req->rq_seqno = ctx->gc_seq++;
812 spin_unlock(&ctx->gc_seq_lock);
813
814 *p++ = htonl((u32) RPC_GSS_VERSION);
815 *p++ = htonl((u32) ctx->gc_proc);
816 *p++ = htonl((u32) req->rq_seqno);
817 *p++ = htonl((u32) gss_cred->gc_service);
818 p = xdr_encode_netobj(p, &ctx->gc_wire_ctx);
819 *cred_len = htonl((p - (cred_len + 1)) << 2);
820
821 /* We compute the checksum for the verifier over the xdr-encoded bytes
822 * starting with the xid and ending at the end of the credential: */
Chuck Lever808012f2005-08-25 16:25:49 -0700823 iov.iov_base = xprt_skip_transport_header(task->tk_xprt,
824 req->rq_snd_buf.head[0].iov_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 iov.iov_len = (u8 *)p - (u8 *)iov.iov_base;
826 xdr_buf_from_iov(&iov, &verf_buf);
827
828 /* set verifier flavor*/
829 *p++ = htonl(RPC_AUTH_GSS);
830
831 mic.data = (u8 *)(p + 1);
J. Bruce Fields00fd6e12005-10-13 16:55:18 -0400832 maj_stat = gss_get_mic(ctx->gc_gss_ctx, &verf_buf, &mic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 if (maj_stat == GSS_S_CONTEXT_EXPIRED) {
834 cred->cr_flags &= ~RPCAUTH_CRED_UPTODATE;
835 } else if (maj_stat != 0) {
836 printk("gss_marshal: gss_get_mic FAILED (%d)\n", maj_stat);
837 goto out_put_ctx;
838 }
839 p = xdr_encode_opaque(p, NULL, mic.len);
840 gss_put_ctx(ctx);
841 return p;
842out_put_ctx:
843 gss_put_ctx(ctx);
844 return NULL;
845}
846
847/*
848* Refresh credentials. XXX - finish
849*/
850static int
851gss_refresh(struct rpc_task *task)
852{
853
854 if (!gss_cred_is_uptodate_ctx(task->tk_msg.rpc_cred))
855 return gss_refresh_upcall(task);
856 return 0;
857}
858
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700859static __be32 *
860gss_validate(struct rpc_task *task, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861{
862 struct rpc_cred *cred = task->tk_msg.rpc_cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 struct gss_cl_ctx *ctx = gss_cred_get_ctx(cred);
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700864 __be32 seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 struct kvec iov;
866 struct xdr_buf verf_buf;
867 struct xdr_netobj mic;
868 u32 flav,len;
869 u32 maj_stat;
870
Chuck Lever8885cb32007-01-31 12:14:05 -0500871 dprintk("RPC: %5u gss_validate\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
873 flav = ntohl(*p++);
874 if ((len = ntohl(*p++)) > RPC_MAX_AUTH_SIZE)
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800875 goto out_bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 if (flav != RPC_AUTH_GSS)
877 goto out_bad;
878 seq = htonl(task->tk_rqstp->rq_seqno);
879 iov.iov_base = &seq;
880 iov.iov_len = sizeof(seq);
881 xdr_buf_from_iov(&iov, &verf_buf);
882 mic.data = (u8 *)p;
883 mic.len = len;
884
J. Bruce Fields00fd6e12005-10-13 16:55:18 -0400885 maj_stat = gss_verify_mic(ctx->gc_gss_ctx, &verf_buf, &mic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 if (maj_stat == GSS_S_CONTEXT_EXPIRED)
887 cred->cr_flags &= ~RPCAUTH_CRED_UPTODATE;
888 if (maj_stat)
889 goto out_bad;
J. Bruce Fields24b26052005-10-13 16:54:53 -0400890 /* We leave it to unwrap to calculate au_rslack. For now we just
891 * calculate the length of the verifier: */
892 task->tk_auth->au_verfsize = XDR_QUADLEN(len) + 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 gss_put_ctx(ctx);
Chuck Lever8885cb32007-01-31 12:14:05 -0500894 dprintk("RPC: %5u gss_validate: gss_verify_mic succeeded.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 task->tk_pid);
896 return p + XDR_QUADLEN(len);
897out_bad:
898 gss_put_ctx(ctx);
Chuck Lever8885cb32007-01-31 12:14:05 -0500899 dprintk("RPC: %5u gss_validate failed.\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 return NULL;
901}
902
903static inline int
904gss_wrap_req_integ(struct rpc_cred *cred, struct gss_cl_ctx *ctx,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700905 kxdrproc_t encode, struct rpc_rqst *rqstp, __be32 *p, void *obj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906{
907 struct xdr_buf *snd_buf = &rqstp->rq_snd_buf;
908 struct xdr_buf integ_buf;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700909 __be32 *integ_len = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 struct xdr_netobj mic;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700911 u32 offset;
912 __be32 *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 struct kvec *iov;
914 u32 maj_stat = 0;
915 int status = -EIO;
916
917 integ_len = p++;
918 offset = (u8 *)p - (u8 *)snd_buf->head[0].iov_base;
919 *p++ = htonl(rqstp->rq_seqno);
920
921 status = encode(rqstp, p, obj);
922 if (status)
923 return status;
924
925 if (xdr_buf_subsegment(snd_buf, &integ_buf,
926 offset, snd_buf->len - offset))
927 return status;
928 *integ_len = htonl(integ_buf.len);
929
930 /* guess whether we're in the head or the tail: */
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800931 if (snd_buf->page_len || snd_buf->tail[0].iov_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 iov = snd_buf->tail;
933 else
934 iov = snd_buf->head;
935 p = iov->iov_base + iov->iov_len;
936 mic.data = (u8 *)(p + 1);
937
J. Bruce Fields00fd6e12005-10-13 16:55:18 -0400938 maj_stat = gss_get_mic(ctx->gc_gss_ctx, &integ_buf, &mic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 status = -EIO; /* XXX? */
940 if (maj_stat == GSS_S_CONTEXT_EXPIRED)
941 cred->cr_flags &= ~RPCAUTH_CRED_UPTODATE;
942 else if (maj_stat)
943 return status;
944 q = xdr_encode_opaque(p, NULL, mic.len);
945
946 offset = (u8 *)q - (u8 *)p;
947 iov->iov_len += offset;
948 snd_buf->len += offset;
949 return 0;
950}
951
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -0400952static void
953priv_release_snd_buf(struct rpc_rqst *rqstp)
954{
955 int i;
956
957 for (i=0; i < rqstp->rq_enc_pages_num; i++)
958 __free_page(rqstp->rq_enc_pages[i]);
959 kfree(rqstp->rq_enc_pages);
960}
961
962static int
963alloc_enc_pages(struct rpc_rqst *rqstp)
964{
965 struct xdr_buf *snd_buf = &rqstp->rq_snd_buf;
966 int first, last, i;
967
968 if (snd_buf->page_len == 0) {
969 rqstp->rq_enc_pages_num = 0;
970 return 0;
971 }
972
973 first = snd_buf->page_base >> PAGE_CACHE_SHIFT;
974 last = (snd_buf->page_base + snd_buf->page_len - 1) >> PAGE_CACHE_SHIFT;
975 rqstp->rq_enc_pages_num = last - first + 1 + 1;
976 rqstp->rq_enc_pages
977 = kmalloc(rqstp->rq_enc_pages_num * sizeof(struct page *),
978 GFP_NOFS);
979 if (!rqstp->rq_enc_pages)
980 goto out;
981 for (i=0; i < rqstp->rq_enc_pages_num; i++) {
982 rqstp->rq_enc_pages[i] = alloc_page(GFP_NOFS);
983 if (rqstp->rq_enc_pages[i] == NULL)
984 goto out_free;
985 }
986 rqstp->rq_release_snd_buf = priv_release_snd_buf;
987 return 0;
988out_free:
989 for (i--; i >= 0; i--) {
990 __free_page(rqstp->rq_enc_pages[i]);
991 }
992out:
993 return -EAGAIN;
994}
995
996static inline int
997gss_wrap_req_priv(struct rpc_cred *cred, struct gss_cl_ctx *ctx,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700998 kxdrproc_t encode, struct rpc_rqst *rqstp, __be32 *p, void *obj)
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -0400999{
1000 struct xdr_buf *snd_buf = &rqstp->rq_snd_buf;
1001 u32 offset;
1002 u32 maj_stat;
1003 int status;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001004 __be32 *opaque_len;
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001005 struct page **inpages;
1006 int first;
1007 int pad;
1008 struct kvec *iov;
1009 char *tmp;
1010
1011 opaque_len = p++;
1012 offset = (u8 *)p - (u8 *)snd_buf->head[0].iov_base;
1013 *p++ = htonl(rqstp->rq_seqno);
1014
1015 status = encode(rqstp, p, obj);
1016 if (status)
1017 return status;
1018
1019 status = alloc_enc_pages(rqstp);
1020 if (status)
1021 return status;
1022 first = snd_buf->page_base >> PAGE_CACHE_SHIFT;
1023 inpages = snd_buf->pages + first;
1024 snd_buf->pages = rqstp->rq_enc_pages;
1025 snd_buf->page_base -= first << PAGE_CACHE_SHIFT;
1026 /* Give the tail its own page, in case we need extra space in the
1027 * head when wrapping: */
1028 if (snd_buf->page_len || snd_buf->tail[0].iov_len) {
1029 tmp = page_address(rqstp->rq_enc_pages[rqstp->rq_enc_pages_num - 1]);
1030 memcpy(tmp, snd_buf->tail[0].iov_base, snd_buf->tail[0].iov_len);
1031 snd_buf->tail[0].iov_base = tmp;
1032 }
J. Bruce Fields00fd6e12005-10-13 16:55:18 -04001033 maj_stat = gss_wrap(ctx->gc_gss_ctx, offset, snd_buf, inpages);
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001034 /* RPC_SLACK_SPACE should prevent this ever happening: */
1035 BUG_ON(snd_buf->len > snd_buf->buflen);
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001036 status = -EIO;
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001037 /* We're assuming that when GSS_S_CONTEXT_EXPIRED, the encryption was
1038 * done anyway, so it's safe to put the request on the wire: */
1039 if (maj_stat == GSS_S_CONTEXT_EXPIRED)
1040 cred->cr_flags &= ~RPCAUTH_CRED_UPTODATE;
1041 else if (maj_stat)
1042 return status;
1043
1044 *opaque_len = htonl(snd_buf->len - offset);
1045 /* guess whether we're in the head or the tail: */
1046 if (snd_buf->page_len || snd_buf->tail[0].iov_len)
1047 iov = snd_buf->tail;
1048 else
1049 iov = snd_buf->head;
1050 p = iov->iov_base + iov->iov_len;
1051 pad = 3 - ((snd_buf->len - offset - 1) & 3);
1052 memset(p, 0, pad);
1053 iov->iov_len += pad;
1054 snd_buf->len += pad;
1055
1056 return 0;
1057}
1058
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059static int
1060gss_wrap_req(struct rpc_task *task,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001061 kxdrproc_t encode, void *rqstp, __be32 *p, void *obj)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062{
1063 struct rpc_cred *cred = task->tk_msg.rpc_cred;
1064 struct gss_cred *gss_cred = container_of(cred, struct gss_cred,
1065 gc_base);
1066 struct gss_cl_ctx *ctx = gss_cred_get_ctx(cred);
1067 int status = -EIO;
1068
Chuck Lever8885cb32007-01-31 12:14:05 -05001069 dprintk("RPC: %5u gss_wrap_req\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 if (ctx->gc_proc != RPC_GSS_PROC_DATA) {
1071 /* The spec seems a little ambiguous here, but I think that not
1072 * wrapping context destruction requests makes the most sense.
1073 */
1074 status = encode(rqstp, p, obj);
1075 goto out;
1076 }
1077 switch (gss_cred->gc_service) {
1078 case RPC_GSS_SVC_NONE:
1079 status = encode(rqstp, p, obj);
1080 break;
1081 case RPC_GSS_SVC_INTEGRITY:
1082 status = gss_wrap_req_integ(cred, ctx, encode,
1083 rqstp, p, obj);
1084 break;
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001085 case RPC_GSS_SVC_PRIVACY:
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001086 status = gss_wrap_req_priv(cred, ctx, encode,
1087 rqstp, p, obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 break;
1089 }
1090out:
1091 gss_put_ctx(ctx);
Chuck Lever8885cb32007-01-31 12:14:05 -05001092 dprintk("RPC: %5u gss_wrap_req returning %d\n", task->tk_pid, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 return status;
1094}
1095
1096static inline int
1097gss_unwrap_resp_integ(struct rpc_cred *cred, struct gss_cl_ctx *ctx,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001098 struct rpc_rqst *rqstp, __be32 **p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099{
1100 struct xdr_buf *rcv_buf = &rqstp->rq_rcv_buf;
1101 struct xdr_buf integ_buf;
1102 struct xdr_netobj mic;
1103 u32 data_offset, mic_offset;
1104 u32 integ_len;
1105 u32 maj_stat;
1106 int status = -EIO;
1107
1108 integ_len = ntohl(*(*p)++);
1109 if (integ_len & 3)
1110 return status;
1111 data_offset = (u8 *)(*p) - (u8 *)rcv_buf->head[0].iov_base;
1112 mic_offset = integ_len + data_offset;
1113 if (mic_offset > rcv_buf->len)
1114 return status;
1115 if (ntohl(*(*p)++) != rqstp->rq_seqno)
1116 return status;
1117
1118 if (xdr_buf_subsegment(rcv_buf, &integ_buf, data_offset,
1119 mic_offset - data_offset))
1120 return status;
1121
1122 if (xdr_buf_read_netobj(rcv_buf, &mic, mic_offset))
1123 return status;
1124
J. Bruce Fields00fd6e12005-10-13 16:55:18 -04001125 maj_stat = gss_verify_mic(ctx->gc_gss_ctx, &integ_buf, &mic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 if (maj_stat == GSS_S_CONTEXT_EXPIRED)
1127 cred->cr_flags &= ~RPCAUTH_CRED_UPTODATE;
1128 if (maj_stat != GSS_S_COMPLETE)
1129 return status;
1130 return 0;
1131}
1132
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001133static inline int
1134gss_unwrap_resp_priv(struct rpc_cred *cred, struct gss_cl_ctx *ctx,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001135 struct rpc_rqst *rqstp, __be32 **p)
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001136{
1137 struct xdr_buf *rcv_buf = &rqstp->rq_rcv_buf;
1138 u32 offset;
1139 u32 opaque_len;
1140 u32 maj_stat;
1141 int status = -EIO;
1142
1143 opaque_len = ntohl(*(*p)++);
1144 offset = (u8 *)(*p) - (u8 *)rcv_buf->head[0].iov_base;
1145 if (offset + opaque_len > rcv_buf->len)
1146 return status;
1147 /* remove padding: */
1148 rcv_buf->len = offset + opaque_len;
1149
J. Bruce Fields00fd6e12005-10-13 16:55:18 -04001150 maj_stat = gss_unwrap(ctx->gc_gss_ctx, offset, rcv_buf);
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001151 if (maj_stat == GSS_S_CONTEXT_EXPIRED)
1152 cred->cr_flags &= ~RPCAUTH_CRED_UPTODATE;
1153 if (maj_stat != GSS_S_COMPLETE)
1154 return status;
1155 if (ntohl(*(*p)++) != rqstp->rq_seqno)
1156 return status;
1157
1158 return 0;
1159}
1160
1161
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162static int
1163gss_unwrap_resp(struct rpc_task *task,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001164 kxdrproc_t decode, void *rqstp, __be32 *p, void *obj)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165{
1166 struct rpc_cred *cred = task->tk_msg.rpc_cred;
1167 struct gss_cred *gss_cred = container_of(cred, struct gss_cred,
1168 gc_base);
1169 struct gss_cl_ctx *ctx = gss_cred_get_ctx(cred);
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001170 __be32 *savedp = p;
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001171 struct kvec *head = ((struct rpc_rqst *)rqstp)->rq_rcv_buf.head;
1172 int savedlen = head->iov_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 int status = -EIO;
1174
1175 if (ctx->gc_proc != RPC_GSS_PROC_DATA)
1176 goto out_decode;
1177 switch (gss_cred->gc_service) {
1178 case RPC_GSS_SVC_NONE:
1179 break;
1180 case RPC_GSS_SVC_INTEGRITY:
1181 status = gss_unwrap_resp_integ(cred, ctx, rqstp, &p);
1182 if (status)
1183 goto out;
1184 break;
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001185 case RPC_GSS_SVC_PRIVACY:
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001186 status = gss_unwrap_resp_priv(cred, ctx, rqstp, &p);
1187 if (status)
1188 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 break;
1190 }
J. Bruce Fields24b26052005-10-13 16:54:53 -04001191 /* take into account extra slack for integrity and privacy cases: */
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001192 task->tk_auth->au_rslack = task->tk_auth->au_verfsize + (p - savedp)
1193 + (savedlen - head->iov_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194out_decode:
1195 status = decode(rqstp, p, obj);
1196out:
1197 gss_put_ctx(ctx);
Chuck Lever8885cb32007-01-31 12:14:05 -05001198 dprintk("RPC: %5u gss_unwrap_resp returning %d\n", task->tk_pid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 status);
1200 return status;
1201}
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001202
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203static struct rpc_authops authgss_ops = {
1204 .owner = THIS_MODULE,
1205 .au_flavor = RPC_AUTH_GSS,
1206#ifdef RPC_DEBUG
1207 .au_name = "RPCSEC_GSS",
1208#endif
1209 .create = gss_create,
1210 .destroy = gss_destroy,
1211 .lookup_cred = gss_lookup_cred,
1212 .crcreate = gss_create_cred
1213};
1214
1215static struct rpc_credops gss_credops = {
1216 .cr_name = "AUTH_GSS",
1217 .crdestroy = gss_destroy_cred,
Trond Myklebustfba3bad2006-02-01 12:19:27 -05001218 .cr_init = gss_cred_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 .crmatch = gss_match,
1220 .crmarshal = gss_marshal,
1221 .crrefresh = gss_refresh,
1222 .crvalidate = gss_validate,
1223 .crwrap_req = gss_wrap_req,
1224 .crunwrap_resp = gss_unwrap_resp,
1225};
1226
1227static struct rpc_pipe_ops gss_upcall_ops = {
1228 .upcall = gss_pipe_upcall,
1229 .downcall = gss_pipe_downcall,
1230 .destroy_msg = gss_pipe_destroy_msg,
1231 .release_pipe = gss_pipe_release,
1232};
1233
1234/*
1235 * Initialize RPCSEC_GSS module
1236 */
1237static int __init init_rpcsec_gss(void)
1238{
1239 int err = 0;
1240
1241 err = rpcauth_register(&authgss_ops);
1242 if (err)
1243 goto out;
1244 err = gss_svc_init();
1245 if (err)
1246 goto out_unregister;
1247 return 0;
1248out_unregister:
1249 rpcauth_unregister(&authgss_ops);
1250out:
1251 return err;
1252}
1253
1254static void __exit exit_rpcsec_gss(void)
1255{
1256 gss_svc_shutdown();
1257 rpcauth_unregister(&authgss_ops);
1258}
1259
1260MODULE_LICENSE("GPL");
1261module_init(init_rpcsec_gss)
1262module_exit(exit_rpcsec_gss)