c6163656715938ce51c6e05ffcbca13a4ef966a2
[openafs.git] / src / afs / afs_osi.h
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 #ifndef _AFS_OSI_
11 #define _AFS_OSI_
12
13 #include "h/types.h"
14 #include "h/param.h"
15
16 #ifdef AFS_FBSD50_ENV
17 #include <sys/condvar.h>
18 #endif
19
20 #ifdef AFS_LINUX20_ENV
21 #ifndef _LINUX_CODA_FS_I
22 #define _LINUX_CODA_FS_I
23 #define _CODA_HEADER_
24 struct coda_inode_info {
25 };
26 #endif
27 #ifndef _LINUX_XFS_FS_I
28 #define _LINUX_XFS_FS_I
29 struct xfs_inode_info {
30 };
31 #endif
32 #include "h/fs.h"
33 #include "h/mm.h"
34 #endif
35
36
37 /* this is just a dummy type decl, we're really using struct sockets here */
38 struct osi_socket {
39     int junk;
40 };
41
42 struct osi_stat {
43     afs_int32 size;             /* file size in bytes */
44     afs_int32 blksize;          /* optimal transfer size in bytes */
45     afs_int32 mtime;            /* modification date */
46     afs_int32 atime;            /* access time */
47 };
48
49 struct osi_file {
50     afs_int32 size;             /* file size in bytes XXX Must be first field XXX */
51 #ifdef AFS_LINUX22_ENV
52     struct dentry dentry;       /* merely to hold the pointer to the inode. */
53     struct file file;           /* May need this if we really open the file. */
54 #else
55     struct vnode *vnode;
56 #endif
57 #if     defined(AFS_HPUX102_ENV)
58     k_off_t offset;
59 #else
60 #if defined(AFS_AIX51_ENV) && defined(AFS_64BIT_KERNEL)
61     afs_offs_t offset;
62 #else
63     afs_int32 offset;
64 #endif
65 #endif
66     int (*proc) (struct osi_file * afile, afs_int32 code);      /* proc, which, if not null, is called on writes */
67     char *rock;                 /* rock passed to proc */
68     ino_t inum;                 /* guarantee validity of hint */
69 #if defined(UKERNEL)
70     int fd;                     /* file descriptor for user space files */
71 #endif                          /* defined(UKERNEL) */
72 };
73
74 struct osi_dev {
75 #if defined(AFS_XBSD_ENV)
76     struct mount *mp;
77     struct vnode *held_vnode;
78 #elif defined(AFS_AIX42_ENV)
79     dev_t dev;
80 #else
81     afs_int32 dev;
82 #endif
83 };
84
85 struct afs_osi_WaitHandle {
86 #ifdef AFS_FBSD50_ENV
87     struct cv wh_condvar;
88     int wh_inited;              /* XXX */
89 #else
90     caddr_t proc;               /* process waiting */
91 #endif
92 };
93
94 #define osi_SetFileProc(x,p)    ((x)->proc=(p))
95 #define osi_SetFileRock(x,r)    ((x)->rock=(r))
96 #define osi_GetFileProc(x)      ((x)->proc)
97 #define osi_GetFileRock(x)      ((x)->rock)
98
99 #ifdef  AFS_TEXT_ENV
100 #define osi_FlushText(vp) if (hcmp((vp)->m.DataVersion, (vp)->flushDV) > 0) \
101                             osi_FlushText_really(vp)
102 #else
103 #define osi_FlushText(vp)
104 #endif
105
106
107 #define AFSOP_STOP_RXEVENT   214        /* stop rx event deamon */
108 #define AFSOP_STOP_COMPLETE  215        /* afs has been shutdown */
109 #define AFSOP_STOP_RXK_LISTENER   217   /* stop rx listener daemon */
110
111
112 #define osi_NPACKETS    20      /* number of cluster pkts to alloc */
113
114 /*
115  * Alloc declarations.
116  */
117 #define afs_osi_Alloc_NoSleep afs_osi_Alloc
118
119 /*
120  * Vnode related macros
121  */
122 #if defined(AFS_DARWIN_ENV) || defined(AFS_XBSD_ENV)
123 #define vSetVfsp(vc, vfsp)      AFSTOV(vc)->v_mount = (vfsp)
124 #define vSetType(vc, type)      AFSTOV(vc)->v_type = (type)
125 #define vType(vc)               AFSTOV(vc)->v_type
126 #else
127 #define vType(vc)           (vc)->v.v_type
128 #define vSetType(vc,type)   (vc)->v.v_type = (type)
129 #define vSetVfsp(vc,vfsp)   (vc)->v.v_vfsp = (vfsp)
130 #endif
131
132 #if defined(AFS_DARWIN_ENV) || defined(AFS_XBSD_ENV)
133 extern int (**afs_vnodeop_p) ();
134 #define IsAfsVnode(v)      ((v)->v_op == afs_vnodeop_p)
135 #define SetAfsVnode(v)     (v)->v_op = afs_vnodeop_p
136 #else
137 extern struct vnodeops *afs_ops;
138 #define IsAfsVnode(v)       ((v)->v_op == afs_ops)
139 #define SetAfsVnode(v)      (v)->v_op = afs_ops
140 #endif
141
142 #ifdef AFS_SGI65_ENV
143 #define gop_lookupname(fnamep,segflg,followlink,compvpp) \
144              lookupname((fnamep),(segflg),(followlink),NULL,(compvpp),\
145                         NULL)
146 #else
147 #define gop_lookupname(fnamep,segflg,followlink,compvpp) \
148              lookupname((fnamep),(segflg),(followlink),NULL,(compvpp))
149 #endif
150
151 /*
152  * In IRIX 6.5 we cannot have DEBUG turned on since certain
153  * system-defined structures are a different size with DEBUG on, the
154  * kernel is compiled without DEBUG on, and the resulting differences
155  * would break our ability to interact with the rest of the kernel.
156  *
157  * Is DEBUG only for turning the ASSERT() macro?  If so, we should
158  * be able to eliminate DEBUG entirely.
159  */
160 #if !defined(AFS_SGI65_ENV)
161 #ifndef DEBUG
162 #define DEBUG   1               /* Default is to enable debugging/logging */
163 #endif
164 #endif
165
166 /* 
167  * Time related macros
168  */
169 #define osi_GetuTime(x) osi_GetTime(x)
170
171 /* osi_timeval_t exists because SGI 6.x has two sizes of timeval. */
172 /** In 64 bit Solaris the timeval structure has members that are 64 bit
173   * In the GetTime() interface we expect pointers to afs_int32. So the need to
174   * define osi_timeval_t to have 32 bit members. To make this less ambiguous
175   * we now use 32 bit quantities consistently all over the code.
176   * In 64 bit HP-UX the timeval structure has a 64 bit member.
177   */
178
179
180 #if defined(AFS_HPUX_ENV) || (defined(AFS_SUN57_ENV) && !defined(AFS_SUN510_ENV)) || defined(AFS_LINUX_64BIT_KERNEL) || (defined(AFS_SGI61_ENV) && defined(KERNEL) && defined(_K64U64))
181 typedef struct {
182     afs_int32 tv_sec;
183     afs_int32 tv_usec;
184 } osi_timeval_t;
185 #else
186 typedef struct timeval osi_timeval_t;
187 #endif /* AFS_SGI61_ENV */
188
189 /*
190  * osi_ThreadUnique() should yield a value that can be found in ps
191  * output in order to draw correspondences between ICL traces and what
192  * is going on in the system.  So if ps cannot show thread IDs it is
193  * likely to be the process ID instead.
194  */
195 #ifdef AFS_FBSD50_ENV
196 /* should use curthread, but 'ps' can't display it */
197 #define osi_ThreadUnique()      curproc
198 #else
199 #define osi_ThreadUnique()      getpid()
200 #endif
201
202
203
204 #ifdef AFS_GLOBAL_SUNLOCK
205 #define AFS_ASSERT_GLOCK() \
206     (ISAFS_GLOCK() || (osi_Panic("afs global lock not held at %s:%d\n", __FILE__, __LINE__), 0))
207 #endif /* AFS_GLOBAL_SUNLOCK */
208
209 #ifdef RX_ENABLE_LOCKS
210 #define RX_AFS_GLOCK()          AFS_GLOCK()
211 #define RX_AFS_GUNLOCK()        AFS_GUNLOCK()
212 #else
213 #define RX_AFS_GLOCK()
214 #define RX_AFS_GUNLOCK()
215 #endif
216
217
218
219 #ifndef KERNEL
220 #define AFS_GLOCK()
221 #define AFS_GUNLOCK()
222 #define ISAFS_GLOCK() 1
223 #define AFS_ASSERT_GLOCK()
224 #endif
225
226 /* On an MP that uses multithreading, splnet is not sufficient to provide
227  * mutual exclusion because the other processors will not see it.  On some
228  * early multiprocessors (SunOS413 & SGI5.2) splnet actually obtains a global
229  * mutex, which this works in the UP expected way, it means that the whole MP
230  * can only take one interrupt at a time; a serious performance penalty. */
231
232 #if ((defined(AFS_GLOBAL_SUNLOCK) || defined(RX_ENABLE_LOCKS)) && !defined(AFS_HPUX_ENV)) || !defined(KERNEL)
233 #define SPLVAR
234 #define NETPRI
235 #define USERPRI
236 #endif
237
238 /*
239  * vnode/vcache ref count manipulation
240  */
241 #if defined(UKERNEL)
242 #define AFS_RELE(vp) do { VN_RELE(vp); } while (0)
243 #else /* defined(UKERNEL) */
244 #define AFS_RELE(vp) do { AFS_GUNLOCK(); VN_RELE(vp); AFS_GLOCK(); } while (0)
245 #endif /* defined(UKERNEL) */
246
247 /*
248  * For some reason we do bare refcount manipulation in some places, for some
249  * platforms.  The assumption is apparently that either we wouldn't call
250  * afs_inactive anyway (because we know the ref count is high), or that it's
251  * OK not to call it (because we don't expect CUnlinked or CDirty).
252  * (Also, of course, the vnode is assumed to be one of ours.  Can't use this
253  * macro for V-file vnodes.)
254  */
255 #if defined(AFS_DARWIN_ENV) || defined(AFS_XBSD_ENV)
256 /* Bare refcount manipulation would probably work on this platform, but just
257    calling VREF does not */
258 #define AFS_FAST_HOLD(vp) osi_vnhold((vp),0)
259 #else
260 #define AFS_FAST_HOLD(vp) VN_HOLD(&(vp)->v)
261 #endif
262 #define AFS_FAST_RELE(vp) AFS_RELE(AFSTOV(vp))
263
264 /*
265  * MP safe versions of routines to copy memory between user space
266  * and kernel space. Call these to avoid taking page faults while
267  * holding the global lock.
268  */
269 #ifdef AFS_GLOBAL_SUNLOCK
270
271 #define AFS_COPYIN(SRC,DST,LEN,CODE)                            \
272         do {                                                    \
273             int haveGlock = ISAFS_GLOCK();                      \
274             if (haveGlock)                                      \
275                 AFS_GUNLOCK();                                  \
276             CODE = copyin((SRC),(DST),(LEN));                   \
277             if (haveGlock)                                      \
278                 AFS_GLOCK();                                    \
279         } while(0)
280
281 #define AFS_COPYINSTR(SRC,DST,LEN,CNT,CODE)                     \
282         do {                                                    \
283             int haveGlock = ISAFS_GLOCK();                      \
284             if (haveGlock)                                      \
285                 AFS_GUNLOCK();                                  \
286             CODE = copyinstr((SRC),(DST),(LEN),(CNT));          \
287             if (haveGlock)                                      \
288                 AFS_GLOCK();                                    \
289         } while(0)
290
291 #define AFS_COPYOUT(SRC,DST,LEN,CODE)                           \
292         do {                                                    \
293             int haveGlock = ISAFS_GLOCK();                      \
294             if (haveGlock)                                      \
295                 AFS_GUNLOCK();                                  \
296             CODE = copyout((SRC),(DST),(LEN));                  \
297             if (haveGlock)                                      \
298                 AFS_GLOCK();                                    \
299         } while(0)
300
301 #if defined(AFS_OSF_ENV) || defined(AFS_DARWIN_ENV) || defined(AFS_XBSD_ENV)
302 #define AFS_UIOMOVE(SRC,LEN,RW,UIO,CODE)                        \
303         do {                                                    \
304             int haveGlock = ISAFS_GLOCK();                      \
305             if (haveGlock)                                      \
306                 AFS_GUNLOCK();                                  \
307             (UIO)->uio_rw = (RW);                               \
308             CODE = uiomove((SRC),(LEN),(UIO));                  \
309             if (haveGlock)                                      \
310                 AFS_GLOCK();                                    \
311         } while(0)
312 #else
313 #define AFS_UIOMOVE(SRC,LEN,RW,UIO,CODE)                        \
314         do {                                                    \
315             int haveGlock = ISAFS_GLOCK();                      \
316             if (haveGlock)                                      \
317                 AFS_GUNLOCK();                                  \
318             CODE = uiomove((SRC),(LEN),(RW),(UIO));             \
319             if (haveGlock)                                      \
320                 AFS_GLOCK();                                    \
321         } while(0)
322 #endif
323
324 #else /* AFS_GLOBAL_SUNLOCK */
325
326 #define AFS_COPYIN(SRC,DST,LEN,CODE)                            \
327         do {                                                    \
328             CODE = copyin((SRC),(DST),(LEN));                   \
329         } while(0)
330
331 #define AFS_COPYINSTR(SRC,DST,LEN,CNT,CODE)                     \
332         do {                                                    \
333             CODE = copyinstr((SRC),(DST),(LEN),(CNT));          \
334         } while(0)
335
336 #define AFS_COPYOUT(SRC,DST,LEN,CODE)                           \
337         do {                                                    \
338             CODE = copyout((SRC),(DST),(LEN));                  \
339         } while(0)
340
341 #if defined(AFS_OSF_ENV) || defined(AFS_DARWIN_ENV) || defined(AFS_XBSD_ENV)
342 #define AFS_UIOMOVE(SRC,LEN,RW,UIO,CODE)                        \
343         do {                                                    \
344             (UIO)->uio_rw = (RW);                               \
345             CODE = uiomove((SRC),(LEN),(UIO));                  \
346         } while(0)
347 #else /* AFS_OSF_ENV || AFS_FBSD_ENV */
348 #define AFS_UIOMOVE(SRC,LEN,RW,UIO,CODE)                        \
349         do {                                                    \
350             CODE = uiomove((SRC),(LEN),(RW),(UIO));             \
351         } while(0)
352 #endif /* AFS_OSF_ENV || AFS_FBSD_ENV */
353
354 #endif /* AFS_GLOBAL_SUNLOCK */
355
356 /*
357  * encapsulation of kernel data structure accesses
358  */
359 #define setuerror(erval)        u.u_error = (erval)
360 #define getuerror()             u.u_error
361
362 /* Macros for vcache/vnode and vfs arguments to vnode and vfs ops.
363  * These are required for IRIX 6.4 and later, which pass behavior pointers.
364  * Note that the _CONVERT routines get the ";" here so that argument lists
365  * can have arguments after the OSI_x_CONVERT macro is called.
366  */
367 #define OSI_VN_ARG(V) V
368 #define OSI_VN_DECL(V) struct vnode *V
369 #define OSI_VN_CONVERT(V)
370 #define OSI_VC_ARG(V) V
371 #define OSI_VC_DECL(V) struct vcache *V
372 #define OSI_VC_CONVERT(V)
373 #define OSI_VFS_ARG(V) V
374 #define OSI_VFS_DECL(V) struct vfs *V
375 #define OSI_VFS_CONVERT(V)
376
377
378 /*
379 ** Macro for Solaris 2.6 returns 1 if file is larger than 2GB; else returns 0 
380 */
381 #define AfsLargeFileUio(uio)       0
382 #define AfsLargeFileSize(pos, off) 0
383
384 /* Now include system specific OSI header file. It will redefine macros
385  * defined here as required by the OS.
386  */
387 #include "osi_machdep.h"
388
389 /* Declare any structures which use these macros after the OSI implementation
390  * has had the opportunity to redefine them.
391  */
392 extern struct AFS_UCRED afs_osi_cred, *afs_osi_credp;
393
394 #ifndef osi_curcred
395 #define osi_curcred() (u.u_cred)
396 #endif
397
398 #endif /* _AFS_OSI_ */