coda: cleanup downcall handler
[firefly-linux-kernel-4.4.55.git] / fs / coda / dir.c
1
2 /*
3  * Directory operations for Coda filesystem
4  * Original version: (C) 1996 P. Braam and M. Callahan
5  * Rewritten for Linux 2.1. (C) 1997 Carnegie Mellon University
6  * 
7  * Carnegie Mellon encourages users to contribute improvements to
8  * the Coda project. Contact Peter Braam (coda@cs.cmu.edu).
9  */
10
11 #include <linux/types.h>
12 #include <linux/kernel.h>
13 #include <linux/time.h>
14 #include <linux/fs.h>
15 #include <linux/file.h>
16 #include <linux/stat.h>
17 #include <linux/errno.h>
18 #include <linux/string.h>
19 #include <linux/smp_lock.h>
20
21 #include <asm/uaccess.h>
22
23 #include <linux/coda.h>
24 #include <linux/coda_linux.h>
25 #include <linux/coda_psdev.h>
26 #include <linux/coda_fs_i.h>
27 #include <linux/coda_cache.h>
28 #include <linux/coda_proc.h>
29
30 #include "coda_int.h"
31
32 /* dir inode-ops */
33 static int coda_create(struct inode *dir, struct dentry *new, int mode, struct nameidata *nd);
34 static struct dentry *coda_lookup(struct inode *dir, struct dentry *target, struct nameidata *nd);
35 static int coda_link(struct dentry *old_dentry, struct inode *dir_inode, 
36                      struct dentry *entry);
37 static int coda_unlink(struct inode *dir_inode, struct dentry *entry);
38 static int coda_symlink(struct inode *dir_inode, struct dentry *entry,
39                         const char *symname);
40 static int coda_mkdir(struct inode *dir_inode, struct dentry *entry, int mode);
41 static int coda_rmdir(struct inode *dir_inode, struct dentry *entry);
42 static int coda_rename(struct inode *old_inode, struct dentry *old_dentry, 
43                        struct inode *new_inode, struct dentry *new_dentry);
44
45 /* dir file-ops */
46 static int coda_readdir(struct file *file, void *buf, filldir_t filldir);
47
48 /* dentry ops */
49 static int coda_dentry_revalidate(struct dentry *de, struct nameidata *nd);
50 static int coda_dentry_delete(struct dentry *);
51
52 /* support routines */
53 static int coda_venus_readdir(struct file *coda_file, void *buf,
54                               filldir_t filldir);
55
56 /* same as fs/bad_inode.c */
57 static int coda_return_EIO(void)
58 {
59         return -EIO;
60 }
61 #define CODA_EIO_ERROR ((void *) (coda_return_EIO))
62
63 static struct dentry_operations coda_dentry_operations =
64 {
65         .d_revalidate   = coda_dentry_revalidate,
66         .d_delete       = coda_dentry_delete,
67 };
68
69 const struct inode_operations coda_dir_inode_operations =
70 {
71         .create         = coda_create,
72         .lookup         = coda_lookup,
73         .link           = coda_link,
74         .unlink         = coda_unlink,
75         .symlink        = coda_symlink,
76         .mkdir          = coda_mkdir,
77         .rmdir          = coda_rmdir,
78         .mknod          = CODA_EIO_ERROR,
79         .rename         = coda_rename,
80         .permission     = coda_permission,
81         .getattr        = coda_getattr,
82         .setattr        = coda_setattr,
83 };
84
85 const struct file_operations coda_dir_operations = {
86         .llseek         = generic_file_llseek,
87         .read           = generic_read_dir,
88         .readdir        = coda_readdir,
89         .open           = coda_open,
90         .flush          = coda_flush,
91         .release        = coda_release,
92         .fsync          = coda_fsync,
93 };
94
95
96 /* inode operations for directories */
97 /* access routines: lookup, readlink, permission */
98 static struct dentry *coda_lookup(struct inode *dir, struct dentry *entry, struct nameidata *nd)
99 {
100         struct inode *inode = NULL;
101         struct CodaFid resfid = { { 0, } };
102         int type = 0;
103         int error = 0;
104         const char *name = entry->d_name.name;
105         size_t length = entry->d_name.len;
106
107         if (length > CODA_MAXNAMLEN) {
108                 printk(KERN_ERR "name too long: lookup, %s (%*s)\n",
109                        coda_i2s(dir), (int)length, name);
110                 return ERR_PTR(-ENAMETOOLONG);
111         }
112
113         /* control object, create inode on the fly */
114         if (coda_isroot(dir) && coda_iscontrol(name, length)) {
115                 error = coda_cnode_makectl(&inode, dir->i_sb);
116                 type = CODA_NOCACHE;
117                 goto exit;
118         }
119
120         lock_kernel();
121
122         error = venus_lookup(dir->i_sb, coda_i2f(dir), name, length,
123                              &type, &resfid);
124         if (!error)
125                 error = coda_cnode_make(&inode, &resfid, dir->i_sb);
126
127         unlock_kernel();
128
129         if (error && error != -ENOENT)
130                 return ERR_PTR(error);
131
132 exit:
133         entry->d_op = &coda_dentry_operations;
134
135         if (inode && (type & CODA_NOCACHE))
136                 coda_flag_inode(inode, C_VATTR | C_PURGE);
137
138         return d_splice_alias(inode, entry);
139 }
140
141
142 int coda_permission(struct inode *inode, int mask, struct nameidata *nd)
143 {
144         int error = 0;
145  
146         if (!mask)
147                 return 0; 
148
149         lock_kernel();
150
151         coda_vfs_stat.permission++;
152
153         if (coda_cache_check(inode, mask))
154                 goto out; 
155
156         error = venus_access(inode->i_sb, coda_i2f(inode), mask);
157     
158         if (!error)
159                 coda_cache_enter(inode, mask);
160
161  out:
162         unlock_kernel();
163         return error;
164 }
165
166
167 static inline void coda_dir_update_mtime(struct inode *dir)
168 {
169 #ifdef REQUERY_VENUS_FOR_MTIME
170         /* invalidate the directory cnode's attributes so we refetch the
171          * attributes from venus next time the inode is referenced */
172         coda_flag_inode(dir, C_VATTR);
173 #else
174         /* optimistically we can also act as if our nose bleeds. The
175          * granularity of the mtime is coarse anyways so we might actually be
176          * right most of the time. Note: we only do this for directories. */
177         dir->i_mtime = dir->i_ctime = CURRENT_TIME_SEC;
178 #endif
179 }
180
181 /* we have to wrap inc_nlink/drop_nlink because sometimes userspace uses a
182  * trick to fool GNU find's optimizations. If we can't be sure of the link
183  * (because of volume mount points) we set i_nlink to 1 which forces find
184  * to consider every child as a possible directory. We should also never
185  * see an increment or decrement for deleted directories where i_nlink == 0 */
186 static inline void coda_dir_inc_nlink(struct inode *dir)
187 {
188         if (dir->i_nlink >= 2)
189                 inc_nlink(dir);
190 }
191
192 static inline void coda_dir_drop_nlink(struct inode *dir)
193 {
194         if (dir->i_nlink > 2)
195                 drop_nlink(dir);
196 }
197
198 /* creation routines: create, mknod, mkdir, link, symlink */
199 static int coda_create(struct inode *dir, struct dentry *de, int mode, struct nameidata *nd)
200 {
201         int error=0;
202         const char *name=de->d_name.name;
203         int length=de->d_name.len;
204         struct inode *inode;
205         struct CodaFid newfid;
206         struct coda_vattr attrs;
207
208         lock_kernel();
209         coda_vfs_stat.create++;
210
211         if (coda_isroot(dir) && coda_iscontrol(name, length)) {
212                 unlock_kernel();
213                 return -EPERM;
214         }
215
216         error = venus_create(dir->i_sb, coda_i2f(dir), name, length, 
217                                 0, mode, &newfid, &attrs);
218
219         if ( error ) {
220                 unlock_kernel();
221                 d_drop(de);
222                 return error;
223         }
224
225         inode = coda_iget(dir->i_sb, &newfid, &attrs);
226         if ( IS_ERR(inode) ) {
227                 unlock_kernel();
228                 d_drop(de);
229                 return PTR_ERR(inode);
230         }
231
232         /* invalidate the directory cnode's attributes */
233         coda_dir_update_mtime(dir);
234         unlock_kernel();
235         d_instantiate(de, inode);
236         return 0;
237 }
238
239 static int coda_mkdir(struct inode *dir, struct dentry *de, int mode)
240 {
241         struct inode *inode;
242         struct coda_vattr attrs;
243         const char *name = de->d_name.name;
244         int len = de->d_name.len;
245         int error;
246         struct CodaFid newfid;
247
248         lock_kernel();
249         coda_vfs_stat.mkdir++;
250
251         if (coda_isroot(dir) && coda_iscontrol(name, len)) {
252                 unlock_kernel();
253                 return -EPERM;
254         }
255
256         attrs.va_mode = mode;
257         error = venus_mkdir(dir->i_sb, coda_i2f(dir), 
258                                name, len, &newfid, &attrs);
259         
260         if ( error ) {
261                 unlock_kernel();
262                 d_drop(de);
263                 return error;
264         }
265          
266         inode = coda_iget(dir->i_sb, &newfid, &attrs);
267         if ( IS_ERR(inode) ) {
268                 unlock_kernel();
269                 d_drop(de);
270                 return PTR_ERR(inode);
271         }
272
273         /* invalidate the directory cnode's attributes */
274         coda_dir_inc_nlink(dir);
275         coda_dir_update_mtime(dir);
276         unlock_kernel();
277         d_instantiate(de, inode);
278         return 0;
279 }
280
281 /* try to make de an entry in dir_inodde linked to source_de */ 
282 static int coda_link(struct dentry *source_de, struct inode *dir_inode, 
283           struct dentry *de)
284 {
285         struct inode *inode = source_de->d_inode;
286         const char * name = de->d_name.name;
287         int len = de->d_name.len;
288         int error;
289
290         lock_kernel();
291         coda_vfs_stat.link++;
292
293         if (coda_isroot(dir_inode) && coda_iscontrol(name, len)) {
294                 unlock_kernel();
295                 return -EPERM;
296         }
297
298         error = venus_link(dir_inode->i_sb, coda_i2f(inode),
299                            coda_i2f(dir_inode), (const char *)name, len);
300
301         if (error) {
302                 d_drop(de);
303                 goto out;
304         }
305
306         coda_dir_update_mtime(dir_inode);
307         atomic_inc(&inode->i_count);
308         d_instantiate(de, inode);
309         inc_nlink(inode);
310
311 out:
312         unlock_kernel();
313         return(error);
314 }
315
316
317 static int coda_symlink(struct inode *dir_inode, struct dentry *de,
318                         const char *symname)
319 {
320         const char *name = de->d_name.name;
321         int len = de->d_name.len;
322         int symlen;
323         int error=0;
324         
325         lock_kernel();
326         coda_vfs_stat.symlink++;
327
328         if (coda_isroot(dir_inode) && coda_iscontrol(name, len)) {
329                 unlock_kernel();
330                 return -EPERM;
331         }
332
333         symlen = strlen(symname);
334         if ( symlen > CODA_MAXPATHLEN ) {
335                 unlock_kernel();
336                 return -ENAMETOOLONG;
337         }
338
339         /*
340          * This entry is now negative. Since we do not create
341          * an inode for the entry we have to drop it.
342          */
343         d_drop(de);
344         error = venus_symlink(dir_inode->i_sb, coda_i2f(dir_inode), name, len,
345                               symname, symlen);
346
347         /* mtime is no good anymore */
348         if ( !error )
349                 coda_dir_update_mtime(dir_inode);
350
351         unlock_kernel();
352         return error;
353 }
354
355 /* destruction routines: unlink, rmdir */
356 int coda_unlink(struct inode *dir, struct dentry *de)
357 {
358         int error;
359         const char *name = de->d_name.name;
360         int len = de->d_name.len;
361
362         lock_kernel();
363         coda_vfs_stat.unlink++;
364
365         error = venus_remove(dir->i_sb, coda_i2f(dir), name, len);
366         if ( error ) {
367                 unlock_kernel();
368                 return error;
369         }
370
371         coda_dir_update_mtime(dir);
372         drop_nlink(de->d_inode);
373         unlock_kernel();
374         return 0;
375 }
376
377 int coda_rmdir(struct inode *dir, struct dentry *de)
378 {
379         const char *name = de->d_name.name;
380         int len = de->d_name.len;
381         int error;
382
383         lock_kernel();
384         coda_vfs_stat.rmdir++;
385
386         error = venus_rmdir(dir->i_sb, coda_i2f(dir), name, len);
387         if (!error) {
388                 /* VFS may delete the child */
389                 if (de->d_inode)
390                     de->d_inode->i_nlink = 0;
391
392                 /* fix the link count of the parent */
393                 coda_dir_drop_nlink(dir);
394                 coda_dir_update_mtime(dir);
395         }
396         unlock_kernel();
397         return error;
398 }
399
400 /* rename */
401 static int coda_rename(struct inode *old_dir, struct dentry *old_dentry,
402                        struct inode *new_dir, struct dentry *new_dentry)
403 {
404         const char *old_name = old_dentry->d_name.name;
405         const char *new_name = new_dentry->d_name.name;
406         int old_length = old_dentry->d_name.len;
407         int new_length = new_dentry->d_name.len;
408         int error;
409
410         lock_kernel();
411         coda_vfs_stat.rename++;
412
413         error = venus_rename(old_dir->i_sb, coda_i2f(old_dir),
414                              coda_i2f(new_dir), old_length, new_length,
415                              (const char *) old_name, (const char *)new_name);
416
417         if ( !error ) {
418                 if ( new_dentry->d_inode ) {
419                         if ( S_ISDIR(new_dentry->d_inode->i_mode) ) {
420                                 coda_dir_drop_nlink(old_dir);
421                                 coda_dir_inc_nlink(new_dir);
422                         }
423                         coda_dir_update_mtime(old_dir);
424                         coda_dir_update_mtime(new_dir);
425                         coda_flag_inode(new_dentry->d_inode, C_VATTR);
426                 } else {
427                         coda_flag_inode(old_dir, C_VATTR);
428                         coda_flag_inode(new_dir, C_VATTR);
429                 }
430         }
431         unlock_kernel();
432
433         return error;
434 }
435
436
437 /* file operations for directories */
438 int coda_readdir(struct file *coda_file, void *buf, filldir_t filldir)
439 {
440         struct coda_file_info *cfi;
441         struct file *host_file;
442         int ret;
443
444         cfi = CODA_FTOC(coda_file);
445         BUG_ON(!cfi || cfi->cfi_magic != CODA_MAGIC);
446         host_file = cfi->cfi_container;
447
448         coda_vfs_stat.readdir++;
449
450         if (!host_file->f_op)
451                 return -ENOTDIR;
452
453         if (host_file->f_op->readdir)
454         {
455                 /* potemkin case: we were handed a directory inode.
456                  * We can't use vfs_readdir because we have to keep the file
457                  * position in sync between the coda_file and the host_file.
458                  * and as such we need grab the inode mutex. */
459                 struct inode *host_inode = host_file->f_path.dentry->d_inode;
460
461                 mutex_lock(&host_inode->i_mutex);
462                 host_file->f_pos = coda_file->f_pos;
463
464                 ret = -ENOENT;
465                 if (!IS_DEADDIR(host_inode)) {
466                         ret = host_file->f_op->readdir(host_file, buf, filldir);
467                         file_accessed(host_file);
468                 }
469
470                 coda_file->f_pos = host_file->f_pos;
471                 mutex_unlock(&host_inode->i_mutex);
472         }
473         else /* Venus: we must read Venus dirents from a file */
474                 ret = coda_venus_readdir(coda_file, buf, filldir);
475
476         return ret;
477 }
478
479 static inline unsigned int CDT2DT(unsigned char cdt)
480 {
481         unsigned int dt;
482
483         switch(cdt) {
484         case CDT_UNKNOWN: dt = DT_UNKNOWN; break;
485         case CDT_FIFO:    dt = DT_FIFO;    break;
486         case CDT_CHR:     dt = DT_CHR;     break;
487         case CDT_DIR:     dt = DT_DIR;     break;
488         case CDT_BLK:     dt = DT_BLK;     break;
489         case CDT_REG:     dt = DT_REG;     break;
490         case CDT_LNK:     dt = DT_LNK;     break;
491         case CDT_SOCK:    dt = DT_SOCK;    break;
492         case CDT_WHT:     dt = DT_WHT;     break;
493         default:          dt = DT_UNKNOWN; break;
494         }
495         return dt;
496 }
497
498 /* support routines */
499 static int coda_venus_readdir(struct file *coda_file, void *buf,
500                               filldir_t filldir)
501 {
502         int result = 0; /* # of entries returned */
503         struct coda_file_info *cfi;
504         struct coda_inode_info *cii;
505         struct file *host_file;
506         struct dentry *de;
507         struct venus_dirent *vdir;
508         unsigned long vdir_size =
509             (unsigned long)(&((struct venus_dirent *)0)->d_name);
510         unsigned int type;
511         struct qstr name;
512         ino_t ino;
513         int ret;
514
515         cfi = CODA_FTOC(coda_file);
516         BUG_ON(!cfi || cfi->cfi_magic != CODA_MAGIC);
517         host_file = cfi->cfi_container;
518
519         de = coda_file->f_path.dentry;
520         cii = ITOC(de->d_inode);
521
522         vdir = kmalloc(sizeof(*vdir), GFP_KERNEL);
523         if (!vdir) return -ENOMEM;
524
525         switch (coda_file->f_pos) {
526         case 0:
527                 ret = filldir(buf, ".", 1, 0, de->d_inode->i_ino, DT_DIR);
528                 if (ret < 0) break;
529                 result++;
530                 coda_file->f_pos++;
531                 /* fallthrough */
532         case 1:
533                 ret = filldir(buf, "..", 2, 1, de->d_parent->d_inode->i_ino, DT_DIR);
534                 if (ret < 0) break;
535                 result++;
536                 coda_file->f_pos++;
537                 /* fallthrough */
538         default:
539         while (1) {
540                 /* read entries from the directory file */
541                 ret = kernel_read(host_file, coda_file->f_pos - 2, (char *)vdir,
542                                   sizeof(*vdir));
543                 if (ret < 0) {
544                         printk(KERN_ERR "coda readdir: read dir %s failed %d\n",
545                                coda_f2s(&cii->c_fid), ret);
546                         break;
547                 }
548                 if (ret == 0) break; /* end of directory file reached */
549
550                 /* catch truncated reads */
551                 if (ret < vdir_size || ret < vdir_size + vdir->d_namlen) {
552                         printk(KERN_ERR "coda readdir: short read on %s\n",
553                                coda_f2s(&cii->c_fid));
554                         ret = -EBADF;
555                         break;
556                 }
557                 /* validate whether the directory file actually makes sense */
558                 if (vdir->d_reclen < vdir_size + vdir->d_namlen) {
559                         printk(KERN_ERR "coda readdir: invalid dir %s\n",
560                                coda_f2s(&cii->c_fid));
561                         ret = -EBADF;
562                         break;
563                 }
564
565                 name.len = vdir->d_namlen;
566                 name.name = vdir->d_name;
567
568                 /* Make sure we skip '.' and '..', we already got those */
569                 if (name.name[0] == '.' && (name.len == 1 ||
570                     (vdir->d_name[1] == '.' && name.len == 2)))
571                         vdir->d_fileno = name.len = 0;
572
573                 /* skip null entries */
574                 if (vdir->d_fileno && name.len) {
575                         /* try to look up this entry in the dcache, that way
576                          * userspace doesn't have to worry about breaking
577                          * getcwd by having mismatched inode numbers for
578                          * internal volume mountpoints. */
579                         ino = find_inode_number(de, &name);
580                         if (!ino) ino = vdir->d_fileno;
581
582                         type = CDT2DT(vdir->d_type);
583                         ret = filldir(buf, name.name, name.len,
584                                       coda_file->f_pos, ino, type);
585                         /* failure means no space for filling in this round */
586                         if (ret < 0) break;
587                         result++;
588                 }
589                 /* we'll always have progress because d_reclen is unsigned and
590                  * we've already established it is non-zero. */
591                 coda_file->f_pos += vdir->d_reclen;
592         }
593         }
594         kfree(vdir);
595         return result ? result : ret;
596 }
597
598 /* called when a cache lookup succeeds */
599 static int coda_dentry_revalidate(struct dentry *de, struct nameidata *nd)
600 {
601         struct inode *inode = de->d_inode;
602         struct coda_inode_info *cii;
603
604         if (!inode)
605                 return 1;
606         lock_kernel();
607         if (coda_isroot(inode))
608                 goto out;
609         if (is_bad_inode(inode))
610                 goto bad;
611
612         cii = ITOC(de->d_inode);
613         if (!(cii->c_flags & (C_PURGE | C_FLUSH)))
614                 goto out;
615
616         shrink_dcache_parent(de);
617
618         /* propagate for a flush */
619         if (cii->c_flags & C_FLUSH) 
620                 coda_flag_inode_children(inode, C_FLUSH);
621
622         if (atomic_read(&de->d_count) > 1)
623                 /* pretend it's valid, but don't change the flags */
624                 goto out;
625
626         /* clear the flags. */
627         cii->c_flags &= ~(C_VATTR | C_PURGE | C_FLUSH);
628
629 bad:
630         unlock_kernel();
631         return 0;
632 out:
633         unlock_kernel();
634         return 1;
635 }
636
637 /*
638  * This is the callback from dput() when d_count is going to 0.
639  * We use this to unhash dentries with bad inodes.
640  */
641 static int coda_dentry_delete(struct dentry * dentry)
642 {
643         int flags;
644
645         if (!dentry->d_inode) 
646                 return 0;
647
648         flags = (ITOC(dentry->d_inode)->c_flags) & C_PURGE;
649         if (is_bad_inode(dentry->d_inode) || flags) {
650                 return 1;
651         }
652         return 0;
653 }
654
655
656
657 /*
658  * This is called when we want to check if the inode has
659  * changed on the server.  Coda makes this easy since the
660  * cache manager Venus issues a downcall to the kernel when this 
661  * happens 
662  */
663 int coda_revalidate_inode(struct dentry *dentry)
664 {
665         struct coda_vattr attr;
666         int error = 0;
667         int old_mode;
668         ino_t old_ino;
669         struct inode *inode = dentry->d_inode;
670         struct coda_inode_info *cii = ITOC(inode);
671
672         lock_kernel();
673         if ( !cii->c_flags )
674                 goto ok;
675
676         if (cii->c_flags & (C_VATTR | C_PURGE | C_FLUSH)) {
677                 error = venus_getattr(inode->i_sb, &(cii->c_fid), &attr);
678                 if ( error )
679                         goto return_bad;
680
681                 /* this inode may be lost if:
682                    - it's ino changed 
683                    - type changes must be permitted for repair and
684                    missing mount points.
685                 */
686                 old_mode = inode->i_mode;
687                 old_ino = inode->i_ino;
688                 coda_vattr_to_iattr(inode, &attr);
689
690                 if ((old_mode & S_IFMT) != (inode->i_mode & S_IFMT)) {
691                         printk("Coda: inode %ld, fid %s changed type!\n",
692                                inode->i_ino, coda_f2s(&(cii->c_fid)));
693                 }
694
695                 /* the following can happen when a local fid is replaced 
696                    with a global one, here we lose and declare the inode bad */
697                 if (inode->i_ino != old_ino)
698                         goto return_bad;
699                 
700                 coda_flag_inode_children(inode, C_FLUSH);
701                 cii->c_flags &= ~(C_VATTR | C_PURGE | C_FLUSH);
702         }
703
704 ok:
705         unlock_kernel();
706         return 0;
707
708 return_bad:
709         unlock_kernel();
710         return -EIO;
711 }