1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
|
/*
* linux/fs/nfs/dir.c
*
* Copyright (C) 1992 Rick Sladkey
*
* nfs directory handling functions
*
* 10 Apr 1996 Added silly rename for unlink --okir
* 28 Sep 1996 Improved directory cache --okir
* 23 Aug 1997 Claus Heine claus@momo.math.rwth-aachen.de
* Re-implemented silly rename for unlink, newly implemented
* silly rename for nfs_rename() following the suggestions
* of Olaf Kirch (okir) found in this file.
* Following Linus comments on my original hack, this version
* depends only on the dcache stuff and doesn't touch the inode
* layer (iput() and friends).
*/
#include <linux/sched.h>
#include <linux/errno.h>
#include <linux/stat.h>
#include <linux/fcntl.h>
#include <linux/string.h>
#include <linux/kernel.h>
#include <linux/malloc.h>
#include <linux/mm.h>
#include <linux/sunrpc/types.h>
#include <linux/nfs_fs.h>
#include <asm/segment.h> /* for fs functions */
/*
* Head for a dircache entry. Currently still very simple; when
* the cache grows larger, we will need a LRU list.
*/
struct nfs_dirent {
dev_t dev; /* device number */
ino_t ino; /* inode number */
u32 cookie; /* cooke of first entry */
unsigned short valid : 1, /* data is valid */
locked : 1; /* entry locked */
unsigned int size; /* # of entries */
unsigned long age; /* last used */
unsigned long mtime; /* last attr stamp */
struct wait_queue * wait;
struct nfs_entry * entry;
};
static int nfs_dir_open(struct inode * inode, struct file * file);
static long nfs_dir_read(struct inode *, struct file *, char *, unsigned long);
static int nfs_readdir(struct file *, void *, filldir_t);
static int nfs_lookup(struct inode *, struct dentry *);
static int nfs_create(struct inode *, struct dentry *, int);
static int nfs_mkdir(struct inode *, struct dentry *, int);
static int nfs_rmdir(struct inode *, struct dentry *);
static int nfs_unlink(struct inode *, struct dentry *);
static int nfs_symlink(struct inode *, struct dentry *, const char *);
static int nfs_link(struct inode *, struct inode *, struct dentry *);
static int nfs_mknod(struct inode *, struct dentry *, int, int);
static int nfs_rename(struct inode *, struct dentry *, struct inode *, struct dentry *);
static struct file_operations nfs_dir_operations = {
NULL, /* lseek - default */
nfs_dir_read, /* read - bad */
NULL, /* write - bad */
nfs_readdir, /* readdir */
NULL, /* select - default */
NULL, /* ioctl - default */
NULL, /* mmap */
nfs_dir_open, /* open - revalidate */
NULL, /* no special release code */
NULL /* fsync */
};
struct inode_operations nfs_dir_inode_operations = {
&nfs_dir_operations, /* default directory file-ops */
nfs_create, /* create */
nfs_lookup, /* lookup */
nfs_link, /* link */
nfs_unlink, /* unlink */
nfs_symlink, /* symlink */
nfs_mkdir, /* mkdir */
nfs_rmdir, /* rmdir */
nfs_mknod, /* mknod */
nfs_rename, /* rename */
NULL, /* readlink */
NULL, /* follow_link */
NULL, /* readpage */
NULL, /* writepage */
NULL, /* bmap */
NULL, /* truncate */
NULL, /* permission */
NULL, /* smap */
NULL, /* updatepage */
nfs_revalidate, /* revalidate */
};
static int
nfs_dir_open(struct inode *dir, struct file *file)
{
dfprintk(VFS, "NFS: nfs_dir_open(%x/%ld)\n", dir->i_dev, dir->i_ino);
return nfs_revalidate_inode(NFS_SERVER(dir), dir);
}
static long
nfs_dir_read(struct inode *inode, struct file *filp, char *buf, unsigned long count)
{
return -EISDIR;
}
static struct nfs_dirent dircache[NFS_MAX_DIRCACHE];
/*
* We need to do caching of directory entries to prevent an
* incredible amount of RPC traffic. Only the most recent open
* directory is cached. This seems sufficient for most purposes.
* Technically, we ought to flush the cache on close but this is
* not a problem in practice.
*
* XXX: Do proper directory caching by stuffing data into the
* page cache (may require some fiddling for rsize < PAGE_SIZE).
*/
static int nfs_readdir(struct file *filp, void *dirent, filldir_t filldir)
{
static struct wait_queue *readdir_wait = NULL;
struct wait_queue **waitp = NULL;
struct nfs_dirent *cache, *free;
struct nfs_entry *entry;
unsigned long age, dead;
u32 cookie;
int ismydir, result;
int i, j, index = 0;
struct inode *inode = filp->f_dentry->d_inode;
dfprintk(VFS, "NFS: nfs_readdir(%x/%ld)\n", inode->i_dev, inode->i_ino);
if (!inode || !S_ISDIR(inode->i_mode)) {
printk("nfs_readdir: inode is NULL or not a directory\n");
return -EBADF;
}
if ((result = nfs_revalidate_inode(NFS_SERVER(inode), inode)) < 0)
return result;
/*
* Try to find the entry in the cache
*/
again:
if (waitp) {
interruptible_sleep_on(waitp);
if (current->signal & ~current->blocked)
return -ERESTARTSYS;
waitp = NULL;
}
cookie = filp->f_pos;
entry = NULL;
free = NULL;
age = ~(unsigned long) 0;
dead = jiffies - NFS_ATTRTIMEO(inode);
for (i = 0, cache = dircache; i < NFS_MAX_DIRCACHE; i++, cache++) {
/*
dprintk("NFS: dircache[%d] valid %d locked %d\n",
i, cache->valid, cache->locked);
*/
ismydir = (cache->dev == inode->i_dev
&& cache->ino == inode->i_ino);
if (cache->locked) {
if (!ismydir || cache->cookie != cookie)
continue;
dfprintk(DIRCACHE, "NFS: waiting on dircache entry\n");
waitp = &cache->wait;
goto again;
}
if (ismydir && cache->mtime != NFS_OLDMTIME(inode))
cache->valid = 0;
if (!cache->valid || cache->age < dead) {
free = cache;
age = 0;
} else if (cache->age < age) {
free = cache;
age = cache->age;
}
if (!ismydir || !cache->valid)
continue;
if (cache->cookie == cookie && cache->size > 0) {
entry = cache->entry + (index = 0);
cache->locked = 1;
break;
}
for (j = 0; j < cache->size; j++) {
/*
dprintk("NFS: examing entry %.*s @%d\n",
(int) cache->entry[j].length,
cache->entry[j].name,
cache->entry[j].cookie);
*/
if (cache->entry[j].cookie != cookie)
continue;
if (j < cache->size - 1) {
entry = cache->entry + (index = j + 1);
} else if (cache->entry[j].eof) {
return 0;
}
break;
}
if (entry) {
dfprintk(DIRCACHE, "NFS: found dircache entry %d\n",
(int)(cache - dircache));
cache->locked = 1;
break;
}
}
/*
* Okay, entry not present in cache, or locked and inaccessible.
* Set up the cache entry and attempt a READDIR call.
*/
if (entry == NULL) {
if ((cache = free) == NULL) {
dfprintk(DIRCACHE, "NFS: dircache contention\n");
waitp = &readdir_wait;
goto again;
}
dfprintk(DIRCACHE, "NFS: using free dircache entry %d\n",
(int)(free - dircache));
cache->cookie = cookie;
cache->locked = 1;
cache->valid = 0;
cache->dev = inode->i_dev;
cache->ino = inode->i_ino;
if (!cache->entry) {
cache->entry = (struct nfs_entry *)
get_free_page(GFP_KERNEL);
if (!cache->entry) {
result = -ENOMEM;
goto done;
}
}
result = nfs_proc_readdir(NFS_SERVER(inode), NFS_FH(inode),
cookie, PAGE_SIZE, cache->entry);
if (result <= 0)
goto done;
cache->size = result;
cache->valid = 1;
entry = cache->entry + (index = 0);
}
cache->mtime = NFS_OLDMTIME(inode);
cache->age = jiffies;
/*
* Yowza! We have a cache entry...
*/
while (index < cache->size) {
int nextpos = entry->cookie;
/*
dprintk("NFS: filldir(%p, %.*s, %d, %d, %x, eof %x)\n", entry,
(int) entry->length, entry->name, entry->length,
(unsigned int) filp->f_pos,
entry->fileid, entry->eof);
*/
if (filldir(dirent, entry->name, entry->length, cookie, entry->fileid) < 0)
break;
cookie = nextpos;
if (nextpos != entry->cookie) {
printk("nfs_readdir: shouldn't happen!\n");
break;
}
index++;
entry++;
}
filp->f_pos = cookie;
result = 0;
/* XXX: May want to kick async readdir-ahead here. Not too hard
* to do. */
done:
dfprintk(DIRCACHE, "NFS: nfs_readdir complete\n");
cache->locked = 0;
wake_up(&cache->wait);
wake_up(&readdir_wait);
return result;
}
/*
* Invalidate dircache entries for inode
*/
void
nfs_invalidate_dircache(struct inode *inode)
{
struct nfs_dirent *cache;
dev_t dev = inode->i_dev;
ino_t ino = inode->i_ino;
int i;
dfprintk(DIRCACHE, "NFS: invalidate dircache for %x/%ld\n", dev, (long)ino);
for (i = 0, cache = dircache; i < NFS_MAX_DIRCACHE; i++, cache++) {
if (!cache->locked && cache->dev == dev && cache->ino == ino)
cache->valid = 0; /* brute force */
}
}
/*
* Free directory cache memory
* Called from cleanup_module
*/
void
nfs_free_dircache(void)
{
struct nfs_dirent *cache;
int i;
dfprintk(DIRCACHE, "NFS: freeing dircache\n");
for (i = 0, cache = dircache; i < NFS_MAX_DIRCACHE; i++, cache++) {
cache->valid = 0;
if (cache->locked) {
printk("nfs_kfree_cache: locked entry in dircache!\n");
continue;
}
if (cache->entry)
free_page((unsigned long) cache->entry);
cache->entry = NULL;
}
}
/*
* This is called every time the dcache has a lookup hit,
* and we should check whether we can really trust that
* lookup.
*
* NOTE! The hit can be a negative hit too, don't assume
* we have an inode!
*
* The decision to drop the dentry should probably be
* smarter than this. Right now we believe in directories
* for 10 seconds, and in normal files for five..
*/
static int nfs_lookup_revalidate(struct dentry * dentry)
{
unsigned long time = jiffies - dentry->d_time;
unsigned long max = 5*HZ;
if (dentry->d_inode && S_ISDIR(dentry->d_inode->i_mode))
max = 10*HZ;
return time < max;
}
static void nfs_silly_delete(struct dentry *);
static struct dentry_operations nfs_dentry_operations = {
nfs_lookup_revalidate,
0, /* d_hash */
0, /* d_compare */
nfs_silly_delete,
};
static int nfs_lookup(struct inode *dir, struct dentry * dentry)
{
struct inode *inode;
struct nfs_fh fhandle;
struct nfs_fattr fattr;
int len = dentry->d_name.len;
int error;
dfprintk(VFS, "NFS: lookup(%x/%ld, %.*s)\n",
dir->i_dev, dir->i_ino, len, dentry->d_name.name);
if (!dir || !S_ISDIR(dir->i_mode)) {
printk("nfs_lookup: inode is NULL or not a directory\n");
return -ENOENT;
}
if (len > NFS_MAXNAMLEN)
return -ENAMETOOLONG;
error = nfs_proc_lookup(NFS_SERVER(dir), NFS_FH(dir), dentry->d_name.name, &fhandle, &fattr);
inode = NULL;
if (!error) {
inode = nfs_fhget(dir->i_sb, &fhandle, &fattr);
if (!inode)
return -EACCES;
} else if (error != -ENOENT)
return error;
dentry->d_time = jiffies;
dentry->d_op = &nfs_dentry_operations;
d_add(dentry, inode);
return 0;
}
static int nfs_create(struct inode *dir, struct dentry * dentry, int mode)
{
struct nfs_sattr sattr;
struct nfs_fattr fattr;
struct nfs_fh fhandle;
struct inode *inode;
int error;
dfprintk(VFS, "NFS: create(%x/%ld, %s\n",
dir->i_dev, dir->i_ino, dentry->d_name.name);
if (!dir || !S_ISDIR(dir->i_mode)) {
printk("nfs_create: inode is NULL or not a directory\n");
return -ENOENT;
}
if (dentry->d_name.len > NFS_MAXNAMLEN)
return -ENAMETOOLONG;
sattr.mode = mode;
sattr.uid = sattr.gid = sattr.size = (unsigned) -1;
sattr.atime.seconds = sattr.mtime.seconds = (unsigned) -1;
error = nfs_proc_create(NFS_SERVER(dir), NFS_FH(dir),
dentry->d_name.name, &sattr, &fhandle, &fattr);
if (error)
return error;
inode = nfs_fhget(dir->i_sb, &fhandle, &fattr);
if (!inode)
return -EACCES;
nfs_invalidate_dircache(dir);
d_instantiate(dentry, inode);
return 0;
}
static int nfs_mknod(struct inode *dir, struct dentry *dentry, int mode, int rdev)
{
struct nfs_sattr sattr;
struct nfs_fattr fattr;
struct nfs_fh fhandle;
struct inode *inode;
int error;
dfprintk(VFS, "NFS: mknod(%x/%ld, %s\n",
dir->i_dev, dir->i_ino, dentry->d_name.name);
if (!dir || !S_ISDIR(dir->i_mode)) {
printk("nfs_mknod: inode is NULL or not a directory\n");
return -ENOENT;
}
if (dentry->d_name.len > NFS_MAXNAMLEN)
return -ENAMETOOLONG;
sattr.mode = mode;
sattr.uid = sattr.gid = sattr.size = (unsigned) -1;
if (S_ISCHR(mode) || S_ISBLK(mode))
sattr.size = rdev; /* get out your barf bag */
sattr.atime.seconds = sattr.mtime.seconds = (unsigned) -1;
error = nfs_proc_create(NFS_SERVER(dir), NFS_FH(dir),
dentry->d_name.name, &sattr, &fhandle, &fattr);
if (error)
return error;
inode = nfs_fhget(dir->i_sb, &fhandle, &fattr);
if (!inode)
return -EACCES;
nfs_invalidate_dircache(dir);
d_instantiate(dentry, inode);
return 0;
}
static int nfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
{
struct nfs_sattr sattr;
struct nfs_fattr fattr;
struct nfs_fh fhandle;
struct inode * inode;
int error;
dfprintk(VFS, "NFS: mkdir(%x/%ld, %s\n",
dir->i_dev, dir->i_ino, dentry->d_name.name);
if (!dir || !S_ISDIR(dir->i_mode)) {
printk("nfs_mkdir: inode is NULL or not a directory\n");
return -ENOENT;
}
if (dentry->d_name.len > NFS_MAXNAMLEN)
return -ENAMETOOLONG;
sattr.mode = mode;
sattr.uid = sattr.gid = sattr.size = (unsigned) -1;
sattr.atime.seconds = sattr.mtime.seconds = (unsigned) -1;
error = nfs_proc_mkdir(NFS_SERVER(dir), NFS_FH(dir),
dentry->d_name.name, &sattr, &fhandle, &fattr);
if (error)
return error;
inode = nfs_fhget(dir->i_sb, &fhandle, &fattr);
if (!inode)
return -EACCES;
nfs_invalidate_dircache(dir);
d_instantiate(dentry, inode);
return 0;
}
static int nfs_rmdir(struct inode *dir, struct dentry *dentry)
{
int error;
dfprintk(VFS, "NFS: rmdir(%x/%ld, %s\n",
dir->i_dev, dir->i_ino, dentry->d_name.name);
if (!dir || !S_ISDIR(dir->i_mode)) {
printk("nfs_rmdir: inode is NULL or not a directory\n");
return -ENOENT;
}
if (dentry->d_name.len > NFS_MAXNAMLEN)
return -ENAMETOOLONG;
error = nfs_proc_rmdir(NFS_SERVER(dir), NFS_FH(dir), dentry->d_name.name);
if (error)
return error;
nfs_invalidate_dircache(dir);
d_delete(dentry);
return 0;
}
/* Note: we copy the code from lookup_dentry() here, only: we have to
* omit the directory lock. We are already the owner of the lock when
* we reach here. And "down(&dir->i_sem)" would make us sleep forever
* ('cause WE have the lock)
*
* VERY IMPORTANT: calculate the hash for this dentry!!!!!!!!
* Otherwise the cached lookup DEFINITELY WILL fail. And a new dentry
* is created. Without the DCACHE_NFSFS_RENAMED flag. And with d_count
* == 1. And trouble.
*
* Concerning my choice of the temp name: it is just nice to have
* i_ino part of the temp name, as this offers another check whether
* somebody attempts to remove the "silly renamed" dentry
* itself. Which is something that I consider evil. Your opinion may
* vary.
* BUT:
* Now that I compute the hash value right, it should be possible to simply
* check for the DCACHE_NFSFS_RENAMED flag in dentry->d_flag instead of
* doing the string compare.
* WHICH MEANS:
* This offers the opportunity to shorten the temp name. Currently, I use
* the hex representation of i_ino + the hex value of jiffies. This
* sums up to as much as 36 characters for a 64 bit machine, and needs
* 20 chars on a 32 bit machine. Have a look at jiffiesize etc.
* QUINTESSENCE
* The use of i_ino is simply cosmetic. All we need is a unique temp
* file name for the .nfs files. The hex representation of "jiffies"
* seemed to be adequate. And as we retry in case such a file already
* exists we are guaranteed to succed (after some jiffies have passed
* by :)
*/
static
struct dentry *nfs_silly_lookup(struct dentry *parent, char *silly, int slen)
{
struct qstr sqstr;
struct dentry *sdentry;
int i, error;
sqstr.name = silly;
sqstr.len = slen;
sqstr.hash = init_name_hash();
for (i= 0; i < slen; i++)
sqstr.hash = partial_name_hash(silly[i], sqstr.hash);
sqstr.hash = end_name_hash(sqstr.hash);
sdentry = d_lookup(parent, &sqstr);
if (!sdentry) {
sdentry = d_alloc(parent, &sqstr);
if (sdentry == NULL)
return ERR_PTR(-ENOMEM);
error = nfs_lookup(parent->d_inode, sdentry);
if (error) {
dput(sdentry);
return ERR_PTR(error);
}
}
return sdentry;
}
static int nfs_sillyrename(struct inode *dir, struct dentry *dentry)
{
static unsigned int sillycounter = 0;
const int i_inosize = sizeof(dir->i_ino)*2;
const int countersize = sizeof(sillycounter)*2;
const int slen = strlen(".nfs") + i_inosize + countersize;
char silly[slen+1];
int error;
struct dentry *sdentry;
if (dentry->d_count == 1) {
return -EIO; /* No need to silly rename. */
}
if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
return -EBUSY; /* don't allow to unlink silly inode -- nope,
* think a bit: silly DENTRY, NOT inode --
* itself
*/
}
sprintf(silly, ".nfs%*.*lx",
i_inosize, i_inosize, dentry->d_inode->i_ino);
sdentry = NULL;
do {
char *suffix = silly + slen - countersize;
dput(sdentry);
sillycounter++;
sprintf(suffix, "%*.*x", countersize, countersize, sillycounter);
dfprintk(VFS, "trying to rename %s to %s\n",
dentry->d_name.name, silly);
sdentry = nfs_silly_lookup(dentry->d_parent, silly, slen);
if (IS_ERR(sdentry)) {
return -EIO; /* FIXME ? */
}
} while(sdentry->d_inode != NULL); /* need negative lookup */
error = nfs_proc_rename(NFS_SERVER(dir),
NFS_FH(dir), dentry->d_name.name,
NFS_FH(dir), silly);
if (error) {
dput(sdentry);
return error;
}
nfs_invalidate_dircache(dir);
d_move(dentry, sdentry);
dput(sdentry);
dentry->d_flags |= DCACHE_NFSFS_RENAMED;
return 0; /* don't unlink */
}
static void nfs_silly_delete(struct dentry *dentry)
{
if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
struct inode *dir = dentry->d_parent->d_inode;
int error;
dentry->d_flags &= ~DCACHE_NFSFS_RENAMED;
/* Unhash it first */
d_drop(dentry);
dfprintk(VFS, "trying to unlink %s\n", dentry->d_name.name);
error = nfs_proc_remove(NFS_SERVER(dir),
NFS_FH(dir), dentry->d_name.name);
if (error < 0)
printk("NFS " __FUNCTION__ " failed (err = %d)\n",
-error);
dentry->d_inode->i_nlink --;
nfs_invalidate_dircache(dir);
}
}
/* We do silly rename. In case sillyrename() returns -EBUSY, the inode
* belongs to an active ".nfs..." file and we return -EBUSY.
*
* If sillyrename() returns 0, we do nothing, otherwise we unlink.
*
* inode->i_nlink is updated here rather than waiting for the next
* nfs_refresh_inode() for cosmetic reasons only.
*/
static int nfs_unlink(struct inode *dir, struct dentry *dentry)
{
int error;
dfprintk(VFS, "NFS: unlink(%x/%ld, %s)\n",
dir->i_dev, dir->i_ino, dentry->d_name.name);
if (!dir || !S_ISDIR(dir->i_mode)) {
printk("nfs_unlink: inode is NULL or not a directory\n");
return -ENOENT;
}
if (dentry->d_name.len > NFS_MAXNAMLEN)
return -ENAMETOOLONG;
error = nfs_sillyrename(dir, dentry);
if (error == -EBUSY) {
return -EBUSY;
} else if (error < 0) {
error = nfs_proc_remove(NFS_SERVER(dir),
NFS_FH(dir), dentry->d_name.name);
if (error < 0)
return error;
dentry->d_inode->i_nlink --;
nfs_invalidate_dircache(dir);
d_delete(dentry);
}
return 0;
}
static int nfs_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
{
struct nfs_sattr sattr;
int error;
dfprintk(VFS, "NFS: symlink(%x/%ld, %s, %s)\n",
dir->i_dev, dir->i_ino, dentry->d_name.name, symname);
if (!dir || !S_ISDIR(dir->i_mode)) {
printk("nfs_symlink: inode is NULL or not a directory\n");
return -ENOENT;
}
if (dentry->d_name.len > NFS_MAXNAMLEN)
return -ENAMETOOLONG;
if (strlen(symname) > NFS_MAXPATHLEN)
return -ENAMETOOLONG;
sattr.mode = S_IFLNK | S_IRWXUGO; /* SunOS 4.1.2 crashes without this! */
sattr.uid = sattr.gid = sattr.size = (unsigned) -1;
sattr.atime.seconds = sattr.mtime.seconds = (unsigned) -1;
error = nfs_proc_symlink(NFS_SERVER(dir), NFS_FH(dir),
dentry->d_name.name, symname, &sattr);
if (error)
return error;
nfs_invalidate_dircache(dir);
/* this looks _funny_ doesn't it? But: nfs_proc_symlink()
* only fills in sattr, not fattr. Thus nfs_fhget() cannot be
* called, it would be pointless, without a valid fattr
* argument. Other possibility: call nfs_proc_lookup()
* HERE. But why? If somebody wants to reference this
* symlink, the cached_lookup() will fail, and
* nfs_proc_symlink() will be called anyway.
*/
d_drop(dentry);
return 0;
}
static int nfs_link(struct inode *inode, struct inode *dir, struct dentry *dentry)
{
int error;
dfprintk(VFS, "NFS: link(%x/%ld -> %x/%ld, %s)\n",
inode->i_dev, inode->i_ino,
dir->i_dev, dir->i_ino, dentry->d_name.name);
if (!dir || !S_ISDIR(dir->i_mode)) {
printk("nfs_link: dir is NULL or not a directory\n");
return -ENOENT;
}
if (dentry->d_name.len > NFS_MAXNAMLEN)
return -ENAMETOOLONG;
error = nfs_proc_link(NFS_SERVER(inode), NFS_FH(inode),
NFS_FH(dir), dentry->d_name.name);
if (error)
return error;
nfs_invalidate_dircache(dir);
inode->i_count ++;
inode->i_nlink ++; /* no need to wait for nfs_refresh_inode() */
d_instantiate(dentry, inode);
return 0;
}
/*
* RENAME
* FIXME: Some nfsds, like the Linux user space nfsd, may generate a
* different file handle for the same inode after a rename (e.g. when
* moving to a different directory). A fail-safe method to do so would
* be to look up old_dir/old_name, create a link to new_dir/new_name and
* rename the old file using the sillyrename stuff. This way, the original
* file in old_dir will go away when the last process iput()s the inode.
*
* FIXED.
*
* It actually works quite well. One needs to have the possibility for
* at least one ".nfs..." file in each directory the file ever gets
* moved or linked to which happens automagically with the new
* implementation that only depends on the dcache stuff instead of
* using the inode layer
*
*/
static int nfs_rename(struct inode *old_dir, struct dentry *old_dentry,
struct inode *new_dir, struct dentry *new_dentry)
{
int error;
dfprintk(VFS, "NFS: rename(%x/%ld, %s -> %x/%ld, %s)\n",
old_dir->i_dev, old_dir->i_ino, old_dentry->d_name.name,
new_dir->i_dev, new_dir->i_ino, new_dentry->d_name.name);
if (!old_dir || !S_ISDIR(old_dir->i_mode)) {
printk("nfs_rename: old inode is NULL or not a directory\n");
return -ENOENT;
}
if (!new_dir || !S_ISDIR(new_dir->i_mode)) {
printk("nfs_rename: new inode is NULL or not a directory\n");
return -ENOENT;
}
if (old_dentry->d_name.len > NFS_MAXNAMLEN || new_dentry->d_name.len > NFS_MAXNAMLEN)
return -ENAMETOOLONG;
if (new_dir != old_dir) {
error = nfs_sillyrename(old_dir, old_dentry);
if (error == -EBUSY) {
return -EBUSY;
} else if (error == 0) { /* did silly rename stuff */
error = nfs_link(old_dentry->d_inode,
new_dir, new_dentry);
return error;
}
/* no need for silly rename, proceed as usual */
}
error = nfs_proc_rename(NFS_SERVER(old_dir),
NFS_FH(old_dir), old_dentry->d_name.name,
NFS_FH(new_dir), new_dentry->d_name.name);
if (error)
return error;
nfs_invalidate_dircache(old_dir);
nfs_invalidate_dircache(new_dir);
/* Update the dcache */
d_move(old_dentry, new_dentry);
return 0;
}
/*
* Many nfs protocol calls return the new file attributes after
* an operation. Here we update the inode to reflect the state
* of the server's inode.
*/
void nfs_refresh_inode(struct inode *inode, struct nfs_fattr *fattr)
{
int was_empty;
dfprintk(VFS, "NFS: refresh_inode(%x/%ld ct=%d)\n",
inode->i_dev, inode->i_ino, inode->i_count);
if (!inode || !fattr) {
printk("nfs_refresh_inode: inode or fattr is NULL\n");
return;
}
if (inode->i_ino != fattr->fileid) {
printk("nfs_refresh_inode: inode number mismatch\n");
return;
}
was_empty = (inode->i_mode == 0);
inode->i_mode = fattr->mode;
inode->i_nlink = fattr->nlink;
inode->i_uid = fattr->uid;
inode->i_gid = fattr->gid;
/* Size changed from outside: invalidate caches on next read */
if (inode->i_size != fattr->size) {
dfprintk(PAGECACHE, "NFS: cacheinv(%x/%ld)\n",
inode->i_dev, inode->i_ino);
NFS_CACHEINV(inode);
}
if (NFS_OLDMTIME(inode) != fattr->mtime.seconds) {
dfprintk(PAGECACHE, "NFS: mtime change on %x/%ld\n",
inode->i_dev, inode->i_ino);
NFS_ATTRTIMEO(inode) = NFS_MINATTRTIMEO(inode);
}
inode->i_size = fattr->size;
if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode))
inode->i_rdev = to_kdev_t(fattr->rdev);
else
inode->i_rdev = 0;
inode->i_blocks = fattr->blocks;
inode->i_atime = fattr->atime.seconds;
inode->i_mtime = fattr->mtime.seconds;
inode->i_ctime = fattr->ctime.seconds;
if (S_ISREG(inode->i_mode))
inode->i_op = &nfs_file_inode_operations;
else if (S_ISDIR(inode->i_mode))
inode->i_op = &nfs_dir_inode_operations;
else if (S_ISLNK(inode->i_mode))
inode->i_op = &nfs_symlink_inode_operations;
else if (S_ISCHR(inode->i_mode))
inode->i_op = &chrdev_inode_operations;
else if (S_ISBLK(inode->i_mode))
inode->i_op = &blkdev_inode_operations;
else if (S_ISFIFO(inode->i_mode)) {
if (was_empty)
init_fifo(inode);
} else
inode->i_op = NULL;
}
/*
* Local variables:
* version-control: t
* kept-new-versions: 5
* End:
*/
|