5958e659ff1de68b32b2bb1a4c672509aa2d2735
[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     /* Make this a fast path (no crref), since it's called so often. */
653     if (vcp->states & CStatd) {
654         if (*dp->d_name.name != '/' && vcp->mvstat == 2) /* root vnode */
655             check_bad_parent(dp); /* check and correct mvid */
656         vcache2inode(vcp);
657 #ifdef AFS_LINUX24_ENV
658         unlock_kernel();
659 #endif
660         AFS_GUNLOCK();
661         return 0;
662     }
663
664     credp = crref();
665     code = afs_InitReq(&treq, credp);
666     if (!code)
667         code = afs_VerifyVCache(vcp, &treq);
668
669 #ifdef AFS_LINUX24_ENV
670     unlock_kernel();
671 #endif
672     AFS_GUNLOCK();
673     crfree(credp);
674
675     return -code ;
676 }
677
678 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,2,10)
679 static int afs_linux_dentry_revalidate(struct dentry *dp, int flags)
680 #else
681 static int afs_linux_dentry_revalidate(struct dentry *dp)
682 #endif
683 {
684     /* Force revalidation as this may be a different client than the
685        one which caused an entry to get cached */
686     return 0;
687 }
688
689 /* afs_dentry_iput */
690 static void afs_dentry_iput(struct dentry *dp, struct inode *ip)
691 {
692     osi_iput(ip);
693 }
694
695 #if defined(AFS_LINUX24_ENV)
696 struct dentry_operations afs_dentry_operations = {
697        d_revalidate:   afs_linux_dentry_revalidate,
698        d_iput:         afs_dentry_iput,
699 };
700 struct dentry_operations *afs_dops = &afs_dentry_operations;
701 #else
702 struct dentry_operations afs_dentry_operations = {
703         afs_linux_dentry_revalidate,    /* d_validate(struct dentry *) */
704         NULL,                   /* d_hash */
705         NULL,                   /* d_compare */
706         NULL,                   /* d_delete(struct dentry *) */
707         NULL,                   /* d_release(struct dentry *) */
708         afs_dentry_iput         /* d_iput(struct dentry *, struct inode *) */
709 };
710 struct dentry_operations *afs_dops = &afs_dentry_operations;
711 #endif
712
713 /**********************************************************************
714  * AFS Linux inode operations
715  **********************************************************************/
716
717 /* afs_linux_create
718  *
719  * Merely need to set enough of vattr to get us through the create. Note
720  * that the higher level code (open_namei) will take care of any tuncation
721  * explicitly. Exclusive open is also taken care of in open_namei.
722  *
723  * name is in kernel space at this point.
724  */
725 int afs_linux_create(struct inode *dip, struct dentry *dp, int mode)
726 {
727     int code;
728     cred_t *credp = crref();
729     struct vattr vattr;
730     enum vcexcl excl;
731     const char *name = dp->d_name.name;
732     struct inode *ip;
733
734     VATTR_NULL(&vattr);
735     vattr.va_mode = mode;
736
737     AFS_GLOCK();
738     code = afs_create((struct vcache*)dip, name, &vattr, NONEXCL, mode,
739                       (struct vcache**)&ip, credp);
740
741     if (!code) {
742         vattr2inode(ip, &vattr);
743         /* Reset ops if symlink or directory. */
744 #if defined(AFS_LINUX24_ENV)
745        if (S_ISREG(ip->i_mode)) {
746            ip->i_op = &afs_file_iops;
747            ip->i_fop = &afs_file_fops;
748            ip->i_data.a_ops = &afs_file_aops;
749         } else if (S_ISDIR(ip->i_mode)) {
750            ip->i_op = &afs_dir_iops;
751            ip->i_fop = &afs_dir_fops;
752         } else if (S_ISLNK(ip->i_mode)) {
753            ip->i_op = &afs_symlink_iops;
754            ip->i_data.a_ops = &afs_symlink_aops;
755            ip->i_mapping = &ip->i_data;
756         } else
757            printk("afs_linux_create: FIXME\n");
758 #else
759         if (S_ISDIR(ip->i_mode))
760             ip->i_op = &afs_dir_iops;
761         else if (S_ISLNK(ip->i_mode))
762             ip->i_op = &afs_symlink_iops;
763 #endif
764
765         dp->d_op = afs_dops;
766         /* This DV is probably wrong, unfortunately, Perhaps we should 
767            VerifyVCache the directory  */
768         dp->d_time=hgetlo(((struct vcache *)dip)->m.DataVersion);
769         d_instantiate(dp, ip);
770     }
771
772     AFS_GUNLOCK();
773     crfree(credp);
774     return -code;
775 }
776
777 /* afs_linux_lookup */
778 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,2,10)
779 struct dentry *afs_linux_lookup(struct inode *dip, struct dentry *dp)
780 #else
781 int afs_linux_lookup(struct inode *dip, struct dentry *dp)
782 #endif
783 {
784     int code = 0;
785     cred_t *credp = crref();
786     struct vcache *vcp=NULL;
787     const char *comp = dp->d_name.name;
788     AFS_GLOCK();
789     code = afs_lookup((struct vcache *)dip, comp, &vcp, credp);
790
791     if (vcp) {
792         struct inode *ip = (struct inode*)vcp;
793         /* Reset ops if symlink or directory. */
794 #if defined(AFS_LINUX24_ENV)
795        if (S_ISREG(ip->i_mode)) {
796            ip->i_op = &afs_file_iops;
797            ip->i_fop = &afs_file_fops;
798            ip->i_data.a_ops = &afs_file_aops;
799         } else if (S_ISDIR(ip->i_mode)) {
800            ip->i_op = &afs_dir_iops;
801            ip->i_fop = &afs_dir_fops;
802         } else if (S_ISLNK(ip->i_mode)) {
803            ip->i_op = &afs_symlink_iops;
804            ip->i_data.a_ops = &afs_symlink_aops;
805            ip->i_mapping = &ip->i_data;
806         } else
807            printk("afs_linux_lookup: FIXME\n");
808 #else
809         if (S_ISDIR(ip->i_mode))
810             ip->i_op = &afs_dir_iops;
811         else if (S_ISLNK(ip->i_mode))
812             ip->i_op = &afs_symlink_iops;
813 #endif
814     }
815     /* directory ought to be stat'd here.... */
816     dp->d_time=hgetlo(((struct vcache *)dip)->m.DataVersion);
817     dp->d_op = afs_dops;
818     d_add(dp, (struct inode*)vcp);
819
820     AFS_GUNLOCK();
821     crfree(credp);
822
823     /* It's ok for the file to not be found. That's noted by the caller by
824      * seeing that the dp->d_inode field is NULL.
825      */
826 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,2,10)
827     if (code == ENOENT)
828         return ERR_PTR(0);
829     else
830         return ERR_PTR(-code);
831 #else
832     if (code == ENOENT)
833         code = 0;
834     return -code;
835 #endif
836 }
837
838 int afs_linux_link(struct dentry *olddp, struct inode *dip,
839                    struct dentry *newdp)
840 {
841     int code;
842     cred_t *credp = crref();
843     const char *name = newdp->d_name.name;
844     struct inode *oldip = olddp->d_inode;
845
846     /* If afs_link returned the vnode, we could instantiate the
847      * dentry. Since it's not, we drop this one and do a new lookup.
848      */
849     d_drop(newdp);
850
851     AFS_GLOCK();
852     code = afs_link((struct vcache*)oldip, (struct vcache*)dip, name, credp);
853
854     AFS_GUNLOCK();
855     crfree(credp);
856     return -code;
857 }
858
859 int afs_linux_unlink(struct inode *dip, struct dentry *dp)
860 {
861     int code;
862     cred_t *credp = crref();
863     const char *name = dp->d_name.name;
864     int putback = 0;
865
866     if (!list_empty(&dp->d_hash)) {
867         d_drop(dp);
868         /* Install a definite non-existence if we're the only user. */
869 #if defined(AFS_LINUX24_ENV)
870         if (atomic_read(&dp->d_count) == 1)
871 #else
872         if (dp->d_count == 1)
873 #endif
874             putback = 1;
875     }
876
877     AFS_GLOCK();
878     code = afs_remove((struct vcache*)dip, name, credp);
879     AFS_GUNLOCK();
880     if (!code) {
881         d_delete(dp);
882         if (putback) {
883            /* This DV is probably wrong, unfortunately, Perhaps we should 
884               VerifyVCache the directory  */
885             dp->d_time=hgetlo(((struct vcache *)dip)->m.DataVersion);
886             d_add(dp, NULL); /* means definitely does _not_ exist */
887     }
888     }
889     crfree(credp);
890     return -code;
891 }
892
893
894 int afs_linux_symlink(struct inode *dip, struct dentry *dp,
895                       const char *target)
896 {
897     int code;
898     cred_t *credp = crref();
899     struct vattr vattr;
900     const char *name = dp->d_name.name;
901
902     /* If afs_symlink returned the vnode, we could instantiate the
903      * dentry. Since it's not, we drop this one and do a new lookup.
904      */
905     d_drop(dp);
906
907     AFS_GLOCK();
908     VATTR_NULL(&vattr);
909     code = afs_symlink((struct vcache*)dip, name, &vattr, target, credp);
910     AFS_GUNLOCK();
911     crfree(credp);
912     return -code;
913 }
914
915 int afs_linux_mkdir(struct inode *dip, struct dentry *dp, int mode)
916 {
917     int code;
918     cred_t *credp = crref();
919     struct vcache *tvcp = NULL;
920     struct vattr vattr;
921     const char *name = dp->d_name.name;
922
923     AFS_GLOCK();
924     VATTR_NULL(&vattr);
925     vattr.va_mask = ATTR_MODE;
926     vattr.va_mode = mode;
927     code = afs_mkdir((struct vcache*)dip, name, &vattr, &tvcp, credp);
928
929     if (tvcp) {
930         tvcp->v.v_op = &afs_dir_iops;
931 #if defined(AFS_LINUX24_ENV)
932         tvcp->v.v_fop = &afs_dir_fops;
933 #endif
934         dp->d_op = afs_dops;
935         /* This DV is probably wrong, unfortunately, Perhaps we should 
936            VerifyVCache the directory  */
937         dp->d_time=hgetlo(((struct vcache *)dip)->m.DataVersion);
938         d_instantiate(dp, (struct inode*)tvcp);
939     }
940     AFS_GUNLOCK();
941     crfree(credp);
942     return -code;
943 }
944
945 int afs_linux_rmdir(struct inode *dip, struct dentry *dp)
946 {
947     int code;
948     cred_t *credp = crref();
949     const char *name = dp->d_name.name;
950
951     AFS_GLOCK();
952     code = afs_rmdir((struct vcache*)dip, name, credp);
953
954     /* Linux likes to see ENOTEMPTY returned from an rmdir() syscall
955      * that failed because a directory is not empty. So, we map
956      * EEXIST to ENOTEMPTY on linux.
957      */
958     if (code == EEXIST) {
959         code = ENOTEMPTY;
960     }
961     
962     if (!code) {
963         d_delete(dp);
964     }
965
966     AFS_GUNLOCK();
967     crfree(credp);
968     return -code;
969 }
970
971
972
973 int afs_linux_rename(struct inode *oldip, struct dentry *olddp,
974                      struct inode *newip, struct dentry *newdp)
975 {
976     int code;
977     cred_t *credp = crref();
978     const char *oldname = olddp->d_name.name;
979     const char *newname = newdp->d_name.name;
980
981     /* Remove old and new entries from name hash. New one will change below.
982      * While it's optimal to catch failures and re-insert newdp into hash,
983      * it's also error prone and in that case we're already dealing with error
984      * cases. Let another lookup put things right, if need be.
985      */
986     if (!list_empty(&olddp->d_hash)) {
987         d_drop(olddp);
988     }
989     if (!list_empty(&newdp->d_hash)) {
990         d_drop(newdp);
991     }
992     AFS_GLOCK();
993     code = afs_rename((struct vcache*)oldip, oldname, (struct vcache*)newip,
994                       newname, credp);
995     AFS_GUNLOCK();
996
997     if (!code) {
998         /* update time so it doesn't expire immediately */
999         /* This DV is probably wrong, unfortunately, Perhaps we should 
1000            VerifyVCache the directory  */
1001         newdp->d_time=hgetlo(((struct vcache *)newdp->d_parent->d_inode)->m.DataVersion);
1002         d_move(olddp, newdp);
1003     }
1004
1005     crfree(credp);
1006     return -code;
1007 }
1008
1009
1010 /* afs_linux_ireadlink 
1011  * Internal readlink which can return link contents to user or kernel space.
1012  * Note that the buffer is NOT supposed to be null-terminated.
1013  */
1014 static int afs_linux_ireadlink(struct inode *ip, char *target, int maxlen,
1015                         uio_seg_t seg)
1016 {
1017     int code;
1018     cred_t *credp = crref();
1019     uio_t tuio;
1020     struct iovec iov;
1021
1022     setup_uio(&tuio, &iov, target, 0, maxlen, UIO_READ, seg);
1023     code = afs_readlink((struct vcache*)ip, &tuio, credp);
1024     crfree(credp);
1025
1026     if (!code)
1027         return maxlen - tuio.uio_resid;
1028     else
1029         return -code;
1030 }
1031
1032 #if !defined(AFS_LINUX24_ENV)
1033 /* afs_linux_readlink 
1034  * Fill target (which is in user space) with contents of symlink.
1035  */
1036 int afs_linux_readlink(struct dentry *dp, char *target, int maxlen)
1037 {
1038     int code;
1039     struct inode *ip = dp->d_inode;
1040
1041     AFS_GLOCK();
1042     code = afs_linux_ireadlink(ip, target, maxlen, AFS_UIOUSER);
1043     AFS_GUNLOCK();
1044     return code;
1045 }
1046
1047
1048 /* afs_linux_follow_link
1049  * a file system dependent link following routine.
1050  */
1051 struct dentry * afs_linux_follow_link(struct dentry *dp,
1052                                       struct dentry *basep,
1053                                       unsigned int follow)
1054 {
1055     int code = 0;
1056     char *name;
1057     struct dentry *res;
1058
1059     AFS_GLOCK();
1060     name = osi_Alloc(PATH_MAX+1);
1061     if (!name) {
1062         AFS_GUNLOCK();
1063         dput(basep);
1064         return ERR_PTR(-EIO);
1065     }
1066
1067     code = afs_linux_ireadlink(dp->d_inode, name, PATH_MAX, AFS_UIOSYS);
1068     AFS_GUNLOCK();
1069
1070     if (code<0) {
1071         dput(basep);
1072         res = ERR_PTR(code);
1073     }
1074     else {
1075         name[code] = '\0';
1076         res = lookup_dentry(name, basep, follow);
1077     }
1078
1079     AFS_GLOCK();
1080     osi_Free(name, PATH_MAX+1);
1081     AFS_GUNLOCK();
1082     return res;
1083 }
1084 #endif
1085
1086 /* afs_linux_readpage
1087  * all reads come through here. A strategy-like read call.
1088  */
1089 int afs_linux_readpage(struct file *fp, struct page *pp)
1090 {
1091     int code;
1092     cred_t *credp = crref();
1093 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,0)
1094     char *address;
1095     loff_t offset = pp->index << PAGE_CACHE_SHIFT;
1096 #else
1097     ulong address = afs_linux_page_address(pp);
1098     loff_t offset = pageoff(pp);
1099 #endif
1100     uio_t tuio;
1101     struct iovec iovec;
1102     struct inode *ip = FILE_INODE(fp);
1103     int cnt = atomic_read(&pp->count);
1104
1105     AFS_GLOCK();
1106     afs_Trace4(afs_iclSetp, CM_TRACE_READPAGE,
1107                ICL_TYPE_POINTER, ip,
1108                ICL_TYPE_POINTER, pp,
1109                ICL_TYPE_INT32, cnt,
1110                ICL_TYPE_INT32, 99999); /* not a possible code value */
1111
1112 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,0)
1113     address = kmap(pp);
1114     ClearPageError(pp);
1115
1116     lock_kernel();
1117 #else
1118     atomic_add(1, &pp->count);
1119     set_bit(PG_locked, &pp->flags); /* other bits? See mm.h */
1120     clear_bit(PG_error, &pp->flags);
1121 #endif
1122
1123     setup_uio(&tuio, &iovec, (char*)address, offset, PAGESIZE,
1124               UIO_READ, AFS_UIOSYS);
1125     code = afs_rdwr((struct vcache*)ip, &tuio, UIO_READ, 0, credp);
1126 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,0)
1127     unlock_kernel();
1128 #endif
1129
1130     if (!code) {
1131         if (tuio.uio_resid) /* zero remainder of page */
1132             memset((void*)(address+(PAGESIZE-tuio.uio_resid)), 0,
1133                    tuio.uio_resid);
1134 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,0)
1135         flush_dcache_page(pp);
1136         SetPageUptodate(pp);
1137 #else
1138         set_bit(PG_uptodate, &pp->flags);
1139 #endif
1140     }
1141
1142 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,0)
1143     kunmap(pp);
1144     UnlockPage(pp);
1145 #else
1146     clear_bit(PG_locked, &pp->flags);
1147     wake_up(&pp->wait);
1148     free_page(address);
1149 #endif
1150
1151     crfree(credp);
1152     afs_Trace4(afs_iclSetp, CM_TRACE_READPAGE,
1153                ICL_TYPE_POINTER, ip,
1154                ICL_TYPE_POINTER, pp,
1155                ICL_TYPE_INT32, cnt,
1156                ICL_TYPE_INT32, code);
1157     AFS_GUNLOCK();
1158     return -code;
1159 }
1160
1161 #if defined(AFS_LINUX24_ENV)
1162 int afs_linux_writepage(struct page *pp)
1163 {
1164     struct address_space *mapping = pp->mapping;
1165     struct inode *inode;
1166     unsigned long end_index;
1167     unsigned offset = PAGE_CACHE_SIZE;
1168     long status;
1169  
1170     inode = (struct inode *) mapping->host;
1171     end_index = inode->i_size >> PAGE_CACHE_SHIFT;
1172
1173     /* easy case */
1174     if (pp->index < end_index)
1175         goto do_it;
1176     /* things got complicated... */
1177     offset = inode->i_size & (PAGE_CACHE_SIZE-1);
1178     /* OK, are we completely out? */
1179     if (pp->index >= end_index+1 || !offset)
1180         return -EIO;
1181 do_it:
1182     AFS_GLOCK();
1183     status = afs_linux_writepage_sync(inode, pp, 0, offset);
1184     AFS_GUNLOCK();
1185     SetPageUptodate(pp);
1186     UnlockPage(pp);
1187     if (status == offset)
1188         return 0;
1189     else
1190         return status;
1191 }
1192 #endif
1193
1194 #ifdef NOTUSED
1195 /* afs_linux_bmap - supports generic_readpage, but we roll our own. */
1196 int afs_linux_bmap(struct inode *ip, int) { return -EINVAL; }
1197
1198 /* afs_linux_truncate
1199  * Handles discarding disk blocks if this were a device. ext2 indicates we
1200  * may need to zero partial last pages of memory mapped files.
1201  */
1202 void afs_linux_truncate(struct inode *ip)
1203 {
1204 }
1205 #endif
1206
1207 /* afs_linux_permission
1208  * Check access rights - returns error if can't check or permission denied.
1209  */
1210 int afs_linux_permission(struct inode *ip, int mode)
1211 {
1212     int code;
1213     cred_t *credp = crref();
1214     int tmp = 0;
1215
1216     AFS_GLOCK();
1217     if (mode & MAY_EXEC) tmp |= VEXEC;
1218     if (mode & MAY_READ) tmp |= VREAD;
1219     if (mode & MAY_WRITE) tmp |= VWRITE;
1220     code = afs_access((struct vcache*)ip, tmp, credp);
1221
1222     AFS_GUNLOCK();
1223     crfree(credp);
1224     return -code;
1225 }
1226
1227
1228 #ifdef NOTUSED
1229 /* msdos sector mapping hack for memory mapping. */
1230 int afs_linux_smap(struct inode *ip, int) { return -EINVAL; }
1231 #endif
1232
1233 #if defined(AFS_LINUX24_ENV)
1234 int afs_linux_writepage_sync(struct inode *ip, struct page *pp,
1235                         unsigned long offset,
1236                         unsigned int count)
1237 {
1238     struct vcache *vcp = (struct vcache *) ip;
1239     char *buffer;
1240     loff_t base;
1241     int code = 0;
1242     cred_t *credp;
1243     uio_t tuio;
1244     struct iovec iovec;
1245     int f_flags = 0;
1246
1247     buffer = kmap(pp) + offset;
1248     base = (pp->index << PAGE_CACHE_SHIFT) + offset;
1249
1250     credp = crref();
1251     afs_Trace4(afs_iclSetp, CM_TRACE_UPDATEPAGE, ICL_TYPE_POINTER, vcp,
1252               ICL_TYPE_POINTER, pp,
1253               ICL_TYPE_INT32, atomic_read(&pp->count),
1254               ICL_TYPE_INT32, 99999);
1255     setup_uio(&tuio, &iovec, buffer, base, count, UIO_WRITE, AFS_UIOSYS);
1256
1257     code = afs_write(vcp, &tuio, f_flags, credp, 0);
1258
1259     vcache2inode(vcp);
1260
1261     code = code ? -code : count - tuio.uio_resid;
1262     afs_Trace4(afs_iclSetp, CM_TRACE_UPDATEPAGE, ICL_TYPE_POINTER, vcp,
1263               ICL_TYPE_POINTER, pp,
1264               ICL_TYPE_INT32, atomic_read(&pp->count),
1265               ICL_TYPE_INT32, code);
1266
1267     crfree(credp);
1268     kunmap(pp);
1269
1270     return code;
1271 }
1272
1273 static int
1274 afs_linux_updatepage(struct file *file, struct page *page, 
1275                      unsigned long offset, unsigned int count)
1276 {
1277     struct dentry *dentry = file->f_dentry;
1278
1279     return afs_linux_writepage_sync(dentry->d_inode, page, offset, count);
1280 }
1281 #else
1282 /* afs_linux_updatepage
1283  * What one would have thought was writepage - write dirty page to file.
1284  * Called from generic_file_write. buffer is still in user space. pagep
1285  * has been filled in with old data if we're updating less than a page.
1286  */
1287 int afs_linux_updatepage(struct file *fp, struct page *pp,
1288                          unsigned long offset,
1289                          unsigned int count, int sync)
1290 {
1291     struct vcache *vcp = (struct vcache *)FILE_INODE(fp);
1292     u8 *page_addr = (u8*) afs_linux_page_address(pp);
1293     int code = 0;
1294     cred_t *credp;
1295     uio_t tuio;
1296     struct iovec iovec;
1297     
1298     set_bit(PG_locked, &pp->flags);
1299
1300     credp = crref();
1301     AFS_GLOCK();
1302     afs_Trace4(afs_iclSetp, CM_TRACE_UPDATEPAGE, ICL_TYPE_POINTER, vcp,
1303                ICL_TYPE_POINTER, pp,
1304                ICL_TYPE_INT32, atomic_read(&pp->count),
1305                ICL_TYPE_INT32, 99999);
1306     setup_uio(&tuio, &iovec, page_addr + offset, pp->offset + offset, count,
1307               UIO_WRITE, AFS_UIOSYS);
1308
1309     code = afs_write(vcp, &tuio, fp->f_flags, credp, 0);
1310
1311     vcache2inode(vcp);
1312
1313     code = code ? -code : count - tuio.uio_resid;
1314     afs_Trace4(afs_iclSetp, CM_TRACE_UPDATEPAGE, ICL_TYPE_POINTER, vcp,
1315                ICL_TYPE_POINTER, pp,
1316                ICL_TYPE_INT32, atomic_read(&pp->count),
1317                ICL_TYPE_INT32, code);
1318
1319     AFS_GUNLOCK();
1320     crfree(credp);
1321
1322     clear_bit(PG_locked, &pp->flags);
1323     return code;
1324 }
1325 #endif
1326
1327 #if defined(AFS_LINUX24_ENV)
1328 static int afs_linux_commit_write(struct file *file, struct page *page, unsigned offset, unsigned to)
1329 {
1330     int code;
1331
1332     AFS_GLOCK();
1333     lock_kernel();
1334     code = afs_linux_updatepage(file, page, offset, to-offset);
1335     unlock_kernel();
1336     AFS_GUNLOCK();
1337     kunmap(page);
1338
1339     return code;
1340 }
1341
1342 static int afs_linux_prepare_write(struct file *file, struct page *page,
1343                                    unsigned from, unsigned to)
1344 {
1345     kmap(page);
1346     return 0;
1347 }
1348
1349 extern int afs_notify_change(struct dentry *dp, struct iattr* iattrp);
1350 #endif
1351
1352 #if defined(AFS_LINUX24_ENV)
1353 struct inode_operations afs_file_iops = {
1354     revalidate:                afs_linux_revalidate,
1355     setattr:           afs_notify_change,
1356     permission:                afs_linux_permission,
1357 };
1358 struct address_space_operations afs_file_aops = {
1359         readpage: afs_linux_readpage,
1360         writepage: afs_linux_writepage,
1361         commit_write: afs_linux_commit_write,
1362         prepare_write: afs_linux_prepare_write,
1363 };
1364
1365 struct inode_operations *afs_ops = &afs_file_iops;
1366 #else
1367 struct inode_operations afs_iops = {
1368     &afs_file_fops,     /* file operations */
1369     NULL,               /* afs_linux_create */
1370     NULL,               /* afs_linux_lookup */
1371     NULL,               /* afs_linux_link */
1372     NULL,               /* afs_linux_unlink */
1373     NULL,               /* afs_linux_symlink */
1374     NULL,               /* afs_linux_mkdir */
1375     NULL,               /* afs_linux_rmdir */
1376     NULL,               /* afs_linux_mknod */
1377     NULL,               /* afs_linux_rename */
1378     NULL,               /* afs_linux_readlink */
1379     NULL,               /* afs_linux_follow_link */
1380     afs_linux_readpage,
1381     NULL,               /* afs_linux_writepage */
1382     NULL,               /* afs_linux_bmap */
1383     NULL,               /* afs_linux_truncate */
1384     afs_linux_permission,
1385     NULL,               /* afs_linux_smap */
1386     afs_linux_updatepage,
1387     afs_linux_revalidate,
1388 };
1389
1390 struct inode_operations *afs_ops = &afs_iops;
1391 #endif
1392
1393 /* Separate ops vector for directories. Linux 2.2 tests type of inode
1394  * by what sort of operation is allowed.....
1395  */
1396 #if defined(AFS_LINUX24_ENV)
1397 struct inode_operations afs_dir_iops = {
1398     create:    afs_linux_create,
1399     lookup:    afs_linux_lookup,
1400     link:      afs_linux_link,
1401     unlink:    afs_linux_unlink,
1402     symlink:   afs_linux_symlink,
1403     mkdir:     afs_linux_mkdir,
1404     rmdir:     afs_linux_rmdir,
1405     rename:    afs_linux_rename,
1406     revalidate:        afs_linux_revalidate,
1407     setattr:   afs_notify_change,
1408     permission:        afs_linux_permission,
1409 };
1410 #else
1411 struct inode_operations afs_dir_iops = {
1412     &afs_dir_fops,      /* file operations for directories */
1413     afs_linux_create,
1414     afs_linux_lookup,
1415     afs_linux_link,
1416     afs_linux_unlink,
1417     afs_linux_symlink,
1418     afs_linux_mkdir,
1419     afs_linux_rmdir,
1420     NULL,               /* afs_linux_mknod */
1421     afs_linux_rename,
1422     NULL,               /* afs_linux_readlink */
1423     NULL,               /* afs_linux_follow_link */
1424     NULL,               /* afs_linux_readpage */
1425     NULL,               /* afs_linux_writepage */
1426     NULL,               /* afs_linux_bmap */
1427     NULL,               /* afs_linux_truncate */
1428     afs_linux_permission,
1429     NULL,               /* afs_linux_smap */
1430     NULL,               /* afs_linux_updatepage */
1431     afs_linux_revalidate,
1432 };
1433 #endif
1434
1435 /* We really need a separate symlink set of ops, since do_follow_link()
1436  * determines if it _is_ a link by checking if the follow_link op is set.
1437  */
1438 #if defined(AFS_LINUX24_ENV)
1439 static int afs_symlink_filler(struct file *file, struct page *page)
1440 {
1441     struct inode *ip = (struct inode *) page->mapping->host;
1442     char *p = (char *)kmap(page);
1443     int code;
1444
1445     AFS_GLOCK();
1446     lock_kernel();
1447     code = afs_linux_ireadlink(ip, p, PAGE_SIZE, AFS_UIOSYS);
1448
1449     if (code<0)
1450            goto fail;
1451     p[code] = '\0';            /* null terminate? */
1452     unlock_kernel();
1453     AFS_GUNLOCK();
1454
1455     SetPageUptodate(page);
1456     kunmap(page);
1457     UnlockPage(page);
1458     return 0;
1459
1460 fail:
1461     unlock_kernel();
1462     AFS_GUNLOCK();
1463
1464     SetPageError(page);
1465     kunmap(page);
1466     UnlockPage(page);
1467     return code;
1468 }
1469
1470 struct address_space_operations afs_symlink_aops = {
1471        readpage:       afs_symlink_filler
1472 };
1473
1474 struct inode_operations afs_symlink_iops = {
1475     readlink:          page_readlink,
1476     follow_link:       page_follow_link,
1477     setattr:           afs_notify_change,
1478 };
1479 #else
1480 struct inode_operations afs_symlink_iops = {
1481     NULL,               /* file operations */
1482     NULL,               /* create */
1483     NULL,               /* lookup */
1484     NULL,               /* link */
1485     NULL,               /* unlink */
1486     NULL,               /* symlink */
1487     NULL,               /* mkdir */
1488     NULL,               /* rmdir */
1489     NULL,               /* afs_linux_mknod */
1490     NULL,               /* rename */
1491     afs_linux_readlink,
1492     afs_linux_follow_link,
1493     NULL,               /* readpage */
1494     NULL,               /* afs_linux_writepage */
1495     NULL,               /* afs_linux_bmap */
1496     NULL,               /* afs_linux_truncate */
1497     afs_linux_permission, /* tho the code appears to indicate not used? */
1498     NULL,               /* afs_linux_smap */
1499     NULL,               /* updatepage */
1500     afs_linux_revalidate, /* tho the code appears to indicate not used? */
1501 };
1502 #endif