better-type-guessing-for-readdir-hint-20010411
[openafs.git] / src / afs / LINUX / osi_vnodeops.c
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  * 
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 /*
11  * Linux specific vnodeops. Also includes the glue routines required to call
12  * AFS vnodeops. The "NOTUSED" #define is used to indicate routines and
13  * calling sequences present in an ops table that we don't actually use.
14  * They are present solely for documentation purposes.
15  *
16  * So far the only truly scary part is that Linux relies on the inode cache
17  * to be up to date. Don't you dare break a callback and expect an fstat
18  * to give you meaningful information. This appears to be fixed in the 2.1
19  * development kernels. As it is we can fix this now by intercepting the 
20  * stat calls.
21  */
22
23 #include "../afs/param.h"
24 #include "../afs/sysincludes.h"
25 #include "../afs/afsincludes.h"
26 #include "../afs/afs_stats.h"
27 #include "../h/mm.h"
28 #include "../h/pagemap.h"
29 #if defined(AFS_LINUX24_ENV)
30 #include "../h/smp_lock.h"
31 #endif
32
33 #ifdef pgoff2loff
34 #define pageoff(pp) pgoff2loff((pp)->index)
35 #else
36 #define pageoff(pp) pp->offset
37 #endif
38
39 extern struct vcache *afs_globalVp;
40
41 extern struct dentry_operations *afs_dops;
42 #if defined(AFS_LINUX24_ENV)
43 extern struct inode_operations afs_file_iops;
44 extern struct address_space_operations afs_file_aops;
45 struct address_space_operations afs_symlink_aops;
46 #endif
47 extern struct inode_operations afs_dir_iops;
48 extern struct inode_operations afs_symlink_iops;
49
50
51 #ifdef NOTUSED
52 static int afs_linux_lseek(struct inode *ip, struct file *fp, off_t, int) {}
53 #endif
54
55 static ssize_t afs_linux_read(struct file *fp, char *buf, size_t count,
56                               loff_t *offp)
57 {
58     ssize_t code;
59     struct vcache *vcp = (struct vcache*)fp->f_dentry->d_inode;
60     cred_t *credp = crref();
61     struct vrequest treq;
62
63     AFS_GLOCK();
64     afs_Trace4(afs_iclSetp, CM_TRACE_READOP, ICL_TYPE_POINTER, vcp,
65                ICL_TYPE_INT32, (int)*offp,
66                ICL_TYPE_INT32, count,
67                ICL_TYPE_INT32, 99999);
68
69     /* get a validated vcache entry */
70     code = afs_InitReq(&treq, credp);
71     if (!code)
72         code = afs_VerifyVCache(vcp, &treq);
73
74     if (code)
75         code = -code;
76     else {
77         osi_FlushPages(vcp, credp);     /* ensure stale pages are gone */
78         AFS_GUNLOCK();
79         code = generic_file_read(fp, buf, count, offp);
80         AFS_GLOCK();
81     }
82
83     afs_Trace4(afs_iclSetp, CM_TRACE_READOP, ICL_TYPE_POINTER, vcp,
84                ICL_TYPE_INT32, (int)*offp,
85                ICL_TYPE_INT32, count,
86                ICL_TYPE_INT32, code);
87
88     AFS_GUNLOCK();
89     crfree(credp);
90     return code;
91 }
92
93
94 /* Now we have integrated VM for writes as well as reads. generic_file_write
95  * also takes care of re-positioning the pointer if file is open in append
96  * mode. Call fake open/close to ensure we do writes of core dumps.
97  */
98 static ssize_t afs_linux_write(struct file *fp, const char *buf, size_t count,
99                            loff_t *offp)
100 {
101     ssize_t code = 0;
102     int code2;
103     struct vcache *vcp = (struct vcache *)fp->f_dentry->d_inode;
104     struct vrequest treq;
105     cred_t *credp = crref();
106
107     AFS_GLOCK();
108
109     afs_Trace4(afs_iclSetp, CM_TRACE_WRITEOP, ICL_TYPE_POINTER, vcp,
110                ICL_TYPE_INT32, (int)*offp, ICL_TYPE_INT32, count,
111                ICL_TYPE_INT32, (fp->f_flags & O_APPEND) ? 99998 : 99999);
112
113
114     /* get a validated vcache entry */
115     code = (ssize_t)afs_InitReq(&treq, credp);
116     if (!code)
117         code = (ssize_t)afs_VerifyVCache(vcp, &treq);
118
119     ObtainWriteLock(&vcp->lock, 529);
120     afs_FakeOpen(vcp);
121     ReleaseWriteLock(&vcp->lock);
122     AFS_GUNLOCK();
123     if (code)
124         code = -code;
125     else {
126         code = generic_file_write(fp, buf, count, offp);
127     }
128     AFS_GLOCK();
129
130     ObtainWriteLock(&vcp->lock, 530);
131     vcp->m.Date = osi_Time(); /* set modification time */
132     afs_FakeClose(vcp, credp);
133     if (code>=0)
134         code2 = afs_DoPartialWrite(vcp, &treq);
135     if (code2 && code >=0)
136         code = (ssize_t) -code2;
137     ReleaseWriteLock(&vcp->lock);
138         
139     afs_Trace4(afs_iclSetp, CM_TRACE_WRITEOP, ICL_TYPE_POINTER, vcp,
140                ICL_TYPE_INT32, (int)*offp, ICL_TYPE_INT32, count,
141                ICL_TYPE_INT32, code);
142
143     AFS_GUNLOCK();
144     crfree(credp);
145     return code;
146 }
147
148 /* This is a complete rewrite of afs_readdir, since we can make use of
149  * filldir instead of afs_readdir_move. Note that changes to vcache/dcache
150  * handling and use of bulkstats will need to be reflected here as well.
151  */
152 static int afs_linux_readdir(struct file *fp,
153                              void *dirbuf, filldir_t filldir)
154 {
155     extern struct DirEntry * afs_dir_GetBlob();
156     struct vcache *avc = (struct vcache*)FILE_INODE(fp);
157     struct vrequest treq;
158     register struct dcache *tdc;
159     int code;
160     int offset;
161     int dirpos;
162     struct DirEntry *de;
163     ino_t ino;
164     int len;
165     int origOffset;
166     cred_t *credp = crref();
167
168     AFS_GLOCK();
169     AFS_STATCNT(afs_readdir);
170
171     code = afs_InitReq(&treq, credp);
172     crfree(credp);
173     if (code) {
174         AFS_GUNLOCK();
175         return -code;
176     }
177
178     /* update the cache entry */
179 tagain:
180     code = afs_VerifyVCache(avc, &treq);
181     if (code) {
182         AFS_GUNLOCK();
183         return -code;
184     }
185
186     /* get a reference to the entire directory */
187     tdc = afs_GetDCache(avc, 0, &treq, &origOffset, &len, 1);
188     if (!tdc) {
189         AFS_GUNLOCK();
190         return -ENOENT;
191     }
192     ObtainReadLock(&avc->lock);
193     /*
194      * Make sure that the data in the cache is current. There are two
195      * cases we need to worry about:
196      * 1. The cache data is being fetched by another process.
197      * 2. The cache data is no longer valid
198      */
199     while ((avc->states & CStatd)
200            && (tdc->flags & DFFetching)
201            && hsame(avc->m.DataVersion, tdc->f.versionNo)) {
202         tdc->flags |= DFWaiting;
203         ReleaseReadLock(&avc->lock);
204         afs_osi_Sleep(&tdc->validPos);
205         ObtainReadLock(&avc->lock);
206     }
207     if (!(avc->states & CStatd)
208         || !hsame(avc->m.DataVersion, tdc->f.versionNo)) {
209         ReleaseReadLock(&avc->lock);
210         afs_PutDCache(tdc);
211         goto tagain;
212     }
213
214     /* Fill in until we get an error or we're done. This implementation
215      * takes an offset in units of blobs, rather than bytes.
216      */
217     code = 0;
218     offset = (int)fp->f_pos;
219     while(1) { 
220         dirpos = BlobScan(&tdc->f.inode, offset);
221         if (!dirpos)
222             break;
223
224         de = (struct DirEntry*)afs_dir_GetBlob(&tdc->f.inode, dirpos);
225         if (!de)
226             break;
227
228         ino = (avc->fid.Fid.Volume << 16) + ntohl(de->fid.vnode);
229         ino &= 0x7fffffff; /* Assumes 32 bit ino_t ..... */
230         len = strlen(de->name);
231
232         /* filldir returns -EINVAL when the buffer is full. */
233 #ifdef AFS_LINUX24_ENV
234         {
235              unsigned int type=DT_UNKNOWN;
236              struct VenusFid afid;
237              struct vcache *tvc;
238              int vtype;
239              afid.Cell=avc->fid.Cell;
240              afid.Fid.Volume=avc->fid.Fid.Volume;
241              afid.Fid.Vnode=ntohl(de->fid.vnode);
242              afid.Fid.Unique=ntohl(de->fid.vunique);
243              if ((avc->states & CForeign) == 0 &&
244                  (ntohl(de->fid.vnode) & 1)) {
245                   type=DT_DIR;
246              } else if ((tvc=afs_FindVCache(&afid,0,0,0,0))) {
247                   if (tvc->mvstat) {
248                        type=DT_DIR;
249                   } else if (((tvc->states) & (CStatd|CTruth))) {
250                        /* CTruth will be set if the object has 
251                         *ever* been statd */
252                        vtype=vType(tvc);
253                        if (vtype == VDIR)
254                             type=DT_DIR;
255                        else if (vtype == VREG)
256                             type=DT_REG;
257                        /* Don't do this until we're sure it can't be a mtpt */
258                        /* else if (vtype == VLNK)
259                           type=DT_LNK; */
260                        /* what other types does AFS support? */
261                   }
262              }
263              code = (*filldir)(dirbuf, de->name, len, offset, ino, type);
264         }
265 #else
266         code = (*filldir)(dirbuf, de->name, len, offset, ino); 
267 #endif
268         DRelease(de, 0);
269         if (code)
270             break;
271         offset = dirpos + 1 + ((len+16)>>5);
272     }
273     /* If filldir didn't fill in the last one this is still pointing to that
274      * last attempt.
275      */
276     fp->f_pos = (loff_t)offset;
277
278     afs_PutDCache(tdc);
279     ReleaseReadLock(&avc->lock);
280     AFS_GUNLOCK();
281     return 0;
282 }
283
284 #ifdef NOTUSED
285 int afs_linux_select(struct inode *ip, struct file *fp, int, select_table *);
286 #endif
287
288 /* in afs_pioctl.c */
289 extern int afs_xioctl(struct inode *ip, struct file *fp,
290                           unsigned int com, unsigned long arg);
291
292
293 /* We need to detect unmap's after close. To do that, we need our own
294  * vm_operations_struct's. And we need to set them up for both the
295  * private and shared mappings. The fun part is that these are all static
296  * so we'll have to initialize on the fly!
297  */
298 static struct vm_operations_struct afs_private_mmap_ops;
299 static int afs_private_mmap_ops_inited = 0;
300 static struct vm_operations_struct afs_shared_mmap_ops;
301 static int afs_shared_mmap_ops_inited = 0;
302
303 void afs_linux_vma_close(struct vm_area_struct *vmap)
304 {
305     struct vcache *vcp;
306     cred_t *credp;
307
308     if (!vmap->vm_file)
309         return;
310
311     vcp = (struct vcache*)FILE_INODE(vmap->vm_file);
312     if (!vcp)
313         return;
314
315     AFS_GLOCK();
316     afs_Trace4(afs_iclSetp, CM_TRACE_VM_CLOSE,
317                ICL_TYPE_POINTER, vcp,
318                ICL_TYPE_INT32, vcp->mapcnt,
319                ICL_TYPE_INT32, vcp->opens,
320                ICL_TYPE_INT32, vcp->execsOrWriters);
321     ObtainWriteLock(&vcp->lock, 532);
322     if (vcp->mapcnt) {
323         vcp->mapcnt--;
324         ReleaseWriteLock(&vcp->lock);
325         if (!vcp->mapcnt) {
326             credp = crref();
327             (void) afs_close(vcp, vmap->vm_file->f_flags, credp);
328             /* only decrement the execsOrWriters flag if this is not a writable
329              * file. */
330             if (! (vmap->vm_file->f_flags & (FWRITE | FTRUNC)))
331                 vcp->execsOrWriters--;
332
333             vcp->states &= ~CMAPPED;
334             crfree(credp);
335         }
336     }
337     else {
338         ReleaseWriteLock(&vcp->lock);
339     }
340
341  unlock_exit:
342     AFS_GUNLOCK();
343 }
344
345 static int afs_linux_mmap(struct file *fp, struct vm_area_struct *vmap)
346 {
347     struct vcache *vcp = (struct vcache*)FILE_INODE(fp);
348     cred_t *credp = crref();
349     struct vrequest treq;
350     int code;
351
352     AFS_GLOCK();
353 #if defined(AFS_LINUX24_ENV)
354     afs_Trace3(afs_iclSetp, CM_TRACE_GMAP, ICL_TYPE_POINTER, vcp,
355                ICL_TYPE_POINTER, vmap->vm_start,
356                ICL_TYPE_INT32, vmap->vm_end - vmap->vm_start);
357 #else
358     afs_Trace4(afs_iclSetp, CM_TRACE_GMAP, ICL_TYPE_POINTER, vcp,
359                ICL_TYPE_POINTER, vmap->vm_start,
360                ICL_TYPE_INT32, vmap->vm_end - vmap->vm_start,
361                ICL_TYPE_INT32, vmap->vm_offset);
362 #endif
363
364     /* get a validated vcache entry */
365     code = afs_InitReq(&treq, credp);
366     if (!code)
367         code = afs_VerifyVCache(vcp, &treq);
368
369
370     if (code)
371         code = -code;
372     else {
373         osi_FlushPages(vcp, credp);     /* ensure stale pages are gone */
374
375         AFS_GUNLOCK();
376         code = generic_file_mmap(fp, vmap);
377         AFS_GLOCK();
378     }
379
380     if (code == 0) {
381         ObtainWriteLock(&vcp->lock,531);
382         /* Set out vma ops so we catch the close. The following test should be
383          * the same as used in generic_file_mmap.
384          */
385         if ((vmap->vm_flags & VM_SHARED) && (vmap->vm_flags & VM_MAYWRITE)) {
386             if (!afs_shared_mmap_ops_inited) {
387                 afs_shared_mmap_ops_inited = 1;
388                 afs_shared_mmap_ops = *vmap->vm_ops;
389                 afs_shared_mmap_ops.close = afs_linux_vma_close;
390             }
391             vmap->vm_ops = &afs_shared_mmap_ops;
392         }
393         else {
394             if (!afs_private_mmap_ops_inited) {
395                 afs_private_mmap_ops_inited = 1;
396                 afs_private_mmap_ops = *vmap->vm_ops;
397                 afs_private_mmap_ops.close = afs_linux_vma_close;
398             }
399             vmap->vm_ops = &afs_private_mmap_ops;
400         }
401     
402     
403         /* Add an open reference on the first mapping. */
404         if (vcp->mapcnt == 0) {
405             vcp->execsOrWriters++;
406             vcp->opens++;
407             vcp->states |= CMAPPED;
408         }
409         ReleaseWriteLock(&vcp->lock);
410         vcp->mapcnt++;
411     }
412
413     AFS_GUNLOCK();
414     crfree(credp);
415     return code;
416 }
417
418 int afs_linux_open(struct inode *ip, struct file *fp)
419 {
420     int code;
421     cred_t *credp = crref();
422
423     AFS_GLOCK();
424 #ifdef AFS_LINUX24_ENV
425     lock_kernel();
426 #endif
427     code = afs_open((struct vcache**)&ip, fp->f_flags, credp);
428 #ifdef AFS_LINUX24_ENV
429     unlock_kernel();
430 #endif
431     AFS_GUNLOCK();
432
433     crfree(credp);
434     return -code;
435 }
436
437 /* afs_Close is called from release, since release is used to handle all
438  * file closings. In addition afs_linux_flush is called from sys_close to
439  * handle flushing the data back to the server. The kicker is that we could
440  * ignore flush completely if only sys_close took it's return value from
441  * fput. See afs_linux_flush for notes on interactions between release and
442  * flush.
443  */
444 static int afs_linux_release(struct inode *ip, struct file *fp)
445 {
446     int code = 0;
447     cred_t *credp = crref();
448     struct vcache *vcp = (struct vcache*)ip;
449
450     AFS_GLOCK();
451 #ifdef AFS_LINUX24_ENV
452     lock_kernel();
453 #endif
454     if (vcp->flushcnt) {
455         vcp->flushcnt--; /* protected by AFS global lock. */
456     }
457     else {
458         code = afs_close(vcp, fp->f_flags, credp);
459     }
460 #ifdef AFS_LINUX24_ENV
461     unlock_kernel();
462 #endif
463     AFS_GUNLOCK();
464
465     crfree(credp);
466     return -code;
467 }
468
469 #if defined(AFS_LINUX24_ENV)
470 static int afs_linux_fsync(struct file *fp, struct dentry *dp, int datasync)
471 #else
472 static int afs_linux_fsync(struct file *fp, struct dentry *dp)
473 #endif
474 {
475     int code;
476     struct inode *ip = FILE_INODE(fp);
477     cred_t *credp = crref();
478
479     AFS_GLOCK();
480 #ifdef AFS_LINUX24_ENV
481     lock_kernel();
482 #endif
483     code = afs_fsync((struct vcache*)ip, credp);
484 #ifdef AFS_LINUX24_ENV
485     unlock_kernel();
486 #endif
487     AFS_GUNLOCK();
488     crfree(credp);
489     return -code;
490     
491 }
492
493 #ifdef NOTUSED
494 /* No support for async i/o */
495 int afs_linux_fasync(struct inode *ip, struct file *fp, int);
496
497 /* I don't think it will, at least not as can be detected here. */
498 int afs_linux_check_media_change(kdev_t dev);
499
500 /* Revalidate media and file system. */
501 int afs_linux_file_revalidate(kdev_t dev);
502 #endif /* NOTUSED */
503
504 static int afs_linux_lock(struct file *fp, int cmd, struct file_lock *flp)
505 {
506     int code = 0;
507     struct vcache *vcp = (struct vcache*)FILE_INODE(fp);
508     cred_t *credp = crref();
509     struct flock flock;
510     
511     /* Convert to a lock format afs_lockctl understands. */
512     memset((char*)&flock, 0, sizeof(flock));
513     flock.l_type = flp->fl_type;
514     flock.l_pid = flp->fl_pid;
515     flock.l_whence = 0;
516     flock.l_start = flp->fl_start;
517     flock.l_len = flp->fl_end - flp->fl_start;
518
519     AFS_GLOCK();
520     code = afs_lockctl(vcp, &flock, cmd, credp);
521     AFS_GUNLOCK();
522     crfree(credp);
523     return -code;
524     
525 }
526
527 /* afs_linux_flush
528  * flush is called from sys_close. We could ignore it, but sys_close return
529  * code comes from flush, not release. We need to use release to keep
530  * the vcache open count correct. Note that flush is called before release
531  * (via fput) in sys_close. vcp->flushcnt is a bit of ugliness to avoid
532  * races and also avoid calling afs_close twice when closing the file.
533  * If we merely checked for opens > 0 in afs_linux_release, then if an
534  * new open occurred when storing back the file, afs_linux_release would
535  * incorrectly close the file and decrement the opens count. Calling afs_close
536  * on the just flushed file is wasteful, since the background daemon will
537  * execute the code that finally decides there is nothing to do.
538  */
539 int afs_linux_flush(struct file *fp)
540 {
541     struct vcache *vcp = (struct vcache *)FILE_INODE(fp);
542     int code = 0;
543     cred_t *credp;
544
545     /* Only do this on the last close of the file pointer. */
546 #if defined(AFS_LINUX24_ENV)
547     if (atomic_read(&fp->f_count) > 1)
548 #else
549     if (fp->f_count > 1)
550 #endif
551         return 0;
552
553     credp = crref();
554
555     AFS_GLOCK();
556     code = afs_close(vcp, fp->f_flags, credp);
557     vcp->flushcnt++; /* protected by AFS global lock. */
558     AFS_GUNLOCK();
559
560     crfree(credp);
561     return -code;
562 }
563
564 /* Not allowed to directly read a directory. */
565 ssize_t afs_linux_dir_read(struct file *fp, char *buf, size_t count, loff_t *ppos)
566 {
567     return -EISDIR;
568 }
569
570
571
572 #if defined(AFS_LINUX24_ENV)
573 struct file_operations afs_dir_fops = {
574     read:      generic_read_dir,
575     readdir:   afs_linux_readdir,
576     ioctl:     afs_xioctl,
577     open:      afs_linux_open,
578     release:   afs_linux_release,
579 };
580 #else
581 struct file_operations afs_dir_fops = {
582     NULL,               /* afs_linux_lseek */
583     afs_linux_dir_read,
584     NULL,               /* afs_linux_write */
585     afs_linux_readdir,
586     NULL,               /* afs_linux_select */
587     afs_xioctl,         /* close enough to use the ported AFS one */
588     NULL,               /* afs_linux_mmap */
589     afs_linux_open,
590     NULL,               /* afs_linux_flush */
591     afs_linux_release,
592     afs_linux_fsync,
593     NULL,               /* afs_linux_fasync */
594     NULL,               /* afs_linux_check_media_change */
595     NULL,               /* afs_linux_file_revalidate */
596     afs_linux_lock,
597 };
598 #endif
599
600 #if defined(AFS_LINUX24_ENV)
601 struct file_operations afs_file_fops = {
602     read:      afs_linux_read,
603     write:     afs_linux_write,
604     ioctl:     afs_xioctl,
605     mmap:      afs_linux_mmap,
606     open:      afs_linux_open,
607     flush:     afs_linux_flush,
608     release:   afs_linux_release,
609     fsync:     afs_linux_fsync,
610     lock:      afs_linux_lock,
611 };
612 #else
613 struct file_operations afs_file_fops = {
614     NULL,               /* afs_linux_lseek */
615     afs_linux_read,
616     afs_linux_write,
617     NULL,               /* afs_linux_readdir */
618     NULL,               /* afs_linux_select */
619     afs_xioctl,         /* close enough to use the ported AFS one */
620     afs_linux_mmap,
621     afs_linux_open,
622     afs_linux_flush,
623     afs_linux_release,
624     afs_linux_fsync,
625     NULL,               /* afs_linux_fasync */
626     NULL,               /* afs_linux_check_media_change */
627     NULL,               /* afs_linux_file_revalidate */
628     afs_linux_lock,
629 };
630 #endif
631    
632
633 /**********************************************************************
634  * AFS Linux dentry operations
635  **********************************************************************/
636
637 /* afs_linux_revalidate
638  * Ensure vcache is stat'd before use. Return 0 if entry is valid.
639  */
640 static int afs_linux_revalidate(struct dentry *dp)
641 {
642     int code;
643     cred_t *credp;
644     struct vrequest treq;
645     struct vcache *vcp = (struct vcache*)dp->d_inode;
646
647     AFS_GLOCK();
648 #ifdef AFS_LINUX24_ENV
649     lock_kernel();
650 #endif
651
652     /* Drop the dentry if the callback is broken */
653     if (!(vcp->states & CStatd)) {
654         d_drop(dp);
655 #ifdef AFS_LINUX24_ENV
656         unlock_kernel();
657 #endif
658         AFS_GUNLOCK();
659         return 0;
660     }
661
662     /* Make this a fast path (no crref), since it's called so often. */
663     if (vcp->states & CStatd) {
664         if (*dp->d_name.name != '/' && vcp->mvstat == 2) /* root vnode */
665             check_bad_parent(dp); /* check and correct mvid */
666         vcache2inode(vcp);
667 #ifdef AFS_LINUX24_ENV
668         unlock_kernel();
669 #endif
670         AFS_GUNLOCK();
671         return 0;
672     }
673
674     credp = crref();
675     code = afs_InitReq(&treq, credp);
676     if (!code)
677         code = afs_VerifyVCache(vcp, &treq);
678
679 #ifdef AFS_LINUX24_ENV
680     unlock_kernel();
681 #endif
682     AFS_GUNLOCK();
683     crfree(credp);
684
685     return -code ;
686 }
687
688 /* Validate a dentry. Return 0 if unchanged, 1 if VFS layer should re-evaluate.
689  * In kernels 2.2.10 and above, we are passed an additional flags var which
690  * may have either the LOOKUP_FOLLOW OR LOOKUP_DIRECTORY set in which case
691  * we are advised to follow the entry if it is a link or to make sure that 
692  * it is a directory. But since the kernel itself checks these possibilities
693  * later on, we shouldn't have to do it until later. Perhaps in the future..
694  */
695 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,2,10)
696 static int afs_linux_dentry_revalidate(struct dentry *dp, int flags)
697 #else
698 static int afs_linux_dentry_revalidate(struct dentry *dp)
699 #endif
700 {
701     int code;
702     cred_t *credp;
703     struct vrequest treq;
704     struct vcache *vcp = (struct vcache*)dp->d_inode;
705
706     /* If it's a negative dentry, then there's nothing to do. */
707     if (!vcp)
708         goto out_valid;
709
710     if (afs_linux_revalidate(dp) == 0)
711         goto out_valid;
712
713 out_bad:
714     return 0;
715
716 out_valid:
717     return 1;
718
719 }
720
721 /* afs_dentry_iput */
722 static void afs_dentry_iput(struct dentry *dp, struct inode *ip)
723 {
724     osi_iput(ip);
725 }
726
727 #if defined(AFS_LINUX24_ENV)
728 struct dentry_operations afs_dentry_operations = {
729        d_revalidate:   afs_linux_dentry_revalidate,
730        d_iput:         afs_dentry_iput,
731 };
732 struct dentry_operations *afs_dops = &afs_dentry_operations;
733 #else
734 struct dentry_operations afs_dentry_operations = {
735         afs_linux_dentry_revalidate,    /* d_validate(struct dentry *) */
736         NULL,                   /* d_hash */
737         NULL,                   /* d_compare */
738         NULL,                   /* d_delete(struct dentry *) */
739         NULL,                   /* d_release(struct dentry *) */
740         afs_dentry_iput         /* d_iput(struct dentry *, struct inode *) */
741 };
742 struct dentry_operations *afs_dops = &afs_dentry_operations;
743 #endif
744
745 /**********************************************************************
746  * AFS Linux inode operations
747  **********************************************************************/
748
749 /* afs_linux_create
750  *
751  * Merely need to set enough of vattr to get us through the create. Note
752  * that the higher level code (open_namei) will take care of any tuncation
753  * explicitly. Exclusive open is also taken care of in open_namei.
754  *
755  * name is in kernel space at this point.
756  */
757 int afs_linux_create(struct inode *dip, struct dentry *dp, int mode)
758 {
759     int code;
760     cred_t *credp = crref();
761     struct vattr vattr;
762     enum vcexcl excl;
763     const char *name = dp->d_name.name;
764     struct inode *ip;
765
766     VATTR_NULL(&vattr);
767     vattr.va_mode = mode;
768
769     AFS_GLOCK();
770     code = afs_create((struct vcache*)dip, name, &vattr, NONEXCL, mode,
771                       (struct vcache**)&ip, credp);
772
773     if (!code) {
774         vattr2inode(ip, &vattr);
775         /* Reset ops if symlink or directory. */
776 #if defined(AFS_LINUX24_ENV)
777        if (S_ISREG(ip->i_mode)) {
778            ip->i_op = &afs_file_iops;
779            ip->i_fop = &afs_file_fops;
780            ip->i_data.a_ops = &afs_file_aops;
781         } else if (S_ISDIR(ip->i_mode)) {
782            ip->i_op = &afs_dir_iops;
783            ip->i_fop = &afs_dir_fops;
784         } else if (S_ISLNK(ip->i_mode)) {
785            ip->i_op = &afs_symlink_iops;
786            ip->i_data.a_ops = &afs_symlink_aops;
787            ip->i_mapping = &ip->i_data;
788         } else
789            printk("afs_linux_create: FIXME\n");
790 #else
791         if (S_ISDIR(ip->i_mode))
792             ip->i_op = &afs_dir_iops;
793         else if (S_ISLNK(ip->i_mode))
794             ip->i_op = &afs_symlink_iops;
795 #endif
796
797         dp->d_op = afs_dops;
798         d_instantiate(dp, ip);
799     }
800
801     AFS_GUNLOCK();
802     crfree(credp);
803     return -code;
804 }
805
806 /* afs_linux_lookup */
807 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,2,10)
808 struct dentry *afs_linux_lookup(struct inode *dip, struct dentry *dp)
809 #else
810 int afs_linux_lookup(struct inode *dip, struct dentry *dp)
811 #endif
812 {
813     int code = 0;
814     cred_t *credp = crref();
815     struct vcache *vcp=NULL;
816     const char *comp = dp->d_name.name;
817     AFS_GLOCK();
818     code = afs_lookup((struct vcache *)dip, comp, &vcp, credp);
819
820     if (vcp) {
821         struct inode *ip = (struct inode*)vcp;
822         /* Reset ops if symlink or directory. */
823 #if defined(AFS_LINUX24_ENV)
824        if (S_ISREG(ip->i_mode)) {
825            ip->i_op = &afs_file_iops;
826            ip->i_fop = &afs_file_fops;
827            ip->i_data.a_ops = &afs_file_aops;
828         } else if (S_ISDIR(ip->i_mode)) {
829            ip->i_op = &afs_dir_iops;
830            ip->i_fop = &afs_dir_fops;
831         } else if (S_ISLNK(ip->i_mode)) {
832            ip->i_op = &afs_symlink_iops;
833            ip->i_data.a_ops = &afs_symlink_aops;
834            ip->i_mapping = &ip->i_data;
835         } else
836            printk("afs_linux_lookup: FIXME\n");
837 #else
838         if (S_ISDIR(ip->i_mode))
839             ip->i_op = &afs_dir_iops;
840         else if (S_ISLNK(ip->i_mode))
841             ip->i_op = &afs_symlink_iops;
842 #endif
843     }
844     dp->d_op = afs_dops;
845     d_add(dp, (struct inode*)vcp);
846
847     AFS_GUNLOCK();
848     crfree(credp);
849
850     /* It's ok for the file to not be found. That's noted by the caller by
851      * seeing that the dp->d_inode field is NULL.
852      */
853 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,2,10)
854     if (code == ENOENT)
855         return ERR_PTR(0);
856     else
857         return ERR_PTR(-code);
858 #else
859     if (code == ENOENT)
860         code = 0;
861     return -code;
862 #endif
863 }
864
865 int afs_linux_link(struct dentry *olddp, struct inode *dip,
866                    struct dentry *newdp)
867 {
868     int code;
869     cred_t *credp = crref();
870     const char *name = newdp->d_name.name;
871     struct inode *oldip = olddp->d_inode;
872
873     /* If afs_link returned the vnode, we could instantiate the
874      * dentry. Since it's not, we drop this one and do a new lookup.
875      */
876     d_drop(newdp);
877
878     AFS_GLOCK();
879     code = afs_link((struct vcache*)oldip, (struct vcache*)dip, name, credp);
880
881     AFS_GUNLOCK();
882     crfree(credp);
883     return -code;
884 }
885
886 int afs_linux_unlink(struct inode *dip, struct dentry *dp)
887 {
888     int code;
889     cred_t *credp = crref();
890     const char *name = dp->d_name.name;
891     int putback = 0;
892
893     if (!list_empty(&dp->d_hash)) {
894         d_drop(dp);
895         /* Install a definite non-existence if we're the only user. */
896 #if defined(AFS_LINUX24_ENV)
897         if (atomic_read(&dp->d_count) == 1)
898 #else
899         if (dp->d_count == 1)
900 #endif
901             putback = 1;
902     }
903
904     AFS_GLOCK();
905     code = afs_remove((struct vcache*)dip, name, credp);
906     AFS_GUNLOCK();
907     if (!code) {
908         d_delete(dp);
909         if (putback)
910             d_add(dp, NULL); /* means definitely does _not_ exist */
911     }
912     crfree(credp);
913     return -code;
914 }
915
916
917 int afs_linux_symlink(struct inode *dip, struct dentry *dp,
918                       const char *target)
919 {
920     int code;
921     cred_t *credp = crref();
922     struct vattr vattr;
923     const char *name = dp->d_name.name;
924
925     /* If afs_symlink returned the vnode, we could instantiate the
926      * dentry. Since it's not, we drop this one and do a new lookup.
927      */
928     d_drop(dp);
929
930     AFS_GLOCK();
931     VATTR_NULL(&vattr);
932     code = afs_symlink((struct vcache*)dip, name, &vattr, target, credp);
933     AFS_GUNLOCK();
934     crfree(credp);
935     return -code;
936 }
937
938 int afs_linux_mkdir(struct inode *dip, struct dentry *dp, int mode)
939 {
940     int code;
941     cred_t *credp = crref();
942     struct vcache *tvcp = NULL;
943     struct vattr vattr;
944     const char *name = dp->d_name.name;
945
946     AFS_GLOCK();
947     VATTR_NULL(&vattr);
948     vattr.va_mask = ATTR_MODE;
949     vattr.va_mode = mode;
950     code = afs_mkdir((struct vcache*)dip, name, &vattr, &tvcp, credp);
951
952     if (tvcp) {
953         tvcp->v.v_op = &afs_dir_iops;
954 #if defined(AFS_LINUX24_ENV)
955         tvcp->v.v_fop = &afs_dir_fops;
956 #endif
957         dp->d_op = afs_dops;
958         d_instantiate(dp, (struct inode*)tvcp);
959     }
960     AFS_GUNLOCK();
961     crfree(credp);
962     return -code;
963 }
964
965 int afs_linux_rmdir(struct inode *dip, struct dentry *dp)
966 {
967     int code;
968     cred_t *credp = crref();
969     const char *name = dp->d_name.name;
970
971     AFS_GLOCK();
972     code = afs_rmdir((struct vcache*)dip, name, credp);
973
974     /* Linux likes to see ENOTDIR returned from an rmdir() syscall
975      * that failed because a directory is not empty. So, we map
976      * EEXIST to ENOTDIR on linux.
977      */
978     if (code == EEXIST) {
979         code = ENOTDIR;
980     }
981     
982     if (!code) {
983         d_delete(dp);
984     }
985
986     AFS_GUNLOCK();
987     crfree(credp);
988     return -code;
989 }
990
991
992
993 int afs_linux_rename(struct inode *oldip, struct dentry *olddp,
994                      struct inode *newip, struct dentry *newdp)
995 {
996     int code;
997     cred_t *credp = crref();
998     const char *oldname = olddp->d_name.name;
999     const char *newname = newdp->d_name.name;
1000
1001     /* Remove old and new entries from name hash. New one will change below.
1002      * While it's optimal to catch failures and re-insert newdp into hash,
1003      * it's also error prone and in that case we're already dealing with error
1004      * cases. Let another lookup put things right, if need be.
1005      */
1006     if (!list_empty(&olddp->d_hash)) {
1007         d_drop(olddp);
1008     }
1009     if (!list_empty(&newdp->d_hash)) {
1010         d_drop(newdp);
1011     }
1012     AFS_GLOCK();
1013     code = afs_rename((struct vcache*)oldip, oldname, (struct vcache*)newip,
1014                       newname, credp);
1015     AFS_GUNLOCK();
1016
1017     if (!code)
1018         d_move(olddp, newdp);
1019
1020     crfree(credp);
1021     return -code;
1022 }
1023
1024
1025 /* afs_linux_ireadlink 
1026  * Internal readlink which can return link contents to user or kernel space.
1027  * Note that the buffer is NOT supposed to be null-terminated.
1028  */
1029 static int afs_linux_ireadlink(struct inode *ip, char *target, int maxlen,
1030                         uio_seg_t seg)
1031 {
1032     int code;
1033     cred_t *credp = crref();
1034     uio_t tuio;
1035     struct iovec iov;
1036
1037     setup_uio(&tuio, &iov, target, 0, maxlen, UIO_READ, seg);
1038     code = afs_readlink((struct vcache*)ip, &tuio, credp);
1039     crfree(credp);
1040
1041     if (!code)
1042         return maxlen - tuio.uio_resid;
1043     else
1044         return -code;
1045 }
1046
1047 #if !defined(AFS_LINUX24_ENV)
1048 /* afs_linux_readlink 
1049  * Fill target (which is in user space) with contents of symlink.
1050  */
1051 int afs_linux_readlink(struct dentry *dp, char *target, int maxlen)
1052 {
1053     int code;
1054     struct inode *ip = dp->d_inode;
1055
1056     AFS_GLOCK();
1057     code = afs_linux_ireadlink(ip, target, maxlen, AFS_UIOUSER);
1058     AFS_GUNLOCK();
1059     return code;
1060 }
1061
1062
1063 /* afs_linux_follow_link
1064  * a file system dependent link following routine.
1065  */
1066 struct dentry * afs_linux_follow_link(struct dentry *dp,
1067                                       struct dentry *basep,
1068                                       unsigned int follow)
1069 {
1070     int code = 0;
1071     char *name;
1072     struct dentry *res;
1073
1074     AFS_GLOCK();
1075     name = osi_Alloc(PATH_MAX+1);
1076     if (!name) {
1077         AFS_GUNLOCK();
1078         dput(basep);
1079         return ERR_PTR(-EIO);
1080     }
1081
1082     code = afs_linux_ireadlink(dp->d_inode, name, PATH_MAX, AFS_UIOSYS);
1083     AFS_GUNLOCK();
1084
1085     if (code<0) {
1086         dput(basep);
1087         res = ERR_PTR(code);
1088     }
1089     else {
1090         name[code] = '\0';
1091         res = lookup_dentry(name, basep, follow);
1092     }
1093
1094     AFS_GLOCK();
1095     osi_Free(name, PATH_MAX+1);
1096     AFS_GUNLOCK();
1097     return res;
1098 }
1099 #endif
1100
1101 /* afs_linux_readpage
1102  * all reads come through here. A strategy-like read call.
1103  */
1104 int afs_linux_readpage(struct file *fp, struct page *pp)
1105 {
1106     int code;
1107     cred_t *credp = crref();
1108 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,0)
1109     char *address;
1110     loff_t offset = pp->index << PAGE_CACHE_SHIFT;
1111 #else
1112     ulong address = afs_linux_page_address(pp);
1113     loff_t offset = pageoff(pp);
1114 #endif
1115     uio_t tuio;
1116     struct iovec iovec;
1117     struct inode *ip = FILE_INODE(fp);
1118     int cnt = atomic_read(&pp->count);
1119
1120     AFS_GLOCK();
1121     afs_Trace4(afs_iclSetp, CM_TRACE_READPAGE,
1122                ICL_TYPE_POINTER, ip,
1123                ICL_TYPE_POINTER, pp,
1124                ICL_TYPE_INT32, cnt,
1125                ICL_TYPE_INT32, 99999); /* not a possible code value */
1126
1127 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,0)
1128     address = kmap(pp);
1129     ClearPageError(pp);
1130
1131     lock_kernel();
1132 #else
1133     atomic_add(1, &pp->count);
1134     set_bit(PG_locked, &pp->flags); /* other bits? See mm.h */
1135     clear_bit(PG_error, &pp->flags);
1136 #endif
1137
1138     setup_uio(&tuio, &iovec, (char*)address, offset, PAGESIZE,
1139               UIO_READ, AFS_UIOSYS);
1140     code = afs_rdwr((struct vcache*)ip, &tuio, UIO_READ, 0, credp);
1141 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,0)
1142     unlock_kernel();
1143 #endif
1144
1145     if (!code) {
1146         if (tuio.uio_resid) /* zero remainder of page */
1147             memset((void*)(address+(PAGESIZE-tuio.uio_resid)), 0,
1148                    tuio.uio_resid);
1149 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,0)
1150         flush_dcache_page(pp);
1151         SetPageUptodate(pp);
1152 #else
1153         set_bit(PG_uptodate, &pp->flags);
1154 #endif
1155     }
1156
1157 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,0)
1158     kunmap(pp);
1159     UnlockPage(pp);
1160 #else
1161     clear_bit(PG_locked, &pp->flags);
1162     wake_up(&pp->wait);
1163     free_page(address);
1164 #endif
1165
1166     crfree(credp);
1167     afs_Trace4(afs_iclSetp, CM_TRACE_READPAGE,
1168                ICL_TYPE_POINTER, ip,
1169                ICL_TYPE_POINTER, pp,
1170                ICL_TYPE_INT32, cnt,
1171                ICL_TYPE_INT32, code);
1172     AFS_GUNLOCK();
1173     return -code;
1174 }
1175
1176 #if defined(AFS_LINUX24_ENV)
1177 int afs_linux_writepage(struct page *pp)
1178 {
1179     struct address_space *mapping = pp->mapping;
1180     struct inode *inode;
1181     unsigned long end_index;
1182     unsigned offset = PAGE_CACHE_SIZE;
1183     long status;
1184  
1185     inode = (struct inode *) mapping->host;
1186     end_index = inode->i_size >> PAGE_CACHE_SHIFT;
1187
1188     /* easy case */
1189     if (pp->index < end_index)
1190         goto do_it;
1191     /* things got complicated... */
1192     offset = inode->i_size & (PAGE_CACHE_SIZE-1);
1193     /* OK, are we completely out? */
1194     if (pp->index >= end_index+1 || !offset)
1195         return -EIO;
1196 do_it:
1197     AFS_GLOCK();
1198     status = afs_linux_writepage_sync(inode, pp, 0, offset);
1199     AFS_GUNLOCK();
1200     SetPageUptodate(pp);
1201     UnlockPage(pp);
1202     if (status == offset)
1203         return 0;
1204     else
1205         return status;
1206 }
1207 #endif
1208
1209 #ifdef NOTUSED
1210 /* afs_linux_bmap - supports generic_readpage, but we roll our own. */
1211 int afs_linux_bmap(struct inode *ip, int) { return -EINVAL; }
1212
1213 /* afs_linux_truncate
1214  * Handles discarding disk blocks if this were a device. ext2 indicates we
1215  * may need to zero partial last pages of memory mapped files.
1216  */
1217 void afs_linux_truncate(struct inode *ip)
1218 {
1219 }
1220 #endif
1221
1222 /* afs_linux_permission
1223  * Check access rights - returns error if can't check or permission denied.
1224  */
1225 int afs_linux_permission(struct inode *ip, int mode)
1226 {
1227     int code;
1228     cred_t *credp = crref();
1229     int tmp = 0;
1230
1231     AFS_GLOCK();
1232     if (mode & MAY_EXEC) tmp |= VEXEC;
1233     if (mode & MAY_READ) tmp |= VREAD;
1234     if (mode & MAY_WRITE) tmp |= VWRITE;
1235     code = afs_access((struct vcache*)ip, tmp, credp);
1236
1237     AFS_GUNLOCK();
1238     crfree(credp);
1239     return -code;
1240 }
1241
1242
1243 #ifdef NOTUSED
1244 /* msdos sector mapping hack for memory mapping. */
1245 int afs_linux_smap(struct inode *ip, int) { return -EINVAL; }
1246 #endif
1247
1248 #if defined(AFS_LINUX24_ENV)
1249 int afs_linux_writepage_sync(struct inode *ip, struct page *pp,
1250                         unsigned long offset,
1251                         unsigned int count)
1252 {
1253     struct vcache *vcp = (struct vcache *) ip;
1254     char *buffer;
1255     loff_t base;
1256     int code = 0;
1257     cred_t *credp;
1258     uio_t tuio;
1259     struct iovec iovec;
1260     int f_flags = 0;
1261
1262     buffer = kmap(pp) + offset;
1263     base = (pp->index << PAGE_CACHE_SHIFT) + offset;
1264
1265     credp = crref();
1266     afs_Trace4(afs_iclSetp, CM_TRACE_UPDATEPAGE, ICL_TYPE_POINTER, vcp,
1267               ICL_TYPE_POINTER, pp,
1268               ICL_TYPE_INT32, atomic_read(&pp->count),
1269               ICL_TYPE_INT32, 99999);
1270     setup_uio(&tuio, &iovec, buffer, base, count, UIO_WRITE, AFS_UIOSYS);
1271
1272     code = afs_write(vcp, &tuio, f_flags, credp, 0);
1273
1274     vcache2inode(vcp);
1275
1276     code = code ? -code : count - tuio.uio_resid;
1277     afs_Trace4(afs_iclSetp, CM_TRACE_UPDATEPAGE, ICL_TYPE_POINTER, vcp,
1278               ICL_TYPE_POINTER, pp,
1279               ICL_TYPE_INT32, atomic_read(&pp->count),
1280               ICL_TYPE_INT32, code);
1281
1282     crfree(credp);
1283     kunmap(pp);
1284
1285     return code;
1286 }
1287
1288 static int
1289 afs_linux_updatepage(struct file *file, struct page *page, 
1290                      unsigned long offset, unsigned int count)
1291 {
1292     struct dentry *dentry = file->f_dentry;
1293
1294     return afs_linux_writepage_sync(dentry->d_inode, page, offset, count);
1295 }
1296 #else
1297 /* afs_linux_updatepage
1298  * What one would have thought was writepage - write dirty page to file.
1299  * Called from generic_file_write. buffer is still in user space. pagep
1300  * has been filled in with old data if we're updating less than a page.
1301  */
1302 int afs_linux_updatepage(struct file *fp, struct page *pp,
1303                          unsigned long offset,
1304                          unsigned int count, int sync)
1305 {
1306     struct vcache *vcp = (struct vcache *)FILE_INODE(fp);
1307     u8 *page_addr = (u8*) afs_linux_page_address(pp);
1308     int code = 0;
1309     cred_t *credp;
1310     uio_t tuio;
1311     struct iovec iovec;
1312     
1313     set_bit(PG_locked, &pp->flags);
1314
1315     credp = crref();
1316     AFS_GLOCK();
1317     afs_Trace4(afs_iclSetp, CM_TRACE_UPDATEPAGE, ICL_TYPE_POINTER, vcp,
1318                ICL_TYPE_POINTER, pp,
1319                ICL_TYPE_INT32, atomic_read(&pp->count),
1320                ICL_TYPE_INT32, 99999);
1321     setup_uio(&tuio, &iovec, page_addr + offset, pp->offset + offset, count,
1322               UIO_WRITE, AFS_UIOSYS);
1323
1324     code = afs_write(vcp, &tuio, fp->f_flags, credp, 0);
1325
1326     vcache2inode(vcp);
1327
1328     code = code ? -code : count - tuio.uio_resid;
1329     afs_Trace4(afs_iclSetp, CM_TRACE_UPDATEPAGE, ICL_TYPE_POINTER, vcp,
1330                ICL_TYPE_POINTER, pp,
1331                ICL_TYPE_INT32, atomic_read(&pp->count),
1332                ICL_TYPE_INT32, code);
1333
1334     AFS_GUNLOCK();
1335     crfree(credp);
1336
1337     clear_bit(PG_locked, &pp->flags);
1338     return code;
1339 }
1340 #endif
1341
1342 #if defined(AFS_LINUX24_ENV)
1343 static int afs_linux_commit_write(struct file *file, struct page *page, unsigned offset, unsigned to)
1344 {
1345     int code;
1346
1347     AFS_GLOCK();
1348     lock_kernel();
1349     code = afs_linux_updatepage(file, page, offset, to-offset);
1350     unlock_kernel();
1351     AFS_GUNLOCK();
1352     kunmap(page);
1353
1354     return code;
1355 }
1356
1357 static int afs_linux_prepare_write(struct file *file, struct page *page,
1358                                    unsigned from, unsigned to)
1359 {
1360     kmap(page);
1361     return 0;
1362 }
1363
1364 extern int afs_notify_change(struct dentry *dp, struct iattr* iattrp);
1365 #endif
1366
1367 #if defined(AFS_LINUX24_ENV)
1368 struct inode_operations afs_file_iops = {
1369     revalidate:                afs_linux_revalidate,
1370     setattr:           afs_notify_change,
1371     permission:                afs_linux_permission,
1372 };
1373 struct address_space_operations afs_file_aops = {
1374         readpage: afs_linux_readpage,
1375         writepage: afs_linux_writepage,
1376         commit_write: afs_linux_commit_write,
1377         prepare_write: afs_linux_prepare_write,
1378 };
1379
1380 struct inode_operations *afs_ops = &afs_file_iops;
1381 #else
1382 struct inode_operations afs_iops = {
1383     &afs_file_fops,     /* file operations */
1384     NULL,               /* afs_linux_create */
1385     NULL,               /* afs_linux_lookup */
1386     NULL,               /* afs_linux_link */
1387     NULL,               /* afs_linux_unlink */
1388     NULL,               /* afs_linux_symlink */
1389     NULL,               /* afs_linux_mkdir */
1390     NULL,               /* afs_linux_rmdir */
1391     NULL,               /* afs_linux_mknod */
1392     NULL,               /* afs_linux_rename */
1393     NULL,               /* afs_linux_readlink */
1394     NULL,               /* afs_linux_follow_link */
1395     afs_linux_readpage,
1396     NULL,               /* afs_linux_writepage */
1397     NULL,               /* afs_linux_bmap */
1398     NULL,               /* afs_linux_truncate */
1399     afs_linux_permission,
1400     NULL,               /* afs_linux_smap */
1401     afs_linux_updatepage,
1402     afs_linux_revalidate,
1403 };
1404
1405 struct inode_operations *afs_ops = &afs_iops;
1406 #endif
1407
1408 /* Separate ops vector for directories. Linux 2.2 tests type of inode
1409  * by what sort of operation is allowed.....
1410  */
1411 #if defined(AFS_LINUX24_ENV)
1412 struct inode_operations afs_dir_iops = {
1413     create:    afs_linux_create,
1414     lookup:    afs_linux_lookup,
1415     link:      afs_linux_link,
1416     unlink:    afs_linux_unlink,
1417     symlink:   afs_linux_symlink,
1418     mkdir:     afs_linux_mkdir,
1419     rmdir:     afs_linux_rmdir,
1420     rename:    afs_linux_rename,
1421     revalidate:        afs_linux_revalidate,
1422     setattr:   afs_notify_change,
1423     permission:        afs_linux_permission,
1424 };
1425 #else
1426 struct inode_operations afs_dir_iops = {
1427     &afs_dir_fops,      /* file operations for directories */
1428     afs_linux_create,
1429     afs_linux_lookup,
1430     afs_linux_link,
1431     afs_linux_unlink,
1432     afs_linux_symlink,
1433     afs_linux_mkdir,
1434     afs_linux_rmdir,
1435     NULL,               /* afs_linux_mknod */
1436     afs_linux_rename,
1437     NULL,               /* afs_linux_readlink */
1438     NULL,               /* afs_linux_follow_link */
1439     NULL,               /* afs_linux_readpage */
1440     NULL,               /* afs_linux_writepage */
1441     NULL,               /* afs_linux_bmap */
1442     NULL,               /* afs_linux_truncate */
1443     afs_linux_permission,
1444     NULL,               /* afs_linux_smap */
1445     NULL,               /* afs_linux_updatepage */
1446     afs_linux_revalidate,
1447 };
1448 #endif
1449
1450 /* We really need a separate symlink set of ops, since do_follow_link()
1451  * determines if it _is_ a link by checking if the follow_link op is set.
1452  */
1453 #if defined(AFS_LINUX24_ENV)
1454 static int afs_symlink_filler(struct file *file, struct page *page)
1455 {
1456     struct inode *ip = (struct inode *) page->mapping->host;
1457     char *p = (char *)kmap(page);
1458     int code;
1459
1460     AFS_GLOCK();
1461     lock_kernel();
1462     code = afs_linux_ireadlink(ip, p, PAGE_SIZE, AFS_UIOSYS);
1463
1464     if (code<0)
1465            goto fail;
1466     p[code] = '\0';            /* null terminate? */
1467     unlock_kernel();
1468     AFS_GUNLOCK();
1469
1470     SetPageUptodate(page);
1471     kunmap(page);
1472     UnlockPage(page);
1473     return 0;
1474
1475 fail:
1476     unlock_kernel();
1477     AFS_GUNLOCK();
1478
1479     SetPageError(page);
1480     kunmap(page);
1481     UnlockPage(page);
1482     return code;
1483 }
1484
1485 struct address_space_operations afs_symlink_aops = {
1486        readpage:       afs_symlink_filler
1487 };
1488
1489 struct inode_operations afs_symlink_iops = {
1490     readlink:          page_readlink,
1491     follow_link:       page_follow_link,
1492     setattr:           afs_notify_change,
1493 };
1494 #else
1495 struct inode_operations afs_symlink_iops = {
1496     NULL,               /* file operations */
1497     NULL,               /* create */
1498     NULL,               /* lookup */
1499     NULL,               /* link */
1500     NULL,               /* unlink */
1501     NULL,               /* symlink */
1502     NULL,               /* mkdir */
1503     NULL,               /* rmdir */
1504     NULL,               /* afs_linux_mknod */
1505     NULL,               /* rename */
1506     afs_linux_readlink,
1507     afs_linux_follow_link,
1508     NULL,               /* readpage */
1509     NULL,               /* afs_linux_writepage */
1510     NULL,               /* afs_linux_bmap */
1511     NULL,               /* afs_linux_truncate */
1512     afs_linux_permission, /* tho the code appears to indicate not used? */
1513     NULL,               /* afs_linux_smap */
1514     NULL,               /* updatepage */
1515     afs_linux_revalidate, /* tho the code appears to indicate not used? */
1516 };
1517 #endif