blob: 98fb98e330b4004907d899937e13e2f1c32368ee [file] [log] [blame]
NeilBrowna55370a2005-06-23 22:03:52 -07001/*
NeilBrowna55370a2005-06-23 22:03:52 -07002* Copyright (c) 2004 The Regents of the University of Michigan.
3* All rights reserved.
4*
5* Andy Adamson <andros@citi.umich.edu>
6*
7* Redistribution and use in source and binary forms, with or without
8* modification, are permitted provided that the following conditions
9* are met:
10*
11* 1. Redistributions of source code must retain the above copyright
12* notice, this list of conditions and the following disclaimer.
13* 2. Redistributions in binary form must reproduce the above copyright
14* notice, this list of conditions and the following disclaimer in the
15* documentation and/or other materials provided with the distribution.
16* 3. Neither the name of the University nor the names of its
17* contributors may be used to endorse or promote products derived
18* from this software without specific prior written permission.
19*
20* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
21* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
22* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23* DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
27* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
28* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
29* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
30* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31*
32*/
33
NeilBrown190e4fb2005-06-23 22:04:25 -070034#include <linux/file.h>
35#include <linux/namei.h>
NeilBrowna55370a2005-06-23 22:03:52 -070036#include <linux/crypto.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040037#include <linux/sched.h>
Boaz Harrosh9a74af22009-12-03 20:30:56 +020038
39#include "nfsd.h"
40#include "state.h"
J. Bruce Fields0a3adad2009-11-04 18:12:35 -050041#include "vfs.h"
NeilBrowna55370a2005-06-23 22:03:52 -070042
43#define NFSDDBG_FACILITY NFSDDBG_PROC
44
NeilBrown190e4fb2005-06-23 22:04:25 -070045/* Globals */
Al Viroa63bb992008-08-02 01:03:36 -040046static struct path rec_dir;
NeilBrown190e4fb2005-06-23 22:04:25 -070047static int rec_dir_init = 0;
48
David Howellsd84f4f92008-11-14 10:39:23 +110049static int
50nfs4_save_creds(const struct cred **original_creds)
NeilBrown190e4fb2005-06-23 22:04:25 -070051{
David Howellsd84f4f92008-11-14 10:39:23 +110052 struct cred *new;
53
54 new = prepare_creds();
55 if (!new)
56 return -ENOMEM;
57
58 new->fsuid = 0;
59 new->fsgid = 0;
60 *original_creds = override_creds(new);
61 put_cred(new);
62 return 0;
NeilBrown190e4fb2005-06-23 22:04:25 -070063}
64
65static void
David Howellsd84f4f92008-11-14 10:39:23 +110066nfs4_reset_creds(const struct cred *original)
NeilBrown190e4fb2005-06-23 22:04:25 -070067{
David Howellsd84f4f92008-11-14 10:39:23 +110068 revert_creds(original);
NeilBrown190e4fb2005-06-23 22:04:25 -070069}
70
NeilBrowna55370a2005-06-23 22:03:52 -070071static void
72md5_to_hex(char *out, char *md5)
73{
74 int i;
75
76 for (i=0; i<16; i++) {
77 unsigned char c = md5[i];
78
79 *out++ = '0' + ((c&0xf0)>>4) + (c>=0xa0)*('a'-'9'-1);
80 *out++ = '0' + (c&0x0f) + ((c&0x0f)>=0x0a)*('a'-'9'-1);
81 }
82 *out = '\0';
83}
84
Al Virob37ad282006-10-19 23:28:59 -070085__be32
NeilBrowna55370a2005-06-23 22:03:52 -070086nfs4_make_rec_clidname(char *dname, struct xdr_netobj *clname)
87{
88 struct xdr_netobj cksum;
Herbert Xu35058682006-08-24 19:10:20 +100089 struct hash_desc desc;
Jens Axboe60c74f82007-10-22 19:43:30 +020090 struct scatterlist sg;
Al Virob37ad282006-10-19 23:28:59 -070091 __be32 status = nfserr_resource;
NeilBrowna55370a2005-06-23 22:03:52 -070092
93 dprintk("NFSD: nfs4_make_rec_clidname for %.*s\n",
94 clname->len, clname->data);
Herbert Xu35058682006-08-24 19:10:20 +100095 desc.flags = CRYPTO_TFM_REQ_MAY_SLEEP;
96 desc.tfm = crypto_alloc_hash("md5", 0, CRYPTO_ALG_ASYNC);
97 if (IS_ERR(desc.tfm))
98 goto out_no_tfm;
99 cksum.len = crypto_hash_digestsize(desc.tfm);
NeilBrowna55370a2005-06-23 22:03:52 -0700100 cksum.data = kmalloc(cksum.len, GFP_KERNEL);
101 if (cksum.data == NULL)
102 goto out;
NeilBrowna55370a2005-06-23 22:03:52 -0700103
Jens Axboe60c74f82007-10-22 19:43:30 +0200104 sg_init_one(&sg, clname->data, clname->len);
NeilBrowna55370a2005-06-23 22:03:52 -0700105
Jens Axboe60c74f82007-10-22 19:43:30 +0200106 if (crypto_hash_digest(&desc, &sg, sg.length, cksum.data))
Herbert Xu35058682006-08-24 19:10:20 +1000107 goto out;
NeilBrowna55370a2005-06-23 22:03:52 -0700108
109 md5_to_hex(dname, cksum.data);
110
NeilBrowna55370a2005-06-23 22:03:52 -0700111 status = nfs_ok;
112out:
Krishna Kumar2bd9e7b2008-10-20 11:47:09 +0530113 kfree(cksum.data);
Herbert Xu35058682006-08-24 19:10:20 +1000114 crypto_free_hash(desc.tfm);
115out_no_tfm:
NeilBrowna55370a2005-06-23 22:03:52 -0700116 return status;
117}
NeilBrown190e4fb2005-06-23 22:04:25 -0700118
NeilBrowna6ccbbb2005-07-07 17:59:11 -0700119static void
120nfsd4_sync_rec_dir(void)
NeilBrownc7b9a452005-06-23 22:04:30 -0700121{
Ben Myersf5019122010-02-17 14:05:11 -0600122 vfs_fsync(NULL, rec_dir.dentry, 0);
NeilBrownc7b9a452005-06-23 22:04:30 -0700123}
124
125int
126nfsd4_create_clid_dir(struct nfs4_client *clp)
127{
David Howellsd84f4f92008-11-14 10:39:23 +1100128 const struct cred *original_cred;
NeilBrownc7b9a452005-06-23 22:04:30 -0700129 char *dname = clp->cl_recdir;
130 struct dentry *dentry;
NeilBrownc7b9a452005-06-23 22:04:30 -0700131 int status;
132
133 dprintk("NFSD: nfsd4_create_clid_dir for \"%s\"\n", dname);
134
135 if (!rec_dir_init || clp->cl_firststate)
136 return 0;
137
David Howellsd84f4f92008-11-14 10:39:23 +1100138 status = nfs4_save_creds(&original_cred);
139 if (status < 0)
140 return status;
NeilBrownc7b9a452005-06-23 22:04:30 -0700141
142 /* lock the parent */
Al Viroa63bb992008-08-02 01:03:36 -0400143 mutex_lock(&rec_dir.dentry->d_inode->i_mutex);
NeilBrownc7b9a452005-06-23 22:04:30 -0700144
Al Viroa63bb992008-08-02 01:03:36 -0400145 dentry = lookup_one_len(dname, rec_dir.dentry, HEXDIR_LEN-1);
NeilBrownc7b9a452005-06-23 22:04:30 -0700146 if (IS_ERR(dentry)) {
147 status = PTR_ERR(dentry);
148 goto out_unlock;
149 }
150 status = -EEXIST;
151 if (dentry->d_inode) {
152 dprintk("NFSD: nfsd4_create_clid_dir: DIRECTORY EXISTS\n");
153 goto out_put;
154 }
Al Viroa63bb992008-08-02 01:03:36 -0400155 status = mnt_want_write(rec_dir.mnt);
Dave Hansen463c3192008-02-15 14:37:57 -0800156 if (status)
157 goto out_put;
Al Viroa63bb992008-08-02 01:03:36 -0400158 status = vfs_mkdir(rec_dir.dentry->d_inode, dentry, S_IRWXU);
159 mnt_drop_write(rec_dir.mnt);
NeilBrownc7b9a452005-06-23 22:04:30 -0700160out_put:
161 dput(dentry);
162out_unlock:
Al Viroa63bb992008-08-02 01:03:36 -0400163 mutex_unlock(&rec_dir.dentry->d_inode->i_mutex);
NeilBrownc7b9a452005-06-23 22:04:30 -0700164 if (status == 0) {
165 clp->cl_firststate = 1;
NeilBrowna6ccbbb2005-07-07 17:59:11 -0700166 nfsd4_sync_rec_dir();
NeilBrownc7b9a452005-06-23 22:04:30 -0700167 }
David Howellsd84f4f92008-11-14 10:39:23 +1100168 nfs4_reset_creds(original_cred);
NeilBrownc7b9a452005-06-23 22:04:30 -0700169 dprintk("NFSD: nfsd4_create_clid_dir returns %d\n", status);
170 return status;
171}
172
NeilBrown190e4fb2005-06-23 22:04:25 -0700173typedef int (recdir_func)(struct dentry *, struct dentry *);
174
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400175struct name_list {
176 char name[HEXDIR_LEN];
NeilBrown190e4fb2005-06-23 22:04:25 -0700177 struct list_head list;
178};
179
NeilBrown190e4fb2005-06-23 22:04:25 -0700180static int
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400181nfsd4_build_namelist(void *arg, const char *name, int namlen,
David Howellsafefdbb2006-10-03 01:13:46 -0700182 loff_t offset, u64 ino, unsigned int d_type)
NeilBrown190e4fb2005-06-23 22:04:25 -0700183{
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400184 struct list_head *names = arg;
185 struct name_list *entry;
NeilBrown190e4fb2005-06-23 22:04:25 -0700186
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400187 if (namlen != HEXDIR_LEN - 1)
Al Virob37ad282006-10-19 23:28:59 -0700188 return 0;
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400189 entry = kmalloc(sizeof(struct name_list), GFP_KERNEL);
190 if (entry == NULL)
NeilBrown190e4fb2005-06-23 22:04:25 -0700191 return -ENOMEM;
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400192 memcpy(entry->name, name, HEXDIR_LEN - 1);
193 entry->name[HEXDIR_LEN - 1] = '\0';
194 list_add(&entry->list, names);
NeilBrown190e4fb2005-06-23 22:04:25 -0700195 return 0;
196}
197
198static int
199nfsd4_list_rec_dir(struct dentry *dir, recdir_func *f)
200{
David Howellsd84f4f92008-11-14 10:39:23 +1100201 const struct cred *original_cred;
NeilBrown190e4fb2005-06-23 22:04:25 -0700202 struct file *filp;
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400203 LIST_HEAD(names);
204 struct name_list *entry;
205 struct dentry *dentry;
NeilBrown190e4fb2005-06-23 22:04:25 -0700206 int status;
207
208 if (!rec_dir_init)
209 return 0;
210
David Howellsd84f4f92008-11-14 10:39:23 +1100211 status = nfs4_save_creds(&original_cred);
212 if (status < 0)
213 return status;
NeilBrown190e4fb2005-06-23 22:04:25 -0700214
David Howells745ca242008-11-14 10:39:22 +1100215 filp = dentry_open(dget(dir), mntget(rec_dir.mnt), O_RDONLY,
216 current_cred());
NeilBrown190e4fb2005-06-23 22:04:25 -0700217 status = PTR_ERR(filp);
218 if (IS_ERR(filp))
219 goto out;
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400220 status = vfs_readdir(filp, nfsd4_build_namelist, &names);
NeilBrown190e4fb2005-06-23 22:04:25 -0700221 fput(filp);
J. Bruce Fields8daed1e2009-05-11 16:10:19 -0400222 mutex_lock_nested(&dir->d_inode->i_mutex, I_MUTEX_PARENT);
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400223 while (!list_empty(&names)) {
224 entry = list_entry(names.next, struct name_list, list);
225
226 dentry = lookup_one_len(entry->name, dir, HEXDIR_LEN-1);
227 if (IS_ERR(dentry)) {
228 status = PTR_ERR(dentry);
David Woodhouse2f9092e2009-04-20 23:18:37 +0100229 break;
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400230 }
231 status = f(dir, dentry);
232 dput(dentry);
NeilBrown190e4fb2005-06-23 22:04:25 -0700233 if (status)
David Woodhouse2f9092e2009-04-20 23:18:37 +0100234 break;
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400235 list_del(&entry->list);
236 kfree(entry);
NeilBrown190e4fb2005-06-23 22:04:25 -0700237 }
David Woodhouse2f9092e2009-04-20 23:18:37 +0100238 mutex_unlock(&dir->d_inode->i_mutex);
NeilBrown190e4fb2005-06-23 22:04:25 -0700239out:
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400240 while (!list_empty(&names)) {
241 entry = list_entry(names.next, struct name_list, list);
242 list_del(&entry->list);
243 kfree(entry);
NeilBrown190e4fb2005-06-23 22:04:25 -0700244 }
David Howellsd84f4f92008-11-14 10:39:23 +1100245 nfs4_reset_creds(original_cred);
NeilBrown190e4fb2005-06-23 22:04:25 -0700246 return status;
247}
248
249static int
NeilBrownc7b9a452005-06-23 22:04:30 -0700250nfsd4_unlink_clid_dir(char *name, int namlen)
251{
252 struct dentry *dentry;
253 int status;
254
255 dprintk("NFSD: nfsd4_unlink_clid_dir. name %.*s\n", namlen, name);
256
J. Bruce Fields8daed1e2009-05-11 16:10:19 -0400257 mutex_lock_nested(&rec_dir.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Al Viroa63bb992008-08-02 01:03:36 -0400258 dentry = lookup_one_len(name, rec_dir.dentry, namlen);
NeilBrownc7b9a452005-06-23 22:04:30 -0700259 if (IS_ERR(dentry)) {
260 status = PTR_ERR(dentry);
David Woodhouse2f9092e2009-04-20 23:18:37 +0100261 goto out_unlock;
NeilBrownc7b9a452005-06-23 22:04:30 -0700262 }
263 status = -ENOENT;
264 if (!dentry->d_inode)
265 goto out;
David Woodhouse2f9092e2009-04-20 23:18:37 +0100266 status = vfs_rmdir(rec_dir.dentry->d_inode, dentry);
NeilBrownc7b9a452005-06-23 22:04:30 -0700267out:
268 dput(dentry);
David Woodhouse2f9092e2009-04-20 23:18:37 +0100269out_unlock:
270 mutex_unlock(&rec_dir.dentry->d_inode->i_mutex);
NeilBrownc7b9a452005-06-23 22:04:30 -0700271 return status;
272}
273
274void
275nfsd4_remove_clid_dir(struct nfs4_client *clp)
276{
David Howellsd84f4f92008-11-14 10:39:23 +1100277 const struct cred *original_cred;
NeilBrownc7b9a452005-06-23 22:04:30 -0700278 int status;
279
280 if (!rec_dir_init || !clp->cl_firststate)
281 return;
282
Al Viroa63bb992008-08-02 01:03:36 -0400283 status = mnt_want_write(rec_dir.mnt);
Dave Hansen06227532008-02-15 14:37:34 -0800284 if (status)
285 goto out;
NeilBrown67be4312005-07-07 17:59:13 -0700286 clp->cl_firststate = 0;
David Howellsd84f4f92008-11-14 10:39:23 +1100287
288 status = nfs4_save_creds(&original_cred);
289 if (status < 0)
290 goto out;
291
NeilBrownc7b9a452005-06-23 22:04:30 -0700292 status = nfsd4_unlink_clid_dir(clp->cl_recdir, HEXDIR_LEN-1);
David Howellsd84f4f92008-11-14 10:39:23 +1100293 nfs4_reset_creds(original_cred);
NeilBrownc7b9a452005-06-23 22:04:30 -0700294 if (status == 0)
NeilBrowna6ccbbb2005-07-07 17:59:11 -0700295 nfsd4_sync_rec_dir();
Al Viroa63bb992008-08-02 01:03:36 -0400296 mnt_drop_write(rec_dir.mnt);
Dave Hansen06227532008-02-15 14:37:34 -0800297out:
NeilBrownc7b9a452005-06-23 22:04:30 -0700298 if (status)
299 printk("NFSD: Failed to remove expired client state directory"
300 " %.*s\n", HEXDIR_LEN, clp->cl_recdir);
301 return;
302}
303
304static int
305purge_old(struct dentry *parent, struct dentry *child)
306{
307 int status;
308
Andy Adamsona1bcecd2009-04-03 08:28:05 +0300309 /* note: we currently use this path only for minorversion 0 */
310 if (nfs4_has_reclaimed_state(child->d_name.name, false))
Al Virob37ad282006-10-19 23:28:59 -0700311 return 0;
NeilBrownc7b9a452005-06-23 22:04:30 -0700312
David Woodhouse2f9092e2009-04-20 23:18:37 +0100313 status = vfs_rmdir(parent->d_inode, child);
NeilBrownc7b9a452005-06-23 22:04:30 -0700314 if (status)
315 printk("failed to remove client recovery directory %s\n",
316 child->d_name.name);
317 /* Keep trying, success or failure: */
Al Virob37ad282006-10-19 23:28:59 -0700318 return 0;
NeilBrownc7b9a452005-06-23 22:04:30 -0700319}
320
321void
322nfsd4_recdir_purge_old(void) {
323 int status;
324
325 if (!rec_dir_init)
326 return;
Al Viroa63bb992008-08-02 01:03:36 -0400327 status = mnt_want_write(rec_dir.mnt);
Dave Hansen06227532008-02-15 14:37:34 -0800328 if (status)
329 goto out;
Al Viroa63bb992008-08-02 01:03:36 -0400330 status = nfsd4_list_rec_dir(rec_dir.dentry, purge_old);
NeilBrownc7b9a452005-06-23 22:04:30 -0700331 if (status == 0)
NeilBrowna6ccbbb2005-07-07 17:59:11 -0700332 nfsd4_sync_rec_dir();
Al Viroa63bb992008-08-02 01:03:36 -0400333 mnt_drop_write(rec_dir.mnt);
Dave Hansen06227532008-02-15 14:37:34 -0800334out:
NeilBrownc7b9a452005-06-23 22:04:30 -0700335 if (status)
336 printk("nfsd4: failed to purge old clients from recovery"
Al Viroa63bb992008-08-02 01:03:36 -0400337 " directory %s\n", rec_dir.dentry->d_name.name);
NeilBrownc7b9a452005-06-23 22:04:30 -0700338}
339
340static int
NeilBrown190e4fb2005-06-23 22:04:25 -0700341load_recdir(struct dentry *parent, struct dentry *child)
342{
343 if (child->d_name.len != HEXDIR_LEN - 1) {
344 printk("nfsd4: illegal name %s in recovery directory\n",
345 child->d_name.name);
346 /* Keep trying; maybe the others are OK: */
Al Virob37ad282006-10-19 23:28:59 -0700347 return 0;
NeilBrown190e4fb2005-06-23 22:04:25 -0700348 }
349 nfs4_client_to_reclaim(child->d_name.name);
Al Virob37ad282006-10-19 23:28:59 -0700350 return 0;
NeilBrown190e4fb2005-06-23 22:04:25 -0700351}
352
353int
354nfsd4_recdir_load(void) {
355 int status;
356
Al Viroa63bb992008-08-02 01:03:36 -0400357 status = nfsd4_list_rec_dir(rec_dir.dentry, load_recdir);
NeilBrown190e4fb2005-06-23 22:04:25 -0700358 if (status)
359 printk("nfsd4: failed loading clients from recovery"
Al Viroa63bb992008-08-02 01:03:36 -0400360 " directory %s\n", rec_dir.dentry->d_name.name);
NeilBrown190e4fb2005-06-23 22:04:25 -0700361 return status;
362}
363
364/*
365 * Hold reference to the recovery directory.
366 */
367
368void
369nfsd4_init_recdir(char *rec_dirname)
370{
David Howellsd84f4f92008-11-14 10:39:23 +1100371 const struct cred *original_cred;
372 int status;
NeilBrown190e4fb2005-06-23 22:04:25 -0700373
374 printk("NFSD: Using %s as the NFSv4 state recovery directory\n",
375 rec_dirname);
376
377 BUG_ON(rec_dir_init);
378
David Howellsd84f4f92008-11-14 10:39:23 +1100379 status = nfs4_save_creds(&original_cred);
380 if (status < 0) {
381 printk("NFSD: Unable to change credentials to find recovery"
382 " directory: error %d\n",
383 status);
384 return;
385 }
NeilBrown190e4fb2005-06-23 22:04:25 -0700386
Al Viroa63bb992008-08-02 01:03:36 -0400387 status = kern_path(rec_dirname, LOOKUP_FOLLOW | LOOKUP_DIRECTORY,
J. Bruce Fieldsc2642ab2006-01-18 17:43:29 -0800388 &rec_dir);
389 if (status)
390 printk("NFSD: unable to find recovery directory %s\n",
NeilBrown190e4fb2005-06-23 22:04:25 -0700391 rec_dirname);
392
393 if (!status)
394 rec_dir_init = 1;
David Howellsd84f4f92008-11-14 10:39:23 +1100395 nfs4_reset_creds(original_cred);
NeilBrown190e4fb2005-06-23 22:04:25 -0700396}
397
398void
399nfsd4_shutdown_recdir(void)
400{
401 if (!rec_dir_init)
402 return;
403 rec_dir_init = 0;
Al Viroa63bb992008-08-02 01:03:36 -0400404 path_put(&rec_dir);
NeilBrown190e4fb2005-06-23 22:04:25 -0700405}