fix-linux22-20050310
[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 RCSID
14     ("$Header$");
15
16 #ifdef AFS_LINUX24_ENV
17 #include "h/module.h" /* early to avoid printf->printk mapping */
18 #endif
19 #include "afs/sysincludes.h"    /* Standard vendor system headers */
20 #include "afsincludes.h"        /* Afs-based standard headers */
21 #include "afs/afs_stats.h"      /* afs statistics */
22 #include "h/smp_lock.h"
23
24
25 int afs_osicred_initialized = 0;
26 struct AFS_UCRED afs_osi_cred;
27 afs_lock_t afs_xosi;            /* lock is for tvattr */
28 extern struct osi_dev cacheDev;
29 extern struct super_block *afs_cacheSBp;
30
31 void *
32 osi_UFSOpen(afs_int32 ainode)
33 {
34     register struct osi_file *afile = NULL;
35     extern int cacheDiskType;
36     afs_int32 code = 0;
37     struct inode *tip = NULL;
38     struct file *filp = NULL;
39     AFS_STATCNT(osi_UFSOpen);
40     if (cacheDiskType != AFS_FCACHE_TYPE_UFS) {
41         osi_Panic("UFSOpen called for non-UFS cache\n");
42     }
43     if (!afs_osicred_initialized) {
44         /* valid for alpha_osf, SunOS, Ultrix */
45         memset((char *)&afs_osi_cred, 0, sizeof(struct AFS_UCRED));
46         crhold(&afs_osi_cred);  /* don't let it evaporate, since it is static */
47         afs_osicred_initialized = 1;
48     }
49     afile = (struct osi_file *)osi_AllocLargeSpace(sizeof(struct osi_file));
50     AFS_GUNLOCK();
51     if (!afile) {
52         osi_Panic("osi_UFSOpen: Failed to allocate %d bytes for osi_file.\n",
53                   sizeof(struct osi_file));
54     }
55     memset(afile, 0, sizeof(struct osi_file));
56     filp = &afile->file;
57     filp->f_dentry = &afile->dentry;
58     tip = iget(afs_cacheSBp, (u_long) ainode);
59     if (!tip)
60         osi_Panic("Can't get inode %d\n", ainode);
61     FILE_INODE(filp) = tip;
62     tip->i_flags |= MS_NOATIME; /* Disable updating access times. */
63     filp->f_flags = O_RDWR;
64 #if defined(AFS_LINUX26_ENV)
65     filp->f_mapping = tip->i_mapping;
66 #endif
67 #if defined(AFS_LINUX24_ENV)
68     filp->f_op = fops_get(tip->i_fop);
69 #else
70     filp->f_op = tip->i_op->default_file_ops;
71 #endif
72     if (filp->f_op && filp->f_op->open)
73         code = filp->f_op->open(tip, filp);
74     if (code)
75         osi_Panic("Can't open inode %d\n", ainode);
76     afile->size = tip->i_size;
77     AFS_GLOCK();
78     afile->offset = 0;
79     afile->proc = (int (*)())0;
80     afile->inum = ainode;       /* for hint validity checking */
81     return (void *)afile;
82 }
83
84 int
85 afs_osi_Stat(register struct osi_file *afile, register struct osi_stat *astat)
86 {
87     register afs_int32 code;
88     AFS_STATCNT(osi_Stat);
89     MObtainWriteLock(&afs_xosi, 320);
90     astat->size = FILE_INODE(&afile->file)->i_size;
91     astat->blksize = FILE_INODE(&afile->file)->i_blksize;
92 #if defined(AFS_LINUX26_ENV)
93     astat->mtime = FILE_INODE(&afile->file)->i_mtime.tv_sec;
94     astat->atime = FILE_INODE(&afile->file)->i_atime.tv_sec;
95 #else
96     astat->mtime = FILE_INODE(&afile->file)->i_mtime;
97     astat->atime = FILE_INODE(&afile->file)->i_atime;
98 #endif
99     code = 0;
100     MReleaseWriteLock(&afs_xosi);
101     return code;
102 }
103
104 int
105 osi_UFSClose(register struct osi_file *afile)
106 {
107     AFS_STATCNT(osi_Close);
108     if (afile) {
109         if (FILE_INODE(&afile->file)) {
110             struct file *filp = &afile->file;
111             if (filp->f_op && filp->f_op->release)
112                 filp->f_op->release(FILE_INODE(filp), filp);
113             iput(FILE_INODE(filp));
114         }
115     }
116
117     osi_FreeLargeSpace(afile);
118     return 0;
119 }
120
121 int
122 osi_UFSTruncate(register struct osi_file *afile, afs_int32 asize)
123 {
124     register afs_int32 code;
125     struct osi_stat tstat;
126     struct iattr newattrs;
127     struct inode *inode = FILE_INODE(&afile->file);
128     AFS_STATCNT(osi_Truncate);
129
130     /* This routine only shrinks files, and most systems
131      * have very slow truncates, even when the file is already
132      * small enough.  Check now and save some time.
133      */
134     code = afs_osi_Stat(afile, &tstat);
135     if (code || tstat.size <= asize)
136         return code;
137     MObtainWriteLock(&afs_xosi, 321);
138     AFS_GUNLOCK();
139 #ifdef STRUCT_INODE_HAS_I_ALLOC_SEM
140     down_write(&inode->i_alloc_sem);
141 #endif
142     down(&inode->i_sem);
143     newattrs.ia_size = asize;
144     newattrs.ia_valid = ATTR_SIZE | ATTR_CTIME;
145 #if defined(AFS_LINUX24_ENV)
146     newattrs.ia_ctime = CURRENT_TIME;
147
148     /* avoid notify_change() since it wants to update dentry->d_parent */
149     lock_kernel();
150     code = inode_change_ok(inode, &newattrs);
151     if (!code)
152 #ifdef INODE_SETATTR_NOT_VOID
153         code = inode_setattr(inode, &newattrs);
154 #else
155         inode_setattr(inode, &newattrs);
156 #endif
157     unlock_kernel();
158     if (!code)
159         truncate_inode_pages(&inode->i_data, asize);
160 #else
161     inode->i_size = asize;
162     if (inode->i_sb->s_op && inode->i_sb->s_op->notify_change) {
163         code = inode->i_sb->s_op->notify_change(&afile->dentry, &newattrs);
164     }
165     if (!code) {
166         truncate_inode_pages(inode, asize);
167         if (inode->i_op && inode->i_op->truncate)
168             inode->i_op->truncate(inode);
169     }
170 #endif
171     code = -code;
172     up(&inode->i_sem);
173 #ifdef STRUCT_INODE_HAS_I_ALLOC_SEM
174     up_write(&inode->i_alloc_sem);
175 #endif
176     AFS_GLOCK();
177     MReleaseWriteLock(&afs_xosi);
178     return code;
179 }
180
181
182 /* Generic read interface */
183 int
184 afs_osi_Read(register struct osi_file *afile, int offset, void *aptr,
185              afs_int32 asize)
186 {
187     size_t resid;
188     register afs_int32 code;
189     AFS_STATCNT(osi_Read);
190
191     /**
192       * If the osi_file passed in is NULL, panic only if AFS is not shutting
193       * down. No point in crashing when we are already shutting down
194       */
195     if (!afile) {
196         if (!afs_shuttingdown)
197             osi_Panic("osi_Read called with null param");
198         else
199             return EIO;
200     }
201
202     if (offset != -1)
203         afile->offset = offset;
204     AFS_GUNLOCK();
205     code = osi_rdwr(UIO_READ, afile, (caddr_t) aptr, asize, &resid);
206     AFS_GLOCK();
207     if (code == 0) {
208         code = asize - resid;
209         afile->offset += code;
210     } else {
211         afs_Trace2(afs_iclSetp, CM_TRACE_READFAILED, ICL_TYPE_INT32, resid,
212                    ICL_TYPE_INT32, code);
213         code = -1;
214     }
215     return code;
216 }
217
218 /* Generic write interface */
219 int
220 afs_osi_Write(register struct osi_file *afile, afs_int32 offset, void *aptr,
221               afs_int32 asize)
222 {
223     size_t resid;
224     register afs_int32 code;
225     AFS_STATCNT(osi_Write);
226     if (!afile) {
227         if (!afs_shuttingdown)
228             osi_Panic("afs_osi_Write called with null param");
229         else
230             return EIO;
231     }
232     if (offset != -1)
233         afile->offset = offset;
234     AFS_GUNLOCK();
235     code = osi_rdwr(UIO_WRITE, afile, (caddr_t) aptr, asize, &resid);
236     AFS_GLOCK();
237     if (code == 0) {
238         code = asize - resid;
239         afile->offset += code;
240     } else {
241         if (code == ENOSPC)
242             afs_warnuser
243                 ("\n\n\n*** Cache partition is FULL - Decrease cachesize!!! ***\n\n");
244         code = -1;
245     }
246     if (afile->proc) {
247         (*afile->proc) (afile, code);
248     }
249     return code;
250 }
251
252
253 /*  This work should be handled by physstrat in ca/machdep.c.
254     This routine written from the RT NFS port strategy routine.
255     It has been generalized a bit, but should still be pretty clear. */
256 int
257 afs_osi_MapStrategy(int (*aproc) (struct buf * bp), register struct buf *bp)
258 {
259     afs_int32 returnCode;
260
261     AFS_STATCNT(osi_MapStrategy);
262     returnCode = (*aproc) (bp);
263
264     return returnCode;
265 }
266
267 void
268 shutdown_osifile(void)
269 {
270     extern int afs_cold_shutdown;
271
272     AFS_STATCNT(shutdown_osifile);
273     if (afs_cold_shutdown) {
274         afs_osicred_initialized = 0;
275     }
276 }