CRED: Inaugurate COW credentials
[linux-2.6/mini2440.git] / fs / nfsd / nfs4recover.c
blob9371ea12d7fa459e6ff9b6f6babd148eaccfd1fb
1 /*
2 * linux/fs/nfsd/nfs4recover.c
4 * Copyright (c) 2004 The Regents of the University of Michigan.
5 * All rights reserved.
7 * Andy Adamson <andros@citi.umich.edu>
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. Neither the name of the University nor the names of its
19 * contributors may be used to endorse or promote products derived
20 * from this software without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
23 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
24 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
25 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
27 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
28 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
29 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
30 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
31 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
32 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 #include <linux/err.h>
37 #include <linux/sunrpc/svc.h>
38 #include <linux/nfsd/nfsd.h>
39 #include <linux/nfs4.h>
40 #include <linux/nfsd/state.h>
41 #include <linux/nfsd/xdr4.h>
42 #include <linux/param.h>
43 #include <linux/file.h>
44 #include <linux/namei.h>
45 #include <asm/uaccess.h>
46 #include <linux/scatterlist.h>
47 #include <linux/crypto.h>
48 #include <linux/sched.h>
49 #include <linux/mount.h>
51 #define NFSDDBG_FACILITY NFSDDBG_PROC
53 /* Globals */
54 static struct path rec_dir;
55 static int rec_dir_init = 0;
57 static int
58 nfs4_save_creds(const struct cred **original_creds)
60 struct cred *new;
62 new = prepare_creds();
63 if (!new)
64 return -ENOMEM;
66 new->fsuid = 0;
67 new->fsgid = 0;
68 *original_creds = override_creds(new);
69 put_cred(new);
70 return 0;
73 static void
74 nfs4_reset_creds(const struct cred *original)
76 revert_creds(original);
79 static void
80 md5_to_hex(char *out, char *md5)
82 int i;
84 for (i=0; i<16; i++) {
85 unsigned char c = md5[i];
87 *out++ = '0' + ((c&0xf0)>>4) + (c>=0xa0)*('a'-'9'-1);
88 *out++ = '0' + (c&0x0f) + ((c&0x0f)>=0x0a)*('a'-'9'-1);
90 *out = '\0';
93 __be32
94 nfs4_make_rec_clidname(char *dname, struct xdr_netobj *clname)
96 struct xdr_netobj cksum;
97 struct hash_desc desc;
98 struct scatterlist sg;
99 __be32 status = nfserr_resource;
101 dprintk("NFSD: nfs4_make_rec_clidname for %.*s\n",
102 clname->len, clname->data);
103 desc.flags = CRYPTO_TFM_REQ_MAY_SLEEP;
104 desc.tfm = crypto_alloc_hash("md5", 0, CRYPTO_ALG_ASYNC);
105 if (IS_ERR(desc.tfm))
106 goto out_no_tfm;
107 cksum.len = crypto_hash_digestsize(desc.tfm);
108 cksum.data = kmalloc(cksum.len, GFP_KERNEL);
109 if (cksum.data == NULL)
110 goto out;
112 sg_init_one(&sg, clname->data, clname->len);
114 if (crypto_hash_digest(&desc, &sg, sg.length, cksum.data))
115 goto out;
117 md5_to_hex(dname, cksum.data);
119 kfree(cksum.data);
120 status = nfs_ok;
121 out:
122 crypto_free_hash(desc.tfm);
123 out_no_tfm:
124 return status;
127 static void
128 nfsd4_sync_rec_dir(void)
130 mutex_lock(&rec_dir.dentry->d_inode->i_mutex);
131 nfsd_sync_dir(rec_dir.dentry);
132 mutex_unlock(&rec_dir.dentry->d_inode->i_mutex);
136 nfsd4_create_clid_dir(struct nfs4_client *clp)
138 const struct cred *original_cred;
139 char *dname = clp->cl_recdir;
140 struct dentry *dentry;
141 int status;
143 dprintk("NFSD: nfsd4_create_clid_dir for \"%s\"\n", dname);
145 if (!rec_dir_init || clp->cl_firststate)
146 return 0;
148 status = nfs4_save_creds(&original_cred);
149 if (status < 0)
150 return status;
152 /* lock the parent */
153 mutex_lock(&rec_dir.dentry->d_inode->i_mutex);
155 dentry = lookup_one_len(dname, rec_dir.dentry, HEXDIR_LEN-1);
156 if (IS_ERR(dentry)) {
157 status = PTR_ERR(dentry);
158 goto out_unlock;
160 status = -EEXIST;
161 if (dentry->d_inode) {
162 dprintk("NFSD: nfsd4_create_clid_dir: DIRECTORY EXISTS\n");
163 goto out_put;
165 status = mnt_want_write(rec_dir.mnt);
166 if (status)
167 goto out_put;
168 status = vfs_mkdir(rec_dir.dentry->d_inode, dentry, S_IRWXU);
169 mnt_drop_write(rec_dir.mnt);
170 out_put:
171 dput(dentry);
172 out_unlock:
173 mutex_unlock(&rec_dir.dentry->d_inode->i_mutex);
174 if (status == 0) {
175 clp->cl_firststate = 1;
176 nfsd4_sync_rec_dir();
178 nfs4_reset_creds(original_cred);
179 dprintk("NFSD: nfsd4_create_clid_dir returns %d\n", status);
180 return status;
183 typedef int (recdir_func)(struct dentry *, struct dentry *);
185 struct dentry_list {
186 struct dentry *dentry;
187 struct list_head list;
190 struct dentry_list_arg {
191 struct list_head dentries;
192 struct dentry *parent;
195 static int
196 nfsd4_build_dentrylist(void *arg, const char *name, int namlen,
197 loff_t offset, u64 ino, unsigned int d_type)
199 struct dentry_list_arg *dla = arg;
200 struct list_head *dentries = &dla->dentries;
201 struct dentry *parent = dla->parent;
202 struct dentry *dentry;
203 struct dentry_list *child;
205 if (name && isdotent(name, namlen))
206 return 0;
207 dentry = lookup_one_len(name, parent, namlen);
208 if (IS_ERR(dentry))
209 return PTR_ERR(dentry);
210 child = kmalloc(sizeof(*child), GFP_KERNEL);
211 if (child == NULL)
212 return -ENOMEM;
213 child->dentry = dentry;
214 list_add(&child->list, dentries);
215 return 0;
218 static int
219 nfsd4_list_rec_dir(struct dentry *dir, recdir_func *f)
221 const struct cred *original_cred;
222 struct file *filp;
223 struct dentry_list_arg dla = {
224 .parent = dir,
226 struct list_head *dentries = &dla.dentries;
227 struct dentry_list *child;
228 int status;
230 if (!rec_dir_init)
231 return 0;
233 status = nfs4_save_creds(&original_cred);
234 if (status < 0)
235 return status;
237 filp = dentry_open(dget(dir), mntget(rec_dir.mnt), O_RDONLY,
238 current_cred());
239 status = PTR_ERR(filp);
240 if (IS_ERR(filp))
241 goto out;
242 INIT_LIST_HEAD(dentries);
243 status = vfs_readdir(filp, nfsd4_build_dentrylist, &dla);
244 fput(filp);
245 while (!list_empty(dentries)) {
246 child = list_entry(dentries->next, struct dentry_list, list);
247 status = f(dir, child->dentry);
248 if (status)
249 goto out;
250 list_del(&child->list);
251 dput(child->dentry);
252 kfree(child);
254 out:
255 while (!list_empty(dentries)) {
256 child = list_entry(dentries->next, struct dentry_list, list);
257 list_del(&child->list);
258 dput(child->dentry);
259 kfree(child);
261 nfs4_reset_creds(original_cred);
262 return status;
265 static int
266 nfsd4_remove_clid_file(struct dentry *dir, struct dentry *dentry)
268 int status;
270 if (!S_ISREG(dir->d_inode->i_mode)) {
271 printk("nfsd4: non-file found in client recovery directory\n");
272 return -EINVAL;
274 mutex_lock_nested(&dir->d_inode->i_mutex, I_MUTEX_PARENT);
275 status = vfs_unlink(dir->d_inode, dentry);
276 mutex_unlock(&dir->d_inode->i_mutex);
277 return status;
280 static int
281 nfsd4_clear_clid_dir(struct dentry *dir, struct dentry *dentry)
283 int status;
285 /* For now this directory should already be empty, but we empty it of
286 * any regular files anyway, just in case the directory was created by
287 * a kernel from the future.... */
288 nfsd4_list_rec_dir(dentry, nfsd4_remove_clid_file);
289 mutex_lock_nested(&dir->d_inode->i_mutex, I_MUTEX_PARENT);
290 status = vfs_rmdir(dir->d_inode, dentry);
291 mutex_unlock(&dir->d_inode->i_mutex);
292 return status;
295 static int
296 nfsd4_unlink_clid_dir(char *name, int namlen)
298 struct dentry *dentry;
299 int status;
301 dprintk("NFSD: nfsd4_unlink_clid_dir. name %.*s\n", namlen, name);
303 mutex_lock(&rec_dir.dentry->d_inode->i_mutex);
304 dentry = lookup_one_len(name, rec_dir.dentry, namlen);
305 mutex_unlock(&rec_dir.dentry->d_inode->i_mutex);
306 if (IS_ERR(dentry)) {
307 status = PTR_ERR(dentry);
308 return status;
310 status = -ENOENT;
311 if (!dentry->d_inode)
312 goto out;
314 status = nfsd4_clear_clid_dir(rec_dir.dentry, dentry);
315 out:
316 dput(dentry);
317 return status;
320 void
321 nfsd4_remove_clid_dir(struct nfs4_client *clp)
323 const struct cred *original_cred;
324 int status;
326 if (!rec_dir_init || !clp->cl_firststate)
327 return;
329 status = mnt_want_write(rec_dir.mnt);
330 if (status)
331 goto out;
332 clp->cl_firststate = 0;
334 status = nfs4_save_creds(&original_cred);
335 if (status < 0)
336 goto out;
338 status = nfsd4_unlink_clid_dir(clp->cl_recdir, HEXDIR_LEN-1);
339 nfs4_reset_creds(original_cred);
340 if (status == 0)
341 nfsd4_sync_rec_dir();
342 mnt_drop_write(rec_dir.mnt);
343 out:
344 if (status)
345 printk("NFSD: Failed to remove expired client state directory"
346 " %.*s\n", HEXDIR_LEN, clp->cl_recdir);
347 return;
350 static int
351 purge_old(struct dentry *parent, struct dentry *child)
353 int status;
355 if (nfs4_has_reclaimed_state(child->d_name.name))
356 return 0;
358 status = nfsd4_clear_clid_dir(parent, child);
359 if (status)
360 printk("failed to remove client recovery directory %s\n",
361 child->d_name.name);
362 /* Keep trying, success or failure: */
363 return 0;
366 void
367 nfsd4_recdir_purge_old(void) {
368 int status;
370 if (!rec_dir_init)
371 return;
372 status = mnt_want_write(rec_dir.mnt);
373 if (status)
374 goto out;
375 status = nfsd4_list_rec_dir(rec_dir.dentry, purge_old);
376 if (status == 0)
377 nfsd4_sync_rec_dir();
378 mnt_drop_write(rec_dir.mnt);
379 out:
380 if (status)
381 printk("nfsd4: failed to purge old clients from recovery"
382 " directory %s\n", rec_dir.dentry->d_name.name);
385 static int
386 load_recdir(struct dentry *parent, struct dentry *child)
388 if (child->d_name.len != HEXDIR_LEN - 1) {
389 printk("nfsd4: illegal name %s in recovery directory\n",
390 child->d_name.name);
391 /* Keep trying; maybe the others are OK: */
392 return 0;
394 nfs4_client_to_reclaim(child->d_name.name);
395 return 0;
399 nfsd4_recdir_load(void) {
400 int status;
402 status = nfsd4_list_rec_dir(rec_dir.dentry, load_recdir);
403 if (status)
404 printk("nfsd4: failed loading clients from recovery"
405 " directory %s\n", rec_dir.dentry->d_name.name);
406 return status;
410 * Hold reference to the recovery directory.
413 void
414 nfsd4_init_recdir(char *rec_dirname)
416 const struct cred *original_cred;
417 int status;
419 printk("NFSD: Using %s as the NFSv4 state recovery directory\n",
420 rec_dirname);
422 BUG_ON(rec_dir_init);
424 status = nfs4_save_creds(&original_cred);
425 if (status < 0) {
426 printk("NFSD: Unable to change credentials to find recovery"
427 " directory: error %d\n",
428 status);
429 return;
432 status = kern_path(rec_dirname, LOOKUP_FOLLOW | LOOKUP_DIRECTORY,
433 &rec_dir);
434 if (status)
435 printk("NFSD: unable to find recovery directory %s\n",
436 rec_dirname);
438 if (!status)
439 rec_dir_init = 1;
440 nfs4_reset_creds(original_cred);
443 void
444 nfsd4_shutdown_recdir(void)
446 if (!rec_dir_init)
447 return;
448 rec_dir_init = 0;
449 path_put(&rec_dir);