blob: c389ccf6437d5870868ec49f489b3f07f131ed46 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Uwe Zeisbergerf30c2262006-10-03 23:01:26 +02002 * linux/net/sunrpc/auth_gss/auth_gss.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * RPCSEC_GSS client authentication.
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08005 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Copyright (c) 2000 The Regents of the University of Michigan.
7 * All rights reserved.
8 *
9 * Dug Song <dugsong@monkey.org>
10 * Andy Adamson <andros@umich.edu>
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 *
16 * 1. Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
18 * 2. Redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution.
21 * 3. Neither the name of the University nor the names of its
22 * contributors may be used to endorse or promote products derived
23 * from this software without specific prior written permission.
24 *
25 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
26 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
27 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
28 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
32 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
34 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 */
37
38
39#include <linux/module.h>
40#include <linux/init.h>
41#include <linux/types.h>
42#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/sched.h>
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -040044#include <linux/pagemap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/sunrpc/clnt.h>
46#include <linux/sunrpc/auth.h>
47#include <linux/sunrpc/auth_gss.h>
48#include <linux/sunrpc/svcauth_gss.h>
49#include <linux/sunrpc/gss_err.h>
50#include <linux/workqueue.h>
51#include <linux/sunrpc/rpc_pipe_fs.h>
52#include <linux/sunrpc/gss_api.h>
53#include <asm/uaccess.h>
54
Trond Myklebustf1c0a862007-06-23 20:17:58 -040055static const struct rpc_authops authgss_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Trond Myklebustf1c0a862007-06-23 20:17:58 -040057static const struct rpc_credops gss_credops;
Trond Myklebust0df7fb72007-06-26 17:04:57 -040058static const struct rpc_credops gss_nullops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60#ifdef RPC_DEBUG
61# define RPCDBG_FACILITY RPCDBG_AUTH
62#endif
63
\\\"J. Bruce Fields\\\d25a03c2008-06-09 16:51:34 -040064#define GSS_CRED_SLACK 1024
Linus Torvalds1da177e2005-04-16 15:20:36 -070065/* length of a krb5 verifier (48), plus data added before arguments when
66 * using integrity (two 4-byte integers): */
Olga Kornievskaiaadeb8132006-12-04 20:22:34 -050067#define GSS_VERF_SLACK 100
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Linus Torvalds1da177e2005-04-16 15:20:36 -070069struct gss_auth {
Trond Myklebust0285ed12007-06-27 14:29:12 -040070 struct kref kref;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 struct rpc_auth rpc_auth;
72 struct gss_api_mech *mech;
73 enum rpc_gss_svc service;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 struct rpc_clnt *client;
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -050075 /*
76 * There are two upcall pipes; dentry[1], named "gssd", is used
77 * for the new text-based upcall; dentry[0] is named after the
78 * mechanism (for example, "krb5") and exists for
79 * backwards-compatibility with older gssd's.
80 */
81 struct dentry *dentry[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -070082};
83
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -050084/* pipe_version >= 0 if and only if someone has a pipe open. */
85static int pipe_version = -1;
\"J. Bruce Fields\cf819392008-12-23 16:10:19 -050086static atomic_t pipe_users = ATOMIC_INIT(0);
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -050087static DEFINE_SPINLOCK(pipe_version_lock);
88static struct rpc_wait_queue pipe_version_rpc_waitqueue;
89static DECLARE_WAIT_QUEUE_HEAD(pipe_version_waitqueue);
\"J. Bruce Fields\cf819392008-12-23 16:10:19 -050090
Trond Myklebust5d28dc82007-06-26 19:18:38 -040091static void gss_free_ctx(struct gss_cl_ctx *);
Trond Myklebustb693ba42009-08-09 15:14:15 -040092static const struct rpc_pipe_ops gss_upcall_ops_v0;
93static const struct rpc_pipe_ops gss_upcall_ops_v1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Linus Torvalds1da177e2005-04-16 15:20:36 -070095static inline struct gss_cl_ctx *
96gss_get_ctx(struct gss_cl_ctx *ctx)
97{
98 atomic_inc(&ctx->count);
99 return ctx;
100}
101
102static inline void
103gss_put_ctx(struct gss_cl_ctx *ctx)
104{
105 if (atomic_dec_and_test(&ctx->count))
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400106 gss_free_ctx(ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107}
108
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400109/* gss_cred_set_ctx:
110 * called by gss_upcall_callback and gss_create_upcall in order
111 * to set the gss context. The actual exchange of an old context
112 * and a new one is protected by the inode->i_lock.
113 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114static void
115gss_cred_set_ctx(struct rpc_cred *cred, struct gss_cl_ctx *ctx)
116{
117 struct gss_cred *gss_cred = container_of(cred, struct gss_cred, gc_base);
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400118
Trond Myklebustcd019f72008-04-17 17:03:58 -0400119 if (!test_bit(RPCAUTH_CRED_NEW, &cred->cr_flags))
120 return;
Trond Myklebust7b6962b2008-04-17 16:53:01 -0400121 gss_get_ctx(ctx);
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400122 rcu_assign_pointer(gss_cred->gc_ctx, ctx);
Trond Myklebustfc432dd2007-06-25 10:15:15 -0400123 set_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
Trond Myklebustcd019f72008-04-17 17:03:58 -0400124 smp_mb__before_clear_bit();
Trond Myklebustfc432dd2007-06-25 10:15:15 -0400125 clear_bit(RPCAUTH_CRED_NEW, &cred->cr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126}
127
128static const void *
129simple_get_bytes(const void *p, const void *end, void *res, size_t len)
130{
131 const void *q = (const void *)((const char *)p + len);
132 if (unlikely(q > end || q < p))
133 return ERR_PTR(-EFAULT);
134 memcpy(res, p, len);
135 return q;
136}
137
138static inline const void *
139simple_get_netobj(const void *p, const void *end, struct xdr_netobj *dest)
140{
141 const void *q;
142 unsigned int len;
143
144 p = simple_get_bytes(p, end, &len, sizeof(len));
145 if (IS_ERR(p))
146 return p;
147 q = (const void *)((const char *)p + len);
148 if (unlikely(q > end || q < p))
149 return ERR_PTR(-EFAULT);
Trond Myklebust0f38b872008-06-10 18:31:01 -0400150 dest->data = kmemdup(p, len, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 if (unlikely(dest->data == NULL))
152 return ERR_PTR(-ENOMEM);
153 dest->len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 return q;
155}
156
157static struct gss_cl_ctx *
158gss_cred_get_ctx(struct rpc_cred *cred)
159{
160 struct gss_cred *gss_cred = container_of(cred, struct gss_cred, gc_base);
161 struct gss_cl_ctx *ctx = NULL;
162
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400163 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 if (gss_cred->gc_ctx)
165 ctx = gss_get_ctx(gss_cred->gc_ctx);
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400166 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 return ctx;
168}
169
170static struct gss_cl_ctx *
171gss_alloc_context(void)
172{
173 struct gss_cl_ctx *ctx;
174
Trond Myklebust0f38b872008-06-10 18:31:01 -0400175 ctx = kzalloc(sizeof(*ctx), GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 if (ctx != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 ctx->gc_proc = RPC_GSS_PROC_DATA;
178 ctx->gc_seq = 1; /* NetApp 6.4R1 doesn't accept seq. no. 0 */
179 spin_lock_init(&ctx->gc_seq_lock);
180 atomic_set(&ctx->count,1);
181 }
182 return ctx;
183}
184
185#define GSSD_MIN_TIMEOUT (60 * 60)
186static const void *
187gss_fill_context(const void *p, const void *end, struct gss_cl_ctx *ctx, struct gss_api_mech *gm)
188{
189 const void *q;
190 unsigned int seclen;
191 unsigned int timeout;
192 u32 window_size;
193 int ret;
194
195 /* First unsigned int gives the lifetime (in seconds) of the cred */
196 p = simple_get_bytes(p, end, &timeout, sizeof(timeout));
197 if (IS_ERR(p))
198 goto err;
199 if (timeout == 0)
200 timeout = GSSD_MIN_TIMEOUT;
201 ctx->gc_expiry = jiffies + (unsigned long)timeout * HZ * 3 / 4;
202 /* Sequence number window. Determines the maximum number of simultaneous requests */
203 p = simple_get_bytes(p, end, &window_size, sizeof(window_size));
204 if (IS_ERR(p))
205 goto err;
206 ctx->gc_win = window_size;
207 /* gssd signals an error by passing ctx->gc_win = 0: */
208 if (ctx->gc_win == 0) {
Jeff Laytondc5ddce2010-01-07 09:42:02 -0500209 /*
210 * in which case, p points to an error code. Anything other
211 * than -EKEYEXPIRED gets converted to -EACCES.
212 */
213 p = simple_get_bytes(p, end, &ret, sizeof(ret));
214 if (!IS_ERR(p))
215 p = (ret == -EKEYEXPIRED) ? ERR_PTR(-EKEYEXPIRED) :
216 ERR_PTR(-EACCES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 goto err;
218 }
219 /* copy the opaque wire context */
220 p = simple_get_netobj(p, end, &ctx->gc_wire_ctx);
221 if (IS_ERR(p))
222 goto err;
223 /* import the opaque security context */
224 p = simple_get_bytes(p, end, &seclen, sizeof(seclen));
225 if (IS_ERR(p))
226 goto err;
227 q = (const void *)((const char *)p + seclen);
228 if (unlikely(q > end || q < p)) {
229 p = ERR_PTR(-EFAULT);
230 goto err;
231 }
232 ret = gss_import_sec_context(p, seclen, gm, &ctx->gc_gss_ctx);
233 if (ret < 0) {
234 p = ERR_PTR(ret);
235 goto err;
236 }
237 return q;
238err:
Chuck Lever8885cb32007-01-31 12:14:05 -0500239 dprintk("RPC: gss_fill_context returning %ld\n", -PTR_ERR(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 return p;
241}
242
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500243#define UPCALL_BUF_LEN 128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
245struct gss_upcall_msg {
246 atomic_t count;
247 uid_t uid;
248 struct rpc_pipe_msg msg;
249 struct list_head list;
250 struct gss_auth *auth;
\"J. Bruce Fields\5b7ddd42008-12-23 16:15:44 -0500251 struct rpc_inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 struct rpc_wait_queue rpc_waitqueue;
253 wait_queue_head_t waitqueue;
254 struct gss_cl_ctx *ctx;
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500255 char databuf[UPCALL_BUF_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256};
257
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500258static int get_pipe_version(void)
259{
260 int ret;
261
262 spin_lock(&pipe_version_lock);
263 if (pipe_version >= 0) {
264 atomic_inc(&pipe_users);
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500265 ret = pipe_version;
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500266 } else
267 ret = -EAGAIN;
268 spin_unlock(&pipe_version_lock);
269 return ret;
270}
271
272static void put_pipe_version(void)
273{
274 if (atomic_dec_and_lock(&pipe_users, &pipe_version_lock)) {
275 pipe_version = -1;
276 spin_unlock(&pipe_version_lock);
277 }
278}
279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280static void
281gss_release_msg(struct gss_upcall_msg *gss_msg)
282{
283 if (!atomic_dec_and_test(&gss_msg->count))
284 return;
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500285 put_pipe_version();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 BUG_ON(!list_empty(&gss_msg->list));
287 if (gss_msg->ctx != NULL)
288 gss_put_ctx(gss_msg->ctx);
Trond Myklebustf6a1cc82008-02-22 17:06:55 -0500289 rpc_destroy_wait_queue(&gss_msg->rpc_waitqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 kfree(gss_msg);
291}
292
293static struct gss_upcall_msg *
Trond Myklebust6e84c7b2007-06-07 15:31:36 -0400294__gss_find_upcall(struct rpc_inode *rpci, uid_t uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
296 struct gss_upcall_msg *pos;
Trond Myklebust6e84c7b2007-06-07 15:31:36 -0400297 list_for_each_entry(pos, &rpci->in_downcall, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 if (pos->uid != uid)
299 continue;
300 atomic_inc(&pos->count);
Chuck Lever8885cb32007-01-31 12:14:05 -0500301 dprintk("RPC: gss_find_upcall found msg %p\n", pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 return pos;
303 }
Chuck Lever8885cb32007-01-31 12:14:05 -0500304 dprintk("RPC: gss_find_upcall found nothing\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 return NULL;
306}
307
\\\"J. Bruce Fields\\\720b8f22008-06-09 16:51:33 -0400308/* Try to add an upcall to the pipefs queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 * If an upcall owned by our uid already exists, then we return a reference
310 * to that upcall instead of adding the new upcall.
311 */
312static inline struct gss_upcall_msg *
Suresh Jayaraman053e3242009-12-09 23:15:22 +0530313gss_add_msg(struct gss_upcall_msg *gss_msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
\"J. Bruce Fields\5b7ddd42008-12-23 16:15:44 -0500315 struct rpc_inode *rpci = gss_msg->inode;
316 struct inode *inode = &rpci->vfs_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 struct gss_upcall_msg *old;
318
Trond Myklebustb185f832007-06-07 10:14:14 -0400319 spin_lock(&inode->i_lock);
Trond Myklebust6e84c7b2007-06-07 15:31:36 -0400320 old = __gss_find_upcall(rpci, gss_msg->uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 if (old == NULL) {
322 atomic_inc(&gss_msg->count);
Trond Myklebust6e84c7b2007-06-07 15:31:36 -0400323 list_add(&gss_msg->list, &rpci->in_downcall);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 } else
325 gss_msg = old;
Trond Myklebustb185f832007-06-07 10:14:14 -0400326 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 return gss_msg;
328}
329
330static void
331__gss_unhash_msg(struct gss_upcall_msg *gss_msg)
332{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 list_del_init(&gss_msg->list);
334 rpc_wake_up_status(&gss_msg->rpc_waitqueue, gss_msg->msg.errno);
335 wake_up_all(&gss_msg->waitqueue);
336 atomic_dec(&gss_msg->count);
337}
338
339static void
340gss_unhash_msg(struct gss_upcall_msg *gss_msg)
341{
\"J. Bruce Fields\5b7ddd42008-12-23 16:15:44 -0500342 struct inode *inode = &gss_msg->inode->vfs_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400344 if (list_empty(&gss_msg->list))
345 return;
Trond Myklebustb185f832007-06-07 10:14:14 -0400346 spin_lock(&inode->i_lock);
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400347 if (!list_empty(&gss_msg->list))
348 __gss_unhash_msg(gss_msg);
Trond Myklebustb185f832007-06-07 10:14:14 -0400349 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350}
351
352static void
353gss_upcall_callback(struct rpc_task *task)
354{
355 struct gss_cred *gss_cred = container_of(task->tk_msg.rpc_cred,
356 struct gss_cred, gc_base);
357 struct gss_upcall_msg *gss_msg = gss_cred->gc_upcall;
\"J. Bruce Fields\5b7ddd42008-12-23 16:15:44 -0500358 struct inode *inode = &gss_msg->inode->vfs_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400360 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 if (gss_msg->ctx)
Trond Myklebust7b6962b2008-04-17 16:53:01 -0400362 gss_cred_set_ctx(task->tk_msg.rpc_cred, gss_msg->ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 else
364 task->tk_status = gss_msg->msg.errno;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 gss_cred->gc_upcall = NULL;
366 rpc_wake_up_status(&gss_msg->rpc_waitqueue, gss_msg->msg.errno);
Trond Myklebustb185f832007-06-07 10:14:14 -0400367 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 gss_release_msg(gss_msg);
369}
370
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500371static void gss_encode_v0_msg(struct gss_upcall_msg *gss_msg)
372{
373 gss_msg->msg.data = &gss_msg->uid;
374 gss_msg->msg.len = sizeof(gss_msg->uid);
375}
376
Olga Kornievskaia8b1c7bf2008-12-23 16:19:26 -0500377static void gss_encode_v1_msg(struct gss_upcall_msg *gss_msg,
Olga Kornievskaia2efef702008-12-23 16:19:56 -0500378 struct rpc_clnt *clnt, int machine_cred)
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500379{
Olga Kornievskaia8b1c7bf2008-12-23 16:19:26 -0500380 char *p = gss_msg->databuf;
381 int len = 0;
382
383 gss_msg->msg.len = sprintf(gss_msg->databuf, "mech=%s uid=%d ",
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500384 gss_msg->auth->mech->gm_name,
385 gss_msg->uid);
Olga Kornievskaia8b1c7bf2008-12-23 16:19:26 -0500386 p += gss_msg->msg.len;
387 if (clnt->cl_principal) {
388 len = sprintf(p, "target=%s ", clnt->cl_principal);
389 p += len;
390 gss_msg->msg.len += len;
391 }
Olga Kornievskaia2efef702008-12-23 16:19:56 -0500392 if (machine_cred) {
393 len = sprintf(p, "service=* ");
394 p += len;
395 gss_msg->msg.len += len;
396 } else if (!strcmp(clnt->cl_program->name, "nfs4_cb")) {
397 len = sprintf(p, "service=nfs ");
398 p += len;
399 gss_msg->msg.len += len;
400 }
Olga Kornievskaia8b1c7bf2008-12-23 16:19:26 -0500401 len = sprintf(p, "\n");
402 gss_msg->msg.len += len;
403
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500404 gss_msg->msg.data = gss_msg->databuf;
405 BUG_ON(gss_msg->msg.len > UPCALL_BUF_LEN);
406}
407
Olga Kornievskaia8b1c7bf2008-12-23 16:19:26 -0500408static void gss_encode_msg(struct gss_upcall_msg *gss_msg,
Olga Kornievskaia2efef702008-12-23 16:19:56 -0500409 struct rpc_clnt *clnt, int machine_cred)
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500410{
411 if (pipe_version == 0)
412 gss_encode_v0_msg(gss_msg);
413 else /* pipe_version == 1 */
Olga Kornievskaia2efef702008-12-23 16:19:56 -0500414 gss_encode_v1_msg(gss_msg, clnt, machine_cred);
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500415}
416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417static inline struct gss_upcall_msg *
Olga Kornievskaia2efef702008-12-23 16:19:56 -0500418gss_alloc_msg(struct gss_auth *gss_auth, uid_t uid, struct rpc_clnt *clnt,
419 int machine_cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420{
421 struct gss_upcall_msg *gss_msg;
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500422 int vers;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Trond Myklebust0f38b872008-06-10 18:31:01 -0400424 gss_msg = kzalloc(sizeof(*gss_msg), GFP_NOFS);
\"J. Bruce Fields\db75b3d2008-12-23 16:07:13 -0500425 if (gss_msg == NULL)
426 return ERR_PTR(-ENOMEM);
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500427 vers = get_pipe_version();
428 if (vers < 0) {
429 kfree(gss_msg);
430 return ERR_PTR(vers);
431 }
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500432 gss_msg->inode = RPC_I(gss_auth->dentry[vers]->d_inode);
\"J. Bruce Fields\db75b3d2008-12-23 16:07:13 -0500433 INIT_LIST_HEAD(&gss_msg->list);
434 rpc_init_wait_queue(&gss_msg->rpc_waitqueue, "RPCSEC_GSS upcall waitq");
435 init_waitqueue_head(&gss_msg->waitqueue);
436 atomic_set(&gss_msg->count, 1);
\"J. Bruce Fields\db75b3d2008-12-23 16:07:13 -0500437 gss_msg->uid = uid;
438 gss_msg->auth = gss_auth;
Olga Kornievskaia2efef702008-12-23 16:19:56 -0500439 gss_encode_msg(gss_msg, clnt, machine_cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 return gss_msg;
441}
442
443static struct gss_upcall_msg *
444gss_setup_upcall(struct rpc_clnt *clnt, struct gss_auth *gss_auth, struct rpc_cred *cred)
445{
Trond Myklebust7c67db32008-04-07 20:50:11 -0400446 struct gss_cred *gss_cred = container_of(cred,
447 struct gss_cred, gc_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 struct gss_upcall_msg *gss_new, *gss_msg;
Trond Myklebust7c67db32008-04-07 20:50:11 -0400449 uid_t uid = cred->cr_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Olga Kornievskaia2efef702008-12-23 16:19:56 -0500451 gss_new = gss_alloc_msg(gss_auth, uid, clnt, gss_cred->gc_machine_cred);
\"J. Bruce Fields\db75b3d2008-12-23 16:07:13 -0500452 if (IS_ERR(gss_new))
453 return gss_new;
Suresh Jayaraman053e3242009-12-09 23:15:22 +0530454 gss_msg = gss_add_msg(gss_new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 if (gss_msg == gss_new) {
\"J. Bruce Fields\5b7ddd42008-12-23 16:15:44 -0500456 struct inode *inode = &gss_new->inode->vfs_inode;
457 int res = rpc_queue_upcall(inode, &gss_new->msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 if (res) {
459 gss_unhash_msg(gss_new);
460 gss_msg = ERR_PTR(res);
461 }
462 } else
463 gss_release_msg(gss_new);
464 return gss_msg;
465}
466
\"J. Bruce Fields\b03568c2008-12-23 16:06:55 -0500467static void warn_gssd(void)
468{
469 static unsigned long ratelimit;
470 unsigned long now = jiffies;
471
472 if (time_after(now, ratelimit)) {
473 printk(KERN_WARNING "RPC: AUTH_GSS upcall timed out.\n"
474 "Please check user daemon is running.\n");
475 ratelimit = now + 15*HZ;
476 }
477}
478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479static inline int
480gss_refresh_upcall(struct rpc_task *task)
481{
482 struct rpc_cred *cred = task->tk_msg.rpc_cred;
Trond Myklebust4a8c1342007-06-07 10:14:14 -0400483 struct gss_auth *gss_auth = container_of(cred->cr_auth,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 struct gss_auth, rpc_auth);
485 struct gss_cred *gss_cred = container_of(cred,
486 struct gss_cred, gc_base);
487 struct gss_upcall_msg *gss_msg;
\"J. Bruce Fields\5b7ddd42008-12-23 16:15:44 -0500488 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 int err = 0;
490
Chuck Lever8885cb32007-01-31 12:14:05 -0500491 dprintk("RPC: %5u gss_refresh_upcall for uid %u\n", task->tk_pid,
492 cred->cr_uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 gss_msg = gss_setup_upcall(task->tk_client, gss_auth, cred);
Roel Kluin480e3242009-12-08 13:13:03 -0500494 if (PTR_ERR(gss_msg) == -EAGAIN) {
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500495 /* XXX: warning on the first, under the assumption we
496 * shouldn't normally hit this case on a refresh. */
497 warn_gssd();
498 task->tk_timeout = 15*HZ;
499 rpc_sleep_on(&pipe_version_rpc_waitqueue, task, NULL);
500 return 0;
501 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 if (IS_ERR(gss_msg)) {
503 err = PTR_ERR(gss_msg);
504 goto out;
505 }
\"J. Bruce Fields\5b7ddd42008-12-23 16:15:44 -0500506 inode = &gss_msg->inode->vfs_inode;
Trond Myklebustb185f832007-06-07 10:14:14 -0400507 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 if (gss_cred->gc_upcall != NULL)
Trond Myklebust5d008372008-02-22 16:34:17 -0500509 rpc_sleep_on(&gss_cred->gc_upcall->rpc_waitqueue, task, NULL);
Trond Myklebust7b6962b2008-04-17 16:53:01 -0400510 else if (gss_msg->ctx != NULL) {
511 gss_cred_set_ctx(task->tk_msg.rpc_cred, gss_msg->ctx);
512 gss_cred->gc_upcall = NULL;
513 rpc_wake_up_status(&gss_msg->rpc_waitqueue, gss_msg->msg.errno);
514 } else if (gss_msg->msg.errno >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 task->tk_timeout = 0;
516 gss_cred->gc_upcall = gss_msg;
517 /* gss_upcall_callback will release the reference to gss_upcall_msg */
518 atomic_inc(&gss_msg->count);
Trond Myklebust5d008372008-02-22 16:34:17 -0500519 rpc_sleep_on(&gss_msg->rpc_waitqueue, task, gss_upcall_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 } else
521 err = gss_msg->msg.errno;
Trond Myklebustb185f832007-06-07 10:14:14 -0400522 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 gss_release_msg(gss_msg);
524out:
Chuck Lever8885cb32007-01-31 12:14:05 -0500525 dprintk("RPC: %5u gss_refresh_upcall for uid %u result %d\n",
526 task->tk_pid, cred->cr_uid, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 return err;
528}
529
530static inline int
531gss_create_upcall(struct gss_auth *gss_auth, struct gss_cred *gss_cred)
532{
\"J. Bruce Fields\5b7ddd42008-12-23 16:15:44 -0500533 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 struct rpc_cred *cred = &gss_cred->gc_base;
535 struct gss_upcall_msg *gss_msg;
536 DEFINE_WAIT(wait);
537 int err = 0;
538
Chuck Lever8885cb32007-01-31 12:14:05 -0500539 dprintk("RPC: gss_upcall for uid %u\n", cred->cr_uid);
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500540retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 gss_msg = gss_setup_upcall(gss_auth->client, gss_auth, cred);
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500542 if (PTR_ERR(gss_msg) == -EAGAIN) {
543 err = wait_event_interruptible_timeout(pipe_version_waitqueue,
544 pipe_version >= 0, 15*HZ);
545 if (err)
546 goto out;
547 if (pipe_version < 0)
548 warn_gssd();
549 goto retry;
550 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 if (IS_ERR(gss_msg)) {
552 err = PTR_ERR(gss_msg);
553 goto out;
554 }
\"J. Bruce Fields\5b7ddd42008-12-23 16:15:44 -0500555 inode = &gss_msg->inode->vfs_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 for (;;) {
557 prepare_to_wait(&gss_msg->waitqueue, &wait, TASK_INTERRUPTIBLE);
Trond Myklebustb185f832007-06-07 10:14:14 -0400558 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 if (gss_msg->ctx != NULL || gss_msg->msg.errno < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 break;
561 }
Trond Myklebustb185f832007-06-07 10:14:14 -0400562 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 if (signalled()) {
564 err = -ERESTARTSYS;
565 goto out_intr;
566 }
567 schedule();
568 }
569 if (gss_msg->ctx)
Trond Myklebust7b6962b2008-04-17 16:53:01 -0400570 gss_cred_set_ctx(cred, gss_msg->ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 else
572 err = gss_msg->msg.errno;
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400573 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574out_intr:
575 finish_wait(&gss_msg->waitqueue, &wait);
576 gss_release_msg(gss_msg);
577out:
Chuck Lever8885cb32007-01-31 12:14:05 -0500578 dprintk("RPC: gss_create_upcall for uid %u result %d\n",
579 cred->cr_uid, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 return err;
581}
582
583static ssize_t
584gss_pipe_upcall(struct file *filp, struct rpc_pipe_msg *msg,
585 char __user *dst, size_t buflen)
586{
587 char *data = (char *)msg->data + msg->copied;
Chuck Lever7df08992007-12-20 14:54:27 -0500588 size_t mlen = min(msg->len, buflen);
589 unsigned long left;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 left = copy_to_user(dst, data, mlen);
Chuck Lever7df08992007-12-20 14:54:27 -0500592 if (left == mlen) {
593 msg->errno = -EFAULT;
594 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 }
Chuck Lever7df08992007-12-20 14:54:27 -0500596
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 mlen -= left;
598 msg->copied += mlen;
599 msg->errno = 0;
600 return mlen;
601}
602
603#define MSG_BUF_MAXSIZE 1024
604
605static ssize_t
606gss_pipe_downcall(struct file *filp, const char __user *src, size_t mlen)
607{
608 const void *p, *end;
609 void *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 struct gss_upcall_msg *gss_msg;
Trond Myklebustb185f832007-06-07 10:14:14 -0400611 struct inode *inode = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 struct gss_cl_ctx *ctx;
613 uid_t uid;
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400614 ssize_t err = -EFBIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
616 if (mlen > MSG_BUF_MAXSIZE)
617 goto out;
618 err = -ENOMEM;
Trond Myklebust0f38b872008-06-10 18:31:01 -0400619 buf = kmalloc(mlen, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 if (!buf)
621 goto out;
622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 err = -EFAULT;
624 if (copy_from_user(buf, src, mlen))
625 goto err;
626
627 end = (const void *)((char *)buf + mlen);
628 p = simple_get_bytes(buf, end, &uid, sizeof(uid));
629 if (IS_ERR(p)) {
630 err = PTR_ERR(p);
631 goto err;
632 }
633
634 err = -ENOMEM;
635 ctx = gss_alloc_context();
636 if (ctx == NULL)
637 goto err;
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400638
639 err = -ENOENT;
640 /* Find a matching upcall */
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400641 spin_lock(&inode->i_lock);
Trond Myklebust6e84c7b2007-06-07 15:31:36 -0400642 gss_msg = __gss_find_upcall(RPC_I(inode), uid);
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400643 if (gss_msg == NULL) {
644 spin_unlock(&inode->i_lock);
645 goto err_put_ctx;
646 }
647 list_del_init(&gss_msg->list);
648 spin_unlock(&inode->i_lock);
649
Trond Myklebust6e84c7b2007-06-07 15:31:36 -0400650 p = gss_fill_context(p, end, ctx, gss_msg->auth->mech);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 if (IS_ERR(p)) {
652 err = PTR_ERR(p);
Jeff Layton486bad22009-12-18 16:28:20 -0500653 switch (err) {
654 case -EACCES:
Jeff Laytondc5ddce2010-01-07 09:42:02 -0500655 case -EKEYEXPIRED:
Jeff Layton486bad22009-12-18 16:28:20 -0500656 gss_msg->msg.errno = err;
657 err = mlen;
658 break;
659 case -EFAULT:
660 case -ENOMEM:
661 case -EINVAL:
662 case -ENOSYS:
663 gss_msg->msg.errno = -EAGAIN;
664 break;
665 default:
666 printk(KERN_CRIT "%s: bad return from "
Randy Dunlap6c853092010-01-06 17:26:27 -0500667 "gss_fill_context: %zd\n", __func__, err);
Jeff Layton486bad22009-12-18 16:28:20 -0500668 BUG();
669 }
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400670 goto err_release_msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 }
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400672 gss_msg->ctx = gss_get_ctx(ctx);
673 err = mlen;
674
675err_release_msg:
Trond Myklebustb185f832007-06-07 10:14:14 -0400676 spin_lock(&inode->i_lock);
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400677 __gss_unhash_msg(gss_msg);
678 spin_unlock(&inode->i_lock);
679 gss_release_msg(gss_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680err_put_ctx:
681 gss_put_ctx(ctx);
682err:
683 kfree(buf);
684out:
Trond Myklebust3b68aae2007-06-07 10:14:15 -0400685 dprintk("RPC: gss_pipe_downcall returning %Zd\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 return err;
687}
688
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500689static int gss_pipe_open(struct inode *inode, int new_version)
\"J. Bruce Fields\cf819392008-12-23 16:10:19 -0500690{
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500691 int ret = 0;
692
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500693 spin_lock(&pipe_version_lock);
694 if (pipe_version < 0) {
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500695 /* First open of any gss pipe determines the version: */
696 pipe_version = new_version;
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500697 rpc_wake_up(&pipe_version_rpc_waitqueue);
698 wake_up(&pipe_version_waitqueue);
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500699 } else if (pipe_version != new_version) {
700 /* Trying to open a pipe of a different version */
701 ret = -EBUSY;
702 goto out;
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500703 }
\"J. Bruce Fields\cf819392008-12-23 16:10:19 -0500704 atomic_inc(&pipe_users);
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500705out:
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500706 spin_unlock(&pipe_version_lock);
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500707 return ret;
708
709}
710
711static int gss_pipe_open_v0(struct inode *inode)
712{
713 return gss_pipe_open(inode, 0);
714}
715
716static int gss_pipe_open_v1(struct inode *inode)
717{
718 return gss_pipe_open(inode, 1);
\"J. Bruce Fields\cf819392008-12-23 16:10:19 -0500719}
720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721static void
722gss_pipe_release(struct inode *inode)
723{
724 struct rpc_inode *rpci = RPC_I(inode);
Trond Myklebust6e84c7b2007-06-07 15:31:36 -0400725 struct gss_upcall_msg *gss_msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Trond Myklebustb185f832007-06-07 10:14:14 -0400727 spin_lock(&inode->i_lock);
Trond Myklebust6e84c7b2007-06-07 15:31:36 -0400728 while (!list_empty(&rpci->in_downcall)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
Trond Myklebust6e84c7b2007-06-07 15:31:36 -0400730 gss_msg = list_entry(rpci->in_downcall.next,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 struct gss_upcall_msg, list);
732 gss_msg->msg.errno = -EPIPE;
733 atomic_inc(&gss_msg->count);
734 __gss_unhash_msg(gss_msg);
Trond Myklebustb185f832007-06-07 10:14:14 -0400735 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 gss_release_msg(gss_msg);
Trond Myklebustb185f832007-06-07 10:14:14 -0400737 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 }
Trond Myklebustb185f832007-06-07 10:14:14 -0400739 spin_unlock(&inode->i_lock);
\"J. Bruce Fields\cf819392008-12-23 16:10:19 -0500740
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -0500741 put_pipe_version();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742}
743
744static void
745gss_pipe_destroy_msg(struct rpc_pipe_msg *msg)
746{
747 struct gss_upcall_msg *gss_msg = container_of(msg, struct gss_upcall_msg, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
749 if (msg->errno < 0) {
Chuck Lever8885cb32007-01-31 12:14:05 -0500750 dprintk("RPC: gss_pipe_destroy_msg releasing msg %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 gss_msg);
752 atomic_inc(&gss_msg->count);
753 gss_unhash_msg(gss_msg);
\"J. Bruce Fields\b03568c2008-12-23 16:06:55 -0500754 if (msg->errno == -ETIMEDOUT)
755 warn_gssd();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 gss_release_msg(gss_msg);
757 }
758}
759
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800760/*
761 * NOTE: we have the opportunity to use different
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 * parameters based on the input flavor (which must be a pseudoflavor)
763 */
764static struct rpc_auth *
765gss_create(struct rpc_clnt *clnt, rpc_authflavor_t flavor)
766{
767 struct gss_auth *gss_auth;
768 struct rpc_auth * auth;
J. Bruce Fields6a192752005-06-22 17:16:23 +0000769 int err = -ENOMEM; /* XXX? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
Chuck Lever8885cb32007-01-31 12:14:05 -0500771 dprintk("RPC: creating GSS authenticator for client %p\n", clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
773 if (!try_module_get(THIS_MODULE))
J. Bruce Fields6a192752005-06-22 17:16:23 +0000774 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 if (!(gss_auth = kmalloc(sizeof(*gss_auth), GFP_KERNEL)))
776 goto out_dec;
777 gss_auth->client = clnt;
J. Bruce Fields6a192752005-06-22 17:16:23 +0000778 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 gss_auth->mech = gss_mech_get_by_pseudoflavor(flavor);
780 if (!gss_auth->mech) {
James Morris3392c342007-12-26 11:20:43 +1100781 printk(KERN_WARNING "%s: Pseudoflavor %d not found!\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800782 __func__, flavor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 goto err_free;
784 }
785 gss_auth->service = gss_pseudoflavor_to_service(gss_auth->mech, flavor);
J. Bruce Fields438b6fd2005-06-22 17:16:23 +0000786 if (gss_auth->service == 0)
787 goto err_put_mech;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 auth = &gss_auth->rpc_auth;
789 auth->au_cslack = GSS_CRED_SLACK >> 2;
790 auth->au_rslack = GSS_VERF_SLACK >> 2;
791 auth->au_ops = &authgss_ops;
792 auth->au_flavor = flavor;
793 atomic_set(&auth->au_count, 1);
Trond Myklebust0285ed12007-06-27 14:29:12 -0400794 kref_init(&gss_auth->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500796 /*
797 * Note: if we created the old pipe first, then someone who
798 * examined the directory at the right moment might conclude
799 * that we supported only the old pipe. So we instead create
800 * the new pipe first.
801 */
Trond Myklebust7d217ca2009-08-09 15:14:24 -0400802 gss_auth->dentry[1] = rpc_mkpipe(clnt->cl_path.dentry,
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500803 "gssd",
804 clnt, &gss_upcall_ops_v1,
805 RPC_PIPE_WAIT_FOR_OPEN);
806 if (IS_ERR(gss_auth->dentry[1])) {
807 err = PTR_ERR(gss_auth->dentry[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 goto err_put_mech;
J. Bruce Fields6a192752005-06-22 17:16:23 +0000809 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
Trond Myklebust7d217ca2009-08-09 15:14:24 -0400811 gss_auth->dentry[0] = rpc_mkpipe(clnt->cl_path.dentry,
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500812 gss_auth->mech->gm_name,
813 clnt, &gss_upcall_ops_v0,
814 RPC_PIPE_WAIT_FOR_OPEN);
815 if (IS_ERR(gss_auth->dentry[0])) {
816 err = PTR_ERR(gss_auth->dentry[0]);
817 goto err_unlink_pipe_1;
818 }
Trond Myklebustf5c21872007-06-25 17:11:20 -0400819 err = rpcauth_init_credcache(auth);
Trond Myklebust07a2bf12007-06-09 15:42:01 -0400820 if (err)
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500821 goto err_unlink_pipe_0;
Trond Myklebust07a2bf12007-06-09 15:42:01 -0400822
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 return auth;
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500824err_unlink_pipe_0:
825 rpc_unlink(gss_auth->dentry[0]);
826err_unlink_pipe_1:
827 rpc_unlink(gss_auth->dentry[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828err_put_mech:
829 gss_mech_put(gss_auth->mech);
830err_free:
831 kfree(gss_auth);
832out_dec:
833 module_put(THIS_MODULE);
J. Bruce Fields6a192752005-06-22 17:16:23 +0000834 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835}
836
837static void
Trond Myklebust0285ed12007-06-27 14:29:12 -0400838gss_free(struct gss_auth *gss_auth)
839{
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -0500840 rpc_unlink(gss_auth->dentry[1]);
841 rpc_unlink(gss_auth->dentry[0]);
Trond Myklebust0285ed12007-06-27 14:29:12 -0400842 gss_mech_put(gss_auth->mech);
843
844 kfree(gss_auth);
845 module_put(THIS_MODULE);
846}
847
848static void
849gss_free_callback(struct kref *kref)
850{
851 struct gss_auth *gss_auth = container_of(kref, struct gss_auth, kref);
852
853 gss_free(gss_auth);
854}
855
856static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857gss_destroy(struct rpc_auth *auth)
858{
859 struct gss_auth *gss_auth;
860
Chuck Lever8885cb32007-01-31 12:14:05 -0500861 dprintk("RPC: destroying GSS authenticator %p flavor %d\n",
862 auth, auth->au_flavor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
Trond Myklebust3ab9bb72007-06-09 15:41:42 -0400864 rpcauth_destroy_credcache(auth);
865
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 gss_auth = container_of(auth, struct gss_auth, rpc_auth);
Trond Myklebust0285ed12007-06-27 14:29:12 -0400867 kref_put(&gss_auth->kref, gss_free_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868}
869
Trond Myklebust0df7fb72007-06-26 17:04:57 -0400870/*
871 * gss_destroying_context will cause the RPCSEC_GSS to send a NULL RPC call
872 * to the server with the GSS control procedure field set to
873 * RPC_GSS_PROC_DESTROY. This should normally cause the server to release
874 * all RPCSEC_GSS state associated with that context.
875 */
876static int
877gss_destroying_context(struct rpc_cred *cred)
878{
879 struct gss_cred *gss_cred = container_of(cred, struct gss_cred, gc_base);
880 struct gss_auth *gss_auth = container_of(cred->cr_auth, struct gss_auth, rpc_auth);
881 struct rpc_task *task;
882
883 if (gss_cred->gc_ctx == NULL ||
Jeff Layton6dcd3922008-12-23 15:21:57 -0500884 test_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags) == 0)
Trond Myklebust0df7fb72007-06-26 17:04:57 -0400885 return 0;
886
887 gss_cred->gc_ctx->gc_proc = RPC_GSS_PROC_DESTROY;
888 cred->cr_ops = &gss_nullops;
889
890 /* Take a reference to ensure the cred will be destroyed either
891 * by the RPC call or by the put_rpccred() below */
892 get_rpccred(cred);
893
Trond Myklebust080a1f12008-04-19 14:22:31 -0400894 task = rpc_call_null(gss_auth->client, cred, RPC_TASK_ASYNC|RPC_TASK_SOFT);
Trond Myklebust0df7fb72007-06-26 17:04:57 -0400895 if (!IS_ERR(task))
896 rpc_put_task(task);
897
898 put_rpccred(cred);
899 return 1;
900}
901
902/* gss_destroy_cred (and gss_free_ctx) are used to clean up after failure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 * to create a new cred or context, so they check that things have been
904 * allocated before freeing them. */
905static void
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400906gss_do_free_ctx(struct gss_cl_ctx *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907{
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400908 dprintk("RPC: gss_free_ctx\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 kfree(ctx->gc_wire_ctx.data);
911 kfree(ctx);
912}
913
914static void
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400915gss_free_ctx_callback(struct rcu_head *head)
916{
917 struct gss_cl_ctx *ctx = container_of(head, struct gss_cl_ctx, gc_rcu);
918 gss_do_free_ctx(ctx);
919}
920
921static void
922gss_free_ctx(struct gss_cl_ctx *ctx)
923{
Trond Myklebusta4deb812007-08-06 12:21:13 -0400924 struct gss_ctx *gc_gss_ctx;
925
926 gc_gss_ctx = rcu_dereference(ctx->gc_gss_ctx);
927 rcu_assign_pointer(ctx->gc_gss_ctx, NULL);
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400928 call_rcu(&ctx->gc_rcu, gss_free_ctx_callback);
Trond Myklebusta4deb812007-08-06 12:21:13 -0400929 if (gc_gss_ctx)
930 gss_delete_sec_context(&gc_gss_ctx);
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400931}
932
933static void
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400934gss_free_cred(struct gss_cred *gss_cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935{
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400936 dprintk("RPC: gss_free_cred %p\n", gss_cred);
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400937 kfree(gss_cred);
938}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400940static void
941gss_free_cred_callback(struct rcu_head *head)
942{
943 struct gss_cred *gss_cred = container_of(head, struct gss_cred, gc_base.cr_rcu);
944 gss_free_cred(gss_cred);
945}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400947static void
Jeff Layton6dcd3922008-12-23 15:21:57 -0500948gss_destroy_nullcred(struct rpc_cred *cred)
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400949{
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400950 struct gss_cred *gss_cred = container_of(cred, struct gss_cred, gc_base);
Trond Myklebust0285ed12007-06-27 14:29:12 -0400951 struct gss_auth *gss_auth = container_of(cred->cr_auth, struct gss_auth, rpc_auth);
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400952 struct gss_cl_ctx *ctx = gss_cred->gc_ctx;
953
954 rcu_assign_pointer(gss_cred->gc_ctx, NULL);
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400955 call_rcu(&cred->cr_rcu, gss_free_cred_callback);
Trond Myklebust5d28dc82007-06-26 19:18:38 -0400956 if (ctx)
957 gss_put_ctx(ctx);
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
Jeff Layton6dcd3922008-12-23 15:21:57 -0500961static void
962gss_destroy_cred(struct rpc_cred *cred)
963{
964
965 if (gss_destroying_context(cred))
966 return;
967 gss_destroy_nullcred(cred);
968}
969
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970/*
971 * Lookup RPCSEC_GSS cred for the current process
972 */
973static struct rpc_cred *
Trond Myklebust8a317762006-02-01 12:18:36 -0500974gss_lookup_cred(struct rpc_auth *auth, struct auth_cred *acred, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975{
Trond Myklebust8a317762006-02-01 12:18:36 -0500976 return rpcauth_lookup_credcache(auth, acred, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977}
978
979static struct rpc_cred *
Trond Myklebust8a317762006-02-01 12:18:36 -0500980gss_create_cred(struct rpc_auth *auth, struct auth_cred *acred, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981{
982 struct gss_auth *gss_auth = container_of(auth, struct gss_auth, rpc_auth);
983 struct gss_cred *cred = NULL;
984 int err = -ENOMEM;
985
Chuck Lever8885cb32007-01-31 12:14:05 -0500986 dprintk("RPC: gss_create_cred for uid %d, flavor %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 acred->uid, auth->au_flavor);
988
Trond Myklebust0f38b872008-06-10 18:31:01 -0400989 if (!(cred = kzalloc(sizeof(*cred), GFP_NOFS)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 goto out_err;
991
Trond Myklebust5fe47552007-06-23 19:55:31 -0400992 rpcauth_init_cred(&cred->gc_base, acred, auth, &gss_credops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 /*
994 * Note: in order to force a call to call_refresh(), we deliberately
995 * fail to flag the credential as RPCAUTH_CRED_UPTODATE.
996 */
Trond Myklebustfc432dd2007-06-25 10:15:15 -0400997 cred->gc_base.cr_flags = 1UL << RPCAUTH_CRED_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 cred->gc_service = gss_auth->service;
Trond Myklebust7c67db32008-04-07 20:50:11 -0400999 cred->gc_machine_cred = acred->machine_cred;
Trond Myklebust0285ed12007-06-27 14:29:12 -04001000 kref_get(&gss_auth->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 return &cred->gc_base;
1002
1003out_err:
Chuck Lever8885cb32007-01-31 12:14:05 -05001004 dprintk("RPC: gss_create_cred failed with error %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 return ERR_PTR(err);
1006}
1007
1008static int
Trond Myklebustfba3bad2006-02-01 12:19:27 -05001009gss_cred_init(struct rpc_auth *auth, struct rpc_cred *cred)
1010{
1011 struct gss_auth *gss_auth = container_of(auth, struct gss_auth, rpc_auth);
1012 struct gss_cred *gss_cred = container_of(cred,struct gss_cred, gc_base);
1013 int err;
1014
1015 do {
1016 err = gss_create_upcall(gss_auth, gss_cred);
1017 } while (err == -EAGAIN);
1018 return err;
1019}
1020
1021static int
Trond Myklebust8a317762006-02-01 12:18:36 -05001022gss_match(struct auth_cred *acred, struct rpc_cred *rc, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023{
1024 struct gss_cred *gss_cred = container_of(rc, struct gss_cred, gc_base);
1025
Trond Myklebustcd019f72008-04-17 17:03:58 -04001026 if (test_bit(RPCAUTH_CRED_NEW, &rc->cr_flags))
Trond Myklebust8a317762006-02-01 12:18:36 -05001027 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 /* Don't match with creds that have expired. */
Trond Myklebustcd019f72008-04-17 17:03:58 -04001029 if (time_after(jiffies, gss_cred->gc_ctx->gc_expiry))
1030 return 0;
1031 if (!test_bit(RPCAUTH_CRED_UPTODATE, &rc->cr_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 return 0;
Trond Myklebust8a317762006-02-01 12:18:36 -05001033out:
Trond Myklebust7c67db32008-04-07 20:50:11 -04001034 if (acred->machine_cred != gss_cred->gc_machine_cred)
1035 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 return (rc->cr_uid == acred->uid);
1037}
1038
1039/*
1040* Marshal credentials.
1041* Maybe we should keep a cached credential for performance reasons.
1042*/
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001043static __be32 *
1044gss_marshal(struct rpc_task *task, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045{
1046 struct rpc_cred *cred = task->tk_msg.rpc_cred;
1047 struct gss_cred *gss_cred = container_of(cred, struct gss_cred,
1048 gc_base);
1049 struct gss_cl_ctx *ctx = gss_cred_get_ctx(cred);
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001050 __be32 *cred_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 struct rpc_rqst *req = task->tk_rqstp;
1052 u32 maj_stat = 0;
1053 struct xdr_netobj mic;
1054 struct kvec iov;
1055 struct xdr_buf verf_buf;
1056
Chuck Lever8885cb32007-01-31 12:14:05 -05001057 dprintk("RPC: %5u gss_marshal\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
1059 *p++ = htonl(RPC_AUTH_GSS);
1060 cred_len = p++;
1061
1062 spin_lock(&ctx->gc_seq_lock);
1063 req->rq_seqno = ctx->gc_seq++;
1064 spin_unlock(&ctx->gc_seq_lock);
1065
1066 *p++ = htonl((u32) RPC_GSS_VERSION);
1067 *p++ = htonl((u32) ctx->gc_proc);
1068 *p++ = htonl((u32) req->rq_seqno);
1069 *p++ = htonl((u32) gss_cred->gc_service);
1070 p = xdr_encode_netobj(p, &ctx->gc_wire_ctx);
1071 *cred_len = htonl((p - (cred_len + 1)) << 2);
1072
1073 /* We compute the checksum for the verifier over the xdr-encoded bytes
1074 * starting with the xid and ending at the end of the credential: */
Chuck Lever808012f2005-08-25 16:25:49 -07001075 iov.iov_base = xprt_skip_transport_header(task->tk_xprt,
1076 req->rq_snd_buf.head[0].iov_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 iov.iov_len = (u8 *)p - (u8 *)iov.iov_base;
1078 xdr_buf_from_iov(&iov, &verf_buf);
1079
1080 /* set verifier flavor*/
1081 *p++ = htonl(RPC_AUTH_GSS);
1082
1083 mic.data = (u8 *)(p + 1);
J. Bruce Fields00fd6e12005-10-13 16:55:18 -04001084 maj_stat = gss_get_mic(ctx->gc_gss_ctx, &verf_buf, &mic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 if (maj_stat == GSS_S_CONTEXT_EXPIRED) {
Trond Myklebustfc432dd2007-06-25 10:15:15 -04001086 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 } else if (maj_stat != 0) {
1088 printk("gss_marshal: gss_get_mic FAILED (%d)\n", maj_stat);
1089 goto out_put_ctx;
1090 }
1091 p = xdr_encode_opaque(p, NULL, mic.len);
1092 gss_put_ctx(ctx);
1093 return p;
1094out_put_ctx:
1095 gss_put_ctx(ctx);
1096 return NULL;
1097}
1098
Trond Myklebustcd019f72008-04-17 17:03:58 -04001099static int gss_renew_cred(struct rpc_task *task)
1100{
1101 struct rpc_cred *oldcred = task->tk_msg.rpc_cred;
1102 struct gss_cred *gss_cred = container_of(oldcred,
1103 struct gss_cred,
1104 gc_base);
1105 struct rpc_auth *auth = oldcred->cr_auth;
1106 struct auth_cred acred = {
1107 .uid = oldcred->cr_uid,
1108 .machine_cred = gss_cred->gc_machine_cred,
1109 };
1110 struct rpc_cred *new;
1111
1112 new = gss_lookup_cred(auth, &acred, RPCAUTH_LOOKUP_NEW);
1113 if (IS_ERR(new))
1114 return PTR_ERR(new);
1115 task->tk_msg.rpc_cred = new;
1116 put_rpccred(oldcred);
1117 return 0;
1118}
1119
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120/*
1121* Refresh credentials. XXX - finish
1122*/
1123static int
1124gss_refresh(struct rpc_task *task)
1125{
Trond Myklebustcd019f72008-04-17 17:03:58 -04001126 struct rpc_cred *cred = task->tk_msg.rpc_cred;
1127 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
Trond Myklebustcd019f72008-04-17 17:03:58 -04001129 if (!test_bit(RPCAUTH_CRED_NEW, &cred->cr_flags) &&
1130 !test_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags)) {
1131 ret = gss_renew_cred(task);
1132 if (ret < 0)
1133 goto out;
1134 cred = task->tk_msg.rpc_cred;
1135 }
1136
1137 if (test_bit(RPCAUTH_CRED_NEW, &cred->cr_flags))
1138 ret = gss_refresh_upcall(task);
1139out:
1140 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141}
1142
Trond Myklebust0df7fb72007-06-26 17:04:57 -04001143/* Dummy refresh routine: used only when destroying the context */
1144static int
1145gss_refresh_null(struct rpc_task *task)
1146{
1147 return -EACCES;
1148}
1149
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001150static __be32 *
1151gss_validate(struct rpc_task *task, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152{
1153 struct rpc_cred *cred = task->tk_msg.rpc_cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 struct gss_cl_ctx *ctx = gss_cred_get_ctx(cred);
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001155 __be32 seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 struct kvec iov;
1157 struct xdr_buf verf_buf;
1158 struct xdr_netobj mic;
1159 u32 flav,len;
1160 u32 maj_stat;
1161
Chuck Lever8885cb32007-01-31 12:14:05 -05001162 dprintk("RPC: %5u gss_validate\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
1164 flav = ntohl(*p++);
1165 if ((len = ntohl(*p++)) > RPC_MAX_AUTH_SIZE)
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001166 goto out_bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 if (flav != RPC_AUTH_GSS)
1168 goto out_bad;
1169 seq = htonl(task->tk_rqstp->rq_seqno);
1170 iov.iov_base = &seq;
1171 iov.iov_len = sizeof(seq);
1172 xdr_buf_from_iov(&iov, &verf_buf);
1173 mic.data = (u8 *)p;
1174 mic.len = len;
1175
J. Bruce Fields00fd6e12005-10-13 16:55:18 -04001176 maj_stat = gss_verify_mic(ctx->gc_gss_ctx, &verf_buf, &mic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 if (maj_stat == GSS_S_CONTEXT_EXPIRED)
Trond Myklebustfc432dd2007-06-25 10:15:15 -04001178 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
Trond Myklebust0df7fb72007-06-26 17:04:57 -04001179 if (maj_stat) {
Joe Perches014313a2007-11-19 17:53:43 -08001180 dprintk("RPC: %5u gss_validate: gss_verify_mic returned "
Trond Myklebust0df7fb72007-06-26 17:04:57 -04001181 "error 0x%08x\n", task->tk_pid, maj_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 goto out_bad;
Trond Myklebust0df7fb72007-06-26 17:04:57 -04001183 }
J. Bruce Fields24b26052005-10-13 16:54:53 -04001184 /* We leave it to unwrap to calculate au_rslack. For now we just
1185 * calculate the length of the verifier: */
Trond Myklebust1be27f32007-06-27 14:29:04 -04001186 cred->cr_auth->au_verfsize = XDR_QUADLEN(len) + 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 gss_put_ctx(ctx);
Chuck Lever8885cb32007-01-31 12:14:05 -05001188 dprintk("RPC: %5u gss_validate: gss_verify_mic succeeded.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 task->tk_pid);
1190 return p + XDR_QUADLEN(len);
1191out_bad:
1192 gss_put_ctx(ctx);
Chuck Lever8885cb32007-01-31 12:14:05 -05001193 dprintk("RPC: %5u gss_validate failed.\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 return NULL;
1195}
1196
1197static inline int
1198gss_wrap_req_integ(struct rpc_cred *cred, struct gss_cl_ctx *ctx,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001199 kxdrproc_t encode, struct rpc_rqst *rqstp, __be32 *p, void *obj)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200{
1201 struct xdr_buf *snd_buf = &rqstp->rq_snd_buf;
1202 struct xdr_buf integ_buf;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001203 __be32 *integ_len = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 struct xdr_netobj mic;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001205 u32 offset;
1206 __be32 *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 struct kvec *iov;
1208 u32 maj_stat = 0;
1209 int status = -EIO;
1210
1211 integ_len = p++;
1212 offset = (u8 *)p - (u8 *)snd_buf->head[0].iov_base;
1213 *p++ = htonl(rqstp->rq_seqno);
1214
Trond Myklebust88a9fe82008-12-23 15:21:31 -05001215 status = encode(rqstp, p, obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 if (status)
1217 return status;
1218
1219 if (xdr_buf_subsegment(snd_buf, &integ_buf,
1220 offset, snd_buf->len - offset))
1221 return status;
1222 *integ_len = htonl(integ_buf.len);
1223
1224 /* guess whether we're in the head or the tail: */
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001225 if (snd_buf->page_len || snd_buf->tail[0].iov_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 iov = snd_buf->tail;
1227 else
1228 iov = snd_buf->head;
1229 p = iov->iov_base + iov->iov_len;
1230 mic.data = (u8 *)(p + 1);
1231
J. Bruce Fields00fd6e12005-10-13 16:55:18 -04001232 maj_stat = gss_get_mic(ctx->gc_gss_ctx, &integ_buf, &mic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 status = -EIO; /* XXX? */
1234 if (maj_stat == GSS_S_CONTEXT_EXPIRED)
Trond Myklebustfc432dd2007-06-25 10:15:15 -04001235 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 else if (maj_stat)
1237 return status;
1238 q = xdr_encode_opaque(p, NULL, mic.len);
1239
1240 offset = (u8 *)q - (u8 *)p;
1241 iov->iov_len += offset;
1242 snd_buf->len += offset;
1243 return 0;
1244}
1245
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001246static void
1247priv_release_snd_buf(struct rpc_rqst *rqstp)
1248{
1249 int i;
1250
1251 for (i=0; i < rqstp->rq_enc_pages_num; i++)
1252 __free_page(rqstp->rq_enc_pages[i]);
1253 kfree(rqstp->rq_enc_pages);
1254}
1255
1256static int
1257alloc_enc_pages(struct rpc_rqst *rqstp)
1258{
1259 struct xdr_buf *snd_buf = &rqstp->rq_snd_buf;
1260 int first, last, i;
1261
1262 if (snd_buf->page_len == 0) {
1263 rqstp->rq_enc_pages_num = 0;
1264 return 0;
1265 }
1266
1267 first = snd_buf->page_base >> PAGE_CACHE_SHIFT;
1268 last = (snd_buf->page_base + snd_buf->page_len - 1) >> PAGE_CACHE_SHIFT;
1269 rqstp->rq_enc_pages_num = last - first + 1 + 1;
1270 rqstp->rq_enc_pages
1271 = kmalloc(rqstp->rq_enc_pages_num * sizeof(struct page *),
1272 GFP_NOFS);
1273 if (!rqstp->rq_enc_pages)
1274 goto out;
1275 for (i=0; i < rqstp->rq_enc_pages_num; i++) {
1276 rqstp->rq_enc_pages[i] = alloc_page(GFP_NOFS);
1277 if (rqstp->rq_enc_pages[i] == NULL)
1278 goto out_free;
1279 }
1280 rqstp->rq_release_snd_buf = priv_release_snd_buf;
1281 return 0;
1282out_free:
Trond Myklebustcdead7c2010-03-19 15:36:22 -04001283 rqstp->rq_enc_pages_num = i;
1284 priv_release_snd_buf(rqstp);
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001285out:
1286 return -EAGAIN;
1287}
1288
1289static inline int
1290gss_wrap_req_priv(struct rpc_cred *cred, struct gss_cl_ctx *ctx,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001291 kxdrproc_t encode, struct rpc_rqst *rqstp, __be32 *p, void *obj)
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001292{
1293 struct xdr_buf *snd_buf = &rqstp->rq_snd_buf;
1294 u32 offset;
1295 u32 maj_stat;
1296 int status;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001297 __be32 *opaque_len;
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001298 struct page **inpages;
1299 int first;
1300 int pad;
1301 struct kvec *iov;
1302 char *tmp;
1303
1304 opaque_len = p++;
1305 offset = (u8 *)p - (u8 *)snd_buf->head[0].iov_base;
1306 *p++ = htonl(rqstp->rq_seqno);
1307
Trond Myklebust88a9fe82008-12-23 15:21:31 -05001308 status = encode(rqstp, p, obj);
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001309 if (status)
1310 return status;
1311
1312 status = alloc_enc_pages(rqstp);
1313 if (status)
1314 return status;
1315 first = snd_buf->page_base >> PAGE_CACHE_SHIFT;
1316 inpages = snd_buf->pages + first;
1317 snd_buf->pages = rqstp->rq_enc_pages;
1318 snd_buf->page_base -= first << PAGE_CACHE_SHIFT;
1319 /* Give the tail its own page, in case we need extra space in the
1320 * head when wrapping: */
1321 if (snd_buf->page_len || snd_buf->tail[0].iov_len) {
1322 tmp = page_address(rqstp->rq_enc_pages[rqstp->rq_enc_pages_num - 1]);
1323 memcpy(tmp, snd_buf->tail[0].iov_base, snd_buf->tail[0].iov_len);
1324 snd_buf->tail[0].iov_base = tmp;
1325 }
J. Bruce Fields00fd6e12005-10-13 16:55:18 -04001326 maj_stat = gss_wrap(ctx->gc_gss_ctx, offset, snd_buf, inpages);
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001327 /* RPC_SLACK_SPACE should prevent this ever happening: */
1328 BUG_ON(snd_buf->len > snd_buf->buflen);
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001329 status = -EIO;
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001330 /* We're assuming that when GSS_S_CONTEXT_EXPIRED, the encryption was
1331 * done anyway, so it's safe to put the request on the wire: */
1332 if (maj_stat == GSS_S_CONTEXT_EXPIRED)
Trond Myklebustfc432dd2007-06-25 10:15:15 -04001333 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001334 else if (maj_stat)
1335 return status;
1336
1337 *opaque_len = htonl(snd_buf->len - offset);
1338 /* guess whether we're in the head or the tail: */
1339 if (snd_buf->page_len || snd_buf->tail[0].iov_len)
1340 iov = snd_buf->tail;
1341 else
1342 iov = snd_buf->head;
1343 p = iov->iov_base + iov->iov_len;
1344 pad = 3 - ((snd_buf->len - offset - 1) & 3);
1345 memset(p, 0, pad);
1346 iov->iov_len += pad;
1347 snd_buf->len += pad;
1348
1349 return 0;
1350}
1351
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352static int
1353gss_wrap_req(struct rpc_task *task,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001354 kxdrproc_t encode, void *rqstp, __be32 *p, void *obj)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355{
1356 struct rpc_cred *cred = task->tk_msg.rpc_cred;
1357 struct gss_cred *gss_cred = container_of(cred, struct gss_cred,
1358 gc_base);
1359 struct gss_cl_ctx *ctx = gss_cred_get_ctx(cred);
1360 int status = -EIO;
1361
Chuck Lever8885cb32007-01-31 12:14:05 -05001362 dprintk("RPC: %5u gss_wrap_req\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 if (ctx->gc_proc != RPC_GSS_PROC_DATA) {
1364 /* The spec seems a little ambiguous here, but I think that not
1365 * wrapping context destruction requests makes the most sense.
1366 */
Trond Myklebust88a9fe82008-12-23 15:21:31 -05001367 status = encode(rqstp, p, obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 goto out;
1369 }
1370 switch (gss_cred->gc_service) {
1371 case RPC_GSS_SVC_NONE:
Trond Myklebust88a9fe82008-12-23 15:21:31 -05001372 status = encode(rqstp, p, obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 break;
1374 case RPC_GSS_SVC_INTEGRITY:
1375 status = gss_wrap_req_integ(cred, ctx, encode,
1376 rqstp, p, obj);
1377 break;
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001378 case RPC_GSS_SVC_PRIVACY:
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001379 status = gss_wrap_req_priv(cred, ctx, encode,
1380 rqstp, p, obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 break;
1382 }
1383out:
1384 gss_put_ctx(ctx);
Chuck Lever8885cb32007-01-31 12:14:05 -05001385 dprintk("RPC: %5u gss_wrap_req returning %d\n", task->tk_pid, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 return status;
1387}
1388
1389static inline int
1390gss_unwrap_resp_integ(struct rpc_cred *cred, struct gss_cl_ctx *ctx,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001391 struct rpc_rqst *rqstp, __be32 **p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392{
1393 struct xdr_buf *rcv_buf = &rqstp->rq_rcv_buf;
1394 struct xdr_buf integ_buf;
1395 struct xdr_netobj mic;
1396 u32 data_offset, mic_offset;
1397 u32 integ_len;
1398 u32 maj_stat;
1399 int status = -EIO;
1400
1401 integ_len = ntohl(*(*p)++);
1402 if (integ_len & 3)
1403 return status;
1404 data_offset = (u8 *)(*p) - (u8 *)rcv_buf->head[0].iov_base;
1405 mic_offset = integ_len + data_offset;
1406 if (mic_offset > rcv_buf->len)
1407 return status;
1408 if (ntohl(*(*p)++) != rqstp->rq_seqno)
1409 return status;
1410
1411 if (xdr_buf_subsegment(rcv_buf, &integ_buf, data_offset,
1412 mic_offset - data_offset))
1413 return status;
1414
1415 if (xdr_buf_read_netobj(rcv_buf, &mic, mic_offset))
1416 return status;
1417
J. Bruce Fields00fd6e12005-10-13 16:55:18 -04001418 maj_stat = gss_verify_mic(ctx->gc_gss_ctx, &integ_buf, &mic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 if (maj_stat == GSS_S_CONTEXT_EXPIRED)
Trond Myklebustfc432dd2007-06-25 10:15:15 -04001420 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 if (maj_stat != GSS_S_COMPLETE)
1422 return status;
1423 return 0;
1424}
1425
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001426static inline int
1427gss_unwrap_resp_priv(struct rpc_cred *cred, struct gss_cl_ctx *ctx,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001428 struct rpc_rqst *rqstp, __be32 **p)
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001429{
1430 struct xdr_buf *rcv_buf = &rqstp->rq_rcv_buf;
1431 u32 offset;
1432 u32 opaque_len;
1433 u32 maj_stat;
1434 int status = -EIO;
1435
1436 opaque_len = ntohl(*(*p)++);
1437 offset = (u8 *)(*p) - (u8 *)rcv_buf->head[0].iov_base;
1438 if (offset + opaque_len > rcv_buf->len)
1439 return status;
1440 /* remove padding: */
1441 rcv_buf->len = offset + opaque_len;
1442
J. Bruce Fields00fd6e12005-10-13 16:55:18 -04001443 maj_stat = gss_unwrap(ctx->gc_gss_ctx, offset, rcv_buf);
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001444 if (maj_stat == GSS_S_CONTEXT_EXPIRED)
Trond Myklebustfc432dd2007-06-25 10:15:15 -04001445 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001446 if (maj_stat != GSS_S_COMPLETE)
1447 return status;
1448 if (ntohl(*(*p)++) != rqstp->rq_seqno)
1449 return status;
1450
1451 return 0;
1452}
1453
1454
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455static int
1456gss_unwrap_resp(struct rpc_task *task,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001457 kxdrproc_t decode, void *rqstp, __be32 *p, void *obj)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458{
1459 struct rpc_cred *cred = task->tk_msg.rpc_cred;
1460 struct gss_cred *gss_cred = container_of(cred, struct gss_cred,
1461 gc_base);
1462 struct gss_cl_ctx *ctx = gss_cred_get_ctx(cred);
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001463 __be32 *savedp = p;
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001464 struct kvec *head = ((struct rpc_rqst *)rqstp)->rq_rcv_buf.head;
1465 int savedlen = head->iov_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 int status = -EIO;
1467
1468 if (ctx->gc_proc != RPC_GSS_PROC_DATA)
1469 goto out_decode;
1470 switch (gss_cred->gc_service) {
1471 case RPC_GSS_SVC_NONE:
1472 break;
1473 case RPC_GSS_SVC_INTEGRITY:
1474 status = gss_unwrap_resp_integ(cred, ctx, rqstp, &p);
1475 if (status)
1476 goto out;
1477 break;
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001478 case RPC_GSS_SVC_PRIVACY:
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001479 status = gss_unwrap_resp_priv(cred, ctx, rqstp, &p);
1480 if (status)
1481 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 break;
1483 }
J. Bruce Fields24b26052005-10-13 16:54:53 -04001484 /* take into account extra slack for integrity and privacy cases: */
Trond Myklebust1be27f32007-06-27 14:29:04 -04001485 cred->cr_auth->au_rslack = cred->cr_auth->au_verfsize + (p - savedp)
J. Bruce Fields2d2da60c2005-10-13 16:54:58 -04001486 + (savedlen - head->iov_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487out_decode:
Trond Myklebust88a9fe82008-12-23 15:21:31 -05001488 status = decode(rqstp, p, obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489out:
1490 gss_put_ctx(ctx);
Chuck Lever8885cb32007-01-31 12:14:05 -05001491 dprintk("RPC: %5u gss_unwrap_resp returning %d\n", task->tk_pid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 status);
1493 return status;
1494}
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001495
Trond Myklebustf1c0a862007-06-23 20:17:58 -04001496static const struct rpc_authops authgss_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 .owner = THIS_MODULE,
1498 .au_flavor = RPC_AUTH_GSS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 .au_name = "RPCSEC_GSS",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 .create = gss_create,
1501 .destroy = gss_destroy,
1502 .lookup_cred = gss_lookup_cred,
1503 .crcreate = gss_create_cred
1504};
1505
Trond Myklebustf1c0a862007-06-23 20:17:58 -04001506static const struct rpc_credops gss_credops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 .cr_name = "AUTH_GSS",
1508 .crdestroy = gss_destroy_cred,
Trond Myklebustfba3bad2006-02-01 12:19:27 -05001509 .cr_init = gss_cred_init,
Trond Myklebust5c691042008-03-12 16:21:07 -04001510 .crbind = rpcauth_generic_bind_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 .crmatch = gss_match,
1512 .crmarshal = gss_marshal,
1513 .crrefresh = gss_refresh,
1514 .crvalidate = gss_validate,
1515 .crwrap_req = gss_wrap_req,
1516 .crunwrap_resp = gss_unwrap_resp,
1517};
1518
Trond Myklebust0df7fb72007-06-26 17:04:57 -04001519static const struct rpc_credops gss_nullops = {
1520 .cr_name = "AUTH_GSS",
Jeff Layton6dcd3922008-12-23 15:21:57 -05001521 .crdestroy = gss_destroy_nullcred,
Trond Myklebust5c691042008-03-12 16:21:07 -04001522 .crbind = rpcauth_generic_bind_cred,
Trond Myklebust0df7fb72007-06-26 17:04:57 -04001523 .crmatch = gss_match,
1524 .crmarshal = gss_marshal,
1525 .crrefresh = gss_refresh_null,
1526 .crvalidate = gss_validate,
1527 .crwrap_req = gss_wrap_req,
1528 .crunwrap_resp = gss_unwrap_resp,
1529};
1530
Trond Myklebustb693ba42009-08-09 15:14:15 -04001531static const struct rpc_pipe_ops gss_upcall_ops_v0 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 .upcall = gss_pipe_upcall,
1533 .downcall = gss_pipe_downcall,
1534 .destroy_msg = gss_pipe_destroy_msg,
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -05001535 .open_pipe = gss_pipe_open_v0,
1536 .release_pipe = gss_pipe_release,
1537};
1538
Trond Myklebustb693ba42009-08-09 15:14:15 -04001539static const struct rpc_pipe_ops gss_upcall_ops_v1 = {
\"J. Bruce Fields\34769fc2008-12-23 16:16:37 -05001540 .upcall = gss_pipe_upcall,
1541 .downcall = gss_pipe_downcall,
1542 .destroy_msg = gss_pipe_destroy_msg,
1543 .open_pipe = gss_pipe_open_v1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 .release_pipe = gss_pipe_release,
1545};
1546
1547/*
1548 * Initialize RPCSEC_GSS module
1549 */
1550static int __init init_rpcsec_gss(void)
1551{
1552 int err = 0;
1553
1554 err = rpcauth_register(&authgss_ops);
1555 if (err)
1556 goto out;
1557 err = gss_svc_init();
1558 if (err)
1559 goto out_unregister;
\"J. Bruce Fields\79a3f202008-12-23 16:10:52 -05001560 rpc_init_wait_queue(&pipe_version_rpc_waitqueue, "gss pipe version");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 return 0;
1562out_unregister:
1563 rpcauth_unregister(&authgss_ops);
1564out:
1565 return err;
1566}
1567
1568static void __exit exit_rpcsec_gss(void)
1569{
1570 gss_svc_shutdown();
1571 rpcauth_unregister(&authgss_ops);
Jesper Dangaard Brouerbf126912009-06-08 03:11:48 +00001572 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573}
1574
1575MODULE_LICENSE("GPL");
1576module_init(init_rpcsec_gss)
1577module_exit(exit_rpcsec_gss)