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