diff options
Diffstat (limited to 'fs/nfsd/nfs4recover.c')
-rw-r--r-- | fs/nfsd/nfs4recover.c | 166 |
1 files changed, 166 insertions, 0 deletions
diff --git a/fs/nfsd/nfs4recover.c b/fs/nfsd/nfs4recover.c index 841a305d7948..2dc9851a1d37 100644 --- a/fs/nfsd/nfs4recover.c +++ b/fs/nfsd/nfs4recover.c | |||
@@ -39,6 +39,9 @@ | |||
39 | #include <linux/nfs4.h> | 39 | #include <linux/nfs4.h> |
40 | #include <linux/nfsd/state.h> | 40 | #include <linux/nfsd/state.h> |
41 | #include <linux/nfsd/xdr4.h> | 41 | #include <linux/nfsd/xdr4.h> |
42 | #include <linux/param.h> | ||
43 | #include <linux/file.h> | ||
44 | #include <linux/namei.h> | ||
42 | #include <asm/uaccess.h> | 45 | #include <asm/uaccess.h> |
43 | #include <asm/scatterlist.h> | 46 | #include <asm/scatterlist.h> |
44 | #include <linux/crypto.h> | 47 | #include <linux/crypto.h> |
@@ -46,6 +49,27 @@ | |||
46 | 49 | ||
47 | #define NFSDDBG_FACILITY NFSDDBG_PROC | 50 | #define NFSDDBG_FACILITY NFSDDBG_PROC |
48 | 51 | ||
52 | /* Globals */ | ||
53 | char recovery_dirname[PATH_MAX] = "/var/lib/nfs/v4recovery"; | ||
54 | static struct nameidata rec_dir; | ||
55 | static int rec_dir_init = 0; | ||
56 | |||
57 | static void | ||
58 | nfs4_save_user(uid_t *saveuid, gid_t *savegid) | ||
59 | { | ||
60 | *saveuid = current->fsuid; | ||
61 | *savegid = current->fsgid; | ||
62 | current->fsuid = 0; | ||
63 | current->fsgid = 0; | ||
64 | } | ||
65 | |||
66 | static void | ||
67 | nfs4_reset_user(uid_t saveuid, gid_t savegid) | ||
68 | { | ||
69 | current->fsuid = saveuid; | ||
70 | current->fsgid = savegid; | ||
71 | } | ||
72 | |||
49 | static void | 73 | static void |
50 | md5_to_hex(char *out, char *md5) | 74 | md5_to_hex(char *out, char *md5) |
51 | { | 75 | { |
@@ -95,3 +119,145 @@ out: | |||
95 | crypto_free_tfm(tfm); | 119 | crypto_free_tfm(tfm); |
96 | return status; | 120 | return status; |
97 | } | 121 | } |
122 | |||
123 | typedef int (recdir_func)(struct dentry *, struct dentry *); | ||
124 | |||
125 | struct dentry_list { | ||
126 | struct dentry *dentry; | ||
127 | struct list_head list; | ||
128 | }; | ||
129 | |||
130 | struct dentry_list_arg { | ||
131 | struct list_head dentries; | ||
132 | struct dentry *parent; | ||
133 | }; | ||
134 | |||
135 | static int | ||
136 | nfsd4_build_dentrylist(void *arg, const char *name, int namlen, | ||
137 | loff_t offset, ino_t ino, unsigned int d_type) | ||
138 | { | ||
139 | struct dentry_list_arg *dla = arg; | ||
140 | struct list_head *dentries = &dla->dentries; | ||
141 | struct dentry *parent = dla->parent; | ||
142 | struct dentry *dentry; | ||
143 | struct dentry_list *child; | ||
144 | |||
145 | if (name && isdotent(name, namlen)) | ||
146 | return nfs_ok; | ||
147 | dentry = lookup_one_len(name, parent, namlen); | ||
148 | if (IS_ERR(dentry)) | ||
149 | return PTR_ERR(dentry); | ||
150 | child = kmalloc(sizeof(*child), GFP_KERNEL); | ||
151 | if (child == NULL) | ||
152 | return -ENOMEM; | ||
153 | child->dentry = dentry; | ||
154 | list_add(&child->list, dentries); | ||
155 | return 0; | ||
156 | } | ||
157 | |||
158 | static int | ||
159 | nfsd4_list_rec_dir(struct dentry *dir, recdir_func *f) | ||
160 | { | ||
161 | struct file *filp; | ||
162 | struct dentry_list_arg dla = { | ||
163 | .parent = dir, | ||
164 | }; | ||
165 | struct list_head *dentries = &dla.dentries; | ||
166 | struct dentry_list *child; | ||
167 | uid_t uid; | ||
168 | gid_t gid; | ||
169 | int status; | ||
170 | |||
171 | if (!rec_dir_init) | ||
172 | return 0; | ||
173 | |||
174 | nfs4_save_user(&uid, &gid); | ||
175 | |||
176 | filp = dentry_open(dget(dir), mntget(rec_dir.mnt), | ||
177 | O_RDWR); | ||
178 | status = PTR_ERR(filp); | ||
179 | if (IS_ERR(filp)) | ||
180 | goto out; | ||
181 | INIT_LIST_HEAD(dentries); | ||
182 | status = vfs_readdir(filp, nfsd4_build_dentrylist, &dla); | ||
183 | fput(filp); | ||
184 | while (!list_empty(dentries)) { | ||
185 | child = list_entry(dentries->next, struct dentry_list, list); | ||
186 | status = f(dir, child->dentry); | ||
187 | if (status) | ||
188 | goto out; | ||
189 | list_del(&child->list); | ||
190 | dput(child->dentry); | ||
191 | kfree(child); | ||
192 | } | ||
193 | out: | ||
194 | while (!list_empty(dentries)) { | ||
195 | child = list_entry(dentries->next, struct dentry_list, list); | ||
196 | list_del(&child->list); | ||
197 | dput(child->dentry); | ||
198 | kfree(child); | ||
199 | } | ||
200 | nfs4_reset_user(uid, gid); | ||
201 | return status; | ||
202 | } | ||
203 | |||
204 | static int | ||
205 | load_recdir(struct dentry *parent, struct dentry *child) | ||
206 | { | ||
207 | if (child->d_name.len != HEXDIR_LEN - 1) { | ||
208 | printk("nfsd4: illegal name %s in recovery directory\n", | ||
209 | child->d_name.name); | ||
210 | /* Keep trying; maybe the others are OK: */ | ||
211 | return nfs_ok; | ||
212 | } | ||
213 | nfs4_client_to_reclaim(child->d_name.name); | ||
214 | return nfs_ok; | ||
215 | } | ||
216 | |||
217 | int | ||
218 | nfsd4_recdir_load(void) { | ||
219 | int status; | ||
220 | |||
221 | status = nfsd4_list_rec_dir(rec_dir.dentry, load_recdir); | ||
222 | if (status) | ||
223 | printk("nfsd4: failed loading clients from recovery" | ||
224 | " directory %s\n", rec_dir.dentry->d_name.name); | ||
225 | return status; | ||
226 | } | ||
227 | |||
228 | /* | ||
229 | * Hold reference to the recovery directory. | ||
230 | */ | ||
231 | |||
232 | void | ||
233 | nfsd4_init_recdir(char *rec_dirname) | ||
234 | { | ||
235 | uid_t uid = 0; | ||
236 | gid_t gid = 0; | ||
237 | int status; | ||
238 | |||
239 | printk("NFSD: Using %s as the NFSv4 state recovery directory\n", | ||
240 | rec_dirname); | ||
241 | |||
242 | BUG_ON(rec_dir_init); | ||
243 | |||
244 | nfs4_save_user(&uid, &gid); | ||
245 | |||
246 | status = path_lookup(rec_dirname, LOOKUP_FOLLOW, &rec_dir); | ||
247 | if (status == -ENOENT) | ||
248 | printk("NFSD: recovery directory %s doesn't exist\n", | ||
249 | rec_dirname); | ||
250 | |||
251 | if (!status) | ||
252 | rec_dir_init = 1; | ||
253 | nfs4_reset_user(uid, gid); | ||
254 | } | ||
255 | |||
256 | void | ||
257 | nfsd4_shutdown_recdir(void) | ||
258 | { | ||
259 | if (!rec_dir_init) | ||
260 | return; | ||
261 | rec_dir_init = 0; | ||
262 | path_release(&rec_dir); | ||
263 | } | ||