uipc_syscalls_43.c revision 1.24 1 1.24 christos /* $NetBSD: uipc_syscalls_43.c,v 1.24 2005/09/24 15:51:03 christos Exp $ */
2 1.1 christos
3 1.1 christos /*
4 1.1 christos * Copyright (c) 1982, 1986, 1989, 1990, 1993
5 1.1 christos * The Regents of the University of California. 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.22 agc * 3. Neither the name of the University nor the names of its contributors
16 1.1 christos * may be used to endorse or promote products derived from this software
17 1.1 christos * without specific prior written permission.
18 1.1 christos *
19 1.1 christos * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 1.1 christos * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 1.1 christos * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 1.1 christos * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 1.1 christos * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 1.1 christos * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 1.1 christos * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 1.1 christos * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 1.1 christos * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 1.1 christos * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 1.1 christos * SUCH DAMAGE.
30 1.1 christos *
31 1.1 christos * @(#)uipc_syscalls.c 8.4 (Berkeley) 2/21/94
32 1.1 christos */
33 1.17 lukem
34 1.17 lukem #include <sys/cdefs.h>
35 1.24 christos __KERNEL_RCSID(0, "$NetBSD: uipc_syscalls_43.c,v 1.24 2005/09/24 15:51:03 christos Exp $");
36 1.1 christos
37 1.1 christos #include <sys/param.h>
38 1.1 christos #include <sys/systm.h>
39 1.1 christos #include <sys/filedesc.h>
40 1.1 christos #include <sys/kernel.h>
41 1.1 christos #include <sys/proc.h>
42 1.1 christos #include <sys/file.h>
43 1.1 christos #include <sys/socket.h>
44 1.1 christos #include <sys/socketvar.h>
45 1.1 christos #include <sys/stat.h>
46 1.1 christos #include <sys/ioctl.h>
47 1.1 christos #include <sys/fcntl.h>
48 1.1 christos #include <sys/malloc.h>
49 1.1 christos #include <sys/syslog.h>
50 1.1 christos #include <sys/unistd.h>
51 1.1 christos #include <sys/resourcevar.h>
52 1.15 jdolecek #include <sys/mbuf.h> /* for MLEN */
53 1.24 christos #include <sys/protosw.h>
54 1.1 christos
55 1.1 christos #include <sys/mount.h>
56 1.19 thorpej #include <sys/sa.h>
57 1.1 christos #include <sys/syscallargs.h>
58 1.1 christos
59 1.24 christos #include <compat/sys/socket.h>
60 1.24 christos #include <net/if.h>
61 1.24 christos
62 1.15 jdolecek #include <compat/common/compat_util.h>
63 1.24 christos #include <compat/sys/socket.h>
64 1.15 jdolecek
65 1.15 jdolecek #include <uvm/uvm_extern.h>
66 1.15 jdolecek
67 1.15 jdolecek /*
68 1.15 jdolecek * Following 4.3 syscalls were not versioned, even through they should
69 1.15 jdolecek * have been:
70 1.15 jdolecek * connect(2), bind(2), sendto(2)
71 1.15 jdolecek */
72 1.15 jdolecek
73 1.15 jdolecek static int compat_43_sa_put(caddr_t);
74 1.15 jdolecek
75 1.1 christos int
76 1.19 thorpej compat_43_sys_accept(struct lwp *l, void *v, register_t *retval)
77 1.2 thorpej {
78 1.15 jdolecek struct compat_43_sys_accept_args /* {
79 1.1 christos syscallarg(int) s;
80 1.1 christos syscallarg(caddr_t) name;
81 1.1 christos syscallarg(int *) anamelen;
82 1.2 thorpej } */ *uap = v;
83 1.1 christos int error;
84 1.1 christos
85 1.19 thorpej if ((error = sys_accept(l, v, retval)) != 0)
86 1.1 christos return error;
87 1.1 christos
88 1.15 jdolecek if (SCARG(uap, name)
89 1.15 jdolecek && (error = compat_43_sa_put(SCARG(uap, name))))
90 1.15 jdolecek return (error);
91 1.1 christos
92 1.1 christos return 0;
93 1.1 christos }
94 1.1 christos
95 1.1 christos int
96 1.19 thorpej compat_43_sys_getpeername(struct lwp *l, void *v, register_t *retval)
97 1.2 thorpej {
98 1.15 jdolecek struct compat_43_sys_getpeername_args /* {
99 1.1 christos syscallarg(int) fdes;
100 1.1 christos syscallarg(caddr_t) asa;
101 1.1 christos syscallarg(int *) alen;
102 1.2 thorpej } */ *uap = v;
103 1.1 christos
104 1.1 christos int error;
105 1.1 christos
106 1.19 thorpej if ((error = sys_getpeername(l, v, retval)) != 0)
107 1.1 christos return error;
108 1.1 christos
109 1.15 jdolecek if ((error = compat_43_sa_put(SCARG(uap, asa))))
110 1.15 jdolecek return (error);
111 1.1 christos
112 1.1 christos return 0;
113 1.1 christos }
114 1.1 christos
115 1.1 christos int
116 1.19 thorpej compat_43_sys_getsockname(struct lwp *l, void *v, register_t *retval)
117 1.2 thorpej {
118 1.15 jdolecek struct compat_43_sys_getsockname_args /* {
119 1.1 christos syscallarg(int) fdes;
120 1.1 christos syscallarg(caddr_t) asa;
121 1.1 christos syscallarg(int *) alen;
122 1.2 thorpej } */ *uap = v;
123 1.1 christos int error;
124 1.1 christos
125 1.19 thorpej if ((error = sys_getsockname(l, v, retval)) != 0)
126 1.1 christos return error;
127 1.1 christos
128 1.15 jdolecek if ((error = compat_43_sa_put(SCARG(uap, asa))))
129 1.15 jdolecek return (error);
130 1.1 christos
131 1.1 christos return 0;
132 1.1 christos }
133 1.1 christos
134 1.1 christos int
135 1.19 thorpej compat_43_sys_recv(struct lwp *l, void *v, register_t *retval)
136 1.2 thorpej {
137 1.11 augustss struct compat_43_sys_recv_args /* {
138 1.1 christos syscallarg(int) s;
139 1.1 christos syscallarg(caddr_t) buf;
140 1.1 christos syscallarg(int) len;
141 1.1 christos syscallarg(int) flags;
142 1.2 thorpej } */ *uap = v;
143 1.14 jdolecek struct sys_recvfrom_args bra;
144 1.14 jdolecek
145 1.14 jdolecek SCARG(&bra, s) = SCARG(uap, s);
146 1.14 jdolecek SCARG(&bra, buf) = SCARG(uap, buf);
147 1.14 jdolecek SCARG(&bra, len) = (size_t) SCARG(uap, len);
148 1.14 jdolecek SCARG(&bra, flags) = SCARG(uap, flags);
149 1.14 jdolecek SCARG(&bra, from) = NULL;
150 1.14 jdolecek SCARG(&bra, fromlenaddr) = NULL;
151 1.1 christos
152 1.19 thorpej return (sys_recvfrom(l, &bra, retval));
153 1.1 christos }
154 1.1 christos
155 1.1 christos int
156 1.19 thorpej compat_43_sys_recvfrom(struct lwp *l, void *v, register_t *retval)
157 1.2 thorpej {
158 1.15 jdolecek struct compat_43_sys_recvfrom_args /* {
159 1.1 christos syscallarg(int) s;
160 1.1 christos syscallarg(caddr_t) buf;
161 1.1 christos syscallarg(size_t) len;
162 1.1 christos syscallarg(int) flags;
163 1.1 christos syscallarg(caddr_t) from;
164 1.1 christos syscallarg(int *) fromlenaddr;
165 1.2 thorpej } */ *uap = v;
166 1.15 jdolecek int error;
167 1.15 jdolecek
168 1.19 thorpej if ((error = sys_recvfrom(l, v, retval)))
169 1.15 jdolecek return (error);
170 1.15 jdolecek
171 1.15 jdolecek if (SCARG(uap, from) && (error = compat_43_sa_put(SCARG(uap, from))))
172 1.15 jdolecek return (error);
173 1.1 christos
174 1.15 jdolecek return (0);
175 1.1 christos }
176 1.1 christos
177 1.1 christos /*
178 1.15 jdolecek * Old recvmsg. Arrange necessary structures, calls generic code and
179 1.15 jdolecek * adjusts results accordingly.
180 1.1 christos */
181 1.1 christos int
182 1.19 thorpej compat_43_sys_recvmsg(struct lwp *l, void *v, register_t *retval)
183 1.2 thorpej {
184 1.11 augustss struct compat_43_sys_recvmsg_args /* {
185 1.1 christos syscallarg(int) s;
186 1.1 christos syscallarg(struct omsghdr *) msg;
187 1.1 christos syscallarg(int) flags;
188 1.2 thorpej } */ *uap = v;
189 1.19 thorpej struct proc *p = l->l_proc;
190 1.15 jdolecek struct omsghdr omsg;
191 1.1 christos struct msghdr msg;
192 1.1 christos struct iovec aiov[UIO_SMALLIOV], *iov;
193 1.1 christos int error;
194 1.1 christos
195 1.15 jdolecek error = copyin((caddr_t)SCARG(uap, msg), (caddr_t)&omsg,
196 1.5 christos sizeof (struct omsghdr));
197 1.5 christos if (error)
198 1.1 christos return (error);
199 1.15 jdolecek if ((u_int)omsg.msg_iovlen > UIO_SMALLIOV) {
200 1.15 jdolecek if ((u_int)omsg.msg_iovlen > IOV_MAX)
201 1.1 christos return (EMSGSIZE);
202 1.15 jdolecek iov = malloc(sizeof(struct iovec) * omsg.msg_iovlen,
203 1.15 jdolecek M_IOV, M_WAITOK);
204 1.1 christos } else
205 1.1 christos iov = aiov;
206 1.23 perry
207 1.15 jdolecek error = copyin((caddr_t)omsg.msg_iov, (caddr_t)iov,
208 1.15 jdolecek (unsigned)(omsg.msg_iovlen * sizeof (struct iovec)));
209 1.5 christos if (error)
210 1.1 christos goto done;
211 1.15 jdolecek
212 1.15 jdolecek msg.msg_name = omsg.msg_name;
213 1.15 jdolecek msg.msg_namelen = omsg.msg_namelen;
214 1.15 jdolecek msg.msg_iovlen = omsg.msg_iovlen;
215 1.15 jdolecek msg.msg_iov = iov;
216 1.15 jdolecek msg.msg_flags = SCARG(uap, flags);
217 1.15 jdolecek
218 1.15 jdolecek /*
219 1.15 jdolecek * If caller passes accrights, arrange things for generic code to
220 1.15 jdolecek * DTRT.
221 1.15 jdolecek */
222 1.15 jdolecek if (omsg.msg_accrights && omsg.msg_accrightslen) {
223 1.18 christos caddr_t sg = stackgap_init(p, 0);
224 1.15 jdolecek struct cmsg *ucmsg;
225 1.15 jdolecek
226 1.15 jdolecek /* it was this way in 4.4BSD */
227 1.15 jdolecek if ((u_int) omsg.msg_accrightslen > MLEN)
228 1.15 jdolecek return (EINVAL);
229 1.15 jdolecek
230 1.18 christos ucmsg = stackgap_alloc(p, &sg, CMSG_SPACE(omsg.msg_accrightslen));
231 1.15 jdolecek if (ucmsg == NULL)
232 1.16 jdolecek return (EMSGSIZE);
233 1.15 jdolecek
234 1.15 jdolecek msg.msg_control = ucmsg;
235 1.15 jdolecek msg.msg_controllen = CMSG_SPACE(omsg.msg_accrightslen);
236 1.15 jdolecek } else {
237 1.15 jdolecek msg.msg_control = NULL;
238 1.15 jdolecek msg.msg_controllen = 0;
239 1.15 jdolecek }
240 1.15 jdolecek
241 1.21 fvdl error = recvit(p, SCARG(uap, s), &msg,
242 1.13 jdolecek (caddr_t)&SCARG(uap, msg)->msg_namelen, retval);
243 1.1 christos
244 1.15 jdolecek /*
245 1.15 jdolecek * If there is any control information and it's SCM_RIGHTS,
246 1.15 jdolecek * pass it back to the program.
247 1.15 jdolecek */
248 1.15 jdolecek if (!error && omsg.msg_accrights && msg.msg_controllen > 0) {
249 1.15 jdolecek struct cmsghdr *cmsg;
250 1.15 jdolecek
251 1.16 jdolecek /* safe - msg.msg_controllen set by kernel */
252 1.15 jdolecek cmsg = (struct cmsghdr *) malloc(msg.msg_controllen,
253 1.15 jdolecek M_TEMP, M_WAITOK);
254 1.23 perry
255 1.15 jdolecek error = copyin(msg.msg_control, cmsg, msg.msg_controllen);
256 1.15 jdolecek if (error) {
257 1.15 jdolecek free(cmsg, M_TEMP);
258 1.15 jdolecek return (error);
259 1.15 jdolecek }
260 1.15 jdolecek
261 1.15 jdolecek if (cmsg->cmsg_level != SOL_SOCKET
262 1.15 jdolecek || cmsg->cmsg_type != SCM_RIGHTS
263 1.15 jdolecek || copyout(CMSG_DATA(cmsg), omsg.msg_accrights,
264 1.15 jdolecek cmsg->cmsg_len)) {
265 1.15 jdolecek omsg.msg_accrightslen = 0;
266 1.15 jdolecek }
267 1.23 perry
268 1.15 jdolecek free(cmsg, M_TEMP);
269 1.15 jdolecek
270 1.15 jdolecek if (!error) {
271 1.15 jdolecek error = copyout(&cmsg->cmsg_len,
272 1.15 jdolecek &SCARG(uap, msg)->msg_accrightslen, sizeof(int));
273 1.15 jdolecek }
274 1.15 jdolecek }
275 1.15 jdolecek
276 1.15 jdolecek if (!error && omsg.msg_name) {
277 1.15 jdolecek int namelen;
278 1.15 jdolecek
279 1.15 jdolecek if ((error = copyin(&SCARG(uap, msg)->msg_namelen, &namelen, sizeof(int)) == 0)
280 1.15 jdolecek && namelen > 0)
281 1.15 jdolecek error = compat_43_sa_put(omsg.msg_name);
282 1.15 jdolecek }
283 1.15 jdolecek
284 1.1 christos done:
285 1.1 christos if (iov != aiov)
286 1.15 jdolecek free(iov, M_IOV);
287 1.1 christos return (error);
288 1.1 christos }
289 1.1 christos
290 1.1 christos int
291 1.19 thorpej compat_43_sys_send(struct lwp *l, void *v, register_t *retval)
292 1.2 thorpej {
293 1.11 augustss struct compat_43_sys_send_args /* {
294 1.1 christos syscallarg(int) s;
295 1.1 christos syscallarg(caddr_t) buf;
296 1.1 christos syscallarg(int) len;
297 1.1 christos syscallarg(int) flags;
298 1.2 thorpej } */ *uap = v;
299 1.14 jdolecek struct sys_sendto_args bsa;
300 1.14 jdolecek
301 1.14 jdolecek SCARG(&bsa, s) = SCARG(uap, s);
302 1.14 jdolecek SCARG(&bsa, buf) = SCARG(uap, buf);
303 1.14 jdolecek SCARG(&bsa, len) = SCARG(uap, len);
304 1.14 jdolecek SCARG(&bsa, flags) = SCARG(uap, flags);
305 1.14 jdolecek SCARG(&bsa, to) = NULL;
306 1.14 jdolecek SCARG(&bsa, tolen) = 0;
307 1.1 christos
308 1.19 thorpej return (sys_sendto(l, &bsa, retval));
309 1.1 christos }
310 1.1 christos
311 1.15 jdolecek /*
312 1.15 jdolecek * Old sendmsg. Arrange necessary structures, call generic code and
313 1.15 jdolecek * adjust the results accordingly for old code.
314 1.15 jdolecek */
315 1.1 christos int
316 1.19 thorpej compat_43_sys_sendmsg(struct lwp *l, void *v, register_t *retval)
317 1.2 thorpej {
318 1.11 augustss struct compat_43_sys_sendmsg_args /* {
319 1.1 christos syscallarg(int) s;
320 1.1 christos syscallarg(caddr_t) msg;
321 1.1 christos syscallarg(int) flags;
322 1.2 thorpej } */ *uap = v;
323 1.19 thorpej struct proc *p = l->l_proc;
324 1.15 jdolecek struct omsghdr omsg;
325 1.1 christos struct msghdr msg;
326 1.1 christos struct iovec aiov[UIO_SMALLIOV], *iov;
327 1.1 christos int error;
328 1.18 christos caddr_t sg = stackgap_init(p, 0);
329 1.1 christos
330 1.15 jdolecek error = copyin(SCARG(uap, msg), (caddr_t)&omsg,
331 1.5 christos sizeof (struct omsghdr));
332 1.5 christos if (error)
333 1.1 christos return (error);
334 1.15 jdolecek if ((u_int)omsg.msg_iovlen > UIO_SMALLIOV) {
335 1.15 jdolecek if ((u_int)omsg.msg_iovlen > IOV_MAX)
336 1.1 christos return (EMSGSIZE);
337 1.15 jdolecek iov = malloc(sizeof(struct iovec) * omsg.msg_iovlen,
338 1.15 jdolecek M_IOV, M_WAITOK);
339 1.1 christos } else
340 1.1 christos iov = aiov;
341 1.15 jdolecek error = copyin((caddr_t)omsg.msg_iov, (caddr_t)iov,
342 1.15 jdolecek (unsigned)(omsg.msg_iovlen * sizeof (struct iovec)));
343 1.5 christos if (error)
344 1.1 christos goto done;
345 1.15 jdolecek
346 1.15 jdolecek if (omsg.msg_name) {
347 1.15 jdolecek struct osockaddr *osa;
348 1.15 jdolecek struct sockaddr *sa, *usa;
349 1.15 jdolecek
350 1.15 jdolecek if ((u_int) omsg.msg_namelen > UCHAR_MAX)
351 1.15 jdolecek return (EINVAL);
352 1.15 jdolecek
353 1.15 jdolecek osa = malloc(omsg.msg_namelen, M_TEMP, M_WAITOK);
354 1.15 jdolecek
355 1.15 jdolecek if ((error = copyin(omsg.msg_name, osa, omsg.msg_namelen))) {
356 1.15 jdolecek free(osa, M_TEMP);
357 1.15 jdolecek return (error);
358 1.15 jdolecek }
359 1.15 jdolecek
360 1.15 jdolecek sa = (struct sockaddr *) osa;
361 1.15 jdolecek sa->sa_family = osa->sa_family;
362 1.15 jdolecek sa->sa_len = omsg.msg_namelen;
363 1.15 jdolecek
364 1.18 christos usa = stackgap_alloc(p, &sg, omsg.msg_namelen);
365 1.15 jdolecek if (!usa) {
366 1.15 jdolecek free(osa, M_TEMP);
367 1.15 jdolecek return (ENOMEM);
368 1.15 jdolecek }
369 1.15 jdolecek
370 1.15 jdolecek (void) copyout(sa, usa, omsg.msg_namelen);
371 1.15 jdolecek free(osa, M_TEMP);
372 1.23 perry
373 1.15 jdolecek msg.msg_name = usa;
374 1.15 jdolecek msg.msg_namelen = omsg.msg_namelen;
375 1.15 jdolecek } else {
376 1.15 jdolecek msg.msg_name = NULL;
377 1.15 jdolecek msg.msg_namelen = 0;
378 1.15 jdolecek }
379 1.15 jdolecek msg.msg_iovlen = omsg.msg_iovlen;
380 1.15 jdolecek msg.msg_iov = iov;
381 1.15 jdolecek msg.msg_flags = 0;
382 1.15 jdolecek
383 1.15 jdolecek if (omsg.msg_accrights && omsg.msg_accrightslen != 0) {
384 1.15 jdolecek struct cmsghdr *cmsg, *ucmsg;
385 1.15 jdolecek
386 1.15 jdolecek /* it was this way in 4.4BSD */
387 1.15 jdolecek if ((u_int) omsg.msg_accrightslen > MLEN)
388 1.15 jdolecek return (EINVAL);
389 1.15 jdolecek
390 1.15 jdolecek cmsg = malloc(CMSG_SPACE(omsg.msg_accrightslen), M_TEMP,
391 1.23 perry M_WAITOK);
392 1.15 jdolecek cmsg->cmsg_len = CMSG_SPACE(omsg.msg_accrightslen);
393 1.15 jdolecek cmsg->cmsg_level = SOL_SOCKET;
394 1.15 jdolecek cmsg->cmsg_type = SCM_RIGHTS;
395 1.15 jdolecek
396 1.15 jdolecek error = copyin(omsg.msg_accrights, CMSG_DATA(cmsg),
397 1.15 jdolecek omsg.msg_accrightslen);
398 1.15 jdolecek if (error) {
399 1.15 jdolecek free(cmsg, M_TEMP);
400 1.15 jdolecek return (error);
401 1.15 jdolecek }
402 1.23 perry
403 1.18 christos ucmsg = stackgap_alloc(p, &sg, CMSG_SPACE(omsg.msg_accrightslen));
404 1.15 jdolecek if (!ucmsg) {
405 1.15 jdolecek free(cmsg, M_TEMP);
406 1.16 jdolecek return (EMSGSIZE);
407 1.15 jdolecek }
408 1.15 jdolecek
409 1.15 jdolecek (void) copyout(cmsg, ucmsg, CMSG_SPACE(omsg.msg_accrightslen));
410 1.15 jdolecek free(cmsg, M_TEMP);
411 1.15 jdolecek
412 1.15 jdolecek msg.msg_control = ucmsg;
413 1.15 jdolecek msg.msg_controllen = CMSG_SPACE(omsg.msg_accrightslen);
414 1.15 jdolecek } else {
415 1.15 jdolecek msg.msg_control = NULL;
416 1.15 jdolecek msg.msg_controllen = 0;
417 1.15 jdolecek }
418 1.15 jdolecek
419 1.21 fvdl error = sendit(p, SCARG(uap, s), &msg, SCARG(uap, flags), retval);
420 1.1 christos done:
421 1.1 christos if (iov != aiov)
422 1.1 christos FREE(iov, M_IOV);
423 1.1 christos return (error);
424 1.15 jdolecek }
425 1.15 jdolecek
426 1.15 jdolecek static int
427 1.15 jdolecek compat_43_sa_put(from)
428 1.15 jdolecek caddr_t from;
429 1.15 jdolecek {
430 1.15 jdolecek struct osockaddr *osa = (struct osockaddr *) from;
431 1.15 jdolecek struct sockaddr sa;
432 1.15 jdolecek struct osockaddr *kosa;
433 1.15 jdolecek int error, len;
434 1.15 jdolecek
435 1.15 jdolecek /*
436 1.15 jdolecek * Only read/write the sockaddr family and length, the rest is
437 1.15 jdolecek * not changed.
438 1.15 jdolecek */
439 1.15 jdolecek len = sizeof(sa.sa_len) + sizeof(sa.sa_family);
440 1.15 jdolecek
441 1.15 jdolecek error = copyin((caddr_t) osa, (caddr_t) &sa, len);
442 1.15 jdolecek if (error)
443 1.15 jdolecek return (error);
444 1.15 jdolecek
445 1.15 jdolecek /* Note: we convert from sockaddr sa_family to osockaddr one here */
446 1.15 jdolecek kosa = (struct osockaddr *) &sa;
447 1.15 jdolecek kosa->sa_family = sa.sa_family;
448 1.15 jdolecek error = copyout(kosa, osa, len);
449 1.15 jdolecek if (error)
450 1.15 jdolecek return (error);
451 1.15 jdolecek
452 1.15 jdolecek return (0);
453 1.1 christos }
454 1.24 christos
455 1.24 christos int
456 1.24 christos compat_ifioctl(struct socket *so, u_long cmd, caddr_t data, struct proc *p)
457 1.24 christos {
458 1.24 christos int error, ocmd = cmd;
459 1.24 christos struct ifreq *ifr = (struct ifreq *)data;
460 1.24 christos struct ifnet *ifp = ifunit(ifr->ifr_name);
461 1.24 christos
462 1.24 christos if (ifp == NULL)
463 1.24 christos return ENXIO;
464 1.24 christos
465 1.24 christos switch (cmd) {
466 1.24 christos case SIOCSIFADDR:
467 1.24 christos case SIOCSIFDSTADDR:
468 1.24 christos case SIOCSIFBRDADDR:
469 1.24 christos case SIOCSIFNETMASK:
470 1.24 christos #if BYTE_ORDER != BIG_ENDIAN
471 1.24 christos if (ifr->ifr_addr.sa_family == 0 &&
472 1.24 christos ifr->ifr_addr.sa_len < 16) {
473 1.24 christos ifr->ifr_addr.sa_family = ifr->ifr_addr.sa_len;
474 1.24 christos ifr->ifr_addr.sa_len = 16;
475 1.24 christos }
476 1.24 christos #else
477 1.24 christos if (ifr->ifr_addr.sa_len == 0)
478 1.24 christos ifr->ifr_addr.sa_len = 16;
479 1.24 christos #endif
480 1.24 christos break;
481 1.24 christos
482 1.24 christos case OSIOCGIFADDR:
483 1.24 christos cmd = SIOCGIFADDR;
484 1.24 christos break;
485 1.24 christos
486 1.24 christos case OSIOCGIFDSTADDR:
487 1.24 christos cmd = SIOCGIFDSTADDR;
488 1.24 christos break;
489 1.24 christos
490 1.24 christos case OSIOCGIFBRDADDR:
491 1.24 christos cmd = SIOCGIFBRDADDR;
492 1.24 christos break;
493 1.24 christos
494 1.24 christos case OSIOCGIFNETMASK:
495 1.24 christos cmd = SIOCGIFNETMASK;
496 1.24 christos }
497 1.24 christos
498 1.24 christos error = (*so->so_proto->pr_usrreq)(so, PRU_CONTROL,
499 1.24 christos (struct mbuf *)cmd, (struct mbuf *)data, (struct mbuf *)ifp, p);
500 1.24 christos
501 1.24 christos switch (ocmd) {
502 1.24 christos case OSIOCGIFADDR:
503 1.24 christos case OSIOCGIFDSTADDR:
504 1.24 christos case OSIOCGIFBRDADDR:
505 1.24 christos case OSIOCGIFNETMASK:
506 1.24 christos *(u_int16_t *)&ifr->ifr_addr = ifr->ifr_addr.sa_family;
507 1.24 christos }
508 1.24 christos return error;
509 1.24 christos }
510