venus: Remove dedebug
[openafs.git] / src / afs / DARWIN / 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 "afs/sysincludes.h"    /* Standard vendor system headers */
15 #include "afsincludes.h"        /* Afs-based standard headers */
16 #include "afs/afs_stats.h"      /* afs statistics */
17 #include "afs/osi_inode.h"
18
19
20 int afs_osicred_initialized = 0;
21 afs_ucred_t afs_osi_cred;
22 extern struct osi_dev cacheDev;
23 extern struct mount *afs_cacheVfsp;
24 int afs_CacheFSType = -1;
25
26 /* Initialize the cache operations. Called while initializing cache files. */
27 void
28 afs_InitDualFSCacheOps(struct vnode *vp)
29 {
30     int code;
31     static int inited = 0;
32 #ifdef AFS_DARWIN80_ENV
33     char *buffer = (char*)_MALLOC(MFSNAMELEN, M_TEMP, M_WAITOK);
34 #endif
35
36     if (inited)
37         return;
38     inited = 1;
39
40     if (vp == NULL)
41         return;
42 #ifdef AFS_DARWIN80_ENV
43     vfs_name(vnode_mount(vp), buffer);
44     if (strncmp("hfs", buffer, 3) == 0)
45 #else
46     if (strncmp("hfs", vp->v_mount->mnt_vfc->vfc_name, 3) == 0)
47 #endif
48         afs_CacheFSType = AFS_APPL_HFS_CACHE;
49 #ifdef AFS_DARWIN80_ENV
50     else if (strncmp("ufs", buffer, 3) == 0)
51 #else
52     else if (strncmp("ufs", vp->v_mount->mnt_vfc->vfc_name, 3) == 0)
53 #endif
54         afs_CacheFSType = AFS_APPL_UFS_CACHE;
55 #ifdef AFS_DARWIN80_ENV
56     else if (strncmp("apfs", buffer, 4) == 0)
57         afs_CacheFSType = AFS_APPL_APFS_CACHE;
58 #endif
59     else
60         osi_Panic("Unknown cache vnode type\n");
61 #ifdef AFS_DARWIN80_ENV
62     _FREE(buffer, M_TEMP);
63 #endif
64 }
65
66 ino_t
67 VnodeToIno(vnode_t avp)
68 {
69     unsigned long ret;
70
71 #ifndef AFS_DARWIN80_ENV
72     if (afs_CacheFSType == AFS_APPL_UFS_CACHE) {
73         struct inode *ip = VTOI(avp);
74         ret = ip->i_number;
75     } else if (afs_CacheFSType == AFS_APPL_HFS_CACHE) {
76 #endif
77 #if defined(AFS_DARWIN80_ENV) 
78         struct vattr va;
79         VATTR_INIT(&va);
80         VATTR_WANTED(&va, va_fileid);
81         if (vnode_getattr(avp, &va, afs_osi_ctxtp))
82             osi_Panic("VOP_GETATTR failed in VnodeToIno\n");
83         if (!VATTR_ALL_SUPPORTED(&va))
84             osi_Panic("VOP_GETATTR unsupported fileid in VnodeToIno\n");
85         ret = va.va_fileid;
86 #elif !defined(VTOH)
87         struct vattr va;
88         if (VOP_GETATTR(avp, &va, &afs_osi_cred, current_proc()))
89             osi_Panic("VOP_GETATTR failed in VnodeToIno\n");
90         ret = va.va_fileid;
91 #else
92         struct hfsnode *hp = VTOH(avp);
93         ret = H_FILEID(hp);
94 #endif
95 #ifndef AFS_DARWIN80_ENV
96     } else
97         osi_Panic("VnodeToIno called before cacheops initialized\n");
98 #endif
99     return ret;
100 }
101
102
103 dev_t
104 VnodeToDev(vnode_t avp)
105 {
106 #ifndef AFS_DARWIN80_ENV
107     if (afs_CacheFSType == AFS_APPL_UFS_CACHE) {
108         struct inode *ip = VTOI(avp);
109         return ip->i_dev;
110     } else if (afs_CacheFSType == AFS_APPL_HFS_CACHE) {
111 #endif
112 #if defined(AFS_DARWIN80_ENV) 
113         struct vattr va;
114         VATTR_INIT(&va);
115         VATTR_WANTED(&va, va_fsid);
116         if (vnode_getattr(avp, &va, afs_osi_ctxtp))
117             osi_Panic("VOP_GETATTR failed in VnodeToDev\n");
118         if (!VATTR_ALL_SUPPORTED(&va))
119             osi_Panic("VOP_GETATTR unsupported fsid in VnodeToIno\n");
120         return va.va_fsid;      /* XXX they say it's the dev.... */
121 #elif !defined(VTOH)
122         struct vattr va;
123         if (VOP_GETATTR(avp, &va, &afs_osi_cred, current_proc()))
124             osi_Panic("VOP_GETATTR failed in VnodeToDev\n");
125         return va.va_fsid;      /* XXX they say it's the dev.... */
126 #else
127         struct hfsnode *hp = VTOH(avp);
128         return H_DEV(hp);
129 #endif
130 #ifndef AFS_DARWIN80_ENV
131     } else
132         osi_Panic("VnodeToDev called before cacheops initialized\n");
133 #endif
134 }
135
136 void *
137 osi_UFSOpen(afs_dcache_id_t *ainode)
138 {
139     struct vnode *vp;
140     struct vattr va;
141     struct osi_file *afile = NULL;
142     extern int cacheDiskType;
143     afs_int32 code = 0;
144     int dummy;
145     char fname[1024];
146     struct osi_stat tstat;
147
148     AFS_STATCNT(osi_UFSOpen);
149     if (cacheDiskType != AFS_FCACHE_TYPE_UFS) {
150         osi_Panic("UFSOpen called for non-UFS cache\n");
151     }
152     if (!afs_osicred_initialized) {
153         memset(&afs_osi_cred, 0, sizeof(afs_ucred_t));
154         afs_osi_cred.cr_ref++;
155 #ifndef AFS_DARWIN110_ENV
156         afs_osi_cred.cr_ngroups = 1;
157 #endif
158         afs_osicred_initialized = 1;
159     }
160     afile = osi_AllocSmallSpace(sizeof(struct osi_file));
161     AFS_GUNLOCK();
162 #ifdef AFS_CACHE_VNODE_PATH
163     if (!ainode->ufs) {
164         osi_Panic("No cache inode\n");
165     }
166
167     code = vnode_open(ainode->ufs, O_RDWR, 0, 0, &vp, afs_osi_ctxtp);
168 #else
169 #ifndef AFS_DARWIN80_ENV
170     if (afs_CacheFSType == AFS_APPL_HFS_CACHE)
171         code = igetinode(afs_cacheVfsp, (dev_t) cacheDev.dev, &ainode->ufs, &vp, &va, &dummy);  /* XXX hfs is broken */
172     else if (afs_CacheFSType == AFS_APPL_UFS_CACHE)
173 #endif
174         code =
175             igetinode(afs_cacheVfsp, (dev_t) cacheDev.dev, (ino_t) ainode->ufs,
176                       &vp, &va, &dummy);
177 #ifndef AFS_DARWIN80_ENV
178     else
179         panic("osi_UFSOpen called before cacheops initialized\n");
180 #endif
181 #endif
182     AFS_GLOCK();
183     if (code) {
184         osi_FreeSmallSpace(afile);
185         osi_Panic("UFSOpen: igetinode failed");
186     }
187     afile->vnode = vp;
188     afile->offset = 0;
189     afile->proc = (int (*)())0;
190 #ifndef AFS_CACHE_VNODE_PATH
191     afile->size = va.va_size;
192 #else
193     code = afs_osi_Stat(afile, &tstat);
194     afile->size = tstat.size;
195 #endif
196     return (void *)afile;
197 }
198
199 int
200 afs_osi_Stat(struct osi_file *afile, struct osi_stat *astat)
201 {
202     afs_int32 code;
203     struct vattr tvattr;
204     AFS_STATCNT(osi_Stat);
205     AFS_GUNLOCK();
206 #ifdef AFS_DARWIN80_ENV
207     VATTR_INIT(&tvattr);
208     VATTR_WANTED(&tvattr, va_size);
209     VATTR_WANTED(&tvattr, va_blocksize);
210     VATTR_WANTED(&tvattr, va_mtime);
211     VATTR_WANTED(&tvattr, va_atime);
212     code = vnode_getattr(afile->vnode, &tvattr, afs_osi_ctxtp);
213     if (code == 0 && !VATTR_ALL_SUPPORTED(&tvattr))
214        code = EINVAL;
215 #else
216     code = VOP_GETATTR(afile->vnode, &tvattr, &afs_osi_cred, current_proc());
217 #endif
218     AFS_GLOCK();
219     if (code == 0) {
220         astat->size = tvattr.va_size;
221         astat->mtime = tvattr.va_mtime.tv_sec;
222         astat->atime = tvattr.va_atime.tv_sec;
223     }
224     return code;
225 }
226
227 int
228 osi_UFSClose(struct osi_file *afile)
229 {
230     AFS_STATCNT(osi_Close);
231     if (afile->vnode) {
232 #ifdef AFS_DARWIN80_ENV
233         vnode_close(afile->vnode, O_RDWR, afs_osi_ctxtp);
234 #else
235         AFS_RELE(afile->vnode);
236 #endif
237     }
238
239     osi_FreeSmallSpace(afile);
240     return 0;
241 }
242
243 int
244 osi_UFSTruncate(struct osi_file *afile, afs_int32 asize)
245 {
246     afs_ucred_t *oldCred;
247     struct vattr tvattr;
248     afs_int32 code;
249     struct osi_stat tstat;
250     AFS_STATCNT(osi_Truncate);
251
252     /* This routine only shrinks files, and most systems
253      * have very slow truncates, even when the file is already
254      * small enough.  Check now and save some time.
255      */
256     code = afs_osi_Stat(afile, &tstat);
257     if (code || tstat.size <= asize)
258         return code;
259     AFS_GUNLOCK();
260 #ifdef AFS_DARWIN80_ENV
261     VATTR_INIT(&tvattr);
262     VATTR_SET(&tvattr, va_size, asize);
263     code = vnode_setattr(afile->vnode, &tvattr, afs_osi_ctxtp);
264 #else
265     VATTR_NULL(&tvattr);
266     tvattr.va_size = asize;
267     code = VOP_SETATTR(afile->vnode, &tvattr, &afs_osi_cred, current_proc());
268 #endif
269     AFS_GLOCK();
270     return code;
271 }
272
273 void
274 #ifdef AFS_DARWIN80_ENV
275 osi_DisableAtimes(vnode_t avp)
276 #else
277 osi_DisableAtimes(struct vnode *avp)
278 #endif
279 {
280 #ifdef AFS_DARWIN80_ENV
281     struct vnode_attr vap;
282
283     VATTR_INIT(&vap);
284     VATTR_CLEAR_SUPPORTED(&vap, va_access_time);
285     vnode_setattr(avp, &vap, afs_osi_ctxtp);
286 #else
287     if (afs_CacheFSType == AFS_APPL_UFS_CACHE) {
288         struct inode *ip = VTOI(avp);
289         ip->i_flag &= ~IN_ACCESS;
290     }
291 #ifdef VTOH                     /* can't do this without internals */
292     else if (afs_CacheFSType == AFS_APPL_HFS_CACHE) {
293         struct hfsnode *hp = VTOH(avp);
294         hp->h_nodeflags &= ~IN_ACCESS;
295     }
296 #endif
297 #endif
298 }
299
300
301 /* Generic read interface */
302 int
303 afs_osi_Read(struct osi_file *afile, int offset, void *aptr,
304              afs_int32 asize)
305 {
306     afs_ucred_t *oldCred;
307     afs_size_t resid;
308     afs_int32 code;
309 #ifdef AFS_DARWIN80_ENV
310     uio_t uio;
311 #endif
312     AFS_STATCNT(osi_Read);
313
314     /**
315       * If the osi_file passed in is NULL, panic only if AFS is not shutting
316       * down. No point in crashing when we are already shutting down
317       */
318     if (!afile) {
319         if (afs_shuttingdown == AFS_RUNNING)
320             osi_Panic("osi_Read called with null param");
321         else
322             return -EIO;
323     }
324
325     if (offset != -1)
326         afile->offset = offset;
327     AFS_GUNLOCK();
328 #ifdef AFS_DARWIN80_ENV
329     uio=uio_create(1, afile->offset, AFS_UIOSYS, UIO_READ);
330     uio_addiov(uio, CAST_USER_ADDR_T(aptr), asize);
331     code = VNOP_READ(afile->vnode, uio, IO_UNIT, afs_osi_ctxtp);
332     resid = AFS_UIO_RESID(uio);
333     uio_free(uio);
334 #else
335     code =
336         gop_rdwr(UIO_READ, afile->vnode, (caddr_t) aptr, asize, afile->offset,
337                  AFS_UIOSYS, IO_UNIT, &afs_osi_cred, &resid);
338 #endif
339     AFS_GLOCK();
340     if (code == 0) {
341         code = asize - resid;
342         afile->offset += code;
343         osi_DisableAtimes(afile->vnode);
344     } else {
345         afs_Trace2(afs_iclSetp, CM_TRACE_READFAILED, ICL_TYPE_INT32, resid,
346                    ICL_TYPE_INT32, code);
347         if (code > 0) {
348             code = -code;
349         }
350     }
351     return code;
352 }
353
354 /* Generic write interface */
355 int
356 afs_osi_Write(struct osi_file *afile, afs_int32 offset, void *aptr,
357               afs_int32 asize)
358 {
359     afs_ucred_t *oldCred;
360     afs_size_t resid;
361     afs_int32 code;
362 #ifdef AFS_DARWIN80_ENV
363     uio_t uio;
364 #endif
365     AFS_STATCNT(osi_Write);
366     if (!afile)
367         osi_Panic("afs_osi_Write called with null param");
368     if (offset != -1)
369         afile->offset = offset;
370     {
371         AFS_GUNLOCK();
372 #ifdef AFS_DARWIN80_ENV
373         uio=uio_create(1, afile->offset, AFS_UIOSYS, UIO_WRITE);
374         uio_addiov(uio, CAST_USER_ADDR_T(aptr), asize);
375         code = VNOP_WRITE(afile->vnode, uio, IO_UNIT, afs_osi_ctxtp);
376         resid = AFS_UIO_RESID(uio);
377         uio_free(uio);
378 #else
379         code =
380             gop_rdwr(UIO_WRITE, afile->vnode, (caddr_t) aptr, asize,
381                      afile->offset, AFS_UIOSYS, IO_UNIT, &afs_osi_cred,
382                      &resid);
383 #endif
384         AFS_GLOCK();
385     }
386     if (code == 0) {
387         code = asize - resid;
388         afile->offset += code;
389     } else {
390         if (code > 0) {
391             code = -code;
392         }
393     }
394     if (afile->proc) {
395         (*afile->proc) (afile, code);
396     }
397     return code;
398 }
399
400
401
402
403
404 void
405 shutdown_osifile(void)
406 {
407     AFS_STATCNT(shutdown_osifile);
408     if (afs_cold_shutdown) {
409         afs_osicred_initialized = 0;
410     }
411 }