blob: ea4567fae5dd31e01dede682ad18c3fb22db8dc9 [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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 */
37
38
39#include <linux/module.h>
40#include <linux/init.h>
41#include <linux/types.h>
42#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/sched.h>
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -040044#include <linux/pagemap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/sunrpc/clnt.h>
46#include <linux/sunrpc/auth.h>
47#include <linux/sunrpc/auth_gss.h>
48#include <linux/sunrpc/svcauth_gss.h>
49#include <linux/sunrpc/gss_err.h>
50#include <linux/workqueue.h>
51#include <linux/sunrpc/rpc_pipe_fs.h>
52#include <linux/sunrpc/gss_api.h>
53#include <asm/uaccess.h>
54
Trond Myklebustf1c0a862007-06-23 20:17:58 -040055static const struct rpc_authops authgss_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Trond Myklebustf1c0a862007-06-23 20:17:58 -040057static const struct rpc_credops gss_credops;
Trond Myklebust0df7fb72007-06-26 17:04:57 -040058static const struct rpc_credops gss_nullops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60#ifdef RPC_DEBUG
61# define RPCDBG_FACILITY RPCDBG_AUTH
62#endif
63
\\\"J. Bruce Fields\\\d25a03c2008-06-09 16:51:34 -040064#define GSS_CRED_SLACK 1024
Linus Torvalds1da177e2005-04-16 15:20:36 -070065/* length of a krb5 verifier (48), plus data added before arguments when
66 * using integrity (two 4-byte integers): */
Olga Kornievskaiaadeb8132006-12-04 20:22:34 -050067#define GSS_VERF_SLACK 100
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Linus Torvalds1da177e2005-04-16 15:20:36 -070069struct gss_auth {
Trond Myklebust0285ed12007-06-27 14:29:12 -040070 struct kref kref;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 struct rpc_auth rpc_auth;
72 struct gss_api_mech *mech;
73 enum rpc_gss_svc service;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 struct rpc_clnt *client;
75 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076};
77
Trond Myklebust5d28dc82007-06-26 19:18:38 -040078static void gss_free_ctx(struct gss_cl_ctx *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079static struct rpc_pipe_ops gss_upcall_ops;
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081static inline struct gss_cl_ctx *
82gss_get_ctx(struct gss_cl_ctx *ctx)
83{
84 atomic_inc(&ctx->count);
85 return ctx;
86}
87
88static inline void
89gss_put_ctx(struct gss_cl_ctx *ctx)
90{
91 if (atomic_dec_and_test(&ctx->count))
Trond Myklebust5d28dc82007-06-26 19:18:38 -040092 gss_free_ctx(ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093}
94
Trond Myklebust5d28dc82007-06-26 19:18:38 -040095/* gss_cred_set_ctx:
96 * called by gss_upcall_callback and gss_create_upcall in order
97 * to set the gss context. The actual exchange of an old context
98 * and a new one is protected by the inode->i_lock.
99 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100static void
101gss_cred_set_ctx(struct rpc_cred *cred, struct gss_cl_ctx *ctx)
102{
103 struct gss_cred *gss_cred = container_of(cred, struct gss_cred, gc_base);
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400104
Trond Myklebustcd019f72008-04-17 17:03:58 -0400105 if (!test_bit(RPCAUTH_CRED_NEW, &cred->cr_flags))
106 return;
Trond Myklebust7b6962b2008-04-17 16:53:01 -0400107 gss_get_ctx(ctx);
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400108 rcu_assign_pointer(gss_cred->gc_ctx, ctx);
Trond Myklebustfc432dd2007-06-25 10:15:15 -0400109 set_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
Trond Myklebustcd019f72008-04-17 17:03:58 -0400110 smp_mb__before_clear_bit();
Trond Myklebustfc432dd2007-06-25 10:15:15 -0400111 clear_bit(RPCAUTH_CRED_NEW, &cred->cr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112}
113
114static const void *
115simple_get_bytes(const void *p, const void *end, void *res, size_t len)
116{
117 const void *q = (const void *)((const char *)p + len);
118 if (unlikely(q > end || q < p))
119 return ERR_PTR(-EFAULT);
120 memcpy(res, p, len);
121 return q;
122}
123
124static inline const void *
125simple_get_netobj(const void *p, const void *end, struct xdr_netobj *dest)
126{
127 const void *q;
128 unsigned int len;
129
130 p = simple_get_bytes(p, end, &len, sizeof(len));
131 if (IS_ERR(p))
132 return p;
133 q = (const void *)((const char *)p + len);
134 if (unlikely(q > end || q < p))
135 return ERR_PTR(-EFAULT);
Trond Myklebust0f38b872008-06-10 18:31:01 -0400136 dest->data = kmemdup(p, len, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 if (unlikely(dest->data == NULL))
138 return ERR_PTR(-ENOMEM);
139 dest->len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 return q;
141}
142
143static struct gss_cl_ctx *
144gss_cred_get_ctx(struct rpc_cred *cred)
145{
146 struct gss_cred *gss_cred = container_of(cred, struct gss_cred, gc_base);
147 struct gss_cl_ctx *ctx = NULL;
148
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400149 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 if (gss_cred->gc_ctx)
151 ctx = gss_get_ctx(gss_cred->gc_ctx);
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400152 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 return ctx;
154}
155
156static struct gss_cl_ctx *
157gss_alloc_context(void)
158{
159 struct gss_cl_ctx *ctx;
160
Trond Myklebust0f38b872008-06-10 18:31:01 -0400161 ctx = kzalloc(sizeof(*ctx), GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 if (ctx != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 ctx->gc_proc = RPC_GSS_PROC_DATA;
164 ctx->gc_seq = 1; /* NetApp 6.4R1 doesn't accept seq. no. 0 */
165 spin_lock_init(&ctx->gc_seq_lock);
166 atomic_set(&ctx->count,1);
167 }
168 return ctx;
169}
170
171#define GSSD_MIN_TIMEOUT (60 * 60)
172static const void *
173gss_fill_context(const void *p, const void *end, struct gss_cl_ctx *ctx, struct gss_api_mech *gm)
174{
175 const void *q;
176 unsigned int seclen;
177 unsigned int timeout;
178 u32 window_size;
179 int ret;
180
181 /* First unsigned int gives the lifetime (in seconds) of the cred */
182 p = simple_get_bytes(p, end, &timeout, sizeof(timeout));
183 if (IS_ERR(p))
184 goto err;
185 if (timeout == 0)
186 timeout = GSSD_MIN_TIMEOUT;
187 ctx->gc_expiry = jiffies + (unsigned long)timeout * HZ * 3 / 4;
188 /* Sequence number window. Determines the maximum number of simultaneous requests */
189 p = simple_get_bytes(p, end, &window_size, sizeof(window_size));
190 if (IS_ERR(p))
191 goto err;
192 ctx->gc_win = window_size;
193 /* gssd signals an error by passing ctx->gc_win = 0: */
194 if (ctx->gc_win == 0) {
195 /* in which case, p points to an error code which we ignore */
196 p = ERR_PTR(-EACCES);
197 goto err;
198 }
199 /* copy the opaque wire context */
200 p = simple_get_netobj(p, end, &ctx->gc_wire_ctx);
201 if (IS_ERR(p))
202 goto err;
203 /* import the opaque security context */
204 p = simple_get_bytes(p, end, &seclen, sizeof(seclen));
205 if (IS_ERR(p))
206 goto err;
207 q = (const void *)((const char *)p + seclen);
208 if (unlikely(q > end || q < p)) {
209 p = ERR_PTR(-EFAULT);
210 goto err;
211 }
212 ret = gss_import_sec_context(p, seclen, gm, &ctx->gc_gss_ctx);
213 if (ret < 0) {
214 p = ERR_PTR(ret);
215 goto err;
216 }
217 return q;
218err:
Chuck Lever8885cb32007-01-31 12:14:05 -0500219 dprintk("RPC: gss_fill_context returning %ld\n", -PTR_ERR(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 return p;
221}
222
223
224struct gss_upcall_msg {
225 atomic_t count;
226 uid_t uid;
227 struct rpc_pipe_msg msg;
228 struct list_head list;
229 struct gss_auth *auth;
230 struct rpc_wait_queue rpc_waitqueue;
231 wait_queue_head_t waitqueue;
232 struct gss_cl_ctx *ctx;
233};
234
235static void
236gss_release_msg(struct gss_upcall_msg *gss_msg)
237{
238 if (!atomic_dec_and_test(&gss_msg->count))
239 return;
240 BUG_ON(!list_empty(&gss_msg->list));
241 if (gss_msg->ctx != NULL)
242 gss_put_ctx(gss_msg->ctx);
Trond Myklebustf6a1cc82008-02-22 17:06:55 -0500243 rpc_destroy_wait_queue(&gss_msg->rpc_waitqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 kfree(gss_msg);
245}
246
247static struct gss_upcall_msg *
Trond Myklebust6e84c7b2007-06-07 15:31:36 -0400248__gss_find_upcall(struct rpc_inode *rpci, uid_t uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249{
250 struct gss_upcall_msg *pos;
Trond Myklebust6e84c7b2007-06-07 15:31:36 -0400251 list_for_each_entry(pos, &rpci->in_downcall, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 if (pos->uid != uid)
253 continue;
254 atomic_inc(&pos->count);
Chuck Lever8885cb32007-01-31 12:14:05 -0500255 dprintk("RPC: gss_find_upcall found msg %p\n", pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 return pos;
257 }
Chuck Lever8885cb32007-01-31 12:14:05 -0500258 dprintk("RPC: gss_find_upcall found nothing\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 return NULL;
260}
261
\\\"J. Bruce Fields\\\720b8f22008-06-09 16:51:33 -0400262/* Try to add an upcall to the pipefs queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 * If an upcall owned by our uid already exists, then we return a reference
264 * to that upcall instead of adding the new upcall.
265 */
266static inline struct gss_upcall_msg *
267gss_add_msg(struct gss_auth *gss_auth, struct gss_upcall_msg *gss_msg)
268{
Trond Myklebustb185f832007-06-07 10:14:14 -0400269 struct inode *inode = gss_auth->dentry->d_inode;
Trond Myklebust6e84c7b2007-06-07 15:31:36 -0400270 struct rpc_inode *rpci = RPC_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 struct gss_upcall_msg *old;
272
Trond Myklebustb185f832007-06-07 10:14:14 -0400273 spin_lock(&inode->i_lock);
Trond Myklebust6e84c7b2007-06-07 15:31:36 -0400274 old = __gss_find_upcall(rpci, gss_msg->uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 if (old == NULL) {
276 atomic_inc(&gss_msg->count);
Trond Myklebust6e84c7b2007-06-07 15:31:36 -0400277 list_add(&gss_msg->list, &rpci->in_downcall);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 } else
279 gss_msg = old;
Trond Myklebustb185f832007-06-07 10:14:14 -0400280 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 return gss_msg;
282}
283
284static void
285__gss_unhash_msg(struct gss_upcall_msg *gss_msg)
286{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 list_del_init(&gss_msg->list);
288 rpc_wake_up_status(&gss_msg->rpc_waitqueue, gss_msg->msg.errno);
289 wake_up_all(&gss_msg->waitqueue);
290 atomic_dec(&gss_msg->count);
291}
292
293static void
294gss_unhash_msg(struct gss_upcall_msg *gss_msg)
295{
296 struct gss_auth *gss_auth = gss_msg->auth;
Trond Myklebustb185f832007-06-07 10:14:14 -0400297 struct inode *inode = gss_auth->dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400299 if (list_empty(&gss_msg->list))
300 return;
Trond Myklebustb185f832007-06-07 10:14:14 -0400301 spin_lock(&inode->i_lock);
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400302 if (!list_empty(&gss_msg->list))
303 __gss_unhash_msg(gss_msg);
Trond Myklebustb185f832007-06-07 10:14:14 -0400304 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
306
307static void
308gss_upcall_callback(struct rpc_task *task)
309{
310 struct gss_cred *gss_cred = container_of(task->tk_msg.rpc_cred,
311 struct gss_cred, gc_base);
312 struct gss_upcall_msg *gss_msg = gss_cred->gc_upcall;
Trond Myklebustb185f832007-06-07 10:14:14 -0400313 struct inode *inode = gss_msg->auth->dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400315 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 if (gss_msg->ctx)
Trond Myklebust7b6962b2008-04-17 16:53:01 -0400317 gss_cred_set_ctx(task->tk_msg.rpc_cred, gss_msg->ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 else
319 task->tk_status = gss_msg->msg.errno;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 gss_cred->gc_upcall = NULL;
321 rpc_wake_up_status(&gss_msg->rpc_waitqueue, gss_msg->msg.errno);
Trond Myklebustb185f832007-06-07 10:14:14 -0400322 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 gss_release_msg(gss_msg);
324}
325
326static inline struct gss_upcall_msg *
327gss_alloc_msg(struct gss_auth *gss_auth, uid_t uid)
328{
329 struct gss_upcall_msg *gss_msg;
330
Trond Myklebust0f38b872008-06-10 18:31:01 -0400331 gss_msg = kzalloc(sizeof(*gss_msg), GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 if (gss_msg != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 INIT_LIST_HEAD(&gss_msg->list);
334 rpc_init_wait_queue(&gss_msg->rpc_waitqueue, "RPCSEC_GSS upcall waitq");
335 init_waitqueue_head(&gss_msg->waitqueue);
336 atomic_set(&gss_msg->count, 1);
337 gss_msg->msg.data = &gss_msg->uid;
338 gss_msg->msg.len = sizeof(gss_msg->uid);
339 gss_msg->uid = uid;
340 gss_msg->auth = gss_auth;
341 }
342 return gss_msg;
343}
344
345static struct gss_upcall_msg *
346gss_setup_upcall(struct rpc_clnt *clnt, struct gss_auth *gss_auth, struct rpc_cred *cred)
347{
Trond Myklebust7c67db32008-04-07 20:50:11 -0400348 struct gss_cred *gss_cred = container_of(cred,
349 struct gss_cred, gc_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 struct gss_upcall_msg *gss_new, *gss_msg;
Trond Myklebust7c67db32008-04-07 20:50:11 -0400351 uid_t uid = cred->cr_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
Trond Myklebust7c67db32008-04-07 20:50:11 -0400353 /* Special case: rpc.gssd assumes that uid == 0 implies machine creds */
354 if (gss_cred->gc_machine_cred != 0)
355 uid = 0;
356
357 gss_new = gss_alloc_msg(gss_auth, uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 if (gss_new == NULL)
359 return ERR_PTR(-ENOMEM);
360 gss_msg = gss_add_msg(gss_auth, gss_new);
361 if (gss_msg == gss_new) {
362 int res = rpc_queue_upcall(gss_auth->dentry->d_inode, &gss_new->msg);
363 if (res) {
364 gss_unhash_msg(gss_new);
365 gss_msg = ERR_PTR(res);
366 }
367 } else
368 gss_release_msg(gss_new);
369 return gss_msg;
370}
371
372static inline int
373gss_refresh_upcall(struct rpc_task *task)
374{
375 struct rpc_cred *cred = task->tk_msg.rpc_cred;
Trond Myklebust4a8c1342007-06-07 10:14:14 -0400376 struct gss_auth *gss_auth = container_of(cred->cr_auth,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 struct gss_auth, rpc_auth);
378 struct gss_cred *gss_cred = container_of(cred,
379 struct gss_cred, gc_base);
380 struct gss_upcall_msg *gss_msg;
Trond Myklebustb185f832007-06-07 10:14:14 -0400381 struct inode *inode = gss_auth->dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 int err = 0;
383
Chuck Lever8885cb32007-01-31 12:14:05 -0500384 dprintk("RPC: %5u gss_refresh_upcall for uid %u\n", task->tk_pid,
385 cred->cr_uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 gss_msg = gss_setup_upcall(task->tk_client, gss_auth, cred);
387 if (IS_ERR(gss_msg)) {
388 err = PTR_ERR(gss_msg);
389 goto out;
390 }
Trond Myklebustb185f832007-06-07 10:14:14 -0400391 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 if (gss_cred->gc_upcall != NULL)
Trond Myklebust5d008372008-02-22 16:34:17 -0500393 rpc_sleep_on(&gss_cred->gc_upcall->rpc_waitqueue, task, NULL);
Trond Myklebust7b6962b2008-04-17 16:53:01 -0400394 else if (gss_msg->ctx != NULL) {
395 gss_cred_set_ctx(task->tk_msg.rpc_cred, gss_msg->ctx);
396 gss_cred->gc_upcall = NULL;
397 rpc_wake_up_status(&gss_msg->rpc_waitqueue, gss_msg->msg.errno);
398 } else if (gss_msg->msg.errno >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 task->tk_timeout = 0;
400 gss_cred->gc_upcall = gss_msg;
401 /* gss_upcall_callback will release the reference to gss_upcall_msg */
402 atomic_inc(&gss_msg->count);
Trond Myklebust5d008372008-02-22 16:34:17 -0500403 rpc_sleep_on(&gss_msg->rpc_waitqueue, task, gss_upcall_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 } else
405 err = gss_msg->msg.errno;
Trond Myklebustb185f832007-06-07 10:14:14 -0400406 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 gss_release_msg(gss_msg);
408out:
Chuck Lever8885cb32007-01-31 12:14:05 -0500409 dprintk("RPC: %5u gss_refresh_upcall for uid %u result %d\n",
410 task->tk_pid, cred->cr_uid, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 return err;
412}
413
414static inline int
415gss_create_upcall(struct gss_auth *gss_auth, struct gss_cred *gss_cred)
416{
Trond Myklebustb185f832007-06-07 10:14:14 -0400417 struct inode *inode = gss_auth->dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 struct rpc_cred *cred = &gss_cred->gc_base;
419 struct gss_upcall_msg *gss_msg;
420 DEFINE_WAIT(wait);
421 int err = 0;
422
Chuck Lever8885cb32007-01-31 12:14:05 -0500423 dprintk("RPC: gss_upcall for uid %u\n", cred->cr_uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 gss_msg = gss_setup_upcall(gss_auth->client, gss_auth, cred);
425 if (IS_ERR(gss_msg)) {
426 err = PTR_ERR(gss_msg);
427 goto out;
428 }
429 for (;;) {
430 prepare_to_wait(&gss_msg->waitqueue, &wait, TASK_INTERRUPTIBLE);
Trond Myklebustb185f832007-06-07 10:14:14 -0400431 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 if (gss_msg->ctx != NULL || gss_msg->msg.errno < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 break;
434 }
Trond Myklebustb185f832007-06-07 10:14:14 -0400435 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 if (signalled()) {
437 err = -ERESTARTSYS;
438 goto out_intr;
439 }
440 schedule();
441 }
442 if (gss_msg->ctx)
Trond Myklebust7b6962b2008-04-17 16:53:01 -0400443 gss_cred_set_ctx(cred, gss_msg->ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 else
445 err = gss_msg->msg.errno;
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400446 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447out_intr:
448 finish_wait(&gss_msg->waitqueue, &wait);
449 gss_release_msg(gss_msg);
450out:
Chuck Lever8885cb32007-01-31 12:14:05 -0500451 dprintk("RPC: gss_create_upcall for uid %u result %d\n",
452 cred->cr_uid, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 return err;
454}
455
456static ssize_t
457gss_pipe_upcall(struct file *filp, struct rpc_pipe_msg *msg,
458 char __user *dst, size_t buflen)
459{
460 char *data = (char *)msg->data + msg->copied;
Chuck Lever7df08992007-12-20 14:54:27 -0500461 size_t mlen = min(msg->len, buflen);
462 unsigned long left;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 left = copy_to_user(dst, data, mlen);
Chuck Lever7df08992007-12-20 14:54:27 -0500465 if (left == mlen) {
466 msg->errno = -EFAULT;
467 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 }
Chuck Lever7df08992007-12-20 14:54:27 -0500469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 mlen -= left;
471 msg->copied += mlen;
472 msg->errno = 0;
473 return mlen;
474}
475
476#define MSG_BUF_MAXSIZE 1024
477
478static ssize_t
479gss_pipe_downcall(struct file *filp, const char __user *src, size_t mlen)
480{
481 const void *p, *end;
482 void *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 struct gss_upcall_msg *gss_msg;
Trond Myklebustb185f832007-06-07 10:14:14 -0400484 struct inode *inode = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 struct gss_cl_ctx *ctx;
486 uid_t uid;
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400487 ssize_t err = -EFBIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
489 if (mlen > MSG_BUF_MAXSIZE)
490 goto out;
491 err = -ENOMEM;
Trond Myklebust0f38b872008-06-10 18:31:01 -0400492 buf = kmalloc(mlen, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 if (!buf)
494 goto out;
495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 err = -EFAULT;
497 if (copy_from_user(buf, src, mlen))
498 goto err;
499
500 end = (const void *)((char *)buf + mlen);
501 p = simple_get_bytes(buf, end, &uid, sizeof(uid));
502 if (IS_ERR(p)) {
503 err = PTR_ERR(p);
504 goto err;
505 }
506
507 err = -ENOMEM;
508 ctx = gss_alloc_context();
509 if (ctx == NULL)
510 goto err;
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400511
512 err = -ENOENT;
513 /* Find a matching upcall */
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400514 spin_lock(&inode->i_lock);
Trond Myklebust6e84c7b2007-06-07 15:31:36 -0400515 gss_msg = __gss_find_upcall(RPC_I(inode), uid);
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400516 if (gss_msg == NULL) {
517 spin_unlock(&inode->i_lock);
518 goto err_put_ctx;
519 }
520 list_del_init(&gss_msg->list);
521 spin_unlock(&inode->i_lock);
522
Trond Myklebust6e84c7b2007-06-07 15:31:36 -0400523 p = gss_fill_context(p, end, ctx, gss_msg->auth->mech);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 if (IS_ERR(p)) {
525 err = PTR_ERR(p);
Kevin Coffmanffc40f52007-11-09 18:42:04 -0500526 gss_msg->msg.errno = (err == -EAGAIN) ? -EAGAIN : -EACCES;
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400527 goto err_release_msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 }
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400529 gss_msg->ctx = gss_get_ctx(ctx);
530 err = mlen;
531
532err_release_msg:
Trond Myklebustb185f832007-06-07 10:14:14 -0400533 spin_lock(&inode->i_lock);
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400534 __gss_unhash_msg(gss_msg);
535 spin_unlock(&inode->i_lock);
536 gss_release_msg(gss_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537err_put_ctx:
538 gss_put_ctx(ctx);
539err:
540 kfree(buf);
541out:
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400542 dprintk("RPC: gss_pipe_downcall returning %Zd\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 return err;
544}
545
546static void
547gss_pipe_release(struct inode *inode)
548{
549 struct rpc_inode *rpci = RPC_I(inode);
Trond Myklebust6e84c7b2007-06-07 15:31:36 -0400550 struct gss_upcall_msg *gss_msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Trond Myklebustb185f832007-06-07 10:14:14 -0400552 spin_lock(&inode->i_lock);
Trond Myklebust6e84c7b2007-06-07 15:31:36 -0400553 while (!list_empty(&rpci->in_downcall)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Trond Myklebust6e84c7b2007-06-07 15:31:36 -0400555 gss_msg = list_entry(rpci->in_downcall.next,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 struct gss_upcall_msg, list);
557 gss_msg->msg.errno = -EPIPE;
558 atomic_inc(&gss_msg->count);
559 __gss_unhash_msg(gss_msg);
Trond Myklebustb185f832007-06-07 10:14:14 -0400560 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 gss_release_msg(gss_msg);
Trond Myklebustb185f832007-06-07 10:14:14 -0400562 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 }
Trond Myklebustb185f832007-06-07 10:14:14 -0400564 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565}
566
567static void
568gss_pipe_destroy_msg(struct rpc_pipe_msg *msg)
569{
570 struct gss_upcall_msg *gss_msg = container_of(msg, struct gss_upcall_msg, msg);
571 static unsigned long ratelimit;
572
573 if (msg->errno < 0) {
Chuck Lever8885cb32007-01-31 12:14:05 -0500574 dprintk("RPC: gss_pipe_destroy_msg releasing msg %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 gss_msg);
576 atomic_inc(&gss_msg->count);
577 gss_unhash_msg(gss_msg);
Trond Myklebust48e49182005-12-19 17:11:22 -0500578 if (msg->errno == -ETIMEDOUT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 unsigned long now = jiffies;
580 if (time_after(now, ratelimit)) {
581 printk(KERN_WARNING "RPC: AUTH_GSS upcall timed out.\n"
582 "Please check user daemon is running!\n");
583 ratelimit = now + 15*HZ;
584 }
585 }
586 gss_release_msg(gss_msg);
587 }
588}
589
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800590/*
591 * NOTE: we have the opportunity to use different
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 * parameters based on the input flavor (which must be a pseudoflavor)
593 */
594static struct rpc_auth *
595gss_create(struct rpc_clnt *clnt, rpc_authflavor_t flavor)
596{
597 struct gss_auth *gss_auth;
598 struct rpc_auth * auth;
J. Bruce Fields6a192752005-06-22 17:16:23 +0000599 int err = -ENOMEM; /* XXX? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Chuck Lever8885cb32007-01-31 12:14:05 -0500601 dprintk("RPC: creating GSS authenticator for client %p\n", clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
603 if (!try_module_get(THIS_MODULE))
J. Bruce Fields6a192752005-06-22 17:16:23 +0000604 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 if (!(gss_auth = kmalloc(sizeof(*gss_auth), GFP_KERNEL)))
606 goto out_dec;
607 gss_auth->client = clnt;
J. Bruce Fields6a192752005-06-22 17:16:23 +0000608 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 gss_auth->mech = gss_mech_get_by_pseudoflavor(flavor);
610 if (!gss_auth->mech) {
James Morris3392c342007-12-26 11:20:43 +1100611 printk(KERN_WARNING "%s: Pseudoflavor %d not found!\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800612 __func__, flavor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 goto err_free;
614 }
615 gss_auth->service = gss_pseudoflavor_to_service(gss_auth->mech, flavor);
J. Bruce Fields438b6fd2005-06-22 17:16:23 +0000616 if (gss_auth->service == 0)
617 goto err_put_mech;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 auth = &gss_auth->rpc_auth;
619 auth->au_cslack = GSS_CRED_SLACK >> 2;
620 auth->au_rslack = GSS_VERF_SLACK >> 2;
621 auth->au_ops = &authgss_ops;
622 auth->au_flavor = flavor;
623 atomic_set(&auth->au_count, 1);
Trond Myklebust0285ed12007-06-27 14:29:12 -0400624 kref_init(&gss_auth->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Trond Myklebust158998b2006-08-24 01:03:17 -0400626 gss_auth->dentry = rpc_mkpipe(clnt->cl_dentry, gss_auth->mech->gm_name,
627 clnt, &gss_upcall_ops, RPC_PIPE_WAIT_FOR_OPEN);
J. Bruce Fields6a192752005-06-22 17:16:23 +0000628 if (IS_ERR(gss_auth->dentry)) {
629 err = PTR_ERR(gss_auth->dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 goto err_put_mech;
J. Bruce Fields6a192752005-06-22 17:16:23 +0000631 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Trond Myklebustf5c21872007-06-25 17:11:20 -0400633 err = rpcauth_init_credcache(auth);
Trond Myklebust07a2bf12007-06-09 15:42:01 -0400634 if (err)
635 goto err_unlink_pipe;
636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 return auth;
Trond Myklebust07a2bf12007-06-09 15:42:01 -0400638err_unlink_pipe:
639 rpc_unlink(gss_auth->dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640err_put_mech:
641 gss_mech_put(gss_auth->mech);
642err_free:
643 kfree(gss_auth);
644out_dec:
645 module_put(THIS_MODULE);
J. Bruce Fields6a192752005-06-22 17:16:23 +0000646 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647}
648
649static void
Trond Myklebust0285ed12007-06-27 14:29:12 -0400650gss_free(struct gss_auth *gss_auth)
651{
652 rpc_unlink(gss_auth->dentry);
Trond Myklebust0285ed12007-06-27 14:29:12 -0400653 gss_mech_put(gss_auth->mech);
654
655 kfree(gss_auth);
656 module_put(THIS_MODULE);
657}
658
659static void
660gss_free_callback(struct kref *kref)
661{
662 struct gss_auth *gss_auth = container_of(kref, struct gss_auth, kref);
663
664 gss_free(gss_auth);
665}
666
667static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668gss_destroy(struct rpc_auth *auth)
669{
670 struct gss_auth *gss_auth;
671
Chuck Lever8885cb32007-01-31 12:14:05 -0500672 dprintk("RPC: destroying GSS authenticator %p flavor %d\n",
673 auth, auth->au_flavor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Trond Myklebust3ab9bb72007-06-09 15:41:42 -0400675 rpcauth_destroy_credcache(auth);
676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 gss_auth = container_of(auth, struct gss_auth, rpc_auth);
Trond Myklebust0285ed12007-06-27 14:29:12 -0400678 kref_put(&gss_auth->kref, gss_free_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679}
680
Trond Myklebust0df7fb72007-06-26 17:04:57 -0400681/*
682 * gss_destroying_context will cause the RPCSEC_GSS to send a NULL RPC call
683 * to the server with the GSS control procedure field set to
684 * RPC_GSS_PROC_DESTROY. This should normally cause the server to release
685 * all RPCSEC_GSS state associated with that context.
686 */
687static int
688gss_destroying_context(struct rpc_cred *cred)
689{
690 struct gss_cred *gss_cred = container_of(cred, struct gss_cred, gc_base);
691 struct gss_auth *gss_auth = container_of(cred->cr_auth, struct gss_auth, rpc_auth);
692 struct rpc_task *task;
693
694 if (gss_cred->gc_ctx == NULL ||
Jeff Layton6dcd3922008-12-23 15:21:57 -0500695 test_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags) == 0)
Trond Myklebust0df7fb72007-06-26 17:04:57 -0400696 return 0;
697
698 gss_cred->gc_ctx->gc_proc = RPC_GSS_PROC_DESTROY;
699 cred->cr_ops = &gss_nullops;
700
701 /* Take a reference to ensure the cred will be destroyed either
702 * by the RPC call or by the put_rpccred() below */
703 get_rpccred(cred);
704
Trond Myklebust080a1f12008-04-19 14:22:31 -0400705 task = rpc_call_null(gss_auth->client, cred, RPC_TASK_ASYNC|RPC_TASK_SOFT);
Trond Myklebust0df7fb72007-06-26 17:04:57 -0400706 if (!IS_ERR(task))
707 rpc_put_task(task);
708
709 put_rpccred(cred);
710 return 1;
711}
712
713/* gss_destroy_cred (and gss_free_ctx) are used to clean up after failure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 * to create a new cred or context, so they check that things have been
715 * allocated before freeing them. */
716static void
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400717gss_do_free_ctx(struct gss_cl_ctx *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718{
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400719 dprintk("RPC: gss_free_ctx\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 kfree(ctx->gc_wire_ctx.data);
722 kfree(ctx);
723}
724
725static void
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400726gss_free_ctx_callback(struct rcu_head *head)
727{
728 struct gss_cl_ctx *ctx = container_of(head, struct gss_cl_ctx, gc_rcu);
729 gss_do_free_ctx(ctx);
730}
731
732static void
733gss_free_ctx(struct gss_cl_ctx *ctx)
734{
Trond Myklebusta4deb812007-08-06 12:21:13 -0400735 struct gss_ctx *gc_gss_ctx;
736
737 gc_gss_ctx = rcu_dereference(ctx->gc_gss_ctx);
738 rcu_assign_pointer(ctx->gc_gss_ctx, NULL);
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400739 call_rcu(&ctx->gc_rcu, gss_free_ctx_callback);
Trond Myklebusta4deb812007-08-06 12:21:13 -0400740 if (gc_gss_ctx)
741 gss_delete_sec_context(&gc_gss_ctx);
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400742}
743
744static void
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400745gss_free_cred(struct gss_cred *gss_cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746{
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400747 dprintk("RPC: gss_free_cred %p\n", gss_cred);
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400748 kfree(gss_cred);
749}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400751static void
752gss_free_cred_callback(struct rcu_head *head)
753{
754 struct gss_cred *gss_cred = container_of(head, struct gss_cred, gc_base.cr_rcu);
755 gss_free_cred(gss_cred);
756}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400758static void
Jeff Layton6dcd3922008-12-23 15:21:57 -0500759gss_destroy_nullcred(struct rpc_cred *cred)
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400760{
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400761 struct gss_cred *gss_cred = container_of(cred, struct gss_cred, gc_base);
Trond Myklebust0285ed12007-06-27 14:29:12 -0400762 struct gss_auth *gss_auth = container_of(cred->cr_auth, struct gss_auth, rpc_auth);
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400763 struct gss_cl_ctx *ctx = gss_cred->gc_ctx;
764
765 rcu_assign_pointer(gss_cred->gc_ctx, NULL);
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400766 call_rcu(&cred->cr_rcu, gss_free_cred_callback);
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400767 if (ctx)
768 gss_put_ctx(ctx);
Trond Myklebust0285ed12007-06-27 14:29:12 -0400769 kref_put(&gss_auth->kref, gss_free_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770}
771
Jeff Layton6dcd3922008-12-23 15:21:57 -0500772static void
773gss_destroy_cred(struct rpc_cred *cred)
774{
775
776 if (gss_destroying_context(cred))
777 return;
778 gss_destroy_nullcred(cred);
779}
780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781/*
782 * Lookup RPCSEC_GSS cred for the current process
783 */
784static struct rpc_cred *
Trond Myklebust8a317762006-02-01 12:18:36 -0500785gss_lookup_cred(struct rpc_auth *auth, struct auth_cred *acred, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786{
Trond Myklebust8a317762006-02-01 12:18:36 -0500787 return rpcauth_lookup_credcache(auth, acred, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788}
789
790static struct rpc_cred *
Trond Myklebust8a317762006-02-01 12:18:36 -0500791gss_create_cred(struct rpc_auth *auth, struct auth_cred *acred, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792{
793 struct gss_auth *gss_auth = container_of(auth, struct gss_auth, rpc_auth);
794 struct gss_cred *cred = NULL;
795 int err = -ENOMEM;
796
Chuck Lever8885cb32007-01-31 12:14:05 -0500797 dprintk("RPC: gss_create_cred for uid %d, flavor %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 acred->uid, auth->au_flavor);
799
Trond Myklebust0f38b872008-06-10 18:31:01 -0400800 if (!(cred = kzalloc(sizeof(*cred), GFP_NOFS)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 goto out_err;
802
Trond Myklebust5fe47552007-06-23 19:55:31 -0400803 rpcauth_init_cred(&cred->gc_base, acred, auth, &gss_credops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 /*
805 * Note: in order to force a call to call_refresh(), we deliberately
806 * fail to flag the credential as RPCAUTH_CRED_UPTODATE.
807 */
Trond Myklebustfc432dd2007-06-25 10:15:15 -0400808 cred->gc_base.cr_flags = 1UL << RPCAUTH_CRED_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 cred->gc_service = gss_auth->service;
Trond Myklebust7c67db32008-04-07 20:50:11 -0400810 cred->gc_machine_cred = acred->machine_cred;
Trond Myklebust0285ed12007-06-27 14:29:12 -0400811 kref_get(&gss_auth->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 return &cred->gc_base;
813
814out_err:
Chuck Lever8885cb32007-01-31 12:14:05 -0500815 dprintk("RPC: gss_create_cred failed with error %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 return ERR_PTR(err);
817}
818
819static int
Trond Myklebustfba3bad2006-02-01 12:19:27 -0500820gss_cred_init(struct rpc_auth *auth, struct rpc_cred *cred)
821{
822 struct gss_auth *gss_auth = container_of(auth, struct gss_auth, rpc_auth);
823 struct gss_cred *gss_cred = container_of(cred,struct gss_cred, gc_base);
824 int err;
825
826 do {
827 err = gss_create_upcall(gss_auth, gss_cred);
828 } while (err == -EAGAIN);
829 return err;
830}
831
832static int
Trond Myklebust8a317762006-02-01 12:18:36 -0500833gss_match(struct auth_cred *acred, struct rpc_cred *rc, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834{
835 struct gss_cred *gss_cred = container_of(rc, struct gss_cred, gc_base);
836
Trond Myklebustcd019f72008-04-17 17:03:58 -0400837 if (test_bit(RPCAUTH_CRED_NEW, &rc->cr_flags))
Trond Myklebust8a317762006-02-01 12:18:36 -0500838 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 /* Don't match with creds that have expired. */
Trond Myklebustcd019f72008-04-17 17:03:58 -0400840 if (time_after(jiffies, gss_cred->gc_ctx->gc_expiry))
841 return 0;
842 if (!test_bit(RPCAUTH_CRED_UPTODATE, &rc->cr_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 return 0;
Trond Myklebust8a317762006-02-01 12:18:36 -0500844out:
Trond Myklebust7c67db32008-04-07 20:50:11 -0400845 if (acred->machine_cred != gss_cred->gc_machine_cred)
846 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 return (rc->cr_uid == acred->uid);
848}
849
850/*
851* Marshal credentials.
852* Maybe we should keep a cached credential for performance reasons.
853*/
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700854static __be32 *
855gss_marshal(struct rpc_task *task, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856{
857 struct rpc_cred *cred = task->tk_msg.rpc_cred;
858 struct gss_cred *gss_cred = container_of(cred, struct gss_cred,
859 gc_base);
860 struct gss_cl_ctx *ctx = gss_cred_get_ctx(cred);
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700861 __be32 *cred_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 struct rpc_rqst *req = task->tk_rqstp;
863 u32 maj_stat = 0;
864 struct xdr_netobj mic;
865 struct kvec iov;
866 struct xdr_buf verf_buf;
867
Chuck Lever8885cb32007-01-31 12:14:05 -0500868 dprintk("RPC: %5u gss_marshal\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
870 *p++ = htonl(RPC_AUTH_GSS);
871 cred_len = p++;
872
873 spin_lock(&ctx->gc_seq_lock);
874 req->rq_seqno = ctx->gc_seq++;
875 spin_unlock(&ctx->gc_seq_lock);
876
877 *p++ = htonl((u32) RPC_GSS_VERSION);
878 *p++ = htonl((u32) ctx->gc_proc);
879 *p++ = htonl((u32) req->rq_seqno);
880 *p++ = htonl((u32) gss_cred->gc_service);
881 p = xdr_encode_netobj(p, &ctx->gc_wire_ctx);
882 *cred_len = htonl((p - (cred_len + 1)) << 2);
883
884 /* We compute the checksum for the verifier over the xdr-encoded bytes
885 * starting with the xid and ending at the end of the credential: */
Chuck Lever808012f2005-08-25 16:25:49 -0700886 iov.iov_base = xprt_skip_transport_header(task->tk_xprt,
887 req->rq_snd_buf.head[0].iov_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 iov.iov_len = (u8 *)p - (u8 *)iov.iov_base;
889 xdr_buf_from_iov(&iov, &verf_buf);
890
891 /* set verifier flavor*/
892 *p++ = htonl(RPC_AUTH_GSS);
893
894 mic.data = (u8 *)(p + 1);
J. Bruce Fields00fd6e12005-10-13 16:55:18 -0400895 maj_stat = gss_get_mic(ctx->gc_gss_ctx, &verf_buf, &mic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 if (maj_stat == GSS_S_CONTEXT_EXPIRED) {
Trond Myklebustfc432dd2007-06-25 10:15:15 -0400897 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 } else if (maj_stat != 0) {
899 printk("gss_marshal: gss_get_mic FAILED (%d)\n", maj_stat);
900 goto out_put_ctx;
901 }
902 p = xdr_encode_opaque(p, NULL, mic.len);
903 gss_put_ctx(ctx);
904 return p;
905out_put_ctx:
906 gss_put_ctx(ctx);
907 return NULL;
908}
909
Trond Myklebustcd019f72008-04-17 17:03:58 -0400910static int gss_renew_cred(struct rpc_task *task)
911{
912 struct rpc_cred *oldcred = task->tk_msg.rpc_cred;
913 struct gss_cred *gss_cred = container_of(oldcred,
914 struct gss_cred,
915 gc_base);
916 struct rpc_auth *auth = oldcred->cr_auth;
917 struct auth_cred acred = {
918 .uid = oldcred->cr_uid,
919 .machine_cred = gss_cred->gc_machine_cred,
920 };
921 struct rpc_cred *new;
922
923 new = gss_lookup_cred(auth, &acred, RPCAUTH_LOOKUP_NEW);
924 if (IS_ERR(new))
925 return PTR_ERR(new);
926 task->tk_msg.rpc_cred = new;
927 put_rpccred(oldcred);
928 return 0;
929}
930
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931/*
932* Refresh credentials. XXX - finish
933*/
934static int
935gss_refresh(struct rpc_task *task)
936{
Trond Myklebustcd019f72008-04-17 17:03:58 -0400937 struct rpc_cred *cred = task->tk_msg.rpc_cred;
938 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Trond Myklebustcd019f72008-04-17 17:03:58 -0400940 if (!test_bit(RPCAUTH_CRED_NEW, &cred->cr_flags) &&
941 !test_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags)) {
942 ret = gss_renew_cred(task);
943 if (ret < 0)
944 goto out;
945 cred = task->tk_msg.rpc_cred;
946 }
947
948 if (test_bit(RPCAUTH_CRED_NEW, &cred->cr_flags))
949 ret = gss_refresh_upcall(task);
950out:
951 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952}
953
Trond Myklebust0df7fb72007-06-26 17:04:57 -0400954/* Dummy refresh routine: used only when destroying the context */
955static int
956gss_refresh_null(struct rpc_task *task)
957{
958 return -EACCES;
959}
960
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700961static __be32 *
962gss_validate(struct rpc_task *task, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963{
964 struct rpc_cred *cred = task->tk_msg.rpc_cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 struct gss_cl_ctx *ctx = gss_cred_get_ctx(cred);
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700966 __be32 seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 struct kvec iov;
968 struct xdr_buf verf_buf;
969 struct xdr_netobj mic;
970 u32 flav,len;
971 u32 maj_stat;
972
Chuck Lever8885cb32007-01-31 12:14:05 -0500973 dprintk("RPC: %5u gss_validate\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
975 flav = ntohl(*p++);
976 if ((len = ntohl(*p++)) > RPC_MAX_AUTH_SIZE)
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800977 goto out_bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 if (flav != RPC_AUTH_GSS)
979 goto out_bad;
980 seq = htonl(task->tk_rqstp->rq_seqno);
981 iov.iov_base = &seq;
982 iov.iov_len = sizeof(seq);
983 xdr_buf_from_iov(&iov, &verf_buf);
984 mic.data = (u8 *)p;
985 mic.len = len;
986
J. Bruce Fields00fd6e12005-10-13 16:55:18 -0400987 maj_stat = gss_verify_mic(ctx->gc_gss_ctx, &verf_buf, &mic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 if (maj_stat == GSS_S_CONTEXT_EXPIRED)
Trond Myklebustfc432dd2007-06-25 10:15:15 -0400989 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
Trond Myklebust0df7fb72007-06-26 17:04:57 -0400990 if (maj_stat) {
Joe Perches014313a2007-11-19 17:53:43 -0800991 dprintk("RPC: %5u gss_validate: gss_verify_mic returned "
Trond Myklebust0df7fb72007-06-26 17:04:57 -0400992 "error 0x%08x\n", task->tk_pid, maj_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 goto out_bad;
Trond Myklebust0df7fb72007-06-26 17:04:57 -0400994 }
J. Bruce Fields24b26052005-10-13 16:54:53 -0400995 /* We leave it to unwrap to calculate au_rslack. For now we just
996 * calculate the length of the verifier: */
Trond Myklebust1be27f32007-06-27 14:29:04 -0400997 cred->cr_auth->au_verfsize = XDR_QUADLEN(len) + 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 gss_put_ctx(ctx);
Chuck Lever8885cb32007-01-31 12:14:05 -0500999 dprintk("RPC: %5u gss_validate: gss_verify_mic succeeded.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 task->tk_pid);
1001 return p + XDR_QUADLEN(len);
1002out_bad:
1003 gss_put_ctx(ctx);
Chuck Lever8885cb32007-01-31 12:14:05 -05001004 dprintk("RPC: %5u gss_validate failed.\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 return NULL;
1006}
1007
1008static inline int
1009gss_wrap_req_integ(struct rpc_cred *cred, struct gss_cl_ctx *ctx,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001010 kxdrproc_t encode, struct rpc_rqst *rqstp, __be32 *p, void *obj)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011{
1012 struct xdr_buf *snd_buf = &rqstp->rq_snd_buf;
1013 struct xdr_buf integ_buf;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001014 __be32 *integ_len = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 struct xdr_netobj mic;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001016 u32 offset;
1017 __be32 *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 struct kvec *iov;
1019 u32 maj_stat = 0;
1020 int status = -EIO;
1021
1022 integ_len = p++;
1023 offset = (u8 *)p - (u8 *)snd_buf->head[0].iov_base;
1024 *p++ = htonl(rqstp->rq_seqno);
1025
Trond Myklebust88a9fe82008-12-23 15:21:31 -05001026 status = encode(rqstp, p, obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 if (status)
1028 return status;
1029
1030 if (xdr_buf_subsegment(snd_buf, &integ_buf,
1031 offset, snd_buf->len - offset))
1032 return status;
1033 *integ_len = htonl(integ_buf.len);
1034
1035 /* guess whether we're in the head or the tail: */
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001036 if (snd_buf->page_len || snd_buf->tail[0].iov_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 iov = snd_buf->tail;
1038 else
1039 iov = snd_buf->head;
1040 p = iov->iov_base + iov->iov_len;
1041 mic.data = (u8 *)(p + 1);
1042
J. Bruce Fields00fd6e12005-10-13 16:55:18 -04001043 maj_stat = gss_get_mic(ctx->gc_gss_ctx, &integ_buf, &mic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 status = -EIO; /* XXX? */
1045 if (maj_stat == GSS_S_CONTEXT_EXPIRED)
Trond Myklebustfc432dd2007-06-25 10:15:15 -04001046 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 else if (maj_stat)
1048 return status;
1049 q = xdr_encode_opaque(p, NULL, mic.len);
1050
1051 offset = (u8 *)q - (u8 *)p;
1052 iov->iov_len += offset;
1053 snd_buf->len += offset;
1054 return 0;
1055}
1056
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001057static void
1058priv_release_snd_buf(struct rpc_rqst *rqstp)
1059{
1060 int i;
1061
1062 for (i=0; i < rqstp->rq_enc_pages_num; i++)
1063 __free_page(rqstp->rq_enc_pages[i]);
1064 kfree(rqstp->rq_enc_pages);
1065}
1066
1067static int
1068alloc_enc_pages(struct rpc_rqst *rqstp)
1069{
1070 struct xdr_buf *snd_buf = &rqstp->rq_snd_buf;
1071 int first, last, i;
1072
1073 if (snd_buf->page_len == 0) {
1074 rqstp->rq_enc_pages_num = 0;
1075 return 0;
1076 }
1077
1078 first = snd_buf->page_base >> PAGE_CACHE_SHIFT;
1079 last = (snd_buf->page_base + snd_buf->page_len - 1) >> PAGE_CACHE_SHIFT;
1080 rqstp->rq_enc_pages_num = last - first + 1 + 1;
1081 rqstp->rq_enc_pages
1082 = kmalloc(rqstp->rq_enc_pages_num * sizeof(struct page *),
1083 GFP_NOFS);
1084 if (!rqstp->rq_enc_pages)
1085 goto out;
1086 for (i=0; i < rqstp->rq_enc_pages_num; i++) {
1087 rqstp->rq_enc_pages[i] = alloc_page(GFP_NOFS);
1088 if (rqstp->rq_enc_pages[i] == NULL)
1089 goto out_free;
1090 }
1091 rqstp->rq_release_snd_buf = priv_release_snd_buf;
1092 return 0;
1093out_free:
1094 for (i--; i >= 0; i--) {
1095 __free_page(rqstp->rq_enc_pages[i]);
1096 }
1097out:
1098 return -EAGAIN;
1099}
1100
1101static inline int
1102gss_wrap_req_priv(struct rpc_cred *cred, struct gss_cl_ctx *ctx,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001103 kxdrproc_t encode, struct rpc_rqst *rqstp, __be32 *p, void *obj)
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001104{
1105 struct xdr_buf *snd_buf = &rqstp->rq_snd_buf;
1106 u32 offset;
1107 u32 maj_stat;
1108 int status;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001109 __be32 *opaque_len;
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001110 struct page **inpages;
1111 int first;
1112 int pad;
1113 struct kvec *iov;
1114 char *tmp;
1115
1116 opaque_len = p++;
1117 offset = (u8 *)p - (u8 *)snd_buf->head[0].iov_base;
1118 *p++ = htonl(rqstp->rq_seqno);
1119
Trond Myklebust88a9fe82008-12-23 15:21:31 -05001120 status = encode(rqstp, p, obj);
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001121 if (status)
1122 return status;
1123
1124 status = alloc_enc_pages(rqstp);
1125 if (status)
1126 return status;
1127 first = snd_buf->page_base >> PAGE_CACHE_SHIFT;
1128 inpages = snd_buf->pages + first;
1129 snd_buf->pages = rqstp->rq_enc_pages;
1130 snd_buf->page_base -= first << PAGE_CACHE_SHIFT;
1131 /* Give the tail its own page, in case we need extra space in the
1132 * head when wrapping: */
1133 if (snd_buf->page_len || snd_buf->tail[0].iov_len) {
1134 tmp = page_address(rqstp->rq_enc_pages[rqstp->rq_enc_pages_num - 1]);
1135 memcpy(tmp, snd_buf->tail[0].iov_base, snd_buf->tail[0].iov_len);
1136 snd_buf->tail[0].iov_base = tmp;
1137 }
J. Bruce Fields00fd6e12005-10-13 16:55:18 -04001138 maj_stat = gss_wrap(ctx->gc_gss_ctx, offset, snd_buf, inpages);
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001139 /* RPC_SLACK_SPACE should prevent this ever happening: */
1140 BUG_ON(snd_buf->len > snd_buf->buflen);
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001141 status = -EIO;
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001142 /* We're assuming that when GSS_S_CONTEXT_EXPIRED, the encryption was
1143 * done anyway, so it's safe to put the request on the wire: */
1144 if (maj_stat == GSS_S_CONTEXT_EXPIRED)
Trond Myklebustfc432dd2007-06-25 10:15:15 -04001145 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001146 else if (maj_stat)
1147 return status;
1148
1149 *opaque_len = htonl(snd_buf->len - offset);
1150 /* guess whether we're in the head or the tail: */
1151 if (snd_buf->page_len || snd_buf->tail[0].iov_len)
1152 iov = snd_buf->tail;
1153 else
1154 iov = snd_buf->head;
1155 p = iov->iov_base + iov->iov_len;
1156 pad = 3 - ((snd_buf->len - offset - 1) & 3);
1157 memset(p, 0, pad);
1158 iov->iov_len += pad;
1159 snd_buf->len += pad;
1160
1161 return 0;
1162}
1163
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164static int
1165gss_wrap_req(struct rpc_task *task,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001166 kxdrproc_t encode, void *rqstp, __be32 *p, void *obj)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167{
1168 struct rpc_cred *cred = task->tk_msg.rpc_cred;
1169 struct gss_cred *gss_cred = container_of(cred, struct gss_cred,
1170 gc_base);
1171 struct gss_cl_ctx *ctx = gss_cred_get_ctx(cred);
1172 int status = -EIO;
1173
Chuck Lever8885cb32007-01-31 12:14:05 -05001174 dprintk("RPC: %5u gss_wrap_req\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 if (ctx->gc_proc != RPC_GSS_PROC_DATA) {
1176 /* The spec seems a little ambiguous here, but I think that not
1177 * wrapping context destruction requests makes the most sense.
1178 */
Trond Myklebust88a9fe82008-12-23 15:21:31 -05001179 status = encode(rqstp, p, obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 goto out;
1181 }
1182 switch (gss_cred->gc_service) {
1183 case RPC_GSS_SVC_NONE:
Trond Myklebust88a9fe82008-12-23 15:21:31 -05001184 status = encode(rqstp, p, obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 break;
1186 case RPC_GSS_SVC_INTEGRITY:
1187 status = gss_wrap_req_integ(cred, ctx, encode,
1188 rqstp, p, obj);
1189 break;
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001190 case RPC_GSS_SVC_PRIVACY:
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001191 status = gss_wrap_req_priv(cred, ctx, encode,
1192 rqstp, p, obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 break;
1194 }
1195out:
1196 gss_put_ctx(ctx);
Chuck Lever8885cb32007-01-31 12:14:05 -05001197 dprintk("RPC: %5u gss_wrap_req returning %d\n", task->tk_pid, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 return status;
1199}
1200
1201static inline int
1202gss_unwrap_resp_integ(struct rpc_cred *cred, struct gss_cl_ctx *ctx,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001203 struct rpc_rqst *rqstp, __be32 **p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204{
1205 struct xdr_buf *rcv_buf = &rqstp->rq_rcv_buf;
1206 struct xdr_buf integ_buf;
1207 struct xdr_netobj mic;
1208 u32 data_offset, mic_offset;
1209 u32 integ_len;
1210 u32 maj_stat;
1211 int status = -EIO;
1212
1213 integ_len = ntohl(*(*p)++);
1214 if (integ_len & 3)
1215 return status;
1216 data_offset = (u8 *)(*p) - (u8 *)rcv_buf->head[0].iov_base;
1217 mic_offset = integ_len + data_offset;
1218 if (mic_offset > rcv_buf->len)
1219 return status;
1220 if (ntohl(*(*p)++) != rqstp->rq_seqno)
1221 return status;
1222
1223 if (xdr_buf_subsegment(rcv_buf, &integ_buf, data_offset,
1224 mic_offset - data_offset))
1225 return status;
1226
1227 if (xdr_buf_read_netobj(rcv_buf, &mic, mic_offset))
1228 return status;
1229
J. Bruce Fields00fd6e12005-10-13 16:55:18 -04001230 maj_stat = gss_verify_mic(ctx->gc_gss_ctx, &integ_buf, &mic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 if (maj_stat == GSS_S_CONTEXT_EXPIRED)
Trond Myklebustfc432dd2007-06-25 10:15:15 -04001232 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 if (maj_stat != GSS_S_COMPLETE)
1234 return status;
1235 return 0;
1236}
1237
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001238static inline int
1239gss_unwrap_resp_priv(struct rpc_cred *cred, struct gss_cl_ctx *ctx,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001240 struct rpc_rqst *rqstp, __be32 **p)
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001241{
1242 struct xdr_buf *rcv_buf = &rqstp->rq_rcv_buf;
1243 u32 offset;
1244 u32 opaque_len;
1245 u32 maj_stat;
1246 int status = -EIO;
1247
1248 opaque_len = ntohl(*(*p)++);
1249 offset = (u8 *)(*p) - (u8 *)rcv_buf->head[0].iov_base;
1250 if (offset + opaque_len > rcv_buf->len)
1251 return status;
1252 /* remove padding: */
1253 rcv_buf->len = offset + opaque_len;
1254
J. Bruce Fields00fd6e12005-10-13 16:55:18 -04001255 maj_stat = gss_unwrap(ctx->gc_gss_ctx, offset, rcv_buf);
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001256 if (maj_stat == GSS_S_CONTEXT_EXPIRED)
Trond Myklebustfc432dd2007-06-25 10:15:15 -04001257 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001258 if (maj_stat != GSS_S_COMPLETE)
1259 return status;
1260 if (ntohl(*(*p)++) != rqstp->rq_seqno)
1261 return status;
1262
1263 return 0;
1264}
1265
1266
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267static int
1268gss_unwrap_resp(struct rpc_task *task,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001269 kxdrproc_t decode, void *rqstp, __be32 *p, void *obj)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270{
1271 struct rpc_cred *cred = task->tk_msg.rpc_cred;
1272 struct gss_cred *gss_cred = container_of(cred, struct gss_cred,
1273 gc_base);
1274 struct gss_cl_ctx *ctx = gss_cred_get_ctx(cred);
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001275 __be32 *savedp = p;
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001276 struct kvec *head = ((struct rpc_rqst *)rqstp)->rq_rcv_buf.head;
1277 int savedlen = head->iov_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 int status = -EIO;
1279
1280 if (ctx->gc_proc != RPC_GSS_PROC_DATA)
1281 goto out_decode;
1282 switch (gss_cred->gc_service) {
1283 case RPC_GSS_SVC_NONE:
1284 break;
1285 case RPC_GSS_SVC_INTEGRITY:
1286 status = gss_unwrap_resp_integ(cred, ctx, rqstp, &p);
1287 if (status)
1288 goto out;
1289 break;
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001290 case RPC_GSS_SVC_PRIVACY:
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001291 status = gss_unwrap_resp_priv(cred, ctx, rqstp, &p);
1292 if (status)
1293 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 break;
1295 }
J. Bruce Fields24b26052005-10-13 16:54:53 -04001296 /* take into account extra slack for integrity and privacy cases: */
Trond Myklebust1be27f32007-06-27 14:29:04 -04001297 cred->cr_auth->au_rslack = cred->cr_auth->au_verfsize + (p - savedp)
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001298 + (savedlen - head->iov_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299out_decode:
Trond Myklebust88a9fe82008-12-23 15:21:31 -05001300 status = decode(rqstp, p, obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301out:
1302 gss_put_ctx(ctx);
Chuck Lever8885cb32007-01-31 12:14:05 -05001303 dprintk("RPC: %5u gss_unwrap_resp returning %d\n", task->tk_pid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 status);
1305 return status;
1306}
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001307
Trond Myklebustf1c0a862007-06-23 20:17:58 -04001308static const struct rpc_authops authgss_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 .owner = THIS_MODULE,
1310 .au_flavor = RPC_AUTH_GSS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 .au_name = "RPCSEC_GSS",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 .create = gss_create,
1313 .destroy = gss_destroy,
1314 .lookup_cred = gss_lookup_cred,
1315 .crcreate = gss_create_cred
1316};
1317
Trond Myklebustf1c0a862007-06-23 20:17:58 -04001318static const struct rpc_credops gss_credops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 .cr_name = "AUTH_GSS",
1320 .crdestroy = gss_destroy_cred,
Trond Myklebustfba3bad2006-02-01 12:19:27 -05001321 .cr_init = gss_cred_init,
Trond Myklebust5c691042008-03-12 16:21:07 -04001322 .crbind = rpcauth_generic_bind_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 .crmatch = gss_match,
1324 .crmarshal = gss_marshal,
1325 .crrefresh = gss_refresh,
1326 .crvalidate = gss_validate,
1327 .crwrap_req = gss_wrap_req,
1328 .crunwrap_resp = gss_unwrap_resp,
1329};
1330
Trond Myklebust0df7fb72007-06-26 17:04:57 -04001331static const struct rpc_credops gss_nullops = {
1332 .cr_name = "AUTH_GSS",
Jeff Layton6dcd3922008-12-23 15:21:57 -05001333 .crdestroy = gss_destroy_nullcred,
Trond Myklebust5c691042008-03-12 16:21:07 -04001334 .crbind = rpcauth_generic_bind_cred,
Trond Myklebust0df7fb72007-06-26 17:04:57 -04001335 .crmatch = gss_match,
1336 .crmarshal = gss_marshal,
1337 .crrefresh = gss_refresh_null,
1338 .crvalidate = gss_validate,
1339 .crwrap_req = gss_wrap_req,
1340 .crunwrap_resp = gss_unwrap_resp,
1341};
1342
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343static struct rpc_pipe_ops gss_upcall_ops = {
1344 .upcall = gss_pipe_upcall,
1345 .downcall = gss_pipe_downcall,
1346 .destroy_msg = gss_pipe_destroy_msg,
1347 .release_pipe = gss_pipe_release,
1348};
1349
1350/*
1351 * Initialize RPCSEC_GSS module
1352 */
1353static int __init init_rpcsec_gss(void)
1354{
1355 int err = 0;
1356
1357 err = rpcauth_register(&authgss_ops);
1358 if (err)
1359 goto out;
1360 err = gss_svc_init();
1361 if (err)
1362 goto out_unregister;
1363 return 0;
1364out_unregister:
1365 rpcauth_unregister(&authgss_ops);
1366out:
1367 return err;
1368}
1369
1370static void __exit exit_rpcsec_gss(void)
1371{
1372 gss_svc_shutdown();
1373 rpcauth_unregister(&authgss_ops);
1374}
1375
1376MODULE_LICENSE("GPL");
1377module_init(init_rpcsec_gss)
1378module_exit(exit_rpcsec_gss)