NFSD: Change name of extended attribute containing junction
[deliverable/linux.git] / fs / nfsd / nfs4recover.c
CommitLineData
a55370a3 1/*
a55370a3
N
2* 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
190e4fbf 34#include <linux/file.h>
5a0e3ad6 35#include <linux/slab.h>
190e4fbf 36#include <linux/namei.h>
a55370a3 37#include <linux/crypto.h>
e8edc6e0 38#include <linux/sched.h>
9a74af21
BH
39
40#include "nfsd.h"
41#include "state.h"
0a3adade 42#include "vfs.h"
a55370a3
N
43
44#define NFSDDBG_FACILITY NFSDDBG_PROC
45
190e4fbf 46/* Globals */
e970a573 47static struct file *rec_file;
48483bf2 48static char user_recovery_dirname[PATH_MAX] = "/var/lib/nfs/v4recovery";
190e4fbf 49
d84f4f99
DH
50static int
51nfs4_save_creds(const struct cred **original_creds)
190e4fbf 52{
d84f4f99
DH
53 struct cred *new;
54
55 new = prepare_creds();
56 if (!new)
57 return -ENOMEM;
58
59 new->fsuid = 0;
60 new->fsgid = 0;
61 *original_creds = override_creds(new);
62 put_cred(new);
63 return 0;
190e4fbf
N
64}
65
66static void
d84f4f99 67nfs4_reset_creds(const struct cred *original)
190e4fbf 68{
d84f4f99 69 revert_creds(original);
190e4fbf
N
70}
71
a55370a3
N
72static void
73md5_to_hex(char *out, char *md5)
74{
75 int i;
76
77 for (i=0; i<16; i++) {
78 unsigned char c = md5[i];
79
80 *out++ = '0' + ((c&0xf0)>>4) + (c>=0xa0)*('a'-'9'-1);
81 *out++ = '0' + (c&0x0f) + ((c&0x0f)>=0x0a)*('a'-'9'-1);
82 }
83 *out = '\0';
84}
85
b37ad28b 86__be32
a55370a3
N
87nfs4_make_rec_clidname(char *dname, struct xdr_netobj *clname)
88{
89 struct xdr_netobj cksum;
35058687 90 struct hash_desc desc;
60c74f81 91 struct scatterlist sg;
3e772463 92 __be32 status = nfserr_jukebox;
a55370a3
N
93
94 dprintk("NFSD: nfs4_make_rec_clidname for %.*s\n",
95 clname->len, clname->data);
35058687
HX
96 desc.flags = CRYPTO_TFM_REQ_MAY_SLEEP;
97 desc.tfm = crypto_alloc_hash("md5", 0, CRYPTO_ALG_ASYNC);
98 if (IS_ERR(desc.tfm))
99 goto out_no_tfm;
100 cksum.len = crypto_hash_digestsize(desc.tfm);
a55370a3
N
101 cksum.data = kmalloc(cksum.len, GFP_KERNEL);
102 if (cksum.data == NULL)
103 goto out;
a55370a3 104
60c74f81 105 sg_init_one(&sg, clname->data, clname->len);
a55370a3 106
60c74f81 107 if (crypto_hash_digest(&desc, &sg, sg.length, cksum.data))
35058687 108 goto out;
a55370a3
N
109
110 md5_to_hex(dname, cksum.data);
111
a55370a3
N
112 status = nfs_ok;
113out:
2bd9e7b6 114 kfree(cksum.data);
35058687
HX
115 crypto_free_hash(desc.tfm);
116out_no_tfm:
a55370a3
N
117 return status;
118}
190e4fbf 119
c7b9a459
N
120int
121nfsd4_create_clid_dir(struct nfs4_client *clp)
122{
d84f4f99 123 const struct cred *original_cred;
c7b9a459 124 char *dname = clp->cl_recdir;
e970a573 125 struct dentry *dir, *dentry;
c7b9a459
N
126 int status;
127
128 dprintk("NFSD: nfsd4_create_clid_dir for \"%s\"\n", dname);
129
b8548894 130 if (clp->cl_firststate)
c7b9a459 131 return 0;
6577aac0 132 clp->cl_firststate = 1;
b8548894
BF
133 if (!rec_file)
134 return -ENOENT;
d84f4f99
DH
135 status = nfs4_save_creds(&original_cred);
136 if (status < 0)
137 return status;
c7b9a459 138
e970a573 139 dir = rec_file->f_path.dentry;
c7b9a459 140 /* lock the parent */
e970a573 141 mutex_lock(&dir->d_inode->i_mutex);
c7b9a459 142
e970a573 143 dentry = lookup_one_len(dname, dir, HEXDIR_LEN-1);
c7b9a459
N
144 if (IS_ERR(dentry)) {
145 status = PTR_ERR(dentry);
146 goto out_unlock;
147 }
6577aac0 148 if (dentry->d_inode)
aec39680
BF
149 /*
150 * In the 4.1 case, where we're called from
151 * reclaim_complete(), records from the previous reboot
152 * may still be left, so this is OK.
153 *
154 * In the 4.0 case, we should never get here; but we may
155 * as well be forgiving and just succeed silently.
156 */
c7b9a459 157 goto out_put;
e970a573 158 status = mnt_want_write(rec_file->f_path.mnt);
463c3197
DH
159 if (status)
160 goto out_put;
e970a573
CH
161 status = vfs_mkdir(dir->d_inode, dentry, S_IRWXU);
162 mnt_drop_write(rec_file->f_path.mnt);
c7b9a459
N
163out_put:
164 dput(dentry);
165out_unlock:
e970a573 166 mutex_unlock(&dir->d_inode->i_mutex);
6577aac0 167 if (status == 0)
8018ab05 168 vfs_fsync(rec_file, 0);
6577aac0
BH
169 else
170 printk(KERN_ERR "NFSD: failed to write recovery record"
171 " (err %d); please check that %s exists"
172 " and is writeable", status,
173 user_recovery_dirname);
d84f4f99 174 nfs4_reset_creds(original_cred);
c7b9a459
N
175 return status;
176}
177
190e4fbf
N
178typedef int (recdir_func)(struct dentry *, struct dentry *);
179
05f4f678
BF
180struct name_list {
181 char name[HEXDIR_LEN];
190e4fbf
N
182 struct list_head list;
183};
184
190e4fbf 185static int
05f4f678 186nfsd4_build_namelist(void *arg, const char *name, int namlen,
afefdbb2 187 loff_t offset, u64 ino, unsigned int d_type)
190e4fbf 188{
05f4f678
BF
189 struct list_head *names = arg;
190 struct name_list *entry;
190e4fbf 191
05f4f678 192 if (namlen != HEXDIR_LEN - 1)
b37ad28b 193 return 0;
05f4f678
BF
194 entry = kmalloc(sizeof(struct name_list), GFP_KERNEL);
195 if (entry == NULL)
190e4fbf 196 return -ENOMEM;
05f4f678
BF
197 memcpy(entry->name, name, HEXDIR_LEN - 1);
198 entry->name[HEXDIR_LEN - 1] = '\0';
199 list_add(&entry->list, names);
190e4fbf
N
200 return 0;
201}
202
203static int
5b4b299c 204nfsd4_list_rec_dir(recdir_func *f)
190e4fbf 205{
d84f4f99 206 const struct cred *original_cred;
5b4b299c 207 struct dentry *dir = rec_file->f_path.dentry;
05f4f678 208 LIST_HEAD(names);
190e4fbf
N
209 int status;
210
d84f4f99
DH
211 status = nfs4_save_creds(&original_cred);
212 if (status < 0)
213 return status;
190e4fbf 214
5b4b299c
AV
215 status = vfs_llseek(rec_file, 0, SEEK_SET);
216 if (status < 0) {
217 nfs4_reset_creds(original_cred);
218 return status;
219 }
220
221 status = vfs_readdir(rec_file, nfsd4_build_namelist, &names);
8daed1e5 222 mutex_lock_nested(&dir->d_inode->i_mutex, I_MUTEX_PARENT);
05f4f678 223 while (!list_empty(&names)) {
5b4b299c 224 struct name_list *entry;
05f4f678 225 entry = list_entry(names.next, struct name_list, list);
5b4b299c
AV
226 if (!status) {
227 struct dentry *dentry;
228 dentry = lookup_one_len(entry->name, dir, HEXDIR_LEN-1);
229 if (IS_ERR(dentry)) {
230 status = PTR_ERR(dentry);
231 break;
232 }
233 status = f(dir, dentry);
234 dput(dentry);
05f4f678 235 }
05f4f678
BF
236 list_del(&entry->list);
237 kfree(entry);
190e4fbf 238 }
2f9092e1 239 mutex_unlock(&dir->d_inode->i_mutex);
d84f4f99 240 nfs4_reset_creds(original_cred);
190e4fbf
N
241 return status;
242}
243
c7b9a459
N
244static int
245nfsd4_unlink_clid_dir(char *name, int namlen)
246{
e970a573 247 struct dentry *dir, *dentry;
c7b9a459
N
248 int status;
249
250 dprintk("NFSD: nfsd4_unlink_clid_dir. name %.*s\n", namlen, name);
251
e970a573
CH
252 dir = rec_file->f_path.dentry;
253 mutex_lock_nested(&dir->d_inode->i_mutex, I_MUTEX_PARENT);
254 dentry = lookup_one_len(name, dir, namlen);
c7b9a459
N
255 if (IS_ERR(dentry)) {
256 status = PTR_ERR(dentry);
2f9092e1 257 goto out_unlock;
c7b9a459
N
258 }
259 status = -ENOENT;
260 if (!dentry->d_inode)
261 goto out;
e970a573 262 status = vfs_rmdir(dir->d_inode, dentry);
c7b9a459
N
263out:
264 dput(dentry);
2f9092e1 265out_unlock:
e970a573 266 mutex_unlock(&dir->d_inode->i_mutex);
c7b9a459
N
267 return status;
268}
269
270void
271nfsd4_remove_clid_dir(struct nfs4_client *clp)
272{
d84f4f99 273 const struct cred *original_cred;
c7b9a459
N
274 int status;
275
e970a573 276 if (!rec_file || !clp->cl_firststate)
c7b9a459
N
277 return;
278
e970a573 279 status = mnt_want_write(rec_file->f_path.mnt);
0622753b
DH
280 if (status)
281 goto out;
67be4313 282 clp->cl_firststate = 0;
d84f4f99
DH
283
284 status = nfs4_save_creds(&original_cred);
285 if (status < 0)
286 goto out;
287
c7b9a459 288 status = nfsd4_unlink_clid_dir(clp->cl_recdir, HEXDIR_LEN-1);
d84f4f99 289 nfs4_reset_creds(original_cred);
c7b9a459 290 if (status == 0)
8018ab05 291 vfs_fsync(rec_file, 0);
e970a573 292 mnt_drop_write(rec_file->f_path.mnt);
0622753b 293out:
c7b9a459
N
294 if (status)
295 printk("NFSD: Failed to remove expired client state directory"
296 " %.*s\n", HEXDIR_LEN, clp->cl_recdir);
297 return;
298}
299
300static int
301purge_old(struct dentry *parent, struct dentry *child)
302{
303 int status;
304
a1bcecd2 305 if (nfs4_has_reclaimed_state(child->d_name.name, false))
b37ad28b 306 return 0;
c7b9a459 307
2f9092e1 308 status = vfs_rmdir(parent->d_inode, child);
c7b9a459
N
309 if (status)
310 printk("failed to remove client recovery directory %s\n",
311 child->d_name.name);
312 /* Keep trying, success or failure: */
b37ad28b 313 return 0;
c7b9a459
N
314}
315
316void
317nfsd4_recdir_purge_old(void) {
318 int status;
319
e970a573 320 if (!rec_file)
c7b9a459 321 return;
e970a573 322 status = mnt_want_write(rec_file->f_path.mnt);
0622753b
DH
323 if (status)
324 goto out;
5b4b299c 325 status = nfsd4_list_rec_dir(purge_old);
c7b9a459 326 if (status == 0)
8018ab05 327 vfs_fsync(rec_file, 0);
e970a573 328 mnt_drop_write(rec_file->f_path.mnt);
0622753b 329out:
c7b9a459
N
330 if (status)
331 printk("nfsd4: failed to purge old clients from recovery"
e970a573 332 " directory %s\n", rec_file->f_path.dentry->d_name.name);
c7b9a459
N
333}
334
190e4fbf
N
335static int
336load_recdir(struct dentry *parent, struct dentry *child)
337{
338 if (child->d_name.len != HEXDIR_LEN - 1) {
339 printk("nfsd4: illegal name %s in recovery directory\n",
340 child->d_name.name);
341 /* Keep trying; maybe the others are OK: */
b37ad28b 342 return 0;
190e4fbf
N
343 }
344 nfs4_client_to_reclaim(child->d_name.name);
b37ad28b 345 return 0;
190e4fbf
N
346}
347
348int
349nfsd4_recdir_load(void) {
350 int status;
351
e970a573
CH
352 if (!rec_file)
353 return 0;
354
5b4b299c 355 status = nfsd4_list_rec_dir(load_recdir);
190e4fbf
N
356 if (status)
357 printk("nfsd4: failed loading clients from recovery"
e970a573 358 " directory %s\n", rec_file->f_path.dentry->d_name.name);
190e4fbf
N
359 return status;
360}
361
362/*
363 * Hold reference to the recovery directory.
364 */
365
366void
48483bf2 367nfsd4_init_recdir()
190e4fbf 368{
d84f4f99
DH
369 const struct cred *original_cred;
370 int status;
190e4fbf
N
371
372 printk("NFSD: Using %s as the NFSv4 state recovery directory\n",
48483bf2 373 user_recovery_dirname);
190e4fbf 374
e970a573 375 BUG_ON(rec_file);
190e4fbf 376
d84f4f99
DH
377 status = nfs4_save_creds(&original_cred);
378 if (status < 0) {
379 printk("NFSD: Unable to change credentials to find recovery"
380 " directory: error %d\n",
381 status);
382 return;
383 }
190e4fbf 384
48483bf2 385 rec_file = filp_open(user_recovery_dirname, O_RDONLY | O_DIRECTORY, 0);
e970a573 386 if (IS_ERR(rec_file)) {
c2642ab0 387 printk("NFSD: unable to find recovery directory %s\n",
48483bf2 388 user_recovery_dirname);
e970a573
CH
389 rec_file = NULL;
390 }
190e4fbf 391
d84f4f99 392 nfs4_reset_creds(original_cred);
190e4fbf
N
393}
394
395void
396nfsd4_shutdown_recdir(void)
397{
e970a573 398 if (!rec_file)
190e4fbf 399 return;
e970a573
CH
400 fput(rec_file);
401 rec_file = NULL;
190e4fbf 402}
48483bf2
BF
403
404/*
405 * Change the NFSv4 recovery directory to recdir.
406 */
407int
408nfs4_reset_recoverydir(char *recdir)
409{
410 int status;
411 struct path path;
412
413 status = kern_path(recdir, LOOKUP_FOLLOW, &path);
414 if (status)
415 return status;
416 status = -ENOTDIR;
417 if (S_ISDIR(path.dentry->d_inode->i_mode)) {
418 strcpy(user_recovery_dirname, recdir);
419 status = 0;
420 }
421 path_put(&path);
422 return status;
423}
424
425char *
426nfs4_recoverydir(void)
427{
428 return user_recovery_dirname;
429}
This page took 0.563982 seconds and 5 git commands to generate.