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