netbsd32_compat_30.c revision 1.21 1 1.21 dsl /* $NetBSD: netbsd32_compat_30.c,v 1.21 2007/04/30 08:32:15 dsl Exp $ */
2 1.1 christos
3 1.1 christos /*
4 1.1 christos * Copyright (c) 1998, 2001 Matthew R. Green
5 1.1 christos * All rights reserved.
6 1.1 christos *
7 1.1 christos * Redistribution and use in source and binary forms, with or without
8 1.1 christos * modification, are permitted provided that the following conditions
9 1.1 christos * are met:
10 1.1 christos * 1. Redistributions of source code must retain the above copyright
11 1.1 christos * notice, this list of conditions and the following disclaimer.
12 1.1 christos * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 christos * notice, this list of conditions and the following disclaimer in the
14 1.1 christos * documentation and/or other materials provided with the distribution.
15 1.1 christos * 3. The name of the author may not be used to endorse or promote products
16 1.1 christos * derived from this software without specific prior written permission.
17 1.1 christos *
18 1.1 christos * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 1.1 christos * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 1.1 christos * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 1.1 christos * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 1.1 christos * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
23 1.1 christos * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24 1.1 christos * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
25 1.1 christos * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26 1.1 christos * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 1.1 christos * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 1.1 christos * SUCH DAMAGE.
29 1.1 christos */
30 1.1 christos
31 1.1 christos #include <sys/cdefs.h>
32 1.21 dsl __KERNEL_RCSID(0, "$NetBSD: netbsd32_compat_30.c,v 1.21 2007/04/30 08:32:15 dsl Exp $");
33 1.9 martin
34 1.9 martin #include "opt_nfsserver.h"
35 1.1 christos
36 1.1 christos #include <sys/param.h>
37 1.1 christos #include <sys/systm.h>
38 1.1 christos #include <sys/malloc.h>
39 1.1 christos #include <sys/mount.h>
40 1.1 christos #include <sys/socket.h>
41 1.1 christos #include <sys/socketvar.h>
42 1.1 christos #include <sys/stat.h>
43 1.1 christos #include <sys/time.h>
44 1.1 christos #include <sys/ktrace.h>
45 1.1 christos #include <sys/resourcevar.h>
46 1.1 christos #include <sys/vnode.h>
47 1.1 christos #include <sys/file.h>
48 1.1 christos #include <sys/filedesc.h>
49 1.1 christos #include <sys/namei.h>
50 1.1 christos #include <sys/statvfs.h>
51 1.1 christos #include <sys/syscallargs.h>
52 1.1 christos #include <sys/proc.h>
53 1.2 christos #include <sys/dirent.h>
54 1.7 elad #include <sys/kauth.h>
55 1.18 dsl #include <sys/vfs_syscalls.h>
56 1.1 christos
57 1.1 christos #include <compat/netbsd32/netbsd32.h>
58 1.1 christos #include <compat/netbsd32/netbsd32_syscallargs.h>
59 1.1 christos #include <compat/netbsd32/netbsd32_conv.h>
60 1.9 martin #include <compat/sys/mount.h>
61 1.1 christos
62 1.1 christos
63 1.1 christos int
64 1.14 cube compat_30_netbsd32_getdents(l, v, retval)
65 1.1 christos struct lwp *l;
66 1.1 christos void *v;
67 1.1 christos register_t *retval;
68 1.1 christos {
69 1.14 cube struct compat_30_netbsd32_getdents_args /* {
70 1.1 christos syscallarg(int) fd;
71 1.1 christos syscallarg(netbsd32_charp) buf;
72 1.1 christos syscallarg(netbsd32_size_t) count;
73 1.1 christos } */ *uap = v;
74 1.1 christos struct file *fp;
75 1.1 christos int error, done;
76 1.1 christos char *buf;
77 1.8 simonb netbsd32_size_t count;
78 1.1 christos struct proc *p = l->l_proc;
79 1.1 christos
80 1.8 simonb /* Limit the size on any kernel buffers used by VOP_READDIR */
81 1.8 simonb count = min(MAXBSIZE, SCARG(uap, count));
82 1.8 simonb
83 1.1 christos /* getvnode() will use the descriptor for us */
84 1.1 christos if ((error = getvnode(p->p_fd, SCARG(uap, fd), &fp)) != 0)
85 1.1 christos return (error);
86 1.1 christos if ((fp->f_flag & FREAD) == 0) {
87 1.1 christos error = EBADF;
88 1.1 christos goto out;
89 1.1 christos }
90 1.8 simonb buf = malloc(count, M_TEMP, M_WAITOK);
91 1.8 simonb error = vn_readdir(fp, buf, UIO_SYSSPACE, count, &done, l, 0, 0);
92 1.1 christos if (error == 0) {
93 1.1 christos *retval = netbsd32_to_dirent12(buf, done);
94 1.19 dsl error = copyout(buf, SCARG_P32(uap, buf), *retval);
95 1.1 christos }
96 1.1 christos free(buf, M_TEMP);
97 1.1 christos out:
98 1.4 christos FILE_UNUSE(fp, l);
99 1.1 christos return (error);
100 1.1 christos }
101 1.1 christos
102 1.1 christos int
103 1.14 cube compat_30_netbsd32___stat13(l, v, retval)
104 1.1 christos struct lwp *l;
105 1.1 christos void *v;
106 1.1 christos register_t *retval;
107 1.1 christos {
108 1.14 cube struct compat_30_netbsd32___stat13_args /* {
109 1.1 christos syscallarg(const netbsd32_charp) path;
110 1.1 christos syscallarg(netbsd32_stat13p_t) ub;
111 1.1 christos } */ *uap = v;
112 1.2 christos struct netbsd32_stat13 sb32;
113 1.1 christos struct stat sb;
114 1.1 christos int error;
115 1.1 christos const char *path;
116 1.1 christos
117 1.19 dsl path = SCARG_P32(uap, path);
118 1.1 christos
119 1.18 dsl error = do_sys_stat(l, path, FOLLOW, &sb);
120 1.1 christos if (error)
121 1.1 christos return (error);
122 1.1 christos netbsd32_from___stat13(&sb, &sb32);
123 1.19 dsl error = copyout(&sb32, SCARG_P32(uap, ub), sizeof(sb32));
124 1.1 christos return (error);
125 1.1 christos }
126 1.1 christos
127 1.1 christos int
128 1.14 cube compat_30_netbsd32___fstat13(l, v, retval)
129 1.1 christos struct lwp *l;
130 1.1 christos void *v;
131 1.1 christos register_t *retval;
132 1.1 christos {
133 1.14 cube struct compat_30_netbsd32___fstat13_args /* {
134 1.1 christos syscallarg(int) fd;
135 1.1 christos syscallarg(netbsd32_stat13p_t) sb;
136 1.1 christos } */ *uap = v;
137 1.1 christos int fd = SCARG(uap, fd);
138 1.1 christos struct proc *p = l->l_proc;
139 1.1 christos struct filedesc *fdp = p->p_fd;
140 1.1 christos struct file *fp;
141 1.2 christos struct netbsd32_stat13 sb32;
142 1.1 christos struct stat ub;
143 1.1 christos int error = 0;
144 1.1 christos
145 1.1 christos if ((fp = fd_getfile(fdp, fd)) == NULL)
146 1.1 christos return (EBADF);
147 1.1 christos
148 1.1 christos FILE_USE(fp);
149 1.4 christos error = (*fp->f_ops->fo_stat)(fp, &ub, l);
150 1.4 christos FILE_UNUSE(fp, l);
151 1.1 christos
152 1.1 christos if (error == 0) {
153 1.1 christos netbsd32_from___stat13(&ub, &sb32);
154 1.19 dsl error = copyout(&sb32, SCARG_P32(uap, sb), sizeof(sb32));
155 1.1 christos }
156 1.1 christos return (error);
157 1.1 christos }
158 1.1 christos
159 1.1 christos int
160 1.14 cube compat_30_netbsd32___lstat13(l, v, retval)
161 1.1 christos struct lwp *l;
162 1.1 christos void *v;
163 1.1 christos register_t *retval;
164 1.1 christos {
165 1.14 cube struct compat_30_netbsd32___lstat13_args /* {
166 1.1 christos syscallarg(const netbsd32_charp) path;
167 1.1 christos syscallarg(netbsd32_stat13p_t) ub;
168 1.1 christos } */ *uap = v;
169 1.2 christos struct netbsd32_stat13 sb32;
170 1.1 christos struct stat sb;
171 1.1 christos int error;
172 1.1 christos const char *path;
173 1.1 christos
174 1.19 dsl path = SCARG_P32(uap, path);
175 1.1 christos
176 1.18 dsl error = do_sys_stat(l, path, NOFOLLOW, &sb);
177 1.1 christos if (error)
178 1.1 christos return (error);
179 1.1 christos netbsd32_from___stat13(&sb, &sb32);
180 1.19 dsl error = copyout(&sb32, SCARG_P32(uap, ub), sizeof(sb32));
181 1.1 christos return (error);
182 1.1 christos }
183 1.6 cube
184 1.6 cube int
185 1.6 cube compat_30_netbsd32_fhstat(l, v, retval)
186 1.6 cube struct lwp *l;
187 1.6 cube void *v;
188 1.6 cube register_t *retval;
189 1.6 cube {
190 1.6 cube struct compat_30_netbsd32_fhstat_args /* {
191 1.6 cube syscallarg(const netbsd32_fhandlep_t) fhp;
192 1.19 dsl syscallarg(netbsd32_stat13p_t) sb;
193 1.6 cube } */ *uap = v;
194 1.6 cube struct stat sb;
195 1.6 cube struct netbsd32_stat13 sb32;
196 1.6 cube int error;
197 1.9 martin struct compat_30_fhandle fh;
198 1.6 cube struct mount *mp;
199 1.6 cube struct vnode *vp;
200 1.6 cube
201 1.6 cube /*
202 1.6 cube * Must be super user
203 1.6 cube */
204 1.15 elad if ((error = kauth_authorize_system(l->l_cred,
205 1.15 elad KAUTH_SYSTEM_FILEHANDLE, 0, NULL, NULL, NULL)))
206 1.6 cube return (error);
207 1.6 cube
208 1.19 dsl if ((error = copyin(SCARG_P32(uap, fhp), &fh, sizeof(fh))) != 0)
209 1.6 cube return (error);
210 1.6 cube
211 1.6 cube if ((mp = vfs_getvfs(&fh.fh_fsid)) == NULL)
212 1.6 cube return (ESTALE);
213 1.6 cube if (mp->mnt_op->vfs_fhtovp == NULL)
214 1.6 cube return EOPNOTSUPP;
215 1.9 martin if ((error = VFS_FHTOVP(mp, (struct fid*)&fh.fh_fid, &vp)))
216 1.6 cube return (error);
217 1.6 cube error = vn_stat(vp, &sb, l);
218 1.6 cube vput(vp);
219 1.6 cube if (error)
220 1.6 cube return (error);
221 1.6 cube netbsd32_from___stat13(&sb, &sb32);
222 1.19 dsl error = copyout(&sb32, SCARG_P32(uap, sb), sizeof(sb));
223 1.6 cube return (error);
224 1.6 cube }
225 1.9 martin
226 1.9 martin int
227 1.12 martin compat_30_netbsd32_fhstatvfs1(l, v, retval)
228 1.12 martin struct lwp *l;
229 1.12 martin void *v;
230 1.12 martin register_t *retval;
231 1.12 martin {
232 1.12 martin struct compat_30_netbsd32_fhstatvfs1_args /* {
233 1.12 martin syscallarg(const netbsd32_fhandlep_t) fhp;
234 1.12 martin syscallarg(netbsd32_statvfsp_t) buf;
235 1.12 martin syscallarg(int) flags;
236 1.12 martin } */ *uap = v;
237 1.12 martin struct statvfs *sbuf;
238 1.12 martin struct netbsd32_statvfs *s32;
239 1.12 martin int error;
240 1.12 martin
241 1.21 dsl sbuf = STATVFSBUF_GET();
242 1.21 dsl error = do_fhstatvfs(l, SCARG_P32(uap, fhp), FHANDLE_SIZE_COMPAT, sbuf,
243 1.21 dsl SCARG(uap, flags));
244 1.21 dsl
245 1.21 dsl if (error != 0) {
246 1.21 dsl s32 = malloc(sizeof *s32, M_TEMP, M_WAITOK);
247 1.21 dsl netbsd32_from_statvfs(sbuf, s32);
248 1.21 dsl error = copyout(s32, SCARG_P32(uap, buf), sizeof *s32);
249 1.21 dsl free(s32, M_TEMP);
250 1.21 dsl }
251 1.21 dsl STATVFSBUF_PUT(sbuf);
252 1.12 martin
253 1.12 martin return (error);
254 1.12 martin }
255 1.12 martin
256 1.12 martin int
257 1.9 martin compat_30_netbsd32_socket(l, v, retval)
258 1.9 martin struct lwp *l;
259 1.9 martin void *v;
260 1.9 martin register_t *retval;
261 1.9 martin {
262 1.9 martin struct compat_30_netbsd32_socket_args /* {
263 1.9 martin syscallarg(int) domain;
264 1.9 martin syscallarg(int) type;
265 1.9 martin syscallarg(int) protocol;
266 1.9 martin } */ *uap = v;
267 1.9 martin struct compat_30_sys_socket_args ua;
268 1.9 martin
269 1.9 martin NETBSD32TO64_UAP(domain);
270 1.9 martin NETBSD32TO64_UAP(type);
271 1.9 martin NETBSD32TO64_UAP(protocol);
272 1.9 martin return (compat_30_sys_socket(l, &ua, retval));
273 1.9 martin }
274 1.9 martin
275 1.9 martin int
276 1.9 martin compat_30_netbsd32_getfh(l, v, retval)
277 1.9 martin struct lwp *l;
278 1.9 martin void *v;
279 1.9 martin register_t *retval;
280 1.9 martin {
281 1.9 martin struct compat_30_netbsd32_getfh_args /* {
282 1.9 martin syscallarg(const netbsd32_charp) fname;
283 1.9 martin syscallarg(netbsd32_compat_30_fhandlep_t) fhp;
284 1.9 martin } */ *uap = v;
285 1.9 martin struct compat_30_sys_getfh_args ua;
286 1.9 martin
287 1.9 martin NETBSD32TOP_UAP(fname, const char);
288 1.9 martin NETBSD32TOP_UAP(fhp, struct compat_30_fhandle);
289 1.9 martin /* Lucky for us a fhandle_t doesn't change sizes */
290 1.9 martin return (compat_30_sys_getfh(l, &ua, retval));
291 1.9 martin }
292 1.12 martin
293 1.12 martin
294 1.12 martin int compat_30_netbsd32_sys___fhstat30(l, v, retval)
295 1.12 martin struct lwp *l;
296 1.12 martin void *v;
297 1.12 martin register_t *retval;
298 1.12 martin {
299 1.12 martin struct compat_30_netbsd32_sys___fhstat30_args /* {
300 1.12 martin syscallarg(const netbsd32_fhandlep_t) fhp;
301 1.12 martin syscallarg(netbsd32_statp_t) sb;
302 1.12 martin } */ *uap = v;
303 1.12 martin struct stat sb;
304 1.12 martin struct netbsd32_stat sb32;
305 1.12 martin int error;
306 1.12 martin
307 1.21 dsl error = do_fhstat(l, SCARG_P32(uap, fhp), FHANDLE_SIZE_COMPAT, &sb);
308 1.21 dsl if (error)
309 1.12 martin return error;
310 1.12 martin
311 1.12 martin netbsd32_from___stat30(&sb, &sb32);
312 1.21 dsl error = copyout(&sb32, SCARG_P32(uap, sb), sizeof(sb32));
313 1.12 martin return error;
314 1.12 martin }
315 1.12 martin
316 1.12 martin /*
317 1.12 martin * Open a file given a file handle.
318 1.12 martin *
319 1.12 martin * Check permissions, allocate an open file structure,
320 1.12 martin * and call the device open routine if any.
321 1.12 martin */
322 1.12 martin int
323 1.12 martin compat_30_netbsd32_fhopen(l, v, retval)
324 1.12 martin struct lwp *l;
325 1.12 martin void *v;
326 1.12 martin register_t *retval;
327 1.12 martin {
328 1.12 martin struct compat_30_netbsd32_fhopen_args /* {
329 1.12 martin syscallarg(const fhandle_t *) fhp;
330 1.12 martin syscallarg(int) flags;
331 1.12 martin } */ *uap = v;
332 1.12 martin struct compat_30_sys_fhopen_args ua;
333 1.12 martin
334 1.12 martin NETBSD32TOP_UAP(fhp, struct compat_30_fhandle);
335 1.12 martin NETBSD32TO64_UAP(flags);
336 1.12 martin return (compat_30_sys_fhopen(l, &ua, retval));
337 1.12 martin }
338