]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - fs/afs/dir.c
gpio: pcf857x: call the gpio user handler iff gpio_to_irq is done
[mirror_ubuntu-bionic-kernel.git] / fs / afs / dir.c
CommitLineData
1da177e4
LT
1/* dir.c: AFS filesystem directory handling
2 *
3 * Copyright (C) 2002 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
12#include <linux/kernel.h>
13#include <linux/module.h>
14#include <linux/init.h>
1da177e4 15#include <linux/fs.h>
34286d66 16#include <linux/namei.h>
1da177e4 17#include <linux/pagemap.h>
00d3b7a4 18#include <linux/ctype.h>
e8edc6e0 19#include <linux/sched.h>
1da177e4
LT
20#include "internal.h"
21
260a9803 22static struct dentry *afs_lookup(struct inode *dir, struct dentry *dentry,
00cd8dd3 23 unsigned int flags);
1da177e4 24static int afs_dir_open(struct inode *inode, struct file *file);
1bbae9f8 25static int afs_readdir(struct file *file, struct dir_context *ctx);
0b728e19 26static int afs_d_revalidate(struct dentry *dentry, unsigned int flags);
fe15ce44 27static int afs_d_delete(const struct dentry *dentry);
260a9803
DH
28static void afs_d_release(struct dentry *dentry);
29static int afs_lookup_filldir(void *_cookie, const char *name, int nlen,
afefdbb2 30 loff_t fpos, u64 ino, unsigned dtype);
4acdaf27 31static int afs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
ebfc3b49 32 bool excl);
18bb1db3 33static int afs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode);
260a9803
DH
34static int afs_rmdir(struct inode *dir, struct dentry *dentry);
35static int afs_unlink(struct inode *dir, struct dentry *dentry);
36static int afs_link(struct dentry *from, struct inode *dir,
37 struct dentry *dentry);
38static int afs_symlink(struct inode *dir, struct dentry *dentry,
39 const char *content);
40static int afs_rename(struct inode *old_dir, struct dentry *old_dentry,
41 struct inode *new_dir, struct dentry *new_dentry);
1da177e4 42
4b6f5d20 43const struct file_operations afs_dir_file_operations = {
1da177e4 44 .open = afs_dir_open,
00d3b7a4 45 .release = afs_release,
1bbae9f8 46 .iterate = afs_readdir,
e8d6c554 47 .lock = afs_lock,
3222a3e5 48 .llseek = generic_file_llseek,
1da177e4
LT
49};
50
754661f1 51const struct inode_operations afs_dir_inode_operations = {
260a9803
DH
52 .create = afs_create,
53 .lookup = afs_lookup,
54 .link = afs_link,
55 .unlink = afs_unlink,
56 .symlink = afs_symlink,
57 .mkdir = afs_mkdir,
58 .rmdir = afs_rmdir,
59 .rename = afs_rename,
00d3b7a4 60 .permission = afs_permission,
416351f2 61 .getattr = afs_getattr,
31143d5d 62 .setattr = afs_setattr,
1da177e4
LT
63};
64
d61dcce2 65const struct dentry_operations afs_fs_dentry_operations = {
1da177e4
LT
66 .d_revalidate = afs_d_revalidate,
67 .d_delete = afs_d_delete,
260a9803 68 .d_release = afs_d_release,
d18610b0 69 .d_automount = afs_d_automount,
1da177e4
LT
70};
71
72#define AFS_DIR_HASHTBL_SIZE 128
73#define AFS_DIR_DIRENT_SIZE 32
74#define AFS_DIRENT_PER_BLOCK 64
75
76union afs_dirent {
77 struct {
78 uint8_t valid;
79 uint8_t unused[1];
80 __be16 hash_next;
81 __be32 vnode;
82 __be32 unique;
83 uint8_t name[16];
84 uint8_t overflow[4]; /* if any char of the name (inc
85 * NUL) reaches here, consume
86 * the next dirent too */
87 } u;
88 uint8_t extended_name[32];
89};
90
91/* AFS directory page header (one at the beginning of every 2048-byte chunk) */
92struct afs_dir_pagehdr {
93 __be16 npages;
94 __be16 magic;
95#define AFS_DIR_MAGIC htons(1234)
96 uint8_t nentries;
97 uint8_t bitmap[8];
98 uint8_t pad[19];
99};
100
101/* directory block layout */
102union afs_dir_block {
103
104 struct afs_dir_pagehdr pagehdr;
105
106 struct {
107 struct afs_dir_pagehdr pagehdr;
108 uint8_t alloc_ctrs[128];
109 /* dir hash table */
110 uint16_t hashtable[AFS_DIR_HASHTBL_SIZE];
111 } hdr;
112
113 union afs_dirent dirents[AFS_DIRENT_PER_BLOCK];
114};
115
116/* layout on a linux VM page */
117struct afs_dir_page {
118 union afs_dir_block blocks[PAGE_SIZE / sizeof(union afs_dir_block)];
119};
120
260a9803 121struct afs_lookup_cookie {
1bbae9f8 122 struct dir_context ctx;
1da177e4 123 struct afs_fid fid;
1bbae9f8 124 struct qstr name;
1da177e4
LT
125 int found;
126};
127
1da177e4
LT
128/*
129 * check that a directory page is valid
130 */
131static inline void afs_dir_check_page(struct inode *dir, struct page *page)
132{
133 struct afs_dir_page *dbuf;
134 loff_t latter;
135 int tmp, qty;
136
137#if 0
138 /* check the page count */
139 qty = desc.size / sizeof(dbuf->blocks[0]);
140 if (qty == 0)
141 goto error;
142
08e0e7c8 143 if (page->index == 0 && qty != ntohs(dbuf->blocks[0].pagehdr.npages)) {
1da177e4 144 printk("kAFS: %s(%lu): wrong number of dir blocks %d!=%hu\n",
530b6412 145 __func__, dir->i_ino, qty,
08e0e7c8 146 ntohs(dbuf->blocks[0].pagehdr.npages));
1da177e4
LT
147 goto error;
148 }
149#endif
150
151 /* determine how many magic numbers there should be in this page */
54b21a79 152 latter = dir->i_size - page_offset(page);
1da177e4
LT
153 if (latter >= PAGE_SIZE)
154 qty = PAGE_SIZE;
155 else
156 qty = latter;
157 qty /= sizeof(union afs_dir_block);
158
159 /* check them */
160 dbuf = page_address(page);
161 for (tmp = 0; tmp < qty; tmp++) {
162 if (dbuf->blocks[tmp].pagehdr.magic != AFS_DIR_MAGIC) {
163 printk("kAFS: %s(%lu): bad magic %d/%d is %04hx\n",
530b6412 164 __func__, dir->i_ino, tmp, qty,
1da177e4
LT
165 ntohs(dbuf->blocks[tmp].pagehdr.magic));
166 goto error;
167 }
168 }
169
170 SetPageChecked(page);
171 return;
172
ec26815a 173error:
1da177e4
LT
174 SetPageChecked(page);
175 SetPageError(page);
ec26815a 176}
1da177e4 177
1da177e4
LT
178/*
179 * discard a page cached in the pagecache
180 */
181static inline void afs_dir_put_page(struct page *page)
182{
183 kunmap(page);
184 page_cache_release(page);
ec26815a 185}
1da177e4 186
1da177e4
LT
187/*
188 * get a page into the pagecache
189 */
00d3b7a4
DH
190static struct page *afs_dir_get_page(struct inode *dir, unsigned long index,
191 struct key *key)
1da177e4
LT
192{
193 struct page *page;
1da177e4
LT
194 _enter("{%lu},%lu", dir->i_ino, index);
195
f6d335c0 196 page = read_cache_page(dir->i_mapping, index, afs_page_filler, key);
1da177e4 197 if (!IS_ERR(page)) {
1da177e4 198 kmap(page);
1da177e4
LT
199 if (!PageChecked(page))
200 afs_dir_check_page(dir, page);
201 if (PageError(page))
202 goto fail;
203 }
204 return page;
205
ec26815a 206fail:
1da177e4 207 afs_dir_put_page(page);
08e0e7c8 208 _leave(" = -EIO");
1da177e4 209 return ERR_PTR(-EIO);
ec26815a 210}
1da177e4 211
1da177e4
LT
212/*
213 * open an AFS directory file
214 */
215static int afs_dir_open(struct inode *inode, struct file *file)
216{
217 _enter("{%lu}", inode->i_ino);
218
2ecd05ae
AD
219 BUILD_BUG_ON(sizeof(union afs_dir_block) != 2048);
220 BUILD_BUG_ON(sizeof(union afs_dirent) != 32);
1da177e4 221
08e0e7c8 222 if (test_bit(AFS_VNODE_DELETED, &AFS_FS_I(inode)->flags))
1da177e4
LT
223 return -ENOENT;
224
00d3b7a4 225 return afs_open(inode, file);
ec26815a 226}
1da177e4 227
1da177e4
LT
228/*
229 * deal with one block in an AFS directory
230 */
1bbae9f8 231static int afs_dir_iterate_block(struct dir_context *ctx,
1da177e4 232 union afs_dir_block *block,
1bbae9f8 233 unsigned blkoff)
1da177e4
LT
234{
235 union afs_dirent *dire;
236 unsigned offset, next, curr;
237 size_t nlen;
1bbae9f8 238 int tmp;
1da177e4 239
1bbae9f8 240 _enter("%u,%x,%p,,",(unsigned)ctx->pos,blkoff,block);
1da177e4 241
1bbae9f8 242 curr = (ctx->pos - blkoff) / sizeof(union afs_dirent);
1da177e4
LT
243
244 /* walk through the block, an entry at a time */
245 for (offset = AFS_DIRENT_PER_BLOCK - block->pagehdr.nentries;
246 offset < AFS_DIRENT_PER_BLOCK;
247 offset = next
248 ) {
249 next = offset + 1;
250
251 /* skip entries marked unused in the bitmap */
252 if (!(block->pagehdr.bitmap[offset / 8] &
253 (1 << (offset % 8)))) {
08e0e7c8 254 _debug("ENT[%Zu.%u]: unused",
1da177e4
LT
255 blkoff / sizeof(union afs_dir_block), offset);
256 if (offset >= curr)
1bbae9f8 257 ctx->pos = blkoff +
1da177e4
LT
258 next * sizeof(union afs_dirent);
259 continue;
260 }
261
262 /* got a valid entry */
263 dire = &block->dirents[offset];
264 nlen = strnlen(dire->u.name,
265 sizeof(*block) -
266 offset * sizeof(union afs_dirent));
267
08e0e7c8 268 _debug("ENT[%Zu.%u]: %s %Zu \"%s\"",
1da177e4
LT
269 blkoff / sizeof(union afs_dir_block), offset,
270 (offset < curr ? "skip" : "fill"),
271 nlen, dire->u.name);
272
273 /* work out where the next possible entry is */
274 for (tmp = nlen; tmp > 15; tmp -= sizeof(union afs_dirent)) {
275 if (next >= AFS_DIRENT_PER_BLOCK) {
276 _debug("ENT[%Zu.%u]:"
277 " %u travelled beyond end dir block"
08e0e7c8 278 " (len %u/%Zu)",
1da177e4
LT
279 blkoff / sizeof(union afs_dir_block),
280 offset, next, tmp, nlen);
281 return -EIO;
282 }
283 if (!(block->pagehdr.bitmap[next / 8] &
284 (1 << (next % 8)))) {
285 _debug("ENT[%Zu.%u]:"
08e0e7c8 286 " %u unmarked extension (len %u/%Zu)",
1da177e4
LT
287 blkoff / sizeof(union afs_dir_block),
288 offset, next, tmp, nlen);
289 return -EIO;
290 }
291
08e0e7c8 292 _debug("ENT[%Zu.%u]: ext %u/%Zu",
1da177e4
LT
293 blkoff / sizeof(union afs_dir_block),
294 next, tmp, nlen);
295 next++;
296 }
297
298 /* skip if starts before the current position */
299 if (offset < curr)
300 continue;
301
302 /* found the next entry */
1bbae9f8 303 if (!dir_emit(ctx, dire->u.name, nlen,
1da177e4 304 ntohl(dire->u.vnode),
1bbae9f8
AV
305 ctx->actor == afs_lookup_filldir ?
306 ntohl(dire->u.unique) : DT_UNKNOWN)) {
1da177e4
LT
307 _leave(" = 0 [full]");
308 return 0;
309 }
310
1bbae9f8 311 ctx->pos = blkoff + next * sizeof(union afs_dirent);
1da177e4
LT
312 }
313
314 _leave(" = 1 [more]");
315 return 1;
ec26815a 316}
1da177e4 317
1da177e4 318/*
08e0e7c8 319 * iterate through the data blob that lists the contents of an AFS directory
1da177e4 320 */
1bbae9f8
AV
321static int afs_dir_iterate(struct inode *dir, struct dir_context *ctx,
322 struct key *key)
1da177e4 323{
08e0e7c8 324 union afs_dir_block *dblock;
1da177e4
LT
325 struct afs_dir_page *dbuf;
326 struct page *page;
327 unsigned blkoff, limit;
328 int ret;
329
1bbae9f8 330 _enter("{%lu},%u,,", dir->i_ino, (unsigned)ctx->pos);
1da177e4 331
08e0e7c8 332 if (test_bit(AFS_VNODE_DELETED, &AFS_FS_I(dir)->flags)) {
1da177e4
LT
333 _leave(" = -ESTALE");
334 return -ESTALE;
335 }
336
337 /* round the file position up to the next entry boundary */
1bbae9f8
AV
338 ctx->pos += sizeof(union afs_dirent) - 1;
339 ctx->pos &= ~(sizeof(union afs_dirent) - 1);
1da177e4
LT
340
341 /* walk through the blocks in sequence */
342 ret = 0;
1bbae9f8
AV
343 while (ctx->pos < dir->i_size) {
344 blkoff = ctx->pos & ~(sizeof(union afs_dir_block) - 1);
1da177e4
LT
345
346 /* fetch the appropriate page from the directory */
00d3b7a4 347 page = afs_dir_get_page(dir, blkoff / PAGE_SIZE, key);
1da177e4
LT
348 if (IS_ERR(page)) {
349 ret = PTR_ERR(page);
350 break;
351 }
352
353 limit = blkoff & ~(PAGE_SIZE - 1);
354
355 dbuf = page_address(page);
356
357 /* deal with the individual blocks stashed on this page */
358 do {
359 dblock = &dbuf->blocks[(blkoff % PAGE_SIZE) /
360 sizeof(union afs_dir_block)];
1bbae9f8 361 ret = afs_dir_iterate_block(ctx, dblock, blkoff);
1da177e4
LT
362 if (ret != 1) {
363 afs_dir_put_page(page);
364 goto out;
365 }
366
367 blkoff += sizeof(union afs_dir_block);
368
1bbae9f8 369 } while (ctx->pos < dir->i_size && blkoff < limit);
1da177e4
LT
370
371 afs_dir_put_page(page);
372 ret = 0;
373 }
374
ec26815a 375out:
1da177e4
LT
376 _leave(" = %d", ret);
377 return ret;
ec26815a 378}
1da177e4 379
1da177e4
LT
380/*
381 * read an AFS directory
382 */
1bbae9f8 383static int afs_readdir(struct file *file, struct dir_context *ctx)
1da177e4 384{
1bbae9f8
AV
385 return afs_dir_iterate(file_inode(file),
386 ctx, file->private_data);
ec26815a 387}
1da177e4 388
1da177e4
LT
389/*
390 * search the directory for a name
391 * - if afs_dir_iterate_block() spots this function, it'll pass the FID
392 * uniquifier through dtype
393 */
260a9803
DH
394static int afs_lookup_filldir(void *_cookie, const char *name, int nlen,
395 loff_t fpos, u64 ino, unsigned dtype)
1da177e4 396{
260a9803 397 struct afs_lookup_cookie *cookie = _cookie;
1da177e4 398
1bbae9f8
AV
399 _enter("{%s,%u},%s,%u,,%llu,%u",
400 cookie->name.name, cookie->name.len, name, nlen,
ba3e0e1a 401 (unsigned long long) ino, dtype);
1da177e4 402
08e0e7c8
DH
403 /* insanity checks first */
404 BUILD_BUG_ON(sizeof(union afs_dir_block) != 2048);
405 BUILD_BUG_ON(sizeof(union afs_dirent) != 32);
406
1bbae9f8
AV
407 if (cookie->name.len != nlen ||
408 memcmp(cookie->name.name, name, nlen) != 0) {
1da177e4
LT
409 _leave(" = 0 [no]");
410 return 0;
411 }
412
413 cookie->fid.vnode = ino;
414 cookie->fid.unique = dtype;
415 cookie->found = 1;
416
417 _leave(" = -1 [found]");
418 return -1;
ec26815a 419}
1da177e4 420
1da177e4 421/*
08e0e7c8 422 * do a lookup in a directory
260a9803 423 * - just returns the FID the dentry name maps to if found
1da177e4 424 */
08e0e7c8 425static int afs_do_lookup(struct inode *dir, struct dentry *dentry,
00d3b7a4 426 struct afs_fid *fid, struct key *key)
1da177e4 427{
1bbae9f8
AV
428 struct afs_super_info *as = dir->i_sb->s_fs_info;
429 struct afs_lookup_cookie cookie = {
430 .ctx.actor = afs_lookup_filldir,
431 .name = dentry->d_name,
432 .fid.vid = as->volume->vid
433 };
1da177e4
LT
434 int ret;
435
08e0e7c8 436 _enter("{%lu},%p{%s},", dir->i_ino, dentry, dentry->d_name.name);
1da177e4 437
1da177e4 438 /* search the directory */
1bbae9f8 439 ret = afs_dir_iterate(dir, &cookie.ctx, key);
1da177e4 440 if (ret < 0) {
08e0e7c8
DH
441 _leave(" = %d [iter]", ret);
442 return ret;
1da177e4
LT
443 }
444
445 ret = -ENOENT;
446 if (!cookie.found) {
08e0e7c8
DH
447 _leave(" = -ENOENT [not found]");
448 return -ENOENT;
1da177e4
LT
449 }
450
08e0e7c8
DH
451 *fid = cookie.fid;
452 _leave(" = 0 { vn=%u u=%u }", fid->vnode, fid->unique);
453 return 0;
454}
455
bec5eb61 456/*
457 * Try to auto mount the mountpoint with pseudo directory, if the autocell
458 * operation is setted.
459 */
460static struct inode *afs_try_auto_mntpt(
461 int ret, struct dentry *dentry, struct inode *dir, struct key *key,
462 struct afs_fid *fid)
463{
464 const char *devname = dentry->d_name.name;
465 struct afs_vnode *vnode = AFS_FS_I(dir);
466 struct inode *inode;
467
468 _enter("%d, %p{%s}, {%x:%u}, %p",
469 ret, dentry, devname, vnode->fid.vid, vnode->fid.vnode, key);
470
471 if (ret != -ENOENT ||
472 !test_bit(AFS_VNODE_AUTOCELL, &vnode->flags))
473 goto out;
474
475 inode = afs_iget_autocell(dir, devname, strlen(devname), key);
476 if (IS_ERR(inode)) {
477 ret = PTR_ERR(inode);
478 goto out;
479 }
480
481 *fid = AFS_FS_I(inode)->fid;
482 _leave("= %p", inode);
483 return inode;
484
485out:
486 _leave("= %d", ret);
487 return ERR_PTR(ret);
488}
489
08e0e7c8
DH
490/*
491 * look up an entry in a directory
492 */
260a9803 493static struct dentry *afs_lookup(struct inode *dir, struct dentry *dentry,
00cd8dd3 494 unsigned int flags)
08e0e7c8
DH
495{
496 struct afs_vnode *vnode;
497 struct afs_fid fid;
498 struct inode *inode;
00d3b7a4 499 struct key *key;
08e0e7c8
DH
500 int ret;
501
260a9803
DH
502 vnode = AFS_FS_I(dir);
503
416351f2 504 _enter("{%x:%u},%p{%s},",
260a9803
DH
505 vnode->fid.vid, vnode->fid.vnode, dentry, dentry->d_name.name);
506
507 ASSERTCMP(dentry->d_inode, ==, NULL);
08e0e7c8 508
45222b9e 509 if (dentry->d_name.len >= AFSNAMEMAX) {
08e0e7c8
DH
510 _leave(" = -ENAMETOOLONG");
511 return ERR_PTR(-ENAMETOOLONG);
512 }
513
08e0e7c8
DH
514 if (test_bit(AFS_VNODE_DELETED, &vnode->flags)) {
515 _leave(" = -ESTALE");
516 return ERR_PTR(-ESTALE);
517 }
518
00d3b7a4
DH
519 key = afs_request_key(vnode->volume->cell);
520 if (IS_ERR(key)) {
521 _leave(" = %ld [key]", PTR_ERR(key));
e231c2ee 522 return ERR_CAST(key);
00d3b7a4
DH
523 }
524
260a9803
DH
525 ret = afs_validate(vnode, key);
526 if (ret < 0) {
527 key_put(key);
528 _leave(" = %d [val]", ret);
529 return ERR_PTR(ret);
530 }
531
00d3b7a4 532 ret = afs_do_lookup(dir, dentry, &fid, key);
1da177e4 533 if (ret < 0) {
bec5eb61 534 inode = afs_try_auto_mntpt(ret, dentry, dir, key, &fid);
535 if (!IS_ERR(inode)) {
536 key_put(key);
537 goto success;
538 }
539
540 ret = PTR_ERR(inode);
00d3b7a4 541 key_put(key);
260a9803
DH
542 if (ret == -ENOENT) {
543 d_add(dentry, NULL);
544 _leave(" = NULL [negative]");
545 return NULL;
546 }
08e0e7c8 547 _leave(" = %d [do]", ret);
1da177e4
LT
548 return ERR_PTR(ret);
549 }
260a9803 550 dentry->d_fsdata = (void *)(unsigned long) vnode->status.data_version;
1da177e4 551
08e0e7c8 552 /* instantiate the dentry */
260a9803 553 inode = afs_iget(dir->i_sb, key, &fid, NULL, NULL);
00d3b7a4 554 key_put(key);
08e0e7c8
DH
555 if (IS_ERR(inode)) {
556 _leave(" = %ld", PTR_ERR(inode));
e231c2ee 557 return ERR_CAST(inode);
08e0e7c8
DH
558 }
559
bec5eb61 560success:
1da177e4 561 d_add(dentry, inode);
d6e43f75 562 _leave(" = 0 { vn=%u u=%u } -> { ino=%lu v=%u }",
08e0e7c8
DH
563 fid.vnode,
564 fid.unique,
1da177e4 565 dentry->d_inode->i_ino,
d6e43f75 566 dentry->d_inode->i_generation);
1da177e4
LT
567
568 return NULL;
ec26815a 569}
1da177e4 570
1da177e4
LT
571/*
572 * check that a dentry lookup hit has found a valid entry
573 * - NOTE! the hit can be a negative hit too, so we can't assume we have an
574 * inode
1da177e4 575 */
0b728e19 576static int afs_d_revalidate(struct dentry *dentry, unsigned int flags)
1da177e4 577{
260a9803 578 struct afs_vnode *vnode, *dir;
dd0d9a46 579 struct afs_fid uninitialized_var(fid);
1da177e4 580 struct dentry *parent;
00d3b7a4 581 struct key *key;
260a9803 582 void *dir_version;
1da177e4
LT
583 int ret;
584
0b728e19 585 if (flags & LOOKUP_RCU)
34286d66
NP
586 return -ECHILD;
587
08e0e7c8
DH
588 vnode = AFS_FS_I(dentry->d_inode);
589
260a9803
DH
590 if (dentry->d_inode)
591 _enter("{v={%x:%u} n=%s fl=%lx},",
592 vnode->fid.vid, vnode->fid.vnode, dentry->d_name.name,
593 vnode->flags);
594 else
595 _enter("{neg n=%s}", dentry->d_name.name);
1da177e4 596
260a9803 597 key = afs_request_key(AFS_FS_S(dentry->d_sb)->volume->cell);
00d3b7a4
DH
598 if (IS_ERR(key))
599 key = NULL;
600
1da177e4 601 /* lock down the parent dentry so we can peer at it */
08e0e7c8 602 parent = dget_parent(dentry);
260a9803 603 if (!parent->d_inode)
1da177e4
LT
604 goto out_bad;
605
260a9803 606 dir = AFS_FS_I(parent->d_inode);
1da177e4 607
260a9803
DH
608 /* validate the parent directory */
609 if (test_bit(AFS_VNODE_MODIFIED, &dir->flags))
610 afs_validate(dir, key);
611
612 if (test_bit(AFS_VNODE_DELETED, &dir->flags)) {
1da177e4
LT
613 _debug("%s: parent dir deleted", dentry->d_name.name);
614 goto out_bad;
615 }
616
260a9803
DH
617 dir_version = (void *) (unsigned long) dir->status.data_version;
618 if (dentry->d_fsdata == dir_version)
619 goto out_valid; /* the dir contents are unchanged */
1da177e4 620
260a9803
DH
621 _debug("dir modified");
622
623 /* search the directory for this vnode */
624 ret = afs_do_lookup(&dir->vfs_inode, dentry, &fid, key);
625 switch (ret) {
626 case 0:
627 /* the filename maps to something */
628 if (!dentry->d_inode)
629 goto out_bad;
630 if (is_bad_inode(dentry->d_inode)) {
631 printk("kAFS: afs_d_revalidate: %s/%s has bad inode\n",
632 parent->d_name.name, dentry->d_name.name);
1da177e4
LT
633 goto out_bad;
634 }
635
1da177e4
LT
636 /* if the vnode ID has changed, then the dirent points to a
637 * different file */
08e0e7c8
DH
638 if (fid.vnode != vnode->fid.vnode) {
639 _debug("%s: dirent changed [%u != %u]",
640 dentry->d_name.name, fid.vnode,
641 vnode->fid.vnode);
1da177e4
LT
642 goto not_found;
643 }
644
645 /* if the vnode ID uniqifier has changed, then the file has
260a9803
DH
646 * been deleted and replaced, and the original vnode ID has
647 * been reused */
08e0e7c8 648 if (fid.unique != vnode->fid.unique) {
d6e43f75 649 _debug("%s: file deleted (uq %u -> %u I:%u)",
08e0e7c8 650 dentry->d_name.name, fid.unique,
7a224228 651 vnode->fid.unique,
d6e43f75 652 dentry->d_inode->i_generation);
08e0e7c8
DH
653 spin_lock(&vnode->lock);
654 set_bit(AFS_VNODE_DELETED, &vnode->flags);
655 spin_unlock(&vnode->lock);
260a9803 656 goto not_found;
1da177e4 657 }
260a9803 658 goto out_valid;
08e0e7c8 659
260a9803
DH
660 case -ENOENT:
661 /* the filename is unknown */
662 _debug("%s: dirent not found", dentry->d_name.name);
663 if (dentry->d_inode)
664 goto not_found;
665 goto out_valid;
1da177e4 666
260a9803
DH
667 default:
668 _debug("failed to iterate dir %s: %d",
669 parent->d_name.name, ret);
08e0e7c8
DH
670 goto out_bad;
671 }
672
ec26815a 673out_valid:
260a9803
DH
674 dentry->d_fsdata = dir_version;
675out_skip:
1da177e4 676 dput(parent);
00d3b7a4 677 key_put(key);
1da177e4
LT
678 _leave(" = 1 [valid]");
679 return 1;
680
681 /* the dirent, if it exists, now points to a different vnode */
ec26815a 682not_found:
1da177e4
LT
683 spin_lock(&dentry->d_lock);
684 dentry->d_flags |= DCACHE_NFSFS_RENAMED;
685 spin_unlock(&dentry->d_lock);
686
ec26815a 687out_bad:
ba812380
MS
688 /* don't unhash if we have submounts */
689 if (check_submounts_and_drop(dentry) != 0)
690 goto out_skip;
1da177e4 691
1da177e4 692 _debug("dropping dentry %s/%s",
08e0e7c8 693 parent->d_name.name, dentry->d_name.name);
1da177e4 694 dput(parent);
00d3b7a4 695 key_put(key);
1da177e4
LT
696
697 _leave(" = 0 [bad]");
698 return 0;
ec26815a 699}
1da177e4 700
1da177e4
LT
701/*
702 * allow the VFS to enquire as to whether a dentry should be unhashed (mustn't
703 * sleep)
704 * - called from dput() when d_count is going to 0.
705 * - return 1 to request dentry be unhashed, 0 otherwise
706 */
fe15ce44 707static int afs_d_delete(const struct dentry *dentry)
1da177e4
LT
708{
709 _enter("%s", dentry->d_name.name);
710
711 if (dentry->d_flags & DCACHE_NFSFS_RENAMED)
712 goto zap;
713
08e0e7c8 714 if (dentry->d_inode &&
bec5eb61 715 (test_bit(AFS_VNODE_DELETED, &AFS_FS_I(dentry->d_inode)->flags) ||
716 test_bit(AFS_VNODE_PSEUDODIR, &AFS_FS_I(dentry->d_inode)->flags)))
717 goto zap;
1da177e4
LT
718
719 _leave(" = 0 [keep]");
720 return 0;
721
ec26815a 722zap:
1da177e4
LT
723 _leave(" = 1 [zap]");
724 return 1;
ec26815a 725}
260a9803
DH
726
727/*
728 * handle dentry release
729 */
730static void afs_d_release(struct dentry *dentry)
731{
732 _enter("%s", dentry->d_name.name);
733}
734
735/*
736 * create a directory on an AFS filesystem
737 */
18bb1db3 738static int afs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
260a9803
DH
739{
740 struct afs_file_status status;
741 struct afs_callback cb;
742 struct afs_server *server;
743 struct afs_vnode *dvnode, *vnode;
744 struct afs_fid fid;
745 struct inode *inode;
746 struct key *key;
747 int ret;
748
749 dvnode = AFS_FS_I(dir);
750
18bb1db3 751 _enter("{%x:%u},{%s},%ho",
260a9803
DH
752 dvnode->fid.vid, dvnode->fid.vnode, dentry->d_name.name, mode);
753
260a9803
DH
754 key = afs_request_key(dvnode->volume->cell);
755 if (IS_ERR(key)) {
756 ret = PTR_ERR(key);
757 goto error;
758 }
759
760 mode |= S_IFDIR;
761 ret = afs_vnode_create(dvnode, key, dentry->d_name.name,
762 mode, &fid, &status, &cb, &server);
763 if (ret < 0)
764 goto mkdir_error;
765
766 inode = afs_iget(dir->i_sb, key, &fid, &status, &cb);
767 if (IS_ERR(inode)) {
768 /* ENOMEM at a really inconvenient time - just abandon the new
769 * directory on the server */
770 ret = PTR_ERR(inode);
771 goto iget_error;
772 }
773
774 /* apply the status report we've got for the new vnode */
775 vnode = AFS_FS_I(inode);
776 spin_lock(&vnode->lock);
777 vnode->update_cnt++;
778 spin_unlock(&vnode->lock);
779 afs_vnode_finalise_status_update(vnode, server);
780 afs_put_server(server);
781
782 d_instantiate(dentry, inode);
783 if (d_unhashed(dentry)) {
784 _debug("not hashed");
785 d_rehash(dentry);
786 }
787 key_put(key);
788 _leave(" = 0");
789 return 0;
790
791iget_error:
792 afs_put_server(server);
793mkdir_error:
794 key_put(key);
795error:
796 d_drop(dentry);
797 _leave(" = %d", ret);
798 return ret;
799}
800
801/*
802 * remove a directory from an AFS filesystem
803 */
804static int afs_rmdir(struct inode *dir, struct dentry *dentry)
805{
806 struct afs_vnode *dvnode, *vnode;
807 struct key *key;
808 int ret;
809
810 dvnode = AFS_FS_I(dir);
811
416351f2 812 _enter("{%x:%u},{%s}",
260a9803
DH
813 dvnode->fid.vid, dvnode->fid.vnode, dentry->d_name.name);
814
260a9803
DH
815 key = afs_request_key(dvnode->volume->cell);
816 if (IS_ERR(key)) {
817 ret = PTR_ERR(key);
818 goto error;
819 }
820
821 ret = afs_vnode_remove(dvnode, key, dentry->d_name.name, true);
822 if (ret < 0)
823 goto rmdir_error;
824
825 if (dentry->d_inode) {
826 vnode = AFS_FS_I(dentry->d_inode);
827 clear_nlink(&vnode->vfs_inode);
828 set_bit(AFS_VNODE_DELETED, &vnode->flags);
829 afs_discard_callback_on_delete(vnode);
830 }
831
832 key_put(key);
833 _leave(" = 0");
834 return 0;
835
836rmdir_error:
837 key_put(key);
838error:
839 _leave(" = %d", ret);
840 return ret;
841}
842
843/*
844 * remove a file from an AFS filesystem
845 */
846static int afs_unlink(struct inode *dir, struct dentry *dentry)
847{
848 struct afs_vnode *dvnode, *vnode;
849 struct key *key;
850 int ret;
851
852 dvnode = AFS_FS_I(dir);
853
416351f2 854 _enter("{%x:%u},{%s}",
260a9803
DH
855 dvnode->fid.vid, dvnode->fid.vnode, dentry->d_name.name);
856
857 ret = -ENAMETOOLONG;
45222b9e 858 if (dentry->d_name.len >= AFSNAMEMAX)
260a9803
DH
859 goto error;
860
861 key = afs_request_key(dvnode->volume->cell);
862 if (IS_ERR(key)) {
863 ret = PTR_ERR(key);
864 goto error;
865 }
866
867 if (dentry->d_inode) {
868 vnode = AFS_FS_I(dentry->d_inode);
869
870 /* make sure we have a callback promise on the victim */
871 ret = afs_validate(vnode, key);
872 if (ret < 0)
873 goto error;
874 }
875
876 ret = afs_vnode_remove(dvnode, key, dentry->d_name.name, false);
877 if (ret < 0)
878 goto remove_error;
879
880 if (dentry->d_inode) {
881 /* if the file wasn't deleted due to excess hard links, the
882 * fileserver will break the callback promise on the file - if
883 * it had one - before it returns to us, and if it was deleted,
884 * it won't
885 *
886 * however, if we didn't have a callback promise outstanding,
887 * or it was outstanding on a different server, then it won't
888 * break it either...
889 */
890 vnode = AFS_FS_I(dentry->d_inode);
891 if (test_bit(AFS_VNODE_DELETED, &vnode->flags))
892 _debug("AFS_VNODE_DELETED");
893 if (test_bit(AFS_VNODE_CB_BROKEN, &vnode->flags))
894 _debug("AFS_VNODE_CB_BROKEN");
895 set_bit(AFS_VNODE_CB_BROKEN, &vnode->flags);
896 ret = afs_validate(vnode, key);
897 _debug("nlink %d [val %d]", vnode->vfs_inode.i_nlink, ret);
898 }
899
900 key_put(key);
901 _leave(" = 0");
902 return 0;
903
904remove_error:
905 key_put(key);
906error:
907 _leave(" = %d", ret);
908 return ret;
909}
910
911/*
912 * create a regular file on an AFS filesystem
913 */
4acdaf27 914static int afs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
ebfc3b49 915 bool excl)
260a9803
DH
916{
917 struct afs_file_status status;
918 struct afs_callback cb;
919 struct afs_server *server;
920 struct afs_vnode *dvnode, *vnode;
921 struct afs_fid fid;
922 struct inode *inode;
923 struct key *key;
924 int ret;
925
926 dvnode = AFS_FS_I(dir);
927
4acdaf27 928 _enter("{%x:%u},{%s},%ho,",
260a9803
DH
929 dvnode->fid.vid, dvnode->fid.vnode, dentry->d_name.name, mode);
930
260a9803
DH
931 key = afs_request_key(dvnode->volume->cell);
932 if (IS_ERR(key)) {
933 ret = PTR_ERR(key);
934 goto error;
935 }
936
937 mode |= S_IFREG;
938 ret = afs_vnode_create(dvnode, key, dentry->d_name.name,
939 mode, &fid, &status, &cb, &server);
940 if (ret < 0)
941 goto create_error;
942
943 inode = afs_iget(dir->i_sb, key, &fid, &status, &cb);
944 if (IS_ERR(inode)) {
945 /* ENOMEM at a really inconvenient time - just abandon the new
946 * directory on the server */
947 ret = PTR_ERR(inode);
948 goto iget_error;
949 }
950
951 /* apply the status report we've got for the new vnode */
952 vnode = AFS_FS_I(inode);
953 spin_lock(&vnode->lock);
954 vnode->update_cnt++;
955 spin_unlock(&vnode->lock);
956 afs_vnode_finalise_status_update(vnode, server);
957 afs_put_server(server);
958
959 d_instantiate(dentry, inode);
960 if (d_unhashed(dentry)) {
961 _debug("not hashed");
962 d_rehash(dentry);
963 }
964 key_put(key);
965 _leave(" = 0");
966 return 0;
967
968iget_error:
969 afs_put_server(server);
970create_error:
971 key_put(key);
972error:
973 d_drop(dentry);
974 _leave(" = %d", ret);
975 return ret;
976}
977
978/*
979 * create a hard link between files in an AFS filesystem
980 */
981static int afs_link(struct dentry *from, struct inode *dir,
982 struct dentry *dentry)
983{
984 struct afs_vnode *dvnode, *vnode;
985 struct key *key;
986 int ret;
987
988 vnode = AFS_FS_I(from->d_inode);
989 dvnode = AFS_FS_I(dir);
990
416351f2 991 _enter("{%x:%u},{%x:%u},{%s}",
260a9803
DH
992 vnode->fid.vid, vnode->fid.vnode,
993 dvnode->fid.vid, dvnode->fid.vnode,
994 dentry->d_name.name);
995
260a9803
DH
996 key = afs_request_key(dvnode->volume->cell);
997 if (IS_ERR(key)) {
998 ret = PTR_ERR(key);
999 goto error;
1000 }
1001
1002 ret = afs_vnode_link(dvnode, vnode, key, dentry->d_name.name);
1003 if (ret < 0)
1004 goto link_error;
1005
7de9c6ee 1006 ihold(&vnode->vfs_inode);
260a9803
DH
1007 d_instantiate(dentry, &vnode->vfs_inode);
1008 key_put(key);
1009 _leave(" = 0");
1010 return 0;
1011
1012link_error:
1013 key_put(key);
1014error:
1015 d_drop(dentry);
1016 _leave(" = %d", ret);
1017 return ret;
1018}
1019
1020/*
1021 * create a symlink in an AFS filesystem
1022 */
1023static int afs_symlink(struct inode *dir, struct dentry *dentry,
1024 const char *content)
1025{
1026 struct afs_file_status status;
1027 struct afs_server *server;
1028 struct afs_vnode *dvnode, *vnode;
1029 struct afs_fid fid;
1030 struct inode *inode;
1031 struct key *key;
1032 int ret;
1033
1034 dvnode = AFS_FS_I(dir);
1035
416351f2 1036 _enter("{%x:%u},{%s},%s",
260a9803
DH
1037 dvnode->fid.vid, dvnode->fid.vnode, dentry->d_name.name,
1038 content);
1039
260a9803 1040 ret = -EINVAL;
45222b9e 1041 if (strlen(content) >= AFSPATHMAX)
260a9803
DH
1042 goto error;
1043
1044 key = afs_request_key(dvnode->volume->cell);
1045 if (IS_ERR(key)) {
1046 ret = PTR_ERR(key);
1047 goto error;
1048 }
1049
1050 ret = afs_vnode_symlink(dvnode, key, dentry->d_name.name, content,
1051 &fid, &status, &server);
1052 if (ret < 0)
1053 goto create_error;
1054
1055 inode = afs_iget(dir->i_sb, key, &fid, &status, NULL);
1056 if (IS_ERR(inode)) {
1057 /* ENOMEM at a really inconvenient time - just abandon the new
1058 * directory on the server */
1059 ret = PTR_ERR(inode);
1060 goto iget_error;
1061 }
1062
1063 /* apply the status report we've got for the new vnode */
1064 vnode = AFS_FS_I(inode);
1065 spin_lock(&vnode->lock);
1066 vnode->update_cnt++;
1067 spin_unlock(&vnode->lock);
1068 afs_vnode_finalise_status_update(vnode, server);
1069 afs_put_server(server);
1070
1071 d_instantiate(dentry, inode);
1072 if (d_unhashed(dentry)) {
1073 _debug("not hashed");
1074 d_rehash(dentry);
1075 }
1076 key_put(key);
1077 _leave(" = 0");
1078 return 0;
1079
1080iget_error:
1081 afs_put_server(server);
1082create_error:
1083 key_put(key);
1084error:
1085 d_drop(dentry);
1086 _leave(" = %d", ret);
1087 return ret;
1088}
1089
1090/*
1091 * rename a file in an AFS filesystem and/or move it between directories
1092 */
1093static int afs_rename(struct inode *old_dir, struct dentry *old_dentry,
1094 struct inode *new_dir, struct dentry *new_dentry)
1095{
1096 struct afs_vnode *orig_dvnode, *new_dvnode, *vnode;
1097 struct key *key;
1098 int ret;
1099
1100 vnode = AFS_FS_I(old_dentry->d_inode);
1101 orig_dvnode = AFS_FS_I(old_dir);
1102 new_dvnode = AFS_FS_I(new_dir);
1103
416351f2 1104 _enter("{%x:%u},{%x:%u},{%x:%u},{%s}",
260a9803
DH
1105 orig_dvnode->fid.vid, orig_dvnode->fid.vnode,
1106 vnode->fid.vid, vnode->fid.vnode,
1107 new_dvnode->fid.vid, new_dvnode->fid.vnode,
1108 new_dentry->d_name.name);
1109
260a9803
DH
1110 key = afs_request_key(orig_dvnode->volume->cell);
1111 if (IS_ERR(key)) {
1112 ret = PTR_ERR(key);
1113 goto error;
1114 }
1115
1116 ret = afs_vnode_rename(orig_dvnode, new_dvnode, key,
1117 old_dentry->d_name.name,
1118 new_dentry->d_name.name);
1119 if (ret < 0)
1120 goto rename_error;
1121 key_put(key);
1122 _leave(" = 0");
1123 return 0;
1124
1125rename_error:
1126 key_put(key);
1127error:
1128 d_drop(new_dentry);
1129 _leave(" = %d", ret);
1130 return ret;
1131}