netbsd32_compat_30.c revision 1.2 1 1.2 christos /* $NetBSD: netbsd32_compat_30.c,v 1.2 2005/08/19 04:24:38 christos 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.2 christos __KERNEL_RCSID(0, "$NetBSD: netbsd32_compat_30.c,v 1.2 2005/08/19 04:24:38 christos Exp $");
33 1.1 christos
34 1.1 christos #if defined(_KERNEL_OPT)
35 1.1 christos #include "opt_ktrace.h"
36 1.1 christos #endif
37 1.1 christos
38 1.1 christos #include <sys/param.h>
39 1.1 christos #include <sys/systm.h>
40 1.1 christos #include <sys/malloc.h>
41 1.1 christos #include <sys/mount.h>
42 1.1 christos #include <sys/socket.h>
43 1.1 christos #include <sys/socketvar.h>
44 1.1 christos #include <sys/stat.h>
45 1.1 christos #include <sys/time.h>
46 1.1 christos #include <sys/ktrace.h>
47 1.1 christos #include <sys/resourcevar.h>
48 1.1 christos #include <sys/vnode.h>
49 1.1 christos #include <sys/file.h>
50 1.1 christos #include <sys/filedesc.h>
51 1.1 christos #include <sys/namei.h>
52 1.1 christos #include <sys/sa.h>
53 1.1 christos #include <sys/statvfs.h>
54 1.1 christos #include <sys/syscallargs.h>
55 1.1 christos #include <sys/proc.h>
56 1.2 christos #include <sys/dirent.h>
57 1.1 christos
58 1.1 christos #include <compat/netbsd32/netbsd32.h>
59 1.1 christos #include <compat/netbsd32/netbsd32_syscallargs.h>
60 1.1 christos #include <compat/netbsd32/netbsd32_conv.h>
61 1.1 christos
62 1.1 christos
63 1.1 christos int
64 1.1 christos 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.1 christos struct 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.1 christos struct proc *p = l->l_proc;
78 1.1 christos
79 1.1 christos /* getvnode() will use the descriptor for us */
80 1.1 christos if ((error = getvnode(p->p_fd, SCARG(uap, fd), &fp)) != 0)
81 1.1 christos return (error);
82 1.1 christos if ((fp->f_flag & FREAD) == 0) {
83 1.1 christos error = EBADF;
84 1.1 christos goto out;
85 1.1 christos }
86 1.1 christos buf = malloc(SCARG(uap, count), M_TEMP, M_WAITOK);
87 1.2 christos error = vn_readdir(fp, buf,
88 1.1 christos UIO_SYSSPACE, SCARG(uap, count), &done, p, 0, 0);
89 1.1 christos if (error == 0) {
90 1.1 christos *retval = netbsd32_to_dirent12(buf, done);
91 1.1 christos error = copyout(buf, NETBSD32PTR64(SCARG(uap, buf)), *retval);
92 1.1 christos }
93 1.1 christos free(buf, M_TEMP);
94 1.1 christos out:
95 1.1 christos FILE_UNUSE(fp, p);
96 1.1 christos return (error);
97 1.1 christos }
98 1.1 christos
99 1.1 christos int
100 1.1 christos netbsd32___stat13(l, v, retval)
101 1.1 christos struct lwp *l;
102 1.1 christos void *v;
103 1.1 christos register_t *retval;
104 1.1 christos {
105 1.1 christos struct netbsd32___stat13_args /* {
106 1.1 christos syscallarg(const netbsd32_charp) path;
107 1.1 christos syscallarg(netbsd32_stat13p_t) ub;
108 1.1 christos } */ *uap = v;
109 1.2 christos struct netbsd32_stat13 sb32;
110 1.1 christos struct stat sb;
111 1.1 christos int error;
112 1.1 christos struct nameidata nd;
113 1.1 christos caddr_t sg;
114 1.1 christos const char *path;
115 1.1 christos struct proc *p = l->l_proc;
116 1.1 christos
117 1.1 christos path = (char *)NETBSD32PTR64(SCARG(uap, path));
118 1.1 christos sg = stackgap_init(p, 0);
119 1.1 christos CHECK_ALT_EXIST(p, &sg, path);
120 1.1 christos
121 1.1 christos NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF, UIO_USERSPACE, path, p);
122 1.1 christos if ((error = namei(&nd)) != 0)
123 1.1 christos return (error);
124 1.1 christos error = vn_stat(nd.ni_vp, &sb, p);
125 1.1 christos vput(nd.ni_vp);
126 1.1 christos if (error)
127 1.1 christos return (error);
128 1.1 christos netbsd32_from___stat13(&sb, &sb32);
129 1.1 christos error = copyout(&sb32, (caddr_t)NETBSD32PTR64(SCARG(uap, ub)),
130 1.1 christos sizeof(sb32));
131 1.1 christos return (error);
132 1.1 christos }
133 1.1 christos
134 1.1 christos int
135 1.1 christos netbsd32___fstat13(l, v, retval)
136 1.1 christos struct lwp *l;
137 1.1 christos void *v;
138 1.1 christos register_t *retval;
139 1.1 christos {
140 1.1 christos struct netbsd32___fstat13_args /* {
141 1.1 christos syscallarg(int) fd;
142 1.1 christos syscallarg(netbsd32_stat13p_t) sb;
143 1.1 christos } */ *uap = v;
144 1.1 christos int fd = SCARG(uap, fd);
145 1.1 christos struct proc *p = l->l_proc;
146 1.1 christos struct filedesc *fdp = p->p_fd;
147 1.1 christos struct file *fp;
148 1.2 christos struct netbsd32_stat13 sb32;
149 1.1 christos struct stat ub;
150 1.1 christos int error = 0;
151 1.1 christos
152 1.1 christos if ((fp = fd_getfile(fdp, fd)) == NULL)
153 1.1 christos return (EBADF);
154 1.1 christos
155 1.1 christos FILE_USE(fp);
156 1.1 christos error = (*fp->f_ops->fo_stat)(fp, &ub, p);
157 1.1 christos FILE_UNUSE(fp, p);
158 1.1 christos
159 1.1 christos if (error == 0) {
160 1.1 christos netbsd32_from___stat13(&ub, &sb32);
161 1.1 christos error = copyout(&sb32, (caddr_t)NETBSD32PTR64(SCARG(uap, sb)),
162 1.1 christos sizeof(sb32));
163 1.1 christos }
164 1.1 christos return (error);
165 1.1 christos }
166 1.1 christos
167 1.1 christos int
168 1.1 christos netbsd32___lstat13(l, v, retval)
169 1.1 christos struct lwp *l;
170 1.1 christos void *v;
171 1.1 christos register_t *retval;
172 1.1 christos {
173 1.1 christos struct netbsd32___lstat13_args /* {
174 1.1 christos syscallarg(const netbsd32_charp) path;
175 1.1 christos syscallarg(netbsd32_stat13p_t) ub;
176 1.1 christos } */ *uap = v;
177 1.2 christos struct netbsd32_stat13 sb32;
178 1.1 christos struct stat sb;
179 1.1 christos int error;
180 1.1 christos struct nameidata nd;
181 1.1 christos caddr_t sg;
182 1.1 christos const char *path;
183 1.1 christos struct proc *p = l->l_proc;
184 1.1 christos
185 1.1 christos path = (char *)NETBSD32PTR64(SCARG(uap, path));
186 1.1 christos sg = stackgap_init(p, 0);
187 1.1 christos CHECK_ALT_EXIST(p, &sg, path);
188 1.1 christos
189 1.1 christos NDINIT(&nd, LOOKUP, NOFOLLOW | LOCKLEAF, UIO_USERSPACE, path, p);
190 1.1 christos if ((error = namei(&nd)) != 0)
191 1.1 christos return (error);
192 1.1 christos error = vn_stat(nd.ni_vp, &sb, p);
193 1.1 christos vput(nd.ni_vp);
194 1.1 christos if (error)
195 1.1 christos return (error);
196 1.1 christos netbsd32_from___stat13(&sb, &sb32);
197 1.1 christos error = copyout(&sb32, (caddr_t)NETBSD32PTR64(SCARG(uap, ub)),
198 1.1 christos sizeof(sb32));
199 1.1 christos return (error);
200 1.1 christos }
201