Linux: Use inode lock compat function
[openafs.git] / src / afs / LINUX / osi_file.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 #include <afsconfig.h>
11 #include "afs/param.h"
12
13
14 #include <linux/module.h> /* early to avoid printf->printk mapping */
15 #include "afs/sysincludes.h"    /* Standard vendor system headers */
16 #include "afsincludes.h"        /* Afs-based standard headers */
17 #include "afs/afs_stats.h"      /* afs statistics */
18 #include <linux/smp_lock.h>
19 #include <linux/namei.h>
20
21 #if defined(HAVE_LINUX_EXPORTFS_H)
22 #include <linux/exportfs.h>
23 #endif
24 #include "osi_compat.h"
25
26 int cache_fh_type = -1;
27 int cache_fh_len = -1;
28
29 afs_lock_t afs_xosi;            /* lock is for tvattr */
30 extern struct osi_dev cacheDev;
31 extern struct vfsmount *afs_cacheMnt;
32 extern struct super_block *afs_cacheSBp;
33 #if defined(STRUCT_TASK_STRUCT_HAS_CRED)
34 extern struct cred *cache_creds;
35 #endif
36
37 /* Old export ops: decode_fh will call back here. Accept any dentry it suggests */
38 int
39 afs_fh_acceptable(void *context, struct dentry *dp)
40 {
41     return 1;
42 }
43
44 struct file *
45 afs_linux_raw_open(afs_dcache_id_t *ainode)
46 {
47     struct inode *tip = NULL;
48     struct dentry *dp = NULL;
49     struct file* filp;
50
51     dp = afs_get_dentry_from_fh(afs_cacheSBp, ainode, cache_fh_len, cache_fh_type,
52                 afs_fh_acceptable);
53     if (!dp)
54            osi_Panic("Can't get dentry\n");
55     tip = dp->d_inode;
56     tip->i_flags |= S_NOATIME;  /* Disable updating access times. */
57
58 #if defined(STRUCT_TASK_STRUCT_HAS_CRED)
59     /* Use stashed credentials - prevent selinux/apparmor problems  */
60     filp = dentry_open(dp, mntget(afs_cacheMnt), O_RDWR, cache_creds);
61     if (IS_ERR(filp))
62         filp = dentry_open(dp, mntget(afs_cacheMnt), O_RDWR, current_cred());
63 #else
64     filp = dentry_open(dp, mntget(afs_cacheMnt), O_RDWR);
65 #endif
66     if (IS_ERR(filp))
67         osi_Panic("Can't open file: %d\n", (int) PTR_ERR(filp));
68     return filp;
69 }
70
71 void *
72 osi_UFSOpen(afs_dcache_id_t *ainode)
73 {
74     struct osi_file *afile = NULL;
75     extern int cacheDiskType;
76
77     AFS_STATCNT(osi_UFSOpen);
78     if (cacheDiskType != AFS_FCACHE_TYPE_UFS) {
79         osi_Panic("UFSOpen called for non-UFS cache\n");
80     }
81     if (!afs_osicred_initialized) {
82         /* valid for alpha_osf, SunOS, Ultrix */
83         memset(&afs_osi_cred, 0, sizeof(afs_ucred_t));
84         crhold(&afs_osi_cred);  /* don't let it evaporate, since it is static */
85         afs_osicred_initialized = 1;
86     }
87     afile = (struct osi_file *)osi_AllocLargeSpace(sizeof(struct osi_file));
88     AFS_GUNLOCK();
89     if (!afile) {
90         osi_Panic("osi_UFSOpen: Failed to allocate %d bytes for osi_file.\n",
91                   (int)sizeof(struct osi_file));
92     }
93     memset(afile, 0, sizeof(struct osi_file));
94
95     afile->filp = afs_linux_raw_open(ainode);
96     afile->size = i_size_read(FILE_INODE(afile->filp));
97     AFS_GLOCK();
98     afile->offset = 0;
99     afile->proc = (int (*)())0;
100     return (void *)afile;
101 }
102
103 /*
104  * Given a dentry, return the file handle as encoded by the filesystem.
105  * We can't assume anything about the length (words, not bytes).
106  * The cache has to live on a single filesystem with uniform file 
107  * handles, otherwise we panic.
108  */
109 void osi_get_fh(struct dentry *dp, afs_ufs_dcache_id_t *ainode) {
110     int max_len;
111     int type;
112
113     if (cache_fh_len > 0)
114         max_len = cache_fh_len;
115     else
116         max_len = MAX_FH_LEN;
117     type = afs_get_fh_from_dentry(dp, ainode, &max_len);
118     if (type == 255) {
119         osi_Panic("File handle encoding failed\n");
120     }
121     if (cache_fh_type < 0)
122         cache_fh_type = type;
123     if (cache_fh_len < 0) {
124         cache_fh_len = max_len;
125     }
126     if (type != cache_fh_type || max_len != cache_fh_len) {
127         osi_Panic("Inconsistent file handles within cache\n");
128     }
129 }
130
131 int
132 afs_osi_Stat(register struct osi_file *afile, register struct osi_stat *astat)
133 {
134     AFS_STATCNT(osi_Stat);
135     ObtainWriteLock(&afs_xosi, 320);
136     astat->size = i_size_read(OSIFILE_INODE(afile));
137     astat->mtime = OSIFILE_INODE(afile)->i_mtime.tv_sec;
138     astat->atime = OSIFILE_INODE(afile)->i_atime.tv_sec;
139
140     ReleaseWriteLock(&afs_xosi);
141     return 0;
142 }
143
144 int
145 osi_UFSClose(register struct osi_file *afile)
146 {
147     AFS_STATCNT(osi_Close);
148     if (afile) {
149         if (OSIFILE_INODE(afile)) {
150             filp_close(afile->filp, NULL);
151         }
152     }
153
154     osi_FreeLargeSpace(afile);
155     return 0;
156 }
157
158 int
159 osi_UFSTruncate(register struct osi_file *afile, afs_int32 asize)
160 {
161     register afs_int32 code;
162     struct osi_stat tstat;
163     struct iattr newattrs;
164     struct inode *inode = OSIFILE_INODE(afile);
165     AFS_STATCNT(osi_Truncate);
166
167     /* This routine only shrinks files, and most systems
168      * have very slow truncates, even when the file is already
169      * small enough.  Check now and save some time.
170      */
171     code = afs_osi_Stat(afile, &tstat);
172     if (code || tstat.size <= asize)
173         return code;
174     ObtainWriteLock(&afs_xosi, 321);
175     AFS_GUNLOCK();
176     afs_linux_lock_inode(inode);
177 #ifdef STRUCT_INODE_HAS_I_ALLOC_SEM
178     down_write(&inode->i_alloc_sem);
179 #endif
180     newattrs.ia_size = asize;
181     newattrs.ia_valid = ATTR_SIZE | ATTR_CTIME;
182     newattrs.ia_ctime = CURRENT_TIME;
183
184     /* avoid notify_change() since it wants to update dentry->d_parent */
185     code = inode_change_ok(inode, &newattrs);
186     if (!code) {
187 #ifdef INODE_SETATTR_NOT_VOID
188         if (inode->i_op && inode->i_op->setattr)
189             code = inode->i_op->setattr(afile->filp->f_dentry, &newattrs);
190         else
191             code = inode_setattr(inode, &newattrs);
192 #else
193         inode_setattr(inode, &newattrs);
194 #endif
195     }
196     if (!code)
197         truncate_inode_pages(&inode->i_data, asize);
198     code = -code;
199 #ifdef STRUCT_INODE_HAS_I_ALLOC_SEM
200     up_write(&inode->i_alloc_sem);
201 #endif
202     afs_linux_unlock_inode(inode);
203     AFS_GLOCK();
204     ReleaseWriteLock(&afs_xosi);
205     return code;
206 }
207
208
209 /* Generic read interface */
210 int
211 afs_osi_Read(register struct osi_file *afile, int offset, void *aptr,
212              afs_int32 asize)
213 {
214     struct uio auio;
215     struct iovec iov;
216     afs_int32 code;
217
218     AFS_STATCNT(osi_Read);
219
220     /*
221      * If the osi_file passed in is NULL, panic only if AFS is not shutting
222      * down. No point in crashing when we are already shutting down
223      */
224     if (!afile) {
225         if (!afs_shuttingdown)
226             osi_Panic("osi_Read called with null param");
227         else
228             return EIO;
229     }
230
231     if (offset != -1)
232         afile->offset = offset;
233     setup_uio(&auio, &iov, aptr, afile->offset, asize, UIO_READ, AFS_UIOSYS);
234     AFS_GUNLOCK();
235     code = osi_rdwr(afile, &auio, UIO_READ);
236     AFS_GLOCK();
237     if (code == 0) {
238         code = asize - auio.uio_resid;
239         afile->offset += code;
240     } else {
241         afs_Trace2(afs_iclSetp, CM_TRACE_READFAILED, ICL_TYPE_INT32, auio.uio_resid,
242                    ICL_TYPE_INT32, code);
243         code = -1;
244     }
245     return code;
246 }
247
248 /* Generic write interface */
249 int
250 afs_osi_Write(register struct osi_file *afile, afs_int32 offset, void *aptr,
251               afs_int32 asize)
252 {
253     struct uio auio;
254     struct iovec iov;
255     afs_int32 code;
256
257     AFS_STATCNT(osi_Write);
258
259     if (!afile) {
260         if (!afs_shuttingdown)
261             osi_Panic("afs_osi_Write called with null param");
262         else
263             return EIO;
264     }
265
266     if (offset != -1)
267         afile->offset = offset;
268     setup_uio(&auio, &iov, aptr, afile->offset, asize, UIO_WRITE, AFS_UIOSYS);
269     AFS_GUNLOCK();
270     code = osi_rdwr(afile, &auio, UIO_WRITE);
271     AFS_GLOCK();
272     if (code == 0) {
273         code = asize - auio.uio_resid;
274         afile->offset += code;
275     } else {
276         if (code == ENOSPC)
277             afs_warnuser
278                 ("\n\n\n*** Cache partition is FULL - Decrease cachesize!!! ***\n\n");
279         code = -1;
280     }
281
282     if (afile->proc)
283         (*afile->proc)(afile, code);
284
285     return code;
286 }
287
288
289 /*  This work should be handled by physstrat in ca/machdep.c.
290     This routine written from the RT NFS port strategy routine.
291     It has been generalized a bit, but should still be pretty clear. */
292 int
293 afs_osi_MapStrategy(int (*aproc) (struct buf * bp), register struct buf *bp)
294 {
295     afs_int32 returnCode;
296
297     AFS_STATCNT(osi_MapStrategy);
298     returnCode = (*aproc) (bp);
299
300     return returnCode;
301 }
302
303 void
304 shutdown_osifile(void)
305 {
306     AFS_STATCNT(shutdown_osifile);
307     if (afs_cold_shutdown) {
308         afs_osicred_initialized = 0;
309     }
310 }
311
312 /* Intialize cache device info and fragment size for disk cache partition. */
313 int
314 osi_InitCacheInfo(char *aname)
315 {
316     int code;
317     extern afs_dcache_id_t cacheInode;
318     struct dentry *dp;
319     extern struct osi_dev cacheDev;
320     extern afs_int32 afs_fsfragsize;
321     extern struct super_block *afs_cacheSBp;
322     extern struct vfsmount *afs_cacheMnt;
323     code = osi_lookupname_internal(aname, 1, &afs_cacheMnt, &dp);
324     if (code)
325         return ENOENT;
326
327     osi_get_fh(dp, &cacheInode.ufs);
328     cacheDev.dev = dp->d_inode->i_sb->s_dev;
329     afs_fsfragsize = dp->d_inode->i_sb->s_blocksize - 1;
330     afs_cacheSBp = dp->d_inode->i_sb;
331
332     dput(dp);
333
334     afs_init_sb_export_ops(afs_cacheSBp);
335
336     return 0;
337 }
338
339
340 /* osi_rdwr
341  * seek, then read or write to an open inode. addrp points to data in
342  * kernel space.
343  */
344 int
345 osi_rdwr(struct osi_file *osifile, uio_t * uiop, int rw)
346 {
347     struct file *filp = osifile->filp;
348     mm_segment_t old_fs = {0};
349     int code = 0;
350     struct iovec *iov;
351     size_t count;
352     unsigned long savelim;
353     loff_t pos;
354
355     savelim = current->TASK_STRUCT_RLIM[RLIMIT_FSIZE].rlim_cur;
356     current->TASK_STRUCT_RLIM[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
357
358     if (uiop->uio_seg == AFS_UIOSYS) {
359         /* Switch into user space */
360         old_fs = get_fs();
361         set_fs(get_ds());
362     }
363
364     while (code == 0 && uiop->uio_resid > 0 && uiop->uio_iovcnt > 0) {
365         iov = uiop->uio_iov;
366         count = iov->iov_len;
367         if (count == 0) {
368             uiop->uio_iov++;
369             uiop->uio_iovcnt--;
370             continue;
371         }
372
373         pos = uiop->uio_offset;
374         if (rw == UIO_READ)
375             code = filp->f_op->read(filp, iov->iov_base, count, &pos);
376         else
377             code = filp->f_op->write(filp, iov->iov_base, count, &pos);
378
379         if (code < 0) {
380             code = -code;
381             break;
382         } else if (code == 0) {
383             /*
384              * This is bad -- we can't read any more data from the
385              * file, but we have no good way of signaling a partial
386              * read either.
387              */
388             code = EIO;
389             break;
390         }
391
392         iov->iov_base += code;
393         iov->iov_len -= code;
394         uiop->uio_resid -= code;
395         uiop->uio_offset += code;
396         code = 0;
397     }
398
399     if (uiop->uio_seg == AFS_UIOSYS) {
400         /* Switch back into kernel space */
401         set_fs(old_fs);
402     }
403
404     current->TASK_STRUCT_RLIM[RLIMIT_FSIZE].rlim_cur = savelim;
405
406     return code;
407 }
408
409 /* setup_uio 
410  * Setup a uio struct.
411  */
412 void
413 setup_uio(uio_t * uiop, struct iovec *iovecp, const char *buf, afs_offs_t pos,
414           int count, uio_flag_t flag, uio_seg_t seg)
415 {
416     iovecp->iov_base = (char *)buf;
417     iovecp->iov_len = count;
418     uiop->uio_iov = iovecp;
419     uiop->uio_iovcnt = 1;
420     uiop->uio_offset = pos;
421     uiop->uio_seg = seg;
422     uiop->uio_resid = count;
423     uiop->uio_flag = flag;
424 }
425
426
427 /* uiomove
428  * UIO_READ : dp -> uio
429  * UIO_WRITE : uio -> dp
430  */
431 int
432 uiomove(char *dp, int length, uio_flag_t rw, uio_t * uiop)
433 {
434     int count;
435     struct iovec *iov;
436     int code;
437
438     while (length > 0 && uiop->uio_resid > 0 && uiop->uio_iovcnt > 0) {
439         iov = uiop->uio_iov;
440         count = iov->iov_len;
441
442         if (!count) {
443             uiop->uio_iov++;
444             uiop->uio_iovcnt--;
445             continue;
446         }
447
448         if (count > length)
449             count = length;
450
451         switch (uiop->uio_seg) {
452         case AFS_UIOSYS:
453             switch (rw) {
454             case UIO_READ:
455                 memcpy(iov->iov_base, dp, count);
456                 break;
457             case UIO_WRITE:
458                 memcpy(dp, iov->iov_base, count);
459                 break;
460             default:
461                 printf("uiomove: Bad rw = %d\n", rw);
462                 return -EINVAL;
463             }
464             break;
465         case AFS_UIOUSER:
466             switch (rw) {
467             case UIO_READ:
468                 AFS_COPYOUT(dp, iov->iov_base, count, code);
469                 break;
470             case UIO_WRITE:
471                 AFS_COPYIN(iov->iov_base, dp, count, code);
472                 break;
473             default:
474                 printf("uiomove: Bad rw = %d\n", rw);
475                 return -EINVAL;
476             }
477             break;
478         default:
479             printf("uiomove: Bad seg = %d\n", uiop->uio_seg);
480             return -EINVAL;
481         }
482
483         dp += count;
484         length -= count;
485         iov->iov_base += count;
486         iov->iov_len -= count;
487         uiop->uio_offset += count;
488         uiop->uio_resid -= count;
489     }
490     return 0;
491 }
492