2 * Copyright 2000, International Business Machines Corporation and others.
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
10 #include <afsconfig.h>
11 #include "afs/param.h"
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 #if defined(LINUX_USE_FH)
21 #include <linux/exportfs.h>
22 int cache_fh_type = -1;
23 int cache_fh_len = -1;
26 afs_lock_t afs_xosi; /* lock is for tvattr */
27 extern struct osi_dev cacheDev;
28 extern struct vfsmount *afs_cacheMnt;
29 extern struct super_block *afs_cacheSBp;
30 #if defined(STRUCT_TASK_HAS_CRED)
31 extern struct cred *cache_creds;
35 afs_linux_raw_open(afs_dcache_id_t *ainode)
37 struct inode *tip = NULL;
38 struct dentry *dp = NULL;
41 #if !defined(LINUX_USE_FH)
42 tip = iget(afs_cacheSBp, ainode->ufs);
44 osi_Panic("Can't get inode %d\n", (int) ainode->ufs);
46 dp = d_alloc_anon(tip);
48 dp = afs_cacheSBp->s_export_op->fh_to_dentry(afs_cacheSBp, &ainode->ufs.fh,
49 cache_fh_len, cache_fh_type);
51 osi_Panic("Can't get dentry\n");
54 tip->i_flags |= S_NOATIME; /* Disable updating access times. */
56 #if defined(STRUCT_TASK_HAS_CRED)
57 /* Use stashed credentials - prevent selinux/apparmor problems */
58 filp = dentry_open(dp, mntget(afs_cacheMnt), O_RDWR, cache_creds);
60 filp = dentry_open(dp, mntget(afs_cacheMnt), O_RDWR);
63 #if defined(LINUX_USE_FH)
64 osi_Panic("Can't open file: %d\n", PTR_ERR(filp));
66 osi_Panic("Can't open inode %d\n", (int) ainode->ufs);
72 osi_UFSOpen(afs_dcache_id_t *ainode)
74 struct osi_file *afile = NULL;
75 extern int cacheDiskType;
77 AFS_STATCNT(osi_UFSOpen);
78 if (cacheDiskType != AFS_FCACHE_TYPE_UFS) {
79 osi_Panic("UFSOpen called for non-UFS cache\n");
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;
87 afile = (struct osi_file *)osi_AllocLargeSpace(sizeof(struct osi_file));
90 osi_Panic("osi_UFSOpen: Failed to allocate %d bytes for osi_file.\n",
91 (int)sizeof(struct osi_file));
93 memset(afile, 0, sizeof(struct osi_file));
95 afile->filp = afs_linux_raw_open(ainode);
96 afile->size = i_size_read(FILE_INODE(afile->filp));
99 afile->proc = (int (*)())0;
100 return (void *)afile;
103 #if defined(LINUX_USE_FH)
105 * Given a dentry, return the file handle as encoded by the filesystem.
106 * We can't assume anything about the length (words, not bytes).
107 * The cache has to live on a single filesystem with uniform file
108 * handles, otherwise we panic.
110 void osi_get_fh(struct dentry *dp, afs_ufs_dcache_id_t *ainode) {
114 if (cache_fh_len > 0)
115 max_len = cache_fh_len;
117 max_len = MAX_FH_LEN;
118 if (dp->d_sb->s_export_op->encode_fh) {
119 type = dp->d_sb->s_export_op->encode_fh(dp, &ainode->raw[0], &max_len, 0);
121 osi_Panic("File handle encoding failed\n");
123 if (cache_fh_type < 0)
124 cache_fh_type = type;
125 if (cache_fh_len < 0) {
126 cache_fh_len = max_len;
128 if (type != cache_fh_type || max_len != cache_fh_len) {
129 osi_Panic("Inconsistent file handles within cache\n");
132 /* If fs doesn't provide an encode_fh method, assume the default INO32 type */
133 if (cache_fh_type < 0)
134 cache_fh_type = FILEID_INO32_GEN;
135 if (cache_fh_len < 0)
136 cache_fh_len = sizeof(struct fid)/4;
137 ainode->fh.i32.ino = dp->d_inode->i_ino;
138 ainode->fh.i32.gen = dp->d_inode->i_generation;
142 void osi_get_fh(struct dentry *dp, afs_ufs_dcache_id_t *ainode) {
143 *ainode = dp->d_inode->i_ino;
148 afs_osi_Stat(register struct osi_file *afile, register struct osi_stat *astat)
150 AFS_STATCNT(osi_Stat);
151 ObtainWriteLock(&afs_xosi, 320);
152 astat->size = i_size_read(OSIFILE_INODE(afile));
153 astat->mtime = OSIFILE_INODE(afile)->i_mtime.tv_sec;
154 astat->atime = OSIFILE_INODE(afile)->i_atime.tv_sec;
156 ReleaseWriteLock(&afs_xosi);
161 osi_UFSClose(register struct osi_file *afile)
163 AFS_STATCNT(osi_Close);
165 if (OSIFILE_INODE(afile)) {
166 filp_close(afile->filp, NULL);
170 osi_FreeLargeSpace(afile);
175 osi_UFSTruncate(register struct osi_file *afile, afs_int32 asize)
177 register afs_int32 code;
178 struct osi_stat tstat;
179 struct iattr newattrs;
180 struct inode *inode = OSIFILE_INODE(afile);
181 AFS_STATCNT(osi_Truncate);
183 /* This routine only shrinks files, and most systems
184 * have very slow truncates, even when the file is already
185 * small enough. Check now and save some time.
187 code = afs_osi_Stat(afile, &tstat);
188 if (code || tstat.size <= asize)
190 ObtainWriteLock(&afs_xosi, 321);
192 #ifdef STRUCT_INODE_HAS_I_MUTEX
193 mutex_lock(&inode->i_mutex);
197 #ifdef STRUCT_INODE_HAS_I_ALLOC_SEM
198 down_write(&inode->i_alloc_sem);
200 newattrs.ia_size = asize;
201 newattrs.ia_valid = ATTR_SIZE | ATTR_CTIME;
202 newattrs.ia_ctime = CURRENT_TIME;
204 /* avoid notify_change() since it wants to update dentry->d_parent */
206 code = inode_change_ok(inode, &newattrs);
208 #ifdef INODE_SETATTR_NOT_VOID
209 if (inode->i_op && inode->i_op->setattr)
210 code = inode->i_op->setattr(afile->filp->f_dentry, &newattrs);
212 code = inode_setattr(inode, &newattrs);
214 inode_setattr(inode, &newattrs);
219 truncate_inode_pages(&inode->i_data, asize);
221 #ifdef STRUCT_INODE_HAS_I_ALLOC_SEM
222 up_write(&inode->i_alloc_sem);
224 #ifdef STRUCT_INODE_HAS_I_MUTEX
225 mutex_unlock(&inode->i_mutex);
230 ReleaseWriteLock(&afs_xosi);
235 /* Generic read interface */
237 afs_osi_Read(register struct osi_file *afile, int offset, void *aptr,
244 AFS_STATCNT(osi_Read);
247 * If the osi_file passed in is NULL, panic only if AFS is not shutting
248 * down. No point in crashing when we are already shutting down
251 if (!afs_shuttingdown)
252 osi_Panic("osi_Read called with null param");
258 afile->offset = offset;
259 setup_uio(&auio, &iov, aptr, afile->offset, asize, UIO_READ, AFS_UIOSYS);
261 code = osi_rdwr(afile, &auio, UIO_READ);
264 code = asize - auio.uio_resid;
265 afile->offset += code;
267 afs_Trace2(afs_iclSetp, CM_TRACE_READFAILED, ICL_TYPE_INT32, auio.uio_resid,
268 ICL_TYPE_INT32, code);
274 /* Generic write interface */
276 afs_osi_Write(register struct osi_file *afile, afs_int32 offset, void *aptr,
283 AFS_STATCNT(osi_Write);
286 if (!afs_shuttingdown)
287 osi_Panic("afs_osi_Write called with null param");
293 afile->offset = offset;
294 setup_uio(&auio, &iov, aptr, afile->offset, asize, UIO_WRITE, AFS_UIOSYS);
296 code = osi_rdwr(afile, &auio, UIO_WRITE);
299 code = asize - auio.uio_resid;
300 afile->offset += code;
304 ("\n\n\n*** Cache partition is FULL - Decrease cachesize!!! ***\n\n");
309 (*afile->proc)(afile, code);
315 /* This work should be handled by physstrat in ca/machdep.c.
316 This routine written from the RT NFS port strategy routine.
317 It has been generalized a bit, but should still be pretty clear. */
319 afs_osi_MapStrategy(int (*aproc) (struct buf * bp), register struct buf *bp)
321 afs_int32 returnCode;
323 AFS_STATCNT(osi_MapStrategy);
324 returnCode = (*aproc) (bp);
330 shutdown_osifile(void)
332 AFS_STATCNT(shutdown_osifile);
333 if (afs_cold_shutdown) {
334 afs_osicred_initialized = 0;
338 /* Intialize cache device info and fragment size for disk cache partition. */
340 osi_InitCacheInfo(char *aname)
343 extern afs_dcache_id_t cacheInode;
345 extern struct osi_dev cacheDev;
346 extern afs_int32 afs_fsfragsize;
347 extern struct super_block *afs_cacheSBp;
348 extern struct vfsmount *afs_cacheMnt;
349 code = osi_lookupname_internal(aname, 1, &afs_cacheMnt, &dp);
353 osi_get_fh(dp, &cacheInode.ufs);
354 cacheDev.dev = dp->d_inode->i_sb->s_dev;
355 afs_fsfragsize = dp->d_inode->i_sb->s_blocksize - 1;
356 afs_cacheSBp = dp->d_inode->i_sb;
364 #define FOP_READ(F, B, C) (F)->f_op->read(F, B, (size_t)(C), &(F)->f_pos)
365 #define FOP_WRITE(F, B, C) (F)->f_op->write(F, B, (size_t)(C), &(F)->f_pos)
368 * seek, then read or write to an open inode. addrp points to data in
372 osi_rdwr(struct osi_file *osifile, uio_t * uiop, int rw)
374 struct file *filp = osifile->filp;
379 unsigned long savelim;
381 savelim = current->TASK_STRUCT_RLIM[RLIMIT_FSIZE].rlim_cur;
382 current->TASK_STRUCT_RLIM[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
384 if (uiop->uio_seg == AFS_UIOSYS)
387 /* seek to the desired position. Return -1 on error. */
388 if (filp->f_op->llseek) {
389 if (filp->f_op->llseek(filp, (loff_t) uiop->uio_offset, 0) != uiop->uio_offset) {
394 filp->f_pos = uiop->uio_offset;
396 while (code == 0 && uiop->uio_resid > 0 && uiop->uio_iovcnt > 0) {
398 count = iov->iov_len;
406 code = FOP_READ(filp, iov->iov_base, count);
408 code = FOP_WRITE(filp, iov->iov_base, count);
413 } else if (code == 0) {
415 * This is bad -- we can't read any more data from the
416 * file, but we have no good way of signaling a partial
423 iov->iov_base += code;
424 iov->iov_len -= code;
425 uiop->uio_resid -= code;
426 uiop->uio_offset += code;
431 if (uiop->uio_seg == AFS_UIOSYS)
434 current->TASK_STRUCT_RLIM[RLIMIT_FSIZE].rlim_cur = savelim;
440 * Setup a uio struct.
443 setup_uio(uio_t * uiop, struct iovec *iovecp, const char *buf, afs_offs_t pos,
444 int count, uio_flag_t flag, uio_seg_t seg)
446 iovecp->iov_base = (char *)buf;
447 iovecp->iov_len = count;
448 uiop->uio_iov = iovecp;
449 uiop->uio_iovcnt = 1;
450 uiop->uio_offset = pos;
452 uiop->uio_resid = count;
453 uiop->uio_flag = flag;
458 * UIO_READ : dp -> uio
459 * UIO_WRITE : uio -> dp
462 uiomove(char *dp, int length, uio_flag_t rw, uio_t * uiop)
468 while (length > 0 && uiop->uio_resid > 0 && uiop->uio_iovcnt > 0) {
470 count = iov->iov_len;
481 switch (uiop->uio_seg) {
485 memcpy(iov->iov_base, dp, count);
488 memcpy(dp, iov->iov_base, count);
491 printf("uiomove: Bad rw = %d\n", rw);
498 AFS_COPYOUT(dp, iov->iov_base, count, code);
501 AFS_COPYIN(iov->iov_base, dp, count, code);
504 printf("uiomove: Bad rw = %d\n", rw);
509 printf("uiomove: Bad seg = %d\n", uiop->uio_seg);
515 iov->iov_base += count;
516 iov->iov_len -= count;
517 uiop->uio_offset += count;
518 uiop->uio_resid -= count;