5e07aa3d6a3df851c8f9662698405d946e34a4d1
[openafs.git] / src / afs / DARWIN / osi_machdep.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  *
11  * MACOS OSI header file. Extends afs_osi.h.
12  *
13  * afs_osi.h includes this file, which is the only way this file should
14  * be included in a source file. This file can redefine macros declared in
15  * afs_osi.h.
16  */
17
18 #ifndef _OSI_MACHDEP_H_
19 #define _OSI_MACHDEP_H_
20
21 #ifdef XAFS_DARWIN_ENV
22 #ifndef _MACH_ETAP_H_
23 #define _MACH_ETAP_H_
24 typedef unsigned short etap_event_t;
25 #endif
26 #endif
27
28 #ifdef AFS_DARWIN80_ENV
29 #include <kern/locks.h>
30 #include <sys/mount.h>
31 #include <h/vnode.h>
32 #else
33 #include <sys/lock.h>
34 #include <sys/user.h>
35 #include <sys/vnode.h>
36 #endif
37 #include <kern/thread.h>
38
39 #ifdef AFS_DARWIN80_ENV
40 #define vop_proc vfs_context_proc(ap->a_context)
41 #define vop_cred vfs_context_ucred(ap->a_context)
42 #define cn_proc(cnp) vfs_context_proc(ap->a_context)
43 #define cn_cred(cnp) vfs_context_ucred(ap->a_context)
44 #define vop_cn_proc vfs_context_proc(ap->a_context)
45 #define vop_cn_cred vfs_context_ucred(ap->a_context)
46 #define getpid()                proc_selfpid()
47 #define getppid()               proc_selfppid()
48 #else
49 #define vop_proc ap->a_p
50 #define vop_cred ap->a_cred
51 #define cn_proc(cnp) (cnp)->cn_proc
52 #define cn_cred(cnp) (cnp)->cn_cred
53 #define vop_cn_proc cn_proc(ap->a_cnp)
54 #define vop_cn_cred cn_cred(ap->a_cnp)
55 #define getpid()                current_proc()->p_pid
56 #define getppid()               current_proc()->p_pptr->p_pid
57 #endif
58 #undef gop_lookupname
59 #define gop_lookupname osi_lookupname
60 #undef gop_lookupname_user
61 #define gop_lookupname_user osi_lookupname_user
62
63 #define FTRUNC 0
64
65 /* vcexcl - used only by afs_create */
66 enum vcexcl { EXCL, NONEXCL };
67
68 #ifndef AFS_DARWIN80_ENV
69 #define vnode_clearfsnode(x) ((x)->v_data = 0)
70 #define vnode_fsnode(x) (x)->v_data
71 #define vnode_lock(x) vn_lock(x, LK_EXCLUSIVE | LK_RETRY, current_proc());
72 #define vnode_isvroot(x) (((x)->v_flag & VROOT)?1:0)
73 #define vnode_vtype(x) (x)->v_type
74 #define vnode_isdir(x) ((x)->v_type == VDIR)
75
76 #define vfs_flags(x) (x)->v_flags
77 #define vfs_setflags(x, y) (x)->mnt_flag |= (y)
78 #define vfs_clearflags(x, y) (x)->mnt_flag &= (~(y))
79 #define vfs_isupdate(x) ((x)->mnt_flag & MNT_UPDATE)
80 #define vfs_fsprivate(x) (x)->mnt_data
81 #define vfs_setfsprivate(x,y) (x)->mnt_data = (y)
82 #define vfs_typenum(x) (x)->mnt_vfc->vfc_typenum
83 #endif
84
85 #ifdef AFS_DARWIN80_ENV
86 #define vrele vnode_rele
87 #define vput vnode_rele
88 #define vref vnode_ref
89 #define vattr vnode_attr
90 #if 0
91 #define vn_lock(v, unused1, unused2) vnode_get((v))
92 #define VOP_LOCK(v, unused1, unused2) vnode_get((v))
93 #define VOP_UNLOCK(v, unused1, unused2) vnode_put((v))
94 #endif
95
96 #define va_size va_data_size
97 #define va_atime va_access_time
98 #define va_mtime va_modify_time
99 #define va_ctime va_change_time
100 #define va_bytes va_total_alloc 
101 #define va_blocksize va_iosize
102 #define va_nodeid va_fileid
103
104 #define crref kauth_cred_get_with_ref
105 #define crhold kauth_cred_ref
106 #ifdef AFS_DARWIN100_ENV
107 #define crfree(X) kauth_cred_unref(&X)
108 #else
109 #define crfree kauth_cred_rele
110 #endif
111 #define crdup kauth_cred_dup
112 #ifdef AFS_DARWIN100_ENV
113 #define ubc_msync_range(X,Y,Z,A) ubc_msync(X,Y,Z,NULL,A)
114 #else
115 #define ubc_msync_range(X,Y,Z,A) ubc_sync_range(X,Y,Z,A)
116 #endif
117 extern vfs_context_t afs_osi_ctxtp;
118 extern int afs_osi_ctxtp_initialized;
119 #endif
120
121 /* 
122  * Time related macros
123  */
124 #ifndef AFS_DARWIN60_ENV
125 extern struct timeval time;
126 #endif
127 #ifdef AFS_DARWIN80_ENV
128 static inline time_t osi_Time(void) {
129     struct timeval _now;
130     microtime(&_now);
131     return _now.tv_sec;
132 }
133 #else
134 #define osi_Time() (time.tv_sec)
135 #endif
136 #define afs_hz      hz
137 #ifdef AFS_DARWIN80_ENV
138 extern int hz;
139 #endif
140
141 #define AFS_UCRED       struct ucred
142
143 #define AFS_PROC        struct proc
144
145 #define osi_vnhold(avc,r)       VN_HOLD(AFSTOV(avc))
146 #define VN_HOLD(vp) darwin_vn_hold(vp)
147 #define VN_RELE(vp) vrele(vp);
148
149 void darwin_vn_hold(struct vnode *vp);
150 #ifdef AFS_DARWIN80_ENV
151 void darwin_vn_rele(struct vnode *vp);
152 #endif
153
154 #define gop_rdwr(rw,gp,base,len,offset,segflg,unit,cred,aresid) \
155   vn_rdwr((rw),(gp),(base),(len),(offset),(segflg),(unit),(cred),(aresid),current_proc())
156
157 #undef afs_suser
158
159 #ifdef KERNEL
160 extern thread_t afs_global_owner;
161 /* simple locks cannot be used since sleep can happen at any time */
162 #ifdef AFS_DARWIN80_ENV
163 /* mach locks still don't have an exported try, but we are forced to use them */
164 extern lck_mtx_t  *afs_global_lock;
165 #define AFS_GLOCK() \
166     do { \
167         osi_Assert(afs_global_owner != current_thread()); \
168         lck_mtx_lock(afs_global_lock); \
169         osi_Assert(afs_global_owner == 0); \
170         afs_global_owner = current_thread(); \
171     } while (0)
172 #define AFS_GUNLOCK() \
173     do { \
174         osi_Assert(afs_global_owner == current_thread()); \
175         afs_global_owner = 0; \
176         lck_mtx_unlock(afs_global_lock); \
177     } while(0)
178 #else
179 /* Should probably use mach locks rather than bsd locks, since we use the
180    mach thread control api's elsewhere (mach locks not used for consistency
181    with rx, since rx needs lock_write_try() in order to use mach locks
182  */
183 extern struct lock__bsd__ afs_global_lock;
184 #define AFS_GLOCK() \
185     do { \
186         lockmgr(&afs_global_lock, LK_EXCLUSIVE, 0, current_proc()); \
187         osi_Assert(afs_global_owner == 0); \
188         afs_global_owner = current_thread(); \
189     } while (0)
190 #define AFS_GUNLOCK() \
191     do { \
192         osi_Assert(afs_global_owner == current_thread()); \
193         afs_global_owner = 0; \
194         lockmgr(&afs_global_lock, LK_RELEASE, 0, current_proc()); \
195     } while(0)
196 #endif
197 #define ISAFS_GLOCK() (afs_global_owner == current_thread())
198
199 #define SPLVAR
200 #define NETPRI
201 #define USERPRI
202 #if 0
203 #undef SPLVAR
204 #define SPLVAR int x;
205 #undef NETPRI
206 #define NETPRI x=splnet();
207 #undef USERPRI
208 #define USERPRI splx(x);
209 #endif
210
211 #define AFS_APPL_UFS_CACHE 1
212 #define AFS_APPL_HFS_CACHE 2
213
214 extern ino_t VnodeToIno(vnode_t avp);
215 extern dev_t VnodeToDev(vnode_t vp);
216 extern int igetinode(mount_t vfsp, dev_t dev , ino_t inode, vnode_t *vpp,
217               struct vattr *va, int *perror);
218
219 #define osi_curproc() current_proc()
220
221 /* FIXME */
222 #define osi_curcred() &afs_osi_cred 
223
224 #ifdef AFS_DARWIN80_ENV
225 uio_t afsio_darwin_partialcopy(uio_t auio, int size);
226
227 #define uprintf printf
228 #endif
229
230 #ifndef AFS_DARWIN80_ENV
231 #define ifaddr_address_family(x) (x)->ifa_addr->sa_family
232 #define ifaddr_address(x, y, z) memcpy(y, (x)->ifa_addr, z)
233 #define ifaddr_netmask(x, y, z) memcpy(y, (x)->ifa_netmask, z)
234 #define ifaddr_dstaddress(x, y, z) memcpy(y, (x)->ifa_dstaddr, z)
235 #define ifaddr_ifnet(x) (x?(x)->ifa_ifp:0)
236 #define ifnet_flags(x) (x?(x)->if_flags:0)
237 #define ifnet_metric(x) (x?(x)->if_data.ifi_metric:0)
238 /*#define ifnet_mtu(x) (x)->if_mtu*/
239 #define ifaddr_withnet(x) ifa_ifwithnet(x)
240 #endif
241
242 #endif /* KERNEL */
243
244 #endif /* _OSI_MACHDEP_H_ */