]>
Commit | Line | Data |
---|---|---|
e5e5558e MS |
1 | /* |
2 | FUSE: Filesystem in Userspace | |
1729a16c | 3 | Copyright (C) 2001-2008 Miklos Szeredi <[email protected]> |
e5e5558e MS |
4 | |
5 | This program can be distributed under the terms of the GNU GPL. | |
6 | See the file COPYING. | |
7 | */ | |
8 | ||
9 | #include "fuse_i.h" | |
10 | ||
11 | #include <linux/pagemap.h> | |
12 | #include <linux/file.h> | |
e5e5558e MS |
13 | #include <linux/sched.h> |
14 | #include <linux/namei.h> | |
07e77dca | 15 | #include <linux/slab.h> |
e5e5558e | 16 | |
0a0898cf MS |
17 | #if BITS_PER_LONG >= 64 |
18 | static inline void fuse_dentry_settime(struct dentry *entry, u64 time) | |
19 | { | |
20 | entry->d_time = time; | |
21 | } | |
22 | ||
23 | static inline u64 fuse_dentry_time(struct dentry *entry) | |
24 | { | |
25 | return entry->d_time; | |
26 | } | |
27 | #else | |
28 | /* | |
29 | * On 32 bit archs store the high 32 bits of time in d_fsdata | |
30 | */ | |
31 | static void fuse_dentry_settime(struct dentry *entry, u64 time) | |
32 | { | |
33 | entry->d_time = time; | |
34 | entry->d_fsdata = (void *) (unsigned long) (time >> 32); | |
35 | } | |
36 | ||
37 | static u64 fuse_dentry_time(struct dentry *entry) | |
38 | { | |
39 | return (u64) entry->d_time + | |
40 | ((u64) (unsigned long) entry->d_fsdata << 32); | |
41 | } | |
42 | #endif | |
43 | ||
6f9f1180 MS |
44 | /* |
45 | * FUSE caches dentries and attributes with separate timeout. The | |
46 | * time in jiffies until the dentry/attributes are valid is stored in | |
47 | * dentry->d_time and fuse_inode->i_time respectively. | |
48 | */ | |
49 | ||
50 | /* | |
51 | * Calculate the time in jiffies until a dentry/attributes are valid | |
52 | */ | |
0a0898cf | 53 | static u64 time_to_jiffies(unsigned long sec, unsigned long nsec) |
e5e5558e | 54 | { |
685d16dd MS |
55 | if (sec || nsec) { |
56 | struct timespec ts = {sec, nsec}; | |
0a0898cf | 57 | return get_jiffies_64() + timespec_to_jiffies(&ts); |
685d16dd | 58 | } else |
0a0898cf | 59 | return 0; |
e5e5558e MS |
60 | } |
61 | ||
6f9f1180 MS |
62 | /* |
63 | * Set dentry and possibly attribute timeouts from the lookup/mk* | |
64 | * replies | |
65 | */ | |
1fb69e78 MS |
66 | static void fuse_change_entry_timeout(struct dentry *entry, |
67 | struct fuse_entry_out *o) | |
0aa7c699 | 68 | { |
0a0898cf MS |
69 | fuse_dentry_settime(entry, |
70 | time_to_jiffies(o->entry_valid, o->entry_valid_nsec)); | |
1fb69e78 MS |
71 | } |
72 | ||
73 | static u64 attr_timeout(struct fuse_attr_out *o) | |
74 | { | |
75 | return time_to_jiffies(o->attr_valid, o->attr_valid_nsec); | |
76 | } | |
77 | ||
78 | static u64 entry_attr_timeout(struct fuse_entry_out *o) | |
79 | { | |
80 | return time_to_jiffies(o->attr_valid, o->attr_valid_nsec); | |
8cbdf1e6 MS |
81 | } |
82 | ||
6f9f1180 MS |
83 | /* |
84 | * Mark the attributes as stale, so that at the next call to | |
85 | * ->getattr() they will be fetched from userspace | |
86 | */ | |
8cbdf1e6 MS |
87 | void fuse_invalidate_attr(struct inode *inode) |
88 | { | |
0a0898cf | 89 | get_fuse_inode(inode)->i_time = 0; |
8cbdf1e6 MS |
90 | } |
91 | ||
6f9f1180 MS |
92 | /* |
93 | * Just mark the entry as stale, so that a next attempt to look it up | |
94 | * will result in a new lookup call to userspace | |
95 | * | |
96 | * This is called when a dentry is about to become negative and the | |
97 | * timeout is unknown (unlink, rmdir, rename and in some cases | |
98 | * lookup) | |
99 | */ | |
dbd561d2 | 100 | void fuse_invalidate_entry_cache(struct dentry *entry) |
8cbdf1e6 | 101 | { |
0a0898cf | 102 | fuse_dentry_settime(entry, 0); |
8cbdf1e6 MS |
103 | } |
104 | ||
6f9f1180 MS |
105 | /* |
106 | * Same as fuse_invalidate_entry_cache(), but also try to remove the | |
107 | * dentry from the hash | |
108 | */ | |
8cbdf1e6 MS |
109 | static void fuse_invalidate_entry(struct dentry *entry) |
110 | { | |
111 | d_invalidate(entry); | |
112 | fuse_invalidate_entry_cache(entry); | |
0aa7c699 MS |
113 | } |
114 | ||
c180eebe MS |
115 | static void fuse_lookup_init(struct fuse_conn *fc, struct fuse_req *req, |
116 | u64 nodeid, struct qstr *name, | |
e5e5558e MS |
117 | struct fuse_entry_out *outarg) |
118 | { | |
0e9663ee | 119 | memset(outarg, 0, sizeof(struct fuse_entry_out)); |
e5e5558e | 120 | req->in.h.opcode = FUSE_LOOKUP; |
c180eebe | 121 | req->in.h.nodeid = nodeid; |
e5e5558e | 122 | req->in.numargs = 1; |
c180eebe MS |
123 | req->in.args[0].size = name->len + 1; |
124 | req->in.args[0].value = name->name; | |
e5e5558e | 125 | req->out.numargs = 1; |
0e9663ee MS |
126 | if (fc->minor < 9) |
127 | req->out.args[0].size = FUSE_COMPAT_ENTRY_OUT_SIZE; | |
128 | else | |
129 | req->out.args[0].size = sizeof(struct fuse_entry_out); | |
e5e5558e MS |
130 | req->out.args[0].value = outarg; |
131 | } | |
132 | ||
5c5c5e51 | 133 | u64 fuse_get_attr_version(struct fuse_conn *fc) |
7dca9fd3 MS |
134 | { |
135 | u64 curr_version; | |
136 | ||
137 | /* | |
138 | * The spin lock isn't actually needed on 64bit archs, but we | |
139 | * don't yet care too much about such optimizations. | |
140 | */ | |
141 | spin_lock(&fc->lock); | |
142 | curr_version = fc->attr_version; | |
143 | spin_unlock(&fc->lock); | |
144 | ||
145 | return curr_version; | |
146 | } | |
147 | ||
6f9f1180 MS |
148 | /* |
149 | * Check whether the dentry is still valid | |
150 | * | |
151 | * If the entry validity timeout has expired and the dentry is | |
152 | * positive, try to redo the lookup. If the lookup results in a | |
153 | * different inode, then let the VFS invalidate the dentry and redo | |
154 | * the lookup once more. If the lookup results in the same inode, | |
155 | * then refresh the attributes, timeouts and mark the dentry valid. | |
156 | */ | |
e5e5558e MS |
157 | static int fuse_dentry_revalidate(struct dentry *entry, struct nameidata *nd) |
158 | { | |
34286d66 | 159 | struct inode *inode; |
8cbdf1e6 | 160 | |
e7c0a167 | 161 | inode = ACCESS_ONCE(entry->d_inode); |
8cbdf1e6 | 162 | if (inode && is_bad_inode(inode)) |
e5e5558e | 163 | return 0; |
0a0898cf | 164 | else if (fuse_dentry_time(entry) < get_jiffies_64()) { |
e5e5558e | 165 | int err; |
e5e5558e | 166 | struct fuse_entry_out outarg; |
8cbdf1e6 MS |
167 | struct fuse_conn *fc; |
168 | struct fuse_req *req; | |
07e77dca | 169 | struct fuse_forget_link *forget; |
e956edd0 | 170 | struct dentry *parent; |
1fb69e78 | 171 | u64 attr_version; |
8cbdf1e6 | 172 | |
50322fe7 | 173 | /* For negative dentries, always do a fresh lookup */ |
8cbdf1e6 MS |
174 | if (!inode) |
175 | return 0; | |
176 | ||
d2433905 | 177 | if (nd && (nd->flags & LOOKUP_RCU)) |
e7c0a167 MS |
178 | return -ECHILD; |
179 | ||
8cbdf1e6 | 180 | fc = get_fuse_conn(inode); |
ce1d5a49 MS |
181 | req = fuse_get_req(fc); |
182 | if (IS_ERR(req)) | |
e5e5558e MS |
183 | return 0; |
184 | ||
07e77dca MS |
185 | forget = fuse_alloc_forget(); |
186 | if (!forget) { | |
2d51013e MS |
187 | fuse_put_request(fc, req); |
188 | return 0; | |
189 | } | |
190 | ||
7dca9fd3 | 191 | attr_version = fuse_get_attr_version(fc); |
1fb69e78 | 192 | |
e956edd0 | 193 | parent = dget_parent(entry); |
c180eebe MS |
194 | fuse_lookup_init(fc, req, get_node_id(parent->d_inode), |
195 | &entry->d_name, &outarg); | |
b93f858a | 196 | fuse_request_send(fc, req); |
e956edd0 | 197 | dput(parent); |
e5e5558e | 198 | err = req->out.h.error; |
2d51013e | 199 | fuse_put_request(fc, req); |
50322fe7 MS |
200 | /* Zero nodeid is same as -ENOENT */ |
201 | if (!err && !outarg.nodeid) | |
202 | err = -ENOENT; | |
9e6268db | 203 | if (!err) { |
8cbdf1e6 | 204 | struct fuse_inode *fi = get_fuse_inode(inode); |
9e6268db | 205 | if (outarg.nodeid != get_node_id(inode)) { |
07e77dca | 206 | fuse_queue_forget(fc, forget, outarg.nodeid, 1); |
9e6268db MS |
207 | return 0; |
208 | } | |
8da5ff23 | 209 | spin_lock(&fc->lock); |
1729a16c | 210 | fi->nlookup++; |
8da5ff23 | 211 | spin_unlock(&fc->lock); |
9e6268db | 212 | } |
07e77dca | 213 | kfree(forget); |
9e6268db | 214 | if (err || (outarg.attr.mode ^ inode->i_mode) & S_IFMT) |
e5e5558e MS |
215 | return 0; |
216 | ||
1fb69e78 MS |
217 | fuse_change_attributes(inode, &outarg.attr, |
218 | entry_attr_timeout(&outarg), | |
219 | attr_version); | |
220 | fuse_change_entry_timeout(entry, &outarg); | |
e5e5558e MS |
221 | } |
222 | return 1; | |
223 | } | |
224 | ||
8bfc016d | 225 | static int invalid_nodeid(u64 nodeid) |
2827d0b2 MS |
226 | { |
227 | return !nodeid || nodeid == FUSE_ROOT_ID; | |
228 | } | |
229 | ||
4269590a | 230 | const struct dentry_operations fuse_dentry_operations = { |
e5e5558e MS |
231 | .d_revalidate = fuse_dentry_revalidate, |
232 | }; | |
233 | ||
a5bfffac | 234 | int fuse_valid_type(int m) |
39ee059a MS |
235 | { |
236 | return S_ISREG(m) || S_ISDIR(m) || S_ISLNK(m) || S_ISCHR(m) || | |
237 | S_ISBLK(m) || S_ISFIFO(m) || S_ISSOCK(m); | |
238 | } | |
239 | ||
d2a85164 MS |
240 | /* |
241 | * Add a directory inode to a dentry, ensuring that no other dentry | |
242 | * refers to this inode. Called with fc->inst_mutex. | |
243 | */ | |
0de6256d MS |
244 | static struct dentry *fuse_d_add_directory(struct dentry *entry, |
245 | struct inode *inode) | |
d2a85164 MS |
246 | { |
247 | struct dentry *alias = d_find_alias(inode); | |
0de6256d | 248 | if (alias && !(alias->d_flags & DCACHE_DISCONNECTED)) { |
d2a85164 MS |
249 | /* This tries to shrink the subtree below alias */ |
250 | fuse_invalidate_entry(alias); | |
251 | dput(alias); | |
252 | if (!list_empty(&inode->i_dentry)) | |
0de6256d MS |
253 | return ERR_PTR(-EBUSY); |
254 | } else { | |
255 | dput(alias); | |
d2a85164 | 256 | } |
0de6256d | 257 | return d_splice_alias(inode, entry); |
d2a85164 MS |
258 | } |
259 | ||
c180eebe MS |
260 | int fuse_lookup_name(struct super_block *sb, u64 nodeid, struct qstr *name, |
261 | struct fuse_entry_out *outarg, struct inode **inode) | |
e5e5558e | 262 | { |
c180eebe | 263 | struct fuse_conn *fc = get_fuse_conn_super(sb); |
e5e5558e | 264 | struct fuse_req *req; |
07e77dca | 265 | struct fuse_forget_link *forget; |
1fb69e78 | 266 | u64 attr_version; |
c180eebe | 267 | int err; |
e5e5558e | 268 | |
c180eebe MS |
269 | *inode = NULL; |
270 | err = -ENAMETOOLONG; | |
271 | if (name->len > FUSE_NAME_MAX) | |
272 | goto out; | |
e5e5558e | 273 | |
ce1d5a49 | 274 | req = fuse_get_req(fc); |
c180eebe | 275 | err = PTR_ERR(req); |
ce1d5a49 | 276 | if (IS_ERR(req)) |
c180eebe | 277 | goto out; |
e5e5558e | 278 | |
07e77dca MS |
279 | forget = fuse_alloc_forget(); |
280 | err = -ENOMEM; | |
281 | if (!forget) { | |
2d51013e | 282 | fuse_put_request(fc, req); |
c180eebe | 283 | goto out; |
2d51013e MS |
284 | } |
285 | ||
7dca9fd3 | 286 | attr_version = fuse_get_attr_version(fc); |
1fb69e78 | 287 | |
c180eebe | 288 | fuse_lookup_init(fc, req, nodeid, name, outarg); |
b93f858a | 289 | fuse_request_send(fc, req); |
e5e5558e | 290 | err = req->out.h.error; |
2d51013e | 291 | fuse_put_request(fc, req); |
50322fe7 | 292 | /* Zero nodeid is same as -ENOENT, but with valid timeout */ |
c180eebe MS |
293 | if (err || !outarg->nodeid) |
294 | goto out_put_forget; | |
295 | ||
296 | err = -EIO; | |
297 | if (!outarg->nodeid) | |
298 | goto out_put_forget; | |
299 | if (!fuse_valid_type(outarg->attr.mode)) | |
300 | goto out_put_forget; | |
301 | ||
302 | *inode = fuse_iget(sb, outarg->nodeid, outarg->generation, | |
303 | &outarg->attr, entry_attr_timeout(outarg), | |
304 | attr_version); | |
305 | err = -ENOMEM; | |
306 | if (!*inode) { | |
07e77dca | 307 | fuse_queue_forget(fc, forget, outarg->nodeid, 1); |
c180eebe | 308 | goto out; |
e5e5558e | 309 | } |
c180eebe MS |
310 | err = 0; |
311 | ||
312 | out_put_forget: | |
07e77dca | 313 | kfree(forget); |
c180eebe MS |
314 | out: |
315 | return err; | |
316 | } | |
317 | ||
318 | static struct dentry *fuse_lookup(struct inode *dir, struct dentry *entry, | |
319 | struct nameidata *nd) | |
320 | { | |
321 | int err; | |
322 | struct fuse_entry_out outarg; | |
323 | struct inode *inode; | |
324 | struct dentry *newent; | |
325 | struct fuse_conn *fc = get_fuse_conn(dir); | |
326 | bool outarg_valid = true; | |
327 | ||
328 | err = fuse_lookup_name(dir->i_sb, get_node_id(dir), &entry->d_name, | |
329 | &outarg, &inode); | |
330 | if (err == -ENOENT) { | |
331 | outarg_valid = false; | |
332 | err = 0; | |
333 | } | |
334 | if (err) | |
335 | goto out_err; | |
336 | ||
337 | err = -EIO; | |
338 | if (inode && get_node_id(inode) == FUSE_ROOT_ID) | |
339 | goto out_iput; | |
e5e5558e | 340 | |
d2a85164 MS |
341 | if (inode && S_ISDIR(inode->i_mode)) { |
342 | mutex_lock(&fc->inst_mutex); | |
0de6256d | 343 | newent = fuse_d_add_directory(entry, inode); |
d2a85164 | 344 | mutex_unlock(&fc->inst_mutex); |
c180eebe MS |
345 | err = PTR_ERR(newent); |
346 | if (IS_ERR(newent)) | |
347 | goto out_iput; | |
348 | } else { | |
0de6256d | 349 | newent = d_splice_alias(inode, entry); |
c180eebe | 350 | } |
d2a85164 | 351 | |
0de6256d | 352 | entry = newent ? newent : entry; |
c180eebe | 353 | if (outarg_valid) |
1fb69e78 | 354 | fuse_change_entry_timeout(entry, &outarg); |
8cbdf1e6 MS |
355 | else |
356 | fuse_invalidate_entry_cache(entry); | |
c180eebe | 357 | |
0de6256d | 358 | return newent; |
c180eebe MS |
359 | |
360 | out_iput: | |
361 | iput(inode); | |
362 | out_err: | |
363 | return ERR_PTR(err); | |
e5e5558e MS |
364 | } |
365 | ||
6f9f1180 MS |
366 | /* |
367 | * Atomic create+open operation | |
368 | * | |
369 | * If the filesystem doesn't support this, then fall back to separate | |
370 | * 'mknod' + 'open' requests. | |
371 | */ | |
fd72faac MS |
372 | static int fuse_create_open(struct inode *dir, struct dentry *entry, int mode, |
373 | struct nameidata *nd) | |
374 | { | |
375 | int err; | |
376 | struct inode *inode; | |
377 | struct fuse_conn *fc = get_fuse_conn(dir); | |
378 | struct fuse_req *req; | |
07e77dca | 379 | struct fuse_forget_link *forget; |
e0a43ddc | 380 | struct fuse_create_in inarg; |
fd72faac MS |
381 | struct fuse_open_out outopen; |
382 | struct fuse_entry_out outentry; | |
fd72faac MS |
383 | struct fuse_file *ff; |
384 | struct file *file; | |
385 | int flags = nd->intent.open.flags - 1; | |
386 | ||
fd72faac | 387 | if (fc->no_create) |
ce1d5a49 | 388 | return -ENOSYS; |
fd72faac | 389 | |
1b732396 CH |
390 | if (flags & O_DIRECT) |
391 | return -EINVAL; | |
392 | ||
07e77dca MS |
393 | forget = fuse_alloc_forget(); |
394 | if (!forget) | |
395 | return -ENOMEM; | |
51eb01e7 | 396 | |
ce1d5a49 | 397 | req = fuse_get_req(fc); |
51eb01e7 | 398 | err = PTR_ERR(req); |
ce1d5a49 | 399 | if (IS_ERR(req)) |
51eb01e7 | 400 | goto out_put_forget_req; |
fd72faac | 401 | |
ce1d5a49 | 402 | err = -ENOMEM; |
acf99433 | 403 | ff = fuse_file_alloc(fc); |
fd72faac MS |
404 | if (!ff) |
405 | goto out_put_request; | |
406 | ||
e0a43ddc MS |
407 | if (!fc->dont_mask) |
408 | mode &= ~current_umask(); | |
409 | ||
fd72faac MS |
410 | flags &= ~O_NOCTTY; |
411 | memset(&inarg, 0, sizeof(inarg)); | |
0e9663ee | 412 | memset(&outentry, 0, sizeof(outentry)); |
fd72faac MS |
413 | inarg.flags = flags; |
414 | inarg.mode = mode; | |
e0a43ddc | 415 | inarg.umask = current_umask(); |
fd72faac MS |
416 | req->in.h.opcode = FUSE_CREATE; |
417 | req->in.h.nodeid = get_node_id(dir); | |
fd72faac | 418 | req->in.numargs = 2; |
e0a43ddc MS |
419 | req->in.args[0].size = fc->minor < 12 ? sizeof(struct fuse_open_in) : |
420 | sizeof(inarg); | |
fd72faac MS |
421 | req->in.args[0].value = &inarg; |
422 | req->in.args[1].size = entry->d_name.len + 1; | |
423 | req->in.args[1].value = entry->d_name.name; | |
424 | req->out.numargs = 2; | |
0e9663ee MS |
425 | if (fc->minor < 9) |
426 | req->out.args[0].size = FUSE_COMPAT_ENTRY_OUT_SIZE; | |
427 | else | |
428 | req->out.args[0].size = sizeof(outentry); | |
fd72faac MS |
429 | req->out.args[0].value = &outentry; |
430 | req->out.args[1].size = sizeof(outopen); | |
431 | req->out.args[1].value = &outopen; | |
b93f858a | 432 | fuse_request_send(fc, req); |
fd72faac MS |
433 | err = req->out.h.error; |
434 | if (err) { | |
435 | if (err == -ENOSYS) | |
436 | fc->no_create = 1; | |
437 | goto out_free_ff; | |
438 | } | |
439 | ||
440 | err = -EIO; | |
2827d0b2 | 441 | if (!S_ISREG(outentry.attr.mode) || invalid_nodeid(outentry.nodeid)) |
fd72faac MS |
442 | goto out_free_ff; |
443 | ||
51eb01e7 | 444 | fuse_put_request(fc, req); |
c7b7143c MS |
445 | ff->fh = outopen.fh; |
446 | ff->nodeid = outentry.nodeid; | |
447 | ff->open_flags = outopen.open_flags; | |
fd72faac | 448 | inode = fuse_iget(dir->i_sb, outentry.nodeid, outentry.generation, |
1fb69e78 | 449 | &outentry.attr, entry_attr_timeout(&outentry), 0); |
fd72faac MS |
450 | if (!inode) { |
451 | flags &= ~(O_CREAT | O_EXCL | O_TRUNC); | |
8b0797a4 | 452 | fuse_sync_release(ff, flags); |
07e77dca | 453 | fuse_queue_forget(fc, forget, outentry.nodeid, 1); |
51eb01e7 | 454 | return -ENOMEM; |
fd72faac | 455 | } |
07e77dca | 456 | kfree(forget); |
fd72faac | 457 | d_instantiate(entry, inode); |
1fb69e78 | 458 | fuse_change_entry_timeout(entry, &outentry); |
0952b2a4 | 459 | fuse_invalidate_attr(dir); |
fd72faac MS |
460 | file = lookup_instantiate_filp(nd, entry, generic_file_open); |
461 | if (IS_ERR(file)) { | |
8b0797a4 | 462 | fuse_sync_release(ff, flags); |
fd72faac MS |
463 | return PTR_ERR(file); |
464 | } | |
c7b7143c MS |
465 | file->private_data = fuse_file_get(ff); |
466 | fuse_finish_open(inode, file); | |
fd72faac MS |
467 | return 0; |
468 | ||
469 | out_free_ff: | |
470 | fuse_file_free(ff); | |
471 | out_put_request: | |
472 | fuse_put_request(fc, req); | |
51eb01e7 | 473 | out_put_forget_req: |
07e77dca | 474 | kfree(forget); |
fd72faac MS |
475 | return err; |
476 | } | |
477 | ||
6f9f1180 MS |
478 | /* |
479 | * Code shared between mknod, mkdir, symlink and link | |
480 | */ | |
9e6268db MS |
481 | static int create_new_entry(struct fuse_conn *fc, struct fuse_req *req, |
482 | struct inode *dir, struct dentry *entry, | |
483 | int mode) | |
484 | { | |
485 | struct fuse_entry_out outarg; | |
486 | struct inode *inode; | |
9e6268db | 487 | int err; |
07e77dca | 488 | struct fuse_forget_link *forget; |
2d51013e | 489 | |
07e77dca MS |
490 | forget = fuse_alloc_forget(); |
491 | if (!forget) { | |
2d51013e | 492 | fuse_put_request(fc, req); |
07e77dca | 493 | return -ENOMEM; |
2d51013e | 494 | } |
9e6268db | 495 | |
0e9663ee | 496 | memset(&outarg, 0, sizeof(outarg)); |
9e6268db | 497 | req->in.h.nodeid = get_node_id(dir); |
9e6268db | 498 | req->out.numargs = 1; |
0e9663ee MS |
499 | if (fc->minor < 9) |
500 | req->out.args[0].size = FUSE_COMPAT_ENTRY_OUT_SIZE; | |
501 | else | |
502 | req->out.args[0].size = sizeof(outarg); | |
9e6268db | 503 | req->out.args[0].value = &outarg; |
b93f858a | 504 | fuse_request_send(fc, req); |
9e6268db | 505 | err = req->out.h.error; |
2d51013e MS |
506 | fuse_put_request(fc, req); |
507 | if (err) | |
508 | goto out_put_forget_req; | |
509 | ||
39ee059a MS |
510 | err = -EIO; |
511 | if (invalid_nodeid(outarg.nodeid)) | |
2d51013e | 512 | goto out_put_forget_req; |
39ee059a MS |
513 | |
514 | if ((outarg.attr.mode ^ mode) & S_IFMT) | |
2d51013e | 515 | goto out_put_forget_req; |
39ee059a | 516 | |
9e6268db | 517 | inode = fuse_iget(dir->i_sb, outarg.nodeid, outarg.generation, |
1fb69e78 | 518 | &outarg.attr, entry_attr_timeout(&outarg), 0); |
9e6268db | 519 | if (!inode) { |
07e77dca | 520 | fuse_queue_forget(fc, forget, outarg.nodeid, 1); |
9e6268db MS |
521 | return -ENOMEM; |
522 | } | |
07e77dca | 523 | kfree(forget); |
9e6268db | 524 | |
d2a85164 MS |
525 | if (S_ISDIR(inode->i_mode)) { |
526 | struct dentry *alias; | |
527 | mutex_lock(&fc->inst_mutex); | |
528 | alias = d_find_alias(inode); | |
529 | if (alias) { | |
530 | /* New directory must have moved since mkdir */ | |
531 | mutex_unlock(&fc->inst_mutex); | |
532 | dput(alias); | |
533 | iput(inode); | |
534 | return -EBUSY; | |
535 | } | |
536 | d_instantiate(entry, inode); | |
537 | mutex_unlock(&fc->inst_mutex); | |
538 | } else | |
539 | d_instantiate(entry, inode); | |
9e6268db | 540 | |
1fb69e78 | 541 | fuse_change_entry_timeout(entry, &outarg); |
9e6268db MS |
542 | fuse_invalidate_attr(dir); |
543 | return 0; | |
39ee059a | 544 | |
2d51013e | 545 | out_put_forget_req: |
07e77dca | 546 | kfree(forget); |
39ee059a | 547 | return err; |
9e6268db MS |
548 | } |
549 | ||
550 | static int fuse_mknod(struct inode *dir, struct dentry *entry, int mode, | |
551 | dev_t rdev) | |
552 | { | |
553 | struct fuse_mknod_in inarg; | |
554 | struct fuse_conn *fc = get_fuse_conn(dir); | |
ce1d5a49 MS |
555 | struct fuse_req *req = fuse_get_req(fc); |
556 | if (IS_ERR(req)) | |
557 | return PTR_ERR(req); | |
9e6268db | 558 | |
e0a43ddc MS |
559 | if (!fc->dont_mask) |
560 | mode &= ~current_umask(); | |
561 | ||
9e6268db MS |
562 | memset(&inarg, 0, sizeof(inarg)); |
563 | inarg.mode = mode; | |
564 | inarg.rdev = new_encode_dev(rdev); | |
e0a43ddc | 565 | inarg.umask = current_umask(); |
9e6268db MS |
566 | req->in.h.opcode = FUSE_MKNOD; |
567 | req->in.numargs = 2; | |
e0a43ddc MS |
568 | req->in.args[0].size = fc->minor < 12 ? FUSE_COMPAT_MKNOD_IN_SIZE : |
569 | sizeof(inarg); | |
9e6268db MS |
570 | req->in.args[0].value = &inarg; |
571 | req->in.args[1].size = entry->d_name.len + 1; | |
572 | req->in.args[1].value = entry->d_name.name; | |
573 | return create_new_entry(fc, req, dir, entry, mode); | |
574 | } | |
575 | ||
576 | static int fuse_create(struct inode *dir, struct dentry *entry, int mode, | |
577 | struct nameidata *nd) | |
578 | { | |
b9ba347f | 579 | if (nd && (nd->flags & LOOKUP_OPEN)) { |
fd72faac MS |
580 | int err = fuse_create_open(dir, entry, mode, nd); |
581 | if (err != -ENOSYS) | |
582 | return err; | |
583 | /* Fall back on mknod */ | |
584 | } | |
9e6268db MS |
585 | return fuse_mknod(dir, entry, mode, 0); |
586 | } | |
587 | ||
588 | static int fuse_mkdir(struct inode *dir, struct dentry *entry, int mode) | |
589 | { | |
590 | struct fuse_mkdir_in inarg; | |
591 | struct fuse_conn *fc = get_fuse_conn(dir); | |
ce1d5a49 MS |
592 | struct fuse_req *req = fuse_get_req(fc); |
593 | if (IS_ERR(req)) | |
594 | return PTR_ERR(req); | |
9e6268db | 595 | |
e0a43ddc MS |
596 | if (!fc->dont_mask) |
597 | mode &= ~current_umask(); | |
598 | ||
9e6268db MS |
599 | memset(&inarg, 0, sizeof(inarg)); |
600 | inarg.mode = mode; | |
e0a43ddc | 601 | inarg.umask = current_umask(); |
9e6268db MS |
602 | req->in.h.opcode = FUSE_MKDIR; |
603 | req->in.numargs = 2; | |
604 | req->in.args[0].size = sizeof(inarg); | |
605 | req->in.args[0].value = &inarg; | |
606 | req->in.args[1].size = entry->d_name.len + 1; | |
607 | req->in.args[1].value = entry->d_name.name; | |
608 | return create_new_entry(fc, req, dir, entry, S_IFDIR); | |
609 | } | |
610 | ||
611 | static int fuse_symlink(struct inode *dir, struct dentry *entry, | |
612 | const char *link) | |
613 | { | |
614 | struct fuse_conn *fc = get_fuse_conn(dir); | |
615 | unsigned len = strlen(link) + 1; | |
ce1d5a49 MS |
616 | struct fuse_req *req = fuse_get_req(fc); |
617 | if (IS_ERR(req)) | |
618 | return PTR_ERR(req); | |
9e6268db MS |
619 | |
620 | req->in.h.opcode = FUSE_SYMLINK; | |
621 | req->in.numargs = 2; | |
622 | req->in.args[0].size = entry->d_name.len + 1; | |
623 | req->in.args[0].value = entry->d_name.name; | |
624 | req->in.args[1].size = len; | |
625 | req->in.args[1].value = link; | |
626 | return create_new_entry(fc, req, dir, entry, S_IFLNK); | |
627 | } | |
628 | ||
629 | static int fuse_unlink(struct inode *dir, struct dentry *entry) | |
630 | { | |
631 | int err; | |
632 | struct fuse_conn *fc = get_fuse_conn(dir); | |
ce1d5a49 MS |
633 | struct fuse_req *req = fuse_get_req(fc); |
634 | if (IS_ERR(req)) | |
635 | return PTR_ERR(req); | |
9e6268db MS |
636 | |
637 | req->in.h.opcode = FUSE_UNLINK; | |
638 | req->in.h.nodeid = get_node_id(dir); | |
9e6268db MS |
639 | req->in.numargs = 1; |
640 | req->in.args[0].size = entry->d_name.len + 1; | |
641 | req->in.args[0].value = entry->d_name.name; | |
b93f858a | 642 | fuse_request_send(fc, req); |
9e6268db MS |
643 | err = req->out.h.error; |
644 | fuse_put_request(fc, req); | |
645 | if (!err) { | |
646 | struct inode *inode = entry->d_inode; | |
647 | ||
1729a16c MS |
648 | /* |
649 | * Set nlink to zero so the inode can be cleared, if the inode | |
650 | * does have more links this will be discovered at the next | |
651 | * lookup/getattr. | |
652 | */ | |
ce71ec36 | 653 | clear_nlink(inode); |
9e6268db MS |
654 | fuse_invalidate_attr(inode); |
655 | fuse_invalidate_attr(dir); | |
8cbdf1e6 | 656 | fuse_invalidate_entry_cache(entry); |
9e6268db MS |
657 | } else if (err == -EINTR) |
658 | fuse_invalidate_entry(entry); | |
659 | return err; | |
660 | } | |
661 | ||
662 | static int fuse_rmdir(struct inode *dir, struct dentry *entry) | |
663 | { | |
664 | int err; | |
665 | struct fuse_conn *fc = get_fuse_conn(dir); | |
ce1d5a49 MS |
666 | struct fuse_req *req = fuse_get_req(fc); |
667 | if (IS_ERR(req)) | |
668 | return PTR_ERR(req); | |
9e6268db MS |
669 | |
670 | req->in.h.opcode = FUSE_RMDIR; | |
671 | req->in.h.nodeid = get_node_id(dir); | |
9e6268db MS |
672 | req->in.numargs = 1; |
673 | req->in.args[0].size = entry->d_name.len + 1; | |
674 | req->in.args[0].value = entry->d_name.name; | |
b93f858a | 675 | fuse_request_send(fc, req); |
9e6268db MS |
676 | err = req->out.h.error; |
677 | fuse_put_request(fc, req); | |
678 | if (!err) { | |
ce71ec36 | 679 | clear_nlink(entry->d_inode); |
9e6268db | 680 | fuse_invalidate_attr(dir); |
8cbdf1e6 | 681 | fuse_invalidate_entry_cache(entry); |
9e6268db MS |
682 | } else if (err == -EINTR) |
683 | fuse_invalidate_entry(entry); | |
684 | return err; | |
685 | } | |
686 | ||
687 | static int fuse_rename(struct inode *olddir, struct dentry *oldent, | |
688 | struct inode *newdir, struct dentry *newent) | |
689 | { | |
690 | int err; | |
691 | struct fuse_rename_in inarg; | |
692 | struct fuse_conn *fc = get_fuse_conn(olddir); | |
ce1d5a49 | 693 | struct fuse_req *req = fuse_get_req(fc); |
e4eaac06 | 694 | |
ce1d5a49 MS |
695 | if (IS_ERR(req)) |
696 | return PTR_ERR(req); | |
9e6268db MS |
697 | |
698 | memset(&inarg, 0, sizeof(inarg)); | |
699 | inarg.newdir = get_node_id(newdir); | |
700 | req->in.h.opcode = FUSE_RENAME; | |
701 | req->in.h.nodeid = get_node_id(olddir); | |
9e6268db MS |
702 | req->in.numargs = 3; |
703 | req->in.args[0].size = sizeof(inarg); | |
704 | req->in.args[0].value = &inarg; | |
705 | req->in.args[1].size = oldent->d_name.len + 1; | |
706 | req->in.args[1].value = oldent->d_name.name; | |
707 | req->in.args[2].size = newent->d_name.len + 1; | |
708 | req->in.args[2].value = newent->d_name.name; | |
b93f858a | 709 | fuse_request_send(fc, req); |
9e6268db MS |
710 | err = req->out.h.error; |
711 | fuse_put_request(fc, req); | |
712 | if (!err) { | |
08b63307 MS |
713 | /* ctime changes */ |
714 | fuse_invalidate_attr(oldent->d_inode); | |
715 | ||
9e6268db MS |
716 | fuse_invalidate_attr(olddir); |
717 | if (olddir != newdir) | |
718 | fuse_invalidate_attr(newdir); | |
8cbdf1e6 MS |
719 | |
720 | /* newent will end up negative */ | |
5219f346 MS |
721 | if (newent->d_inode) { |
722 | fuse_invalidate_attr(newent->d_inode); | |
8cbdf1e6 | 723 | fuse_invalidate_entry_cache(newent); |
5219f346 | 724 | } |
9e6268db MS |
725 | } else if (err == -EINTR) { |
726 | /* If request was interrupted, DEITY only knows if the | |
727 | rename actually took place. If the invalidation | |
728 | fails (e.g. some process has CWD under the renamed | |
729 | directory), then there can be inconsistency between | |
730 | the dcache and the real filesystem. Tough luck. */ | |
731 | fuse_invalidate_entry(oldent); | |
732 | if (newent->d_inode) | |
733 | fuse_invalidate_entry(newent); | |
734 | } | |
735 | ||
736 | return err; | |
737 | } | |
738 | ||
739 | static int fuse_link(struct dentry *entry, struct inode *newdir, | |
740 | struct dentry *newent) | |
741 | { | |
742 | int err; | |
743 | struct fuse_link_in inarg; | |
744 | struct inode *inode = entry->d_inode; | |
745 | struct fuse_conn *fc = get_fuse_conn(inode); | |
ce1d5a49 MS |
746 | struct fuse_req *req = fuse_get_req(fc); |
747 | if (IS_ERR(req)) | |
748 | return PTR_ERR(req); | |
9e6268db MS |
749 | |
750 | memset(&inarg, 0, sizeof(inarg)); | |
751 | inarg.oldnodeid = get_node_id(inode); | |
752 | req->in.h.opcode = FUSE_LINK; | |
9e6268db MS |
753 | req->in.numargs = 2; |
754 | req->in.args[0].size = sizeof(inarg); | |
755 | req->in.args[0].value = &inarg; | |
756 | req->in.args[1].size = newent->d_name.len + 1; | |
757 | req->in.args[1].value = newent->d_name.name; | |
758 | err = create_new_entry(fc, req, newdir, newent, inode->i_mode); | |
759 | /* Contrary to "normal" filesystems it can happen that link | |
760 | makes two "logical" inodes point to the same "physical" | |
761 | inode. We invalidate the attributes of the old one, so it | |
762 | will reflect changes in the backing inode (link count, | |
763 | etc.) | |
764 | */ | |
765 | if (!err || err == -EINTR) | |
766 | fuse_invalidate_attr(inode); | |
767 | return err; | |
768 | } | |
769 | ||
1fb69e78 MS |
770 | static void fuse_fillattr(struct inode *inode, struct fuse_attr *attr, |
771 | struct kstat *stat) | |
772 | { | |
773 | stat->dev = inode->i_sb->s_dev; | |
774 | stat->ino = attr->ino; | |
775 | stat->mode = (inode->i_mode & S_IFMT) | (attr->mode & 07777); | |
776 | stat->nlink = attr->nlink; | |
777 | stat->uid = attr->uid; | |
778 | stat->gid = attr->gid; | |
779 | stat->rdev = inode->i_rdev; | |
780 | stat->atime.tv_sec = attr->atime; | |
781 | stat->atime.tv_nsec = attr->atimensec; | |
782 | stat->mtime.tv_sec = attr->mtime; | |
783 | stat->mtime.tv_nsec = attr->mtimensec; | |
784 | stat->ctime.tv_sec = attr->ctime; | |
785 | stat->ctime.tv_nsec = attr->ctimensec; | |
786 | stat->size = attr->size; | |
787 | stat->blocks = attr->blocks; | |
788 | stat->blksize = (1 << inode->i_blkbits); | |
789 | } | |
790 | ||
c79e322f MS |
791 | static int fuse_do_getattr(struct inode *inode, struct kstat *stat, |
792 | struct file *file) | |
e5e5558e MS |
793 | { |
794 | int err; | |
c79e322f MS |
795 | struct fuse_getattr_in inarg; |
796 | struct fuse_attr_out outarg; | |
e5e5558e | 797 | struct fuse_conn *fc = get_fuse_conn(inode); |
1fb69e78 MS |
798 | struct fuse_req *req; |
799 | u64 attr_version; | |
800 | ||
801 | req = fuse_get_req(fc); | |
ce1d5a49 MS |
802 | if (IS_ERR(req)) |
803 | return PTR_ERR(req); | |
e5e5558e | 804 | |
7dca9fd3 | 805 | attr_version = fuse_get_attr_version(fc); |
1fb69e78 | 806 | |
c79e322f | 807 | memset(&inarg, 0, sizeof(inarg)); |
0e9663ee | 808 | memset(&outarg, 0, sizeof(outarg)); |
c79e322f MS |
809 | /* Directories have separate file-handle space */ |
810 | if (file && S_ISREG(inode->i_mode)) { | |
811 | struct fuse_file *ff = file->private_data; | |
812 | ||
813 | inarg.getattr_flags |= FUSE_GETATTR_FH; | |
814 | inarg.fh = ff->fh; | |
815 | } | |
e5e5558e MS |
816 | req->in.h.opcode = FUSE_GETATTR; |
817 | req->in.h.nodeid = get_node_id(inode); | |
c79e322f MS |
818 | req->in.numargs = 1; |
819 | req->in.args[0].size = sizeof(inarg); | |
820 | req->in.args[0].value = &inarg; | |
e5e5558e | 821 | req->out.numargs = 1; |
0e9663ee MS |
822 | if (fc->minor < 9) |
823 | req->out.args[0].size = FUSE_COMPAT_ATTR_OUT_SIZE; | |
824 | else | |
825 | req->out.args[0].size = sizeof(outarg); | |
c79e322f | 826 | req->out.args[0].value = &outarg; |
b93f858a | 827 | fuse_request_send(fc, req); |
e5e5558e MS |
828 | err = req->out.h.error; |
829 | fuse_put_request(fc, req); | |
830 | if (!err) { | |
c79e322f | 831 | if ((inode->i_mode ^ outarg.attr.mode) & S_IFMT) { |
e5e5558e MS |
832 | make_bad_inode(inode); |
833 | err = -EIO; | |
834 | } else { | |
c79e322f MS |
835 | fuse_change_attributes(inode, &outarg.attr, |
836 | attr_timeout(&outarg), | |
1fb69e78 MS |
837 | attr_version); |
838 | if (stat) | |
c79e322f | 839 | fuse_fillattr(inode, &outarg.attr, stat); |
e5e5558e MS |
840 | } |
841 | } | |
842 | return err; | |
843 | } | |
844 | ||
bcb4be80 MS |
845 | int fuse_update_attributes(struct inode *inode, struct kstat *stat, |
846 | struct file *file, bool *refreshed) | |
847 | { | |
848 | struct fuse_inode *fi = get_fuse_inode(inode); | |
849 | int err; | |
850 | bool r; | |
851 | ||
852 | if (fi->i_time < get_jiffies_64()) { | |
853 | r = true; | |
854 | err = fuse_do_getattr(inode, stat, file); | |
855 | } else { | |
856 | r = false; | |
857 | err = 0; | |
858 | if (stat) { | |
859 | generic_fillattr(inode, stat); | |
860 | stat->mode = fi->orig_i_mode; | |
861 | } | |
862 | } | |
863 | ||
864 | if (refreshed != NULL) | |
865 | *refreshed = r; | |
866 | ||
867 | return err; | |
868 | } | |
869 | ||
3b463ae0 JM |
870 | int fuse_reverse_inval_entry(struct super_block *sb, u64 parent_nodeid, |
871 | struct qstr *name) | |
872 | { | |
873 | int err = -ENOTDIR; | |
874 | struct inode *parent; | |
875 | struct dentry *dir; | |
876 | struct dentry *entry; | |
877 | ||
878 | parent = ilookup5(sb, parent_nodeid, fuse_inode_eq, &parent_nodeid); | |
879 | if (!parent) | |
880 | return -ENOENT; | |
881 | ||
882 | mutex_lock(&parent->i_mutex); | |
883 | if (!S_ISDIR(parent->i_mode)) | |
884 | goto unlock; | |
885 | ||
886 | err = -ENOENT; | |
887 | dir = d_find_alias(parent); | |
888 | if (!dir) | |
889 | goto unlock; | |
890 | ||
891 | entry = d_lookup(dir, name); | |
892 | dput(dir); | |
893 | if (!entry) | |
894 | goto unlock; | |
895 | ||
896 | fuse_invalidate_attr(parent); | |
897 | fuse_invalidate_entry(entry); | |
898 | dput(entry); | |
899 | err = 0; | |
900 | ||
901 | unlock: | |
902 | mutex_unlock(&parent->i_mutex); | |
903 | iput(parent); | |
904 | return err; | |
905 | } | |
906 | ||
87729a55 MS |
907 | /* |
908 | * Calling into a user-controlled filesystem gives the filesystem | |
909 | * daemon ptrace-like capabilities over the requester process. This | |
910 | * means, that the filesystem daemon is able to record the exact | |
911 | * filesystem operations performed, and can also control the behavior | |
912 | * of the requester process in otherwise impossible ways. For example | |
913 | * it can delay the operation for arbitrary length of time allowing | |
914 | * DoS against the requester. | |
915 | * | |
916 | * For this reason only those processes can call into the filesystem, | |
917 | * for which the owner of the mount has ptrace privilege. This | |
918 | * excludes processes started by other users, suid or sgid processes. | |
919 | */ | |
e57ac683 | 920 | int fuse_allow_task(struct fuse_conn *fc, struct task_struct *task) |
87729a55 | 921 | { |
c69e8d9c DH |
922 | const struct cred *cred; |
923 | int ret; | |
87729a55 | 924 | |
c69e8d9c | 925 | if (fc->flags & FUSE_ALLOW_OTHER) |
87729a55 MS |
926 | return 1; |
927 | ||
c69e8d9c DH |
928 | rcu_read_lock(); |
929 | ret = 0; | |
930 | cred = __task_cred(task); | |
931 | if (cred->euid == fc->user_id && | |
932 | cred->suid == fc->user_id && | |
933 | cred->uid == fc->user_id && | |
934 | cred->egid == fc->group_id && | |
935 | cred->sgid == fc->group_id && | |
936 | cred->gid == fc->group_id) | |
937 | ret = 1; | |
938 | rcu_read_unlock(); | |
939 | ||
940 | return ret; | |
87729a55 MS |
941 | } |
942 | ||
31d40d74 MS |
943 | static int fuse_access(struct inode *inode, int mask) |
944 | { | |
945 | struct fuse_conn *fc = get_fuse_conn(inode); | |
946 | struct fuse_req *req; | |
947 | struct fuse_access_in inarg; | |
948 | int err; | |
949 | ||
950 | if (fc->no_access) | |
951 | return 0; | |
952 | ||
ce1d5a49 MS |
953 | req = fuse_get_req(fc); |
954 | if (IS_ERR(req)) | |
955 | return PTR_ERR(req); | |
31d40d74 MS |
956 | |
957 | memset(&inarg, 0, sizeof(inarg)); | |
e6305c43 | 958 | inarg.mask = mask & (MAY_READ | MAY_WRITE | MAY_EXEC); |
31d40d74 MS |
959 | req->in.h.opcode = FUSE_ACCESS; |
960 | req->in.h.nodeid = get_node_id(inode); | |
31d40d74 MS |
961 | req->in.numargs = 1; |
962 | req->in.args[0].size = sizeof(inarg); | |
963 | req->in.args[0].value = &inarg; | |
b93f858a | 964 | fuse_request_send(fc, req); |
31d40d74 MS |
965 | err = req->out.h.error; |
966 | fuse_put_request(fc, req); | |
967 | if (err == -ENOSYS) { | |
968 | fc->no_access = 1; | |
969 | err = 0; | |
970 | } | |
971 | return err; | |
972 | } | |
973 | ||
19690ddb MS |
974 | static int fuse_perm_getattr(struct inode *inode, int flags) |
975 | { | |
976 | if (flags & IPERM_FLAG_RCU) | |
977 | return -ECHILD; | |
978 | ||
979 | return fuse_do_getattr(inode, NULL, NULL); | |
980 | } | |
981 | ||
6f9f1180 MS |
982 | /* |
983 | * Check permission. The two basic access models of FUSE are: | |
984 | * | |
985 | * 1) Local access checking ('default_permissions' mount option) based | |
986 | * on file mode. This is the plain old disk filesystem permission | |
987 | * modell. | |
988 | * | |
989 | * 2) "Remote" access checking, where server is responsible for | |
990 | * checking permission in each inode operation. An exception to this | |
991 | * is if ->permission() was invoked from sys_access() in which case an | |
992 | * access request is sent. Execute permission is still checked | |
993 | * locally based on file mode. | |
994 | */ | |
b74c79e9 | 995 | static int fuse_permission(struct inode *inode, int mask, unsigned int flags) |
e5e5558e MS |
996 | { |
997 | struct fuse_conn *fc = get_fuse_conn(inode); | |
244f6385 MS |
998 | bool refreshed = false; |
999 | int err = 0; | |
e5e5558e | 1000 | |
87729a55 | 1001 | if (!fuse_allow_task(fc, current)) |
e5e5558e | 1002 | return -EACCES; |
244f6385 MS |
1003 | |
1004 | /* | |
e8e96157 | 1005 | * If attributes are needed, refresh them before proceeding |
244f6385 | 1006 | */ |
e8e96157 MS |
1007 | if ((fc->flags & FUSE_DEFAULT_PERMISSIONS) || |
1008 | ((mask & MAY_EXEC) && S_ISREG(inode->i_mode))) { | |
19690ddb MS |
1009 | struct fuse_inode *fi = get_fuse_inode(inode); |
1010 | ||
1011 | if (fi->i_time < get_jiffies_64()) { | |
1012 | refreshed = true; | |
1013 | ||
1014 | err = fuse_perm_getattr(inode, flags); | |
1015 | if (err) | |
1016 | return err; | |
1017 | } | |
244f6385 MS |
1018 | } |
1019 | ||
1020 | if (fc->flags & FUSE_DEFAULT_PERMISSIONS) { | |
b74c79e9 | 1021 | err = generic_permission(inode, mask, flags, NULL); |
1e9a4ed9 MS |
1022 | |
1023 | /* If permission is denied, try to refresh file | |
1024 | attributes. This is also needed, because the root | |
1025 | node will at first have no permissions */ | |
244f6385 | 1026 | if (err == -EACCES && !refreshed) { |
19690ddb | 1027 | err = fuse_perm_getattr(inode, flags); |
1e9a4ed9 | 1028 | if (!err) |
b74c79e9 NP |
1029 | err = generic_permission(inode, mask, |
1030 | flags, NULL); | |
1e9a4ed9 MS |
1031 | } |
1032 | ||
6f9f1180 MS |
1033 | /* Note: the opposite of the above test does not |
1034 | exist. So if permissions are revoked this won't be | |
1035 | noticed immediately, only after the attribute | |
1036 | timeout has expired */ | |
9cfcac81 | 1037 | } else if (mask & (MAY_ACCESS | MAY_CHDIR)) { |
19690ddb MS |
1038 | if (flags & IPERM_FLAG_RCU) |
1039 | return -ECHILD; | |
1040 | ||
e8e96157 MS |
1041 | err = fuse_access(inode, mask); |
1042 | } else if ((mask & MAY_EXEC) && S_ISREG(inode->i_mode)) { | |
1043 | if (!(inode->i_mode & S_IXUGO)) { | |
1044 | if (refreshed) | |
1045 | return -EACCES; | |
1046 | ||
19690ddb | 1047 | err = fuse_perm_getattr(inode, flags); |
e8e96157 MS |
1048 | if (!err && !(inode->i_mode & S_IXUGO)) |
1049 | return -EACCES; | |
1050 | } | |
e5e5558e | 1051 | } |
244f6385 | 1052 | return err; |
e5e5558e MS |
1053 | } |
1054 | ||
1055 | static int parse_dirfile(char *buf, size_t nbytes, struct file *file, | |
1056 | void *dstbuf, filldir_t filldir) | |
1057 | { | |
1058 | while (nbytes >= FUSE_NAME_OFFSET) { | |
1059 | struct fuse_dirent *dirent = (struct fuse_dirent *) buf; | |
1060 | size_t reclen = FUSE_DIRENT_SIZE(dirent); | |
1061 | int over; | |
1062 | if (!dirent->namelen || dirent->namelen > FUSE_NAME_MAX) | |
1063 | return -EIO; | |
1064 | if (reclen > nbytes) | |
1065 | break; | |
1066 | ||
1067 | over = filldir(dstbuf, dirent->name, dirent->namelen, | |
1068 | file->f_pos, dirent->ino, dirent->type); | |
1069 | if (over) | |
1070 | break; | |
1071 | ||
1072 | buf += reclen; | |
1073 | nbytes -= reclen; | |
1074 | file->f_pos = dirent->off; | |
1075 | } | |
1076 | ||
1077 | return 0; | |
1078 | } | |
1079 | ||
04730fef | 1080 | static int fuse_readdir(struct file *file, void *dstbuf, filldir_t filldir) |
e5e5558e | 1081 | { |
04730fef MS |
1082 | int err; |
1083 | size_t nbytes; | |
1084 | struct page *page; | |
7706a9d6 | 1085 | struct inode *inode = file->f_path.dentry->d_inode; |
e5e5558e | 1086 | struct fuse_conn *fc = get_fuse_conn(inode); |
248d86e8 MS |
1087 | struct fuse_req *req; |
1088 | ||
1089 | if (is_bad_inode(inode)) | |
1090 | return -EIO; | |
1091 | ||
ce1d5a49 MS |
1092 | req = fuse_get_req(fc); |
1093 | if (IS_ERR(req)) | |
1094 | return PTR_ERR(req); | |
e5e5558e | 1095 | |
04730fef MS |
1096 | page = alloc_page(GFP_KERNEL); |
1097 | if (!page) { | |
1098 | fuse_put_request(fc, req); | |
1099 | return -ENOMEM; | |
1100 | } | |
f4975c67 | 1101 | req->out.argpages = 1; |
04730fef MS |
1102 | req->num_pages = 1; |
1103 | req->pages[0] = page; | |
2106cb18 | 1104 | fuse_read_fill(req, file, file->f_pos, PAGE_SIZE, FUSE_READDIR); |
b93f858a | 1105 | fuse_request_send(fc, req); |
361b1eb5 | 1106 | nbytes = req->out.args[0].size; |
e5e5558e MS |
1107 | err = req->out.h.error; |
1108 | fuse_put_request(fc, req); | |
1109 | if (!err) | |
04730fef MS |
1110 | err = parse_dirfile(page_address(page), nbytes, file, dstbuf, |
1111 | filldir); | |
e5e5558e | 1112 | |
04730fef | 1113 | __free_page(page); |
b36c31ba | 1114 | fuse_invalidate_attr(inode); /* atime changed */ |
04730fef | 1115 | return err; |
e5e5558e MS |
1116 | } |
1117 | ||
1118 | static char *read_link(struct dentry *dentry) | |
1119 | { | |
1120 | struct inode *inode = dentry->d_inode; | |
1121 | struct fuse_conn *fc = get_fuse_conn(inode); | |
ce1d5a49 | 1122 | struct fuse_req *req = fuse_get_req(fc); |
e5e5558e MS |
1123 | char *link; |
1124 | ||
ce1d5a49 | 1125 | if (IS_ERR(req)) |
e231c2ee | 1126 | return ERR_CAST(req); |
e5e5558e MS |
1127 | |
1128 | link = (char *) __get_free_page(GFP_KERNEL); | |
1129 | if (!link) { | |
1130 | link = ERR_PTR(-ENOMEM); | |
1131 | goto out; | |
1132 | } | |
1133 | req->in.h.opcode = FUSE_READLINK; | |
1134 | req->in.h.nodeid = get_node_id(inode); | |
e5e5558e MS |
1135 | req->out.argvar = 1; |
1136 | req->out.numargs = 1; | |
1137 | req->out.args[0].size = PAGE_SIZE - 1; | |
1138 | req->out.args[0].value = link; | |
b93f858a | 1139 | fuse_request_send(fc, req); |
e5e5558e MS |
1140 | if (req->out.h.error) { |
1141 | free_page((unsigned long) link); | |
1142 | link = ERR_PTR(req->out.h.error); | |
1143 | } else | |
1144 | link[req->out.args[0].size] = '\0'; | |
1145 | out: | |
1146 | fuse_put_request(fc, req); | |
b36c31ba | 1147 | fuse_invalidate_attr(inode); /* atime changed */ |
e5e5558e MS |
1148 | return link; |
1149 | } | |
1150 | ||
1151 | static void free_link(char *link) | |
1152 | { | |
1153 | if (!IS_ERR(link)) | |
1154 | free_page((unsigned long) link); | |
1155 | } | |
1156 | ||
1157 | static void *fuse_follow_link(struct dentry *dentry, struct nameidata *nd) | |
1158 | { | |
1159 | nd_set_link(nd, read_link(dentry)); | |
1160 | return NULL; | |
1161 | } | |
1162 | ||
1163 | static void fuse_put_link(struct dentry *dentry, struct nameidata *nd, void *c) | |
1164 | { | |
1165 | free_link(nd_get_link(nd)); | |
1166 | } | |
1167 | ||
1168 | static int fuse_dir_open(struct inode *inode, struct file *file) | |
1169 | { | |
91fe96b4 | 1170 | return fuse_open_common(inode, file, true); |
e5e5558e MS |
1171 | } |
1172 | ||
1173 | static int fuse_dir_release(struct inode *inode, struct file *file) | |
1174 | { | |
8b0797a4 MS |
1175 | fuse_release_common(file, FUSE_RELEASEDIR); |
1176 | ||
1177 | return 0; | |
e5e5558e MS |
1178 | } |
1179 | ||
7ea80859 | 1180 | static int fuse_dir_fsync(struct file *file, int datasync) |
82547981 | 1181 | { |
7ea80859 | 1182 | return fuse_fsync_common(file, datasync, 1); |
82547981 MS |
1183 | } |
1184 | ||
17637cba MS |
1185 | static bool update_mtime(unsigned ivalid) |
1186 | { | |
1187 | /* Always update if mtime is explicitly set */ | |
1188 | if (ivalid & ATTR_MTIME_SET) | |
1189 | return true; | |
1190 | ||
1191 | /* If it's an open(O_TRUNC) or an ftruncate(), don't update */ | |
1192 | if ((ivalid & ATTR_SIZE) && (ivalid & (ATTR_OPEN | ATTR_FILE))) | |
1193 | return false; | |
1194 | ||
1195 | /* In all other cases update */ | |
1196 | return true; | |
1197 | } | |
1198 | ||
befc649c | 1199 | static void iattr_to_fattr(struct iattr *iattr, struct fuse_setattr_in *arg) |
9e6268db MS |
1200 | { |
1201 | unsigned ivalid = iattr->ia_valid; | |
9e6268db MS |
1202 | |
1203 | if (ivalid & ATTR_MODE) | |
befc649c | 1204 | arg->valid |= FATTR_MODE, arg->mode = iattr->ia_mode; |
9e6268db | 1205 | if (ivalid & ATTR_UID) |
befc649c | 1206 | arg->valid |= FATTR_UID, arg->uid = iattr->ia_uid; |
9e6268db | 1207 | if (ivalid & ATTR_GID) |
befc649c | 1208 | arg->valid |= FATTR_GID, arg->gid = iattr->ia_gid; |
9e6268db | 1209 | if (ivalid & ATTR_SIZE) |
befc649c | 1210 | arg->valid |= FATTR_SIZE, arg->size = iattr->ia_size; |
17637cba MS |
1211 | if (ivalid & ATTR_ATIME) { |
1212 | arg->valid |= FATTR_ATIME; | |
befc649c | 1213 | arg->atime = iattr->ia_atime.tv_sec; |
17637cba MS |
1214 | arg->atimensec = iattr->ia_atime.tv_nsec; |
1215 | if (!(ivalid & ATTR_ATIME_SET)) | |
1216 | arg->valid |= FATTR_ATIME_NOW; | |
1217 | } | |
1218 | if ((ivalid & ATTR_MTIME) && update_mtime(ivalid)) { | |
1219 | arg->valid |= FATTR_MTIME; | |
befc649c | 1220 | arg->mtime = iattr->ia_mtime.tv_sec; |
17637cba MS |
1221 | arg->mtimensec = iattr->ia_mtime.tv_nsec; |
1222 | if (!(ivalid & ATTR_MTIME_SET)) | |
1223 | arg->valid |= FATTR_MTIME_NOW; | |
befc649c | 1224 | } |
9e6268db MS |
1225 | } |
1226 | ||
3be5a52b MS |
1227 | /* |
1228 | * Prevent concurrent writepages on inode | |
1229 | * | |
1230 | * This is done by adding a negative bias to the inode write counter | |
1231 | * and waiting for all pending writes to finish. | |
1232 | */ | |
1233 | void fuse_set_nowrite(struct inode *inode) | |
1234 | { | |
1235 | struct fuse_conn *fc = get_fuse_conn(inode); | |
1236 | struct fuse_inode *fi = get_fuse_inode(inode); | |
1237 | ||
1238 | BUG_ON(!mutex_is_locked(&inode->i_mutex)); | |
1239 | ||
1240 | spin_lock(&fc->lock); | |
1241 | BUG_ON(fi->writectr < 0); | |
1242 | fi->writectr += FUSE_NOWRITE; | |
1243 | spin_unlock(&fc->lock); | |
1244 | wait_event(fi->page_waitq, fi->writectr == FUSE_NOWRITE); | |
1245 | } | |
1246 | ||
1247 | /* | |
1248 | * Allow writepages on inode | |
1249 | * | |
1250 | * Remove the bias from the writecounter and send any queued | |
1251 | * writepages. | |
1252 | */ | |
1253 | static void __fuse_release_nowrite(struct inode *inode) | |
1254 | { | |
1255 | struct fuse_inode *fi = get_fuse_inode(inode); | |
1256 | ||
1257 | BUG_ON(fi->writectr != FUSE_NOWRITE); | |
1258 | fi->writectr = 0; | |
1259 | fuse_flush_writepages(inode); | |
1260 | } | |
1261 | ||
1262 | void fuse_release_nowrite(struct inode *inode) | |
1263 | { | |
1264 | struct fuse_conn *fc = get_fuse_conn(inode); | |
1265 | ||
1266 | spin_lock(&fc->lock); | |
1267 | __fuse_release_nowrite(inode); | |
1268 | spin_unlock(&fc->lock); | |
1269 | } | |
1270 | ||
6f9f1180 MS |
1271 | /* |
1272 | * Set attributes, and at the same time refresh them. | |
1273 | * | |
1274 | * Truncation is slightly complicated, because the 'truncate' request | |
1275 | * may fail, in which case we don't want to touch the mapping. | |
9ffbb916 MS |
1276 | * vmtruncate() doesn't allow for this case, so do the rlimit checking |
1277 | * and the actual truncation by hand. | |
6f9f1180 | 1278 | */ |
49d4914f MS |
1279 | static int fuse_do_setattr(struct dentry *entry, struct iattr *attr, |
1280 | struct file *file) | |
9e6268db MS |
1281 | { |
1282 | struct inode *inode = entry->d_inode; | |
1283 | struct fuse_conn *fc = get_fuse_conn(inode); | |
9e6268db MS |
1284 | struct fuse_req *req; |
1285 | struct fuse_setattr_in inarg; | |
1286 | struct fuse_attr_out outarg; | |
3be5a52b MS |
1287 | bool is_truncate = false; |
1288 | loff_t oldsize; | |
9e6268db | 1289 | int err; |
9e6268db | 1290 | |
e57ac683 MS |
1291 | if (!fuse_allow_task(fc, current)) |
1292 | return -EACCES; | |
1293 | ||
db78b877 CH |
1294 | if (!(fc->flags & FUSE_DEFAULT_PERMISSIONS)) |
1295 | attr->ia_valid |= ATTR_FORCE; | |
1296 | ||
1297 | err = inode_change_ok(inode, attr); | |
1298 | if (err) | |
1299 | return err; | |
1e9a4ed9 | 1300 | |
8d56addd MS |
1301 | if (attr->ia_valid & ATTR_OPEN) { |
1302 | if (fc->atomic_o_trunc) | |
1303 | return 0; | |
1304 | file = NULL; | |
1305 | } | |
6ff958ed | 1306 | |
2c27c65e | 1307 | if (attr->ia_valid & ATTR_SIZE) |
3be5a52b | 1308 | is_truncate = true; |
9e6268db | 1309 | |
ce1d5a49 MS |
1310 | req = fuse_get_req(fc); |
1311 | if (IS_ERR(req)) | |
1312 | return PTR_ERR(req); | |
9e6268db | 1313 | |
3be5a52b MS |
1314 | if (is_truncate) |
1315 | fuse_set_nowrite(inode); | |
1316 | ||
9e6268db | 1317 | memset(&inarg, 0, sizeof(inarg)); |
0e9663ee | 1318 | memset(&outarg, 0, sizeof(outarg)); |
befc649c | 1319 | iattr_to_fattr(attr, &inarg); |
49d4914f MS |
1320 | if (file) { |
1321 | struct fuse_file *ff = file->private_data; | |
1322 | inarg.valid |= FATTR_FH; | |
1323 | inarg.fh = ff->fh; | |
1324 | } | |
f3332114 MS |
1325 | if (attr->ia_valid & ATTR_SIZE) { |
1326 | /* For mandatory locking in truncate */ | |
1327 | inarg.valid |= FATTR_LOCKOWNER; | |
1328 | inarg.lock_owner = fuse_lock_owner_id(fc, current->files); | |
1329 | } | |
9e6268db MS |
1330 | req->in.h.opcode = FUSE_SETATTR; |
1331 | req->in.h.nodeid = get_node_id(inode); | |
9e6268db MS |
1332 | req->in.numargs = 1; |
1333 | req->in.args[0].size = sizeof(inarg); | |
1334 | req->in.args[0].value = &inarg; | |
1335 | req->out.numargs = 1; | |
0e9663ee MS |
1336 | if (fc->minor < 9) |
1337 | req->out.args[0].size = FUSE_COMPAT_ATTR_OUT_SIZE; | |
1338 | else | |
1339 | req->out.args[0].size = sizeof(outarg); | |
9e6268db | 1340 | req->out.args[0].value = &outarg; |
b93f858a | 1341 | fuse_request_send(fc, req); |
9e6268db MS |
1342 | err = req->out.h.error; |
1343 | fuse_put_request(fc, req); | |
e00d2c2d MS |
1344 | if (err) { |
1345 | if (err == -EINTR) | |
1346 | fuse_invalidate_attr(inode); | |
3be5a52b | 1347 | goto error; |
e00d2c2d | 1348 | } |
9e6268db | 1349 | |
e00d2c2d MS |
1350 | if ((inode->i_mode ^ outarg.attr.mode) & S_IFMT) { |
1351 | make_bad_inode(inode); | |
3be5a52b MS |
1352 | err = -EIO; |
1353 | goto error; | |
1354 | } | |
1355 | ||
1356 | spin_lock(&fc->lock); | |
1357 | fuse_change_attributes_common(inode, &outarg.attr, | |
1358 | attr_timeout(&outarg)); | |
1359 | oldsize = inode->i_size; | |
1360 | i_size_write(inode, outarg.attr.size); | |
1361 | ||
1362 | if (is_truncate) { | |
1363 | /* NOTE: this may release/reacquire fc->lock */ | |
1364 | __fuse_release_nowrite(inode); | |
1365 | } | |
1366 | spin_unlock(&fc->lock); | |
1367 | ||
1368 | /* | |
1369 | * Only call invalidate_inode_pages2() after removing | |
1370 | * FUSE_NOWRITE, otherwise fuse_launder_page() would deadlock. | |
1371 | */ | |
1372 | if (S_ISREG(inode->i_mode) && oldsize != outarg.attr.size) { | |
c08d3b0e | 1373 | truncate_pagecache(inode, oldsize, outarg.attr.size); |
3be5a52b | 1374 | invalidate_inode_pages2(inode->i_mapping); |
e00d2c2d MS |
1375 | } |
1376 | ||
e00d2c2d | 1377 | return 0; |
3be5a52b MS |
1378 | |
1379 | error: | |
1380 | if (is_truncate) | |
1381 | fuse_release_nowrite(inode); | |
1382 | ||
1383 | return err; | |
9e6268db MS |
1384 | } |
1385 | ||
49d4914f MS |
1386 | static int fuse_setattr(struct dentry *entry, struct iattr *attr) |
1387 | { | |
1388 | if (attr->ia_valid & ATTR_FILE) | |
1389 | return fuse_do_setattr(entry, attr, attr->ia_file); | |
1390 | else | |
1391 | return fuse_do_setattr(entry, attr, NULL); | |
1392 | } | |
1393 | ||
e5e5558e MS |
1394 | static int fuse_getattr(struct vfsmount *mnt, struct dentry *entry, |
1395 | struct kstat *stat) | |
1396 | { | |
1397 | struct inode *inode = entry->d_inode; | |
244f6385 | 1398 | struct fuse_conn *fc = get_fuse_conn(inode); |
244f6385 MS |
1399 | |
1400 | if (!fuse_allow_task(fc, current)) | |
1401 | return -EACCES; | |
1402 | ||
bcb4be80 | 1403 | return fuse_update_attributes(inode, stat, NULL, NULL); |
e5e5558e MS |
1404 | } |
1405 | ||
92a8780e MS |
1406 | static int fuse_setxattr(struct dentry *entry, const char *name, |
1407 | const void *value, size_t size, int flags) | |
1408 | { | |
1409 | struct inode *inode = entry->d_inode; | |
1410 | struct fuse_conn *fc = get_fuse_conn(inode); | |
1411 | struct fuse_req *req; | |
1412 | struct fuse_setxattr_in inarg; | |
1413 | int err; | |
1414 | ||
92a8780e MS |
1415 | if (fc->no_setxattr) |
1416 | return -EOPNOTSUPP; | |
1417 | ||
ce1d5a49 MS |
1418 | req = fuse_get_req(fc); |
1419 | if (IS_ERR(req)) | |
1420 | return PTR_ERR(req); | |
92a8780e MS |
1421 | |
1422 | memset(&inarg, 0, sizeof(inarg)); | |
1423 | inarg.size = size; | |
1424 | inarg.flags = flags; | |
1425 | req->in.h.opcode = FUSE_SETXATTR; | |
1426 | req->in.h.nodeid = get_node_id(inode); | |
92a8780e MS |
1427 | req->in.numargs = 3; |
1428 | req->in.args[0].size = sizeof(inarg); | |
1429 | req->in.args[0].value = &inarg; | |
1430 | req->in.args[1].size = strlen(name) + 1; | |
1431 | req->in.args[1].value = name; | |
1432 | req->in.args[2].size = size; | |
1433 | req->in.args[2].value = value; | |
b93f858a | 1434 | fuse_request_send(fc, req); |
92a8780e MS |
1435 | err = req->out.h.error; |
1436 | fuse_put_request(fc, req); | |
1437 | if (err == -ENOSYS) { | |
1438 | fc->no_setxattr = 1; | |
1439 | err = -EOPNOTSUPP; | |
1440 | } | |
1441 | return err; | |
1442 | } | |
1443 | ||
1444 | static ssize_t fuse_getxattr(struct dentry *entry, const char *name, | |
1445 | void *value, size_t size) | |
1446 | { | |
1447 | struct inode *inode = entry->d_inode; | |
1448 | struct fuse_conn *fc = get_fuse_conn(inode); | |
1449 | struct fuse_req *req; | |
1450 | struct fuse_getxattr_in inarg; | |
1451 | struct fuse_getxattr_out outarg; | |
1452 | ssize_t ret; | |
1453 | ||
1454 | if (fc->no_getxattr) | |
1455 | return -EOPNOTSUPP; | |
1456 | ||
ce1d5a49 MS |
1457 | req = fuse_get_req(fc); |
1458 | if (IS_ERR(req)) | |
1459 | return PTR_ERR(req); | |
92a8780e MS |
1460 | |
1461 | memset(&inarg, 0, sizeof(inarg)); | |
1462 | inarg.size = size; | |
1463 | req->in.h.opcode = FUSE_GETXATTR; | |
1464 | req->in.h.nodeid = get_node_id(inode); | |
92a8780e MS |
1465 | req->in.numargs = 2; |
1466 | req->in.args[0].size = sizeof(inarg); | |
1467 | req->in.args[0].value = &inarg; | |
1468 | req->in.args[1].size = strlen(name) + 1; | |
1469 | req->in.args[1].value = name; | |
1470 | /* This is really two different operations rolled into one */ | |
1471 | req->out.numargs = 1; | |
1472 | if (size) { | |
1473 | req->out.argvar = 1; | |
1474 | req->out.args[0].size = size; | |
1475 | req->out.args[0].value = value; | |
1476 | } else { | |
1477 | req->out.args[0].size = sizeof(outarg); | |
1478 | req->out.args[0].value = &outarg; | |
1479 | } | |
b93f858a | 1480 | fuse_request_send(fc, req); |
92a8780e MS |
1481 | ret = req->out.h.error; |
1482 | if (!ret) | |
1483 | ret = size ? req->out.args[0].size : outarg.size; | |
1484 | else { | |
1485 | if (ret == -ENOSYS) { | |
1486 | fc->no_getxattr = 1; | |
1487 | ret = -EOPNOTSUPP; | |
1488 | } | |
1489 | } | |
1490 | fuse_put_request(fc, req); | |
1491 | return ret; | |
1492 | } | |
1493 | ||
1494 | static ssize_t fuse_listxattr(struct dentry *entry, char *list, size_t size) | |
1495 | { | |
1496 | struct inode *inode = entry->d_inode; | |
1497 | struct fuse_conn *fc = get_fuse_conn(inode); | |
1498 | struct fuse_req *req; | |
1499 | struct fuse_getxattr_in inarg; | |
1500 | struct fuse_getxattr_out outarg; | |
1501 | ssize_t ret; | |
1502 | ||
e57ac683 MS |
1503 | if (!fuse_allow_task(fc, current)) |
1504 | return -EACCES; | |
1505 | ||
92a8780e MS |
1506 | if (fc->no_listxattr) |
1507 | return -EOPNOTSUPP; | |
1508 | ||
ce1d5a49 MS |
1509 | req = fuse_get_req(fc); |
1510 | if (IS_ERR(req)) | |
1511 | return PTR_ERR(req); | |
92a8780e MS |
1512 | |
1513 | memset(&inarg, 0, sizeof(inarg)); | |
1514 | inarg.size = size; | |
1515 | req->in.h.opcode = FUSE_LISTXATTR; | |
1516 | req->in.h.nodeid = get_node_id(inode); | |
92a8780e MS |
1517 | req->in.numargs = 1; |
1518 | req->in.args[0].size = sizeof(inarg); | |
1519 | req->in.args[0].value = &inarg; | |
1520 | /* This is really two different operations rolled into one */ | |
1521 | req->out.numargs = 1; | |
1522 | if (size) { | |
1523 | req->out.argvar = 1; | |
1524 | req->out.args[0].size = size; | |
1525 | req->out.args[0].value = list; | |
1526 | } else { | |
1527 | req->out.args[0].size = sizeof(outarg); | |
1528 | req->out.args[0].value = &outarg; | |
1529 | } | |
b93f858a | 1530 | fuse_request_send(fc, req); |
92a8780e MS |
1531 | ret = req->out.h.error; |
1532 | if (!ret) | |
1533 | ret = size ? req->out.args[0].size : outarg.size; | |
1534 | else { | |
1535 | if (ret == -ENOSYS) { | |
1536 | fc->no_listxattr = 1; | |
1537 | ret = -EOPNOTSUPP; | |
1538 | } | |
1539 | } | |
1540 | fuse_put_request(fc, req); | |
1541 | return ret; | |
1542 | } | |
1543 | ||
1544 | static int fuse_removexattr(struct dentry *entry, const char *name) | |
1545 | { | |
1546 | struct inode *inode = entry->d_inode; | |
1547 | struct fuse_conn *fc = get_fuse_conn(inode); | |
1548 | struct fuse_req *req; | |
1549 | int err; | |
1550 | ||
1551 | if (fc->no_removexattr) | |
1552 | return -EOPNOTSUPP; | |
1553 | ||
ce1d5a49 MS |
1554 | req = fuse_get_req(fc); |
1555 | if (IS_ERR(req)) | |
1556 | return PTR_ERR(req); | |
92a8780e MS |
1557 | |
1558 | req->in.h.opcode = FUSE_REMOVEXATTR; | |
1559 | req->in.h.nodeid = get_node_id(inode); | |
92a8780e MS |
1560 | req->in.numargs = 1; |
1561 | req->in.args[0].size = strlen(name) + 1; | |
1562 | req->in.args[0].value = name; | |
b93f858a | 1563 | fuse_request_send(fc, req); |
92a8780e MS |
1564 | err = req->out.h.error; |
1565 | fuse_put_request(fc, req); | |
1566 | if (err == -ENOSYS) { | |
1567 | fc->no_removexattr = 1; | |
1568 | err = -EOPNOTSUPP; | |
1569 | } | |
1570 | return err; | |
1571 | } | |
1572 | ||
754661f1 | 1573 | static const struct inode_operations fuse_dir_inode_operations = { |
e5e5558e | 1574 | .lookup = fuse_lookup, |
9e6268db MS |
1575 | .mkdir = fuse_mkdir, |
1576 | .symlink = fuse_symlink, | |
1577 | .unlink = fuse_unlink, | |
1578 | .rmdir = fuse_rmdir, | |
1579 | .rename = fuse_rename, | |
1580 | .link = fuse_link, | |
1581 | .setattr = fuse_setattr, | |
1582 | .create = fuse_create, | |
1583 | .mknod = fuse_mknod, | |
e5e5558e MS |
1584 | .permission = fuse_permission, |
1585 | .getattr = fuse_getattr, | |
92a8780e MS |
1586 | .setxattr = fuse_setxattr, |
1587 | .getxattr = fuse_getxattr, | |
1588 | .listxattr = fuse_listxattr, | |
1589 | .removexattr = fuse_removexattr, | |
e5e5558e MS |
1590 | }; |
1591 | ||
4b6f5d20 | 1592 | static const struct file_operations fuse_dir_operations = { |
b6aeaded | 1593 | .llseek = generic_file_llseek, |
e5e5558e MS |
1594 | .read = generic_read_dir, |
1595 | .readdir = fuse_readdir, | |
1596 | .open = fuse_dir_open, | |
1597 | .release = fuse_dir_release, | |
82547981 | 1598 | .fsync = fuse_dir_fsync, |
e5e5558e MS |
1599 | }; |
1600 | ||
754661f1 | 1601 | static const struct inode_operations fuse_common_inode_operations = { |
9e6268db | 1602 | .setattr = fuse_setattr, |
e5e5558e MS |
1603 | .permission = fuse_permission, |
1604 | .getattr = fuse_getattr, | |
92a8780e MS |
1605 | .setxattr = fuse_setxattr, |
1606 | .getxattr = fuse_getxattr, | |
1607 | .listxattr = fuse_listxattr, | |
1608 | .removexattr = fuse_removexattr, | |
e5e5558e MS |
1609 | }; |
1610 | ||
754661f1 | 1611 | static const struct inode_operations fuse_symlink_inode_operations = { |
9e6268db | 1612 | .setattr = fuse_setattr, |
e5e5558e MS |
1613 | .follow_link = fuse_follow_link, |
1614 | .put_link = fuse_put_link, | |
1615 | .readlink = generic_readlink, | |
1616 | .getattr = fuse_getattr, | |
92a8780e MS |
1617 | .setxattr = fuse_setxattr, |
1618 | .getxattr = fuse_getxattr, | |
1619 | .listxattr = fuse_listxattr, | |
1620 | .removexattr = fuse_removexattr, | |
e5e5558e MS |
1621 | }; |
1622 | ||
1623 | void fuse_init_common(struct inode *inode) | |
1624 | { | |
1625 | inode->i_op = &fuse_common_inode_operations; | |
1626 | } | |
1627 | ||
1628 | void fuse_init_dir(struct inode *inode) | |
1629 | { | |
1630 | inode->i_op = &fuse_dir_inode_operations; | |
1631 | inode->i_fop = &fuse_dir_operations; | |
1632 | } | |
1633 | ||
1634 | void fuse_init_symlink(struct inode *inode) | |
1635 | { | |
1636 | inode->i_op = &fuse_symlink_inode_operations; | |
1637 | } |