2 * Copyright (c) 2004 The Regents of the University of Michigan.
5 * Andy Adamson <andros@citi.umich.edu>
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
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.
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.
34 #include <linux/file.h>
35 #include <linux/slab.h>
36 #include <linux/namei.h>
37 #include <linux/crypto.h>
38 #include <linux/sched.h>
44 #define NFSDDBG_FACILITY NFSDDBG_PROC
47 static struct path rec_dir
;
48 static int rec_dir_init
= 0;
51 nfs4_save_creds(const struct cred
**original_creds
)
55 new = prepare_creds();
61 *original_creds
= override_creds(new);
67 nfs4_reset_creds(const struct cred
*original
)
69 revert_creds(original
);
73 md5_to_hex(char *out
, char *md5
)
77 for (i
=0; i
<16; i
++) {
78 unsigned char c
= md5
[i
];
80 *out
++ = '0' + ((c
&0xf0)>>4) + (c
>=0xa0)*('a'-'9'-1);
81 *out
++ = '0' + (c
&0x0f) + ((c
&0x0f)>=0x0a)*('a'-'9'-1);
87 nfs4_make_rec_clidname(char *dname
, struct xdr_netobj
*clname
)
89 struct xdr_netobj cksum
;
90 struct hash_desc desc
;
91 struct scatterlist sg
;
92 __be32 status
= nfserr_resource
;
94 dprintk("NFSD: nfs4_make_rec_clidname for %.*s\n",
95 clname
->len
, clname
->data
);
96 desc
.flags
= CRYPTO_TFM_REQ_MAY_SLEEP
;
97 desc
.tfm
= crypto_alloc_hash("md5", 0, CRYPTO_ALG_ASYNC
);
100 cksum
.len
= crypto_hash_digestsize(desc
.tfm
);
101 cksum
.data
= kmalloc(cksum
.len
, GFP_KERNEL
);
102 if (cksum
.data
== NULL
)
105 sg_init_one(&sg
, clname
->data
, clname
->len
);
107 if (crypto_hash_digest(&desc
, &sg
, sg
.length
, cksum
.data
))
110 md5_to_hex(dname
, cksum
.data
);
115 crypto_free_hash(desc
.tfm
);
121 nfsd4_sync_rec_dir(void)
123 vfs_fsync(NULL
, rec_dir
.dentry
, 0);
127 nfsd4_create_clid_dir(struct nfs4_client
*clp
)
129 const struct cred
*original_cred
;
130 char *dname
= clp
->cl_recdir
;
131 struct dentry
*dentry
;
134 dprintk("NFSD: nfsd4_create_clid_dir for \"%s\"\n", dname
);
136 if (!rec_dir_init
|| clp
->cl_firststate
)
139 status
= nfs4_save_creds(&original_cred
);
143 /* lock the parent */
144 mutex_lock(&rec_dir
.dentry
->d_inode
->i_mutex
);
146 dentry
= lookup_one_len(dname
, rec_dir
.dentry
, HEXDIR_LEN
-1);
147 if (IS_ERR(dentry
)) {
148 status
= PTR_ERR(dentry
);
152 if (dentry
->d_inode
) {
153 dprintk("NFSD: nfsd4_create_clid_dir: DIRECTORY EXISTS\n");
156 status
= mnt_want_write(rec_dir
.mnt
);
159 status
= vfs_mkdir(rec_dir
.dentry
->d_inode
, dentry
, S_IRWXU
);
160 mnt_drop_write(rec_dir
.mnt
);
164 mutex_unlock(&rec_dir
.dentry
->d_inode
->i_mutex
);
166 clp
->cl_firststate
= 1;
167 nfsd4_sync_rec_dir();
169 nfs4_reset_creds(original_cred
);
170 dprintk("NFSD: nfsd4_create_clid_dir returns %d\n", status
);
174 typedef int (recdir_func
)(struct dentry
*, struct dentry
*);
177 char name
[HEXDIR_LEN
];
178 struct list_head list
;
182 nfsd4_build_namelist(void *arg
, const char *name
, int namlen
,
183 loff_t offset
, u64 ino
, unsigned int d_type
)
185 struct list_head
*names
= arg
;
186 struct name_list
*entry
;
188 if (namlen
!= HEXDIR_LEN
- 1)
190 entry
= kmalloc(sizeof(struct name_list
), GFP_KERNEL
);
193 memcpy(entry
->name
, name
, HEXDIR_LEN
- 1);
194 entry
->name
[HEXDIR_LEN
- 1] = '\0';
195 list_add(&entry
->list
, names
);
200 nfsd4_list_rec_dir(struct dentry
*dir
, recdir_func
*f
)
202 const struct cred
*original_cred
;
205 struct name_list
*entry
;
206 struct dentry
*dentry
;
212 status
= nfs4_save_creds(&original_cred
);
216 filp
= dentry_open(dget(dir
), mntget(rec_dir
.mnt
), O_RDONLY
,
218 status
= PTR_ERR(filp
);
221 status
= vfs_readdir(filp
, nfsd4_build_namelist
, &names
);
223 mutex_lock_nested(&dir
->d_inode
->i_mutex
, I_MUTEX_PARENT
);
224 while (!list_empty(&names
)) {
225 entry
= list_entry(names
.next
, struct name_list
, list
);
227 dentry
= lookup_one_len(entry
->name
, dir
, HEXDIR_LEN
-1);
228 if (IS_ERR(dentry
)) {
229 status
= PTR_ERR(dentry
);
232 status
= f(dir
, dentry
);
236 list_del(&entry
->list
);
239 mutex_unlock(&dir
->d_inode
->i_mutex
);
241 while (!list_empty(&names
)) {
242 entry
= list_entry(names
.next
, struct name_list
, list
);
243 list_del(&entry
->list
);
246 nfs4_reset_creds(original_cred
);
251 nfsd4_unlink_clid_dir(char *name
, int namlen
)
253 struct dentry
*dentry
;
256 dprintk("NFSD: nfsd4_unlink_clid_dir. name %.*s\n", namlen
, name
);
258 mutex_lock_nested(&rec_dir
.dentry
->d_inode
->i_mutex
, I_MUTEX_PARENT
);
259 dentry
= lookup_one_len(name
, rec_dir
.dentry
, namlen
);
260 if (IS_ERR(dentry
)) {
261 status
= PTR_ERR(dentry
);
265 if (!dentry
->d_inode
)
267 status
= vfs_rmdir(rec_dir
.dentry
->d_inode
, dentry
);
271 mutex_unlock(&rec_dir
.dentry
->d_inode
->i_mutex
);
276 nfsd4_remove_clid_dir(struct nfs4_client
*clp
)
278 const struct cred
*original_cred
;
281 if (!rec_dir_init
|| !clp
->cl_firststate
)
284 status
= mnt_want_write(rec_dir
.mnt
);
287 clp
->cl_firststate
= 0;
289 status
= nfs4_save_creds(&original_cred
);
293 status
= nfsd4_unlink_clid_dir(clp
->cl_recdir
, HEXDIR_LEN
-1);
294 nfs4_reset_creds(original_cred
);
296 nfsd4_sync_rec_dir();
297 mnt_drop_write(rec_dir
.mnt
);
300 printk("NFSD: Failed to remove expired client state directory"
301 " %.*s\n", HEXDIR_LEN
, clp
->cl_recdir
);
306 purge_old(struct dentry
*parent
, struct dentry
*child
)
310 /* note: we currently use this path only for minorversion 0 */
311 if (nfs4_has_reclaimed_state(child
->d_name
.name
, false))
314 status
= vfs_rmdir(parent
->d_inode
, child
);
316 printk("failed to remove client recovery directory %s\n",
318 /* Keep trying, success or failure: */
323 nfsd4_recdir_purge_old(void) {
328 status
= mnt_want_write(rec_dir
.mnt
);
331 status
= nfsd4_list_rec_dir(rec_dir
.dentry
, purge_old
);
333 nfsd4_sync_rec_dir();
334 mnt_drop_write(rec_dir
.mnt
);
337 printk("nfsd4: failed to purge old clients from recovery"
338 " directory %s\n", rec_dir
.dentry
->d_name
.name
);
342 load_recdir(struct dentry
*parent
, struct dentry
*child
)
344 if (child
->d_name
.len
!= HEXDIR_LEN
- 1) {
345 printk("nfsd4: illegal name %s in recovery directory\n",
347 /* Keep trying; maybe the others are OK: */
350 nfs4_client_to_reclaim(child
->d_name
.name
);
355 nfsd4_recdir_load(void) {
358 status
= nfsd4_list_rec_dir(rec_dir
.dentry
, load_recdir
);
360 printk("nfsd4: failed loading clients from recovery"
361 " directory %s\n", rec_dir
.dentry
->d_name
.name
);
366 * Hold reference to the recovery directory.
370 nfsd4_init_recdir(char *rec_dirname
)
372 const struct cred
*original_cred
;
375 printk("NFSD: Using %s as the NFSv4 state recovery directory\n",
378 BUG_ON(rec_dir_init
);
380 status
= nfs4_save_creds(&original_cred
);
382 printk("NFSD: Unable to change credentials to find recovery"
383 " directory: error %d\n",
388 status
= kern_path(rec_dirname
, LOOKUP_FOLLOW
| LOOKUP_DIRECTORY
,
391 printk("NFSD: unable to find recovery directory %s\n",
396 nfs4_reset_creds(original_cred
);
400 nfsd4_shutdown_recdir(void)