blob: 5257d2982ba53665024e028dc4a5c0cb15dabd90 [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:
Jeff Layton173db302013-02-07 10:29:06 -0500250 dprintk("RPC: %s returns error %ld\n", __func__, -PTR_ERR(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 return p;
252}
253
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500254#define UPCALL_BUF_LEN 128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256struct gss_upcall_msg {
257 atomic_t count;
Eric W. Biederman7eaf0402013-02-01 16:31:17 -0800258 kuid_t uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 struct rpc_pipe_msg msg;
260 struct list_head list;
261 struct gss_auth *auth;
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300262 struct rpc_pipe *pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 struct rpc_wait_queue rpc_waitqueue;
264 wait_queue_head_t waitqueue;
265 struct gss_cl_ctx *ctx;
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500266 char databuf[UPCALL_BUF_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267};
268
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500269static int get_pipe_version(void)
270{
271 int ret;
272
273 spin_lock(&pipe_version_lock);
274 if (pipe_version >= 0) {
275 atomic_inc(&pipe_users);
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500276 ret = pipe_version;
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500277 } else
278 ret = -EAGAIN;
279 spin_unlock(&pipe_version_lock);
280 return ret;
281}
282
283static void put_pipe_version(void)
284{
285 if (atomic_dec_and_lock(&pipe_users, &pipe_version_lock)) {
286 pipe_version = -1;
287 spin_unlock(&pipe_version_lock);
288 }
289}
290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291static void
292gss_release_msg(struct gss_upcall_msg *gss_msg)
293{
294 if (!atomic_dec_and_test(&gss_msg->count))
295 return;
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500296 put_pipe_version();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 BUG_ON(!list_empty(&gss_msg->list));
298 if (gss_msg->ctx != NULL)
299 gss_put_ctx(gss_msg->ctx);
Trond Myklebustf6a1cc82008-02-22 17:06:55 -0500300 rpc_destroy_wait_queue(&gss_msg->rpc_waitqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 kfree(gss_msg);
302}
303
304static struct gss_upcall_msg *
Eric W. Biederman7eaf0402013-02-01 16:31:17 -0800305__gss_find_upcall(struct rpc_pipe *pipe, kuid_t uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
307 struct gss_upcall_msg *pos;
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300308 list_for_each_entry(pos, &pipe->in_downcall, list) {
Eric W. Biederman0b4d51b2013-02-01 16:39:32 -0800309 if (!uid_eq(pos->uid, uid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 continue;
311 atomic_inc(&pos->count);
Chuck Lever632f0d02012-09-14 17:23:43 -0400312 dprintk("RPC: %s found msg %p\n", __func__, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 return pos;
314 }
Chuck Lever632f0d02012-09-14 17:23:43 -0400315 dprintk("RPC: %s found nothing\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 return NULL;
317}
318
\\\"J. Bruce Fields\\\720b8f22008-06-09 16:51:33 -0400319/* Try to add an upcall to the pipefs queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 * If an upcall owned by our uid already exists, then we return a reference
321 * to that upcall instead of adding the new upcall.
322 */
323static inline struct gss_upcall_msg *
Suresh Jayaraman053e3242009-12-09 23:15:22 +0530324gss_add_msg(struct gss_upcall_msg *gss_msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300326 struct rpc_pipe *pipe = gss_msg->pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 struct gss_upcall_msg *old;
328
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300329 spin_lock(&pipe->lock);
330 old = __gss_find_upcall(pipe, gss_msg->uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 if (old == NULL) {
332 atomic_inc(&gss_msg->count);
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300333 list_add(&gss_msg->list, &pipe->in_downcall);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 } else
335 gss_msg = old;
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300336 spin_unlock(&pipe->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 return gss_msg;
338}
339
340static void
341__gss_unhash_msg(struct gss_upcall_msg *gss_msg)
342{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 list_del_init(&gss_msg->list);
344 rpc_wake_up_status(&gss_msg->rpc_waitqueue, gss_msg->msg.errno);
345 wake_up_all(&gss_msg->waitqueue);
346 atomic_dec(&gss_msg->count);
347}
348
349static void
350gss_unhash_msg(struct gss_upcall_msg *gss_msg)
351{
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300352 struct rpc_pipe *pipe = gss_msg->pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400354 if (list_empty(&gss_msg->list))
355 return;
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300356 spin_lock(&pipe->lock);
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400357 if (!list_empty(&gss_msg->list))
358 __gss_unhash_msg(gss_msg);
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300359 spin_unlock(&pipe->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360}
361
362static void
Trond Myklebust126e2162010-05-13 12:55:38 -0400363gss_handle_downcall_result(struct gss_cred *gss_cred, struct gss_upcall_msg *gss_msg)
364{
365 switch (gss_msg->msg.errno) {
366 case 0:
367 if (gss_msg->ctx == NULL)
368 break;
369 clear_bit(RPCAUTH_CRED_NEGATIVE, &gss_cred->gc_base.cr_flags);
370 gss_cred_set_ctx(&gss_cred->gc_base, gss_msg->ctx);
371 break;
372 case -EKEYEXPIRED:
373 set_bit(RPCAUTH_CRED_NEGATIVE, &gss_cred->gc_base.cr_flags);
374 }
375 gss_cred->gc_upcall_timestamp = jiffies;
376 gss_cred->gc_upcall = NULL;
377 rpc_wake_up_status(&gss_msg->rpc_waitqueue, gss_msg->msg.errno);
378}
379
380static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381gss_upcall_callback(struct rpc_task *task)
382{
Trond Myklebusta17c2152010-07-31 14:29:08 -0400383 struct gss_cred *gss_cred = container_of(task->tk_rqstp->rq_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 struct gss_cred, gc_base);
385 struct gss_upcall_msg *gss_msg = gss_cred->gc_upcall;
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300386 struct rpc_pipe *pipe = gss_msg->pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300388 spin_lock(&pipe->lock);
Trond Myklebust126e2162010-05-13 12:55:38 -0400389 gss_handle_downcall_result(gss_cred, gss_msg);
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300390 spin_unlock(&pipe->lock);
Trond Myklebust126e2162010-05-13 12:55:38 -0400391 task->tk_status = gss_msg->msg.errno;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 gss_release_msg(gss_msg);
393}
394
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500395static void gss_encode_v0_msg(struct gss_upcall_msg *gss_msg)
396{
Eric W. Biederman90602c72013-02-02 00:25:43 -0800397 uid_t uid = from_kuid(&init_user_ns, gss_msg->uid);
398 memcpy(gss_msg->databuf, &uid, sizeof(uid));
399 gss_msg->msg.data = gss_msg->databuf;
400 gss_msg->msg.len = sizeof(uid);
401 BUG_ON(sizeof(uid) > UPCALL_BUF_LEN);
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500402}
403
Olga Kornievskaia8b1c7bf2008-12-23 16:19:26 -0500404static void gss_encode_v1_msg(struct gss_upcall_msg *gss_msg,
Trond Myklebust68c97152012-01-03 13:22:46 -0500405 struct rpc_clnt *clnt,
406 const char *service_name)
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500407{
Trond Myklebust683ac662010-04-08 14:09:58 -0400408 struct gss_api_mech *mech = gss_msg->auth->mech;
Olga Kornievskaia8b1c7bf2008-12-23 16:19:26 -0500409 char *p = gss_msg->databuf;
410 int len = 0;
411
412 gss_msg->msg.len = sprintf(gss_msg->databuf, "mech=%s uid=%d ",
Trond Myklebust683ac662010-04-08 14:09:58 -0400413 mech->gm_name,
Eric W. Biederman90602c72013-02-02 00:25:43 -0800414 from_kuid(&init_user_ns, gss_msg->uid));
Olga Kornievskaia8b1c7bf2008-12-23 16:19:26 -0500415 p += gss_msg->msg.len;
416 if (clnt->cl_principal) {
417 len = sprintf(p, "target=%s ", clnt->cl_principal);
418 p += len;
419 gss_msg->msg.len += len;
420 }
Trond Myklebust68c97152012-01-03 13:22:46 -0500421 if (service_name != NULL) {
422 len = sprintf(p, "service=%s ", service_name);
Olga Kornievskaia2efef702008-12-23 16:19:56 -0500423 p += len;
424 gss_msg->msg.len += len;
425 }
Trond Myklebust683ac662010-04-08 14:09:58 -0400426 if (mech->gm_upcall_enctypes) {
Kevin Coffmanf8628222011-03-03 00:51:41 +0000427 len = sprintf(p, "enctypes=%s ", mech->gm_upcall_enctypes);
Trond Myklebust683ac662010-04-08 14:09:58 -0400428 p += len;
429 gss_msg->msg.len += len;
430 }
Olga Kornievskaia8b1c7bf2008-12-23 16:19:26 -0500431 len = sprintf(p, "\n");
432 gss_msg->msg.len += len;
433
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500434 gss_msg->msg.data = gss_msg->databuf;
435 BUG_ON(gss_msg->msg.len > UPCALL_BUF_LEN);
436}
437
Olga Kornievskaia8b1c7bf2008-12-23 16:19:26 -0500438static void gss_encode_msg(struct gss_upcall_msg *gss_msg,
Trond Myklebust68c97152012-01-03 13:22:46 -0500439 struct rpc_clnt *clnt,
440 const char *service_name)
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500441{
442 if (pipe_version == 0)
443 gss_encode_v0_msg(gss_msg);
444 else /* pipe_version == 1 */
Trond Myklebust68c97152012-01-03 13:22:46 -0500445 gss_encode_v1_msg(gss_msg, clnt, service_name);
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500446}
447
Trond Myklebust68c97152012-01-03 13:22:46 -0500448static struct gss_upcall_msg *
449gss_alloc_msg(struct gss_auth *gss_auth, struct rpc_clnt *clnt,
Eric W. Biederman7eaf0402013-02-01 16:31:17 -0800450 kuid_t uid, const char *service_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451{
452 struct gss_upcall_msg *gss_msg;
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500453 int vers;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Trond Myklebust0f38b872008-06-10 18:31:01 -0400455 gss_msg = kzalloc(sizeof(*gss_msg), GFP_NOFS);
\"J. Bruce Fields\db75b3d2008-12-23 16:07:13 -0500456 if (gss_msg == NULL)
457 return ERR_PTR(-ENOMEM);
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500458 vers = get_pipe_version();
459 if (vers < 0) {
460 kfree(gss_msg);
461 return ERR_PTR(vers);
462 }
Stanislav Kinsburskyc239d832011-12-26 15:44:06 +0300463 gss_msg->pipe = gss_auth->pipe[vers];
\"J. Bruce Fields\db75b3d2008-12-23 16:07:13 -0500464 INIT_LIST_HEAD(&gss_msg->list);
465 rpc_init_wait_queue(&gss_msg->rpc_waitqueue, "RPCSEC_GSS upcall waitq");
466 init_waitqueue_head(&gss_msg->waitqueue);
467 atomic_set(&gss_msg->count, 1);
\"J. Bruce Fields\db75b3d2008-12-23 16:07:13 -0500468 gss_msg->uid = uid;
469 gss_msg->auth = gss_auth;
Trond Myklebust68c97152012-01-03 13:22:46 -0500470 gss_encode_msg(gss_msg, clnt, service_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 return gss_msg;
472}
473
474static struct gss_upcall_msg *
475gss_setup_upcall(struct rpc_clnt *clnt, struct gss_auth *gss_auth, struct rpc_cred *cred)
476{
Trond Myklebust7c67db32008-04-07 20:50:11 -0400477 struct gss_cred *gss_cred = container_of(cred,
478 struct gss_cred, gc_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 struct gss_upcall_msg *gss_new, *gss_msg;
Eric W. Biederman7eaf0402013-02-01 16:31:17 -0800480 kuid_t uid = cred->cr_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Trond Myklebust68c97152012-01-03 13:22:46 -0500482 gss_new = gss_alloc_msg(gss_auth, clnt, uid, gss_cred->gc_principal);
\"J. Bruce Fields\db75b3d2008-12-23 16:07:13 -0500483 if (IS_ERR(gss_new))
484 return gss_new;
Suresh Jayaraman053e3242009-12-09 23:15:22 +0530485 gss_msg = gss_add_msg(gss_new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 if (gss_msg == gss_new) {
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300487 int res = rpc_queue_upcall(gss_new->pipe, &gss_new->msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 if (res) {
489 gss_unhash_msg(gss_new);
490 gss_msg = ERR_PTR(res);
491 }
492 } else
493 gss_release_msg(gss_new);
494 return gss_msg;
495}
496
\"J. Bruce Fields\b03568c2008-12-23 16:06:55 -0500497static void warn_gssd(void)
498{
499 static unsigned long ratelimit;
500 unsigned long now = jiffies;
501
502 if (time_after(now, ratelimit)) {
503 printk(KERN_WARNING "RPC: AUTH_GSS upcall timed out.\n"
504 "Please check user daemon is running.\n");
505 ratelimit = now + 15*HZ;
506 }
507}
508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509static inline int
510gss_refresh_upcall(struct rpc_task *task)
511{
Trond Myklebusta17c2152010-07-31 14:29:08 -0400512 struct rpc_cred *cred = task->tk_rqstp->rq_cred;
Trond Myklebust4a8c1342007-06-07 10:14:14 -0400513 struct gss_auth *gss_auth = container_of(cred->cr_auth,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 struct gss_auth, rpc_auth);
515 struct gss_cred *gss_cred = container_of(cred,
516 struct gss_cred, gc_base);
517 struct gss_upcall_msg *gss_msg;
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300518 struct rpc_pipe *pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 int err = 0;
520
Chuck Lever632f0d02012-09-14 17:23:43 -0400521 dprintk("RPC: %5u %s for uid %u\n",
Eric W. Biedermancdba3212013-02-01 17:10:52 -0800522 task->tk_pid, __func__, from_kuid(&init_user_ns, cred->cr_uid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 gss_msg = gss_setup_upcall(task->tk_client, gss_auth, cred);
Roel Kluin480e3242009-12-08 13:13:03 -0500524 if (PTR_ERR(gss_msg) == -EAGAIN) {
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500525 /* XXX: warning on the first, under the assumption we
526 * shouldn't normally hit this case on a refresh. */
527 warn_gssd();
528 task->tk_timeout = 15*HZ;
529 rpc_sleep_on(&pipe_version_rpc_waitqueue, task, NULL);
Bryan Schumakerd1a80162011-04-13 14:31:28 -0400530 return -EAGAIN;
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500531 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 if (IS_ERR(gss_msg)) {
533 err = PTR_ERR(gss_msg);
534 goto out;
535 }
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300536 pipe = gss_msg->pipe;
537 spin_lock(&pipe->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 if (gss_cred->gc_upcall != NULL)
Trond Myklebust5d008372008-02-22 16:34:17 -0500539 rpc_sleep_on(&gss_cred->gc_upcall->rpc_waitqueue, task, NULL);
Trond Myklebust126e2162010-05-13 12:55:38 -0400540 else if (gss_msg->ctx == NULL && gss_msg->msg.errno >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 task->tk_timeout = 0;
542 gss_cred->gc_upcall = gss_msg;
543 /* gss_upcall_callback will release the reference to gss_upcall_msg */
544 atomic_inc(&gss_msg->count);
Trond Myklebust5d008372008-02-22 16:34:17 -0500545 rpc_sleep_on(&gss_msg->rpc_waitqueue, task, gss_upcall_callback);
Trond Myklebust126e2162010-05-13 12:55:38 -0400546 } else {
547 gss_handle_downcall_result(gss_cred, gss_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 err = gss_msg->msg.errno;
Trond Myklebust126e2162010-05-13 12:55:38 -0400549 }
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300550 spin_unlock(&pipe->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 gss_release_msg(gss_msg);
552out:
Chuck Lever632f0d02012-09-14 17:23:43 -0400553 dprintk("RPC: %5u %s for uid %u result %d\n",
Eric W. Biedermancdba3212013-02-01 17:10:52 -0800554 task->tk_pid, __func__,
555 from_kuid(&init_user_ns, cred->cr_uid), err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 return err;
557}
558
559static inline int
560gss_create_upcall(struct gss_auth *gss_auth, struct gss_cred *gss_cred)
561{
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300562 struct rpc_pipe *pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 struct rpc_cred *cred = &gss_cred->gc_base;
564 struct gss_upcall_msg *gss_msg;
565 DEFINE_WAIT(wait);
566 int err = 0;
567
Eric W. Biedermancdba3212013-02-01 17:10:52 -0800568 dprintk("RPC: %s for uid %u\n",
569 __func__, from_kuid(&init_user_ns, cred->cr_uid));
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500570retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 gss_msg = gss_setup_upcall(gss_auth->client, gss_auth, cred);
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500572 if (PTR_ERR(gss_msg) == -EAGAIN) {
573 err = wait_event_interruptible_timeout(pipe_version_waitqueue,
574 pipe_version >= 0, 15*HZ);
Bryan Schumakerd1a80162011-04-13 14:31:28 -0400575 if (pipe_version < 0) {
576 warn_gssd();
577 err = -EACCES;
578 }
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500579 if (err)
580 goto out;
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500581 goto retry;
582 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 if (IS_ERR(gss_msg)) {
584 err = PTR_ERR(gss_msg);
585 goto out;
586 }
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300587 pipe = gss_msg->pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 for (;;) {
Trond Myklebust5afa9132011-06-17 10:14:59 -0400589 prepare_to_wait(&gss_msg->waitqueue, &wait, TASK_KILLABLE);
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300590 spin_lock(&pipe->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 if (gss_msg->ctx != NULL || gss_msg->msg.errno < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 break;
593 }
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300594 spin_unlock(&pipe->lock);
Trond Myklebust5afa9132011-06-17 10:14:59 -0400595 if (fatal_signal_pending(current)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 err = -ERESTARTSYS;
597 goto out_intr;
598 }
599 schedule();
600 }
601 if (gss_msg->ctx)
Trond Myklebust7b6962b2008-04-17 16:53:01 -0400602 gss_cred_set_ctx(cred, gss_msg->ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 else
604 err = gss_msg->msg.errno;
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300605 spin_unlock(&pipe->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606out_intr:
607 finish_wait(&gss_msg->waitqueue, &wait);
608 gss_release_msg(gss_msg);
609out:
Chuck Lever632f0d02012-09-14 17:23:43 -0400610 dprintk("RPC: %s for uid %u result %d\n",
Eric W. Biedermancdba3212013-02-01 17:10:52 -0800611 __func__, from_kuid(&init_user_ns, cred->cr_uid), err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 return err;
613}
614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615#define MSG_BUF_MAXSIZE 1024
616
617static ssize_t
618gss_pipe_downcall(struct file *filp, const char __user *src, size_t mlen)
619{
620 const void *p, *end;
621 void *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 struct gss_upcall_msg *gss_msg;
Al Viro496ad9a2013-01-23 17:07:38 -0500623 struct rpc_pipe *pipe = RPC_I(file_inode(filp))->pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 struct gss_cl_ctx *ctx;
Eric W. Biederman90602c72013-02-02 00:25:43 -0800625 uid_t id;
626 kuid_t uid;
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400627 ssize_t err = -EFBIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
629 if (mlen > MSG_BUF_MAXSIZE)
630 goto out;
631 err = -ENOMEM;
Trond Myklebust0f38b872008-06-10 18:31:01 -0400632 buf = kmalloc(mlen, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 if (!buf)
634 goto out;
635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 err = -EFAULT;
637 if (copy_from_user(buf, src, mlen))
638 goto err;
639
640 end = (const void *)((char *)buf + mlen);
Eric W. Biederman90602c72013-02-02 00:25:43 -0800641 p = simple_get_bytes(buf, end, &id, sizeof(id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 if (IS_ERR(p)) {
643 err = PTR_ERR(p);
644 goto err;
645 }
646
Eric W. Biederman90602c72013-02-02 00:25:43 -0800647 uid = make_kuid(&init_user_ns, id);
648 if (!uid_valid(uid)) {
649 err = -EINVAL;
650 goto err;
651 }
652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 err = -ENOMEM;
654 ctx = gss_alloc_context();
655 if (ctx == NULL)
656 goto err;
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400657
658 err = -ENOENT;
659 /* Find a matching upcall */
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300660 spin_lock(&pipe->lock);
661 gss_msg = __gss_find_upcall(pipe, uid);
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400662 if (gss_msg == NULL) {
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300663 spin_unlock(&pipe->lock);
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400664 goto err_put_ctx;
665 }
666 list_del_init(&gss_msg->list);
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300667 spin_unlock(&pipe->lock);
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400668
Trond Myklebust6e84c7b2007-06-07 15:31:36 -0400669 p = gss_fill_context(p, end, ctx, gss_msg->auth->mech);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 if (IS_ERR(p)) {
671 err = PTR_ERR(p);
Jeff Layton486bad22009-12-18 16:28:20 -0500672 switch (err) {
673 case -EACCES:
Jeff Laytondc5ddce2010-01-07 09:42:02 -0500674 case -EKEYEXPIRED:
Jeff Layton486bad22009-12-18 16:28:20 -0500675 gss_msg->msg.errno = err;
676 err = mlen;
677 break;
678 case -EFAULT:
679 case -ENOMEM:
680 case -EINVAL:
681 case -ENOSYS:
682 gss_msg->msg.errno = -EAGAIN;
683 break;
684 default:
685 printk(KERN_CRIT "%s: bad return from "
Randy Dunlap6c853092010-01-06 17:26:27 -0500686 "gss_fill_context: %zd\n", __func__, err);
Jeff Layton486bad22009-12-18 16:28:20 -0500687 BUG();
688 }
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400689 goto err_release_msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 }
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400691 gss_msg->ctx = gss_get_ctx(ctx);
692 err = mlen;
693
694err_release_msg:
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300695 spin_lock(&pipe->lock);
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400696 __gss_unhash_msg(gss_msg);
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300697 spin_unlock(&pipe->lock);
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400698 gss_release_msg(gss_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699err_put_ctx:
700 gss_put_ctx(ctx);
701err:
702 kfree(buf);
703out:
Chuck Lever632f0d02012-09-14 17:23:43 -0400704 dprintk("RPC: %s returning %Zd\n", __func__, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 return err;
706}
707
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500708static int gss_pipe_open(struct inode *inode, int new_version)
\"J. Bruce Fields\cf819392008-12-23 16:10:19 -0500709{
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500710 int ret = 0;
711
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500712 spin_lock(&pipe_version_lock);
713 if (pipe_version < 0) {
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500714 /* First open of any gss pipe determines the version: */
715 pipe_version = new_version;
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500716 rpc_wake_up(&pipe_version_rpc_waitqueue);
717 wake_up(&pipe_version_waitqueue);
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500718 } else if (pipe_version != new_version) {
719 /* Trying to open a pipe of a different version */
720 ret = -EBUSY;
721 goto out;
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500722 }
\"J. Bruce Fields\cf819392008-12-23 16:10:19 -0500723 atomic_inc(&pipe_users);
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500724out:
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500725 spin_unlock(&pipe_version_lock);
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500726 return ret;
727
728}
729
730static int gss_pipe_open_v0(struct inode *inode)
731{
732 return gss_pipe_open(inode, 0);
733}
734
735static int gss_pipe_open_v1(struct inode *inode)
736{
737 return gss_pipe_open(inode, 1);
\"J. Bruce Fields\cf819392008-12-23 16:10:19 -0500738}
739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740static void
741gss_pipe_release(struct inode *inode)
742{
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300743 struct rpc_pipe *pipe = RPC_I(inode)->pipe;
Trond Myklebust6e84c7b2007-06-07 15:31:36 -0400744 struct gss_upcall_msg *gss_msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
Trond Myklebust5a676572010-09-12 19:55:25 -0400746restart:
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300747 spin_lock(&pipe->lock);
748 list_for_each_entry(gss_msg, &pipe->in_downcall, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Trond Myklebust5a676572010-09-12 19:55:25 -0400750 if (!list_empty(&gss_msg->msg.list))
751 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 gss_msg->msg.errno = -EPIPE;
753 atomic_inc(&gss_msg->count);
754 __gss_unhash_msg(gss_msg);
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300755 spin_unlock(&pipe->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 gss_release_msg(gss_msg);
Trond Myklebust5a676572010-09-12 19:55:25 -0400757 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 }
Stanislav Kinsbursky9beae462011-12-26 15:43:57 +0300759 spin_unlock(&pipe->lock);
\"J. Bruce Fields\cf819392008-12-23 16:10:19 -0500760
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500761 put_pipe_version();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762}
763
764static void
765gss_pipe_destroy_msg(struct rpc_pipe_msg *msg)
766{
767 struct gss_upcall_msg *gss_msg = container_of(msg, struct gss_upcall_msg, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
769 if (msg->errno < 0) {
Chuck Lever632f0d02012-09-14 17:23:43 -0400770 dprintk("RPC: %s releasing msg %p\n",
771 __func__, gss_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 atomic_inc(&gss_msg->count);
773 gss_unhash_msg(gss_msg);
\"J. Bruce Fields\b03568c2008-12-23 16:06:55 -0500774 if (msg->errno == -ETIMEDOUT)
775 warn_gssd();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 gss_release_msg(gss_msg);
777 }
778}
779
Stanislav Kinsburskyccdc28f2012-01-11 19:18:09 +0400780static void gss_pipes_dentries_destroy(struct rpc_auth *auth)
781{
782 struct gss_auth *gss_auth;
783
784 gss_auth = container_of(auth, struct gss_auth, rpc_auth);
Stanislav Kinsbursky80df9d22012-01-11 19:18:17 +0400785 if (gss_auth->pipe[0]->dentry)
786 rpc_unlink(gss_auth->pipe[0]->dentry);
787 if (gss_auth->pipe[1]->dentry)
788 rpc_unlink(gss_auth->pipe[1]->dentry);
Stanislav Kinsburskyccdc28f2012-01-11 19:18:09 +0400789}
790
791static int gss_pipes_dentries_create(struct rpc_auth *auth)
792{
793 int err;
794 struct gss_auth *gss_auth;
795 struct rpc_clnt *clnt;
796
797 gss_auth = container_of(auth, struct gss_auth, rpc_auth);
798 clnt = gss_auth->client;
799
Stanislav Kinsbursky30507f52012-01-11 19:18:42 +0400800 gss_auth->pipe[1]->dentry = rpc_mkpipe_dentry(clnt->cl_dentry,
Stanislav Kinsburskyccdc28f2012-01-11 19:18:09 +0400801 "gssd",
802 clnt, gss_auth->pipe[1]);
803 if (IS_ERR(gss_auth->pipe[1]->dentry))
804 return PTR_ERR(gss_auth->pipe[1]->dentry);
Stanislav Kinsbursky30507f52012-01-11 19:18:42 +0400805 gss_auth->pipe[0]->dentry = rpc_mkpipe_dentry(clnt->cl_dentry,
Stanislav Kinsburskyccdc28f2012-01-11 19:18:09 +0400806 gss_auth->mech->gm_name,
807 clnt, gss_auth->pipe[0]);
808 if (IS_ERR(gss_auth->pipe[0]->dentry)) {
809 err = PTR_ERR(gss_auth->pipe[0]->dentry);
810 goto err_unlink_pipe_1;
811 }
812 return 0;
813
814err_unlink_pipe_1:
815 rpc_unlink(gss_auth->pipe[1]->dentry);
816 return err;
817}
818
819static void gss_pipes_dentries_destroy_net(struct rpc_clnt *clnt,
820 struct rpc_auth *auth)
821{
Trond Myklebust2446ab62012-03-01 17:00:56 -0500822 struct net *net = rpc_net_ns(clnt);
Stanislav Kinsburskyccdc28f2012-01-11 19:18:09 +0400823 struct super_block *sb;
824
825 sb = rpc_get_sb_net(net);
826 if (sb) {
Stanislav Kinsbursky30507f52012-01-11 19:18:42 +0400827 if (clnt->cl_dentry)
Stanislav Kinsburskyccdc28f2012-01-11 19:18:09 +0400828 gss_pipes_dentries_destroy(auth);
829 rpc_put_sb_net(net);
830 }
831}
832
833static int gss_pipes_dentries_create_net(struct rpc_clnt *clnt,
834 struct rpc_auth *auth)
835{
Trond Myklebust2446ab62012-03-01 17:00:56 -0500836 struct net *net = rpc_net_ns(clnt);
Stanislav Kinsburskyccdc28f2012-01-11 19:18:09 +0400837 struct super_block *sb;
838 int err = 0;
839
840 sb = rpc_get_sb_net(net);
841 if (sb) {
Stanislav Kinsbursky30507f52012-01-11 19:18:42 +0400842 if (clnt->cl_dentry)
Stanislav Kinsburskyccdc28f2012-01-11 19:18:09 +0400843 err = gss_pipes_dentries_create(auth);
844 rpc_put_sb_net(net);
845 }
846 return err;
847}
848
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800849/*
850 * NOTE: we have the opportunity to use different
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 * parameters based on the input flavor (which must be a pseudoflavor)
852 */
853static struct rpc_auth *
854gss_create(struct rpc_clnt *clnt, rpc_authflavor_t flavor)
855{
856 struct gss_auth *gss_auth;
857 struct rpc_auth * auth;
J. Bruce Fields6a192752005-06-22 17:16:23 +0000858 int err = -ENOMEM; /* XXX? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
Chuck Lever8885cb32007-01-31 12:14:05 -0500860 dprintk("RPC: creating GSS authenticator for client %p\n", clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
862 if (!try_module_get(THIS_MODULE))
J. Bruce Fields6a192752005-06-22 17:16:23 +0000863 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 if (!(gss_auth = kmalloc(sizeof(*gss_auth), GFP_KERNEL)))
865 goto out_dec;
866 gss_auth->client = clnt;
J. Bruce Fields6a192752005-06-22 17:16:23 +0000867 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 gss_auth->mech = gss_mech_get_by_pseudoflavor(flavor);
869 if (!gss_auth->mech) {
James Morris3392c342007-12-26 11:20:43 +1100870 printk(KERN_WARNING "%s: Pseudoflavor %d not found!\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800871 __func__, flavor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 goto err_free;
873 }
874 gss_auth->service = gss_pseudoflavor_to_service(gss_auth->mech, flavor);
J. Bruce Fields438b6fd2005-06-22 17:16:23 +0000875 if (gss_auth->service == 0)
876 goto err_put_mech;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 auth = &gss_auth->rpc_auth;
878 auth->au_cslack = GSS_CRED_SLACK >> 2;
879 auth->au_rslack = GSS_VERF_SLACK >> 2;
880 auth->au_ops = &authgss_ops;
881 auth->au_flavor = flavor;
882 atomic_set(&auth->au_count, 1);
Trond Myklebust0285ed12007-06-27 14:29:12 -0400883 kref_init(&gss_auth->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500885 /*
886 * Note: if we created the old pipe first, then someone who
887 * examined the directory at the right moment might conclude
888 * that we supported only the old pipe. So we instead create
889 * the new pipe first.
890 */
Stanislav Kinsburskyc239d832011-12-26 15:44:06 +0300891 gss_auth->pipe[1] = rpc_mkpipe_data(&gss_upcall_ops_v1,
892 RPC_PIPE_WAIT_FOR_OPEN);
893 if (IS_ERR(gss_auth->pipe[1])) {
894 err = PTR_ERR(gss_auth->pipe[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 goto err_put_mech;
J. Bruce Fields6a192752005-06-22 17:16:23 +0000896 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
Stanislav Kinsburskyc239d832011-12-26 15:44:06 +0300898 gss_auth->pipe[0] = rpc_mkpipe_data(&gss_upcall_ops_v0,
899 RPC_PIPE_WAIT_FOR_OPEN);
900 if (IS_ERR(gss_auth->pipe[0])) {
901 err = PTR_ERR(gss_auth->pipe[0]);
902 goto err_destroy_pipe_1;
903 }
Stanislav Kinsburskyccdc28f2012-01-11 19:18:09 +0400904 err = gss_pipes_dentries_create_net(clnt, auth);
905 if (err)
Stanislav Kinsburskyc239d832011-12-26 15:44:06 +0300906 goto err_destroy_pipe_0;
Trond Myklebustf5c21872007-06-25 17:11:20 -0400907 err = rpcauth_init_credcache(auth);
Trond Myklebust07a2bf12007-06-09 15:42:01 -0400908 if (err)
Stanislav Kinsburskyccdc28f2012-01-11 19:18:09 +0400909 goto err_unlink_pipes;
Trond Myklebust07a2bf12007-06-09 15:42:01 -0400910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 return auth;
Stanislav Kinsburskyccdc28f2012-01-11 19:18:09 +0400912err_unlink_pipes:
913 gss_pipes_dentries_destroy_net(clnt, auth);
Stanislav Kinsburskyc239d832011-12-26 15:44:06 +0300914err_destroy_pipe_0:
915 rpc_destroy_pipe_data(gss_auth->pipe[0]);
916err_destroy_pipe_1:
917 rpc_destroy_pipe_data(gss_auth->pipe[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918err_put_mech:
919 gss_mech_put(gss_auth->mech);
920err_free:
921 kfree(gss_auth);
922out_dec:
923 module_put(THIS_MODULE);
J. Bruce Fields6a192752005-06-22 17:16:23 +0000924 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925}
926
927static void
Trond Myklebust0285ed12007-06-27 14:29:12 -0400928gss_free(struct gss_auth *gss_auth)
929{
Stanislav Kinsburskyccdc28f2012-01-11 19:18:09 +0400930 gss_pipes_dentries_destroy_net(gss_auth->client, &gss_auth->rpc_auth);
Stanislav Kinsburskyc239d832011-12-26 15:44:06 +0300931 rpc_destroy_pipe_data(gss_auth->pipe[0]);
932 rpc_destroy_pipe_data(gss_auth->pipe[1]);
Trond Myklebust0285ed12007-06-27 14:29:12 -0400933 gss_mech_put(gss_auth->mech);
934
935 kfree(gss_auth);
936 module_put(THIS_MODULE);
937}
938
939static void
940gss_free_callback(struct kref *kref)
941{
942 struct gss_auth *gss_auth = container_of(kref, struct gss_auth, kref);
943
944 gss_free(gss_auth);
945}
946
947static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948gss_destroy(struct rpc_auth *auth)
949{
950 struct gss_auth *gss_auth;
951
Chuck Lever8885cb32007-01-31 12:14:05 -0500952 dprintk("RPC: destroying GSS authenticator %p flavor %d\n",
953 auth, auth->au_flavor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
Trond Myklebust3ab9bb72007-06-09 15:41:42 -0400955 rpcauth_destroy_credcache(auth);
956
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 gss_auth = container_of(auth, struct gss_auth, rpc_auth);
Trond Myklebust0285ed12007-06-27 14:29:12 -0400958 kref_put(&gss_auth->kref, gss_free_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959}
960
Trond Myklebust0df7fb72007-06-26 17:04:57 -0400961/*
962 * gss_destroying_context will cause the RPCSEC_GSS to send a NULL RPC call
963 * to the server with the GSS control procedure field set to
964 * RPC_GSS_PROC_DESTROY. This should normally cause the server to release
965 * all RPCSEC_GSS state associated with that context.
966 */
967static int
968gss_destroying_context(struct rpc_cred *cred)
969{
970 struct gss_cred *gss_cred = container_of(cred, struct gss_cred, gc_base);
971 struct gss_auth *gss_auth = container_of(cred->cr_auth, struct gss_auth, rpc_auth);
972 struct rpc_task *task;
973
974 if (gss_cred->gc_ctx == NULL ||
Jeff Layton6dcd3922008-12-23 15:21:57 -0500975 test_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags) == 0)
Trond Myklebust0df7fb72007-06-26 17:04:57 -0400976 return 0;
977
978 gss_cred->gc_ctx->gc_proc = RPC_GSS_PROC_DESTROY;
979 cred->cr_ops = &gss_nullops;
980
981 /* Take a reference to ensure the cred will be destroyed either
982 * by the RPC call or by the put_rpccred() below */
983 get_rpccred(cred);
984
Trond Myklebust080a1f12008-04-19 14:22:31 -0400985 task = rpc_call_null(gss_auth->client, cred, RPC_TASK_ASYNC|RPC_TASK_SOFT);
Trond Myklebust0df7fb72007-06-26 17:04:57 -0400986 if (!IS_ERR(task))
987 rpc_put_task(task);
988
989 put_rpccred(cred);
990 return 1;
991}
992
993/* gss_destroy_cred (and gss_free_ctx) are used to clean up after failure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 * to create a new cred or context, so they check that things have been
995 * allocated before freeing them. */
996static void
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400997gss_do_free_ctx(struct gss_cl_ctx *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998{
Chuck Lever632f0d02012-09-14 17:23:43 -0400999 dprintk("RPC: %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
Trond Myklebust0d8a3742010-08-01 20:14:55 -04001001 gss_delete_sec_context(&ctx->gc_gss_ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 kfree(ctx->gc_wire_ctx.data);
1003 kfree(ctx);
1004}
1005
1006static void
Trond Myklebust5d28dc82007-06-26 19:18:38 -04001007gss_free_ctx_callback(struct rcu_head *head)
1008{
1009 struct gss_cl_ctx *ctx = container_of(head, struct gss_cl_ctx, gc_rcu);
1010 gss_do_free_ctx(ctx);
1011}
1012
1013static void
1014gss_free_ctx(struct gss_cl_ctx *ctx)
1015{
1016 call_rcu(&ctx->gc_rcu, gss_free_ctx_callback);
1017}
1018
1019static void
Trond Myklebust31be5bf2007-06-24 15:55:26 -04001020gss_free_cred(struct gss_cred *gss_cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021{
Chuck Lever632f0d02012-09-14 17:23:43 -04001022 dprintk("RPC: %s cred=%p\n", __func__, gss_cred);
Trond Myklebust31be5bf2007-06-24 15:55:26 -04001023 kfree(gss_cred);
1024}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
Trond Myklebust31be5bf2007-06-24 15:55:26 -04001026static void
1027gss_free_cred_callback(struct rcu_head *head)
1028{
1029 struct gss_cred *gss_cred = container_of(head, struct gss_cred, gc_base.cr_rcu);
1030 gss_free_cred(gss_cred);
1031}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
Trond Myklebust31be5bf2007-06-24 15:55:26 -04001033static void
Jeff Layton6dcd3922008-12-23 15:21:57 -05001034gss_destroy_nullcred(struct rpc_cred *cred)
Trond Myklebust31be5bf2007-06-24 15:55:26 -04001035{
Trond Myklebust5d28dc82007-06-26 19:18:38 -04001036 struct gss_cred *gss_cred = container_of(cred, struct gss_cred, gc_base);
Trond Myklebust0285ed12007-06-27 14:29:12 -04001037 struct gss_auth *gss_auth = container_of(cred->cr_auth, struct gss_auth, rpc_auth);
Trond Myklebust5d28dc82007-06-26 19:18:38 -04001038 struct gss_cl_ctx *ctx = gss_cred->gc_ctx;
1039
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00001040 RCU_INIT_POINTER(gss_cred->gc_ctx, NULL);
Trond Myklebust31be5bf2007-06-24 15:55:26 -04001041 call_rcu(&cred->cr_rcu, gss_free_cred_callback);
Trond Myklebust5d28dc82007-06-26 19:18:38 -04001042 if (ctx)
1043 gss_put_ctx(ctx);
Trond Myklebust0285ed12007-06-27 14:29:12 -04001044 kref_put(&gss_auth->kref, gss_free_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045}
1046
Jeff Layton6dcd3922008-12-23 15:21:57 -05001047static void
1048gss_destroy_cred(struct rpc_cred *cred)
1049{
1050
1051 if (gss_destroying_context(cred))
1052 return;
1053 gss_destroy_nullcred(cred);
1054}
1055
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056/*
1057 * Lookup RPCSEC_GSS cred for the current process
1058 */
1059static struct rpc_cred *
Trond Myklebust8a317762006-02-01 12:18:36 -05001060gss_lookup_cred(struct rpc_auth *auth, struct auth_cred *acred, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061{
Trond Myklebust8a317762006-02-01 12:18:36 -05001062 return rpcauth_lookup_credcache(auth, acred, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063}
1064
1065static struct rpc_cred *
Trond Myklebust8a317762006-02-01 12:18:36 -05001066gss_create_cred(struct rpc_auth *auth, struct auth_cred *acred, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067{
1068 struct gss_auth *gss_auth = container_of(auth, struct gss_auth, rpc_auth);
1069 struct gss_cred *cred = NULL;
1070 int err = -ENOMEM;
1071
Chuck Lever632f0d02012-09-14 17:23:43 -04001072 dprintk("RPC: %s for uid %d, flavor %d\n",
Eric W. Biedermancdba3212013-02-01 17:10:52 -08001073 __func__, from_kuid(&init_user_ns, acred->uid),
1074 auth->au_flavor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
Trond Myklebust0f38b872008-06-10 18:31:01 -04001076 if (!(cred = kzalloc(sizeof(*cred), GFP_NOFS)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 goto out_err;
1078
Trond Myklebust5fe47552007-06-23 19:55:31 -04001079 rpcauth_init_cred(&cred->gc_base, acred, auth, &gss_credops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 /*
1081 * Note: in order to force a call to call_refresh(), we deliberately
1082 * fail to flag the credential as RPCAUTH_CRED_UPTODATE.
1083 */
Trond Myklebustfc432dd2007-06-25 10:15:15 -04001084 cred->gc_base.cr_flags = 1UL << RPCAUTH_CRED_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 cred->gc_service = gss_auth->service;
Trond Myklebust68c97152012-01-03 13:22:46 -05001086 cred->gc_principal = NULL;
1087 if (acred->machine_cred)
1088 cred->gc_principal = acred->principal;
Trond Myklebust0285ed12007-06-27 14:29:12 -04001089 kref_get(&gss_auth->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 return &cred->gc_base;
1091
1092out_err:
Chuck Lever632f0d02012-09-14 17:23:43 -04001093 dprintk("RPC: %s failed with error %d\n", __func__, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 return ERR_PTR(err);
1095}
1096
1097static int
Trond Myklebustfba3bad2006-02-01 12:19:27 -05001098gss_cred_init(struct rpc_auth *auth, struct rpc_cred *cred)
1099{
1100 struct gss_auth *gss_auth = container_of(auth, struct gss_auth, rpc_auth);
1101 struct gss_cred *gss_cred = container_of(cred,struct gss_cred, gc_base);
1102 int err;
1103
1104 do {
1105 err = gss_create_upcall(gss_auth, gss_cred);
1106 } while (err == -EAGAIN);
1107 return err;
1108}
1109
1110static int
Trond Myklebust8a317762006-02-01 12:18:36 -05001111gss_match(struct auth_cred *acred, struct rpc_cred *rc, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112{
1113 struct gss_cred *gss_cred = container_of(rc, struct gss_cred, gc_base);
1114
Trond Myklebustcd019f72008-04-17 17:03:58 -04001115 if (test_bit(RPCAUTH_CRED_NEW, &rc->cr_flags))
Trond Myklebust8a317762006-02-01 12:18:36 -05001116 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 /* Don't match with creds that have expired. */
Trond Myklebustcd019f72008-04-17 17:03:58 -04001118 if (time_after(jiffies, gss_cred->gc_ctx->gc_expiry))
1119 return 0;
1120 if (!test_bit(RPCAUTH_CRED_UPTODATE, &rc->cr_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 return 0;
Trond Myklebust8a317762006-02-01 12:18:36 -05001122out:
Trond Myklebust68c97152012-01-03 13:22:46 -05001123 if (acred->principal != NULL) {
1124 if (gss_cred->gc_principal == NULL)
1125 return 0;
1126 return strcmp(acred->principal, gss_cred->gc_principal) == 0;
1127 }
1128 if (gss_cred->gc_principal != NULL)
Trond Myklebust7c67db32008-04-07 20:50:11 -04001129 return 0;
Eric W. Biederman0b4d51b2013-02-01 16:39:32 -08001130 return uid_eq(rc->cr_uid, acred->uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131}
1132
1133/*
1134* Marshal credentials.
1135* Maybe we should keep a cached credential for performance reasons.
1136*/
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001137static __be32 *
1138gss_marshal(struct rpc_task *task, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139{
Trond Myklebusta17c2152010-07-31 14:29:08 -04001140 struct rpc_rqst *req = task->tk_rqstp;
1141 struct rpc_cred *cred = req->rq_cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 struct gss_cred *gss_cred = container_of(cred, struct gss_cred,
1143 gc_base);
1144 struct gss_cl_ctx *ctx = gss_cred_get_ctx(cred);
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001145 __be32 *cred_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 u32 maj_stat = 0;
1147 struct xdr_netobj mic;
1148 struct kvec iov;
1149 struct xdr_buf verf_buf;
1150
Chuck Lever632f0d02012-09-14 17:23:43 -04001151 dprintk("RPC: %5u %s\n", task->tk_pid, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
1153 *p++ = htonl(RPC_AUTH_GSS);
1154 cred_len = p++;
1155
1156 spin_lock(&ctx->gc_seq_lock);
1157 req->rq_seqno = ctx->gc_seq++;
1158 spin_unlock(&ctx->gc_seq_lock);
1159
1160 *p++ = htonl((u32) RPC_GSS_VERSION);
1161 *p++ = htonl((u32) ctx->gc_proc);
1162 *p++ = htonl((u32) req->rq_seqno);
1163 *p++ = htonl((u32) gss_cred->gc_service);
1164 p = xdr_encode_netobj(p, &ctx->gc_wire_ctx);
1165 *cred_len = htonl((p - (cred_len + 1)) << 2);
1166
1167 /* We compute the checksum for the verifier over the xdr-encoded bytes
1168 * starting with the xid and ending at the end of the credential: */
Trond Myklebusta4f08352013-01-08 09:10:21 -05001169 iov.iov_base = xprt_skip_transport_header(req->rq_xprt,
Chuck Lever808012f2005-08-25 16:25:49 -07001170 req->rq_snd_buf.head[0].iov_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 iov.iov_len = (u8 *)p - (u8 *)iov.iov_base;
1172 xdr_buf_from_iov(&iov, &verf_buf);
1173
1174 /* set verifier flavor*/
1175 *p++ = htonl(RPC_AUTH_GSS);
1176
1177 mic.data = (u8 *)(p + 1);
J. Bruce Fields00fd6e12005-10-13 16:55:18 -04001178 maj_stat = gss_get_mic(ctx->gc_gss_ctx, &verf_buf, &mic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 if (maj_stat == GSS_S_CONTEXT_EXPIRED) {
Trond Myklebustfc432dd2007-06-25 10:15:15 -04001180 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 } else if (maj_stat != 0) {
1182 printk("gss_marshal: gss_get_mic FAILED (%d)\n", maj_stat);
1183 goto out_put_ctx;
1184 }
1185 p = xdr_encode_opaque(p, NULL, mic.len);
1186 gss_put_ctx(ctx);
1187 return p;
1188out_put_ctx:
1189 gss_put_ctx(ctx);
1190 return NULL;
1191}
1192
Trond Myklebustcd019f72008-04-17 17:03:58 -04001193static int gss_renew_cred(struct rpc_task *task)
1194{
Trond Myklebusta17c2152010-07-31 14:29:08 -04001195 struct rpc_cred *oldcred = task->tk_rqstp->rq_cred;
Trond Myklebustcd019f72008-04-17 17:03:58 -04001196 struct gss_cred *gss_cred = container_of(oldcred,
1197 struct gss_cred,
1198 gc_base);
1199 struct rpc_auth *auth = oldcred->cr_auth;
1200 struct auth_cred acred = {
1201 .uid = oldcred->cr_uid,
Trond Myklebust68c97152012-01-03 13:22:46 -05001202 .principal = gss_cred->gc_principal,
1203 .machine_cred = (gss_cred->gc_principal != NULL ? 1 : 0),
Trond Myklebustcd019f72008-04-17 17:03:58 -04001204 };
1205 struct rpc_cred *new;
1206
1207 new = gss_lookup_cred(auth, &acred, RPCAUTH_LOOKUP_NEW);
1208 if (IS_ERR(new))
1209 return PTR_ERR(new);
Trond Myklebusta17c2152010-07-31 14:29:08 -04001210 task->tk_rqstp->rq_cred = new;
Trond Myklebustcd019f72008-04-17 17:03:58 -04001211 put_rpccred(oldcred);
1212 return 0;
1213}
1214
Trond Myklebust126e2162010-05-13 12:55:38 -04001215static int gss_cred_is_negative_entry(struct rpc_cred *cred)
1216{
1217 if (test_bit(RPCAUTH_CRED_NEGATIVE, &cred->cr_flags)) {
1218 unsigned long now = jiffies;
1219 unsigned long begin, expire;
1220 struct gss_cred *gss_cred;
1221
1222 gss_cred = container_of(cred, struct gss_cred, gc_base);
1223 begin = gss_cred->gc_upcall_timestamp;
1224 expire = begin + gss_expired_cred_retry_delay * HZ;
1225
1226 if (time_in_range_open(now, begin, expire))
1227 return 1;
1228 }
1229 return 0;
1230}
1231
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232/*
1233* Refresh credentials. XXX - finish
1234*/
1235static int
1236gss_refresh(struct rpc_task *task)
1237{
Trond Myklebusta17c2152010-07-31 14:29:08 -04001238 struct rpc_cred *cred = task->tk_rqstp->rq_cred;
Trond Myklebustcd019f72008-04-17 17:03:58 -04001239 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
Trond Myklebust126e2162010-05-13 12:55:38 -04001241 if (gss_cred_is_negative_entry(cred))
1242 return -EKEYEXPIRED;
1243
Trond Myklebustcd019f72008-04-17 17:03:58 -04001244 if (!test_bit(RPCAUTH_CRED_NEW, &cred->cr_flags) &&
1245 !test_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags)) {
1246 ret = gss_renew_cred(task);
1247 if (ret < 0)
1248 goto out;
Trond Myklebusta17c2152010-07-31 14:29:08 -04001249 cred = task->tk_rqstp->rq_cred;
Trond Myklebustcd019f72008-04-17 17:03:58 -04001250 }
1251
1252 if (test_bit(RPCAUTH_CRED_NEW, &cred->cr_flags))
1253 ret = gss_refresh_upcall(task);
1254out:
1255 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256}
1257
Trond Myklebust0df7fb72007-06-26 17:04:57 -04001258/* Dummy refresh routine: used only when destroying the context */
1259static int
1260gss_refresh_null(struct rpc_task *task)
1261{
1262 return -EACCES;
1263}
1264
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001265static __be32 *
1266gss_validate(struct rpc_task *task, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267{
Trond Myklebusta17c2152010-07-31 14:29:08 -04001268 struct rpc_cred *cred = task->tk_rqstp->rq_cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 struct gss_cl_ctx *ctx = gss_cred_get_ctx(cred);
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001270 __be32 seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 struct kvec iov;
1272 struct xdr_buf verf_buf;
1273 struct xdr_netobj mic;
1274 u32 flav,len;
1275 u32 maj_stat;
1276
Chuck Lever632f0d02012-09-14 17:23:43 -04001277 dprintk("RPC: %5u %s\n", task->tk_pid, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
1279 flav = ntohl(*p++);
1280 if ((len = ntohl(*p++)) > RPC_MAX_AUTH_SIZE)
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001281 goto out_bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 if (flav != RPC_AUTH_GSS)
1283 goto out_bad;
1284 seq = htonl(task->tk_rqstp->rq_seqno);
1285 iov.iov_base = &seq;
1286 iov.iov_len = sizeof(seq);
1287 xdr_buf_from_iov(&iov, &verf_buf);
1288 mic.data = (u8 *)p;
1289 mic.len = len;
1290
J. Bruce Fields00fd6e12005-10-13 16:55:18 -04001291 maj_stat = gss_verify_mic(ctx->gc_gss_ctx, &verf_buf, &mic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 if (maj_stat == GSS_S_CONTEXT_EXPIRED)
Trond Myklebustfc432dd2007-06-25 10:15:15 -04001293 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
Trond Myklebust0df7fb72007-06-26 17:04:57 -04001294 if (maj_stat) {
Chuck Lever632f0d02012-09-14 17:23:43 -04001295 dprintk("RPC: %5u %s: gss_verify_mic returned error 0x%08x\n",
1296 task->tk_pid, __func__, maj_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 goto out_bad;
Trond Myklebust0df7fb72007-06-26 17:04:57 -04001298 }
J. Bruce Fields24b26052005-10-13 16:54:53 -04001299 /* We leave it to unwrap to calculate au_rslack. For now we just
1300 * calculate the length of the verifier: */
Trond Myklebust1be27f32007-06-27 14:29:04 -04001301 cred->cr_auth->au_verfsize = XDR_QUADLEN(len) + 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 gss_put_ctx(ctx);
Chuck Lever632f0d02012-09-14 17:23:43 -04001303 dprintk("RPC: %5u %s: gss_verify_mic succeeded.\n",
1304 task->tk_pid, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 return p + XDR_QUADLEN(len);
1306out_bad:
1307 gss_put_ctx(ctx);
Chuck Lever632f0d02012-09-14 17:23:43 -04001308 dprintk("RPC: %5u %s failed.\n", task->tk_pid, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 return NULL;
1310}
1311
Chuck Lever9f06c712010-12-14 14:59:18 +00001312static void gss_wrap_req_encode(kxdreproc_t encode, struct rpc_rqst *rqstp,
1313 __be32 *p, void *obj)
1314{
1315 struct xdr_stream xdr;
1316
1317 xdr_init_encode(&xdr, &rqstp->rq_snd_buf, p);
1318 encode(rqstp, &xdr, obj);
1319}
1320
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321static inline int
1322gss_wrap_req_integ(struct rpc_cred *cred, struct gss_cl_ctx *ctx,
Chuck Lever9f06c712010-12-14 14:59:18 +00001323 kxdreproc_t encode, struct rpc_rqst *rqstp,
1324 __be32 *p, void *obj)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325{
1326 struct xdr_buf *snd_buf = &rqstp->rq_snd_buf;
1327 struct xdr_buf integ_buf;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001328 __be32 *integ_len = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 struct xdr_netobj mic;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001330 u32 offset;
1331 __be32 *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 struct kvec *iov;
1333 u32 maj_stat = 0;
1334 int status = -EIO;
1335
1336 integ_len = p++;
1337 offset = (u8 *)p - (u8 *)snd_buf->head[0].iov_base;
1338 *p++ = htonl(rqstp->rq_seqno);
1339
Chuck Lever9f06c712010-12-14 14:59:18 +00001340 gss_wrap_req_encode(encode, rqstp, p, obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
1342 if (xdr_buf_subsegment(snd_buf, &integ_buf,
1343 offset, snd_buf->len - offset))
1344 return status;
1345 *integ_len = htonl(integ_buf.len);
1346
1347 /* guess whether we're in the head or the tail: */
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001348 if (snd_buf->page_len || snd_buf->tail[0].iov_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 iov = snd_buf->tail;
1350 else
1351 iov = snd_buf->head;
1352 p = iov->iov_base + iov->iov_len;
1353 mic.data = (u8 *)(p + 1);
1354
J. Bruce Fields00fd6e12005-10-13 16:55:18 -04001355 maj_stat = gss_get_mic(ctx->gc_gss_ctx, &integ_buf, &mic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 status = -EIO; /* XXX? */
1357 if (maj_stat == GSS_S_CONTEXT_EXPIRED)
Trond Myklebustfc432dd2007-06-25 10:15:15 -04001358 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 else if (maj_stat)
1360 return status;
1361 q = xdr_encode_opaque(p, NULL, mic.len);
1362
1363 offset = (u8 *)q - (u8 *)p;
1364 iov->iov_len += offset;
1365 snd_buf->len += offset;
1366 return 0;
1367}
1368
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001369static void
1370priv_release_snd_buf(struct rpc_rqst *rqstp)
1371{
1372 int i;
1373
1374 for (i=0; i < rqstp->rq_enc_pages_num; i++)
1375 __free_page(rqstp->rq_enc_pages[i]);
1376 kfree(rqstp->rq_enc_pages);
1377}
1378
1379static int
1380alloc_enc_pages(struct rpc_rqst *rqstp)
1381{
1382 struct xdr_buf *snd_buf = &rqstp->rq_snd_buf;
1383 int first, last, i;
1384
1385 if (snd_buf->page_len == 0) {
1386 rqstp->rq_enc_pages_num = 0;
1387 return 0;
1388 }
1389
1390 first = snd_buf->page_base >> PAGE_CACHE_SHIFT;
1391 last = (snd_buf->page_base + snd_buf->page_len - 1) >> PAGE_CACHE_SHIFT;
1392 rqstp->rq_enc_pages_num = last - first + 1 + 1;
1393 rqstp->rq_enc_pages
1394 = kmalloc(rqstp->rq_enc_pages_num * sizeof(struct page *),
1395 GFP_NOFS);
1396 if (!rqstp->rq_enc_pages)
1397 goto out;
1398 for (i=0; i < rqstp->rq_enc_pages_num; i++) {
1399 rqstp->rq_enc_pages[i] = alloc_page(GFP_NOFS);
1400 if (rqstp->rq_enc_pages[i] == NULL)
1401 goto out_free;
1402 }
1403 rqstp->rq_release_snd_buf = priv_release_snd_buf;
1404 return 0;
1405out_free:
Trond Myklebustcdead7c2010-03-19 15:36:22 -04001406 rqstp->rq_enc_pages_num = i;
1407 priv_release_snd_buf(rqstp);
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001408out:
1409 return -EAGAIN;
1410}
1411
1412static inline int
1413gss_wrap_req_priv(struct rpc_cred *cred, struct gss_cl_ctx *ctx,
Chuck Lever9f06c712010-12-14 14:59:18 +00001414 kxdreproc_t encode, struct rpc_rqst *rqstp,
1415 __be32 *p, void *obj)
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001416{
1417 struct xdr_buf *snd_buf = &rqstp->rq_snd_buf;
1418 u32 offset;
1419 u32 maj_stat;
1420 int status;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001421 __be32 *opaque_len;
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001422 struct page **inpages;
1423 int first;
1424 int pad;
1425 struct kvec *iov;
1426 char *tmp;
1427
1428 opaque_len = p++;
1429 offset = (u8 *)p - (u8 *)snd_buf->head[0].iov_base;
1430 *p++ = htonl(rqstp->rq_seqno);
1431
Chuck Lever9f06c712010-12-14 14:59:18 +00001432 gss_wrap_req_encode(encode, rqstp, p, obj);
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001433
1434 status = alloc_enc_pages(rqstp);
1435 if (status)
1436 return status;
1437 first = snd_buf->page_base >> PAGE_CACHE_SHIFT;
1438 inpages = snd_buf->pages + first;
1439 snd_buf->pages = rqstp->rq_enc_pages;
1440 snd_buf->page_base -= first << PAGE_CACHE_SHIFT;
Kevin Coffman75610422010-03-17 13:02:47 -04001441 /*
1442 * Give the tail its own page, in case we need extra space in the
1443 * head when wrapping:
1444 *
1445 * call_allocate() allocates twice the slack space required
1446 * by the authentication flavor to rq_callsize.
1447 * For GSS, slack is GSS_CRED_SLACK.
1448 */
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001449 if (snd_buf->page_len || snd_buf->tail[0].iov_len) {
1450 tmp = page_address(rqstp->rq_enc_pages[rqstp->rq_enc_pages_num - 1]);
1451 memcpy(tmp, snd_buf->tail[0].iov_base, snd_buf->tail[0].iov_len);
1452 snd_buf->tail[0].iov_base = tmp;
1453 }
J. Bruce Fields00fd6e12005-10-13 16:55:18 -04001454 maj_stat = gss_wrap(ctx->gc_gss_ctx, offset, snd_buf, inpages);
Kevin Coffman75610422010-03-17 13:02:47 -04001455 /* slack space should prevent this ever happening: */
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001456 BUG_ON(snd_buf->len > snd_buf->buflen);
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001457 status = -EIO;
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001458 /* We're assuming that when GSS_S_CONTEXT_EXPIRED, the encryption was
1459 * done anyway, so it's safe to put the request on the wire: */
1460 if (maj_stat == GSS_S_CONTEXT_EXPIRED)
Trond Myklebustfc432dd2007-06-25 10:15:15 -04001461 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001462 else if (maj_stat)
1463 return status;
1464
1465 *opaque_len = htonl(snd_buf->len - offset);
1466 /* guess whether we're in the head or the tail: */
1467 if (snd_buf->page_len || snd_buf->tail[0].iov_len)
1468 iov = snd_buf->tail;
1469 else
1470 iov = snd_buf->head;
1471 p = iov->iov_base + iov->iov_len;
1472 pad = 3 - ((snd_buf->len - offset - 1) & 3);
1473 memset(p, 0, pad);
1474 iov->iov_len += pad;
1475 snd_buf->len += pad;
1476
1477 return 0;
1478}
1479
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480static int
1481gss_wrap_req(struct rpc_task *task,
Chuck Lever9f06c712010-12-14 14:59:18 +00001482 kxdreproc_t encode, void *rqstp, __be32 *p, void *obj)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483{
Trond Myklebusta17c2152010-07-31 14:29:08 -04001484 struct rpc_cred *cred = task->tk_rqstp->rq_cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 struct gss_cred *gss_cred = container_of(cred, struct gss_cred,
1486 gc_base);
1487 struct gss_cl_ctx *ctx = gss_cred_get_ctx(cred);
1488 int status = -EIO;
1489
Chuck Lever632f0d02012-09-14 17:23:43 -04001490 dprintk("RPC: %5u %s\n", task->tk_pid, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 if (ctx->gc_proc != RPC_GSS_PROC_DATA) {
1492 /* The spec seems a little ambiguous here, but I think that not
1493 * wrapping context destruction requests makes the most sense.
1494 */
Chuck Lever9f06c712010-12-14 14:59:18 +00001495 gss_wrap_req_encode(encode, rqstp, p, obj);
1496 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 goto out;
1498 }
1499 switch (gss_cred->gc_service) {
Joe Perches89f0e4f2011-07-01 09:43:12 +00001500 case RPC_GSS_SVC_NONE:
1501 gss_wrap_req_encode(encode, rqstp, p, obj);
1502 status = 0;
1503 break;
1504 case RPC_GSS_SVC_INTEGRITY:
1505 status = gss_wrap_req_integ(cred, ctx, encode, rqstp, p, obj);
1506 break;
1507 case RPC_GSS_SVC_PRIVACY:
1508 status = gss_wrap_req_priv(cred, ctx, encode, rqstp, p, obj);
1509 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 }
1511out:
1512 gss_put_ctx(ctx);
Chuck Lever632f0d02012-09-14 17:23:43 -04001513 dprintk("RPC: %5u %s returning %d\n", task->tk_pid, __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 return status;
1515}
1516
1517static inline int
1518gss_unwrap_resp_integ(struct rpc_cred *cred, struct gss_cl_ctx *ctx,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001519 struct rpc_rqst *rqstp, __be32 **p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520{
1521 struct xdr_buf *rcv_buf = &rqstp->rq_rcv_buf;
1522 struct xdr_buf integ_buf;
1523 struct xdr_netobj mic;
1524 u32 data_offset, mic_offset;
1525 u32 integ_len;
1526 u32 maj_stat;
1527 int status = -EIO;
1528
1529 integ_len = ntohl(*(*p)++);
1530 if (integ_len & 3)
1531 return status;
1532 data_offset = (u8 *)(*p) - (u8 *)rcv_buf->head[0].iov_base;
1533 mic_offset = integ_len + data_offset;
1534 if (mic_offset > rcv_buf->len)
1535 return status;
1536 if (ntohl(*(*p)++) != rqstp->rq_seqno)
1537 return status;
1538
1539 if (xdr_buf_subsegment(rcv_buf, &integ_buf, data_offset,
1540 mic_offset - data_offset))
1541 return status;
1542
1543 if (xdr_buf_read_netobj(rcv_buf, &mic, mic_offset))
1544 return status;
1545
J. Bruce Fields00fd6e12005-10-13 16:55:18 -04001546 maj_stat = gss_verify_mic(ctx->gc_gss_ctx, &integ_buf, &mic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 if (maj_stat == GSS_S_CONTEXT_EXPIRED)
Trond Myklebustfc432dd2007-06-25 10:15:15 -04001548 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 if (maj_stat != GSS_S_COMPLETE)
1550 return status;
1551 return 0;
1552}
1553
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001554static inline int
1555gss_unwrap_resp_priv(struct rpc_cred *cred, struct gss_cl_ctx *ctx,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001556 struct rpc_rqst *rqstp, __be32 **p)
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001557{
1558 struct xdr_buf *rcv_buf = &rqstp->rq_rcv_buf;
1559 u32 offset;
1560 u32 opaque_len;
1561 u32 maj_stat;
1562 int status = -EIO;
1563
1564 opaque_len = ntohl(*(*p)++);
1565 offset = (u8 *)(*p) - (u8 *)rcv_buf->head[0].iov_base;
1566 if (offset + opaque_len > rcv_buf->len)
1567 return status;
1568 /* remove padding: */
1569 rcv_buf->len = offset + opaque_len;
1570
J. Bruce Fields00fd6e12005-10-13 16:55:18 -04001571 maj_stat = gss_unwrap(ctx->gc_gss_ctx, offset, rcv_buf);
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001572 if (maj_stat == GSS_S_CONTEXT_EXPIRED)
Trond Myklebustfc432dd2007-06-25 10:15:15 -04001573 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001574 if (maj_stat != GSS_S_COMPLETE)
1575 return status;
1576 if (ntohl(*(*p)++) != rqstp->rq_seqno)
1577 return status;
1578
1579 return 0;
1580}
1581
Chuck Leverbf269552010-12-14 14:59:29 +00001582static int
1583gss_unwrap_req_decode(kxdrdproc_t decode, struct rpc_rqst *rqstp,
1584 __be32 *p, void *obj)
1585{
1586 struct xdr_stream xdr;
1587
1588 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
1589 return decode(rqstp, &xdr, obj);
1590}
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001591
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592static int
1593gss_unwrap_resp(struct rpc_task *task,
Chuck Leverbf269552010-12-14 14:59:29 +00001594 kxdrdproc_t decode, void *rqstp, __be32 *p, void *obj)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595{
Trond Myklebusta17c2152010-07-31 14:29:08 -04001596 struct rpc_cred *cred = task->tk_rqstp->rq_cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 struct gss_cred *gss_cred = container_of(cred, struct gss_cred,
1598 gc_base);
1599 struct gss_cl_ctx *ctx = gss_cred_get_ctx(cred);
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001600 __be32 *savedp = p;
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001601 struct kvec *head = ((struct rpc_rqst *)rqstp)->rq_rcv_buf.head;
1602 int savedlen = head->iov_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 int status = -EIO;
1604
1605 if (ctx->gc_proc != RPC_GSS_PROC_DATA)
1606 goto out_decode;
1607 switch (gss_cred->gc_service) {
Joe Perches89f0e4f2011-07-01 09:43:12 +00001608 case RPC_GSS_SVC_NONE:
1609 break;
1610 case RPC_GSS_SVC_INTEGRITY:
1611 status = gss_unwrap_resp_integ(cred, ctx, rqstp, &p);
1612 if (status)
1613 goto out;
1614 break;
1615 case RPC_GSS_SVC_PRIVACY:
1616 status = gss_unwrap_resp_priv(cred, ctx, rqstp, &p);
1617 if (status)
1618 goto out;
1619 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 }
J. Bruce Fields24b26052005-10-13 16:54:53 -04001621 /* take into account extra slack for integrity and privacy cases: */
Trond Myklebust1be27f32007-06-27 14:29:04 -04001622 cred->cr_auth->au_rslack = cred->cr_auth->au_verfsize + (p - savedp)
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001623 + (savedlen - head->iov_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624out_decode:
Chuck Leverbf269552010-12-14 14:59:29 +00001625 status = gss_unwrap_req_decode(decode, rqstp, p, obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626out:
1627 gss_put_ctx(ctx);
Chuck Lever632f0d02012-09-14 17:23:43 -04001628 dprintk("RPC: %5u %s returning %d\n",
1629 task->tk_pid, __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 return status;
1631}
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001632
Trond Myklebustf1c0a862007-06-23 20:17:58 -04001633static const struct rpc_authops authgss_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 .owner = THIS_MODULE,
1635 .au_flavor = RPC_AUTH_GSS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 .au_name = "RPCSEC_GSS",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 .create = gss_create,
1638 .destroy = gss_destroy,
1639 .lookup_cred = gss_lookup_cred,
Stanislav Kinsbursky80df9d22012-01-11 19:18:17 +04001640 .crcreate = gss_create_cred,
1641 .pipes_create = gss_pipes_dentries_create,
1642 .pipes_destroy = gss_pipes_dentries_destroy,
Chuck Lever6a1a1e32012-07-11 16:31:08 -04001643 .list_pseudoflavors = gss_mech_list_pseudoflavors,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644};
1645
Trond Myklebustf1c0a862007-06-23 20:17:58 -04001646static const struct rpc_credops gss_credops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 .cr_name = "AUTH_GSS",
1648 .crdestroy = gss_destroy_cred,
Trond Myklebustfba3bad2006-02-01 12:19:27 -05001649 .cr_init = gss_cred_init,
Trond Myklebust5c691042008-03-12 16:21:07 -04001650 .crbind = rpcauth_generic_bind_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 .crmatch = gss_match,
1652 .crmarshal = gss_marshal,
1653 .crrefresh = gss_refresh,
1654 .crvalidate = gss_validate,
1655 .crwrap_req = gss_wrap_req,
1656 .crunwrap_resp = gss_unwrap_resp,
1657};
1658
Trond Myklebust0df7fb72007-06-26 17:04:57 -04001659static const struct rpc_credops gss_nullops = {
1660 .cr_name = "AUTH_GSS",
Jeff Layton6dcd3922008-12-23 15:21:57 -05001661 .crdestroy = gss_destroy_nullcred,
Trond Myklebust5c691042008-03-12 16:21:07 -04001662 .crbind = rpcauth_generic_bind_cred,
Trond Myklebust0df7fb72007-06-26 17:04:57 -04001663 .crmatch = gss_match,
1664 .crmarshal = gss_marshal,
1665 .crrefresh = gss_refresh_null,
1666 .crvalidate = gss_validate,
1667 .crwrap_req = gss_wrap_req,
1668 .crunwrap_resp = gss_unwrap_resp,
1669};
1670
Trond Myklebustb693ba42009-08-09 15:14:15 -04001671static const struct rpc_pipe_ops gss_upcall_ops_v0 = {
Peng Taoc1225152011-09-22 21:50:10 -04001672 .upcall = rpc_pipe_generic_upcall,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 .downcall = gss_pipe_downcall,
1674 .destroy_msg = gss_pipe_destroy_msg,
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -05001675 .open_pipe = gss_pipe_open_v0,
1676 .release_pipe = gss_pipe_release,
1677};
1678
Trond Myklebustb693ba42009-08-09 15:14:15 -04001679static const struct rpc_pipe_ops gss_upcall_ops_v1 = {
Peng Taoc1225152011-09-22 21:50:10 -04001680 .upcall = rpc_pipe_generic_upcall,
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -05001681 .downcall = gss_pipe_downcall,
1682 .destroy_msg = gss_pipe_destroy_msg,
1683 .open_pipe = gss_pipe_open_v1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 .release_pipe = gss_pipe_release,
1685};
1686
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +04001687static __net_init int rpcsec_gss_init_net(struct net *net)
1688{
1689 return gss_svc_init_net(net);
1690}
1691
1692static __net_exit void rpcsec_gss_exit_net(struct net *net)
1693{
1694 gss_svc_shutdown_net(net);
1695}
1696
1697static struct pernet_operations rpcsec_gss_net_ops = {
1698 .init = rpcsec_gss_init_net,
1699 .exit = rpcsec_gss_exit_net,
1700};
1701
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702/*
1703 * Initialize RPCSEC_GSS module
1704 */
1705static int __init init_rpcsec_gss(void)
1706{
1707 int err = 0;
1708
1709 err = rpcauth_register(&authgss_ops);
1710 if (err)
1711 goto out;
1712 err = gss_svc_init();
1713 if (err)
1714 goto out_unregister;
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +04001715 err = register_pernet_subsys(&rpcsec_gss_net_ops);
1716 if (err)
1717 goto out_svc_exit;
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -05001718 rpc_init_wait_queue(&pipe_version_rpc_waitqueue, "gss pipe version");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 return 0;
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +04001720out_svc_exit:
1721 gss_svc_shutdown();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722out_unregister:
1723 rpcauth_unregister(&authgss_ops);
1724out:
1725 return err;
1726}
1727
1728static void __exit exit_rpcsec_gss(void)
1729{
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +04001730 unregister_pernet_subsys(&rpcsec_gss_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 gss_svc_shutdown();
1732 rpcauth_unregister(&authgss_ops);
Jesper Dangaard Brouerbf126912009-06-08 03:11:48 +00001733 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734}
1735
1736MODULE_LICENSE("GPL");
Trond Myklebust126e2162010-05-13 12:55:38 -04001737module_param_named(expired_cred_retry_delay,
1738 gss_expired_cred_retry_delay,
1739 uint, 0644);
1740MODULE_PARM_DESC(expired_cred_retry_delay, "Timeout (in seconds) until "
1741 "the RPC engine retries an expired credential");
1742
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743module_init(init_rpcsec_gss)
1744module_exit(exit_rpcsec_gss)