netbsd32_compat_12.c revision 1.10.2.5 1 /* $NetBSD: netbsd32_compat_12.c,v 1.10.2.5 2002/05/29 21:32:48 nathanw Exp $ */
2
3 /*
4 * Copyright (c) 1998, 2001 Matthew R. Green
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. The name of the author may not be used to endorse or promote products
16 * derived from this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
23 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
25 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 * SUCH DAMAGE.
29 */
30
31 #include <sys/cdefs.h>
32 __KERNEL_RCSID(0, "$NetBSD: netbsd32_compat_12.c,v 1.10.2.5 2002/05/29 21:32:48 nathanw Exp $");
33
34 #if defined(_KERNEL_OPT)
35 #include "opt_compat_netbsd.h"
36 #endif
37
38 #include <sys/param.h>
39 #include <sys/systm.h>
40 #include <sys/mount.h>
41 #include <sys/mman.h>
42 #include <sys/proc.h>
43 #include <sys/stat.h>
44 #include <sys/swap.h>
45 #include <sys/sa.h>
46 #include <sys/syscallargs.h>
47
48 #include <compat/netbsd32/netbsd32.h>
49 #include <compat/netbsd32/netbsd32_syscallargs.h>
50
51 static void netbsd32_stat12_to_netbsd32 __P((struct stat12 *,
52 struct netbsd32_stat12 *));
53
54 /* for use with {,fl}stat() */
55 static void
56 netbsd32_stat12_to_netbsd32(sp12, sp32)
57 struct stat12 *sp12;
58 struct netbsd32_stat12 *sp32;
59 {
60
61 sp32->st_dev = sp12->st_dev;
62 sp32->st_ino = sp12->st_ino;
63 sp32->st_mode = sp12->st_mode;
64 sp32->st_nlink = sp12->st_nlink;
65 sp32->st_uid = sp12->st_uid;
66 sp32->st_gid = sp12->st_gid;
67 sp32->st_rdev = sp12->st_rdev;
68 if (sp12->st_size < (quad_t)1 << 32)
69 sp32->st_size = sp12->st_size;
70 else
71 sp32->st_size = -2;
72 sp32->st_atimespec.tv_sec = sp12->st_atimespec.tv_sec;
73 sp32->st_atimespec.tv_nsec = sp12->st_atimespec.tv_nsec;
74 sp32->st_mtimespec.tv_sec = sp12->st_mtimespec.tv_sec;
75 sp32->st_mtimespec.tv_nsec = sp12->st_mtimespec.tv_nsec;
76 sp32->st_ctimespec.tv_sec = sp12->st_ctimespec.tv_sec;
77 sp32->st_ctimespec.tv_nsec = sp12->st_ctimespec.tv_nsec;
78 sp32->st_blocks = sp12->st_blocks;
79 sp32->st_blksize = sp12->st_blksize;
80 sp32->st_flags = sp12->st_flags;
81 sp32->st_gen = sp12->st_gen;
82 }
83
84 int
85 compat_12_netbsd32_reboot(p, v, retval)
86 struct proc *p;
87 void *v;
88 register_t *retval;
89 {
90 struct compat_12_netbsd32_reboot_args /* {
91 syscallarg(int) opt;
92 } */ *uap = v;
93 struct compat_12_sys_reboot_args ua;
94
95 NETBSD32TO64_UAP(opt);
96 return (compat_12_sys_reboot(p, &ua, retval));
97 }
98
99 int
100 compat_12_netbsd32_msync(p, v, retval)
101 struct proc *p;
102 void *v;
103 register_t *retval;
104 {
105 struct compat_12_netbsd32_msync_args /* {
106 syscallarg(netbsd32_caddr_t) addr;
107 syscallarg(netbsd32_size_t) len;
108 } */ *uap = v;
109 struct sys___msync13_args ua;
110
111 NETBSD32TOX64_UAP(addr, caddr_t);
112 NETBSD32TOX_UAP(len, size_t);
113 SCARG(&ua, flags) = MS_SYNC | MS_INVALIDATE;
114 return (sys___msync13(p, &ua, retval));
115 }
116
117 int
118 compat_12_netbsd32_oswapon(p, v, retval)
119 struct proc *p;
120 void *v;
121 register_t *retval;
122 {
123 struct compat_12_netbsd32_oswapon_args /* {
124 syscallarg(const netbsd32_charp) name;
125 } */ *uap = v;
126 struct sys_swapctl_args ua;
127
128 SCARG(&ua, cmd) = SWAP_ON;
129 SCARG(&ua, arg) = (void *)(u_long)SCARG(uap, name);
130 SCARG(&ua, misc) = 0; /* priority */
131 return (sys_swapctl(p, &ua, retval));
132 }
133
134 int
135 compat_12_netbsd32_stat12(p, v, retval)
136 struct proc *p;
137 void *v;
138 register_t *retval;
139 {
140 struct compat_12_netbsd32_stat12_args /* {
141 syscallarg(const netbsd32_charp) path;
142 syscallarg(netbsd32_stat12p_t) ub;
143 } */ *uap = v;
144 struct netbsd32_stat12 *sp32, sb32;
145 struct stat12 sb12;
146 struct stat12 *sp12 = &sb12;
147 struct compat_12_sys_stat_args ua;
148 caddr_t sg;
149 int rv;
150
151 NETBSD32TOP_UAP(path, const char);
152 SCARG(&ua, ub) = &sb12;
153 sg = stackgap_init(p, 0);
154 CHECK_ALT_EXIST(p, &sg, SCARG(&ua, path));
155
156 rv = compat_12_sys_stat(p, &ua, retval);
157 if (rv)
158 return (rv);
159
160 sp32 = (struct netbsd32_stat12 *)(u_long)SCARG(uap, ub);
161 netbsd32_stat12_to_netbsd32(sp12, &sb32);
162
163 return (copyout(&sb32, sp32, sizeof sb32));
164 }
165
166 int
167 compat_12_netbsd32_fstat12(p, v, retval)
168 struct proc *p;
169 void *v;
170 register_t *retval;
171 {
172 struct compat_12_netbsd32_fstat12_args /* {
173 syscallarg(int) fd;
174 syscallarg(netbsd32_stat12p_t) sb;
175 } */ *uap = v;
176 struct netbsd32_stat12 *sp32, sb32;
177 struct stat12 sb12;
178 struct stat12 *sp12 = &sb12;
179 struct compat_12_sys_fstat_args ua;
180 int rv;
181
182 NETBSD32TO64_UAP(fd);
183 SCARG(&ua, sb) = &sb12;
184 rv = compat_12_sys_fstat(p, &ua, retval);
185 if (rv)
186 return (rv);
187
188 sp32 = (struct netbsd32_stat12 *)(u_long)SCARG(uap, sb);
189 netbsd32_stat12_to_netbsd32(sp12, &sb32);
190
191 return (copyout(&sb32, sp32, sizeof sb32));
192 }
193
194 int
195 compat_12_netbsd32_lstat12(p, v, retval)
196 struct proc *p;
197 void *v;
198 register_t *retval;
199 {
200 struct compat_12_netbsd32_lstat12_args /* {
201 syscallarg(const netbsd32_charp) path;
202 syscallarg(netbsd32_stat12p_t) ub;
203 } */ *uap = v;
204 struct netbsd32_stat12 *sp32, sb32;
205 struct stat12 sb12;
206 struct stat12 *sp12 = &sb12;
207 struct compat_12_sys_lstat_args ua;
208 caddr_t sg;
209 int rv;
210
211 NETBSD32TOP_UAP(path, const char);
212 SCARG(&ua, ub) = &sb12;
213 sg = stackgap_init(p, 0);
214 CHECK_ALT_EXIST(p, &sg, SCARG(&ua, path));
215
216 rv = compat_12_sys_lstat(p, &ua, retval);
217 if (rv)
218 return (rv);
219
220 sp32 = (struct netbsd32_stat12 *)(u_long)SCARG(uap, ub);
221 netbsd32_stat12_to_netbsd32(sp12, &sb32);
222
223 return (copyout(&sb32, sp32, sizeof sb32));
224 }
225
226 int
227 compat_12_netbsd32_getdirentries(p, v, retval)
228 struct proc *p;
229 void *v;
230 register_t *retval;
231 {
232 struct compat_12_netbsd32_getdirentries_args /* {
233 syscallarg(int) fd;
234 syscallarg(netbsd32_charp) buf;
235 syscallarg(u_int) count;
236 syscallarg(netbsd32_longp) basep;
237 } */ *uap = v;
238 struct compat_12_sys_getdirentries_args ua;
239
240 NETBSD32TO64_UAP(fd);
241 NETBSD32TOP_UAP(buf, char);
242 NETBSD32TO64_UAP(count);
243 NETBSD32TOP_UAP(basep, long);
244
245 return (compat_12_sys_getdirentries(p, &ua, retval));
246 }
247