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