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