]>
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 | |
8d3af7f3 | 17 | static bool fuse_use_readdirplus(struct inode *dir, struct dir_context *ctx) |
4582a4ab FS |
18 | { |
19 | struct fuse_conn *fc = get_fuse_conn(dir); | |
20 | struct fuse_inode *fi = get_fuse_inode(dir); | |
21 | ||
22 | if (!fc->do_readdirplus) | |
23 | return false; | |
634734b6 EW |
24 | if (!fc->readdirplus_auto) |
25 | return true; | |
4582a4ab FS |
26 | if (test_and_clear_bit(FUSE_I_ADVISE_RDPLUS, &fi->state)) |
27 | return true; | |
8d3af7f3 | 28 | if (ctx->pos == 0) |
4582a4ab FS |
29 | return true; |
30 | return false; | |
31 | } | |
32 | ||
33 | static void fuse_advise_use_readdirplus(struct inode *dir) | |
34 | { | |
35 | struct fuse_inode *fi = get_fuse_inode(dir); | |
36 | ||
37 | set_bit(FUSE_I_ADVISE_RDPLUS, &fi->state); | |
38 | } | |
39 | ||
0a0898cf MS |
40 | #if BITS_PER_LONG >= 64 |
41 | static inline void fuse_dentry_settime(struct dentry *entry, u64 time) | |
42 | { | |
43 | entry->d_time = time; | |
44 | } | |
45 | ||
46 | static inline u64 fuse_dentry_time(struct dentry *entry) | |
47 | { | |
48 | return entry->d_time; | |
49 | } | |
50 | #else | |
51 | /* | |
52 | * On 32 bit archs store the high 32 bits of time in d_fsdata | |
53 | */ | |
54 | static void fuse_dentry_settime(struct dentry *entry, u64 time) | |
55 | { | |
56 | entry->d_time = time; | |
57 | entry->d_fsdata = (void *) (unsigned long) (time >> 32); | |
58 | } | |
59 | ||
60 | static u64 fuse_dentry_time(struct dentry *entry) | |
61 | { | |
62 | return (u64) entry->d_time + | |
63 | ((u64) (unsigned long) entry->d_fsdata << 32); | |
64 | } | |
65 | #endif | |
66 | ||
6f9f1180 MS |
67 | /* |
68 | * FUSE caches dentries and attributes with separate timeout. The | |
69 | * time in jiffies until the dentry/attributes are valid is stored in | |
70 | * dentry->d_time and fuse_inode->i_time respectively. | |
71 | */ | |
72 | ||
73 | /* | |
74 | * Calculate the time in jiffies until a dentry/attributes are valid | |
75 | */ | |
0a0898cf | 76 | static u64 time_to_jiffies(unsigned long sec, unsigned long nsec) |
e5e5558e | 77 | { |
685d16dd MS |
78 | if (sec || nsec) { |
79 | struct timespec ts = {sec, nsec}; | |
0a0898cf | 80 | return get_jiffies_64() + timespec_to_jiffies(&ts); |
685d16dd | 81 | } else |
0a0898cf | 82 | return 0; |
e5e5558e MS |
83 | } |
84 | ||
6f9f1180 MS |
85 | /* |
86 | * Set dentry and possibly attribute timeouts from the lookup/mk* | |
87 | * replies | |
88 | */ | |
1fb69e78 MS |
89 | static void fuse_change_entry_timeout(struct dentry *entry, |
90 | struct fuse_entry_out *o) | |
0aa7c699 | 91 | { |
0a0898cf MS |
92 | fuse_dentry_settime(entry, |
93 | time_to_jiffies(o->entry_valid, o->entry_valid_nsec)); | |
1fb69e78 MS |
94 | } |
95 | ||
96 | static u64 attr_timeout(struct fuse_attr_out *o) | |
97 | { | |
98 | return time_to_jiffies(o->attr_valid, o->attr_valid_nsec); | |
99 | } | |
100 | ||
101 | static u64 entry_attr_timeout(struct fuse_entry_out *o) | |
102 | { | |
103 | return time_to_jiffies(o->attr_valid, o->attr_valid_nsec); | |
8cbdf1e6 MS |
104 | } |
105 | ||
6f9f1180 MS |
106 | /* |
107 | * Mark the attributes as stale, so that at the next call to | |
108 | * ->getattr() they will be fetched from userspace | |
109 | */ | |
8cbdf1e6 MS |
110 | void fuse_invalidate_attr(struct inode *inode) |
111 | { | |
0a0898cf | 112 | get_fuse_inode(inode)->i_time = 0; |
8cbdf1e6 MS |
113 | } |
114 | ||
451418fc AG |
115 | /** |
116 | * Mark the attributes as stale due to an atime change. Avoid the invalidate if | |
117 | * atime is not used. | |
118 | */ | |
119 | void fuse_invalidate_atime(struct inode *inode) | |
120 | { | |
121 | if (!IS_RDONLY(inode)) | |
122 | fuse_invalidate_attr(inode); | |
123 | } | |
124 | ||
6f9f1180 MS |
125 | /* |
126 | * Just mark the entry as stale, so that a next attempt to look it up | |
127 | * will result in a new lookup call to userspace | |
128 | * | |
129 | * This is called when a dentry is about to become negative and the | |
130 | * timeout is unknown (unlink, rmdir, rename and in some cases | |
131 | * lookup) | |
132 | */ | |
dbd561d2 | 133 | void fuse_invalidate_entry_cache(struct dentry *entry) |
8cbdf1e6 | 134 | { |
0a0898cf | 135 | fuse_dentry_settime(entry, 0); |
8cbdf1e6 MS |
136 | } |
137 | ||
6f9f1180 MS |
138 | /* |
139 | * Same as fuse_invalidate_entry_cache(), but also try to remove the | |
140 | * dentry from the hash | |
141 | */ | |
8cbdf1e6 MS |
142 | static void fuse_invalidate_entry(struct dentry *entry) |
143 | { | |
144 | d_invalidate(entry); | |
145 | fuse_invalidate_entry_cache(entry); | |
0aa7c699 MS |
146 | } |
147 | ||
c180eebe MS |
148 | static void fuse_lookup_init(struct fuse_conn *fc, struct fuse_req *req, |
149 | u64 nodeid, struct qstr *name, | |
e5e5558e MS |
150 | struct fuse_entry_out *outarg) |
151 | { | |
0e9663ee | 152 | memset(outarg, 0, sizeof(struct fuse_entry_out)); |
e5e5558e | 153 | req->in.h.opcode = FUSE_LOOKUP; |
c180eebe | 154 | req->in.h.nodeid = nodeid; |
e5e5558e | 155 | req->in.numargs = 1; |
c180eebe MS |
156 | req->in.args[0].size = name->len + 1; |
157 | req->in.args[0].value = name->name; | |
e5e5558e | 158 | req->out.numargs = 1; |
0e9663ee MS |
159 | if (fc->minor < 9) |
160 | req->out.args[0].size = FUSE_COMPAT_ENTRY_OUT_SIZE; | |
161 | else | |
162 | req->out.args[0].size = sizeof(struct fuse_entry_out); | |
e5e5558e MS |
163 | req->out.args[0].value = outarg; |
164 | } | |
165 | ||
5c5c5e51 | 166 | u64 fuse_get_attr_version(struct fuse_conn *fc) |
7dca9fd3 MS |
167 | { |
168 | u64 curr_version; | |
169 | ||
170 | /* | |
171 | * The spin lock isn't actually needed on 64bit archs, but we | |
172 | * don't yet care too much about such optimizations. | |
173 | */ | |
174 | spin_lock(&fc->lock); | |
175 | curr_version = fc->attr_version; | |
176 | spin_unlock(&fc->lock); | |
177 | ||
178 | return curr_version; | |
179 | } | |
180 | ||
6f9f1180 MS |
181 | /* |
182 | * Check whether the dentry is still valid | |
183 | * | |
184 | * If the entry validity timeout has expired and the dentry is | |
185 | * positive, try to redo the lookup. If the lookup results in a | |
186 | * different inode, then let the VFS invalidate the dentry and redo | |
187 | * the lookup once more. If the lookup results in the same inode, | |
188 | * then refresh the attributes, timeouts and mark the dentry valid. | |
189 | */ | |
0b728e19 | 190 | static int fuse_dentry_revalidate(struct dentry *entry, unsigned int flags) |
e5e5558e | 191 | { |
34286d66 | 192 | struct inode *inode; |
28420dad MS |
193 | struct dentry *parent; |
194 | struct fuse_conn *fc; | |
6314efee | 195 | struct fuse_inode *fi; |
e2a6b952 | 196 | int ret; |
8cbdf1e6 | 197 | |
e7c0a167 | 198 | inode = ACCESS_ONCE(entry->d_inode); |
8cbdf1e6 | 199 | if (inode && is_bad_inode(inode)) |
e2a6b952 | 200 | goto invalid; |
154210cc AA |
201 | else if (time_before64(fuse_dentry_time(entry), get_jiffies_64()) || |
202 | (flags & LOOKUP_REVAL)) { | |
e5e5558e | 203 | int err; |
e5e5558e | 204 | struct fuse_entry_out outarg; |
8cbdf1e6 | 205 | struct fuse_req *req; |
07e77dca | 206 | struct fuse_forget_link *forget; |
1fb69e78 | 207 | u64 attr_version; |
8cbdf1e6 | 208 | |
50322fe7 | 209 | /* For negative dentries, always do a fresh lookup */ |
8cbdf1e6 | 210 | if (!inode) |
e2a6b952 | 211 | goto invalid; |
8cbdf1e6 | 212 | |
e2a6b952 | 213 | ret = -ECHILD; |
0b728e19 | 214 | if (flags & LOOKUP_RCU) |
e2a6b952 | 215 | goto out; |
e7c0a167 | 216 | |
8cbdf1e6 | 217 | fc = get_fuse_conn(inode); |
b111c8c0 | 218 | req = fuse_get_req_nopages(fc); |
e2a6b952 | 219 | ret = PTR_ERR(req); |
ce1d5a49 | 220 | if (IS_ERR(req)) |
e2a6b952 | 221 | goto out; |
e5e5558e | 222 | |
07e77dca MS |
223 | forget = fuse_alloc_forget(); |
224 | if (!forget) { | |
2d51013e | 225 | fuse_put_request(fc, req); |
e2a6b952 MS |
226 | ret = -ENOMEM; |
227 | goto out; | |
2d51013e MS |
228 | } |
229 | ||
7dca9fd3 | 230 | attr_version = fuse_get_attr_version(fc); |
1fb69e78 | 231 | |
e956edd0 | 232 | parent = dget_parent(entry); |
c180eebe MS |
233 | fuse_lookup_init(fc, req, get_node_id(parent->d_inode), |
234 | &entry->d_name, &outarg); | |
b93f858a | 235 | fuse_request_send(fc, req); |
e956edd0 | 236 | dput(parent); |
e5e5558e | 237 | err = req->out.h.error; |
2d51013e | 238 | fuse_put_request(fc, req); |
50322fe7 MS |
239 | /* Zero nodeid is same as -ENOENT */ |
240 | if (!err && !outarg.nodeid) | |
241 | err = -ENOENT; | |
9e6268db | 242 | if (!err) { |
6314efee | 243 | fi = get_fuse_inode(inode); |
9e6268db | 244 | if (outarg.nodeid != get_node_id(inode)) { |
07e77dca | 245 | fuse_queue_forget(fc, forget, outarg.nodeid, 1); |
e2a6b952 | 246 | goto invalid; |
9e6268db | 247 | } |
8da5ff23 | 248 | spin_lock(&fc->lock); |
1729a16c | 249 | fi->nlookup++; |
8da5ff23 | 250 | spin_unlock(&fc->lock); |
9e6268db | 251 | } |
07e77dca | 252 | kfree(forget); |
9e6268db | 253 | if (err || (outarg.attr.mode ^ inode->i_mode) & S_IFMT) |
e2a6b952 | 254 | goto invalid; |
e5e5558e | 255 | |
1fb69e78 MS |
256 | fuse_change_attributes(inode, &outarg.attr, |
257 | entry_attr_timeout(&outarg), | |
258 | attr_version); | |
259 | fuse_change_entry_timeout(entry, &outarg); | |
28420dad | 260 | } else if (inode) { |
6314efee MS |
261 | fi = get_fuse_inode(inode); |
262 | if (flags & LOOKUP_RCU) { | |
263 | if (test_bit(FUSE_I_INIT_RDPLUS, &fi->state)) | |
264 | return -ECHILD; | |
265 | } else if (test_and_clear_bit(FUSE_I_INIT_RDPLUS, &fi->state)) { | |
28420dad MS |
266 | parent = dget_parent(entry); |
267 | fuse_advise_use_readdirplus(parent->d_inode); | |
268 | dput(parent); | |
269 | } | |
e5e5558e | 270 | } |
e2a6b952 MS |
271 | ret = 1; |
272 | out: | |
273 | return ret; | |
274 | ||
275 | invalid: | |
276 | ret = 0; | |
3c70b8ee MS |
277 | |
278 | if (!(flags & LOOKUP_RCU) && check_submounts_and_drop(entry) != 0) | |
46ea1562 | 279 | ret = 1; |
e2a6b952 | 280 | goto out; |
e5e5558e MS |
281 | } |
282 | ||
8bfc016d | 283 | static int invalid_nodeid(u64 nodeid) |
2827d0b2 MS |
284 | { |
285 | return !nodeid || nodeid == FUSE_ROOT_ID; | |
286 | } | |
287 | ||
4269590a | 288 | const struct dentry_operations fuse_dentry_operations = { |
e5e5558e MS |
289 | .d_revalidate = fuse_dentry_revalidate, |
290 | }; | |
291 | ||
a5bfffac | 292 | int fuse_valid_type(int m) |
39ee059a MS |
293 | { |
294 | return S_ISREG(m) || S_ISDIR(m) || S_ISLNK(m) || S_ISCHR(m) || | |
295 | S_ISBLK(m) || S_ISFIFO(m) || S_ISSOCK(m); | |
296 | } | |
297 | ||
c180eebe MS |
298 | int fuse_lookup_name(struct super_block *sb, u64 nodeid, struct qstr *name, |
299 | struct fuse_entry_out *outarg, struct inode **inode) | |
e5e5558e | 300 | { |
c180eebe | 301 | struct fuse_conn *fc = get_fuse_conn_super(sb); |
e5e5558e | 302 | struct fuse_req *req; |
07e77dca | 303 | struct fuse_forget_link *forget; |
1fb69e78 | 304 | u64 attr_version; |
c180eebe | 305 | int err; |
e5e5558e | 306 | |
c180eebe MS |
307 | *inode = NULL; |
308 | err = -ENAMETOOLONG; | |
309 | if (name->len > FUSE_NAME_MAX) | |
310 | goto out; | |
e5e5558e | 311 | |
b111c8c0 | 312 | req = fuse_get_req_nopages(fc); |
c180eebe | 313 | err = PTR_ERR(req); |
ce1d5a49 | 314 | if (IS_ERR(req)) |
c180eebe | 315 | goto out; |
e5e5558e | 316 | |
07e77dca MS |
317 | forget = fuse_alloc_forget(); |
318 | err = -ENOMEM; | |
319 | if (!forget) { | |
2d51013e | 320 | fuse_put_request(fc, req); |
c180eebe | 321 | goto out; |
2d51013e MS |
322 | } |
323 | ||
7dca9fd3 | 324 | attr_version = fuse_get_attr_version(fc); |
1fb69e78 | 325 | |
c180eebe | 326 | fuse_lookup_init(fc, req, nodeid, name, outarg); |
b93f858a | 327 | fuse_request_send(fc, req); |
e5e5558e | 328 | err = req->out.h.error; |
2d51013e | 329 | fuse_put_request(fc, req); |
50322fe7 | 330 | /* Zero nodeid is same as -ENOENT, but with valid timeout */ |
c180eebe MS |
331 | if (err || !outarg->nodeid) |
332 | goto out_put_forget; | |
333 | ||
334 | err = -EIO; | |
335 | if (!outarg->nodeid) | |
336 | goto out_put_forget; | |
337 | if (!fuse_valid_type(outarg->attr.mode)) | |
338 | goto out_put_forget; | |
339 | ||
340 | *inode = fuse_iget(sb, outarg->nodeid, outarg->generation, | |
341 | &outarg->attr, entry_attr_timeout(outarg), | |
342 | attr_version); | |
343 | err = -ENOMEM; | |
344 | if (!*inode) { | |
07e77dca | 345 | fuse_queue_forget(fc, forget, outarg->nodeid, 1); |
c180eebe | 346 | goto out; |
e5e5558e | 347 | } |
c180eebe MS |
348 | err = 0; |
349 | ||
350 | out_put_forget: | |
07e77dca | 351 | kfree(forget); |
c180eebe MS |
352 | out: |
353 | return err; | |
354 | } | |
355 | ||
356 | static struct dentry *fuse_lookup(struct inode *dir, struct dentry *entry, | |
00cd8dd3 | 357 | unsigned int flags) |
c180eebe MS |
358 | { |
359 | int err; | |
360 | struct fuse_entry_out outarg; | |
361 | struct inode *inode; | |
362 | struct dentry *newent; | |
c180eebe MS |
363 | bool outarg_valid = true; |
364 | ||
365 | err = fuse_lookup_name(dir->i_sb, get_node_id(dir), &entry->d_name, | |
366 | &outarg, &inode); | |
367 | if (err == -ENOENT) { | |
368 | outarg_valid = false; | |
369 | err = 0; | |
370 | } | |
371 | if (err) | |
372 | goto out_err; | |
373 | ||
374 | err = -EIO; | |
375 | if (inode && get_node_id(inode) == FUSE_ROOT_ID) | |
376 | goto out_iput; | |
e5e5558e | 377 | |
b70a80e7 | 378 | newent = d_materialise_unique(entry, inode); |
5835f339 MS |
379 | err = PTR_ERR(newent); |
380 | if (IS_ERR(newent)) | |
381 | goto out_err; | |
d2a85164 | 382 | |
0de6256d | 383 | entry = newent ? newent : entry; |
c180eebe | 384 | if (outarg_valid) |
1fb69e78 | 385 | fuse_change_entry_timeout(entry, &outarg); |
8cbdf1e6 MS |
386 | else |
387 | fuse_invalidate_entry_cache(entry); | |
c180eebe | 388 | |
4582a4ab | 389 | fuse_advise_use_readdirplus(dir); |
0de6256d | 390 | return newent; |
c180eebe MS |
391 | |
392 | out_iput: | |
393 | iput(inode); | |
394 | out_err: | |
395 | return ERR_PTR(err); | |
e5e5558e MS |
396 | } |
397 | ||
6f9f1180 MS |
398 | /* |
399 | * Atomic create+open operation | |
400 | * | |
401 | * If the filesystem doesn't support this, then fall back to separate | |
402 | * 'mknod' + 'open' requests. | |
403 | */ | |
d9585277 | 404 | static int fuse_create_open(struct inode *dir, struct dentry *entry, |
30d90494 | 405 | struct file *file, unsigned flags, |
d9585277 | 406 | umode_t mode, int *opened) |
fd72faac MS |
407 | { |
408 | int err; | |
409 | struct inode *inode; | |
410 | struct fuse_conn *fc = get_fuse_conn(dir); | |
411 | struct fuse_req *req; | |
07e77dca | 412 | struct fuse_forget_link *forget; |
e0a43ddc | 413 | struct fuse_create_in inarg; |
fd72faac MS |
414 | struct fuse_open_out outopen; |
415 | struct fuse_entry_out outentry; | |
fd72faac | 416 | struct fuse_file *ff; |
fd72faac | 417 | |
af109bca MS |
418 | /* Userspace expects S_IFREG in create mode */ |
419 | BUG_ON((mode & S_IFMT) != S_IFREG); | |
420 | ||
07e77dca | 421 | forget = fuse_alloc_forget(); |
c8ccbe03 | 422 | err = -ENOMEM; |
07e77dca | 423 | if (!forget) |
c8ccbe03 | 424 | goto out_err; |
51eb01e7 | 425 | |
b111c8c0 | 426 | req = fuse_get_req_nopages(fc); |
51eb01e7 | 427 | err = PTR_ERR(req); |
ce1d5a49 | 428 | if (IS_ERR(req)) |
51eb01e7 | 429 | goto out_put_forget_req; |
fd72faac | 430 | |
ce1d5a49 | 431 | err = -ENOMEM; |
acf99433 | 432 | ff = fuse_file_alloc(fc); |
fd72faac MS |
433 | if (!ff) |
434 | goto out_put_request; | |
435 | ||
e0a43ddc MS |
436 | if (!fc->dont_mask) |
437 | mode &= ~current_umask(); | |
438 | ||
fd72faac MS |
439 | flags &= ~O_NOCTTY; |
440 | memset(&inarg, 0, sizeof(inarg)); | |
0e9663ee | 441 | memset(&outentry, 0, sizeof(outentry)); |
fd72faac MS |
442 | inarg.flags = flags; |
443 | inarg.mode = mode; | |
e0a43ddc | 444 | inarg.umask = current_umask(); |
fd72faac MS |
445 | req->in.h.opcode = FUSE_CREATE; |
446 | req->in.h.nodeid = get_node_id(dir); | |
fd72faac | 447 | req->in.numargs = 2; |
e0a43ddc MS |
448 | req->in.args[0].size = fc->minor < 12 ? sizeof(struct fuse_open_in) : |
449 | sizeof(inarg); | |
fd72faac MS |
450 | req->in.args[0].value = &inarg; |
451 | req->in.args[1].size = entry->d_name.len + 1; | |
452 | req->in.args[1].value = entry->d_name.name; | |
453 | req->out.numargs = 2; | |
0e9663ee MS |
454 | if (fc->minor < 9) |
455 | req->out.args[0].size = FUSE_COMPAT_ENTRY_OUT_SIZE; | |
456 | else | |
457 | req->out.args[0].size = sizeof(outentry); | |
fd72faac MS |
458 | req->out.args[0].value = &outentry; |
459 | req->out.args[1].size = sizeof(outopen); | |
460 | req->out.args[1].value = &outopen; | |
b93f858a | 461 | fuse_request_send(fc, req); |
fd72faac | 462 | err = req->out.h.error; |
c8ccbe03 | 463 | if (err) |
fd72faac | 464 | goto out_free_ff; |
fd72faac MS |
465 | |
466 | err = -EIO; | |
2827d0b2 | 467 | if (!S_ISREG(outentry.attr.mode) || invalid_nodeid(outentry.nodeid)) |
fd72faac MS |
468 | goto out_free_ff; |
469 | ||
51eb01e7 | 470 | fuse_put_request(fc, req); |
c7b7143c MS |
471 | ff->fh = outopen.fh; |
472 | ff->nodeid = outentry.nodeid; | |
473 | ff->open_flags = outopen.open_flags; | |
fd72faac | 474 | inode = fuse_iget(dir->i_sb, outentry.nodeid, outentry.generation, |
1fb69e78 | 475 | &outentry.attr, entry_attr_timeout(&outentry), 0); |
fd72faac MS |
476 | if (!inode) { |
477 | flags &= ~(O_CREAT | O_EXCL | O_TRUNC); | |
8b0797a4 | 478 | fuse_sync_release(ff, flags); |
07e77dca | 479 | fuse_queue_forget(fc, forget, outentry.nodeid, 1); |
c8ccbe03 MS |
480 | err = -ENOMEM; |
481 | goto out_err; | |
fd72faac | 482 | } |
07e77dca | 483 | kfree(forget); |
fd72faac | 484 | d_instantiate(entry, inode); |
1fb69e78 | 485 | fuse_change_entry_timeout(entry, &outentry); |
0952b2a4 | 486 | fuse_invalidate_attr(dir); |
30d90494 AV |
487 | err = finish_open(file, entry, generic_file_open, opened); |
488 | if (err) { | |
8b0797a4 | 489 | fuse_sync_release(ff, flags); |
c8ccbe03 MS |
490 | } else { |
491 | file->private_data = fuse_file_get(ff); | |
492 | fuse_finish_open(inode, file); | |
fd72faac | 493 | } |
d9585277 | 494 | return err; |
fd72faac | 495 | |
c8ccbe03 | 496 | out_free_ff: |
fd72faac | 497 | fuse_file_free(ff); |
c8ccbe03 | 498 | out_put_request: |
fd72faac | 499 | fuse_put_request(fc, req); |
c8ccbe03 | 500 | out_put_forget_req: |
07e77dca | 501 | kfree(forget); |
c8ccbe03 | 502 | out_err: |
d9585277 | 503 | return err; |
c8ccbe03 MS |
504 | } |
505 | ||
506 | static int fuse_mknod(struct inode *, struct dentry *, umode_t, dev_t); | |
d9585277 | 507 | static int fuse_atomic_open(struct inode *dir, struct dentry *entry, |
30d90494 | 508 | struct file *file, unsigned flags, |
d9585277 | 509 | umode_t mode, int *opened) |
c8ccbe03 MS |
510 | { |
511 | int err; | |
512 | struct fuse_conn *fc = get_fuse_conn(dir); | |
c8ccbe03 MS |
513 | struct dentry *res = NULL; |
514 | ||
515 | if (d_unhashed(entry)) { | |
00cd8dd3 | 516 | res = fuse_lookup(dir, entry, 0); |
c8ccbe03 | 517 | if (IS_ERR(res)) |
d9585277 | 518 | return PTR_ERR(res); |
c8ccbe03 MS |
519 | |
520 | if (res) | |
521 | entry = res; | |
522 | } | |
523 | ||
524 | if (!(flags & O_CREAT) || entry->d_inode) | |
525 | goto no_open; | |
526 | ||
527 | /* Only creates */ | |
47237687 | 528 | *opened |= FILE_CREATED; |
c8ccbe03 MS |
529 | |
530 | if (fc->no_create) | |
531 | goto mknod; | |
532 | ||
30d90494 | 533 | err = fuse_create_open(dir, entry, file, flags, mode, opened); |
d9585277 | 534 | if (err == -ENOSYS) { |
c8ccbe03 MS |
535 | fc->no_create = 1; |
536 | goto mknod; | |
537 | } | |
538 | out_dput: | |
539 | dput(res); | |
d9585277 | 540 | return err; |
c8ccbe03 MS |
541 | |
542 | mknod: | |
543 | err = fuse_mknod(dir, entry, mode, 0); | |
d9585277 | 544 | if (err) |
c8ccbe03 | 545 | goto out_dput; |
c8ccbe03 | 546 | no_open: |
e45198a6 | 547 | return finish_no_open(file, res); |
fd72faac MS |
548 | } |
549 | ||
6f9f1180 MS |
550 | /* |
551 | * Code shared between mknod, mkdir, symlink and link | |
552 | */ | |
9e6268db MS |
553 | static int create_new_entry(struct fuse_conn *fc, struct fuse_req *req, |
554 | struct inode *dir, struct dentry *entry, | |
541af6a0 | 555 | umode_t mode) |
9e6268db MS |
556 | { |
557 | struct fuse_entry_out outarg; | |
558 | struct inode *inode; | |
9e6268db | 559 | int err; |
07e77dca | 560 | struct fuse_forget_link *forget; |
2d51013e | 561 | |
07e77dca MS |
562 | forget = fuse_alloc_forget(); |
563 | if (!forget) { | |
2d51013e | 564 | fuse_put_request(fc, req); |
07e77dca | 565 | return -ENOMEM; |
2d51013e | 566 | } |
9e6268db | 567 | |
0e9663ee | 568 | memset(&outarg, 0, sizeof(outarg)); |
9e6268db | 569 | req->in.h.nodeid = get_node_id(dir); |
9e6268db | 570 | req->out.numargs = 1; |
0e9663ee MS |
571 | if (fc->minor < 9) |
572 | req->out.args[0].size = FUSE_COMPAT_ENTRY_OUT_SIZE; | |
573 | else | |
574 | req->out.args[0].size = sizeof(outarg); | |
9e6268db | 575 | req->out.args[0].value = &outarg; |
b93f858a | 576 | fuse_request_send(fc, req); |
9e6268db | 577 | err = req->out.h.error; |
2d51013e MS |
578 | fuse_put_request(fc, req); |
579 | if (err) | |
580 | goto out_put_forget_req; | |
581 | ||
39ee059a MS |
582 | err = -EIO; |
583 | if (invalid_nodeid(outarg.nodeid)) | |
2d51013e | 584 | goto out_put_forget_req; |
39ee059a MS |
585 | |
586 | if ((outarg.attr.mode ^ mode) & S_IFMT) | |
2d51013e | 587 | goto out_put_forget_req; |
39ee059a | 588 | |
9e6268db | 589 | inode = fuse_iget(dir->i_sb, outarg.nodeid, outarg.generation, |
1fb69e78 | 590 | &outarg.attr, entry_attr_timeout(&outarg), 0); |
9e6268db | 591 | if (!inode) { |
07e77dca | 592 | fuse_queue_forget(fc, forget, outarg.nodeid, 1); |
9e6268db MS |
593 | return -ENOMEM; |
594 | } | |
07e77dca | 595 | kfree(forget); |
9e6268db | 596 | |
b70a80e7 MS |
597 | err = d_instantiate_no_diralias(entry, inode); |
598 | if (err) | |
599 | return err; | |
9e6268db | 600 | |
1fb69e78 | 601 | fuse_change_entry_timeout(entry, &outarg); |
9e6268db MS |
602 | fuse_invalidate_attr(dir); |
603 | return 0; | |
39ee059a | 604 | |
2d51013e | 605 | out_put_forget_req: |
07e77dca | 606 | kfree(forget); |
39ee059a | 607 | return err; |
9e6268db MS |
608 | } |
609 | ||
1a67aafb | 610 | static int fuse_mknod(struct inode *dir, struct dentry *entry, umode_t mode, |
9e6268db MS |
611 | dev_t rdev) |
612 | { | |
613 | struct fuse_mknod_in inarg; | |
614 | struct fuse_conn *fc = get_fuse_conn(dir); | |
b111c8c0 | 615 | struct fuse_req *req = fuse_get_req_nopages(fc); |
ce1d5a49 MS |
616 | if (IS_ERR(req)) |
617 | return PTR_ERR(req); | |
9e6268db | 618 | |
e0a43ddc MS |
619 | if (!fc->dont_mask) |
620 | mode &= ~current_umask(); | |
621 | ||
9e6268db MS |
622 | memset(&inarg, 0, sizeof(inarg)); |
623 | inarg.mode = mode; | |
624 | inarg.rdev = new_encode_dev(rdev); | |
e0a43ddc | 625 | inarg.umask = current_umask(); |
9e6268db MS |
626 | req->in.h.opcode = FUSE_MKNOD; |
627 | req->in.numargs = 2; | |
e0a43ddc MS |
628 | req->in.args[0].size = fc->minor < 12 ? FUSE_COMPAT_MKNOD_IN_SIZE : |
629 | sizeof(inarg); | |
9e6268db MS |
630 | req->in.args[0].value = &inarg; |
631 | req->in.args[1].size = entry->d_name.len + 1; | |
632 | req->in.args[1].value = entry->d_name.name; | |
633 | return create_new_entry(fc, req, dir, entry, mode); | |
634 | } | |
635 | ||
4acdaf27 | 636 | static int fuse_create(struct inode *dir, struct dentry *entry, umode_t mode, |
ebfc3b49 | 637 | bool excl) |
9e6268db MS |
638 | { |
639 | return fuse_mknod(dir, entry, mode, 0); | |
640 | } | |
641 | ||
18bb1db3 | 642 | static int fuse_mkdir(struct inode *dir, struct dentry *entry, umode_t mode) |
9e6268db MS |
643 | { |
644 | struct fuse_mkdir_in inarg; | |
645 | struct fuse_conn *fc = get_fuse_conn(dir); | |
b111c8c0 | 646 | struct fuse_req *req = fuse_get_req_nopages(fc); |
ce1d5a49 MS |
647 | if (IS_ERR(req)) |
648 | return PTR_ERR(req); | |
9e6268db | 649 | |
e0a43ddc MS |
650 | if (!fc->dont_mask) |
651 | mode &= ~current_umask(); | |
652 | ||
9e6268db MS |
653 | memset(&inarg, 0, sizeof(inarg)); |
654 | inarg.mode = mode; | |
e0a43ddc | 655 | inarg.umask = current_umask(); |
9e6268db MS |
656 | req->in.h.opcode = FUSE_MKDIR; |
657 | req->in.numargs = 2; | |
658 | req->in.args[0].size = sizeof(inarg); | |
659 | req->in.args[0].value = &inarg; | |
660 | req->in.args[1].size = entry->d_name.len + 1; | |
661 | req->in.args[1].value = entry->d_name.name; | |
662 | return create_new_entry(fc, req, dir, entry, S_IFDIR); | |
663 | } | |
664 | ||
665 | static int fuse_symlink(struct inode *dir, struct dentry *entry, | |
666 | const char *link) | |
667 | { | |
668 | struct fuse_conn *fc = get_fuse_conn(dir); | |
669 | unsigned len = strlen(link) + 1; | |
b111c8c0 | 670 | struct fuse_req *req = fuse_get_req_nopages(fc); |
ce1d5a49 MS |
671 | if (IS_ERR(req)) |
672 | return PTR_ERR(req); | |
9e6268db MS |
673 | |
674 | req->in.h.opcode = FUSE_SYMLINK; | |
675 | req->in.numargs = 2; | |
676 | req->in.args[0].size = entry->d_name.len + 1; | |
677 | req->in.args[0].value = entry->d_name.name; | |
678 | req->in.args[1].size = len; | |
679 | req->in.args[1].value = link; | |
680 | return create_new_entry(fc, req, dir, entry, S_IFLNK); | |
681 | } | |
682 | ||
31f3267b MP |
683 | static inline void fuse_update_ctime(struct inode *inode) |
684 | { | |
685 | if (!IS_NOCMTIME(inode)) { | |
686 | inode->i_ctime = current_fs_time(inode->i_sb); | |
687 | mark_inode_dirty_sync(inode); | |
688 | } | |
689 | } | |
690 | ||
9e6268db MS |
691 | static int fuse_unlink(struct inode *dir, struct dentry *entry) |
692 | { | |
693 | int err; | |
694 | struct fuse_conn *fc = get_fuse_conn(dir); | |
b111c8c0 | 695 | struct fuse_req *req = fuse_get_req_nopages(fc); |
ce1d5a49 MS |
696 | if (IS_ERR(req)) |
697 | return PTR_ERR(req); | |
9e6268db MS |
698 | |
699 | req->in.h.opcode = FUSE_UNLINK; | |
700 | req->in.h.nodeid = get_node_id(dir); | |
9e6268db MS |
701 | req->in.numargs = 1; |
702 | req->in.args[0].size = entry->d_name.len + 1; | |
703 | req->in.args[0].value = entry->d_name.name; | |
b93f858a | 704 | fuse_request_send(fc, req); |
9e6268db MS |
705 | err = req->out.h.error; |
706 | fuse_put_request(fc, req); | |
707 | if (!err) { | |
708 | struct inode *inode = entry->d_inode; | |
ac45d613 | 709 | struct fuse_inode *fi = get_fuse_inode(inode); |
9e6268db | 710 | |
ac45d613 MS |
711 | spin_lock(&fc->lock); |
712 | fi->attr_version = ++fc->attr_version; | |
dfca7ceb MS |
713 | /* |
714 | * If i_nlink == 0 then unlink doesn't make sense, yet this can | |
715 | * happen if userspace filesystem is careless. It would be | |
716 | * difficult to enforce correct nlink usage so just ignore this | |
717 | * condition here | |
718 | */ | |
719 | if (inode->i_nlink > 0) | |
720 | drop_nlink(inode); | |
ac45d613 | 721 | spin_unlock(&fc->lock); |
9e6268db MS |
722 | fuse_invalidate_attr(inode); |
723 | fuse_invalidate_attr(dir); | |
8cbdf1e6 | 724 | fuse_invalidate_entry_cache(entry); |
31f3267b | 725 | fuse_update_ctime(inode); |
9e6268db MS |
726 | } else if (err == -EINTR) |
727 | fuse_invalidate_entry(entry); | |
728 | return err; | |
729 | } | |
730 | ||
731 | static int fuse_rmdir(struct inode *dir, struct dentry *entry) | |
732 | { | |
733 | int err; | |
734 | struct fuse_conn *fc = get_fuse_conn(dir); | |
b111c8c0 | 735 | struct fuse_req *req = fuse_get_req_nopages(fc); |
ce1d5a49 MS |
736 | if (IS_ERR(req)) |
737 | return PTR_ERR(req); | |
9e6268db MS |
738 | |
739 | req->in.h.opcode = FUSE_RMDIR; | |
740 | req->in.h.nodeid = get_node_id(dir); | |
9e6268db MS |
741 | req->in.numargs = 1; |
742 | req->in.args[0].size = entry->d_name.len + 1; | |
743 | req->in.args[0].value = entry->d_name.name; | |
b93f858a | 744 | fuse_request_send(fc, req); |
9e6268db MS |
745 | err = req->out.h.error; |
746 | fuse_put_request(fc, req); | |
747 | if (!err) { | |
ce71ec36 | 748 | clear_nlink(entry->d_inode); |
9e6268db | 749 | fuse_invalidate_attr(dir); |
8cbdf1e6 | 750 | fuse_invalidate_entry_cache(entry); |
9e6268db MS |
751 | } else if (err == -EINTR) |
752 | fuse_invalidate_entry(entry); | |
753 | return err; | |
754 | } | |
755 | ||
1560c974 MS |
756 | static int fuse_rename_common(struct inode *olddir, struct dentry *oldent, |
757 | struct inode *newdir, struct dentry *newent, | |
758 | unsigned int flags, int opcode, size_t argsize) | |
9e6268db MS |
759 | { |
760 | int err; | |
1560c974 | 761 | struct fuse_rename2_in inarg; |
9e6268db | 762 | struct fuse_conn *fc = get_fuse_conn(olddir); |
1560c974 | 763 | struct fuse_req *req; |
e4eaac06 | 764 | |
1560c974 | 765 | req = fuse_get_req_nopages(fc); |
ce1d5a49 MS |
766 | if (IS_ERR(req)) |
767 | return PTR_ERR(req); | |
9e6268db | 768 | |
1560c974 | 769 | memset(&inarg, 0, argsize); |
9e6268db | 770 | inarg.newdir = get_node_id(newdir); |
1560c974 MS |
771 | inarg.flags = flags; |
772 | req->in.h.opcode = opcode; | |
9e6268db | 773 | req->in.h.nodeid = get_node_id(olddir); |
9e6268db | 774 | req->in.numargs = 3; |
1560c974 | 775 | req->in.args[0].size = argsize; |
9e6268db MS |
776 | req->in.args[0].value = &inarg; |
777 | req->in.args[1].size = oldent->d_name.len + 1; | |
778 | req->in.args[1].value = oldent->d_name.name; | |
779 | req->in.args[2].size = newent->d_name.len + 1; | |
780 | req->in.args[2].value = newent->d_name.name; | |
b93f858a | 781 | fuse_request_send(fc, req); |
9e6268db MS |
782 | err = req->out.h.error; |
783 | fuse_put_request(fc, req); | |
784 | if (!err) { | |
08b63307 MS |
785 | /* ctime changes */ |
786 | fuse_invalidate_attr(oldent->d_inode); | |
31f3267b | 787 | fuse_update_ctime(oldent->d_inode); |
08b63307 | 788 | |
1560c974 MS |
789 | if (flags & RENAME_EXCHANGE) { |
790 | fuse_invalidate_attr(newent->d_inode); | |
791 | fuse_update_ctime(newent->d_inode); | |
792 | } | |
793 | ||
9e6268db MS |
794 | fuse_invalidate_attr(olddir); |
795 | if (olddir != newdir) | |
796 | fuse_invalidate_attr(newdir); | |
8cbdf1e6 MS |
797 | |
798 | /* newent will end up negative */ | |
1560c974 | 799 | if (!(flags & RENAME_EXCHANGE) && newent->d_inode) { |
5219f346 | 800 | fuse_invalidate_attr(newent->d_inode); |
8cbdf1e6 | 801 | fuse_invalidate_entry_cache(newent); |
31f3267b | 802 | fuse_update_ctime(newent->d_inode); |
5219f346 | 803 | } |
9e6268db MS |
804 | } else if (err == -EINTR) { |
805 | /* If request was interrupted, DEITY only knows if the | |
806 | rename actually took place. If the invalidation | |
807 | fails (e.g. some process has CWD under the renamed | |
808 | directory), then there can be inconsistency between | |
809 | the dcache and the real filesystem. Tough luck. */ | |
810 | fuse_invalidate_entry(oldent); | |
811 | if (newent->d_inode) | |
812 | fuse_invalidate_entry(newent); | |
813 | } | |
814 | ||
815 | return err; | |
816 | } | |
817 | ||
1560c974 MS |
818 | static int fuse_rename2(struct inode *olddir, struct dentry *oldent, |
819 | struct inode *newdir, struct dentry *newent, | |
820 | unsigned int flags) | |
821 | { | |
822 | struct fuse_conn *fc = get_fuse_conn(olddir); | |
823 | int err; | |
824 | ||
825 | if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE)) | |
826 | return -EINVAL; | |
827 | ||
4237ba43 MS |
828 | if (flags) { |
829 | if (fc->no_rename2 || fc->minor < 23) | |
830 | return -EINVAL; | |
1560c974 | 831 | |
4237ba43 MS |
832 | err = fuse_rename_common(olddir, oldent, newdir, newent, flags, |
833 | FUSE_RENAME2, | |
834 | sizeof(struct fuse_rename2_in)); | |
835 | if (err == -ENOSYS) { | |
836 | fc->no_rename2 = 1; | |
837 | err = -EINVAL; | |
838 | } | |
839 | } else { | |
840 | err = fuse_rename_common(olddir, oldent, newdir, newent, 0, | |
841 | FUSE_RENAME, | |
842 | sizeof(struct fuse_rename_in)); | |
1560c974 | 843 | } |
4237ba43 | 844 | |
1560c974 | 845 | return err; |
4237ba43 | 846 | } |
1560c974 | 847 | |
9e6268db MS |
848 | static int fuse_link(struct dentry *entry, struct inode *newdir, |
849 | struct dentry *newent) | |
850 | { | |
851 | int err; | |
852 | struct fuse_link_in inarg; | |
853 | struct inode *inode = entry->d_inode; | |
854 | struct fuse_conn *fc = get_fuse_conn(inode); | |
b111c8c0 | 855 | struct fuse_req *req = fuse_get_req_nopages(fc); |
ce1d5a49 MS |
856 | if (IS_ERR(req)) |
857 | return PTR_ERR(req); | |
9e6268db MS |
858 | |
859 | memset(&inarg, 0, sizeof(inarg)); | |
860 | inarg.oldnodeid = get_node_id(inode); | |
861 | req->in.h.opcode = FUSE_LINK; | |
9e6268db MS |
862 | req->in.numargs = 2; |
863 | req->in.args[0].size = sizeof(inarg); | |
864 | req->in.args[0].value = &inarg; | |
865 | req->in.args[1].size = newent->d_name.len + 1; | |
866 | req->in.args[1].value = newent->d_name.name; | |
867 | err = create_new_entry(fc, req, newdir, newent, inode->i_mode); | |
868 | /* Contrary to "normal" filesystems it can happen that link | |
869 | makes two "logical" inodes point to the same "physical" | |
870 | inode. We invalidate the attributes of the old one, so it | |
871 | will reflect changes in the backing inode (link count, | |
872 | etc.) | |
873 | */ | |
ac45d613 MS |
874 | if (!err) { |
875 | struct fuse_inode *fi = get_fuse_inode(inode); | |
876 | ||
877 | spin_lock(&fc->lock); | |
878 | fi->attr_version = ++fc->attr_version; | |
879 | inc_nlink(inode); | |
880 | spin_unlock(&fc->lock); | |
9e6268db | 881 | fuse_invalidate_attr(inode); |
31f3267b | 882 | fuse_update_ctime(inode); |
ac45d613 MS |
883 | } else if (err == -EINTR) { |
884 | fuse_invalidate_attr(inode); | |
885 | } | |
9e6268db MS |
886 | return err; |
887 | } | |
888 | ||
1fb69e78 MS |
889 | static void fuse_fillattr(struct inode *inode, struct fuse_attr *attr, |
890 | struct kstat *stat) | |
891 | { | |
203627bb | 892 | unsigned int blkbits; |
8373200b PE |
893 | struct fuse_conn *fc = get_fuse_conn(inode); |
894 | ||
895 | /* see the comment in fuse_change_attributes() */ | |
b0aa7606 | 896 | if (fc->writeback_cache && S_ISREG(inode->i_mode)) { |
8373200b | 897 | attr->size = i_size_read(inode); |
b0aa7606 MP |
898 | attr->mtime = inode->i_mtime.tv_sec; |
899 | attr->mtimensec = inode->i_mtime.tv_nsec; | |
31f3267b MP |
900 | attr->ctime = inode->i_ctime.tv_sec; |
901 | attr->ctimensec = inode->i_ctime.tv_nsec; | |
b0aa7606 | 902 | } |
203627bb | 903 | |
1fb69e78 MS |
904 | stat->dev = inode->i_sb->s_dev; |
905 | stat->ino = attr->ino; | |
906 | stat->mode = (inode->i_mode & S_IFMT) | (attr->mode & 07777); | |
907 | stat->nlink = attr->nlink; | |
499dcf20 EB |
908 | stat->uid = make_kuid(&init_user_ns, attr->uid); |
909 | stat->gid = make_kgid(&init_user_ns, attr->gid); | |
1fb69e78 MS |
910 | stat->rdev = inode->i_rdev; |
911 | stat->atime.tv_sec = attr->atime; | |
912 | stat->atime.tv_nsec = attr->atimensec; | |
913 | stat->mtime.tv_sec = attr->mtime; | |
914 | stat->mtime.tv_nsec = attr->mtimensec; | |
915 | stat->ctime.tv_sec = attr->ctime; | |
916 | stat->ctime.tv_nsec = attr->ctimensec; | |
917 | stat->size = attr->size; | |
918 | stat->blocks = attr->blocks; | |
203627bb MS |
919 | |
920 | if (attr->blksize != 0) | |
921 | blkbits = ilog2(attr->blksize); | |
922 | else | |
923 | blkbits = inode->i_sb->s_blocksize_bits; | |
924 | ||
925 | stat->blksize = 1 << blkbits; | |
1fb69e78 MS |
926 | } |
927 | ||
c79e322f MS |
928 | static int fuse_do_getattr(struct inode *inode, struct kstat *stat, |
929 | struct file *file) | |
e5e5558e MS |
930 | { |
931 | int err; | |
c79e322f MS |
932 | struct fuse_getattr_in inarg; |
933 | struct fuse_attr_out outarg; | |
e5e5558e | 934 | struct fuse_conn *fc = get_fuse_conn(inode); |
1fb69e78 MS |
935 | struct fuse_req *req; |
936 | u64 attr_version; | |
937 | ||
b111c8c0 | 938 | req = fuse_get_req_nopages(fc); |
ce1d5a49 MS |
939 | if (IS_ERR(req)) |
940 | return PTR_ERR(req); | |
e5e5558e | 941 | |
7dca9fd3 | 942 | attr_version = fuse_get_attr_version(fc); |
1fb69e78 | 943 | |
c79e322f | 944 | memset(&inarg, 0, sizeof(inarg)); |
0e9663ee | 945 | memset(&outarg, 0, sizeof(outarg)); |
c79e322f MS |
946 | /* Directories have separate file-handle space */ |
947 | if (file && S_ISREG(inode->i_mode)) { | |
948 | struct fuse_file *ff = file->private_data; | |
949 | ||
950 | inarg.getattr_flags |= FUSE_GETATTR_FH; | |
951 | inarg.fh = ff->fh; | |
952 | } | |
e5e5558e MS |
953 | req->in.h.opcode = FUSE_GETATTR; |
954 | req->in.h.nodeid = get_node_id(inode); | |
c79e322f MS |
955 | req->in.numargs = 1; |
956 | req->in.args[0].size = sizeof(inarg); | |
957 | req->in.args[0].value = &inarg; | |
e5e5558e | 958 | req->out.numargs = 1; |
0e9663ee MS |
959 | if (fc->minor < 9) |
960 | req->out.args[0].size = FUSE_COMPAT_ATTR_OUT_SIZE; | |
961 | else | |
962 | req->out.args[0].size = sizeof(outarg); | |
c79e322f | 963 | req->out.args[0].value = &outarg; |
b93f858a | 964 | fuse_request_send(fc, req); |
e5e5558e MS |
965 | err = req->out.h.error; |
966 | fuse_put_request(fc, req); | |
967 | if (!err) { | |
c79e322f | 968 | if ((inode->i_mode ^ outarg.attr.mode) & S_IFMT) { |
e5e5558e MS |
969 | make_bad_inode(inode); |
970 | err = -EIO; | |
971 | } else { | |
c79e322f MS |
972 | fuse_change_attributes(inode, &outarg.attr, |
973 | attr_timeout(&outarg), | |
1fb69e78 MS |
974 | attr_version); |
975 | if (stat) | |
c79e322f | 976 | fuse_fillattr(inode, &outarg.attr, stat); |
e5e5558e MS |
977 | } |
978 | } | |
979 | return err; | |
980 | } | |
981 | ||
bcb4be80 MS |
982 | int fuse_update_attributes(struct inode *inode, struct kstat *stat, |
983 | struct file *file, bool *refreshed) | |
984 | { | |
985 | struct fuse_inode *fi = get_fuse_inode(inode); | |
986 | int err; | |
987 | bool r; | |
988 | ||
126b9d43 | 989 | if (time_before64(fi->i_time, get_jiffies_64())) { |
bcb4be80 MS |
990 | r = true; |
991 | err = fuse_do_getattr(inode, stat, file); | |
992 | } else { | |
993 | r = false; | |
994 | err = 0; | |
995 | if (stat) { | |
996 | generic_fillattr(inode, stat); | |
997 | stat->mode = fi->orig_i_mode; | |
45c72cd7 | 998 | stat->ino = fi->orig_ino; |
bcb4be80 MS |
999 | } |
1000 | } | |
1001 | ||
1002 | if (refreshed != NULL) | |
1003 | *refreshed = r; | |
1004 | ||
1005 | return err; | |
1006 | } | |
1007 | ||
3b463ae0 | 1008 | int fuse_reverse_inval_entry(struct super_block *sb, u64 parent_nodeid, |
451d0f59 | 1009 | u64 child_nodeid, struct qstr *name) |
3b463ae0 JM |
1010 | { |
1011 | int err = -ENOTDIR; | |
1012 | struct inode *parent; | |
1013 | struct dentry *dir; | |
1014 | struct dentry *entry; | |
1015 | ||
1016 | parent = ilookup5(sb, parent_nodeid, fuse_inode_eq, &parent_nodeid); | |
1017 | if (!parent) | |
1018 | return -ENOENT; | |
1019 | ||
1020 | mutex_lock(&parent->i_mutex); | |
1021 | if (!S_ISDIR(parent->i_mode)) | |
1022 | goto unlock; | |
1023 | ||
1024 | err = -ENOENT; | |
1025 | dir = d_find_alias(parent); | |
1026 | if (!dir) | |
1027 | goto unlock; | |
1028 | ||
1029 | entry = d_lookup(dir, name); | |
1030 | dput(dir); | |
1031 | if (!entry) | |
1032 | goto unlock; | |
1033 | ||
1034 | fuse_invalidate_attr(parent); | |
1035 | fuse_invalidate_entry(entry); | |
451d0f59 JM |
1036 | |
1037 | if (child_nodeid != 0 && entry->d_inode) { | |
1038 | mutex_lock(&entry->d_inode->i_mutex); | |
1039 | if (get_node_id(entry->d_inode) != child_nodeid) { | |
1040 | err = -ENOENT; | |
1041 | goto badentry; | |
1042 | } | |
1043 | if (d_mountpoint(entry)) { | |
1044 | err = -EBUSY; | |
1045 | goto badentry; | |
1046 | } | |
1047 | if (S_ISDIR(entry->d_inode->i_mode)) { | |
1048 | shrink_dcache_parent(entry); | |
1049 | if (!simple_empty(entry)) { | |
1050 | err = -ENOTEMPTY; | |
1051 | goto badentry; | |
1052 | } | |
1053 | entry->d_inode->i_flags |= S_DEAD; | |
1054 | } | |
1055 | dont_mount(entry); | |
1056 | clear_nlink(entry->d_inode); | |
1057 | err = 0; | |
1058 | badentry: | |
1059 | mutex_unlock(&entry->d_inode->i_mutex); | |
1060 | if (!err) | |
1061 | d_delete(entry); | |
1062 | } else { | |
1063 | err = 0; | |
1064 | } | |
3b463ae0 | 1065 | dput(entry); |
3b463ae0 JM |
1066 | |
1067 | unlock: | |
1068 | mutex_unlock(&parent->i_mutex); | |
1069 | iput(parent); | |
1070 | return err; | |
1071 | } | |
1072 | ||
87729a55 MS |
1073 | /* |
1074 | * Calling into a user-controlled filesystem gives the filesystem | |
c2132c1b | 1075 | * daemon ptrace-like capabilities over the current process. This |
87729a55 MS |
1076 | * means, that the filesystem daemon is able to record the exact |
1077 | * filesystem operations performed, and can also control the behavior | |
1078 | * of the requester process in otherwise impossible ways. For example | |
1079 | * it can delay the operation for arbitrary length of time allowing | |
1080 | * DoS against the requester. | |
1081 | * | |
1082 | * For this reason only those processes can call into the filesystem, | |
1083 | * for which the owner of the mount has ptrace privilege. This | |
1084 | * excludes processes started by other users, suid or sgid processes. | |
1085 | */ | |
c2132c1b | 1086 | int fuse_allow_current_process(struct fuse_conn *fc) |
87729a55 | 1087 | { |
c69e8d9c | 1088 | const struct cred *cred; |
87729a55 | 1089 | |
c69e8d9c | 1090 | if (fc->flags & FUSE_ALLOW_OTHER) |
87729a55 MS |
1091 | return 1; |
1092 | ||
c2132c1b | 1093 | cred = current_cred(); |
499dcf20 EB |
1094 | if (uid_eq(cred->euid, fc->user_id) && |
1095 | uid_eq(cred->suid, fc->user_id) && | |
1096 | uid_eq(cred->uid, fc->user_id) && | |
1097 | gid_eq(cred->egid, fc->group_id) && | |
1098 | gid_eq(cred->sgid, fc->group_id) && | |
1099 | gid_eq(cred->gid, fc->group_id)) | |
c2132c1b | 1100 | return 1; |
c69e8d9c | 1101 | |
c2132c1b | 1102 | return 0; |
87729a55 MS |
1103 | } |
1104 | ||
31d40d74 MS |
1105 | static int fuse_access(struct inode *inode, int mask) |
1106 | { | |
1107 | struct fuse_conn *fc = get_fuse_conn(inode); | |
1108 | struct fuse_req *req; | |
1109 | struct fuse_access_in inarg; | |
1110 | int err; | |
1111 | ||
698fa1d1 MS |
1112 | BUG_ON(mask & MAY_NOT_BLOCK); |
1113 | ||
31d40d74 MS |
1114 | if (fc->no_access) |
1115 | return 0; | |
1116 | ||
b111c8c0 | 1117 | req = fuse_get_req_nopages(fc); |
ce1d5a49 MS |
1118 | if (IS_ERR(req)) |
1119 | return PTR_ERR(req); | |
31d40d74 MS |
1120 | |
1121 | memset(&inarg, 0, sizeof(inarg)); | |
e6305c43 | 1122 | inarg.mask = mask & (MAY_READ | MAY_WRITE | MAY_EXEC); |
31d40d74 MS |
1123 | req->in.h.opcode = FUSE_ACCESS; |
1124 | req->in.h.nodeid = get_node_id(inode); | |
31d40d74 MS |
1125 | req->in.numargs = 1; |
1126 | req->in.args[0].size = sizeof(inarg); | |
1127 | req->in.args[0].value = &inarg; | |
b93f858a | 1128 | fuse_request_send(fc, req); |
31d40d74 MS |
1129 | err = req->out.h.error; |
1130 | fuse_put_request(fc, req); | |
1131 | if (err == -ENOSYS) { | |
1132 | fc->no_access = 1; | |
1133 | err = 0; | |
1134 | } | |
1135 | return err; | |
1136 | } | |
1137 | ||
10556cb2 | 1138 | static int fuse_perm_getattr(struct inode *inode, int mask) |
19690ddb | 1139 | { |
10556cb2 | 1140 | if (mask & MAY_NOT_BLOCK) |
19690ddb MS |
1141 | return -ECHILD; |
1142 | ||
1143 | return fuse_do_getattr(inode, NULL, NULL); | |
1144 | } | |
1145 | ||
6f9f1180 MS |
1146 | /* |
1147 | * Check permission. The two basic access models of FUSE are: | |
1148 | * | |
1149 | * 1) Local access checking ('default_permissions' mount option) based | |
1150 | * on file mode. This is the plain old disk filesystem permission | |
1151 | * modell. | |
1152 | * | |
1153 | * 2) "Remote" access checking, where server is responsible for | |
1154 | * checking permission in each inode operation. An exception to this | |
1155 | * is if ->permission() was invoked from sys_access() in which case an | |
1156 | * access request is sent. Execute permission is still checked | |
1157 | * locally based on file mode. | |
1158 | */ | |
10556cb2 | 1159 | static int fuse_permission(struct inode *inode, int mask) |
e5e5558e MS |
1160 | { |
1161 | struct fuse_conn *fc = get_fuse_conn(inode); | |
244f6385 MS |
1162 | bool refreshed = false; |
1163 | int err = 0; | |
e5e5558e | 1164 | |
c2132c1b | 1165 | if (!fuse_allow_current_process(fc)) |
e5e5558e | 1166 | return -EACCES; |
244f6385 MS |
1167 | |
1168 | /* | |
e8e96157 | 1169 | * If attributes are needed, refresh them before proceeding |
244f6385 | 1170 | */ |
e8e96157 MS |
1171 | if ((fc->flags & FUSE_DEFAULT_PERMISSIONS) || |
1172 | ((mask & MAY_EXEC) && S_ISREG(inode->i_mode))) { | |
19690ddb MS |
1173 | struct fuse_inode *fi = get_fuse_inode(inode); |
1174 | ||
126b9d43 | 1175 | if (time_before64(fi->i_time, get_jiffies_64())) { |
19690ddb MS |
1176 | refreshed = true; |
1177 | ||
10556cb2 | 1178 | err = fuse_perm_getattr(inode, mask); |
19690ddb MS |
1179 | if (err) |
1180 | return err; | |
1181 | } | |
244f6385 MS |
1182 | } |
1183 | ||
1184 | if (fc->flags & FUSE_DEFAULT_PERMISSIONS) { | |
2830ba7f | 1185 | err = generic_permission(inode, mask); |
1e9a4ed9 MS |
1186 | |
1187 | /* If permission is denied, try to refresh file | |
1188 | attributes. This is also needed, because the root | |
1189 | node will at first have no permissions */ | |
244f6385 | 1190 | if (err == -EACCES && !refreshed) { |
10556cb2 | 1191 | err = fuse_perm_getattr(inode, mask); |
1e9a4ed9 | 1192 | if (!err) |
2830ba7f | 1193 | err = generic_permission(inode, mask); |
1e9a4ed9 MS |
1194 | } |
1195 | ||
6f9f1180 MS |
1196 | /* Note: the opposite of the above test does not |
1197 | exist. So if permissions are revoked this won't be | |
1198 | noticed immediately, only after the attribute | |
1199 | timeout has expired */ | |
9cfcac81 | 1200 | } else if (mask & (MAY_ACCESS | MAY_CHDIR)) { |
e8e96157 MS |
1201 | err = fuse_access(inode, mask); |
1202 | } else if ((mask & MAY_EXEC) && S_ISREG(inode->i_mode)) { | |
1203 | if (!(inode->i_mode & S_IXUGO)) { | |
1204 | if (refreshed) | |
1205 | return -EACCES; | |
1206 | ||
10556cb2 | 1207 | err = fuse_perm_getattr(inode, mask); |
e8e96157 MS |
1208 | if (!err && !(inode->i_mode & S_IXUGO)) |
1209 | return -EACCES; | |
1210 | } | |
e5e5558e | 1211 | } |
244f6385 | 1212 | return err; |
e5e5558e MS |
1213 | } |
1214 | ||
1215 | static int parse_dirfile(char *buf, size_t nbytes, struct file *file, | |
8d3af7f3 | 1216 | struct dir_context *ctx) |
e5e5558e MS |
1217 | { |
1218 | while (nbytes >= FUSE_NAME_OFFSET) { | |
1219 | struct fuse_dirent *dirent = (struct fuse_dirent *) buf; | |
1220 | size_t reclen = FUSE_DIRENT_SIZE(dirent); | |
e5e5558e MS |
1221 | if (!dirent->namelen || dirent->namelen > FUSE_NAME_MAX) |
1222 | return -EIO; | |
1223 | if (reclen > nbytes) | |
1224 | break; | |
efeb9e60 MS |
1225 | if (memchr(dirent->name, '/', dirent->namelen) != NULL) |
1226 | return -EIO; | |
e5e5558e | 1227 | |
8d3af7f3 AV |
1228 | if (!dir_emit(ctx, dirent->name, dirent->namelen, |
1229 | dirent->ino, dirent->type)) | |
e5e5558e MS |
1230 | break; |
1231 | ||
1232 | buf += reclen; | |
1233 | nbytes -= reclen; | |
8d3af7f3 | 1234 | ctx->pos = dirent->off; |
e5e5558e MS |
1235 | } |
1236 | ||
1237 | return 0; | |
1238 | } | |
1239 | ||
0b05b183 AA |
1240 | static int fuse_direntplus_link(struct file *file, |
1241 | struct fuse_direntplus *direntplus, | |
1242 | u64 attr_version) | |
1243 | { | |
1244 | int err; | |
1245 | struct fuse_entry_out *o = &direntplus->entry_out; | |
1246 | struct fuse_dirent *dirent = &direntplus->dirent; | |
1247 | struct dentry *parent = file->f_path.dentry; | |
1248 | struct qstr name = QSTR_INIT(dirent->name, dirent->namelen); | |
1249 | struct dentry *dentry; | |
1250 | struct dentry *alias; | |
1251 | struct inode *dir = parent->d_inode; | |
1252 | struct fuse_conn *fc; | |
1253 | struct inode *inode; | |
1254 | ||
1255 | if (!o->nodeid) { | |
1256 | /* | |
1257 | * Unlike in the case of fuse_lookup, zero nodeid does not mean | |
1258 | * ENOENT. Instead, it only means the userspace filesystem did | |
1259 | * not want to return attributes/handle for this entry. | |
1260 | * | |
1261 | * So do nothing. | |
1262 | */ | |
1263 | return 0; | |
1264 | } | |
1265 | ||
1266 | if (name.name[0] == '.') { | |
1267 | /* | |
1268 | * We could potentially refresh the attributes of the directory | |
1269 | * and its parent? | |
1270 | */ | |
1271 | if (name.len == 1) | |
1272 | return 0; | |
1273 | if (name.name[1] == '.' && name.len == 2) | |
1274 | return 0; | |
1275 | } | |
a28ef45c MS |
1276 | |
1277 | if (invalid_nodeid(o->nodeid)) | |
1278 | return -EIO; | |
1279 | if (!fuse_valid_type(o->attr.mode)) | |
1280 | return -EIO; | |
1281 | ||
0b05b183 AA |
1282 | fc = get_fuse_conn(dir); |
1283 | ||
1284 | name.hash = full_name_hash(name.name, name.len); | |
1285 | dentry = d_lookup(parent, &name); | |
53ce9a33 | 1286 | if (dentry) { |
0b05b183 | 1287 | inode = dentry->d_inode; |
53ce9a33 NV |
1288 | if (!inode) { |
1289 | d_drop(dentry); | |
a28ef45c MS |
1290 | } else if (get_node_id(inode) != o->nodeid || |
1291 | ((o->attr.mode ^ inode->i_mode) & S_IFMT)) { | |
53ce9a33 NV |
1292 | err = d_invalidate(dentry); |
1293 | if (err) | |
1294 | goto out; | |
a28ef45c MS |
1295 | } else if (is_bad_inode(inode)) { |
1296 | err = -EIO; | |
1297 | goto out; | |
53ce9a33 | 1298 | } else { |
0b05b183 AA |
1299 | struct fuse_inode *fi; |
1300 | fi = get_fuse_inode(inode); | |
1301 | spin_lock(&fc->lock); | |
1302 | fi->nlookup++; | |
1303 | spin_unlock(&fc->lock); | |
1304 | ||
fa2b7213 MS |
1305 | fuse_change_attributes(inode, &o->attr, |
1306 | entry_attr_timeout(o), | |
1307 | attr_version); | |
1308 | ||
0b05b183 AA |
1309 | /* |
1310 | * The other branch to 'found' comes via fuse_iget() | |
1311 | * which bumps nlookup inside | |
1312 | */ | |
1313 | goto found; | |
1314 | } | |
0b05b183 | 1315 | dput(dentry); |
0b05b183 AA |
1316 | } |
1317 | ||
1318 | dentry = d_alloc(parent, &name); | |
1319 | err = -ENOMEM; | |
1320 | if (!dentry) | |
1321 | goto out; | |
1322 | ||
1323 | inode = fuse_iget(dir->i_sb, o->nodeid, o->generation, | |
1324 | &o->attr, entry_attr_timeout(o), attr_version); | |
1325 | if (!inode) | |
1326 | goto out; | |
1327 | ||
b70a80e7 | 1328 | alias = d_materialise_unique(dentry, inode); |
5835f339 MS |
1329 | err = PTR_ERR(alias); |
1330 | if (IS_ERR(alias)) | |
1331 | goto out; | |
2914941e | 1332 | |
0b05b183 AA |
1333 | if (alias) { |
1334 | dput(dentry); | |
1335 | dentry = alias; | |
1336 | } | |
1337 | ||
1338 | found: | |
6314efee MS |
1339 | if (fc->readdirplus_auto) |
1340 | set_bit(FUSE_I_INIT_RDPLUS, &get_fuse_inode(inode)->state); | |
0b05b183 AA |
1341 | fuse_change_entry_timeout(dentry, o); |
1342 | ||
1343 | err = 0; | |
1344 | out: | |
c7263bcd | 1345 | dput(dentry); |
0b05b183 AA |
1346 | return err; |
1347 | } | |
1348 | ||
1349 | static int parse_dirplusfile(char *buf, size_t nbytes, struct file *file, | |
8d3af7f3 | 1350 | struct dir_context *ctx, u64 attr_version) |
0b05b183 AA |
1351 | { |
1352 | struct fuse_direntplus *direntplus; | |
1353 | struct fuse_dirent *dirent; | |
1354 | size_t reclen; | |
1355 | int over = 0; | |
1356 | int ret; | |
1357 | ||
1358 | while (nbytes >= FUSE_NAME_OFFSET_DIRENTPLUS) { | |
1359 | direntplus = (struct fuse_direntplus *) buf; | |
1360 | dirent = &direntplus->dirent; | |
1361 | reclen = FUSE_DIRENTPLUS_SIZE(direntplus); | |
1362 | ||
1363 | if (!dirent->namelen || dirent->namelen > FUSE_NAME_MAX) | |
1364 | return -EIO; | |
1365 | if (reclen > nbytes) | |
1366 | break; | |
efeb9e60 MS |
1367 | if (memchr(dirent->name, '/', dirent->namelen) != NULL) |
1368 | return -EIO; | |
0b05b183 AA |
1369 | |
1370 | if (!over) { | |
1371 | /* We fill entries into dstbuf only as much as | |
1372 | it can hold. But we still continue iterating | |
1373 | over remaining entries to link them. If not, | |
1374 | we need to send a FORGET for each of those | |
1375 | which we did not link. | |
1376 | */ | |
8d3af7f3 AV |
1377 | over = !dir_emit(ctx, dirent->name, dirent->namelen, |
1378 | dirent->ino, dirent->type); | |
1379 | ctx->pos = dirent->off; | |
0b05b183 AA |
1380 | } |
1381 | ||
1382 | buf += reclen; | |
1383 | nbytes -= reclen; | |
1384 | ||
1385 | ret = fuse_direntplus_link(file, direntplus, attr_version); | |
1386 | if (ret) | |
1387 | fuse_force_forget(file, direntplus->entry_out.nodeid); | |
1388 | } | |
1389 | ||
1390 | return 0; | |
1391 | } | |
1392 | ||
8d3af7f3 | 1393 | static int fuse_readdir(struct file *file, struct dir_context *ctx) |
e5e5558e | 1394 | { |
4582a4ab | 1395 | int plus, err; |
04730fef MS |
1396 | size_t nbytes; |
1397 | struct page *page; | |
496ad9aa | 1398 | struct inode *inode = file_inode(file); |
e5e5558e | 1399 | struct fuse_conn *fc = get_fuse_conn(inode); |
248d86e8 | 1400 | struct fuse_req *req; |
0b05b183 | 1401 | u64 attr_version = 0; |
248d86e8 MS |
1402 | |
1403 | if (is_bad_inode(inode)) | |
1404 | return -EIO; | |
1405 | ||
b111c8c0 | 1406 | req = fuse_get_req(fc, 1); |
ce1d5a49 MS |
1407 | if (IS_ERR(req)) |
1408 | return PTR_ERR(req); | |
e5e5558e | 1409 | |
04730fef MS |
1410 | page = alloc_page(GFP_KERNEL); |
1411 | if (!page) { | |
1412 | fuse_put_request(fc, req); | |
1413 | return -ENOMEM; | |
1414 | } | |
4582a4ab | 1415 | |
8d3af7f3 | 1416 | plus = fuse_use_readdirplus(inode, ctx); |
f4975c67 | 1417 | req->out.argpages = 1; |
04730fef MS |
1418 | req->num_pages = 1; |
1419 | req->pages[0] = page; | |
85f40aec | 1420 | req->page_descs[0].length = PAGE_SIZE; |
4582a4ab | 1421 | if (plus) { |
0b05b183 | 1422 | attr_version = fuse_get_attr_version(fc); |
8d3af7f3 | 1423 | fuse_read_fill(req, file, ctx->pos, PAGE_SIZE, |
0b05b183 AA |
1424 | FUSE_READDIRPLUS); |
1425 | } else { | |
8d3af7f3 | 1426 | fuse_read_fill(req, file, ctx->pos, PAGE_SIZE, |
0b05b183 AA |
1427 | FUSE_READDIR); |
1428 | } | |
b93f858a | 1429 | fuse_request_send(fc, req); |
361b1eb5 | 1430 | nbytes = req->out.args[0].size; |
e5e5558e MS |
1431 | err = req->out.h.error; |
1432 | fuse_put_request(fc, req); | |
0b05b183 | 1433 | if (!err) { |
4582a4ab | 1434 | if (plus) { |
0b05b183 | 1435 | err = parse_dirplusfile(page_address(page), nbytes, |
8d3af7f3 | 1436 | file, ctx, |
0b05b183 AA |
1437 | attr_version); |
1438 | } else { | |
1439 | err = parse_dirfile(page_address(page), nbytes, file, | |
8d3af7f3 | 1440 | ctx); |
0b05b183 AA |
1441 | } |
1442 | } | |
e5e5558e | 1443 | |
04730fef | 1444 | __free_page(page); |
451418fc | 1445 | fuse_invalidate_atime(inode); |
04730fef | 1446 | return err; |
e5e5558e MS |
1447 | } |
1448 | ||
1449 | static char *read_link(struct dentry *dentry) | |
1450 | { | |
1451 | struct inode *inode = dentry->d_inode; | |
1452 | struct fuse_conn *fc = get_fuse_conn(inode); | |
b111c8c0 | 1453 | struct fuse_req *req = fuse_get_req_nopages(fc); |
e5e5558e MS |
1454 | char *link; |
1455 | ||
ce1d5a49 | 1456 | if (IS_ERR(req)) |
e231c2ee | 1457 | return ERR_CAST(req); |
e5e5558e MS |
1458 | |
1459 | link = (char *) __get_free_page(GFP_KERNEL); | |
1460 | if (!link) { | |
1461 | link = ERR_PTR(-ENOMEM); | |
1462 | goto out; | |
1463 | } | |
1464 | req->in.h.opcode = FUSE_READLINK; | |
1465 | req->in.h.nodeid = get_node_id(inode); | |
e5e5558e MS |
1466 | req->out.argvar = 1; |
1467 | req->out.numargs = 1; | |
1468 | req->out.args[0].size = PAGE_SIZE - 1; | |
1469 | req->out.args[0].value = link; | |
b93f858a | 1470 | fuse_request_send(fc, req); |
e5e5558e MS |
1471 | if (req->out.h.error) { |
1472 | free_page((unsigned long) link); | |
1473 | link = ERR_PTR(req->out.h.error); | |
1474 | } else | |
1475 | link[req->out.args[0].size] = '\0'; | |
1476 | out: | |
1477 | fuse_put_request(fc, req); | |
451418fc | 1478 | fuse_invalidate_atime(inode); |
e5e5558e MS |
1479 | return link; |
1480 | } | |
1481 | ||
1482 | static void free_link(char *link) | |
1483 | { | |
1484 | if (!IS_ERR(link)) | |
1485 | free_page((unsigned long) link); | |
1486 | } | |
1487 | ||
1488 | static void *fuse_follow_link(struct dentry *dentry, struct nameidata *nd) | |
1489 | { | |
1490 | nd_set_link(nd, read_link(dentry)); | |
1491 | return NULL; | |
1492 | } | |
1493 | ||
1494 | static void fuse_put_link(struct dentry *dentry, struct nameidata *nd, void *c) | |
1495 | { | |
1496 | free_link(nd_get_link(nd)); | |
1497 | } | |
1498 | ||
1499 | static int fuse_dir_open(struct inode *inode, struct file *file) | |
1500 | { | |
91fe96b4 | 1501 | return fuse_open_common(inode, file, true); |
e5e5558e MS |
1502 | } |
1503 | ||
1504 | static int fuse_dir_release(struct inode *inode, struct file *file) | |
1505 | { | |
8b0797a4 MS |
1506 | fuse_release_common(file, FUSE_RELEASEDIR); |
1507 | ||
1508 | return 0; | |
e5e5558e MS |
1509 | } |
1510 | ||
02c24a82 JB |
1511 | static int fuse_dir_fsync(struct file *file, loff_t start, loff_t end, |
1512 | int datasync) | |
82547981 | 1513 | { |
02c24a82 | 1514 | return fuse_fsync_common(file, start, end, datasync, 1); |
82547981 MS |
1515 | } |
1516 | ||
b18da0c5 MS |
1517 | static long fuse_dir_ioctl(struct file *file, unsigned int cmd, |
1518 | unsigned long arg) | |
1519 | { | |
1520 | struct fuse_conn *fc = get_fuse_conn(file->f_mapping->host); | |
1521 | ||
1522 | /* FUSE_IOCTL_DIR only supported for API version >= 7.18 */ | |
1523 | if (fc->minor < 18) | |
1524 | return -ENOTTY; | |
1525 | ||
1526 | return fuse_ioctl_common(file, cmd, arg, FUSE_IOCTL_DIR); | |
1527 | } | |
1528 | ||
1529 | static long fuse_dir_compat_ioctl(struct file *file, unsigned int cmd, | |
1530 | unsigned long arg) | |
1531 | { | |
1532 | struct fuse_conn *fc = get_fuse_conn(file->f_mapping->host); | |
1533 | ||
1534 | if (fc->minor < 18) | |
1535 | return -ENOTTY; | |
1536 | ||
1537 | return fuse_ioctl_common(file, cmd, arg, | |
1538 | FUSE_IOCTL_COMPAT | FUSE_IOCTL_DIR); | |
1539 | } | |
1540 | ||
b0aa7606 | 1541 | static bool update_mtime(unsigned ivalid, bool trust_local_mtime) |
17637cba MS |
1542 | { |
1543 | /* Always update if mtime is explicitly set */ | |
1544 | if (ivalid & ATTR_MTIME_SET) | |
1545 | return true; | |
1546 | ||
b0aa7606 MP |
1547 | /* Or if kernel i_mtime is the official one */ |
1548 | if (trust_local_mtime) | |
1549 | return true; | |
1550 | ||
17637cba MS |
1551 | /* If it's an open(O_TRUNC) or an ftruncate(), don't update */ |
1552 | if ((ivalid & ATTR_SIZE) && (ivalid & (ATTR_OPEN | ATTR_FILE))) | |
1553 | return false; | |
1554 | ||
1555 | /* In all other cases update */ | |
1556 | return true; | |
1557 | } | |
1558 | ||
b0aa7606 | 1559 | static void iattr_to_fattr(struct iattr *iattr, struct fuse_setattr_in *arg, |
3ad22c62 | 1560 | bool trust_local_cmtime) |
9e6268db MS |
1561 | { |
1562 | unsigned ivalid = iattr->ia_valid; | |
9e6268db MS |
1563 | |
1564 | if (ivalid & ATTR_MODE) | |
befc649c | 1565 | arg->valid |= FATTR_MODE, arg->mode = iattr->ia_mode; |
9e6268db | 1566 | if (ivalid & ATTR_UID) |
499dcf20 | 1567 | arg->valid |= FATTR_UID, arg->uid = from_kuid(&init_user_ns, iattr->ia_uid); |
9e6268db | 1568 | if (ivalid & ATTR_GID) |
499dcf20 | 1569 | arg->valid |= FATTR_GID, arg->gid = from_kgid(&init_user_ns, iattr->ia_gid); |
9e6268db | 1570 | if (ivalid & ATTR_SIZE) |
befc649c | 1571 | arg->valid |= FATTR_SIZE, arg->size = iattr->ia_size; |
17637cba MS |
1572 | if (ivalid & ATTR_ATIME) { |
1573 | arg->valid |= FATTR_ATIME; | |
befc649c | 1574 | arg->atime = iattr->ia_atime.tv_sec; |
17637cba MS |
1575 | arg->atimensec = iattr->ia_atime.tv_nsec; |
1576 | if (!(ivalid & ATTR_ATIME_SET)) | |
1577 | arg->valid |= FATTR_ATIME_NOW; | |
1578 | } | |
3ad22c62 | 1579 | if ((ivalid & ATTR_MTIME) && update_mtime(ivalid, trust_local_cmtime)) { |
17637cba | 1580 | arg->valid |= FATTR_MTIME; |
befc649c | 1581 | arg->mtime = iattr->ia_mtime.tv_sec; |
17637cba | 1582 | arg->mtimensec = iattr->ia_mtime.tv_nsec; |
3ad22c62 | 1583 | if (!(ivalid & ATTR_MTIME_SET) && !trust_local_cmtime) |
17637cba | 1584 | arg->valid |= FATTR_MTIME_NOW; |
befc649c | 1585 | } |
3ad22c62 MP |
1586 | if ((ivalid & ATTR_CTIME) && trust_local_cmtime) { |
1587 | arg->valid |= FATTR_CTIME; | |
1588 | arg->ctime = iattr->ia_ctime.tv_sec; | |
1589 | arg->ctimensec = iattr->ia_ctime.tv_nsec; | |
1590 | } | |
9e6268db MS |
1591 | } |
1592 | ||
3be5a52b MS |
1593 | /* |
1594 | * Prevent concurrent writepages on inode | |
1595 | * | |
1596 | * This is done by adding a negative bias to the inode write counter | |
1597 | * and waiting for all pending writes to finish. | |
1598 | */ | |
1599 | void fuse_set_nowrite(struct inode *inode) | |
1600 | { | |
1601 | struct fuse_conn *fc = get_fuse_conn(inode); | |
1602 | struct fuse_inode *fi = get_fuse_inode(inode); | |
1603 | ||
1604 | BUG_ON(!mutex_is_locked(&inode->i_mutex)); | |
1605 | ||
1606 | spin_lock(&fc->lock); | |
1607 | BUG_ON(fi->writectr < 0); | |
1608 | fi->writectr += FUSE_NOWRITE; | |
1609 | spin_unlock(&fc->lock); | |
1610 | wait_event(fi->page_waitq, fi->writectr == FUSE_NOWRITE); | |
1611 | } | |
1612 | ||
1613 | /* | |
1614 | * Allow writepages on inode | |
1615 | * | |
1616 | * Remove the bias from the writecounter and send any queued | |
1617 | * writepages. | |
1618 | */ | |
1619 | static void __fuse_release_nowrite(struct inode *inode) | |
1620 | { | |
1621 | struct fuse_inode *fi = get_fuse_inode(inode); | |
1622 | ||
1623 | BUG_ON(fi->writectr != FUSE_NOWRITE); | |
1624 | fi->writectr = 0; | |
1625 | fuse_flush_writepages(inode); | |
1626 | } | |
1627 | ||
1628 | void fuse_release_nowrite(struct inode *inode) | |
1629 | { | |
1630 | struct fuse_conn *fc = get_fuse_conn(inode); | |
1631 | ||
1632 | spin_lock(&fc->lock); | |
1633 | __fuse_release_nowrite(inode); | |
1634 | spin_unlock(&fc->lock); | |
1635 | } | |
1636 | ||
b0aa7606 MP |
1637 | static void fuse_setattr_fill(struct fuse_conn *fc, struct fuse_req *req, |
1638 | struct inode *inode, | |
1639 | struct fuse_setattr_in *inarg_p, | |
1640 | struct fuse_attr_out *outarg_p) | |
1641 | { | |
1642 | req->in.h.opcode = FUSE_SETATTR; | |
1643 | req->in.h.nodeid = get_node_id(inode); | |
1644 | req->in.numargs = 1; | |
1645 | req->in.args[0].size = sizeof(*inarg_p); | |
1646 | req->in.args[0].value = inarg_p; | |
1647 | req->out.numargs = 1; | |
1648 | if (fc->minor < 9) | |
1649 | req->out.args[0].size = FUSE_COMPAT_ATTR_OUT_SIZE; | |
1650 | else | |
1651 | req->out.args[0].size = sizeof(*outarg_p); | |
1652 | req->out.args[0].value = outarg_p; | |
1653 | } | |
1654 | ||
1655 | /* | |
1656 | * Flush inode->i_mtime to the server | |
1657 | */ | |
ab9e13f7 | 1658 | int fuse_flush_times(struct inode *inode, struct fuse_file *ff) |
b0aa7606 | 1659 | { |
b0aa7606 | 1660 | struct fuse_conn *fc = get_fuse_conn(inode); |
1e18bda8 | 1661 | struct fuse_req *req; |
b0aa7606 MP |
1662 | struct fuse_setattr_in inarg; |
1663 | struct fuse_attr_out outarg; | |
1664 | int err; | |
1665 | ||
1e18bda8 MS |
1666 | req = fuse_get_req_nopages(fc); |
1667 | if (IS_ERR(req)) | |
1668 | return PTR_ERR(req); | |
b0aa7606 MP |
1669 | |
1670 | memset(&inarg, 0, sizeof(inarg)); | |
1671 | memset(&outarg, 0, sizeof(outarg)); | |
1672 | ||
ab9e13f7 | 1673 | inarg.valid = FATTR_MTIME; |
b0aa7606 MP |
1674 | inarg.mtime = inode->i_mtime.tv_sec; |
1675 | inarg.mtimensec = inode->i_mtime.tv_nsec; | |
ab9e13f7 MP |
1676 | if (fc->minor >= 23) { |
1677 | inarg.valid |= FATTR_CTIME; | |
1678 | inarg.ctime = inode->i_ctime.tv_sec; | |
1679 | inarg.ctimensec = inode->i_ctime.tv_nsec; | |
1680 | } | |
1e18bda8 MS |
1681 | if (ff) { |
1682 | inarg.valid |= FATTR_FH; | |
1683 | inarg.fh = ff->fh; | |
1684 | } | |
b0aa7606 MP |
1685 | fuse_setattr_fill(fc, req, inode, &inarg, &outarg); |
1686 | fuse_request_send(fc, req); | |
1687 | err = req->out.h.error; | |
1688 | fuse_put_request(fc, req); | |
1689 | ||
b0aa7606 MP |
1690 | return err; |
1691 | } | |
1692 | ||
6f9f1180 MS |
1693 | /* |
1694 | * Set attributes, and at the same time refresh them. | |
1695 | * | |
1696 | * Truncation is slightly complicated, because the 'truncate' request | |
1697 | * may fail, in which case we don't want to touch the mapping. | |
9ffbb916 MS |
1698 | * vmtruncate() doesn't allow for this case, so do the rlimit checking |
1699 | * and the actual truncation by hand. | |
6f9f1180 | 1700 | */ |
efb9fa9e MP |
1701 | int fuse_do_setattr(struct inode *inode, struct iattr *attr, |
1702 | struct file *file) | |
9e6268db | 1703 | { |
9e6268db | 1704 | struct fuse_conn *fc = get_fuse_conn(inode); |
06a7c3c2 | 1705 | struct fuse_inode *fi = get_fuse_inode(inode); |
9e6268db MS |
1706 | struct fuse_req *req; |
1707 | struct fuse_setattr_in inarg; | |
1708 | struct fuse_attr_out outarg; | |
3be5a52b | 1709 | bool is_truncate = false; |
8373200b | 1710 | bool is_wb = fc->writeback_cache; |
3be5a52b | 1711 | loff_t oldsize; |
9e6268db | 1712 | int err; |
3ad22c62 | 1713 | bool trust_local_cmtime = is_wb && S_ISREG(inode->i_mode); |
9e6268db | 1714 | |
db78b877 CH |
1715 | if (!(fc->flags & FUSE_DEFAULT_PERMISSIONS)) |
1716 | attr->ia_valid |= ATTR_FORCE; | |
1717 | ||
1718 | err = inode_change_ok(inode, attr); | |
1719 | if (err) | |
1720 | return err; | |
1e9a4ed9 | 1721 | |
8d56addd MS |
1722 | if (attr->ia_valid & ATTR_OPEN) { |
1723 | if (fc->atomic_o_trunc) | |
1724 | return 0; | |
1725 | file = NULL; | |
1726 | } | |
6ff958ed | 1727 | |
2c27c65e | 1728 | if (attr->ia_valid & ATTR_SIZE) |
3be5a52b | 1729 | is_truncate = true; |
9e6268db | 1730 | |
b111c8c0 | 1731 | req = fuse_get_req_nopages(fc); |
ce1d5a49 MS |
1732 | if (IS_ERR(req)) |
1733 | return PTR_ERR(req); | |
9e6268db | 1734 | |
06a7c3c2 | 1735 | if (is_truncate) { |
3be5a52b | 1736 | fuse_set_nowrite(inode); |
06a7c3c2 | 1737 | set_bit(FUSE_I_SIZE_UNSTABLE, &fi->state); |
3ad22c62 MP |
1738 | if (trust_local_cmtime && attr->ia_size != inode->i_size) |
1739 | attr->ia_valid |= ATTR_MTIME | ATTR_CTIME; | |
06a7c3c2 | 1740 | } |
3be5a52b | 1741 | |
9e6268db | 1742 | memset(&inarg, 0, sizeof(inarg)); |
0e9663ee | 1743 | memset(&outarg, 0, sizeof(outarg)); |
3ad22c62 | 1744 | iattr_to_fattr(attr, &inarg, trust_local_cmtime); |
49d4914f MS |
1745 | if (file) { |
1746 | struct fuse_file *ff = file->private_data; | |
1747 | inarg.valid |= FATTR_FH; | |
1748 | inarg.fh = ff->fh; | |
1749 | } | |
f3332114 MS |
1750 | if (attr->ia_valid & ATTR_SIZE) { |
1751 | /* For mandatory locking in truncate */ | |
1752 | inarg.valid |= FATTR_LOCKOWNER; | |
1753 | inarg.lock_owner = fuse_lock_owner_id(fc, current->files); | |
1754 | } | |
b0aa7606 | 1755 | fuse_setattr_fill(fc, req, inode, &inarg, &outarg); |
b93f858a | 1756 | fuse_request_send(fc, req); |
9e6268db MS |
1757 | err = req->out.h.error; |
1758 | fuse_put_request(fc, req); | |
e00d2c2d MS |
1759 | if (err) { |
1760 | if (err == -EINTR) | |
1761 | fuse_invalidate_attr(inode); | |
3be5a52b | 1762 | goto error; |
e00d2c2d | 1763 | } |
9e6268db | 1764 | |
e00d2c2d MS |
1765 | if ((inode->i_mode ^ outarg.attr.mode) & S_IFMT) { |
1766 | make_bad_inode(inode); | |
3be5a52b MS |
1767 | err = -EIO; |
1768 | goto error; | |
1769 | } | |
1770 | ||
1771 | spin_lock(&fc->lock); | |
b0aa7606 | 1772 | /* the kernel maintains i_mtime locally */ |
3ad22c62 MP |
1773 | if (trust_local_cmtime) { |
1774 | if (attr->ia_valid & ATTR_MTIME) | |
1775 | inode->i_mtime = attr->ia_mtime; | |
1776 | if (attr->ia_valid & ATTR_CTIME) | |
1777 | inode->i_ctime = attr->ia_ctime; | |
1e18bda8 | 1778 | /* FIXME: clear I_DIRTY_SYNC? */ |
b0aa7606 MP |
1779 | } |
1780 | ||
3be5a52b MS |
1781 | fuse_change_attributes_common(inode, &outarg.attr, |
1782 | attr_timeout(&outarg)); | |
1783 | oldsize = inode->i_size; | |
8373200b PE |
1784 | /* see the comment in fuse_change_attributes() */ |
1785 | if (!is_wb || is_truncate || !S_ISREG(inode->i_mode)) | |
1786 | i_size_write(inode, outarg.attr.size); | |
3be5a52b MS |
1787 | |
1788 | if (is_truncate) { | |
1789 | /* NOTE: this may release/reacquire fc->lock */ | |
1790 | __fuse_release_nowrite(inode); | |
1791 | } | |
1792 | spin_unlock(&fc->lock); | |
1793 | ||
1794 | /* | |
1795 | * Only call invalidate_inode_pages2() after removing | |
1796 | * FUSE_NOWRITE, otherwise fuse_launder_page() would deadlock. | |
1797 | */ | |
8373200b PE |
1798 | if ((is_truncate || !is_wb) && |
1799 | S_ISREG(inode->i_mode) && oldsize != outarg.attr.size) { | |
7caef267 | 1800 | truncate_pagecache(inode, outarg.attr.size); |
3be5a52b | 1801 | invalidate_inode_pages2(inode->i_mapping); |
e00d2c2d MS |
1802 | } |
1803 | ||
06a7c3c2 | 1804 | clear_bit(FUSE_I_SIZE_UNSTABLE, &fi->state); |
e00d2c2d | 1805 | return 0; |
3be5a52b MS |
1806 | |
1807 | error: | |
1808 | if (is_truncate) | |
1809 | fuse_release_nowrite(inode); | |
1810 | ||
06a7c3c2 | 1811 | clear_bit(FUSE_I_SIZE_UNSTABLE, &fi->state); |
3be5a52b | 1812 | return err; |
9e6268db MS |
1813 | } |
1814 | ||
49d4914f MS |
1815 | static int fuse_setattr(struct dentry *entry, struct iattr *attr) |
1816 | { | |
efb9fa9e MP |
1817 | struct inode *inode = entry->d_inode; |
1818 | ||
1819 | if (!fuse_allow_current_process(get_fuse_conn(inode))) | |
1820 | return -EACCES; | |
1821 | ||
49d4914f | 1822 | if (attr->ia_valid & ATTR_FILE) |
efb9fa9e | 1823 | return fuse_do_setattr(inode, attr, attr->ia_file); |
49d4914f | 1824 | else |
efb9fa9e | 1825 | return fuse_do_setattr(inode, attr, NULL); |
49d4914f MS |
1826 | } |
1827 | ||
e5e5558e MS |
1828 | static int fuse_getattr(struct vfsmount *mnt, struct dentry *entry, |
1829 | struct kstat *stat) | |
1830 | { | |
1831 | struct inode *inode = entry->d_inode; | |
244f6385 | 1832 | struct fuse_conn *fc = get_fuse_conn(inode); |
244f6385 | 1833 | |
c2132c1b | 1834 | if (!fuse_allow_current_process(fc)) |
244f6385 MS |
1835 | return -EACCES; |
1836 | ||
bcb4be80 | 1837 | return fuse_update_attributes(inode, stat, NULL, NULL); |
e5e5558e MS |
1838 | } |
1839 | ||
92a8780e MS |
1840 | static int fuse_setxattr(struct dentry *entry, const char *name, |
1841 | const void *value, size_t size, int flags) | |
1842 | { | |
1843 | struct inode *inode = entry->d_inode; | |
1844 | struct fuse_conn *fc = get_fuse_conn(inode); | |
1845 | struct fuse_req *req; | |
1846 | struct fuse_setxattr_in inarg; | |
1847 | int err; | |
1848 | ||
92a8780e MS |
1849 | if (fc->no_setxattr) |
1850 | return -EOPNOTSUPP; | |
1851 | ||
b111c8c0 | 1852 | req = fuse_get_req_nopages(fc); |
ce1d5a49 MS |
1853 | if (IS_ERR(req)) |
1854 | return PTR_ERR(req); | |
92a8780e MS |
1855 | |
1856 | memset(&inarg, 0, sizeof(inarg)); | |
1857 | inarg.size = size; | |
1858 | inarg.flags = flags; | |
1859 | req->in.h.opcode = FUSE_SETXATTR; | |
1860 | req->in.h.nodeid = get_node_id(inode); | |
92a8780e MS |
1861 | req->in.numargs = 3; |
1862 | req->in.args[0].size = sizeof(inarg); | |
1863 | req->in.args[0].value = &inarg; | |
1864 | req->in.args[1].size = strlen(name) + 1; | |
1865 | req->in.args[1].value = name; | |
1866 | req->in.args[2].size = size; | |
1867 | req->in.args[2].value = value; | |
b93f858a | 1868 | fuse_request_send(fc, req); |
92a8780e MS |
1869 | err = req->out.h.error; |
1870 | fuse_put_request(fc, req); | |
1871 | if (err == -ENOSYS) { | |
1872 | fc->no_setxattr = 1; | |
1873 | err = -EOPNOTSUPP; | |
1874 | } | |
31f3267b | 1875 | if (!err) { |
d331a415 | 1876 | fuse_invalidate_attr(inode); |
31f3267b MP |
1877 | fuse_update_ctime(inode); |
1878 | } | |
92a8780e MS |
1879 | return err; |
1880 | } | |
1881 | ||
1882 | static ssize_t fuse_getxattr(struct dentry *entry, const char *name, | |
1883 | void *value, size_t size) | |
1884 | { | |
1885 | struct inode *inode = entry->d_inode; | |
1886 | struct fuse_conn *fc = get_fuse_conn(inode); | |
1887 | struct fuse_req *req; | |
1888 | struct fuse_getxattr_in inarg; | |
1889 | struct fuse_getxattr_out outarg; | |
1890 | ssize_t ret; | |
1891 | ||
1892 | if (fc->no_getxattr) | |
1893 | return -EOPNOTSUPP; | |
1894 | ||
b111c8c0 | 1895 | req = fuse_get_req_nopages(fc); |
ce1d5a49 MS |
1896 | if (IS_ERR(req)) |
1897 | return PTR_ERR(req); | |
92a8780e MS |
1898 | |
1899 | memset(&inarg, 0, sizeof(inarg)); | |
1900 | inarg.size = size; | |
1901 | req->in.h.opcode = FUSE_GETXATTR; | |
1902 | req->in.h.nodeid = get_node_id(inode); | |
92a8780e MS |
1903 | req->in.numargs = 2; |
1904 | req->in.args[0].size = sizeof(inarg); | |
1905 | req->in.args[0].value = &inarg; | |
1906 | req->in.args[1].size = strlen(name) + 1; | |
1907 | req->in.args[1].value = name; | |
1908 | /* This is really two different operations rolled into one */ | |
1909 | req->out.numargs = 1; | |
1910 | if (size) { | |
1911 | req->out.argvar = 1; | |
1912 | req->out.args[0].size = size; | |
1913 | req->out.args[0].value = value; | |
1914 | } else { | |
1915 | req->out.args[0].size = sizeof(outarg); | |
1916 | req->out.args[0].value = &outarg; | |
1917 | } | |
b93f858a | 1918 | fuse_request_send(fc, req); |
92a8780e MS |
1919 | ret = req->out.h.error; |
1920 | if (!ret) | |
1921 | ret = size ? req->out.args[0].size : outarg.size; | |
1922 | else { | |
1923 | if (ret == -ENOSYS) { | |
1924 | fc->no_getxattr = 1; | |
1925 | ret = -EOPNOTSUPP; | |
1926 | } | |
1927 | } | |
1928 | fuse_put_request(fc, req); | |
1929 | return ret; | |
1930 | } | |
1931 | ||
1932 | static ssize_t fuse_listxattr(struct dentry *entry, char *list, size_t size) | |
1933 | { | |
1934 | struct inode *inode = entry->d_inode; | |
1935 | struct fuse_conn *fc = get_fuse_conn(inode); | |
1936 | struct fuse_req *req; | |
1937 | struct fuse_getxattr_in inarg; | |
1938 | struct fuse_getxattr_out outarg; | |
1939 | ssize_t ret; | |
1940 | ||
c2132c1b | 1941 | if (!fuse_allow_current_process(fc)) |
e57ac683 MS |
1942 | return -EACCES; |
1943 | ||
92a8780e MS |
1944 | if (fc->no_listxattr) |
1945 | return -EOPNOTSUPP; | |
1946 | ||
b111c8c0 | 1947 | req = fuse_get_req_nopages(fc); |
ce1d5a49 MS |
1948 | if (IS_ERR(req)) |
1949 | return PTR_ERR(req); | |
92a8780e MS |
1950 | |
1951 | memset(&inarg, 0, sizeof(inarg)); | |
1952 | inarg.size = size; | |
1953 | req->in.h.opcode = FUSE_LISTXATTR; | |
1954 | req->in.h.nodeid = get_node_id(inode); | |
92a8780e MS |
1955 | req->in.numargs = 1; |
1956 | req->in.args[0].size = sizeof(inarg); | |
1957 | req->in.args[0].value = &inarg; | |
1958 | /* This is really two different operations rolled into one */ | |
1959 | req->out.numargs = 1; | |
1960 | if (size) { | |
1961 | req->out.argvar = 1; | |
1962 | req->out.args[0].size = size; | |
1963 | req->out.args[0].value = list; | |
1964 | } else { | |
1965 | req->out.args[0].size = sizeof(outarg); | |
1966 | req->out.args[0].value = &outarg; | |
1967 | } | |
b93f858a | 1968 | fuse_request_send(fc, req); |
92a8780e MS |
1969 | ret = req->out.h.error; |
1970 | if (!ret) | |
1971 | ret = size ? req->out.args[0].size : outarg.size; | |
1972 | else { | |
1973 | if (ret == -ENOSYS) { | |
1974 | fc->no_listxattr = 1; | |
1975 | ret = -EOPNOTSUPP; | |
1976 | } | |
1977 | } | |
1978 | fuse_put_request(fc, req); | |
1979 | return ret; | |
1980 | } | |
1981 | ||
1982 | static int fuse_removexattr(struct dentry *entry, const char *name) | |
1983 | { | |
1984 | struct inode *inode = entry->d_inode; | |
1985 | struct fuse_conn *fc = get_fuse_conn(inode); | |
1986 | struct fuse_req *req; | |
1987 | int err; | |
1988 | ||
1989 | if (fc->no_removexattr) | |
1990 | return -EOPNOTSUPP; | |
1991 | ||
b111c8c0 | 1992 | req = fuse_get_req_nopages(fc); |
ce1d5a49 MS |
1993 | if (IS_ERR(req)) |
1994 | return PTR_ERR(req); | |
92a8780e MS |
1995 | |
1996 | req->in.h.opcode = FUSE_REMOVEXATTR; | |
1997 | req->in.h.nodeid = get_node_id(inode); | |
92a8780e MS |
1998 | req->in.numargs = 1; |
1999 | req->in.args[0].size = strlen(name) + 1; | |
2000 | req->in.args[0].value = name; | |
b93f858a | 2001 | fuse_request_send(fc, req); |
92a8780e MS |
2002 | err = req->out.h.error; |
2003 | fuse_put_request(fc, req); | |
2004 | if (err == -ENOSYS) { | |
2005 | fc->no_removexattr = 1; | |
2006 | err = -EOPNOTSUPP; | |
2007 | } | |
31f3267b | 2008 | if (!err) { |
d331a415 | 2009 | fuse_invalidate_attr(inode); |
31f3267b MP |
2010 | fuse_update_ctime(inode); |
2011 | } | |
92a8780e MS |
2012 | return err; |
2013 | } | |
2014 | ||
754661f1 | 2015 | static const struct inode_operations fuse_dir_inode_operations = { |
e5e5558e | 2016 | .lookup = fuse_lookup, |
9e6268db MS |
2017 | .mkdir = fuse_mkdir, |
2018 | .symlink = fuse_symlink, | |
2019 | .unlink = fuse_unlink, | |
2020 | .rmdir = fuse_rmdir, | |
1560c974 | 2021 | .rename2 = fuse_rename2, |
9e6268db MS |
2022 | .link = fuse_link, |
2023 | .setattr = fuse_setattr, | |
2024 | .create = fuse_create, | |
c8ccbe03 | 2025 | .atomic_open = fuse_atomic_open, |
9e6268db | 2026 | .mknod = fuse_mknod, |
e5e5558e MS |
2027 | .permission = fuse_permission, |
2028 | .getattr = fuse_getattr, | |
92a8780e MS |
2029 | .setxattr = fuse_setxattr, |
2030 | .getxattr = fuse_getxattr, | |
2031 | .listxattr = fuse_listxattr, | |
2032 | .removexattr = fuse_removexattr, | |
e5e5558e MS |
2033 | }; |
2034 | ||
4b6f5d20 | 2035 | static const struct file_operations fuse_dir_operations = { |
b6aeaded | 2036 | .llseek = generic_file_llseek, |
e5e5558e | 2037 | .read = generic_read_dir, |
8d3af7f3 | 2038 | .iterate = fuse_readdir, |
e5e5558e MS |
2039 | .open = fuse_dir_open, |
2040 | .release = fuse_dir_release, | |
82547981 | 2041 | .fsync = fuse_dir_fsync, |
b18da0c5 MS |
2042 | .unlocked_ioctl = fuse_dir_ioctl, |
2043 | .compat_ioctl = fuse_dir_compat_ioctl, | |
e5e5558e MS |
2044 | }; |
2045 | ||
754661f1 | 2046 | static const struct inode_operations fuse_common_inode_operations = { |
9e6268db | 2047 | .setattr = fuse_setattr, |
e5e5558e MS |
2048 | .permission = fuse_permission, |
2049 | .getattr = fuse_getattr, | |
92a8780e MS |
2050 | .setxattr = fuse_setxattr, |
2051 | .getxattr = fuse_getxattr, | |
2052 | .listxattr = fuse_listxattr, | |
2053 | .removexattr = fuse_removexattr, | |
e5e5558e MS |
2054 | }; |
2055 | ||
754661f1 | 2056 | static const struct inode_operations fuse_symlink_inode_operations = { |
9e6268db | 2057 | .setattr = fuse_setattr, |
e5e5558e MS |
2058 | .follow_link = fuse_follow_link, |
2059 | .put_link = fuse_put_link, | |
2060 | .readlink = generic_readlink, | |
2061 | .getattr = fuse_getattr, | |
92a8780e MS |
2062 | .setxattr = fuse_setxattr, |
2063 | .getxattr = fuse_getxattr, | |
2064 | .listxattr = fuse_listxattr, | |
2065 | .removexattr = fuse_removexattr, | |
e5e5558e MS |
2066 | }; |
2067 | ||
2068 | void fuse_init_common(struct inode *inode) | |
2069 | { | |
2070 | inode->i_op = &fuse_common_inode_operations; | |
2071 | } | |
2072 | ||
2073 | void fuse_init_dir(struct inode *inode) | |
2074 | { | |
2075 | inode->i_op = &fuse_dir_inode_operations; | |
2076 | inode->i_fop = &fuse_dir_operations; | |
2077 | } | |
2078 | ||
2079 | void fuse_init_symlink(struct inode *inode) | |
2080 | { | |
2081 | inode->i_op = &fuse_symlink_inode_operations; | |
2082 | } |