blob: 982aba697e4dfb1667b4dda272409a09159c81b0 [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
Trond Myklebustf1c0a862007-06-23 20:17:58 -040057static const struct rpc_authops authgss_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Trond Myklebustf1c0a862007-06-23 20:17:58 -040059static const struct rpc_credops gss_credops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61#ifdef RPC_DEBUG
62# define RPCDBG_FACILITY RPCDBG_AUTH
63#endif
64
65#define NFS_NGROUPS 16
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#define GSS_CRED_SLACK 1024 /* XXX: unused */
68/* length of a krb5 verifier (48), plus data added before arguments when
69 * using integrity (two 4-byte integers): */
Olga Kornievskaiaadeb8132006-12-04 20:22:34 -050070#define GSS_VERF_SLACK 100
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72/* XXX this define must match the gssd define
73* as it is passed to gssd to signal the use of
74* machine creds should be part of the shared rpc interface */
75
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -080076#define CA_RUN_AS_MACHINE 0x00000200
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78/* dump the buffer in `emacs-hexl' style */
79#define isprint(c) ((c > 0x1f) && (c < 0x7f))
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081struct gss_auth {
Trond Myklebust0285ed12007-06-27 14:29:12 -040082 struct kref kref;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 struct rpc_auth rpc_auth;
84 struct gss_api_mech *mech;
85 enum rpc_gss_svc service;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 struct rpc_clnt *client;
87 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088};
89
Trond Myklebust5d28dc82007-06-26 19:18:38 -040090static void gss_free_ctx(struct gss_cl_ctx *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091static struct rpc_pipe_ops gss_upcall_ops;
92
Linus Torvalds1da177e2005-04-16 15:20:36 -070093static inline struct gss_cl_ctx *
94gss_get_ctx(struct gss_cl_ctx *ctx)
95{
96 atomic_inc(&ctx->count);
97 return ctx;
98}
99
100static inline void
101gss_put_ctx(struct gss_cl_ctx *ctx)
102{
103 if (atomic_dec_and_test(&ctx->count))
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400104 gss_free_ctx(ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
106
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400107/* gss_cred_set_ctx:
108 * called by gss_upcall_callback and gss_create_upcall in order
109 * to set the gss context. The actual exchange of an old context
110 * and a new one is protected by the inode->i_lock.
111 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112static void
113gss_cred_set_ctx(struct rpc_cred *cred, struct gss_cl_ctx *ctx)
114{
115 struct gss_cred *gss_cred = container_of(cred, struct gss_cred, gc_base);
116 struct gss_cl_ctx *old;
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 old = gss_cred->gc_ctx;
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400119 rcu_assign_pointer(gss_cred->gc_ctx, ctx);
Trond Myklebustfc432dd2007-06-25 10:15:15 -0400120 set_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
121 clear_bit(RPCAUTH_CRED_NEW, &cred->cr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 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
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400132 rcu_read_lock();
Trond Myklebustfc432dd2007-06-25 10:15:15 -0400133 if (test_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags) && gss_cred->gc_ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 res = 1;
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400135 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 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
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400174 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 if (gss_cred->gc_ctx)
176 ctx = gss_get_ctx(gss_cred->gc_ctx);
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400177 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 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 *
Trond Myklebust6e84c7b2007-06-07 15:31:36 -0400272__gss_find_upcall(struct rpc_inode *rpci, uid_t uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
274 struct gss_upcall_msg *pos;
Trond Myklebust6e84c7b2007-06-07 15:31:36 -0400275 list_for_each_entry(pos, &rpci->in_downcall, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 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{
Trond Myklebustb185f832007-06-07 10:14:14 -0400293 struct inode *inode = gss_auth->dentry->d_inode;
Trond Myklebust6e84c7b2007-06-07 15:31:36 -0400294 struct rpc_inode *rpci = RPC_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 struct gss_upcall_msg *old;
296
Trond Myklebustb185f832007-06-07 10:14:14 -0400297 spin_lock(&inode->i_lock);
Trond Myklebust6e84c7b2007-06-07 15:31:36 -0400298 old = __gss_find_upcall(rpci, gss_msg->uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 if (old == NULL) {
300 atomic_inc(&gss_msg->count);
Trond Myklebust6e84c7b2007-06-07 15:31:36 -0400301 list_add(&gss_msg->list, &rpci->in_downcall);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 } else
303 gss_msg = old;
Trond Myklebustb185f832007-06-07 10:14:14 -0400304 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 return gss_msg;
306}
307
308static void
309__gss_unhash_msg(struct gss_upcall_msg *gss_msg)
310{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 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;
Trond Myklebustb185f832007-06-07 10:14:14 -0400321 struct inode *inode = gss_auth->dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400323 if (list_empty(&gss_msg->list))
324 return;
Trond Myklebustb185f832007-06-07 10:14:14 -0400325 spin_lock(&inode->i_lock);
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400326 if (!list_empty(&gss_msg->list))
327 __gss_unhash_msg(gss_msg);
Trond Myklebustb185f832007-06-07 10:14:14 -0400328 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329}
330
331static void
332gss_upcall_callback(struct rpc_task *task)
333{
334 struct gss_cred *gss_cred = container_of(task->tk_msg.rpc_cred,
335 struct gss_cred, gc_base);
336 struct gss_upcall_msg *gss_msg = gss_cred->gc_upcall;
Trond Myklebustb185f832007-06-07 10:14:14 -0400337 struct inode *inode = gss_msg->auth->dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400339 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 if (gss_msg->ctx)
341 gss_cred_set_ctx(task->tk_msg.rpc_cred, gss_get_ctx(gss_msg->ctx));
342 else
343 task->tk_status = gss_msg->msg.errno;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 gss_cred->gc_upcall = NULL;
345 rpc_wake_up_status(&gss_msg->rpc_waitqueue, gss_msg->msg.errno);
Trond Myklebustb185f832007-06-07 10:14:14 -0400346 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 gss_release_msg(gss_msg);
348}
349
350static inline struct gss_upcall_msg *
351gss_alloc_msg(struct gss_auth *gss_auth, uid_t uid)
352{
353 struct gss_upcall_msg *gss_msg;
354
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700355 gss_msg = kzalloc(sizeof(*gss_msg), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 if (gss_msg != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 INIT_LIST_HEAD(&gss_msg->list);
358 rpc_init_wait_queue(&gss_msg->rpc_waitqueue, "RPCSEC_GSS upcall waitq");
359 init_waitqueue_head(&gss_msg->waitqueue);
360 atomic_set(&gss_msg->count, 1);
361 gss_msg->msg.data = &gss_msg->uid;
362 gss_msg->msg.len = sizeof(gss_msg->uid);
363 gss_msg->uid = uid;
364 gss_msg->auth = gss_auth;
365 }
366 return gss_msg;
367}
368
369static struct gss_upcall_msg *
370gss_setup_upcall(struct rpc_clnt *clnt, struct gss_auth *gss_auth, struct rpc_cred *cred)
371{
372 struct gss_upcall_msg *gss_new, *gss_msg;
373
374 gss_new = gss_alloc_msg(gss_auth, cred->cr_uid);
375 if (gss_new == NULL)
376 return ERR_PTR(-ENOMEM);
377 gss_msg = gss_add_msg(gss_auth, gss_new);
378 if (gss_msg == gss_new) {
379 int res = rpc_queue_upcall(gss_auth->dentry->d_inode, &gss_new->msg);
380 if (res) {
381 gss_unhash_msg(gss_new);
382 gss_msg = ERR_PTR(res);
383 }
384 } else
385 gss_release_msg(gss_new);
386 return gss_msg;
387}
388
389static inline int
390gss_refresh_upcall(struct rpc_task *task)
391{
392 struct rpc_cred *cred = task->tk_msg.rpc_cred;
Trond Myklebust4a8c1342007-06-07 10:14:14 -0400393 struct gss_auth *gss_auth = container_of(cred->cr_auth,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 struct gss_auth, rpc_auth);
395 struct gss_cred *gss_cred = container_of(cred,
396 struct gss_cred, gc_base);
397 struct gss_upcall_msg *gss_msg;
Trond Myklebustb185f832007-06-07 10:14:14 -0400398 struct inode *inode = gss_auth->dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 int err = 0;
400
Chuck Lever8885cb32007-01-31 12:14:05 -0500401 dprintk("RPC: %5u gss_refresh_upcall for uid %u\n", task->tk_pid,
402 cred->cr_uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 gss_msg = gss_setup_upcall(task->tk_client, gss_auth, cred);
404 if (IS_ERR(gss_msg)) {
405 err = PTR_ERR(gss_msg);
406 goto out;
407 }
Trond Myklebustb185f832007-06-07 10:14:14 -0400408 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 if (gss_cred->gc_upcall != NULL)
410 rpc_sleep_on(&gss_cred->gc_upcall->rpc_waitqueue, task, NULL, NULL);
411 else if (gss_msg->ctx == NULL && gss_msg->msg.errno >= 0) {
412 task->tk_timeout = 0;
413 gss_cred->gc_upcall = gss_msg;
414 /* gss_upcall_callback will release the reference to gss_upcall_msg */
415 atomic_inc(&gss_msg->count);
416 rpc_sleep_on(&gss_msg->rpc_waitqueue, task, gss_upcall_callback, NULL);
417 } else
418 err = gss_msg->msg.errno;
Trond Myklebustb185f832007-06-07 10:14:14 -0400419 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 gss_release_msg(gss_msg);
421out:
Chuck Lever8885cb32007-01-31 12:14:05 -0500422 dprintk("RPC: %5u gss_refresh_upcall for uid %u result %d\n",
423 task->tk_pid, cred->cr_uid, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 return err;
425}
426
427static inline int
428gss_create_upcall(struct gss_auth *gss_auth, struct gss_cred *gss_cred)
429{
Trond Myklebustb185f832007-06-07 10:14:14 -0400430 struct inode *inode = gss_auth->dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 struct rpc_cred *cred = &gss_cred->gc_base;
432 struct gss_upcall_msg *gss_msg;
433 DEFINE_WAIT(wait);
434 int err = 0;
435
Chuck Lever8885cb32007-01-31 12:14:05 -0500436 dprintk("RPC: gss_upcall for uid %u\n", cred->cr_uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 gss_msg = gss_setup_upcall(gss_auth->client, gss_auth, cred);
438 if (IS_ERR(gss_msg)) {
439 err = PTR_ERR(gss_msg);
440 goto out;
441 }
442 for (;;) {
443 prepare_to_wait(&gss_msg->waitqueue, &wait, TASK_INTERRUPTIBLE);
Trond Myklebustb185f832007-06-07 10:14:14 -0400444 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 if (gss_msg->ctx != NULL || gss_msg->msg.errno < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 break;
447 }
Trond Myklebustb185f832007-06-07 10:14:14 -0400448 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 if (signalled()) {
450 err = -ERESTARTSYS;
451 goto out_intr;
452 }
453 schedule();
454 }
455 if (gss_msg->ctx)
456 gss_cred_set_ctx(cred, gss_get_ctx(gss_msg->ctx));
457 else
458 err = gss_msg->msg.errno;
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400459 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460out_intr:
461 finish_wait(&gss_msg->waitqueue, &wait);
462 gss_release_msg(gss_msg);
463out:
Chuck Lever8885cb32007-01-31 12:14:05 -0500464 dprintk("RPC: gss_create_upcall for uid %u result %d\n",
465 cred->cr_uid, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 return err;
467}
468
469static ssize_t
470gss_pipe_upcall(struct file *filp, struct rpc_pipe_msg *msg,
471 char __user *dst, size_t buflen)
472{
473 char *data = (char *)msg->data + msg->copied;
474 ssize_t mlen = msg->len;
475 ssize_t left;
476
477 if (mlen > buflen)
478 mlen = buflen;
479 left = copy_to_user(dst, data, mlen);
480 if (left < 0) {
481 msg->errno = left;
482 return left;
483 }
484 mlen -= left;
485 msg->copied += mlen;
486 msg->errno = 0;
487 return mlen;
488}
489
490#define MSG_BUF_MAXSIZE 1024
491
492static ssize_t
493gss_pipe_downcall(struct file *filp, const char __user *src, size_t mlen)
494{
495 const void *p, *end;
496 void *buf;
497 struct rpc_clnt *clnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 struct gss_upcall_msg *gss_msg;
Trond Myklebustb185f832007-06-07 10:14:14 -0400499 struct inode *inode = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 struct gss_cl_ctx *ctx;
501 uid_t uid;
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400502 ssize_t err = -EFBIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504 if (mlen > MSG_BUF_MAXSIZE)
505 goto out;
506 err = -ENOMEM;
507 buf = kmalloc(mlen, GFP_KERNEL);
508 if (!buf)
509 goto out;
510
Trond Myklebustb185f832007-06-07 10:14:14 -0400511 clnt = RPC_I(inode)->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 err = -EFAULT;
513 if (copy_from_user(buf, src, mlen))
514 goto err;
515
516 end = (const void *)((char *)buf + mlen);
517 p = simple_get_bytes(buf, end, &uid, sizeof(uid));
518 if (IS_ERR(p)) {
519 err = PTR_ERR(p);
520 goto err;
521 }
522
523 err = -ENOMEM;
524 ctx = gss_alloc_context();
525 if (ctx == NULL)
526 goto err;
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400527
528 err = -ENOENT;
529 /* Find a matching upcall */
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400530 spin_lock(&inode->i_lock);
Trond Myklebust6e84c7b2007-06-07 15:31:36 -0400531 gss_msg = __gss_find_upcall(RPC_I(inode), uid);
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400532 if (gss_msg == NULL) {
533 spin_unlock(&inode->i_lock);
534 goto err_put_ctx;
535 }
536 list_del_init(&gss_msg->list);
537 spin_unlock(&inode->i_lock);
538
Trond Myklebust6e84c7b2007-06-07 15:31:36 -0400539 p = gss_fill_context(p, end, ctx, gss_msg->auth->mech);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 if (IS_ERR(p)) {
541 err = PTR_ERR(p);
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400542 gss_msg->msg.errno = (err == -EACCES) ? -EACCES : -EAGAIN;
543 goto err_release_msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 }
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400545 gss_msg->ctx = gss_get_ctx(ctx);
546 err = mlen;
547
548err_release_msg:
Trond Myklebustb185f832007-06-07 10:14:14 -0400549 spin_lock(&inode->i_lock);
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400550 __gss_unhash_msg(gss_msg);
551 spin_unlock(&inode->i_lock);
552 gss_release_msg(gss_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553err_put_ctx:
554 gss_put_ctx(ctx);
555err:
556 kfree(buf);
557out:
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400558 dprintk("RPC: gss_pipe_downcall returning %Zd\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);
Trond Myklebust6e84c7b2007-06-07 15:31:36 -0400566 struct gss_upcall_msg *gss_msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
Trond Myklebustb185f832007-06-07 10:14:14 -0400568 spin_lock(&inode->i_lock);
Trond Myklebust6e84c7b2007-06-07 15:31:36 -0400569 while (!list_empty(&rpci->in_downcall)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Trond Myklebust6e84c7b2007-06-07 15:31:36 -0400571 gss_msg = list_entry(rpci->in_downcall.next,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 struct gss_upcall_msg, list);
573 gss_msg->msg.errno = -EPIPE;
574 atomic_inc(&gss_msg->count);
575 __gss_unhash_msg(gss_msg);
Trond Myklebustb185f832007-06-07 10:14:14 -0400576 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 gss_release_msg(gss_msg);
Trond Myklebustb185f832007-06-07 10:14:14 -0400578 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 }
Trond Myklebustb185f832007-06-07 10:14:14 -0400580 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581}
582
583static void
584gss_pipe_destroy_msg(struct rpc_pipe_msg *msg)
585{
586 struct gss_upcall_msg *gss_msg = container_of(msg, struct gss_upcall_msg, msg);
587 static unsigned long ratelimit;
588
589 if (msg->errno < 0) {
Chuck Lever8885cb32007-01-31 12:14:05 -0500590 dprintk("RPC: gss_pipe_destroy_msg releasing msg %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 gss_msg);
592 atomic_inc(&gss_msg->count);
593 gss_unhash_msg(gss_msg);
Trond Myklebust48e49182005-12-19 17:11:22 -0500594 if (msg->errno == -ETIMEDOUT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 unsigned long now = jiffies;
596 if (time_after(now, ratelimit)) {
597 printk(KERN_WARNING "RPC: AUTH_GSS upcall timed out.\n"
598 "Please check user daemon is running!\n");
599 ratelimit = now + 15*HZ;
600 }
601 }
602 gss_release_msg(gss_msg);
603 }
604}
605
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800606/*
607 * NOTE: we have the opportunity to use different
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 * parameters based on the input flavor (which must be a pseudoflavor)
609 */
610static struct rpc_auth *
611gss_create(struct rpc_clnt *clnt, rpc_authflavor_t flavor)
612{
613 struct gss_auth *gss_auth;
614 struct rpc_auth * auth;
J. Bruce Fields6a192752005-06-22 17:16:23 +0000615 int err = -ENOMEM; /* XXX? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Chuck Lever8885cb32007-01-31 12:14:05 -0500617 dprintk("RPC: creating GSS authenticator for client %p\n", clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
619 if (!try_module_get(THIS_MODULE))
J. Bruce Fields6a192752005-06-22 17:16:23 +0000620 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 if (!(gss_auth = kmalloc(sizeof(*gss_auth), GFP_KERNEL)))
622 goto out_dec;
623 gss_auth->client = clnt;
J. Bruce Fields6a192752005-06-22 17:16:23 +0000624 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 gss_auth->mech = gss_mech_get_by_pseudoflavor(flavor);
626 if (!gss_auth->mech) {
627 printk(KERN_WARNING "%s: Pseudoflavor %d not found!",
628 __FUNCTION__, flavor);
629 goto err_free;
630 }
631 gss_auth->service = gss_pseudoflavor_to_service(gss_auth->mech, flavor);
J. Bruce Fields438b6fd2005-06-22 17:16:23 +0000632 if (gss_auth->service == 0)
633 goto err_put_mech;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 auth = &gss_auth->rpc_auth;
635 auth->au_cslack = GSS_CRED_SLACK >> 2;
636 auth->au_rslack = GSS_VERF_SLACK >> 2;
637 auth->au_ops = &authgss_ops;
638 auth->au_flavor = flavor;
639 atomic_set(&auth->au_count, 1);
Trond Myklebust0285ed12007-06-27 14:29:12 -0400640 kref_init(&gss_auth->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Trond Myklebust158998b2006-08-24 01:03:17 -0400642 gss_auth->dentry = rpc_mkpipe(clnt->cl_dentry, gss_auth->mech->gm_name,
643 clnt, &gss_upcall_ops, RPC_PIPE_WAIT_FOR_OPEN);
J. Bruce Fields6a192752005-06-22 17:16:23 +0000644 if (IS_ERR(gss_auth->dentry)) {
645 err = PTR_ERR(gss_auth->dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 goto err_put_mech;
J. Bruce Fields6a192752005-06-22 17:16:23 +0000647 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Trond Myklebustf5c21872007-06-25 17:11:20 -0400649 err = rpcauth_init_credcache(auth);
Trond Myklebust07a2bf12007-06-09 15:42:01 -0400650 if (err)
651 goto err_unlink_pipe;
652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 return auth;
Trond Myklebust07a2bf12007-06-09 15:42:01 -0400654err_unlink_pipe:
655 rpc_unlink(gss_auth->dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656err_put_mech:
657 gss_mech_put(gss_auth->mech);
658err_free:
659 kfree(gss_auth);
660out_dec:
661 module_put(THIS_MODULE);
J. Bruce Fields6a192752005-06-22 17:16:23 +0000662 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663}
664
665static void
Trond Myklebust0285ed12007-06-27 14:29:12 -0400666gss_free(struct gss_auth *gss_auth)
667{
668 rpc_unlink(gss_auth->dentry);
669 gss_auth->dentry = NULL;
670 gss_mech_put(gss_auth->mech);
671
672 kfree(gss_auth);
673 module_put(THIS_MODULE);
674}
675
676static void
677gss_free_callback(struct kref *kref)
678{
679 struct gss_auth *gss_auth = container_of(kref, struct gss_auth, kref);
680
681 gss_free(gss_auth);
682}
683
684static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685gss_destroy(struct rpc_auth *auth)
686{
687 struct gss_auth *gss_auth;
688
Chuck Lever8885cb32007-01-31 12:14:05 -0500689 dprintk("RPC: destroying GSS authenticator %p flavor %d\n",
690 auth, auth->au_flavor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Trond Myklebust3ab9bb72007-06-09 15:41:42 -0400692 rpcauth_destroy_credcache(auth);
693
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 gss_auth = container_of(auth, struct gss_auth, rpc_auth);
Trond Myklebust0285ed12007-06-27 14:29:12 -0400695 kref_put(&gss_auth->kref, gss_free_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696}
697
698/* gss_destroy_cred (and gss_destroy_ctx) are used to clean up after failure
699 * to create a new cred or context, so they check that things have been
700 * allocated before freeing them. */
701static void
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400702gss_do_free_ctx(struct gss_cl_ctx *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703{
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400704 dprintk("RPC: gss_free_ctx\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
706 if (ctx->gc_gss_ctx)
707 gss_delete_sec_context(&ctx->gc_gss_ctx);
708
709 kfree(ctx->gc_wire_ctx.data);
710 kfree(ctx);
711}
712
713static void
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400714gss_free_ctx_callback(struct rcu_head *head)
715{
716 struct gss_cl_ctx *ctx = container_of(head, struct gss_cl_ctx, gc_rcu);
717 gss_do_free_ctx(ctx);
718}
719
720static void
721gss_free_ctx(struct gss_cl_ctx *ctx)
722{
723 call_rcu(&ctx->gc_rcu, gss_free_ctx_callback);
724}
725
726static void
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400727gss_free_cred(struct gss_cred *gss_cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728{
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400729 dprintk("RPC: gss_free_cred %p\n", gss_cred);
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400730 kfree(gss_cred);
731}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400733static void
734gss_free_cred_callback(struct rcu_head *head)
735{
736 struct gss_cred *gss_cred = container_of(head, struct gss_cred, gc_base.cr_rcu);
737 gss_free_cred(gss_cred);
738}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400740static void
741gss_destroy_cred(struct rpc_cred *cred)
742{
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400743 struct gss_cred *gss_cred = container_of(cred, struct gss_cred, gc_base);
Trond Myklebust0285ed12007-06-27 14:29:12 -0400744 struct gss_auth *gss_auth = container_of(cred->cr_auth, struct gss_auth, rpc_auth);
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400745 struct gss_cl_ctx *ctx = gss_cred->gc_ctx;
746
747 rcu_assign_pointer(gss_cred->gc_ctx, NULL);
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400748 call_rcu(&cred->cr_rcu, gss_free_cred_callback);
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400749 if (ctx)
750 gss_put_ctx(ctx);
Trond Myklebust0285ed12007-06-27 14:29:12 -0400751 kref_put(&gss_auth->kref, gss_free_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752}
753
754/*
755 * Lookup RPCSEC_GSS cred for the current process
756 */
757static struct rpc_cred *
Trond Myklebust8a317762006-02-01 12:18:36 -0500758gss_lookup_cred(struct rpc_auth *auth, struct auth_cred *acred, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759{
Trond Myklebust8a317762006-02-01 12:18:36 -0500760 return rpcauth_lookup_credcache(auth, acred, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761}
762
763static struct rpc_cred *
Trond Myklebust8a317762006-02-01 12:18:36 -0500764gss_create_cred(struct rpc_auth *auth, struct auth_cred *acred, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765{
766 struct gss_auth *gss_auth = container_of(auth, struct gss_auth, rpc_auth);
767 struct gss_cred *cred = NULL;
768 int err = -ENOMEM;
769
Chuck Lever8885cb32007-01-31 12:14:05 -0500770 dprintk("RPC: gss_create_cred for uid %d, flavor %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 acred->uid, auth->au_flavor);
772
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700773 if (!(cred = kzalloc(sizeof(*cred), GFP_KERNEL)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 goto out_err;
775
Trond Myklebust5fe47552007-06-23 19:55:31 -0400776 rpcauth_init_cred(&cred->gc_base, acred, auth, &gss_credops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 /*
778 * Note: in order to force a call to call_refresh(), we deliberately
779 * fail to flag the credential as RPCAUTH_CRED_UPTODATE.
780 */
Trond Myklebustfc432dd2007-06-25 10:15:15 -0400781 cred->gc_base.cr_flags = 1UL << RPCAUTH_CRED_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 cred->gc_service = gss_auth->service;
Trond Myklebust0285ed12007-06-27 14:29:12 -0400783 kref_get(&gss_auth->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 return &cred->gc_base;
785
786out_err:
Chuck Lever8885cb32007-01-31 12:14:05 -0500787 dprintk("RPC: gss_create_cred failed with error %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 return ERR_PTR(err);
789}
790
791static int
Trond Myklebustfba3bad2006-02-01 12:19:27 -0500792gss_cred_init(struct rpc_auth *auth, struct rpc_cred *cred)
793{
794 struct gss_auth *gss_auth = container_of(auth, struct gss_auth, rpc_auth);
795 struct gss_cred *gss_cred = container_of(cred,struct gss_cred, gc_base);
796 int err;
797
798 do {
799 err = gss_create_upcall(gss_auth, gss_cred);
800 } while (err == -EAGAIN);
801 return err;
802}
803
804static int
Trond Myklebust8a317762006-02-01 12:18:36 -0500805gss_match(struct auth_cred *acred, struct rpc_cred *rc, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806{
807 struct gss_cred *gss_cred = container_of(rc, struct gss_cred, gc_base);
808
Trond Myklebust8a317762006-02-01 12:18:36 -0500809 /*
810 * If the searchflags have set RPCAUTH_LOOKUP_NEW, then
811 * we don't really care if the credential has expired or not,
812 * since the caller should be prepared to reinitialise it.
813 */
Trond Myklebustfc432dd2007-06-25 10:15:15 -0400814 if ((flags & RPCAUTH_LOOKUP_NEW) && test_bit(RPCAUTH_CRED_NEW, &rc->cr_flags))
Trond Myklebust8a317762006-02-01 12:18:36 -0500815 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 /* Don't match with creds that have expired. */
817 if (gss_cred->gc_ctx && time_after(jiffies, gss_cred->gc_ctx->gc_expiry))
818 return 0;
Trond Myklebust8a317762006-02-01 12:18:36 -0500819out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 return (rc->cr_uid == acred->uid);
821}
822
823/*
824* Marshal credentials.
825* Maybe we should keep a cached credential for performance reasons.
826*/
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700827static __be32 *
828gss_marshal(struct rpc_task *task, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829{
830 struct rpc_cred *cred = task->tk_msg.rpc_cred;
831 struct gss_cred *gss_cred = container_of(cred, struct gss_cred,
832 gc_base);
833 struct gss_cl_ctx *ctx = gss_cred_get_ctx(cred);
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700834 __be32 *cred_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 struct rpc_rqst *req = task->tk_rqstp;
836 u32 maj_stat = 0;
837 struct xdr_netobj mic;
838 struct kvec iov;
839 struct xdr_buf verf_buf;
840
Chuck Lever8885cb32007-01-31 12:14:05 -0500841 dprintk("RPC: %5u gss_marshal\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
843 *p++ = htonl(RPC_AUTH_GSS);
844 cred_len = p++;
845
846 spin_lock(&ctx->gc_seq_lock);
847 req->rq_seqno = ctx->gc_seq++;
848 spin_unlock(&ctx->gc_seq_lock);
849
850 *p++ = htonl((u32) RPC_GSS_VERSION);
851 *p++ = htonl((u32) ctx->gc_proc);
852 *p++ = htonl((u32) req->rq_seqno);
853 *p++ = htonl((u32) gss_cred->gc_service);
854 p = xdr_encode_netobj(p, &ctx->gc_wire_ctx);
855 *cred_len = htonl((p - (cred_len + 1)) << 2);
856
857 /* We compute the checksum for the verifier over the xdr-encoded bytes
858 * starting with the xid and ending at the end of the credential: */
Chuck Lever808012f2005-08-25 16:25:49 -0700859 iov.iov_base = xprt_skip_transport_header(task->tk_xprt,
860 req->rq_snd_buf.head[0].iov_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 iov.iov_len = (u8 *)p - (u8 *)iov.iov_base;
862 xdr_buf_from_iov(&iov, &verf_buf);
863
864 /* set verifier flavor*/
865 *p++ = htonl(RPC_AUTH_GSS);
866
867 mic.data = (u8 *)(p + 1);
J. Bruce Fields00fd6e12005-10-13 16:55:18 -0400868 maj_stat = gss_get_mic(ctx->gc_gss_ctx, &verf_buf, &mic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 if (maj_stat == GSS_S_CONTEXT_EXPIRED) {
Trond Myklebustfc432dd2007-06-25 10:15:15 -0400870 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 } else if (maj_stat != 0) {
872 printk("gss_marshal: gss_get_mic FAILED (%d)\n", maj_stat);
873 goto out_put_ctx;
874 }
875 p = xdr_encode_opaque(p, NULL, mic.len);
876 gss_put_ctx(ctx);
877 return p;
878out_put_ctx:
879 gss_put_ctx(ctx);
880 return NULL;
881}
882
883/*
884* Refresh credentials. XXX - finish
885*/
886static int
887gss_refresh(struct rpc_task *task)
888{
889
890 if (!gss_cred_is_uptodate_ctx(task->tk_msg.rpc_cred))
891 return gss_refresh_upcall(task);
892 return 0;
893}
894
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700895static __be32 *
896gss_validate(struct rpc_task *task, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897{
898 struct rpc_cred *cred = task->tk_msg.rpc_cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 struct gss_cl_ctx *ctx = gss_cred_get_ctx(cred);
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700900 __be32 seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 struct kvec iov;
902 struct xdr_buf verf_buf;
903 struct xdr_netobj mic;
904 u32 flav,len;
905 u32 maj_stat;
906
Chuck Lever8885cb32007-01-31 12:14:05 -0500907 dprintk("RPC: %5u gss_validate\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
909 flav = ntohl(*p++);
910 if ((len = ntohl(*p++)) > RPC_MAX_AUTH_SIZE)
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800911 goto out_bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 if (flav != RPC_AUTH_GSS)
913 goto out_bad;
914 seq = htonl(task->tk_rqstp->rq_seqno);
915 iov.iov_base = &seq;
916 iov.iov_len = sizeof(seq);
917 xdr_buf_from_iov(&iov, &verf_buf);
918 mic.data = (u8 *)p;
919 mic.len = len;
920
J. Bruce Fields00fd6e12005-10-13 16:55:18 -0400921 maj_stat = gss_verify_mic(ctx->gc_gss_ctx, &verf_buf, &mic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 if (maj_stat == GSS_S_CONTEXT_EXPIRED)
Trond Myklebustfc432dd2007-06-25 10:15:15 -0400923 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 if (maj_stat)
925 goto out_bad;
J. Bruce Fields24b26052005-10-13 16:54:53 -0400926 /* We leave it to unwrap to calculate au_rslack. For now we just
927 * calculate the length of the verifier: */
Trond Myklebust1be27f32007-06-27 14:29:04 -0400928 cred->cr_auth->au_verfsize = XDR_QUADLEN(len) + 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 gss_put_ctx(ctx);
Chuck Lever8885cb32007-01-31 12:14:05 -0500930 dprintk("RPC: %5u gss_validate: gss_verify_mic succeeded.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 task->tk_pid);
932 return p + XDR_QUADLEN(len);
933out_bad:
934 gss_put_ctx(ctx);
Chuck Lever8885cb32007-01-31 12:14:05 -0500935 dprintk("RPC: %5u gss_validate failed.\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 return NULL;
937}
938
939static inline int
940gss_wrap_req_integ(struct rpc_cred *cred, struct gss_cl_ctx *ctx,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700941 kxdrproc_t encode, struct rpc_rqst *rqstp, __be32 *p, void *obj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942{
943 struct xdr_buf *snd_buf = &rqstp->rq_snd_buf;
944 struct xdr_buf integ_buf;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700945 __be32 *integ_len = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 struct xdr_netobj mic;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700947 u32 offset;
948 __be32 *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 struct kvec *iov;
950 u32 maj_stat = 0;
951 int status = -EIO;
952
953 integ_len = p++;
954 offset = (u8 *)p - (u8 *)snd_buf->head[0].iov_base;
955 *p++ = htonl(rqstp->rq_seqno);
956
957 status = encode(rqstp, p, obj);
958 if (status)
959 return status;
960
961 if (xdr_buf_subsegment(snd_buf, &integ_buf,
962 offset, snd_buf->len - offset))
963 return status;
964 *integ_len = htonl(integ_buf.len);
965
966 /* guess whether we're in the head or the tail: */
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800967 if (snd_buf->page_len || snd_buf->tail[0].iov_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 iov = snd_buf->tail;
969 else
970 iov = snd_buf->head;
971 p = iov->iov_base + iov->iov_len;
972 mic.data = (u8 *)(p + 1);
973
J. Bruce Fields00fd6e12005-10-13 16:55:18 -0400974 maj_stat = gss_get_mic(ctx->gc_gss_ctx, &integ_buf, &mic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 status = -EIO; /* XXX? */
976 if (maj_stat == GSS_S_CONTEXT_EXPIRED)
Trond Myklebustfc432dd2007-06-25 10:15:15 -0400977 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 else if (maj_stat)
979 return status;
980 q = xdr_encode_opaque(p, NULL, mic.len);
981
982 offset = (u8 *)q - (u8 *)p;
983 iov->iov_len += offset;
984 snd_buf->len += offset;
985 return 0;
986}
987
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -0400988static void
989priv_release_snd_buf(struct rpc_rqst *rqstp)
990{
991 int i;
992
993 for (i=0; i < rqstp->rq_enc_pages_num; i++)
994 __free_page(rqstp->rq_enc_pages[i]);
995 kfree(rqstp->rq_enc_pages);
996}
997
998static int
999alloc_enc_pages(struct rpc_rqst *rqstp)
1000{
1001 struct xdr_buf *snd_buf = &rqstp->rq_snd_buf;
1002 int first, last, i;
1003
1004 if (snd_buf->page_len == 0) {
1005 rqstp->rq_enc_pages_num = 0;
1006 return 0;
1007 }
1008
1009 first = snd_buf->page_base >> PAGE_CACHE_SHIFT;
1010 last = (snd_buf->page_base + snd_buf->page_len - 1) >> PAGE_CACHE_SHIFT;
1011 rqstp->rq_enc_pages_num = last - first + 1 + 1;
1012 rqstp->rq_enc_pages
1013 = kmalloc(rqstp->rq_enc_pages_num * sizeof(struct page *),
1014 GFP_NOFS);
1015 if (!rqstp->rq_enc_pages)
1016 goto out;
1017 for (i=0; i < rqstp->rq_enc_pages_num; i++) {
1018 rqstp->rq_enc_pages[i] = alloc_page(GFP_NOFS);
1019 if (rqstp->rq_enc_pages[i] == NULL)
1020 goto out_free;
1021 }
1022 rqstp->rq_release_snd_buf = priv_release_snd_buf;
1023 return 0;
1024out_free:
1025 for (i--; i >= 0; i--) {
1026 __free_page(rqstp->rq_enc_pages[i]);
1027 }
1028out:
1029 return -EAGAIN;
1030}
1031
1032static inline int
1033gss_wrap_req_priv(struct rpc_cred *cred, struct gss_cl_ctx *ctx,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001034 kxdrproc_t encode, struct rpc_rqst *rqstp, __be32 *p, void *obj)
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001035{
1036 struct xdr_buf *snd_buf = &rqstp->rq_snd_buf;
1037 u32 offset;
1038 u32 maj_stat;
1039 int status;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001040 __be32 *opaque_len;
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001041 struct page **inpages;
1042 int first;
1043 int pad;
1044 struct kvec *iov;
1045 char *tmp;
1046
1047 opaque_len = p++;
1048 offset = (u8 *)p - (u8 *)snd_buf->head[0].iov_base;
1049 *p++ = htonl(rqstp->rq_seqno);
1050
1051 status = encode(rqstp, p, obj);
1052 if (status)
1053 return status;
1054
1055 status = alloc_enc_pages(rqstp);
1056 if (status)
1057 return status;
1058 first = snd_buf->page_base >> PAGE_CACHE_SHIFT;
1059 inpages = snd_buf->pages + first;
1060 snd_buf->pages = rqstp->rq_enc_pages;
1061 snd_buf->page_base -= first << PAGE_CACHE_SHIFT;
1062 /* Give the tail its own page, in case we need extra space in the
1063 * head when wrapping: */
1064 if (snd_buf->page_len || snd_buf->tail[0].iov_len) {
1065 tmp = page_address(rqstp->rq_enc_pages[rqstp->rq_enc_pages_num - 1]);
1066 memcpy(tmp, snd_buf->tail[0].iov_base, snd_buf->tail[0].iov_len);
1067 snd_buf->tail[0].iov_base = tmp;
1068 }
J. Bruce Fields00fd6e12005-10-13 16:55:18 -04001069 maj_stat = gss_wrap(ctx->gc_gss_ctx, offset, snd_buf, inpages);
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001070 /* RPC_SLACK_SPACE should prevent this ever happening: */
1071 BUG_ON(snd_buf->len > snd_buf->buflen);
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001072 status = -EIO;
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001073 /* We're assuming that when GSS_S_CONTEXT_EXPIRED, the encryption was
1074 * done anyway, so it's safe to put the request on the wire: */
1075 if (maj_stat == GSS_S_CONTEXT_EXPIRED)
Trond Myklebustfc432dd2007-06-25 10:15:15 -04001076 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001077 else if (maj_stat)
1078 return status;
1079
1080 *opaque_len = htonl(snd_buf->len - offset);
1081 /* guess whether we're in the head or the tail: */
1082 if (snd_buf->page_len || snd_buf->tail[0].iov_len)
1083 iov = snd_buf->tail;
1084 else
1085 iov = snd_buf->head;
1086 p = iov->iov_base + iov->iov_len;
1087 pad = 3 - ((snd_buf->len - offset - 1) & 3);
1088 memset(p, 0, pad);
1089 iov->iov_len += pad;
1090 snd_buf->len += pad;
1091
1092 return 0;
1093}
1094
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095static int
1096gss_wrap_req(struct rpc_task *task,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001097 kxdrproc_t encode, void *rqstp, __be32 *p, void *obj)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098{
1099 struct rpc_cred *cred = task->tk_msg.rpc_cred;
1100 struct gss_cred *gss_cred = container_of(cred, struct gss_cred,
1101 gc_base);
1102 struct gss_cl_ctx *ctx = gss_cred_get_ctx(cred);
1103 int status = -EIO;
1104
Chuck Lever8885cb32007-01-31 12:14:05 -05001105 dprintk("RPC: %5u gss_wrap_req\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 if (ctx->gc_proc != RPC_GSS_PROC_DATA) {
1107 /* The spec seems a little ambiguous here, but I think that not
1108 * wrapping context destruction requests makes the most sense.
1109 */
1110 status = encode(rqstp, p, obj);
1111 goto out;
1112 }
1113 switch (gss_cred->gc_service) {
1114 case RPC_GSS_SVC_NONE:
1115 status = encode(rqstp, p, obj);
1116 break;
1117 case RPC_GSS_SVC_INTEGRITY:
1118 status = gss_wrap_req_integ(cred, ctx, encode,
1119 rqstp, p, obj);
1120 break;
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001121 case RPC_GSS_SVC_PRIVACY:
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001122 status = gss_wrap_req_priv(cred, ctx, encode,
1123 rqstp, p, obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 break;
1125 }
1126out:
1127 gss_put_ctx(ctx);
Chuck Lever8885cb32007-01-31 12:14:05 -05001128 dprintk("RPC: %5u gss_wrap_req returning %d\n", task->tk_pid, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 return status;
1130}
1131
1132static inline int
1133gss_unwrap_resp_integ(struct rpc_cred *cred, struct gss_cl_ctx *ctx,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001134 struct rpc_rqst *rqstp, __be32 **p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135{
1136 struct xdr_buf *rcv_buf = &rqstp->rq_rcv_buf;
1137 struct xdr_buf integ_buf;
1138 struct xdr_netobj mic;
1139 u32 data_offset, mic_offset;
1140 u32 integ_len;
1141 u32 maj_stat;
1142 int status = -EIO;
1143
1144 integ_len = ntohl(*(*p)++);
1145 if (integ_len & 3)
1146 return status;
1147 data_offset = (u8 *)(*p) - (u8 *)rcv_buf->head[0].iov_base;
1148 mic_offset = integ_len + data_offset;
1149 if (mic_offset > rcv_buf->len)
1150 return status;
1151 if (ntohl(*(*p)++) != rqstp->rq_seqno)
1152 return status;
1153
1154 if (xdr_buf_subsegment(rcv_buf, &integ_buf, data_offset,
1155 mic_offset - data_offset))
1156 return status;
1157
1158 if (xdr_buf_read_netobj(rcv_buf, &mic, mic_offset))
1159 return status;
1160
J. Bruce Fields00fd6e12005-10-13 16:55:18 -04001161 maj_stat = gss_verify_mic(ctx->gc_gss_ctx, &integ_buf, &mic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 if (maj_stat == GSS_S_CONTEXT_EXPIRED)
Trond Myklebustfc432dd2007-06-25 10:15:15 -04001163 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 if (maj_stat != GSS_S_COMPLETE)
1165 return status;
1166 return 0;
1167}
1168
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001169static inline int
1170gss_unwrap_resp_priv(struct rpc_cred *cred, struct gss_cl_ctx *ctx,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001171 struct rpc_rqst *rqstp, __be32 **p)
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001172{
1173 struct xdr_buf *rcv_buf = &rqstp->rq_rcv_buf;
1174 u32 offset;
1175 u32 opaque_len;
1176 u32 maj_stat;
1177 int status = -EIO;
1178
1179 opaque_len = ntohl(*(*p)++);
1180 offset = (u8 *)(*p) - (u8 *)rcv_buf->head[0].iov_base;
1181 if (offset + opaque_len > rcv_buf->len)
1182 return status;
1183 /* remove padding: */
1184 rcv_buf->len = offset + opaque_len;
1185
J. Bruce Fields00fd6e12005-10-13 16:55:18 -04001186 maj_stat = gss_unwrap(ctx->gc_gss_ctx, offset, rcv_buf);
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001187 if (maj_stat == GSS_S_CONTEXT_EXPIRED)
Trond Myklebustfc432dd2007-06-25 10:15:15 -04001188 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001189 if (maj_stat != GSS_S_COMPLETE)
1190 return status;
1191 if (ntohl(*(*p)++) != rqstp->rq_seqno)
1192 return status;
1193
1194 return 0;
1195}
1196
1197
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198static int
1199gss_unwrap_resp(struct rpc_task *task,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001200 kxdrproc_t decode, void *rqstp, __be32 *p, void *obj)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201{
1202 struct rpc_cred *cred = task->tk_msg.rpc_cred;
1203 struct gss_cred *gss_cred = container_of(cred, struct gss_cred,
1204 gc_base);
1205 struct gss_cl_ctx *ctx = gss_cred_get_ctx(cred);
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001206 __be32 *savedp = p;
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001207 struct kvec *head = ((struct rpc_rqst *)rqstp)->rq_rcv_buf.head;
1208 int savedlen = head->iov_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 int status = -EIO;
1210
1211 if (ctx->gc_proc != RPC_GSS_PROC_DATA)
1212 goto out_decode;
1213 switch (gss_cred->gc_service) {
1214 case RPC_GSS_SVC_NONE:
1215 break;
1216 case RPC_GSS_SVC_INTEGRITY:
1217 status = gss_unwrap_resp_integ(cred, ctx, rqstp, &p);
1218 if (status)
1219 goto out;
1220 break;
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001221 case RPC_GSS_SVC_PRIVACY:
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001222 status = gss_unwrap_resp_priv(cred, ctx, rqstp, &p);
1223 if (status)
1224 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 break;
1226 }
J. Bruce Fields24b26052005-10-13 16:54:53 -04001227 /* take into account extra slack for integrity and privacy cases: */
Trond Myklebust1be27f32007-06-27 14:29:04 -04001228 cred->cr_auth->au_rslack = cred->cr_auth->au_verfsize + (p - savedp)
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001229 + (savedlen - head->iov_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230out_decode:
1231 status = decode(rqstp, p, obj);
1232out:
1233 gss_put_ctx(ctx);
Chuck Lever8885cb32007-01-31 12:14:05 -05001234 dprintk("RPC: %5u gss_unwrap_resp returning %d\n", task->tk_pid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 status);
1236 return status;
1237}
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001238
Trond Myklebustf1c0a862007-06-23 20:17:58 -04001239static const struct rpc_authops authgss_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 .owner = THIS_MODULE,
1241 .au_flavor = RPC_AUTH_GSS,
1242#ifdef RPC_DEBUG
1243 .au_name = "RPCSEC_GSS",
1244#endif
1245 .create = gss_create,
1246 .destroy = gss_destroy,
1247 .lookup_cred = gss_lookup_cred,
1248 .crcreate = gss_create_cred
1249};
1250
Trond Myklebustf1c0a862007-06-23 20:17:58 -04001251static const struct rpc_credops gss_credops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 .cr_name = "AUTH_GSS",
1253 .crdestroy = gss_destroy_cred,
Trond Myklebustfba3bad2006-02-01 12:19:27 -05001254 .cr_init = gss_cred_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 .crmatch = gss_match,
1256 .crmarshal = gss_marshal,
1257 .crrefresh = gss_refresh,
1258 .crvalidate = gss_validate,
1259 .crwrap_req = gss_wrap_req,
1260 .crunwrap_resp = gss_unwrap_resp,
1261};
1262
1263static struct rpc_pipe_ops gss_upcall_ops = {
1264 .upcall = gss_pipe_upcall,
1265 .downcall = gss_pipe_downcall,
1266 .destroy_msg = gss_pipe_destroy_msg,
1267 .release_pipe = gss_pipe_release,
1268};
1269
1270/*
1271 * Initialize RPCSEC_GSS module
1272 */
1273static int __init init_rpcsec_gss(void)
1274{
1275 int err = 0;
1276
1277 err = rpcauth_register(&authgss_ops);
1278 if (err)
1279 goto out;
1280 err = gss_svc_init();
1281 if (err)
1282 goto out_unregister;
1283 return 0;
1284out_unregister:
1285 rpcauth_unregister(&authgss_ops);
1286out:
1287 return err;
1288}
1289
1290static void __exit exit_rpcsec_gss(void)
1291{
1292 gss_svc_shutdown();
1293 rpcauth_unregister(&authgss_ops);
1294}
1295
1296MODULE_LICENSE("GPL");
1297module_init(init_rpcsec_gss)
1298module_exit(exit_rpcsec_gss)