blob: d3ad81f8da5b79551c36b17a7d53007406946699 [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
Trond Myklebust126e2162010-05-13 12:55:38 -040060#define GSS_RETRY_EXPIRED 5
61static unsigned int gss_expired_cred_retry_delay = GSS_RETRY_EXPIRED;
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#ifdef RPC_DEBUG
64# define RPCDBG_FACILITY RPCDBG_AUTH
65#endif
66
Kevin Coffman725f2862010-03-17 13:02:46 -040067#define GSS_CRED_SLACK (RPC_MAX_AUTH_SIZE * 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068/* 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070072struct gss_auth {
Trond Myklebust0285ed12007-06-27 14:29:12 -040073 struct kref kref;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 struct rpc_auth rpc_auth;
75 struct gss_api_mech *mech;
76 enum rpc_gss_svc service;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 struct rpc_clnt *client;
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -050078 /*
79 * There are two upcall pipes; dentry[1], named "gssd", is used
80 * for the new text-based upcall; dentry[0] is named after the
81 * mechanism (for example, "krb5") and exists for
82 * backwards-compatibility with older gssd's.
83 */
Stanislav Kinsburskyc239d832011-12-26 15:44:06 +030084 struct rpc_pipe *pipe[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -070085};
86
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -050087/* pipe_version >= 0 if and only if someone has a pipe open. */
88static int pipe_version = -1;
\"J. Bruce Fields\cf819392008-12-23 16:10:19 -050089static atomic_t pipe_users = ATOMIC_INIT(0);
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -050090static DEFINE_SPINLOCK(pipe_version_lock);
91static struct rpc_wait_queue pipe_version_rpc_waitqueue;
92static DECLARE_WAIT_QUEUE_HEAD(pipe_version_waitqueue);
\"J. Bruce Fields\cf819392008-12-23 16:10:19 -050093
Trond Myklebust5d28dc82007-06-26 19:18:38 -040094static void gss_free_ctx(struct gss_cl_ctx *);
Trond Myklebustb693ba42009-08-09 15:14:15 -040095static const struct rpc_pipe_ops gss_upcall_ops_v0;
96static const struct rpc_pipe_ops gss_upcall_ops_v1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Linus Torvalds1da177e2005-04-16 15:20:36 -070098static inline struct gss_cl_ctx *
99gss_get_ctx(struct gss_cl_ctx *ctx)
100{
101 atomic_inc(&ctx->count);
102 return ctx;
103}
104
105static inline void
106gss_put_ctx(struct gss_cl_ctx *ctx)
107{
108 if (atomic_dec_and_test(&ctx->count))
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400109 gss_free_ctx(ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110}
111
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400112/* gss_cred_set_ctx:
113 * called by gss_upcall_callback and gss_create_upcall in order
114 * to set the gss context. The actual exchange of an old context
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300115 * and a new one is protected by the pipe->lock.
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400116 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117static void
118gss_cred_set_ctx(struct rpc_cred *cred, struct gss_cl_ctx *ctx)
119{
120 struct gss_cred *gss_cred = container_of(cred, struct gss_cred, gc_base);
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400121
Trond Myklebustcd019f72008-04-17 17:03:58 -0400122 if (!test_bit(RPCAUTH_CRED_NEW, &cred->cr_flags))
123 return;
Trond Myklebust7b6962b2008-04-17 16:53:01 -0400124 gss_get_ctx(ctx);
Eric Dumazetcf778b02012-01-12 04:41:32 +0000125 rcu_assign_pointer(gss_cred->gc_ctx, ctx);
Trond Myklebustfc432dd2007-06-25 10:15:15 -0400126 set_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
Trond Myklebustcd019f72008-04-17 17:03:58 -0400127 smp_mb__before_clear_bit();
Trond Myklebustfc432dd2007-06-25 10:15:15 -0400128 clear_bit(RPCAUTH_CRED_NEW, &cred->cr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129}
130
131static const void *
132simple_get_bytes(const void *p, const void *end, void *res, size_t len)
133{
134 const void *q = (const void *)((const char *)p + len);
135 if (unlikely(q > end || q < p))
136 return ERR_PTR(-EFAULT);
137 memcpy(res, p, len);
138 return q;
139}
140
141static inline const void *
142simple_get_netobj(const void *p, const void *end, struct xdr_netobj *dest)
143{
144 const void *q;
145 unsigned int len;
146
147 p = simple_get_bytes(p, end, &len, sizeof(len));
148 if (IS_ERR(p))
149 return p;
150 q = (const void *)((const char *)p + len);
151 if (unlikely(q > end || q < p))
152 return ERR_PTR(-EFAULT);
Trond Myklebust0f38b872008-06-10 18:31:01 -0400153 dest->data = kmemdup(p, len, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 if (unlikely(dest->data == NULL))
155 return ERR_PTR(-ENOMEM);
156 dest->len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 return q;
158}
159
160static struct gss_cl_ctx *
161gss_cred_get_ctx(struct rpc_cred *cred)
162{
163 struct gss_cred *gss_cred = container_of(cred, struct gss_cred, gc_base);
164 struct gss_cl_ctx *ctx = NULL;
165
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400166 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 if (gss_cred->gc_ctx)
168 ctx = gss_get_ctx(gss_cred->gc_ctx);
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400169 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 return ctx;
171}
172
173static struct gss_cl_ctx *
174gss_alloc_context(void)
175{
176 struct gss_cl_ctx *ctx;
177
Trond Myklebust0f38b872008-06-10 18:31:01 -0400178 ctx = kzalloc(sizeof(*ctx), GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 if (ctx != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 ctx->gc_proc = RPC_GSS_PROC_DATA;
181 ctx->gc_seq = 1; /* NetApp 6.4R1 doesn't accept seq. no. 0 */
182 spin_lock_init(&ctx->gc_seq_lock);
183 atomic_set(&ctx->count,1);
184 }
185 return ctx;
186}
187
188#define GSSD_MIN_TIMEOUT (60 * 60)
189static const void *
190gss_fill_context(const void *p, const void *end, struct gss_cl_ctx *ctx, struct gss_api_mech *gm)
191{
192 const void *q;
193 unsigned int seclen;
194 unsigned int timeout;
195 u32 window_size;
196 int ret;
197
198 /* First unsigned int gives the lifetime (in seconds) of the cred */
199 p = simple_get_bytes(p, end, &timeout, sizeof(timeout));
200 if (IS_ERR(p))
201 goto err;
202 if (timeout == 0)
203 timeout = GSSD_MIN_TIMEOUT;
204 ctx->gc_expiry = jiffies + (unsigned long)timeout * HZ * 3 / 4;
205 /* Sequence number window. Determines the maximum number of simultaneous requests */
206 p = simple_get_bytes(p, end, &window_size, sizeof(window_size));
207 if (IS_ERR(p))
208 goto err;
209 ctx->gc_win = window_size;
210 /* gssd signals an error by passing ctx->gc_win = 0: */
211 if (ctx->gc_win == 0) {
Jeff Laytondc5ddce2010-01-07 09:42:02 -0500212 /*
213 * in which case, p points to an error code. Anything other
214 * than -EKEYEXPIRED gets converted to -EACCES.
215 */
216 p = simple_get_bytes(p, end, &ret, sizeof(ret));
217 if (!IS_ERR(p))
218 p = (ret == -EKEYEXPIRED) ? ERR_PTR(-EKEYEXPIRED) :
219 ERR_PTR(-EACCES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 goto err;
221 }
222 /* copy the opaque wire context */
223 p = simple_get_netobj(p, end, &ctx->gc_wire_ctx);
224 if (IS_ERR(p))
225 goto err;
226 /* import the opaque security context */
227 p = simple_get_bytes(p, end, &seclen, sizeof(seclen));
228 if (IS_ERR(p))
229 goto err;
230 q = (const void *)((const char *)p + seclen);
231 if (unlikely(q > end || q < p)) {
232 p = ERR_PTR(-EFAULT);
233 goto err;
234 }
Trond Myklebust1f4c86c2010-05-13 12:51:02 -0400235 ret = gss_import_sec_context(p, seclen, gm, &ctx->gc_gss_ctx, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 if (ret < 0) {
237 p = ERR_PTR(ret);
238 goto err;
239 }
240 return q;
241err:
Chuck Lever8885cb32007-01-31 12:14:05 -0500242 dprintk("RPC: gss_fill_context returning %ld\n", -PTR_ERR(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 return p;
244}
245
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500246#define UPCALL_BUF_LEN 128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248struct gss_upcall_msg {
249 atomic_t count;
250 uid_t uid;
251 struct rpc_pipe_msg msg;
252 struct list_head list;
253 struct gss_auth *auth;
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300254 struct rpc_pipe *pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 struct rpc_wait_queue rpc_waitqueue;
256 wait_queue_head_t waitqueue;
257 struct gss_cl_ctx *ctx;
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500258 char databuf[UPCALL_BUF_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259};
260
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500261static int get_pipe_version(void)
262{
263 int ret;
264
265 spin_lock(&pipe_version_lock);
266 if (pipe_version >= 0) {
267 atomic_inc(&pipe_users);
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500268 ret = pipe_version;
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500269 } else
270 ret = -EAGAIN;
271 spin_unlock(&pipe_version_lock);
272 return ret;
273}
274
275static void put_pipe_version(void)
276{
277 if (atomic_dec_and_lock(&pipe_users, &pipe_version_lock)) {
278 pipe_version = -1;
279 spin_unlock(&pipe_version_lock);
280 }
281}
282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283static void
284gss_release_msg(struct gss_upcall_msg *gss_msg)
285{
286 if (!atomic_dec_and_test(&gss_msg->count))
287 return;
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500288 put_pipe_version();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 BUG_ON(!list_empty(&gss_msg->list));
290 if (gss_msg->ctx != NULL)
291 gss_put_ctx(gss_msg->ctx);
Trond Myklebustf6a1cc82008-02-22 17:06:55 -0500292 rpc_destroy_wait_queue(&gss_msg->rpc_waitqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 kfree(gss_msg);
294}
295
296static struct gss_upcall_msg *
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300297__gss_find_upcall(struct rpc_pipe *pipe, uid_t uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
299 struct gss_upcall_msg *pos;
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300300 list_for_each_entry(pos, &pipe->in_downcall, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 if (pos->uid != uid)
302 continue;
303 atomic_inc(&pos->count);
Chuck Lever8885cb32007-01-31 12:14:05 -0500304 dprintk("RPC: gss_find_upcall found msg %p\n", pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 return pos;
306 }
Chuck Lever8885cb32007-01-31 12:14:05 -0500307 dprintk("RPC: gss_find_upcall found nothing\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 return NULL;
309}
310
\\\"J. Bruce Fields\\\720b8f22008-06-09 16:51:33 -0400311/* Try to add an upcall to the pipefs queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 * If an upcall owned by our uid already exists, then we return a reference
313 * to that upcall instead of adding the new upcall.
314 */
315static inline struct gss_upcall_msg *
Suresh Jayaraman053e3242009-12-09 23:15:22 +0530316gss_add_msg(struct gss_upcall_msg *gss_msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317{
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300318 struct rpc_pipe *pipe = gss_msg->pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 struct gss_upcall_msg *old;
320
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300321 spin_lock(&pipe->lock);
322 old = __gss_find_upcall(pipe, gss_msg->uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 if (old == NULL) {
324 atomic_inc(&gss_msg->count);
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300325 list_add(&gss_msg->list, &pipe->in_downcall);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 } else
327 gss_msg = old;
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300328 spin_unlock(&pipe->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 return gss_msg;
330}
331
332static void
333__gss_unhash_msg(struct gss_upcall_msg *gss_msg)
334{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 list_del_init(&gss_msg->list);
336 rpc_wake_up_status(&gss_msg->rpc_waitqueue, gss_msg->msg.errno);
337 wake_up_all(&gss_msg->waitqueue);
338 atomic_dec(&gss_msg->count);
339}
340
341static void
342gss_unhash_msg(struct gss_upcall_msg *gss_msg)
343{
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300344 struct rpc_pipe *pipe = gss_msg->pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400346 if (list_empty(&gss_msg->list))
347 return;
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300348 spin_lock(&pipe->lock);
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400349 if (!list_empty(&gss_msg->list))
350 __gss_unhash_msg(gss_msg);
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300351 spin_unlock(&pipe->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352}
353
354static void
Trond Myklebust126e2162010-05-13 12:55:38 -0400355gss_handle_downcall_result(struct gss_cred *gss_cred, struct gss_upcall_msg *gss_msg)
356{
357 switch (gss_msg->msg.errno) {
358 case 0:
359 if (gss_msg->ctx == NULL)
360 break;
361 clear_bit(RPCAUTH_CRED_NEGATIVE, &gss_cred->gc_base.cr_flags);
362 gss_cred_set_ctx(&gss_cred->gc_base, gss_msg->ctx);
363 break;
364 case -EKEYEXPIRED:
365 set_bit(RPCAUTH_CRED_NEGATIVE, &gss_cred->gc_base.cr_flags);
366 }
367 gss_cred->gc_upcall_timestamp = jiffies;
368 gss_cred->gc_upcall = NULL;
369 rpc_wake_up_status(&gss_msg->rpc_waitqueue, gss_msg->msg.errno);
370}
371
372static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373gss_upcall_callback(struct rpc_task *task)
374{
Trond Myklebusta17c2152010-07-31 14:29:08 -0400375 struct gss_cred *gss_cred = container_of(task->tk_rqstp->rq_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 struct gss_cred, gc_base);
377 struct gss_upcall_msg *gss_msg = gss_cred->gc_upcall;
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300378 struct rpc_pipe *pipe = gss_msg->pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300380 spin_lock(&pipe->lock);
Trond Myklebust126e2162010-05-13 12:55:38 -0400381 gss_handle_downcall_result(gss_cred, gss_msg);
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300382 spin_unlock(&pipe->lock);
Trond Myklebust126e2162010-05-13 12:55:38 -0400383 task->tk_status = gss_msg->msg.errno;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 gss_release_msg(gss_msg);
385}
386
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500387static void gss_encode_v0_msg(struct gss_upcall_msg *gss_msg)
388{
389 gss_msg->msg.data = &gss_msg->uid;
390 gss_msg->msg.len = sizeof(gss_msg->uid);
391}
392
Olga Kornievskaia8b1c7bf2008-12-23 16:19:26 -0500393static void gss_encode_v1_msg(struct gss_upcall_msg *gss_msg,
Trond Myklebust68c97152012-01-03 13:22:46 -0500394 struct rpc_clnt *clnt,
395 const char *service_name)
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500396{
Trond Myklebust683ac662010-04-08 14:09:58 -0400397 struct gss_api_mech *mech = gss_msg->auth->mech;
Olga Kornievskaia8b1c7bf2008-12-23 16:19:26 -0500398 char *p = gss_msg->databuf;
399 int len = 0;
400
401 gss_msg->msg.len = sprintf(gss_msg->databuf, "mech=%s uid=%d ",
Trond Myklebust683ac662010-04-08 14:09:58 -0400402 mech->gm_name,
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500403 gss_msg->uid);
Olga Kornievskaia8b1c7bf2008-12-23 16:19:26 -0500404 p += gss_msg->msg.len;
405 if (clnt->cl_principal) {
406 len = sprintf(p, "target=%s ", clnt->cl_principal);
407 p += len;
408 gss_msg->msg.len += len;
409 }
Trond Myklebust68c97152012-01-03 13:22:46 -0500410 if (service_name != NULL) {
411 len = sprintf(p, "service=%s ", service_name);
Olga Kornievskaia2efef702008-12-23 16:19:56 -0500412 p += len;
413 gss_msg->msg.len += len;
414 }
Trond Myklebust683ac662010-04-08 14:09:58 -0400415 if (mech->gm_upcall_enctypes) {
Kevin Coffmanf8628222011-03-03 00:51:41 +0000416 len = sprintf(p, "enctypes=%s ", mech->gm_upcall_enctypes);
Trond Myklebust683ac662010-04-08 14:09:58 -0400417 p += len;
418 gss_msg->msg.len += len;
419 }
Olga Kornievskaia8b1c7bf2008-12-23 16:19:26 -0500420 len = sprintf(p, "\n");
421 gss_msg->msg.len += len;
422
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500423 gss_msg->msg.data = gss_msg->databuf;
424 BUG_ON(gss_msg->msg.len > UPCALL_BUF_LEN);
425}
426
Olga Kornievskaia8b1c7bf2008-12-23 16:19:26 -0500427static void gss_encode_msg(struct gss_upcall_msg *gss_msg,
Trond Myklebust68c97152012-01-03 13:22:46 -0500428 struct rpc_clnt *clnt,
429 const char *service_name)
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500430{
431 if (pipe_version == 0)
432 gss_encode_v0_msg(gss_msg);
433 else /* pipe_version == 1 */
Trond Myklebust68c97152012-01-03 13:22:46 -0500434 gss_encode_v1_msg(gss_msg, clnt, service_name);
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500435}
436
Trond Myklebust68c97152012-01-03 13:22:46 -0500437static struct gss_upcall_msg *
438gss_alloc_msg(struct gss_auth *gss_auth, struct rpc_clnt *clnt,
439 uid_t uid, const char *service_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
441 struct gss_upcall_msg *gss_msg;
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500442 int vers;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Trond Myklebust0f38b872008-06-10 18:31:01 -0400444 gss_msg = kzalloc(sizeof(*gss_msg), GFP_NOFS);
\"J. Bruce Fields\db75b3d2008-12-23 16:07:13 -0500445 if (gss_msg == NULL)
446 return ERR_PTR(-ENOMEM);
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500447 vers = get_pipe_version();
448 if (vers < 0) {
449 kfree(gss_msg);
450 return ERR_PTR(vers);
451 }
Stanislav Kinsburskyc239d832011-12-26 15:44:06 +0300452 gss_msg->pipe = gss_auth->pipe[vers];
\"J. Bruce Fields\db75b3d2008-12-23 16:07:13 -0500453 INIT_LIST_HEAD(&gss_msg->list);
454 rpc_init_wait_queue(&gss_msg->rpc_waitqueue, "RPCSEC_GSS upcall waitq");
455 init_waitqueue_head(&gss_msg->waitqueue);
456 atomic_set(&gss_msg->count, 1);
\"J. Bruce Fields\db75b3d2008-12-23 16:07:13 -0500457 gss_msg->uid = uid;
458 gss_msg->auth = gss_auth;
Trond Myklebust68c97152012-01-03 13:22:46 -0500459 gss_encode_msg(gss_msg, clnt, service_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 return gss_msg;
461}
462
463static struct gss_upcall_msg *
464gss_setup_upcall(struct rpc_clnt *clnt, struct gss_auth *gss_auth, struct rpc_cred *cred)
465{
Trond Myklebust7c67db32008-04-07 20:50:11 -0400466 struct gss_cred *gss_cred = container_of(cred,
467 struct gss_cred, gc_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 struct gss_upcall_msg *gss_new, *gss_msg;
Trond Myklebust7c67db32008-04-07 20:50:11 -0400469 uid_t uid = cred->cr_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
Trond Myklebust68c97152012-01-03 13:22:46 -0500471 gss_new = gss_alloc_msg(gss_auth, clnt, uid, gss_cred->gc_principal);
\"J. Bruce Fields\db75b3d2008-12-23 16:07:13 -0500472 if (IS_ERR(gss_new))
473 return gss_new;
Suresh Jayaraman053e3242009-12-09 23:15:22 +0530474 gss_msg = gss_add_msg(gss_new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 if (gss_msg == gss_new) {
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300476 int res = rpc_queue_upcall(gss_new->pipe, &gss_new->msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 if (res) {
478 gss_unhash_msg(gss_new);
479 gss_msg = ERR_PTR(res);
480 }
481 } else
482 gss_release_msg(gss_new);
483 return gss_msg;
484}
485
\"J. Bruce Fields\b03568c2008-12-23 16:06:55 -0500486static void warn_gssd(void)
487{
488 static unsigned long ratelimit;
489 unsigned long now = jiffies;
490
491 if (time_after(now, ratelimit)) {
492 printk(KERN_WARNING "RPC: AUTH_GSS upcall timed out.\n"
493 "Please check user daemon is running.\n");
494 ratelimit = now + 15*HZ;
495 }
496}
497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498static inline int
499gss_refresh_upcall(struct rpc_task *task)
500{
Trond Myklebusta17c2152010-07-31 14:29:08 -0400501 struct rpc_cred *cred = task->tk_rqstp->rq_cred;
Trond Myklebust4a8c1342007-06-07 10:14:14 -0400502 struct gss_auth *gss_auth = container_of(cred->cr_auth,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 struct gss_auth, rpc_auth);
504 struct gss_cred *gss_cred = container_of(cred,
505 struct gss_cred, gc_base);
506 struct gss_upcall_msg *gss_msg;
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300507 struct rpc_pipe *pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 int err = 0;
509
Chuck Lever8885cb32007-01-31 12:14:05 -0500510 dprintk("RPC: %5u gss_refresh_upcall for uid %u\n", task->tk_pid,
511 cred->cr_uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 gss_msg = gss_setup_upcall(task->tk_client, gss_auth, cred);
Roel Kluin480e3242009-12-08 13:13:03 -0500513 if (PTR_ERR(gss_msg) == -EAGAIN) {
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500514 /* XXX: warning on the first, under the assumption we
515 * shouldn't normally hit this case on a refresh. */
516 warn_gssd();
517 task->tk_timeout = 15*HZ;
518 rpc_sleep_on(&pipe_version_rpc_waitqueue, task, NULL);
Bryan Schumakerd1a80162011-04-13 14:31:28 -0400519 return -EAGAIN;
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500520 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 if (IS_ERR(gss_msg)) {
522 err = PTR_ERR(gss_msg);
523 goto out;
524 }
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300525 pipe = gss_msg->pipe;
526 spin_lock(&pipe->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 if (gss_cred->gc_upcall != NULL)
Trond Myklebust5d008372008-02-22 16:34:17 -0500528 rpc_sleep_on(&gss_cred->gc_upcall->rpc_waitqueue, task, NULL);
Trond Myklebust126e2162010-05-13 12:55:38 -0400529 else if (gss_msg->ctx == NULL && gss_msg->msg.errno >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 task->tk_timeout = 0;
531 gss_cred->gc_upcall = gss_msg;
532 /* gss_upcall_callback will release the reference to gss_upcall_msg */
533 atomic_inc(&gss_msg->count);
Trond Myklebust5d008372008-02-22 16:34:17 -0500534 rpc_sleep_on(&gss_msg->rpc_waitqueue, task, gss_upcall_callback);
Trond Myklebust126e2162010-05-13 12:55:38 -0400535 } else {
536 gss_handle_downcall_result(gss_cred, gss_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 err = gss_msg->msg.errno;
Trond Myklebust126e2162010-05-13 12:55:38 -0400538 }
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300539 spin_unlock(&pipe->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 gss_release_msg(gss_msg);
541out:
Chuck Lever8885cb32007-01-31 12:14:05 -0500542 dprintk("RPC: %5u gss_refresh_upcall for uid %u result %d\n",
543 task->tk_pid, cred->cr_uid, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 return err;
545}
546
547static inline int
548gss_create_upcall(struct gss_auth *gss_auth, struct gss_cred *gss_cred)
549{
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300550 struct rpc_pipe *pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 struct rpc_cred *cred = &gss_cred->gc_base;
552 struct gss_upcall_msg *gss_msg;
553 DEFINE_WAIT(wait);
554 int err = 0;
555
Chuck Lever8885cb32007-01-31 12:14:05 -0500556 dprintk("RPC: gss_upcall for uid %u\n", cred->cr_uid);
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500557retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 gss_msg = gss_setup_upcall(gss_auth->client, gss_auth, cred);
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500559 if (PTR_ERR(gss_msg) == -EAGAIN) {
560 err = wait_event_interruptible_timeout(pipe_version_waitqueue,
561 pipe_version >= 0, 15*HZ);
Bryan Schumakerd1a80162011-04-13 14:31:28 -0400562 if (pipe_version < 0) {
563 warn_gssd();
564 err = -EACCES;
565 }
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500566 if (err)
567 goto out;
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500568 goto retry;
569 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 if (IS_ERR(gss_msg)) {
571 err = PTR_ERR(gss_msg);
572 goto out;
573 }
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300574 pipe = gss_msg->pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 for (;;) {
Trond Myklebust5afa9132011-06-17 10:14:59 -0400576 prepare_to_wait(&gss_msg->waitqueue, &wait, TASK_KILLABLE);
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300577 spin_lock(&pipe->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 if (gss_msg->ctx != NULL || gss_msg->msg.errno < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 break;
580 }
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300581 spin_unlock(&pipe->lock);
Trond Myklebust5afa9132011-06-17 10:14:59 -0400582 if (fatal_signal_pending(current)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 err = -ERESTARTSYS;
584 goto out_intr;
585 }
586 schedule();
587 }
588 if (gss_msg->ctx)
Trond Myklebust7b6962b2008-04-17 16:53:01 -0400589 gss_cred_set_ctx(cred, gss_msg->ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 else
591 err = gss_msg->msg.errno;
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300592 spin_unlock(&pipe->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593out_intr:
594 finish_wait(&gss_msg->waitqueue, &wait);
595 gss_release_msg(gss_msg);
596out:
Chuck Lever8885cb32007-01-31 12:14:05 -0500597 dprintk("RPC: gss_create_upcall for uid %u result %d\n",
598 cred->cr_uid, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 return err;
600}
601
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602#define MSG_BUF_MAXSIZE 1024
603
604static ssize_t
605gss_pipe_downcall(struct file *filp, const char __user *src, size_t mlen)
606{
607 const void *p, *end;
608 void *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 struct gss_upcall_msg *gss_msg;
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300610 struct rpc_pipe *pipe = RPC_I(filp->f_dentry->d_inode)->pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 struct gss_cl_ctx *ctx;
612 uid_t uid;
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400613 ssize_t err = -EFBIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
615 if (mlen > MSG_BUF_MAXSIZE)
616 goto out;
617 err = -ENOMEM;
Trond Myklebust0f38b872008-06-10 18:31:01 -0400618 buf = kmalloc(mlen, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 if (!buf)
620 goto out;
621
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 err = -EFAULT;
623 if (copy_from_user(buf, src, mlen))
624 goto err;
625
626 end = (const void *)((char *)buf + mlen);
627 p = simple_get_bytes(buf, end, &uid, sizeof(uid));
628 if (IS_ERR(p)) {
629 err = PTR_ERR(p);
630 goto err;
631 }
632
633 err = -ENOMEM;
634 ctx = gss_alloc_context();
635 if (ctx == NULL)
636 goto err;
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400637
638 err = -ENOENT;
639 /* Find a matching upcall */
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300640 spin_lock(&pipe->lock);
641 gss_msg = __gss_find_upcall(pipe, uid);
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400642 if (gss_msg == NULL) {
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300643 spin_unlock(&pipe->lock);
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400644 goto err_put_ctx;
645 }
646 list_del_init(&gss_msg->list);
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300647 spin_unlock(&pipe->lock);
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400648
Trond Myklebust6e84c7b2007-06-07 15:31:36 -0400649 p = gss_fill_context(p, end, ctx, gss_msg->auth->mech);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 if (IS_ERR(p)) {
651 err = PTR_ERR(p);
Jeff Layton486bad22009-12-18 16:28:20 -0500652 switch (err) {
653 case -EACCES:
Jeff Laytondc5ddce2010-01-07 09:42:02 -0500654 case -EKEYEXPIRED:
Jeff Layton486bad22009-12-18 16:28:20 -0500655 gss_msg->msg.errno = err;
656 err = mlen;
657 break;
658 case -EFAULT:
659 case -ENOMEM:
660 case -EINVAL:
661 case -ENOSYS:
662 gss_msg->msg.errno = -EAGAIN;
663 break;
664 default:
665 printk(KERN_CRIT "%s: bad return from "
Randy Dunlap6c853092010-01-06 17:26:27 -0500666 "gss_fill_context: %zd\n", __func__, err);
Jeff Layton486bad22009-12-18 16:28:20 -0500667 BUG();
668 }
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400669 goto err_release_msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 }
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400671 gss_msg->ctx = gss_get_ctx(ctx);
672 err = mlen;
673
674err_release_msg:
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300675 spin_lock(&pipe->lock);
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400676 __gss_unhash_msg(gss_msg);
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300677 spin_unlock(&pipe->lock);
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400678 gss_release_msg(gss_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679err_put_ctx:
680 gss_put_ctx(ctx);
681err:
682 kfree(buf);
683out:
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400684 dprintk("RPC: gss_pipe_downcall returning %Zd\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 return err;
686}
687
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500688static int gss_pipe_open(struct inode *inode, int new_version)
\"J. Bruce Fields\cf819392008-12-23 16:10:19 -0500689{
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500690 int ret = 0;
691
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500692 spin_lock(&pipe_version_lock);
693 if (pipe_version < 0) {
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500694 /* First open of any gss pipe determines the version: */
695 pipe_version = new_version;
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500696 rpc_wake_up(&pipe_version_rpc_waitqueue);
697 wake_up(&pipe_version_waitqueue);
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500698 } else if (pipe_version != new_version) {
699 /* Trying to open a pipe of a different version */
700 ret = -EBUSY;
701 goto out;
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500702 }
\"J. Bruce Fields\cf819392008-12-23 16:10:19 -0500703 atomic_inc(&pipe_users);
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500704out:
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500705 spin_unlock(&pipe_version_lock);
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500706 return ret;
707
708}
709
710static int gss_pipe_open_v0(struct inode *inode)
711{
712 return gss_pipe_open(inode, 0);
713}
714
715static int gss_pipe_open_v1(struct inode *inode)
716{
717 return gss_pipe_open(inode, 1);
\"J. Bruce Fields\cf819392008-12-23 16:10:19 -0500718}
719
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720static void
721gss_pipe_release(struct inode *inode)
722{
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300723 struct rpc_pipe *pipe = RPC_I(inode)->pipe;
Trond Myklebust6e84c7b2007-06-07 15:31:36 -0400724 struct gss_upcall_msg *gss_msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Trond Myklebust5a676572010-09-12 19:55:25 -0400726restart:
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300727 spin_lock(&pipe->lock);
728 list_for_each_entry(gss_msg, &pipe->in_downcall, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
Trond Myklebust5a676572010-09-12 19:55:25 -0400730 if (!list_empty(&gss_msg->msg.list))
731 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 gss_msg->msg.errno = -EPIPE;
733 atomic_inc(&gss_msg->count);
734 __gss_unhash_msg(gss_msg);
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300735 spin_unlock(&pipe->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 gss_release_msg(gss_msg);
Trond Myklebust5a676572010-09-12 19:55:25 -0400737 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 }
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300739 spin_unlock(&pipe->lock);
\"J. Bruce Fields\cf819392008-12-23 16:10:19 -0500740
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500741 put_pipe_version();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742}
743
744static void
745gss_pipe_destroy_msg(struct rpc_pipe_msg *msg)
746{
747 struct gss_upcall_msg *gss_msg = container_of(msg, struct gss_upcall_msg, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
749 if (msg->errno < 0) {
Chuck Lever8885cb32007-01-31 12:14:05 -0500750 dprintk("RPC: gss_pipe_destroy_msg releasing msg %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 gss_msg);
752 atomic_inc(&gss_msg->count);
753 gss_unhash_msg(gss_msg);
\"J. Bruce Fields\b03568c2008-12-23 16:06:55 -0500754 if (msg->errno == -ETIMEDOUT)
755 warn_gssd();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 gss_release_msg(gss_msg);
757 }
758}
759
Stanislav Kinsburskyccdc28f2012-01-11 19:18:09 +0400760static void gss_pipes_dentries_destroy(struct rpc_auth *auth)
761{
762 struct gss_auth *gss_auth;
763
764 gss_auth = container_of(auth, struct gss_auth, rpc_auth);
Stanislav Kinsbursky80df9d22012-01-11 19:18:17 +0400765 if (gss_auth->pipe[0]->dentry)
766 rpc_unlink(gss_auth->pipe[0]->dentry);
767 if (gss_auth->pipe[1]->dentry)
768 rpc_unlink(gss_auth->pipe[1]->dentry);
Stanislav Kinsburskyccdc28f2012-01-11 19:18:09 +0400769}
770
771static int gss_pipes_dentries_create(struct rpc_auth *auth)
772{
773 int err;
774 struct gss_auth *gss_auth;
775 struct rpc_clnt *clnt;
776
777 gss_auth = container_of(auth, struct gss_auth, rpc_auth);
778 clnt = gss_auth->client;
779
Stanislav Kinsbursky30507f52012-01-11 19:18:42 +0400780 gss_auth->pipe[1]->dentry = rpc_mkpipe_dentry(clnt->cl_dentry,
Stanislav Kinsburskyccdc28f2012-01-11 19:18:09 +0400781 "gssd",
782 clnt, gss_auth->pipe[1]);
783 if (IS_ERR(gss_auth->pipe[1]->dentry))
784 return PTR_ERR(gss_auth->pipe[1]->dentry);
Stanislav Kinsbursky30507f52012-01-11 19:18:42 +0400785 gss_auth->pipe[0]->dentry = rpc_mkpipe_dentry(clnt->cl_dentry,
Stanislav Kinsburskyccdc28f2012-01-11 19:18:09 +0400786 gss_auth->mech->gm_name,
787 clnt, gss_auth->pipe[0]);
788 if (IS_ERR(gss_auth->pipe[0]->dentry)) {
789 err = PTR_ERR(gss_auth->pipe[0]->dentry);
790 goto err_unlink_pipe_1;
791 }
792 return 0;
793
794err_unlink_pipe_1:
795 rpc_unlink(gss_auth->pipe[1]->dentry);
796 return err;
797}
798
799static void gss_pipes_dentries_destroy_net(struct rpc_clnt *clnt,
800 struct rpc_auth *auth)
801{
Trond Myklebust2446ab62012-03-01 17:00:56 -0500802 struct net *net = rpc_net_ns(clnt);
Stanislav Kinsburskyccdc28f2012-01-11 19:18:09 +0400803 struct super_block *sb;
804
805 sb = rpc_get_sb_net(net);
806 if (sb) {
Stanislav Kinsbursky30507f52012-01-11 19:18:42 +0400807 if (clnt->cl_dentry)
Stanislav Kinsburskyccdc28f2012-01-11 19:18:09 +0400808 gss_pipes_dentries_destroy(auth);
809 rpc_put_sb_net(net);
810 }
811}
812
813static int gss_pipes_dentries_create_net(struct rpc_clnt *clnt,
814 struct rpc_auth *auth)
815{
Trond Myklebust2446ab62012-03-01 17:00:56 -0500816 struct net *net = rpc_net_ns(clnt);
Stanislav Kinsburskyccdc28f2012-01-11 19:18:09 +0400817 struct super_block *sb;
818 int err = 0;
819
820 sb = rpc_get_sb_net(net);
821 if (sb) {
Stanislav Kinsbursky30507f52012-01-11 19:18:42 +0400822 if (clnt->cl_dentry)
Stanislav Kinsburskyccdc28f2012-01-11 19:18:09 +0400823 err = gss_pipes_dentries_create(auth);
824 rpc_put_sb_net(net);
825 }
826 return err;
827}
828
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800829/*
830 * NOTE: we have the opportunity to use different
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 * parameters based on the input flavor (which must be a pseudoflavor)
832 */
833static struct rpc_auth *
834gss_create(struct rpc_clnt *clnt, rpc_authflavor_t flavor)
835{
836 struct gss_auth *gss_auth;
837 struct rpc_auth * auth;
J. Bruce Fields6a192752005-06-22 17:16:23 +0000838 int err = -ENOMEM; /* XXX? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
Chuck Lever8885cb32007-01-31 12:14:05 -0500840 dprintk("RPC: creating GSS authenticator for client %p\n", clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
842 if (!try_module_get(THIS_MODULE))
J. Bruce Fields6a192752005-06-22 17:16:23 +0000843 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 if (!(gss_auth = kmalloc(sizeof(*gss_auth), GFP_KERNEL)))
845 goto out_dec;
846 gss_auth->client = clnt;
J. Bruce Fields6a192752005-06-22 17:16:23 +0000847 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 gss_auth->mech = gss_mech_get_by_pseudoflavor(flavor);
849 if (!gss_auth->mech) {
James Morris3392c342007-12-26 11:20:43 +1100850 printk(KERN_WARNING "%s: Pseudoflavor %d not found!\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800851 __func__, flavor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 goto err_free;
853 }
854 gss_auth->service = gss_pseudoflavor_to_service(gss_auth->mech, flavor);
J. Bruce Fields438b6fd2005-06-22 17:16:23 +0000855 if (gss_auth->service == 0)
856 goto err_put_mech;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 auth = &gss_auth->rpc_auth;
858 auth->au_cslack = GSS_CRED_SLACK >> 2;
859 auth->au_rslack = GSS_VERF_SLACK >> 2;
860 auth->au_ops = &authgss_ops;
861 auth->au_flavor = flavor;
862 atomic_set(&auth->au_count, 1);
Trond Myklebust0285ed12007-06-27 14:29:12 -0400863 kref_init(&gss_auth->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500865 /*
866 * Note: if we created the old pipe first, then someone who
867 * examined the directory at the right moment might conclude
868 * that we supported only the old pipe. So we instead create
869 * the new pipe first.
870 */
Stanislav Kinsburskyc239d832011-12-26 15:44:06 +0300871 gss_auth->pipe[1] = rpc_mkpipe_data(&gss_upcall_ops_v1,
872 RPC_PIPE_WAIT_FOR_OPEN);
873 if (IS_ERR(gss_auth->pipe[1])) {
874 err = PTR_ERR(gss_auth->pipe[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 goto err_put_mech;
J. Bruce Fields6a192752005-06-22 17:16:23 +0000876 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Stanislav Kinsburskyc239d832011-12-26 15:44:06 +0300878 gss_auth->pipe[0] = rpc_mkpipe_data(&gss_upcall_ops_v0,
879 RPC_PIPE_WAIT_FOR_OPEN);
880 if (IS_ERR(gss_auth->pipe[0])) {
881 err = PTR_ERR(gss_auth->pipe[0]);
882 goto err_destroy_pipe_1;
883 }
Stanislav Kinsburskyccdc28f2012-01-11 19:18:09 +0400884 err = gss_pipes_dentries_create_net(clnt, auth);
885 if (err)
Stanislav Kinsburskyc239d832011-12-26 15:44:06 +0300886 goto err_destroy_pipe_0;
Trond Myklebustf5c21872007-06-25 17:11:20 -0400887 err = rpcauth_init_credcache(auth);
Trond Myklebust07a2bf12007-06-09 15:42:01 -0400888 if (err)
Stanislav Kinsburskyccdc28f2012-01-11 19:18:09 +0400889 goto err_unlink_pipes;
Trond Myklebust07a2bf12007-06-09 15:42:01 -0400890
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 return auth;
Stanislav Kinsburskyccdc28f2012-01-11 19:18:09 +0400892err_unlink_pipes:
893 gss_pipes_dentries_destroy_net(clnt, auth);
Stanislav Kinsburskyc239d832011-12-26 15:44:06 +0300894err_destroy_pipe_0:
895 rpc_destroy_pipe_data(gss_auth->pipe[0]);
896err_destroy_pipe_1:
897 rpc_destroy_pipe_data(gss_auth->pipe[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898err_put_mech:
899 gss_mech_put(gss_auth->mech);
900err_free:
901 kfree(gss_auth);
902out_dec:
903 module_put(THIS_MODULE);
J. Bruce Fields6a192752005-06-22 17:16:23 +0000904 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905}
906
907static void
Trond Myklebust0285ed12007-06-27 14:29:12 -0400908gss_free(struct gss_auth *gss_auth)
909{
Stanislav Kinsburskyccdc28f2012-01-11 19:18:09 +0400910 gss_pipes_dentries_destroy_net(gss_auth->client, &gss_auth->rpc_auth);
Stanislav Kinsburskyc239d832011-12-26 15:44:06 +0300911 rpc_destroy_pipe_data(gss_auth->pipe[0]);
912 rpc_destroy_pipe_data(gss_auth->pipe[1]);
Trond Myklebust0285ed12007-06-27 14:29:12 -0400913 gss_mech_put(gss_auth->mech);
914
915 kfree(gss_auth);
916 module_put(THIS_MODULE);
917}
918
919static void
920gss_free_callback(struct kref *kref)
921{
922 struct gss_auth *gss_auth = container_of(kref, struct gss_auth, kref);
923
924 gss_free(gss_auth);
925}
926
927static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928gss_destroy(struct rpc_auth *auth)
929{
930 struct gss_auth *gss_auth;
931
Chuck Lever8885cb32007-01-31 12:14:05 -0500932 dprintk("RPC: destroying GSS authenticator %p flavor %d\n",
933 auth, auth->au_flavor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Trond Myklebust3ab9bb72007-06-09 15:41:42 -0400935 rpcauth_destroy_credcache(auth);
936
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 gss_auth = container_of(auth, struct gss_auth, rpc_auth);
Trond Myklebust0285ed12007-06-27 14:29:12 -0400938 kref_put(&gss_auth->kref, gss_free_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939}
940
Trond Myklebust0df7fb72007-06-26 17:04:57 -0400941/*
942 * gss_destroying_context will cause the RPCSEC_GSS to send a NULL RPC call
943 * to the server with the GSS control procedure field set to
944 * RPC_GSS_PROC_DESTROY. This should normally cause the server to release
945 * all RPCSEC_GSS state associated with that context.
946 */
947static int
948gss_destroying_context(struct rpc_cred *cred)
949{
950 struct gss_cred *gss_cred = container_of(cred, struct gss_cred, gc_base);
951 struct gss_auth *gss_auth = container_of(cred->cr_auth, struct gss_auth, rpc_auth);
952 struct rpc_task *task;
953
954 if (gss_cred->gc_ctx == NULL ||
Jeff Layton6dcd3922008-12-23 15:21:57 -0500955 test_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags) == 0)
Trond Myklebust0df7fb72007-06-26 17:04:57 -0400956 return 0;
957
958 gss_cred->gc_ctx->gc_proc = RPC_GSS_PROC_DESTROY;
959 cred->cr_ops = &gss_nullops;
960
961 /* Take a reference to ensure the cred will be destroyed either
962 * by the RPC call or by the put_rpccred() below */
963 get_rpccred(cred);
964
Trond Myklebust080a1f12008-04-19 14:22:31 -0400965 task = rpc_call_null(gss_auth->client, cred, RPC_TASK_ASYNC|RPC_TASK_SOFT);
Trond Myklebust0df7fb72007-06-26 17:04:57 -0400966 if (!IS_ERR(task))
967 rpc_put_task(task);
968
969 put_rpccred(cred);
970 return 1;
971}
972
973/* gss_destroy_cred (and gss_free_ctx) are used to clean up after failure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 * to create a new cred or context, so they check that things have been
975 * allocated before freeing them. */
976static void
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400977gss_do_free_ctx(struct gss_cl_ctx *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978{
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400979 dprintk("RPC: gss_free_ctx\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
Trond Myklebust0d8a3742010-08-01 20:14:55 -0400981 gss_delete_sec_context(&ctx->gc_gss_ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 kfree(ctx->gc_wire_ctx.data);
983 kfree(ctx);
984}
985
986static void
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400987gss_free_ctx_callback(struct rcu_head *head)
988{
989 struct gss_cl_ctx *ctx = container_of(head, struct gss_cl_ctx, gc_rcu);
990 gss_do_free_ctx(ctx);
991}
992
993static void
994gss_free_ctx(struct gss_cl_ctx *ctx)
995{
996 call_rcu(&ctx->gc_rcu, gss_free_ctx_callback);
997}
998
999static void
Trond Myklebust31be5bf2007-06-24 15:55:26 -04001000gss_free_cred(struct gss_cred *gss_cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001{
Trond Myklebust31be5bf2007-06-24 15:55:26 -04001002 dprintk("RPC: gss_free_cred %p\n", gss_cred);
Trond Myklebust31be5bf2007-06-24 15:55:26 -04001003 kfree(gss_cred);
1004}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Trond Myklebust31be5bf2007-06-24 15:55:26 -04001006static void
1007gss_free_cred_callback(struct rcu_head *head)
1008{
1009 struct gss_cred *gss_cred = container_of(head, struct gss_cred, gc_base.cr_rcu);
1010 gss_free_cred(gss_cred);
1011}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
Trond Myklebust31be5bf2007-06-24 15:55:26 -04001013static void
Jeff Layton6dcd3922008-12-23 15:21:57 -05001014gss_destroy_nullcred(struct rpc_cred *cred)
Trond Myklebust31be5bf2007-06-24 15:55:26 -04001015{
Trond Myklebust5d28dc82007-06-26 19:18:38 -04001016 struct gss_cred *gss_cred = container_of(cred, struct gss_cred, gc_base);
Trond Myklebust0285ed12007-06-27 14:29:12 -04001017 struct gss_auth *gss_auth = container_of(cred->cr_auth, struct gss_auth, rpc_auth);
Trond Myklebust5d28dc82007-06-26 19:18:38 -04001018 struct gss_cl_ctx *ctx = gss_cred->gc_ctx;
1019
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00001020 RCU_INIT_POINTER(gss_cred->gc_ctx, NULL);
Trond Myklebust31be5bf2007-06-24 15:55:26 -04001021 call_rcu(&cred->cr_rcu, gss_free_cred_callback);
Trond Myklebust5d28dc82007-06-26 19:18:38 -04001022 if (ctx)
1023 gss_put_ctx(ctx);
Trond Myklebust0285ed12007-06-27 14:29:12 -04001024 kref_put(&gss_auth->kref, gss_free_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025}
1026
Jeff Layton6dcd3922008-12-23 15:21:57 -05001027static void
1028gss_destroy_cred(struct rpc_cred *cred)
1029{
1030
1031 if (gss_destroying_context(cred))
1032 return;
1033 gss_destroy_nullcred(cred);
1034}
1035
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036/*
1037 * Lookup RPCSEC_GSS cred for the current process
1038 */
1039static struct rpc_cred *
Trond Myklebust8a317762006-02-01 12:18:36 -05001040gss_lookup_cred(struct rpc_auth *auth, struct auth_cred *acred, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041{
Trond Myklebust8a317762006-02-01 12:18:36 -05001042 return rpcauth_lookup_credcache(auth, acred, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043}
1044
1045static struct rpc_cred *
Trond Myklebust8a317762006-02-01 12:18:36 -05001046gss_create_cred(struct rpc_auth *auth, struct auth_cred *acred, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047{
1048 struct gss_auth *gss_auth = container_of(auth, struct gss_auth, rpc_auth);
1049 struct gss_cred *cred = NULL;
1050 int err = -ENOMEM;
1051
Chuck Lever8885cb32007-01-31 12:14:05 -05001052 dprintk("RPC: gss_create_cred for uid %d, flavor %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 acred->uid, auth->au_flavor);
1054
Trond Myklebust0f38b872008-06-10 18:31:01 -04001055 if (!(cred = kzalloc(sizeof(*cred), GFP_NOFS)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 goto out_err;
1057
Trond Myklebust5fe47552007-06-23 19:55:31 -04001058 rpcauth_init_cred(&cred->gc_base, acred, auth, &gss_credops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 /*
1060 * Note: in order to force a call to call_refresh(), we deliberately
1061 * fail to flag the credential as RPCAUTH_CRED_UPTODATE.
1062 */
Trond Myklebustfc432dd2007-06-25 10:15:15 -04001063 cred->gc_base.cr_flags = 1UL << RPCAUTH_CRED_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 cred->gc_service = gss_auth->service;
Trond Myklebust68c97152012-01-03 13:22:46 -05001065 cred->gc_principal = NULL;
1066 if (acred->machine_cred)
1067 cred->gc_principal = acred->principal;
Trond Myklebust0285ed12007-06-27 14:29:12 -04001068 kref_get(&gss_auth->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 return &cred->gc_base;
1070
1071out_err:
Chuck Lever8885cb32007-01-31 12:14:05 -05001072 dprintk("RPC: gss_create_cred failed with error %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 return ERR_PTR(err);
1074}
1075
1076static int
Trond Myklebustfba3bad2006-02-01 12:19:27 -05001077gss_cred_init(struct rpc_auth *auth, struct rpc_cred *cred)
1078{
1079 struct gss_auth *gss_auth = container_of(auth, struct gss_auth, rpc_auth);
1080 struct gss_cred *gss_cred = container_of(cred,struct gss_cred, gc_base);
1081 int err;
1082
1083 do {
1084 err = gss_create_upcall(gss_auth, gss_cred);
1085 } while (err == -EAGAIN);
1086 return err;
1087}
1088
1089static int
Trond Myklebust8a317762006-02-01 12:18:36 -05001090gss_match(struct auth_cred *acred, struct rpc_cred *rc, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091{
1092 struct gss_cred *gss_cred = container_of(rc, struct gss_cred, gc_base);
1093
Trond Myklebustcd019f72008-04-17 17:03:58 -04001094 if (test_bit(RPCAUTH_CRED_NEW, &rc->cr_flags))
Trond Myklebust8a317762006-02-01 12:18:36 -05001095 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 /* Don't match with creds that have expired. */
Trond Myklebustcd019f72008-04-17 17:03:58 -04001097 if (time_after(jiffies, gss_cred->gc_ctx->gc_expiry))
1098 return 0;
1099 if (!test_bit(RPCAUTH_CRED_UPTODATE, &rc->cr_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 return 0;
Trond Myklebust8a317762006-02-01 12:18:36 -05001101out:
Trond Myklebust68c97152012-01-03 13:22:46 -05001102 if (acred->principal != NULL) {
1103 if (gss_cred->gc_principal == NULL)
1104 return 0;
1105 return strcmp(acred->principal, gss_cred->gc_principal) == 0;
1106 }
1107 if (gss_cred->gc_principal != NULL)
Trond Myklebust7c67db32008-04-07 20:50:11 -04001108 return 0;
Eric Dumazeta02cec22010-09-22 20:43:57 +00001109 return rc->cr_uid == acred->uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110}
1111
1112/*
1113* Marshal credentials.
1114* Maybe we should keep a cached credential for performance reasons.
1115*/
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001116static __be32 *
1117gss_marshal(struct rpc_task *task, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118{
Trond Myklebusta17c2152010-07-31 14:29:08 -04001119 struct rpc_rqst *req = task->tk_rqstp;
1120 struct rpc_cred *cred = req->rq_cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 struct gss_cred *gss_cred = container_of(cred, struct gss_cred,
1122 gc_base);
1123 struct gss_cl_ctx *ctx = gss_cred_get_ctx(cred);
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001124 __be32 *cred_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 u32 maj_stat = 0;
1126 struct xdr_netobj mic;
1127 struct kvec iov;
1128 struct xdr_buf verf_buf;
1129
Chuck Lever8885cb32007-01-31 12:14:05 -05001130 dprintk("RPC: %5u gss_marshal\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
1132 *p++ = htonl(RPC_AUTH_GSS);
1133 cred_len = p++;
1134
1135 spin_lock(&ctx->gc_seq_lock);
1136 req->rq_seqno = ctx->gc_seq++;
1137 spin_unlock(&ctx->gc_seq_lock);
1138
1139 *p++ = htonl((u32) RPC_GSS_VERSION);
1140 *p++ = htonl((u32) ctx->gc_proc);
1141 *p++ = htonl((u32) req->rq_seqno);
1142 *p++ = htonl((u32) gss_cred->gc_service);
1143 p = xdr_encode_netobj(p, &ctx->gc_wire_ctx);
1144 *cred_len = htonl((p - (cred_len + 1)) << 2);
1145
1146 /* We compute the checksum for the verifier over the xdr-encoded bytes
1147 * starting with the xid and ending at the end of the credential: */
Chuck Lever808012f2005-08-25 16:25:49 -07001148 iov.iov_base = xprt_skip_transport_header(task->tk_xprt,
1149 req->rq_snd_buf.head[0].iov_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 iov.iov_len = (u8 *)p - (u8 *)iov.iov_base;
1151 xdr_buf_from_iov(&iov, &verf_buf);
1152
1153 /* set verifier flavor*/
1154 *p++ = htonl(RPC_AUTH_GSS);
1155
1156 mic.data = (u8 *)(p + 1);
J. Bruce Fields00fd6e12005-10-13 16:55:18 -04001157 maj_stat = gss_get_mic(ctx->gc_gss_ctx, &verf_buf, &mic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 if (maj_stat == GSS_S_CONTEXT_EXPIRED) {
Trond Myklebustfc432dd2007-06-25 10:15:15 -04001159 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 } else if (maj_stat != 0) {
1161 printk("gss_marshal: gss_get_mic FAILED (%d)\n", maj_stat);
1162 goto out_put_ctx;
1163 }
1164 p = xdr_encode_opaque(p, NULL, mic.len);
1165 gss_put_ctx(ctx);
1166 return p;
1167out_put_ctx:
1168 gss_put_ctx(ctx);
1169 return NULL;
1170}
1171
Trond Myklebustcd019f72008-04-17 17:03:58 -04001172static int gss_renew_cred(struct rpc_task *task)
1173{
Trond Myklebusta17c2152010-07-31 14:29:08 -04001174 struct rpc_cred *oldcred = task->tk_rqstp->rq_cred;
Trond Myklebustcd019f72008-04-17 17:03:58 -04001175 struct gss_cred *gss_cred = container_of(oldcred,
1176 struct gss_cred,
1177 gc_base);
1178 struct rpc_auth *auth = oldcred->cr_auth;
1179 struct auth_cred acred = {
1180 .uid = oldcred->cr_uid,
Trond Myklebust68c97152012-01-03 13:22:46 -05001181 .principal = gss_cred->gc_principal,
1182 .machine_cred = (gss_cred->gc_principal != NULL ? 1 : 0),
Trond Myklebustcd019f72008-04-17 17:03:58 -04001183 };
1184 struct rpc_cred *new;
1185
1186 new = gss_lookup_cred(auth, &acred, RPCAUTH_LOOKUP_NEW);
1187 if (IS_ERR(new))
1188 return PTR_ERR(new);
Trond Myklebusta17c2152010-07-31 14:29:08 -04001189 task->tk_rqstp->rq_cred = new;
Trond Myklebustcd019f72008-04-17 17:03:58 -04001190 put_rpccred(oldcred);
1191 return 0;
1192}
1193
Trond Myklebust126e2162010-05-13 12:55:38 -04001194static int gss_cred_is_negative_entry(struct rpc_cred *cred)
1195{
1196 if (test_bit(RPCAUTH_CRED_NEGATIVE, &cred->cr_flags)) {
1197 unsigned long now = jiffies;
1198 unsigned long begin, expire;
1199 struct gss_cred *gss_cred;
1200
1201 gss_cred = container_of(cred, struct gss_cred, gc_base);
1202 begin = gss_cred->gc_upcall_timestamp;
1203 expire = begin + gss_expired_cred_retry_delay * HZ;
1204
1205 if (time_in_range_open(now, begin, expire))
1206 return 1;
1207 }
1208 return 0;
1209}
1210
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211/*
1212* Refresh credentials. XXX - finish
1213*/
1214static int
1215gss_refresh(struct rpc_task *task)
1216{
Trond Myklebusta17c2152010-07-31 14:29:08 -04001217 struct rpc_cred *cred = task->tk_rqstp->rq_cred;
Trond Myklebustcd019f72008-04-17 17:03:58 -04001218 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
Trond Myklebust126e2162010-05-13 12:55:38 -04001220 if (gss_cred_is_negative_entry(cred))
1221 return -EKEYEXPIRED;
1222
Trond Myklebustcd019f72008-04-17 17:03:58 -04001223 if (!test_bit(RPCAUTH_CRED_NEW, &cred->cr_flags) &&
1224 !test_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags)) {
1225 ret = gss_renew_cred(task);
1226 if (ret < 0)
1227 goto out;
Trond Myklebusta17c2152010-07-31 14:29:08 -04001228 cred = task->tk_rqstp->rq_cred;
Trond Myklebustcd019f72008-04-17 17:03:58 -04001229 }
1230
1231 if (test_bit(RPCAUTH_CRED_NEW, &cred->cr_flags))
1232 ret = gss_refresh_upcall(task);
1233out:
1234 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235}
1236
Trond Myklebust0df7fb72007-06-26 17:04:57 -04001237/* Dummy refresh routine: used only when destroying the context */
1238static int
1239gss_refresh_null(struct rpc_task *task)
1240{
1241 return -EACCES;
1242}
1243
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001244static __be32 *
1245gss_validate(struct rpc_task *task, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246{
Trond Myklebusta17c2152010-07-31 14:29:08 -04001247 struct rpc_cred *cred = task->tk_rqstp->rq_cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 struct gss_cl_ctx *ctx = gss_cred_get_ctx(cred);
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001249 __be32 seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 struct kvec iov;
1251 struct xdr_buf verf_buf;
1252 struct xdr_netobj mic;
1253 u32 flav,len;
1254 u32 maj_stat;
1255
Chuck Lever8885cb32007-01-31 12:14:05 -05001256 dprintk("RPC: %5u gss_validate\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
1258 flav = ntohl(*p++);
1259 if ((len = ntohl(*p++)) > RPC_MAX_AUTH_SIZE)
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001260 goto out_bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 if (flav != RPC_AUTH_GSS)
1262 goto out_bad;
1263 seq = htonl(task->tk_rqstp->rq_seqno);
1264 iov.iov_base = &seq;
1265 iov.iov_len = sizeof(seq);
1266 xdr_buf_from_iov(&iov, &verf_buf);
1267 mic.data = (u8 *)p;
1268 mic.len = len;
1269
J. Bruce Fields00fd6e12005-10-13 16:55:18 -04001270 maj_stat = gss_verify_mic(ctx->gc_gss_ctx, &verf_buf, &mic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 if (maj_stat == GSS_S_CONTEXT_EXPIRED)
Trond Myklebustfc432dd2007-06-25 10:15:15 -04001272 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
Trond Myklebust0df7fb72007-06-26 17:04:57 -04001273 if (maj_stat) {
Joe Perches014313a2007-11-19 17:53:43 -08001274 dprintk("RPC: %5u gss_validate: gss_verify_mic returned "
Trond Myklebust0df7fb72007-06-26 17:04:57 -04001275 "error 0x%08x\n", task->tk_pid, maj_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 goto out_bad;
Trond Myklebust0df7fb72007-06-26 17:04:57 -04001277 }
J. Bruce Fields24b26052005-10-13 16:54:53 -04001278 /* We leave it to unwrap to calculate au_rslack. For now we just
1279 * calculate the length of the verifier: */
Trond Myklebust1be27f32007-06-27 14:29:04 -04001280 cred->cr_auth->au_verfsize = XDR_QUADLEN(len) + 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 gss_put_ctx(ctx);
Chuck Lever8885cb32007-01-31 12:14:05 -05001282 dprintk("RPC: %5u gss_validate: gss_verify_mic succeeded.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 task->tk_pid);
1284 return p + XDR_QUADLEN(len);
1285out_bad:
1286 gss_put_ctx(ctx);
Chuck Lever8885cb32007-01-31 12:14:05 -05001287 dprintk("RPC: %5u gss_validate failed.\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 return NULL;
1289}
1290
Chuck Lever9f06c712010-12-14 14:59:18 +00001291static void gss_wrap_req_encode(kxdreproc_t encode, struct rpc_rqst *rqstp,
1292 __be32 *p, void *obj)
1293{
1294 struct xdr_stream xdr;
1295
1296 xdr_init_encode(&xdr, &rqstp->rq_snd_buf, p);
1297 encode(rqstp, &xdr, obj);
1298}
1299
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300static inline int
1301gss_wrap_req_integ(struct rpc_cred *cred, struct gss_cl_ctx *ctx,
Chuck Lever9f06c712010-12-14 14:59:18 +00001302 kxdreproc_t encode, struct rpc_rqst *rqstp,
1303 __be32 *p, void *obj)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304{
1305 struct xdr_buf *snd_buf = &rqstp->rq_snd_buf;
1306 struct xdr_buf integ_buf;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001307 __be32 *integ_len = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 struct xdr_netobj mic;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001309 u32 offset;
1310 __be32 *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 struct kvec *iov;
1312 u32 maj_stat = 0;
1313 int status = -EIO;
1314
1315 integ_len = p++;
1316 offset = (u8 *)p - (u8 *)snd_buf->head[0].iov_base;
1317 *p++ = htonl(rqstp->rq_seqno);
1318
Chuck Lever9f06c712010-12-14 14:59:18 +00001319 gss_wrap_req_encode(encode, rqstp, p, obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
1321 if (xdr_buf_subsegment(snd_buf, &integ_buf,
1322 offset, snd_buf->len - offset))
1323 return status;
1324 *integ_len = htonl(integ_buf.len);
1325
1326 /* guess whether we're in the head or the tail: */
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001327 if (snd_buf->page_len || snd_buf->tail[0].iov_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 iov = snd_buf->tail;
1329 else
1330 iov = snd_buf->head;
1331 p = iov->iov_base + iov->iov_len;
1332 mic.data = (u8 *)(p + 1);
1333
J. Bruce Fields00fd6e12005-10-13 16:55:18 -04001334 maj_stat = gss_get_mic(ctx->gc_gss_ctx, &integ_buf, &mic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 status = -EIO; /* XXX? */
1336 if (maj_stat == GSS_S_CONTEXT_EXPIRED)
Trond Myklebustfc432dd2007-06-25 10:15:15 -04001337 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 else if (maj_stat)
1339 return status;
1340 q = xdr_encode_opaque(p, NULL, mic.len);
1341
1342 offset = (u8 *)q - (u8 *)p;
1343 iov->iov_len += offset;
1344 snd_buf->len += offset;
1345 return 0;
1346}
1347
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001348static void
1349priv_release_snd_buf(struct rpc_rqst *rqstp)
1350{
1351 int i;
1352
1353 for (i=0; i < rqstp->rq_enc_pages_num; i++)
1354 __free_page(rqstp->rq_enc_pages[i]);
1355 kfree(rqstp->rq_enc_pages);
1356}
1357
1358static int
1359alloc_enc_pages(struct rpc_rqst *rqstp)
1360{
1361 struct xdr_buf *snd_buf = &rqstp->rq_snd_buf;
1362 int first, last, i;
1363
1364 if (snd_buf->page_len == 0) {
1365 rqstp->rq_enc_pages_num = 0;
1366 return 0;
1367 }
1368
1369 first = snd_buf->page_base >> PAGE_CACHE_SHIFT;
1370 last = (snd_buf->page_base + snd_buf->page_len - 1) >> PAGE_CACHE_SHIFT;
1371 rqstp->rq_enc_pages_num = last - first + 1 + 1;
1372 rqstp->rq_enc_pages
1373 = kmalloc(rqstp->rq_enc_pages_num * sizeof(struct page *),
1374 GFP_NOFS);
1375 if (!rqstp->rq_enc_pages)
1376 goto out;
1377 for (i=0; i < rqstp->rq_enc_pages_num; i++) {
1378 rqstp->rq_enc_pages[i] = alloc_page(GFP_NOFS);
1379 if (rqstp->rq_enc_pages[i] == NULL)
1380 goto out_free;
1381 }
1382 rqstp->rq_release_snd_buf = priv_release_snd_buf;
1383 return 0;
1384out_free:
Trond Myklebustcdead7c2010-03-19 15:36:22 -04001385 rqstp->rq_enc_pages_num = i;
1386 priv_release_snd_buf(rqstp);
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001387out:
1388 return -EAGAIN;
1389}
1390
1391static inline int
1392gss_wrap_req_priv(struct rpc_cred *cred, struct gss_cl_ctx *ctx,
Chuck Lever9f06c712010-12-14 14:59:18 +00001393 kxdreproc_t encode, struct rpc_rqst *rqstp,
1394 __be32 *p, void *obj)
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001395{
1396 struct xdr_buf *snd_buf = &rqstp->rq_snd_buf;
1397 u32 offset;
1398 u32 maj_stat;
1399 int status;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001400 __be32 *opaque_len;
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001401 struct page **inpages;
1402 int first;
1403 int pad;
1404 struct kvec *iov;
1405 char *tmp;
1406
1407 opaque_len = p++;
1408 offset = (u8 *)p - (u8 *)snd_buf->head[0].iov_base;
1409 *p++ = htonl(rqstp->rq_seqno);
1410
Chuck Lever9f06c712010-12-14 14:59:18 +00001411 gss_wrap_req_encode(encode, rqstp, p, obj);
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001412
1413 status = alloc_enc_pages(rqstp);
1414 if (status)
1415 return status;
1416 first = snd_buf->page_base >> PAGE_CACHE_SHIFT;
1417 inpages = snd_buf->pages + first;
1418 snd_buf->pages = rqstp->rq_enc_pages;
1419 snd_buf->page_base -= first << PAGE_CACHE_SHIFT;
Kevin Coffman75610422010-03-17 13:02:47 -04001420 /*
1421 * Give the tail its own page, in case we need extra space in the
1422 * head when wrapping:
1423 *
1424 * call_allocate() allocates twice the slack space required
1425 * by the authentication flavor to rq_callsize.
1426 * For GSS, slack is GSS_CRED_SLACK.
1427 */
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001428 if (snd_buf->page_len || snd_buf->tail[0].iov_len) {
1429 tmp = page_address(rqstp->rq_enc_pages[rqstp->rq_enc_pages_num - 1]);
1430 memcpy(tmp, snd_buf->tail[0].iov_base, snd_buf->tail[0].iov_len);
1431 snd_buf->tail[0].iov_base = tmp;
1432 }
J. Bruce Fields00fd6e12005-10-13 16:55:18 -04001433 maj_stat = gss_wrap(ctx->gc_gss_ctx, offset, snd_buf, inpages);
Kevin Coffman75610422010-03-17 13:02:47 -04001434 /* slack space should prevent this ever happening: */
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001435 BUG_ON(snd_buf->len > snd_buf->buflen);
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001436 status = -EIO;
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001437 /* We're assuming that when GSS_S_CONTEXT_EXPIRED, the encryption was
1438 * done anyway, so it's safe to put the request on the wire: */
1439 if (maj_stat == GSS_S_CONTEXT_EXPIRED)
Trond Myklebustfc432dd2007-06-25 10:15:15 -04001440 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001441 else if (maj_stat)
1442 return status;
1443
1444 *opaque_len = htonl(snd_buf->len - offset);
1445 /* guess whether we're in the head or the tail: */
1446 if (snd_buf->page_len || snd_buf->tail[0].iov_len)
1447 iov = snd_buf->tail;
1448 else
1449 iov = snd_buf->head;
1450 p = iov->iov_base + iov->iov_len;
1451 pad = 3 - ((snd_buf->len - offset - 1) & 3);
1452 memset(p, 0, pad);
1453 iov->iov_len += pad;
1454 snd_buf->len += pad;
1455
1456 return 0;
1457}
1458
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459static int
1460gss_wrap_req(struct rpc_task *task,
Chuck Lever9f06c712010-12-14 14:59:18 +00001461 kxdreproc_t encode, void *rqstp, __be32 *p, void *obj)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462{
Trond Myklebusta17c2152010-07-31 14:29:08 -04001463 struct rpc_cred *cred = task->tk_rqstp->rq_cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 struct gss_cred *gss_cred = container_of(cred, struct gss_cred,
1465 gc_base);
1466 struct gss_cl_ctx *ctx = gss_cred_get_ctx(cred);
1467 int status = -EIO;
1468
Chuck Lever8885cb32007-01-31 12:14:05 -05001469 dprintk("RPC: %5u gss_wrap_req\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 if (ctx->gc_proc != RPC_GSS_PROC_DATA) {
1471 /* The spec seems a little ambiguous here, but I think that not
1472 * wrapping context destruction requests makes the most sense.
1473 */
Chuck Lever9f06c712010-12-14 14:59:18 +00001474 gss_wrap_req_encode(encode, rqstp, p, obj);
1475 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 goto out;
1477 }
1478 switch (gss_cred->gc_service) {
Joe Perches89f0e4f2011-07-01 09:43:12 +00001479 case RPC_GSS_SVC_NONE:
1480 gss_wrap_req_encode(encode, rqstp, p, obj);
1481 status = 0;
1482 break;
1483 case RPC_GSS_SVC_INTEGRITY:
1484 status = gss_wrap_req_integ(cred, ctx, encode, rqstp, p, obj);
1485 break;
1486 case RPC_GSS_SVC_PRIVACY:
1487 status = gss_wrap_req_priv(cred, ctx, encode, rqstp, p, obj);
1488 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 }
1490out:
1491 gss_put_ctx(ctx);
Chuck Lever8885cb32007-01-31 12:14:05 -05001492 dprintk("RPC: %5u gss_wrap_req returning %d\n", task->tk_pid, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 return status;
1494}
1495
1496static inline int
1497gss_unwrap_resp_integ(struct rpc_cred *cred, struct gss_cl_ctx *ctx,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001498 struct rpc_rqst *rqstp, __be32 **p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499{
1500 struct xdr_buf *rcv_buf = &rqstp->rq_rcv_buf;
1501 struct xdr_buf integ_buf;
1502 struct xdr_netobj mic;
1503 u32 data_offset, mic_offset;
1504 u32 integ_len;
1505 u32 maj_stat;
1506 int status = -EIO;
1507
1508 integ_len = ntohl(*(*p)++);
1509 if (integ_len & 3)
1510 return status;
1511 data_offset = (u8 *)(*p) - (u8 *)rcv_buf->head[0].iov_base;
1512 mic_offset = integ_len + data_offset;
1513 if (mic_offset > rcv_buf->len)
1514 return status;
1515 if (ntohl(*(*p)++) != rqstp->rq_seqno)
1516 return status;
1517
1518 if (xdr_buf_subsegment(rcv_buf, &integ_buf, data_offset,
1519 mic_offset - data_offset))
1520 return status;
1521
1522 if (xdr_buf_read_netobj(rcv_buf, &mic, mic_offset))
1523 return status;
1524
J. Bruce Fields00fd6e12005-10-13 16:55:18 -04001525 maj_stat = gss_verify_mic(ctx->gc_gss_ctx, &integ_buf, &mic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 if (maj_stat == GSS_S_CONTEXT_EXPIRED)
Trond Myklebustfc432dd2007-06-25 10:15:15 -04001527 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 if (maj_stat != GSS_S_COMPLETE)
1529 return status;
1530 return 0;
1531}
1532
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001533static inline int
1534gss_unwrap_resp_priv(struct rpc_cred *cred, struct gss_cl_ctx *ctx,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001535 struct rpc_rqst *rqstp, __be32 **p)
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001536{
1537 struct xdr_buf *rcv_buf = &rqstp->rq_rcv_buf;
1538 u32 offset;
1539 u32 opaque_len;
1540 u32 maj_stat;
1541 int status = -EIO;
1542
1543 opaque_len = ntohl(*(*p)++);
1544 offset = (u8 *)(*p) - (u8 *)rcv_buf->head[0].iov_base;
1545 if (offset + opaque_len > rcv_buf->len)
1546 return status;
1547 /* remove padding: */
1548 rcv_buf->len = offset + opaque_len;
1549
J. Bruce Fields00fd6e12005-10-13 16:55:18 -04001550 maj_stat = gss_unwrap(ctx->gc_gss_ctx, offset, rcv_buf);
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001551 if (maj_stat == GSS_S_CONTEXT_EXPIRED)
Trond Myklebustfc432dd2007-06-25 10:15:15 -04001552 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001553 if (maj_stat != GSS_S_COMPLETE)
1554 return status;
1555 if (ntohl(*(*p)++) != rqstp->rq_seqno)
1556 return status;
1557
1558 return 0;
1559}
1560
Chuck Leverbf269552010-12-14 14:59:29 +00001561static int
1562gss_unwrap_req_decode(kxdrdproc_t decode, struct rpc_rqst *rqstp,
1563 __be32 *p, void *obj)
1564{
1565 struct xdr_stream xdr;
1566
1567 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
1568 return decode(rqstp, &xdr, obj);
1569}
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001570
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571static int
1572gss_unwrap_resp(struct rpc_task *task,
Chuck Leverbf269552010-12-14 14:59:29 +00001573 kxdrdproc_t decode, void *rqstp, __be32 *p, void *obj)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574{
Trond Myklebusta17c2152010-07-31 14:29:08 -04001575 struct rpc_cred *cred = task->tk_rqstp->rq_cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 struct gss_cred *gss_cred = container_of(cred, struct gss_cred,
1577 gc_base);
1578 struct gss_cl_ctx *ctx = gss_cred_get_ctx(cred);
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001579 __be32 *savedp = p;
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001580 struct kvec *head = ((struct rpc_rqst *)rqstp)->rq_rcv_buf.head;
1581 int savedlen = head->iov_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 int status = -EIO;
1583
1584 if (ctx->gc_proc != RPC_GSS_PROC_DATA)
1585 goto out_decode;
1586 switch (gss_cred->gc_service) {
Joe Perches89f0e4f2011-07-01 09:43:12 +00001587 case RPC_GSS_SVC_NONE:
1588 break;
1589 case RPC_GSS_SVC_INTEGRITY:
1590 status = gss_unwrap_resp_integ(cred, ctx, rqstp, &p);
1591 if (status)
1592 goto out;
1593 break;
1594 case RPC_GSS_SVC_PRIVACY:
1595 status = gss_unwrap_resp_priv(cred, ctx, rqstp, &p);
1596 if (status)
1597 goto out;
1598 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 }
J. Bruce Fields24b26052005-10-13 16:54:53 -04001600 /* take into account extra slack for integrity and privacy cases: */
Trond Myklebust1be27f32007-06-27 14:29:04 -04001601 cred->cr_auth->au_rslack = cred->cr_auth->au_verfsize + (p - savedp)
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001602 + (savedlen - head->iov_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603out_decode:
Chuck Leverbf269552010-12-14 14:59:29 +00001604 status = gss_unwrap_req_decode(decode, rqstp, p, obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605out:
1606 gss_put_ctx(ctx);
Chuck Lever8885cb32007-01-31 12:14:05 -05001607 dprintk("RPC: %5u gss_unwrap_resp returning %d\n", task->tk_pid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 status);
1609 return status;
1610}
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001611
Trond Myklebustf1c0a862007-06-23 20:17:58 -04001612static const struct rpc_authops authgss_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 .owner = THIS_MODULE,
1614 .au_flavor = RPC_AUTH_GSS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 .au_name = "RPCSEC_GSS",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 .create = gss_create,
1617 .destroy = gss_destroy,
1618 .lookup_cred = gss_lookup_cred,
Stanislav Kinsbursky80df9d22012-01-11 19:18:17 +04001619 .crcreate = gss_create_cred,
1620 .pipes_create = gss_pipes_dentries_create,
1621 .pipes_destroy = gss_pipes_dentries_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622};
1623
Trond Myklebustf1c0a862007-06-23 20:17:58 -04001624static const struct rpc_credops gss_credops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 .cr_name = "AUTH_GSS",
1626 .crdestroy = gss_destroy_cred,
Trond Myklebustfba3bad2006-02-01 12:19:27 -05001627 .cr_init = gss_cred_init,
Trond Myklebust5c691042008-03-12 16:21:07 -04001628 .crbind = rpcauth_generic_bind_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 .crmatch = gss_match,
1630 .crmarshal = gss_marshal,
1631 .crrefresh = gss_refresh,
1632 .crvalidate = gss_validate,
1633 .crwrap_req = gss_wrap_req,
1634 .crunwrap_resp = gss_unwrap_resp,
1635};
1636
Trond Myklebust0df7fb72007-06-26 17:04:57 -04001637static const struct rpc_credops gss_nullops = {
1638 .cr_name = "AUTH_GSS",
Jeff Layton6dcd3922008-12-23 15:21:57 -05001639 .crdestroy = gss_destroy_nullcred,
Trond Myklebust5c691042008-03-12 16:21:07 -04001640 .crbind = rpcauth_generic_bind_cred,
Trond Myklebust0df7fb72007-06-26 17:04:57 -04001641 .crmatch = gss_match,
1642 .crmarshal = gss_marshal,
1643 .crrefresh = gss_refresh_null,
1644 .crvalidate = gss_validate,
1645 .crwrap_req = gss_wrap_req,
1646 .crunwrap_resp = gss_unwrap_resp,
1647};
1648
Trond Myklebustb693ba42009-08-09 15:14:15 -04001649static const struct rpc_pipe_ops gss_upcall_ops_v0 = {
Peng Taoc1225152011-09-22 21:50:10 -04001650 .upcall = rpc_pipe_generic_upcall,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 .downcall = gss_pipe_downcall,
1652 .destroy_msg = gss_pipe_destroy_msg,
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -05001653 .open_pipe = gss_pipe_open_v0,
1654 .release_pipe = gss_pipe_release,
1655};
1656
Trond Myklebustb693ba42009-08-09 15:14:15 -04001657static const struct rpc_pipe_ops gss_upcall_ops_v1 = {
Peng Taoc1225152011-09-22 21:50:10 -04001658 .upcall = rpc_pipe_generic_upcall,
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -05001659 .downcall = gss_pipe_downcall,
1660 .destroy_msg = gss_pipe_destroy_msg,
1661 .open_pipe = gss_pipe_open_v1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 .release_pipe = gss_pipe_release,
1663};
1664
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +04001665static __net_init int rpcsec_gss_init_net(struct net *net)
1666{
1667 return gss_svc_init_net(net);
1668}
1669
1670static __net_exit void rpcsec_gss_exit_net(struct net *net)
1671{
1672 gss_svc_shutdown_net(net);
1673}
1674
1675static struct pernet_operations rpcsec_gss_net_ops = {
1676 .init = rpcsec_gss_init_net,
1677 .exit = rpcsec_gss_exit_net,
1678};
1679
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680/*
1681 * Initialize RPCSEC_GSS module
1682 */
1683static int __init init_rpcsec_gss(void)
1684{
1685 int err = 0;
1686
1687 err = rpcauth_register(&authgss_ops);
1688 if (err)
1689 goto out;
1690 err = gss_svc_init();
1691 if (err)
1692 goto out_unregister;
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +04001693 err = register_pernet_subsys(&rpcsec_gss_net_ops);
1694 if (err)
1695 goto out_svc_exit;
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -05001696 rpc_init_wait_queue(&pipe_version_rpc_waitqueue, "gss pipe version");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 return 0;
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +04001698out_svc_exit:
1699 gss_svc_shutdown();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700out_unregister:
1701 rpcauth_unregister(&authgss_ops);
1702out:
1703 return err;
1704}
1705
1706static void __exit exit_rpcsec_gss(void)
1707{
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +04001708 unregister_pernet_subsys(&rpcsec_gss_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 gss_svc_shutdown();
1710 rpcauth_unregister(&authgss_ops);
Jesper Dangaard Brouerbf126912009-06-08 03:11:48 +00001711 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712}
1713
1714MODULE_LICENSE("GPL");
Trond Myklebust126e2162010-05-13 12:55:38 -04001715module_param_named(expired_cred_retry_delay,
1716 gss_expired_cred_retry_delay,
1717 uint, 0644);
1718MODULE_PARM_DESC(expired_cred_retry_delay, "Timeout (in seconds) until "
1719 "the RPC engine retries an expired credential");
1720
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721module_init(init_rpcsec_gss)
1722module_exit(exit_rpcsec_gss)