blob: afbbcfb1078b35a6b33ec010aba7a42e5ef70438 [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;
Andy Adamson620038f2012-11-27 10:34:20 -0500195 unsigned long now = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 u32 window_size;
197 int ret;
198
Andy Adamson620038f2012-11-27 10:34:20 -0500199 /* First unsigned int gives the remaining lifetime in seconds of the
200 * credential - e.g. the remaining TGT lifetime for Kerberos or
201 * the -t value passed to GSSD.
202 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 p = simple_get_bytes(p, end, &timeout, sizeof(timeout));
204 if (IS_ERR(p))
205 goto err;
206 if (timeout == 0)
207 timeout = GSSD_MIN_TIMEOUT;
Andy Adamson620038f2012-11-27 10:34:20 -0500208 ctx->gc_expiry = now + ((unsigned long)timeout * HZ);
209 /* Sequence number window. Determines the maximum number of
210 * simultaneous requests
211 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 p = simple_get_bytes(p, end, &window_size, sizeof(window_size));
213 if (IS_ERR(p))
214 goto err;
215 ctx->gc_win = window_size;
216 /* gssd signals an error by passing ctx->gc_win = 0: */
217 if (ctx->gc_win == 0) {
Jeff Laytondc5ddce2010-01-07 09:42:02 -0500218 /*
219 * in which case, p points to an error code. Anything other
220 * than -EKEYEXPIRED gets converted to -EACCES.
221 */
222 p = simple_get_bytes(p, end, &ret, sizeof(ret));
223 if (!IS_ERR(p))
224 p = (ret == -EKEYEXPIRED) ? ERR_PTR(-EKEYEXPIRED) :
225 ERR_PTR(-EACCES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 goto err;
227 }
228 /* copy the opaque wire context */
229 p = simple_get_netobj(p, end, &ctx->gc_wire_ctx);
230 if (IS_ERR(p))
231 goto err;
232 /* import the opaque security context */
233 p = simple_get_bytes(p, end, &seclen, sizeof(seclen));
234 if (IS_ERR(p))
235 goto err;
236 q = (const void *)((const char *)p + seclen);
237 if (unlikely(q > end || q < p)) {
238 p = ERR_PTR(-EFAULT);
239 goto err;
240 }
Trond Myklebust1f4c86c2010-05-13 12:51:02 -0400241 ret = gss_import_sec_context(p, seclen, gm, &ctx->gc_gss_ctx, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 if (ret < 0) {
243 p = ERR_PTR(ret);
244 goto err;
245 }
Andy Adamson620038f2012-11-27 10:34:20 -0500246 dprintk("RPC: %s Success. gc_expiry %lu now %lu timeout %u\n",
247 __func__, ctx->gc_expiry, now, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 return q;
249err:
Andy Adamson620038f2012-11-27 10:34:20 -0500250 dprintk("RPC: %s returns %ld gc_expiry %lu now %lu timeout %u\n",
251 __func__, -PTR_ERR(p), ctx->gc_expiry, now, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 return p;
253}
254
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500255#define UPCALL_BUF_LEN 128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
257struct gss_upcall_msg {
258 atomic_t count;
Eric W. Biederman7eaf0402013-02-01 16:31:17 -0800259 kuid_t uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 struct rpc_pipe_msg msg;
261 struct list_head list;
262 struct gss_auth *auth;
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300263 struct rpc_pipe *pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 struct rpc_wait_queue rpc_waitqueue;
265 wait_queue_head_t waitqueue;
266 struct gss_cl_ctx *ctx;
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500267 char databuf[UPCALL_BUF_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268};
269
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500270static int get_pipe_version(void)
271{
272 int ret;
273
274 spin_lock(&pipe_version_lock);
275 if (pipe_version >= 0) {
276 atomic_inc(&pipe_users);
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500277 ret = pipe_version;
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500278 } else
279 ret = -EAGAIN;
280 spin_unlock(&pipe_version_lock);
281 return ret;
282}
283
284static void put_pipe_version(void)
285{
286 if (atomic_dec_and_lock(&pipe_users, &pipe_version_lock)) {
287 pipe_version = -1;
288 spin_unlock(&pipe_version_lock);
289 }
290}
291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292static void
293gss_release_msg(struct gss_upcall_msg *gss_msg)
294{
295 if (!atomic_dec_and_test(&gss_msg->count))
296 return;
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500297 put_pipe_version();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 BUG_ON(!list_empty(&gss_msg->list));
299 if (gss_msg->ctx != NULL)
300 gss_put_ctx(gss_msg->ctx);
Trond Myklebustf6a1cc82008-02-22 17:06:55 -0500301 rpc_destroy_wait_queue(&gss_msg->rpc_waitqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 kfree(gss_msg);
303}
304
305static struct gss_upcall_msg *
Eric W. Biederman7eaf0402013-02-01 16:31:17 -0800306__gss_find_upcall(struct rpc_pipe *pipe, kuid_t uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
308 struct gss_upcall_msg *pos;
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300309 list_for_each_entry(pos, &pipe->in_downcall, list) {
Eric W. Biederman0b4d51b2013-02-01 16:39:32 -0800310 if (!uid_eq(pos->uid, uid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 continue;
312 atomic_inc(&pos->count);
Chuck Lever632f0d02012-09-14 17:23:43 -0400313 dprintk("RPC: %s found msg %p\n", __func__, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 return pos;
315 }
Chuck Lever632f0d02012-09-14 17:23:43 -0400316 dprintk("RPC: %s found nothing\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 return NULL;
318}
319
\\\"J. Bruce Fields\\\720b8f22008-06-09 16:51:33 -0400320/* Try to add an upcall to the pipefs queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 * If an upcall owned by our uid already exists, then we return a reference
322 * to that upcall instead of adding the new upcall.
323 */
324static inline struct gss_upcall_msg *
Suresh Jayaraman053e3242009-12-09 23:15:22 +0530325gss_add_msg(struct gss_upcall_msg *gss_msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300327 struct rpc_pipe *pipe = gss_msg->pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 struct gss_upcall_msg *old;
329
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300330 spin_lock(&pipe->lock);
331 old = __gss_find_upcall(pipe, gss_msg->uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 if (old == NULL) {
333 atomic_inc(&gss_msg->count);
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300334 list_add(&gss_msg->list, &pipe->in_downcall);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 } else
336 gss_msg = old;
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300337 spin_unlock(&pipe->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 return gss_msg;
339}
340
341static void
342__gss_unhash_msg(struct gss_upcall_msg *gss_msg)
343{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 list_del_init(&gss_msg->list);
345 rpc_wake_up_status(&gss_msg->rpc_waitqueue, gss_msg->msg.errno);
346 wake_up_all(&gss_msg->waitqueue);
347 atomic_dec(&gss_msg->count);
348}
349
350static void
351gss_unhash_msg(struct gss_upcall_msg *gss_msg)
352{
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300353 struct rpc_pipe *pipe = gss_msg->pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400355 if (list_empty(&gss_msg->list))
356 return;
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300357 spin_lock(&pipe->lock);
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400358 if (!list_empty(&gss_msg->list))
359 __gss_unhash_msg(gss_msg);
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300360 spin_unlock(&pipe->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361}
362
363static void
Trond Myklebust126e2162010-05-13 12:55:38 -0400364gss_handle_downcall_result(struct gss_cred *gss_cred, struct gss_upcall_msg *gss_msg)
365{
366 switch (gss_msg->msg.errno) {
367 case 0:
368 if (gss_msg->ctx == NULL)
369 break;
370 clear_bit(RPCAUTH_CRED_NEGATIVE, &gss_cred->gc_base.cr_flags);
371 gss_cred_set_ctx(&gss_cred->gc_base, gss_msg->ctx);
372 break;
373 case -EKEYEXPIRED:
374 set_bit(RPCAUTH_CRED_NEGATIVE, &gss_cred->gc_base.cr_flags);
375 }
376 gss_cred->gc_upcall_timestamp = jiffies;
377 gss_cred->gc_upcall = NULL;
378 rpc_wake_up_status(&gss_msg->rpc_waitqueue, gss_msg->msg.errno);
379}
380
381static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382gss_upcall_callback(struct rpc_task *task)
383{
Trond Myklebusta17c2152010-07-31 14:29:08 -0400384 struct gss_cred *gss_cred = container_of(task->tk_rqstp->rq_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 struct gss_cred, gc_base);
386 struct gss_upcall_msg *gss_msg = gss_cred->gc_upcall;
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300387 struct rpc_pipe *pipe = gss_msg->pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300389 spin_lock(&pipe->lock);
Trond Myklebust126e2162010-05-13 12:55:38 -0400390 gss_handle_downcall_result(gss_cred, gss_msg);
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300391 spin_unlock(&pipe->lock);
Trond Myklebust126e2162010-05-13 12:55:38 -0400392 task->tk_status = gss_msg->msg.errno;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 gss_release_msg(gss_msg);
394}
395
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500396static void gss_encode_v0_msg(struct gss_upcall_msg *gss_msg)
397{
398 gss_msg->msg.data = &gss_msg->uid;
399 gss_msg->msg.len = sizeof(gss_msg->uid);
400}
401
Olga Kornievskaia8b1c7bf2008-12-23 16:19:26 -0500402static void gss_encode_v1_msg(struct gss_upcall_msg *gss_msg,
Trond Myklebust68c97152012-01-03 13:22:46 -0500403 struct rpc_clnt *clnt,
404 const char *service_name)
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500405{
Trond Myklebust683ac662010-04-08 14:09:58 -0400406 struct gss_api_mech *mech = gss_msg->auth->mech;
Olga Kornievskaia8b1c7bf2008-12-23 16:19:26 -0500407 char *p = gss_msg->databuf;
408 int len = 0;
409
410 gss_msg->msg.len = sprintf(gss_msg->databuf, "mech=%s uid=%d ",
Trond Myklebust683ac662010-04-08 14:09:58 -0400411 mech->gm_name,
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500412 gss_msg->uid);
Olga Kornievskaia8b1c7bf2008-12-23 16:19:26 -0500413 p += gss_msg->msg.len;
414 if (clnt->cl_principal) {
415 len = sprintf(p, "target=%s ", clnt->cl_principal);
416 p += len;
417 gss_msg->msg.len += len;
418 }
Trond Myklebust68c97152012-01-03 13:22:46 -0500419 if (service_name != NULL) {
420 len = sprintf(p, "service=%s ", service_name);
Olga Kornievskaia2efef702008-12-23 16:19:56 -0500421 p += len;
422 gss_msg->msg.len += len;
423 }
Trond Myklebust683ac662010-04-08 14:09:58 -0400424 if (mech->gm_upcall_enctypes) {
Kevin Coffmanf8628222011-03-03 00:51:41 +0000425 len = sprintf(p, "enctypes=%s ", mech->gm_upcall_enctypes);
Trond Myklebust683ac662010-04-08 14:09:58 -0400426 p += len;
427 gss_msg->msg.len += len;
428 }
Olga Kornievskaia8b1c7bf2008-12-23 16:19:26 -0500429 len = sprintf(p, "\n");
430 gss_msg->msg.len += len;
431
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500432 gss_msg->msg.data = gss_msg->databuf;
433 BUG_ON(gss_msg->msg.len > UPCALL_BUF_LEN);
434}
435
Olga Kornievskaia8b1c7bf2008-12-23 16:19:26 -0500436static void gss_encode_msg(struct gss_upcall_msg *gss_msg,
Trond Myklebust68c97152012-01-03 13:22:46 -0500437 struct rpc_clnt *clnt,
438 const char *service_name)
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500439{
440 if (pipe_version == 0)
441 gss_encode_v0_msg(gss_msg);
442 else /* pipe_version == 1 */
Trond Myklebust68c97152012-01-03 13:22:46 -0500443 gss_encode_v1_msg(gss_msg, clnt, service_name);
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500444}
445
Trond Myklebust68c97152012-01-03 13:22:46 -0500446static struct gss_upcall_msg *
447gss_alloc_msg(struct gss_auth *gss_auth, struct rpc_clnt *clnt,
Eric W. Biederman7eaf0402013-02-01 16:31:17 -0800448 kuid_t uid, const char *service_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449{
450 struct gss_upcall_msg *gss_msg;
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500451 int vers;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Trond Myklebust0f38b872008-06-10 18:31:01 -0400453 gss_msg = kzalloc(sizeof(*gss_msg), GFP_NOFS);
\"J. Bruce Fields\db75b3d2008-12-23 16:07:13 -0500454 if (gss_msg == NULL)
455 return ERR_PTR(-ENOMEM);
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500456 vers = get_pipe_version();
457 if (vers < 0) {
458 kfree(gss_msg);
459 return ERR_PTR(vers);
460 }
Stanislav Kinsburskyc239d832011-12-26 15:44:06 +0300461 gss_msg->pipe = gss_auth->pipe[vers];
\"J. Bruce Fields\db75b3d2008-12-23 16:07:13 -0500462 INIT_LIST_HEAD(&gss_msg->list);
463 rpc_init_wait_queue(&gss_msg->rpc_waitqueue, "RPCSEC_GSS upcall waitq");
464 init_waitqueue_head(&gss_msg->waitqueue);
465 atomic_set(&gss_msg->count, 1);
\"J. Bruce Fields\db75b3d2008-12-23 16:07:13 -0500466 gss_msg->uid = uid;
467 gss_msg->auth = gss_auth;
Trond Myklebust68c97152012-01-03 13:22:46 -0500468 gss_encode_msg(gss_msg, clnt, service_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 return gss_msg;
470}
471
472static struct gss_upcall_msg *
473gss_setup_upcall(struct rpc_clnt *clnt, struct gss_auth *gss_auth, struct rpc_cred *cred)
474{
Trond Myklebust7c67db32008-04-07 20:50:11 -0400475 struct gss_cred *gss_cred = container_of(cred,
476 struct gss_cred, gc_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 struct gss_upcall_msg *gss_new, *gss_msg;
Eric W. Biederman7eaf0402013-02-01 16:31:17 -0800478 kuid_t uid = cred->cr_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Trond Myklebust68c97152012-01-03 13:22:46 -0500480 gss_new = gss_alloc_msg(gss_auth, clnt, uid, gss_cred->gc_principal);
\"J. Bruce Fields\db75b3d2008-12-23 16:07:13 -0500481 if (IS_ERR(gss_new))
482 return gss_new;
Suresh Jayaraman053e3242009-12-09 23:15:22 +0530483 gss_msg = gss_add_msg(gss_new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 if (gss_msg == gss_new) {
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300485 int res = rpc_queue_upcall(gss_new->pipe, &gss_new->msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 if (res) {
487 gss_unhash_msg(gss_new);
488 gss_msg = ERR_PTR(res);
489 }
490 } else
491 gss_release_msg(gss_new);
492 return gss_msg;
493}
494
\"J. Bruce Fields\b03568c2008-12-23 16:06:55 -0500495static void warn_gssd(void)
496{
497 static unsigned long ratelimit;
498 unsigned long now = jiffies;
499
500 if (time_after(now, ratelimit)) {
501 printk(KERN_WARNING "RPC: AUTH_GSS upcall timed out.\n"
502 "Please check user daemon is running.\n");
503 ratelimit = now + 15*HZ;
504 }
505}
506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507static inline int
508gss_refresh_upcall(struct rpc_task *task)
509{
Trond Myklebusta17c2152010-07-31 14:29:08 -0400510 struct rpc_cred *cred = task->tk_rqstp->rq_cred;
Trond Myklebust4a8c1342007-06-07 10:14:14 -0400511 struct gss_auth *gss_auth = container_of(cred->cr_auth,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 struct gss_auth, rpc_auth);
513 struct gss_cred *gss_cred = container_of(cred,
514 struct gss_cred, gc_base);
515 struct gss_upcall_msg *gss_msg;
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300516 struct rpc_pipe *pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 int err = 0;
518
Chuck Lever632f0d02012-09-14 17:23:43 -0400519 dprintk("RPC: %5u %s for uid %u\n",
Eric W. Biedermancdba3212013-02-01 17:10:52 -0800520 task->tk_pid, __func__, from_kuid(&init_user_ns, cred->cr_uid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 gss_msg = gss_setup_upcall(task->tk_client, gss_auth, cred);
Roel Kluin480e3242009-12-08 13:13:03 -0500522 if (PTR_ERR(gss_msg) == -EAGAIN) {
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500523 /* XXX: warning on the first, under the assumption we
524 * shouldn't normally hit this case on a refresh. */
525 warn_gssd();
526 task->tk_timeout = 15*HZ;
527 rpc_sleep_on(&pipe_version_rpc_waitqueue, task, NULL);
Bryan Schumakerd1a80162011-04-13 14:31:28 -0400528 return -EAGAIN;
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500529 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 if (IS_ERR(gss_msg)) {
531 err = PTR_ERR(gss_msg);
532 goto out;
533 }
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300534 pipe = gss_msg->pipe;
535 spin_lock(&pipe->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 if (gss_cred->gc_upcall != NULL)
Trond Myklebust5d008372008-02-22 16:34:17 -0500537 rpc_sleep_on(&gss_cred->gc_upcall->rpc_waitqueue, task, NULL);
Trond Myklebust126e2162010-05-13 12:55:38 -0400538 else if (gss_msg->ctx == NULL && gss_msg->msg.errno >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 task->tk_timeout = 0;
540 gss_cred->gc_upcall = gss_msg;
541 /* gss_upcall_callback will release the reference to gss_upcall_msg */
542 atomic_inc(&gss_msg->count);
Trond Myklebust5d008372008-02-22 16:34:17 -0500543 rpc_sleep_on(&gss_msg->rpc_waitqueue, task, gss_upcall_callback);
Trond Myklebust126e2162010-05-13 12:55:38 -0400544 } else {
545 gss_handle_downcall_result(gss_cred, gss_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 err = gss_msg->msg.errno;
Trond Myklebust126e2162010-05-13 12:55:38 -0400547 }
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300548 spin_unlock(&pipe->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 gss_release_msg(gss_msg);
550out:
Chuck Lever632f0d02012-09-14 17:23:43 -0400551 dprintk("RPC: %5u %s for uid %u result %d\n",
Eric W. Biedermancdba3212013-02-01 17:10:52 -0800552 task->tk_pid, __func__,
553 from_kuid(&init_user_ns, cred->cr_uid), err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 return err;
555}
556
557static inline int
558gss_create_upcall(struct gss_auth *gss_auth, struct gss_cred *gss_cred)
559{
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300560 struct rpc_pipe *pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 struct rpc_cred *cred = &gss_cred->gc_base;
562 struct gss_upcall_msg *gss_msg;
563 DEFINE_WAIT(wait);
564 int err = 0;
565
Eric W. Biedermancdba3212013-02-01 17:10:52 -0800566 dprintk("RPC: %s for uid %u\n",
567 __func__, from_kuid(&init_user_ns, cred->cr_uid));
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500568retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 gss_msg = gss_setup_upcall(gss_auth->client, gss_auth, cred);
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500570 if (PTR_ERR(gss_msg) == -EAGAIN) {
571 err = wait_event_interruptible_timeout(pipe_version_waitqueue,
572 pipe_version >= 0, 15*HZ);
Bryan Schumakerd1a80162011-04-13 14:31:28 -0400573 if (pipe_version < 0) {
574 warn_gssd();
575 err = -EACCES;
576 }
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500577 if (err)
578 goto out;
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500579 goto retry;
580 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 if (IS_ERR(gss_msg)) {
582 err = PTR_ERR(gss_msg);
583 goto out;
584 }
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300585 pipe = gss_msg->pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 for (;;) {
Trond Myklebust5afa9132011-06-17 10:14:59 -0400587 prepare_to_wait(&gss_msg->waitqueue, &wait, TASK_KILLABLE);
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300588 spin_lock(&pipe->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 if (gss_msg->ctx != NULL || gss_msg->msg.errno < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 break;
591 }
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300592 spin_unlock(&pipe->lock);
Trond Myklebust5afa9132011-06-17 10:14:59 -0400593 if (fatal_signal_pending(current)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 err = -ERESTARTSYS;
595 goto out_intr;
596 }
597 schedule();
598 }
599 if (gss_msg->ctx)
Trond Myklebust7b6962b2008-04-17 16:53:01 -0400600 gss_cred_set_ctx(cred, gss_msg->ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 else
602 err = gss_msg->msg.errno;
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300603 spin_unlock(&pipe->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604out_intr:
605 finish_wait(&gss_msg->waitqueue, &wait);
606 gss_release_msg(gss_msg);
607out:
Chuck Lever632f0d02012-09-14 17:23:43 -0400608 dprintk("RPC: %s for uid %u result %d\n",
Eric W. Biedermancdba3212013-02-01 17:10:52 -0800609 __func__, from_kuid(&init_user_ns, cred->cr_uid), err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 return err;
611}
612
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613#define MSG_BUF_MAXSIZE 1024
614
615static ssize_t
616gss_pipe_downcall(struct file *filp, const char __user *src, size_t mlen)
617{
618 const void *p, *end;
619 void *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 struct gss_upcall_msg *gss_msg;
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300621 struct rpc_pipe *pipe = RPC_I(filp->f_dentry->d_inode)->pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 struct gss_cl_ctx *ctx;
623 uid_t uid;
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400624 ssize_t err = -EFBIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626 if (mlen > MSG_BUF_MAXSIZE)
627 goto out;
628 err = -ENOMEM;
Trond Myklebust0f38b872008-06-10 18:31:01 -0400629 buf = kmalloc(mlen, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 if (!buf)
631 goto out;
632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 err = -EFAULT;
634 if (copy_from_user(buf, src, mlen))
635 goto err;
636
637 end = (const void *)((char *)buf + mlen);
638 p = simple_get_bytes(buf, end, &uid, sizeof(uid));
639 if (IS_ERR(p)) {
640 err = PTR_ERR(p);
641 goto err;
642 }
643
644 err = -ENOMEM;
645 ctx = gss_alloc_context();
646 if (ctx == NULL)
647 goto err;
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400648
649 err = -ENOENT;
650 /* Find a matching upcall */
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300651 spin_lock(&pipe->lock);
652 gss_msg = __gss_find_upcall(pipe, uid);
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400653 if (gss_msg == NULL) {
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300654 spin_unlock(&pipe->lock);
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400655 goto err_put_ctx;
656 }
657 list_del_init(&gss_msg->list);
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300658 spin_unlock(&pipe->lock);
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400659
Trond Myklebust6e84c7b2007-06-07 15:31:36 -0400660 p = gss_fill_context(p, end, ctx, gss_msg->auth->mech);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 if (IS_ERR(p)) {
662 err = PTR_ERR(p);
Jeff Layton486bad22009-12-18 16:28:20 -0500663 switch (err) {
664 case -EACCES:
Jeff Laytondc5ddce2010-01-07 09:42:02 -0500665 case -EKEYEXPIRED:
Jeff Layton486bad22009-12-18 16:28:20 -0500666 gss_msg->msg.errno = err;
667 err = mlen;
668 break;
669 case -EFAULT:
670 case -ENOMEM:
671 case -EINVAL:
672 case -ENOSYS:
673 gss_msg->msg.errno = -EAGAIN;
674 break;
675 default:
676 printk(KERN_CRIT "%s: bad return from "
Randy Dunlap6c853092010-01-06 17:26:27 -0500677 "gss_fill_context: %zd\n", __func__, err);
Jeff Layton486bad22009-12-18 16:28:20 -0500678 BUG();
679 }
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400680 goto err_release_msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 }
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400682 gss_msg->ctx = gss_get_ctx(ctx);
683 err = mlen;
684
685err_release_msg:
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300686 spin_lock(&pipe->lock);
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400687 __gss_unhash_msg(gss_msg);
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300688 spin_unlock(&pipe->lock);
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400689 gss_release_msg(gss_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690err_put_ctx:
691 gss_put_ctx(ctx);
692err:
693 kfree(buf);
694out:
Chuck Lever632f0d02012-09-14 17:23:43 -0400695 dprintk("RPC: %s returning %Zd\n", __func__, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 return err;
697}
698
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500699static int gss_pipe_open(struct inode *inode, int new_version)
\"J. Bruce Fields\cf819392008-12-23 16:10:19 -0500700{
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500701 int ret = 0;
702
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500703 spin_lock(&pipe_version_lock);
704 if (pipe_version < 0) {
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500705 /* First open of any gss pipe determines the version: */
706 pipe_version = new_version;
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500707 rpc_wake_up(&pipe_version_rpc_waitqueue);
708 wake_up(&pipe_version_waitqueue);
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500709 } else if (pipe_version != new_version) {
710 /* Trying to open a pipe of a different version */
711 ret = -EBUSY;
712 goto out;
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500713 }
\"J. Bruce Fields\cf819392008-12-23 16:10:19 -0500714 atomic_inc(&pipe_users);
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500715out:
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500716 spin_unlock(&pipe_version_lock);
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500717 return ret;
718
719}
720
721static int gss_pipe_open_v0(struct inode *inode)
722{
723 return gss_pipe_open(inode, 0);
724}
725
726static int gss_pipe_open_v1(struct inode *inode)
727{
728 return gss_pipe_open(inode, 1);
\"J. Bruce Fields\cf819392008-12-23 16:10:19 -0500729}
730
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731static void
732gss_pipe_release(struct inode *inode)
733{
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300734 struct rpc_pipe *pipe = RPC_I(inode)->pipe;
Trond Myklebust6e84c7b2007-06-07 15:31:36 -0400735 struct gss_upcall_msg *gss_msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Trond Myklebust5a676572010-09-12 19:55:25 -0400737restart:
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300738 spin_lock(&pipe->lock);
739 list_for_each_entry(gss_msg, &pipe->in_downcall, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
Trond Myklebust5a676572010-09-12 19:55:25 -0400741 if (!list_empty(&gss_msg->msg.list))
742 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 gss_msg->msg.errno = -EPIPE;
744 atomic_inc(&gss_msg->count);
745 __gss_unhash_msg(gss_msg);
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300746 spin_unlock(&pipe->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 gss_release_msg(gss_msg);
Trond Myklebust5a676572010-09-12 19:55:25 -0400748 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 }
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300750 spin_unlock(&pipe->lock);
\"J. Bruce Fields\cf819392008-12-23 16:10:19 -0500751
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500752 put_pipe_version();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753}
754
755static void
756gss_pipe_destroy_msg(struct rpc_pipe_msg *msg)
757{
758 struct gss_upcall_msg *gss_msg = container_of(msg, struct gss_upcall_msg, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
760 if (msg->errno < 0) {
Chuck Lever632f0d02012-09-14 17:23:43 -0400761 dprintk("RPC: %s releasing msg %p\n",
762 __func__, gss_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 atomic_inc(&gss_msg->count);
764 gss_unhash_msg(gss_msg);
\"J. Bruce Fields\b03568c2008-12-23 16:06:55 -0500765 if (msg->errno == -ETIMEDOUT)
766 warn_gssd();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 gss_release_msg(gss_msg);
768 }
769}
770
Stanislav Kinsburskyccdc28f2012-01-11 19:18:09 +0400771static void gss_pipes_dentries_destroy(struct rpc_auth *auth)
772{
773 struct gss_auth *gss_auth;
774
775 gss_auth = container_of(auth, struct gss_auth, rpc_auth);
Stanislav Kinsbursky80df9d22012-01-11 19:18:17 +0400776 if (gss_auth->pipe[0]->dentry)
777 rpc_unlink(gss_auth->pipe[0]->dentry);
778 if (gss_auth->pipe[1]->dentry)
779 rpc_unlink(gss_auth->pipe[1]->dentry);
Stanislav Kinsburskyccdc28f2012-01-11 19:18:09 +0400780}
781
782static int gss_pipes_dentries_create(struct rpc_auth *auth)
783{
784 int err;
785 struct gss_auth *gss_auth;
786 struct rpc_clnt *clnt;
787
788 gss_auth = container_of(auth, struct gss_auth, rpc_auth);
789 clnt = gss_auth->client;
790
Stanislav Kinsbursky30507f52012-01-11 19:18:42 +0400791 gss_auth->pipe[1]->dentry = rpc_mkpipe_dentry(clnt->cl_dentry,
Stanislav Kinsburskyccdc28f2012-01-11 19:18:09 +0400792 "gssd",
793 clnt, gss_auth->pipe[1]);
794 if (IS_ERR(gss_auth->pipe[1]->dentry))
795 return PTR_ERR(gss_auth->pipe[1]->dentry);
Stanislav Kinsbursky30507f52012-01-11 19:18:42 +0400796 gss_auth->pipe[0]->dentry = rpc_mkpipe_dentry(clnt->cl_dentry,
Stanislav Kinsburskyccdc28f2012-01-11 19:18:09 +0400797 gss_auth->mech->gm_name,
798 clnt, gss_auth->pipe[0]);
799 if (IS_ERR(gss_auth->pipe[0]->dentry)) {
800 err = PTR_ERR(gss_auth->pipe[0]->dentry);
801 goto err_unlink_pipe_1;
802 }
803 return 0;
804
805err_unlink_pipe_1:
806 rpc_unlink(gss_auth->pipe[1]->dentry);
807 return err;
808}
809
810static void gss_pipes_dentries_destroy_net(struct rpc_clnt *clnt,
811 struct rpc_auth *auth)
812{
Trond Myklebust2446ab62012-03-01 17:00:56 -0500813 struct net *net = rpc_net_ns(clnt);
Stanislav Kinsburskyccdc28f2012-01-11 19:18:09 +0400814 struct super_block *sb;
815
816 sb = rpc_get_sb_net(net);
817 if (sb) {
Stanislav Kinsbursky30507f52012-01-11 19:18:42 +0400818 if (clnt->cl_dentry)
Stanislav Kinsburskyccdc28f2012-01-11 19:18:09 +0400819 gss_pipes_dentries_destroy(auth);
820 rpc_put_sb_net(net);
821 }
822}
823
824static int gss_pipes_dentries_create_net(struct rpc_clnt *clnt,
825 struct rpc_auth *auth)
826{
Trond Myklebust2446ab62012-03-01 17:00:56 -0500827 struct net *net = rpc_net_ns(clnt);
Stanislav Kinsburskyccdc28f2012-01-11 19:18:09 +0400828 struct super_block *sb;
829 int err = 0;
830
831 sb = rpc_get_sb_net(net);
832 if (sb) {
Stanislav Kinsbursky30507f52012-01-11 19:18:42 +0400833 if (clnt->cl_dentry)
Stanislav Kinsburskyccdc28f2012-01-11 19:18:09 +0400834 err = gss_pipes_dentries_create(auth);
835 rpc_put_sb_net(net);
836 }
837 return err;
838}
839
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800840/*
841 * NOTE: we have the opportunity to use different
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 * parameters based on the input flavor (which must be a pseudoflavor)
843 */
844static struct rpc_auth *
845gss_create(struct rpc_clnt *clnt, rpc_authflavor_t flavor)
846{
847 struct gss_auth *gss_auth;
848 struct rpc_auth * auth;
J. Bruce Fields6a192752005-06-22 17:16:23 +0000849 int err = -ENOMEM; /* XXX? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Chuck Lever8885cb32007-01-31 12:14:05 -0500851 dprintk("RPC: creating GSS authenticator for client %p\n", clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
853 if (!try_module_get(THIS_MODULE))
J. Bruce Fields6a192752005-06-22 17:16:23 +0000854 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 if (!(gss_auth = kmalloc(sizeof(*gss_auth), GFP_KERNEL)))
856 goto out_dec;
857 gss_auth->client = clnt;
J. Bruce Fields6a192752005-06-22 17:16:23 +0000858 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 gss_auth->mech = gss_mech_get_by_pseudoflavor(flavor);
860 if (!gss_auth->mech) {
James Morris3392c342007-12-26 11:20:43 +1100861 printk(KERN_WARNING "%s: Pseudoflavor %d not found!\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800862 __func__, flavor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 goto err_free;
864 }
865 gss_auth->service = gss_pseudoflavor_to_service(gss_auth->mech, flavor);
J. Bruce Fields438b6fd2005-06-22 17:16:23 +0000866 if (gss_auth->service == 0)
867 goto err_put_mech;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 auth = &gss_auth->rpc_auth;
869 auth->au_cslack = GSS_CRED_SLACK >> 2;
870 auth->au_rslack = GSS_VERF_SLACK >> 2;
871 auth->au_ops = &authgss_ops;
872 auth->au_flavor = flavor;
873 atomic_set(&auth->au_count, 1);
Trond Myklebust0285ed12007-06-27 14:29:12 -0400874 kref_init(&gss_auth->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500876 /*
877 * Note: if we created the old pipe first, then someone who
878 * examined the directory at the right moment might conclude
879 * that we supported only the old pipe. So we instead create
880 * the new pipe first.
881 */
Stanislav Kinsburskyc239d832011-12-26 15:44:06 +0300882 gss_auth->pipe[1] = rpc_mkpipe_data(&gss_upcall_ops_v1,
883 RPC_PIPE_WAIT_FOR_OPEN);
884 if (IS_ERR(gss_auth->pipe[1])) {
885 err = PTR_ERR(gss_auth->pipe[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 goto err_put_mech;
J. Bruce Fields6a192752005-06-22 17:16:23 +0000887 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Stanislav Kinsburskyc239d832011-12-26 15:44:06 +0300889 gss_auth->pipe[0] = rpc_mkpipe_data(&gss_upcall_ops_v0,
890 RPC_PIPE_WAIT_FOR_OPEN);
891 if (IS_ERR(gss_auth->pipe[0])) {
892 err = PTR_ERR(gss_auth->pipe[0]);
893 goto err_destroy_pipe_1;
894 }
Stanislav Kinsburskyccdc28f2012-01-11 19:18:09 +0400895 err = gss_pipes_dentries_create_net(clnt, auth);
896 if (err)
Stanislav Kinsburskyc239d832011-12-26 15:44:06 +0300897 goto err_destroy_pipe_0;
Trond Myklebustf5c21872007-06-25 17:11:20 -0400898 err = rpcauth_init_credcache(auth);
Trond Myklebust07a2bf12007-06-09 15:42:01 -0400899 if (err)
Stanislav Kinsburskyccdc28f2012-01-11 19:18:09 +0400900 goto err_unlink_pipes;
Trond Myklebust07a2bf12007-06-09 15:42:01 -0400901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 return auth;
Stanislav Kinsburskyccdc28f2012-01-11 19:18:09 +0400903err_unlink_pipes:
904 gss_pipes_dentries_destroy_net(clnt, auth);
Stanislav Kinsburskyc239d832011-12-26 15:44:06 +0300905err_destroy_pipe_0:
906 rpc_destroy_pipe_data(gss_auth->pipe[0]);
907err_destroy_pipe_1:
908 rpc_destroy_pipe_data(gss_auth->pipe[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909err_put_mech:
910 gss_mech_put(gss_auth->mech);
911err_free:
912 kfree(gss_auth);
913out_dec:
914 module_put(THIS_MODULE);
J. Bruce Fields6a192752005-06-22 17:16:23 +0000915 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916}
917
918static void
Trond Myklebust0285ed12007-06-27 14:29:12 -0400919gss_free(struct gss_auth *gss_auth)
920{
Stanislav Kinsburskyccdc28f2012-01-11 19:18:09 +0400921 gss_pipes_dentries_destroy_net(gss_auth->client, &gss_auth->rpc_auth);
Stanislav Kinsburskyc239d832011-12-26 15:44:06 +0300922 rpc_destroy_pipe_data(gss_auth->pipe[0]);
923 rpc_destroy_pipe_data(gss_auth->pipe[1]);
Trond Myklebust0285ed12007-06-27 14:29:12 -0400924 gss_mech_put(gss_auth->mech);
925
926 kfree(gss_auth);
927 module_put(THIS_MODULE);
928}
929
930static void
931gss_free_callback(struct kref *kref)
932{
933 struct gss_auth *gss_auth = container_of(kref, struct gss_auth, kref);
934
935 gss_free(gss_auth);
936}
937
938static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939gss_destroy(struct rpc_auth *auth)
940{
941 struct gss_auth *gss_auth;
942
Chuck Lever8885cb32007-01-31 12:14:05 -0500943 dprintk("RPC: destroying GSS authenticator %p flavor %d\n",
944 auth, auth->au_flavor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
Trond Myklebust3ab9bb72007-06-09 15:41:42 -0400946 rpcauth_destroy_credcache(auth);
947
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 gss_auth = container_of(auth, struct gss_auth, rpc_auth);
Trond Myklebust0285ed12007-06-27 14:29:12 -0400949 kref_put(&gss_auth->kref, gss_free_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950}
951
Trond Myklebust0df7fb72007-06-26 17:04:57 -0400952/*
953 * gss_destroying_context will cause the RPCSEC_GSS to send a NULL RPC call
954 * to the server with the GSS control procedure field set to
955 * RPC_GSS_PROC_DESTROY. This should normally cause the server to release
956 * all RPCSEC_GSS state associated with that context.
957 */
958static int
959gss_destroying_context(struct rpc_cred *cred)
960{
961 struct gss_cred *gss_cred = container_of(cred, struct gss_cred, gc_base);
962 struct gss_auth *gss_auth = container_of(cred->cr_auth, struct gss_auth, rpc_auth);
963 struct rpc_task *task;
964
965 if (gss_cred->gc_ctx == NULL ||
Jeff Layton6dcd3922008-12-23 15:21:57 -0500966 test_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags) == 0)
Trond Myklebust0df7fb72007-06-26 17:04:57 -0400967 return 0;
968
969 gss_cred->gc_ctx->gc_proc = RPC_GSS_PROC_DESTROY;
970 cred->cr_ops = &gss_nullops;
971
972 /* Take a reference to ensure the cred will be destroyed either
973 * by the RPC call or by the put_rpccred() below */
974 get_rpccred(cred);
975
Trond Myklebust080a1f12008-04-19 14:22:31 -0400976 task = rpc_call_null(gss_auth->client, cred, RPC_TASK_ASYNC|RPC_TASK_SOFT);
Trond Myklebust0df7fb72007-06-26 17:04:57 -0400977 if (!IS_ERR(task))
978 rpc_put_task(task);
979
980 put_rpccred(cred);
981 return 1;
982}
983
984/* gss_destroy_cred (and gss_free_ctx) are used to clean up after failure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 * to create a new cred or context, so they check that things have been
986 * allocated before freeing them. */
987static void
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400988gss_do_free_ctx(struct gss_cl_ctx *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989{
Chuck Lever632f0d02012-09-14 17:23:43 -0400990 dprintk("RPC: %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Trond Myklebust0d8a3742010-08-01 20:14:55 -0400992 gss_delete_sec_context(&ctx->gc_gss_ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 kfree(ctx->gc_wire_ctx.data);
994 kfree(ctx);
995}
996
997static void
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400998gss_free_ctx_callback(struct rcu_head *head)
999{
1000 struct gss_cl_ctx *ctx = container_of(head, struct gss_cl_ctx, gc_rcu);
1001 gss_do_free_ctx(ctx);
1002}
1003
1004static void
1005gss_free_ctx(struct gss_cl_ctx *ctx)
1006{
1007 call_rcu(&ctx->gc_rcu, gss_free_ctx_callback);
1008}
1009
1010static void
Trond Myklebust31be5bf2007-06-24 15:55:26 -04001011gss_free_cred(struct gss_cred *gss_cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012{
Chuck Lever632f0d02012-09-14 17:23:43 -04001013 dprintk("RPC: %s cred=%p\n", __func__, gss_cred);
Trond Myklebust31be5bf2007-06-24 15:55:26 -04001014 kfree(gss_cred);
1015}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
Trond Myklebust31be5bf2007-06-24 15:55:26 -04001017static void
1018gss_free_cred_callback(struct rcu_head *head)
1019{
1020 struct gss_cred *gss_cred = container_of(head, struct gss_cred, gc_base.cr_rcu);
1021 gss_free_cred(gss_cred);
1022}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Trond Myklebust31be5bf2007-06-24 15:55:26 -04001024static void
Jeff Layton6dcd3922008-12-23 15:21:57 -05001025gss_destroy_nullcred(struct rpc_cred *cred)
Trond Myklebust31be5bf2007-06-24 15:55:26 -04001026{
Trond Myklebust5d28dc82007-06-26 19:18:38 -04001027 struct gss_cred *gss_cred = container_of(cred, struct gss_cred, gc_base);
Trond Myklebust0285ed12007-06-27 14:29:12 -04001028 struct gss_auth *gss_auth = container_of(cred->cr_auth, struct gss_auth, rpc_auth);
Trond Myklebust5d28dc82007-06-26 19:18:38 -04001029 struct gss_cl_ctx *ctx = gss_cred->gc_ctx;
1030
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00001031 RCU_INIT_POINTER(gss_cred->gc_ctx, NULL);
Trond Myklebust31be5bf2007-06-24 15:55:26 -04001032 call_rcu(&cred->cr_rcu, gss_free_cred_callback);
Trond Myklebust5d28dc82007-06-26 19:18:38 -04001033 if (ctx)
1034 gss_put_ctx(ctx);
Trond Myklebust0285ed12007-06-27 14:29:12 -04001035 kref_put(&gss_auth->kref, gss_free_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036}
1037
Jeff Layton6dcd3922008-12-23 15:21:57 -05001038static void
1039gss_destroy_cred(struct rpc_cred *cred)
1040{
1041
1042 if (gss_destroying_context(cred))
1043 return;
1044 gss_destroy_nullcred(cred);
1045}
1046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047/*
1048 * Lookup RPCSEC_GSS cred for the current process
1049 */
1050static struct rpc_cred *
Trond Myklebust8a317762006-02-01 12:18:36 -05001051gss_lookup_cred(struct rpc_auth *auth, struct auth_cred *acred, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052{
Trond Myklebust8a317762006-02-01 12:18:36 -05001053 return rpcauth_lookup_credcache(auth, acred, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054}
1055
1056static struct rpc_cred *
Trond Myklebust8a317762006-02-01 12:18:36 -05001057gss_create_cred(struct rpc_auth *auth, struct auth_cred *acred, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058{
1059 struct gss_auth *gss_auth = container_of(auth, struct gss_auth, rpc_auth);
1060 struct gss_cred *cred = NULL;
1061 int err = -ENOMEM;
1062
Chuck Lever632f0d02012-09-14 17:23:43 -04001063 dprintk("RPC: %s for uid %d, flavor %d\n",
Eric W. Biedermancdba3212013-02-01 17:10:52 -08001064 __func__, from_kuid(&init_user_ns, acred->uid),
1065 auth->au_flavor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
Trond Myklebust0f38b872008-06-10 18:31:01 -04001067 if (!(cred = kzalloc(sizeof(*cred), GFP_NOFS)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 goto out_err;
1069
Trond Myklebust5fe47552007-06-23 19:55:31 -04001070 rpcauth_init_cred(&cred->gc_base, acred, auth, &gss_credops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 /*
1072 * Note: in order to force a call to call_refresh(), we deliberately
1073 * fail to flag the credential as RPCAUTH_CRED_UPTODATE.
1074 */
Trond Myklebustfc432dd2007-06-25 10:15:15 -04001075 cred->gc_base.cr_flags = 1UL << RPCAUTH_CRED_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 cred->gc_service = gss_auth->service;
Trond Myklebust68c97152012-01-03 13:22:46 -05001077 cred->gc_principal = NULL;
1078 if (acred->machine_cred)
1079 cred->gc_principal = acred->principal;
Trond Myklebust0285ed12007-06-27 14:29:12 -04001080 kref_get(&gss_auth->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 return &cred->gc_base;
1082
1083out_err:
Chuck Lever632f0d02012-09-14 17:23:43 -04001084 dprintk("RPC: %s failed with error %d\n", __func__, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 return ERR_PTR(err);
1086}
1087
1088static int
Trond Myklebustfba3bad2006-02-01 12:19:27 -05001089gss_cred_init(struct rpc_auth *auth, struct rpc_cred *cred)
1090{
1091 struct gss_auth *gss_auth = container_of(auth, struct gss_auth, rpc_auth);
1092 struct gss_cred *gss_cred = container_of(cred,struct gss_cred, gc_base);
1093 int err;
1094
1095 do {
1096 err = gss_create_upcall(gss_auth, gss_cred);
1097 } while (err == -EAGAIN);
1098 return err;
1099}
1100
1101static int
Trond Myklebust8a317762006-02-01 12:18:36 -05001102gss_match(struct auth_cred *acred, struct rpc_cred *rc, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103{
1104 struct gss_cred *gss_cred = container_of(rc, struct gss_cred, gc_base);
1105
Trond Myklebustcd019f72008-04-17 17:03:58 -04001106 if (test_bit(RPCAUTH_CRED_NEW, &rc->cr_flags))
Trond Myklebust8a317762006-02-01 12:18:36 -05001107 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 /* Don't match with creds that have expired. */
Trond Myklebustcd019f72008-04-17 17:03:58 -04001109 if (time_after(jiffies, gss_cred->gc_ctx->gc_expiry))
1110 return 0;
1111 if (!test_bit(RPCAUTH_CRED_UPTODATE, &rc->cr_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 return 0;
Trond Myklebust8a317762006-02-01 12:18:36 -05001113out:
Trond Myklebust68c97152012-01-03 13:22:46 -05001114 if (acred->principal != NULL) {
1115 if (gss_cred->gc_principal == NULL)
1116 return 0;
1117 return strcmp(acred->principal, gss_cred->gc_principal) == 0;
1118 }
1119 if (gss_cred->gc_principal != NULL)
Trond Myklebust7c67db32008-04-07 20:50:11 -04001120 return 0;
Eric W. Biederman0b4d51b2013-02-01 16:39:32 -08001121 return uid_eq(rc->cr_uid, acred->uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122}
1123
1124/*
1125* Marshal credentials.
1126* Maybe we should keep a cached credential for performance reasons.
1127*/
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001128static __be32 *
1129gss_marshal(struct rpc_task *task, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130{
Trond Myklebusta17c2152010-07-31 14:29:08 -04001131 struct rpc_rqst *req = task->tk_rqstp;
1132 struct rpc_cred *cred = req->rq_cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 struct gss_cred *gss_cred = container_of(cred, struct gss_cred,
1134 gc_base);
1135 struct gss_cl_ctx *ctx = gss_cred_get_ctx(cred);
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001136 __be32 *cred_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 u32 maj_stat = 0;
1138 struct xdr_netobj mic;
1139 struct kvec iov;
1140 struct xdr_buf verf_buf;
1141
Chuck Lever632f0d02012-09-14 17:23:43 -04001142 dprintk("RPC: %5u %s\n", task->tk_pid, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
1144 *p++ = htonl(RPC_AUTH_GSS);
1145 cred_len = p++;
1146
1147 spin_lock(&ctx->gc_seq_lock);
1148 req->rq_seqno = ctx->gc_seq++;
1149 spin_unlock(&ctx->gc_seq_lock);
1150
1151 *p++ = htonl((u32) RPC_GSS_VERSION);
1152 *p++ = htonl((u32) ctx->gc_proc);
1153 *p++ = htonl((u32) req->rq_seqno);
1154 *p++ = htonl((u32) gss_cred->gc_service);
1155 p = xdr_encode_netobj(p, &ctx->gc_wire_ctx);
1156 *cred_len = htonl((p - (cred_len + 1)) << 2);
1157
1158 /* We compute the checksum for the verifier over the xdr-encoded bytes
1159 * starting with the xid and ending at the end of the credential: */
Chuck Lever808012f2005-08-25 16:25:49 -07001160 iov.iov_base = xprt_skip_transport_header(task->tk_xprt,
1161 req->rq_snd_buf.head[0].iov_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 iov.iov_len = (u8 *)p - (u8 *)iov.iov_base;
1163 xdr_buf_from_iov(&iov, &verf_buf);
1164
1165 /* set verifier flavor*/
1166 *p++ = htonl(RPC_AUTH_GSS);
1167
1168 mic.data = (u8 *)(p + 1);
J. Bruce Fields00fd6e12005-10-13 16:55:18 -04001169 maj_stat = gss_get_mic(ctx->gc_gss_ctx, &verf_buf, &mic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 if (maj_stat == GSS_S_CONTEXT_EXPIRED) {
Trond Myklebustfc432dd2007-06-25 10:15:15 -04001171 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 } else if (maj_stat != 0) {
1173 printk("gss_marshal: gss_get_mic FAILED (%d)\n", maj_stat);
1174 goto out_put_ctx;
1175 }
1176 p = xdr_encode_opaque(p, NULL, mic.len);
1177 gss_put_ctx(ctx);
1178 return p;
1179out_put_ctx:
1180 gss_put_ctx(ctx);
1181 return NULL;
1182}
1183
Trond Myklebustcd019f72008-04-17 17:03:58 -04001184static int gss_renew_cred(struct rpc_task *task)
1185{
Trond Myklebusta17c2152010-07-31 14:29:08 -04001186 struct rpc_cred *oldcred = task->tk_rqstp->rq_cred;
Trond Myklebustcd019f72008-04-17 17:03:58 -04001187 struct gss_cred *gss_cred = container_of(oldcred,
1188 struct gss_cred,
1189 gc_base);
1190 struct rpc_auth *auth = oldcred->cr_auth;
1191 struct auth_cred acred = {
1192 .uid = oldcred->cr_uid,
Trond Myklebust68c97152012-01-03 13:22:46 -05001193 .principal = gss_cred->gc_principal,
1194 .machine_cred = (gss_cred->gc_principal != NULL ? 1 : 0),
Trond Myklebustcd019f72008-04-17 17:03:58 -04001195 };
1196 struct rpc_cred *new;
1197
1198 new = gss_lookup_cred(auth, &acred, RPCAUTH_LOOKUP_NEW);
1199 if (IS_ERR(new))
1200 return PTR_ERR(new);
Trond Myklebusta17c2152010-07-31 14:29:08 -04001201 task->tk_rqstp->rq_cred = new;
Trond Myklebustcd019f72008-04-17 17:03:58 -04001202 put_rpccred(oldcred);
1203 return 0;
1204}
1205
Trond Myklebust126e2162010-05-13 12:55:38 -04001206static int gss_cred_is_negative_entry(struct rpc_cred *cred)
1207{
1208 if (test_bit(RPCAUTH_CRED_NEGATIVE, &cred->cr_flags)) {
1209 unsigned long now = jiffies;
1210 unsigned long begin, expire;
1211 struct gss_cred *gss_cred;
1212
1213 gss_cred = container_of(cred, struct gss_cred, gc_base);
1214 begin = gss_cred->gc_upcall_timestamp;
1215 expire = begin + gss_expired_cred_retry_delay * HZ;
1216
1217 if (time_in_range_open(now, begin, expire))
1218 return 1;
1219 }
1220 return 0;
1221}
1222
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223/*
1224* Refresh credentials. XXX - finish
1225*/
1226static int
1227gss_refresh(struct rpc_task *task)
1228{
Trond Myklebusta17c2152010-07-31 14:29:08 -04001229 struct rpc_cred *cred = task->tk_rqstp->rq_cred;
Trond Myklebustcd019f72008-04-17 17:03:58 -04001230 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
Trond Myklebust126e2162010-05-13 12:55:38 -04001232 if (gss_cred_is_negative_entry(cred))
1233 return -EKEYEXPIRED;
1234
Trond Myklebustcd019f72008-04-17 17:03:58 -04001235 if (!test_bit(RPCAUTH_CRED_NEW, &cred->cr_flags) &&
1236 !test_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags)) {
1237 ret = gss_renew_cred(task);
1238 if (ret < 0)
1239 goto out;
Trond Myklebusta17c2152010-07-31 14:29:08 -04001240 cred = task->tk_rqstp->rq_cred;
Trond Myklebustcd019f72008-04-17 17:03:58 -04001241 }
1242
1243 if (test_bit(RPCAUTH_CRED_NEW, &cred->cr_flags))
1244 ret = gss_refresh_upcall(task);
1245out:
1246 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247}
1248
Trond Myklebust0df7fb72007-06-26 17:04:57 -04001249/* Dummy refresh routine: used only when destroying the context */
1250static int
1251gss_refresh_null(struct rpc_task *task)
1252{
1253 return -EACCES;
1254}
1255
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001256static __be32 *
1257gss_validate(struct rpc_task *task, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258{
Trond Myklebusta17c2152010-07-31 14:29:08 -04001259 struct rpc_cred *cred = task->tk_rqstp->rq_cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 struct gss_cl_ctx *ctx = gss_cred_get_ctx(cred);
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001261 __be32 seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 struct kvec iov;
1263 struct xdr_buf verf_buf;
1264 struct xdr_netobj mic;
1265 u32 flav,len;
1266 u32 maj_stat;
1267
Chuck Lever632f0d02012-09-14 17:23:43 -04001268 dprintk("RPC: %5u %s\n", task->tk_pid, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
1270 flav = ntohl(*p++);
1271 if ((len = ntohl(*p++)) > RPC_MAX_AUTH_SIZE)
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001272 goto out_bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 if (flav != RPC_AUTH_GSS)
1274 goto out_bad;
1275 seq = htonl(task->tk_rqstp->rq_seqno);
1276 iov.iov_base = &seq;
1277 iov.iov_len = sizeof(seq);
1278 xdr_buf_from_iov(&iov, &verf_buf);
1279 mic.data = (u8 *)p;
1280 mic.len = len;
1281
J. Bruce Fields00fd6e12005-10-13 16:55:18 -04001282 maj_stat = gss_verify_mic(ctx->gc_gss_ctx, &verf_buf, &mic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 if (maj_stat == GSS_S_CONTEXT_EXPIRED)
Trond Myklebustfc432dd2007-06-25 10:15:15 -04001284 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
Trond Myklebust0df7fb72007-06-26 17:04:57 -04001285 if (maj_stat) {
Chuck Lever632f0d02012-09-14 17:23:43 -04001286 dprintk("RPC: %5u %s: gss_verify_mic returned error 0x%08x\n",
1287 task->tk_pid, __func__, maj_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 goto out_bad;
Trond Myklebust0df7fb72007-06-26 17:04:57 -04001289 }
J. Bruce Fields24b26052005-10-13 16:54:53 -04001290 /* We leave it to unwrap to calculate au_rslack. For now we just
1291 * calculate the length of the verifier: */
Trond Myklebust1be27f32007-06-27 14:29:04 -04001292 cred->cr_auth->au_verfsize = XDR_QUADLEN(len) + 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 gss_put_ctx(ctx);
Chuck Lever632f0d02012-09-14 17:23:43 -04001294 dprintk("RPC: %5u %s: gss_verify_mic succeeded.\n",
1295 task->tk_pid, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 return p + XDR_QUADLEN(len);
1297out_bad:
1298 gss_put_ctx(ctx);
Chuck Lever632f0d02012-09-14 17:23:43 -04001299 dprintk("RPC: %5u %s failed.\n", task->tk_pid, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 return NULL;
1301}
1302
Chuck Lever9f06c712010-12-14 14:59:18 +00001303static void gss_wrap_req_encode(kxdreproc_t encode, struct rpc_rqst *rqstp,
1304 __be32 *p, void *obj)
1305{
1306 struct xdr_stream xdr;
1307
1308 xdr_init_encode(&xdr, &rqstp->rq_snd_buf, p);
1309 encode(rqstp, &xdr, obj);
1310}
1311
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312static inline int
1313gss_wrap_req_integ(struct rpc_cred *cred, struct gss_cl_ctx *ctx,
Chuck Lever9f06c712010-12-14 14:59:18 +00001314 kxdreproc_t encode, struct rpc_rqst *rqstp,
1315 __be32 *p, void *obj)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316{
1317 struct xdr_buf *snd_buf = &rqstp->rq_snd_buf;
1318 struct xdr_buf integ_buf;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001319 __be32 *integ_len = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 struct xdr_netobj mic;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001321 u32 offset;
1322 __be32 *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 struct kvec *iov;
1324 u32 maj_stat = 0;
1325 int status = -EIO;
1326
1327 integ_len = p++;
1328 offset = (u8 *)p - (u8 *)snd_buf->head[0].iov_base;
1329 *p++ = htonl(rqstp->rq_seqno);
1330
Chuck Lever9f06c712010-12-14 14:59:18 +00001331 gss_wrap_req_encode(encode, rqstp, p, obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
1333 if (xdr_buf_subsegment(snd_buf, &integ_buf,
1334 offset, snd_buf->len - offset))
1335 return status;
1336 *integ_len = htonl(integ_buf.len);
1337
1338 /* guess whether we're in the head or the tail: */
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001339 if (snd_buf->page_len || snd_buf->tail[0].iov_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 iov = snd_buf->tail;
1341 else
1342 iov = snd_buf->head;
1343 p = iov->iov_base + iov->iov_len;
1344 mic.data = (u8 *)(p + 1);
1345
J. Bruce Fields00fd6e12005-10-13 16:55:18 -04001346 maj_stat = gss_get_mic(ctx->gc_gss_ctx, &integ_buf, &mic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 status = -EIO; /* XXX? */
1348 if (maj_stat == GSS_S_CONTEXT_EXPIRED)
Trond Myklebustfc432dd2007-06-25 10:15:15 -04001349 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 else if (maj_stat)
1351 return status;
1352 q = xdr_encode_opaque(p, NULL, mic.len);
1353
1354 offset = (u8 *)q - (u8 *)p;
1355 iov->iov_len += offset;
1356 snd_buf->len += offset;
1357 return 0;
1358}
1359
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001360static void
1361priv_release_snd_buf(struct rpc_rqst *rqstp)
1362{
1363 int i;
1364
1365 for (i=0; i < rqstp->rq_enc_pages_num; i++)
1366 __free_page(rqstp->rq_enc_pages[i]);
1367 kfree(rqstp->rq_enc_pages);
1368}
1369
1370static int
1371alloc_enc_pages(struct rpc_rqst *rqstp)
1372{
1373 struct xdr_buf *snd_buf = &rqstp->rq_snd_buf;
1374 int first, last, i;
1375
1376 if (snd_buf->page_len == 0) {
1377 rqstp->rq_enc_pages_num = 0;
1378 return 0;
1379 }
1380
1381 first = snd_buf->page_base >> PAGE_CACHE_SHIFT;
1382 last = (snd_buf->page_base + snd_buf->page_len - 1) >> PAGE_CACHE_SHIFT;
1383 rqstp->rq_enc_pages_num = last - first + 1 + 1;
1384 rqstp->rq_enc_pages
1385 = kmalloc(rqstp->rq_enc_pages_num * sizeof(struct page *),
1386 GFP_NOFS);
1387 if (!rqstp->rq_enc_pages)
1388 goto out;
1389 for (i=0; i < rqstp->rq_enc_pages_num; i++) {
1390 rqstp->rq_enc_pages[i] = alloc_page(GFP_NOFS);
1391 if (rqstp->rq_enc_pages[i] == NULL)
1392 goto out_free;
1393 }
1394 rqstp->rq_release_snd_buf = priv_release_snd_buf;
1395 return 0;
1396out_free:
Trond Myklebustcdead7c2010-03-19 15:36:22 -04001397 rqstp->rq_enc_pages_num = i;
1398 priv_release_snd_buf(rqstp);
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001399out:
1400 return -EAGAIN;
1401}
1402
1403static inline int
1404gss_wrap_req_priv(struct rpc_cred *cred, struct gss_cl_ctx *ctx,
Chuck Lever9f06c712010-12-14 14:59:18 +00001405 kxdreproc_t encode, struct rpc_rqst *rqstp,
1406 __be32 *p, void *obj)
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001407{
1408 struct xdr_buf *snd_buf = &rqstp->rq_snd_buf;
1409 u32 offset;
1410 u32 maj_stat;
1411 int status;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001412 __be32 *opaque_len;
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001413 struct page **inpages;
1414 int first;
1415 int pad;
1416 struct kvec *iov;
1417 char *tmp;
1418
1419 opaque_len = p++;
1420 offset = (u8 *)p - (u8 *)snd_buf->head[0].iov_base;
1421 *p++ = htonl(rqstp->rq_seqno);
1422
Chuck Lever9f06c712010-12-14 14:59:18 +00001423 gss_wrap_req_encode(encode, rqstp, p, obj);
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001424
1425 status = alloc_enc_pages(rqstp);
1426 if (status)
1427 return status;
1428 first = snd_buf->page_base >> PAGE_CACHE_SHIFT;
1429 inpages = snd_buf->pages + first;
1430 snd_buf->pages = rqstp->rq_enc_pages;
1431 snd_buf->page_base -= first << PAGE_CACHE_SHIFT;
Kevin Coffman75610422010-03-17 13:02:47 -04001432 /*
1433 * Give the tail its own page, in case we need extra space in the
1434 * head when wrapping:
1435 *
1436 * call_allocate() allocates twice the slack space required
1437 * by the authentication flavor to rq_callsize.
1438 * For GSS, slack is GSS_CRED_SLACK.
1439 */
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001440 if (snd_buf->page_len || snd_buf->tail[0].iov_len) {
1441 tmp = page_address(rqstp->rq_enc_pages[rqstp->rq_enc_pages_num - 1]);
1442 memcpy(tmp, snd_buf->tail[0].iov_base, snd_buf->tail[0].iov_len);
1443 snd_buf->tail[0].iov_base = tmp;
1444 }
J. Bruce Fields00fd6e12005-10-13 16:55:18 -04001445 maj_stat = gss_wrap(ctx->gc_gss_ctx, offset, snd_buf, inpages);
Kevin Coffman75610422010-03-17 13:02:47 -04001446 /* slack space should prevent this ever happening: */
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001447 BUG_ON(snd_buf->len > snd_buf->buflen);
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001448 status = -EIO;
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001449 /* We're assuming that when GSS_S_CONTEXT_EXPIRED, the encryption was
1450 * done anyway, so it's safe to put the request on the wire: */
1451 if (maj_stat == GSS_S_CONTEXT_EXPIRED)
Trond Myklebustfc432dd2007-06-25 10:15:15 -04001452 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001453 else if (maj_stat)
1454 return status;
1455
1456 *opaque_len = htonl(snd_buf->len - offset);
1457 /* guess whether we're in the head or the tail: */
1458 if (snd_buf->page_len || snd_buf->tail[0].iov_len)
1459 iov = snd_buf->tail;
1460 else
1461 iov = snd_buf->head;
1462 p = iov->iov_base + iov->iov_len;
1463 pad = 3 - ((snd_buf->len - offset - 1) & 3);
1464 memset(p, 0, pad);
1465 iov->iov_len += pad;
1466 snd_buf->len += pad;
1467
1468 return 0;
1469}
1470
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471static int
1472gss_wrap_req(struct rpc_task *task,
Chuck Lever9f06c712010-12-14 14:59:18 +00001473 kxdreproc_t encode, void *rqstp, __be32 *p, void *obj)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474{
Trond Myklebusta17c2152010-07-31 14:29:08 -04001475 struct rpc_cred *cred = task->tk_rqstp->rq_cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 struct gss_cred *gss_cred = container_of(cred, struct gss_cred,
1477 gc_base);
1478 struct gss_cl_ctx *ctx = gss_cred_get_ctx(cred);
1479 int status = -EIO;
1480
Chuck Lever632f0d02012-09-14 17:23:43 -04001481 dprintk("RPC: %5u %s\n", task->tk_pid, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 if (ctx->gc_proc != RPC_GSS_PROC_DATA) {
1483 /* The spec seems a little ambiguous here, but I think that not
1484 * wrapping context destruction requests makes the most sense.
1485 */
Chuck Lever9f06c712010-12-14 14:59:18 +00001486 gss_wrap_req_encode(encode, rqstp, p, obj);
1487 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 goto out;
1489 }
1490 switch (gss_cred->gc_service) {
Joe Perches89f0e4f2011-07-01 09:43:12 +00001491 case RPC_GSS_SVC_NONE:
1492 gss_wrap_req_encode(encode, rqstp, p, obj);
1493 status = 0;
1494 break;
1495 case RPC_GSS_SVC_INTEGRITY:
1496 status = gss_wrap_req_integ(cred, ctx, encode, rqstp, p, obj);
1497 break;
1498 case RPC_GSS_SVC_PRIVACY:
1499 status = gss_wrap_req_priv(cred, ctx, encode, rqstp, p, obj);
1500 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 }
1502out:
1503 gss_put_ctx(ctx);
Chuck Lever632f0d02012-09-14 17:23:43 -04001504 dprintk("RPC: %5u %s returning %d\n", task->tk_pid, __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 return status;
1506}
1507
1508static inline int
1509gss_unwrap_resp_integ(struct rpc_cred *cred, struct gss_cl_ctx *ctx,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001510 struct rpc_rqst *rqstp, __be32 **p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511{
1512 struct xdr_buf *rcv_buf = &rqstp->rq_rcv_buf;
1513 struct xdr_buf integ_buf;
1514 struct xdr_netobj mic;
1515 u32 data_offset, mic_offset;
1516 u32 integ_len;
1517 u32 maj_stat;
1518 int status = -EIO;
1519
1520 integ_len = ntohl(*(*p)++);
1521 if (integ_len & 3)
1522 return status;
1523 data_offset = (u8 *)(*p) - (u8 *)rcv_buf->head[0].iov_base;
1524 mic_offset = integ_len + data_offset;
1525 if (mic_offset > rcv_buf->len)
1526 return status;
1527 if (ntohl(*(*p)++) != rqstp->rq_seqno)
1528 return status;
1529
1530 if (xdr_buf_subsegment(rcv_buf, &integ_buf, data_offset,
1531 mic_offset - data_offset))
1532 return status;
1533
1534 if (xdr_buf_read_netobj(rcv_buf, &mic, mic_offset))
1535 return status;
1536
J. Bruce Fields00fd6e12005-10-13 16:55:18 -04001537 maj_stat = gss_verify_mic(ctx->gc_gss_ctx, &integ_buf, &mic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 if (maj_stat == GSS_S_CONTEXT_EXPIRED)
Trond Myklebustfc432dd2007-06-25 10:15:15 -04001539 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 if (maj_stat != GSS_S_COMPLETE)
1541 return status;
1542 return 0;
1543}
1544
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001545static inline int
1546gss_unwrap_resp_priv(struct rpc_cred *cred, struct gss_cl_ctx *ctx,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001547 struct rpc_rqst *rqstp, __be32 **p)
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001548{
1549 struct xdr_buf *rcv_buf = &rqstp->rq_rcv_buf;
1550 u32 offset;
1551 u32 opaque_len;
1552 u32 maj_stat;
1553 int status = -EIO;
1554
1555 opaque_len = ntohl(*(*p)++);
1556 offset = (u8 *)(*p) - (u8 *)rcv_buf->head[0].iov_base;
1557 if (offset + opaque_len > rcv_buf->len)
1558 return status;
1559 /* remove padding: */
1560 rcv_buf->len = offset + opaque_len;
1561
J. Bruce Fields00fd6e12005-10-13 16:55:18 -04001562 maj_stat = gss_unwrap(ctx->gc_gss_ctx, offset, rcv_buf);
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001563 if (maj_stat == GSS_S_CONTEXT_EXPIRED)
Trond Myklebustfc432dd2007-06-25 10:15:15 -04001564 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001565 if (maj_stat != GSS_S_COMPLETE)
1566 return status;
1567 if (ntohl(*(*p)++) != rqstp->rq_seqno)
1568 return status;
1569
1570 return 0;
1571}
1572
Chuck Leverbf269552010-12-14 14:59:29 +00001573static int
1574gss_unwrap_req_decode(kxdrdproc_t decode, struct rpc_rqst *rqstp,
1575 __be32 *p, void *obj)
1576{
1577 struct xdr_stream xdr;
1578
1579 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
1580 return decode(rqstp, &xdr, obj);
1581}
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001582
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583static int
1584gss_unwrap_resp(struct rpc_task *task,
Chuck Leverbf269552010-12-14 14:59:29 +00001585 kxdrdproc_t decode, void *rqstp, __be32 *p, void *obj)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586{
Trond Myklebusta17c2152010-07-31 14:29:08 -04001587 struct rpc_cred *cred = task->tk_rqstp->rq_cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 struct gss_cred *gss_cred = container_of(cred, struct gss_cred,
1589 gc_base);
1590 struct gss_cl_ctx *ctx = gss_cred_get_ctx(cred);
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001591 __be32 *savedp = p;
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001592 struct kvec *head = ((struct rpc_rqst *)rqstp)->rq_rcv_buf.head;
1593 int savedlen = head->iov_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 int status = -EIO;
1595
1596 if (ctx->gc_proc != RPC_GSS_PROC_DATA)
1597 goto out_decode;
1598 switch (gss_cred->gc_service) {
Joe Perches89f0e4f2011-07-01 09:43:12 +00001599 case RPC_GSS_SVC_NONE:
1600 break;
1601 case RPC_GSS_SVC_INTEGRITY:
1602 status = gss_unwrap_resp_integ(cred, ctx, rqstp, &p);
1603 if (status)
1604 goto out;
1605 break;
1606 case RPC_GSS_SVC_PRIVACY:
1607 status = gss_unwrap_resp_priv(cred, ctx, rqstp, &p);
1608 if (status)
1609 goto out;
1610 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 }
J. Bruce Fields24b26052005-10-13 16:54:53 -04001612 /* take into account extra slack for integrity and privacy cases: */
Trond Myklebust1be27f32007-06-27 14:29:04 -04001613 cred->cr_auth->au_rslack = cred->cr_auth->au_verfsize + (p - savedp)
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001614 + (savedlen - head->iov_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615out_decode:
Chuck Leverbf269552010-12-14 14:59:29 +00001616 status = gss_unwrap_req_decode(decode, rqstp, p, obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617out:
1618 gss_put_ctx(ctx);
Chuck Lever632f0d02012-09-14 17:23:43 -04001619 dprintk("RPC: %5u %s returning %d\n",
1620 task->tk_pid, __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 return status;
1622}
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001623
Trond Myklebustf1c0a862007-06-23 20:17:58 -04001624static const struct rpc_authops authgss_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 .owner = THIS_MODULE,
1626 .au_flavor = RPC_AUTH_GSS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 .au_name = "RPCSEC_GSS",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 .create = gss_create,
1629 .destroy = gss_destroy,
1630 .lookup_cred = gss_lookup_cred,
Stanislav Kinsbursky80df9d22012-01-11 19:18:17 +04001631 .crcreate = gss_create_cred,
1632 .pipes_create = gss_pipes_dentries_create,
1633 .pipes_destroy = gss_pipes_dentries_destroy,
Chuck Lever6a1a1e32012-07-11 16:31:08 -04001634 .list_pseudoflavors = gss_mech_list_pseudoflavors,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635};
1636
Trond Myklebustf1c0a862007-06-23 20:17:58 -04001637static const struct rpc_credops gss_credops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 .cr_name = "AUTH_GSS",
1639 .crdestroy = gss_destroy_cred,
Trond Myklebustfba3bad2006-02-01 12:19:27 -05001640 .cr_init = gss_cred_init,
Trond Myklebust5c691042008-03-12 16:21:07 -04001641 .crbind = rpcauth_generic_bind_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 .crmatch = gss_match,
1643 .crmarshal = gss_marshal,
1644 .crrefresh = gss_refresh,
1645 .crvalidate = gss_validate,
1646 .crwrap_req = gss_wrap_req,
1647 .crunwrap_resp = gss_unwrap_resp,
1648};
1649
Trond Myklebust0df7fb72007-06-26 17:04:57 -04001650static const struct rpc_credops gss_nullops = {
1651 .cr_name = "AUTH_GSS",
Jeff Layton6dcd3922008-12-23 15:21:57 -05001652 .crdestroy = gss_destroy_nullcred,
Trond Myklebust5c691042008-03-12 16:21:07 -04001653 .crbind = rpcauth_generic_bind_cred,
Trond Myklebust0df7fb72007-06-26 17:04:57 -04001654 .crmatch = gss_match,
1655 .crmarshal = gss_marshal,
1656 .crrefresh = gss_refresh_null,
1657 .crvalidate = gss_validate,
1658 .crwrap_req = gss_wrap_req,
1659 .crunwrap_resp = gss_unwrap_resp,
1660};
1661
Trond Myklebustb693ba42009-08-09 15:14:15 -04001662static const struct rpc_pipe_ops gss_upcall_ops_v0 = {
Peng Taoc1225152011-09-22 21:50:10 -04001663 .upcall = rpc_pipe_generic_upcall,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 .downcall = gss_pipe_downcall,
1665 .destroy_msg = gss_pipe_destroy_msg,
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -05001666 .open_pipe = gss_pipe_open_v0,
1667 .release_pipe = gss_pipe_release,
1668};
1669
Trond Myklebustb693ba42009-08-09 15:14:15 -04001670static const struct rpc_pipe_ops gss_upcall_ops_v1 = {
Peng Taoc1225152011-09-22 21:50:10 -04001671 .upcall = rpc_pipe_generic_upcall,
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -05001672 .downcall = gss_pipe_downcall,
1673 .destroy_msg = gss_pipe_destroy_msg,
1674 .open_pipe = gss_pipe_open_v1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 .release_pipe = gss_pipe_release,
1676};
1677
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +04001678static __net_init int rpcsec_gss_init_net(struct net *net)
1679{
1680 return gss_svc_init_net(net);
1681}
1682
1683static __net_exit void rpcsec_gss_exit_net(struct net *net)
1684{
1685 gss_svc_shutdown_net(net);
1686}
1687
1688static struct pernet_operations rpcsec_gss_net_ops = {
1689 .init = rpcsec_gss_init_net,
1690 .exit = rpcsec_gss_exit_net,
1691};
1692
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693/*
1694 * Initialize RPCSEC_GSS module
1695 */
1696static int __init init_rpcsec_gss(void)
1697{
1698 int err = 0;
1699
1700 err = rpcauth_register(&authgss_ops);
1701 if (err)
1702 goto out;
1703 err = gss_svc_init();
1704 if (err)
1705 goto out_unregister;
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +04001706 err = register_pernet_subsys(&rpcsec_gss_net_ops);
1707 if (err)
1708 goto out_svc_exit;
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -05001709 rpc_init_wait_queue(&pipe_version_rpc_waitqueue, "gss pipe version");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 return 0;
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +04001711out_svc_exit:
1712 gss_svc_shutdown();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713out_unregister:
1714 rpcauth_unregister(&authgss_ops);
1715out:
1716 return err;
1717}
1718
1719static void __exit exit_rpcsec_gss(void)
1720{
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +04001721 unregister_pernet_subsys(&rpcsec_gss_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 gss_svc_shutdown();
1723 rpcauth_unregister(&authgss_ops);
Jesper Dangaard Brouerbf126912009-06-08 03:11:48 +00001724 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725}
1726
1727MODULE_LICENSE("GPL");
Trond Myklebust126e2162010-05-13 12:55:38 -04001728module_param_named(expired_cred_retry_delay,
1729 gss_expired_cred_retry_delay,
1730 uint, 0644);
1731MODULE_PARM_DESC(expired_cred_retry_delay, "Timeout (in seconds) until "
1732 "the RPC engine retries an expired credential");
1733
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734module_init(init_rpcsec_gss)
1735module_exit(exit_rpcsec_gss)