bosserver-syslog-option-including-selectable-facility-20010315
[openafs.git] / src / afs / DUX / 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 "../afs/param.h"       /* Should be always first */
11 #include "../afs/sysincludes.h" /* Standard vendor system headers */
12 #include "../afs/afsincludes.h" /* Afs-based standard headers */
13 #include "../afs/afs_stats.h"  /* afs statistics */
14
15
16 int afs_osicred_initialized=0;
17 struct  AFS_UCRED afs_osi_cred;
18 afs_lock_t afs_xosi;            /* lock is for tvattr */
19 extern struct osi_dev cacheDev;
20 extern struct mount *afs_cacheVfsp;
21
22
23 void *osi_UFSOpen(ainode)
24     afs_int32 ainode;
25 {
26     struct inode *ip;
27     register struct osi_file *afile = NULL;
28     extern int cacheDiskType;
29     afs_int32 code = 0;
30     int dummy;
31     AFS_STATCNT(osi_UFSOpen);
32     if(cacheDiskType != AFS_FCACHE_TYPE_UFS) {
33         osi_Panic("UFSOpen called for non-UFS cache\n");
34     }
35     if (!afs_osicred_initialized) {
36         /* valid for alpha_osf, SunOS, Ultrix */
37         bzero((char *)&afs_osi_cred, sizeof(struct AFS_UCRED));
38         afs_osi_cred.cr_ref++;
39         afs_osicred_initialized = 1;
40     }
41     afile = (struct osi_file *) osi_AllocSmallSpace(sizeof(struct osi_file));
42     AFS_GUNLOCK();
43     code = igetinode(afs_cacheVfsp, (dev_t) cacheDev.dev, (ino_t)ainode, &ip, &dummy);
44     AFS_GLOCK();
45     if (code) {
46         osi_FreeSmallSpace(afile);
47         osi_Panic("UFSOpen: igetinode failed");
48     }
49     IN_UNLOCK(ip);
50     afile->vnode = ITOV(ip);
51     afile->size = VTOI(afile->vnode)->i_size;
52     afile->offset = 0;
53     afile->proc = (int (*)()) 0;
54     afile->inum = ainode;        /* for hint validity checking */
55     return (void *)afile;
56 }
57
58 afs_osi_Stat(afile, astat)
59     register struct osi_file *afile;
60     register struct osi_stat *astat; {
61     register afs_int32 code;
62     struct vattr tvattr;
63     AFS_STATCNT(osi_Stat);
64     MObtainWriteLock(&afs_xosi,320);
65     AFS_GUNLOCK();
66     VOP_GETATTR(afile->vnode, &tvattr, &afs_osi_cred, code);
67     AFS_GLOCK();
68     if (code == 0) {
69         astat->size = tvattr.va_size;
70         astat->blksize = tvattr.va_blocksize;
71         astat->mtime = tvattr.va_mtime.tv_sec;
72         astat->atime = tvattr.va_atime.tv_sec;
73     }
74     MReleaseWriteLock(&afs_xosi);
75     return code;
76 }
77
78 osi_UFSClose(afile)
79      register struct osi_file *afile;
80   {
81       AFS_STATCNT(osi_Close);
82       if(afile->vnode) {
83         AFS_RELE(afile->vnode);
84       }
85       
86       osi_FreeSmallSpace(afile);
87       return 0;
88   }
89
90 osi_UFSTruncate(afile, asize)
91     register struct osi_file *afile;
92     afs_int32 asize; {
93     struct AFS_UCRED *oldCred;
94     struct vattr tvattr;
95     register afs_int32 code;
96     struct osi_stat tstat;
97     AFS_STATCNT(osi_Truncate);
98
99     /* This routine only shrinks files, and most systems
100      * have very slow truncates, even when the file is already
101      * small enough.  Check now and save some time.
102      */
103     code = afs_osi_Stat(afile, &tstat);
104     if (code || tstat.size <= asize) return code;
105     MObtainWriteLock(&afs_xosi,321);    
106     VATTR_NULL(&tvattr);
107     /* note that this credential swapping stuff is only necessary because
108         of ufs's references directly to u.u_cred instead of to
109         credentials parameter.  Probably should fix ufs some day. */
110     oldCred = u.u_cred;     /* remember old credentials pointer  */
111     u.u_cred = &afs_osi_cred;   /* temporarily use superuser credentials */
112     tvattr.va_size = asize;
113     AFS_GUNLOCK();
114     VOP_SETATTR(afile->vnode, &tvattr, &afs_osi_cred, code);
115     AFS_GLOCK();
116     u.u_cred = oldCred;     /* restore */
117     MReleaseWriteLock(&afs_xosi);
118     return code;
119 }
120
121 void osi_DisableAtimes(avp)
122 struct vnode *avp;
123 {
124    struct inode *ip = VTOI(avp);
125    ip->i_flag &= ~IACC;
126 }
127
128
129 /* Generic read interface */
130 afs_osi_Read(afile, offset, aptr, asize)
131     register struct osi_file *afile;
132     int offset;
133     char *aptr;
134     afs_int32 asize; {
135     struct AFS_UCRED *oldCred;
136     unsigned int resid;
137     register afs_int32 code;
138     register afs_int32 cnt1=0;
139     AFS_STATCNT(osi_Read);
140
141     /**
142       * If the osi_file passed in is NULL, panic only if AFS is not shutting
143       * down. No point in crashing when we are already shutting down
144       */
145     if ( !afile ) {
146         if ( !afs_shuttingdown )
147             osi_Panic("osi_Read called with null param");
148         else
149             return EIO;
150     }
151
152     if (offset != -1) afile->offset = offset;
153     AFS_GUNLOCK();
154     code = gop_rdwr(UIO_READ, afile->vnode, (caddr_t) aptr, asize, afile->offset,
155                   AFS_UIOSYS, IO_UNIT, &afs_osi_cred, &resid);
156     AFS_GLOCK();
157     if (code == 0) {
158         code = asize - resid;
159         afile->offset += code;
160         osi_DisableAtimes(afile->vnode);
161     }
162     else {
163         afs_Trace2(afs_iclSetp, CM_TRACE_READFAILED, ICL_TYPE_INT32, resid,
164                  ICL_TYPE_INT32, code);
165         code = -1;
166     }
167     return code;
168 }
169
170 /* Generic write interface */
171 afs_osi_Write(afile, offset, aptr, asize)
172     register struct osi_file *afile;
173     char *aptr;
174     afs_int32 offset;
175     afs_int32 asize; {
176     struct AFS_UCRED *oldCred;
177     unsigned int resid;
178     register afs_int32 code;
179     AFS_STATCNT(osi_Write);
180     if ( !afile )
181         osi_Panic("afs_osi_Write called with null param");
182     if (offset != -1) afile->offset = offset;
183     {
184         struct ucred *tmpcred = u.u_cred;
185         u.u_cred = &afs_osi_cred;
186         AFS_GUNLOCK();
187         code = gop_rdwr(UIO_WRITE, afile->vnode, (caddr_t) aptr, asize, afile->offset,
188                   AFS_UIOSYS, IO_UNIT, &afs_osi_cred, &resid);
189         AFS_GLOCK();
190         u.u_cred = tmpcred;
191     }
192     if (code == 0) {
193         code = asize - resid;
194         afile->offset += code;
195     }
196     else {
197         code = -1;
198     }
199     if (afile->proc) {
200         (*afile->proc)(afile, code);
201     }
202     return code;
203 }
204
205
206 /*  This work should be handled by physstrat in ca/machdep.c.
207     This routine written from the RT NFS port strategy routine.
208     It has been generalized a bit, but should still be pretty clear. */
209 int afs_osi_MapStrategy(aproc, bp)
210         int (*aproc)();
211         register struct buf *bp;
212 {
213     afs_int32 returnCode;
214
215     AFS_STATCNT(osi_MapStrategy);
216     returnCode = (*aproc) (bp);
217
218     return returnCode;
219 }
220
221
222
223 void
224 shutdown_osifile()
225 {
226   extern int afs_cold_shutdown;
227
228   AFS_STATCNT(shutdown_osifile);
229   if (afs_cold_shutdown) {
230     afs_osicred_initialized = 0;
231   }
232 }
233