linux_cdrom.c revision 1.11 1 1.11 christos /* $NetBSD: linux_cdrom.c,v 1.11 2002/02/15 20:02:56 christos Exp $ */
2 1.1 christos
3 1.1 christos /*
4 1.1 christos * Copyright (c) 1997 The NetBSD Foundation, Inc.
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. All advertising materials mentioning features or use of this software
16 1.1 christos * must display the following acknowledgement:
17 1.1 christos * This product includes software developed by the NetBSD
18 1.1 christos * Foundation, Inc. and its contributors.
19 1.1 christos * 4. Neither the name of The NetBSD Foundation nor the names of its
20 1.1 christos * contributors may be used to endorse or promote products derived
21 1.1 christos * from this software without specific prior written permission.
22 1.1 christos *
23 1.1 christos * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
24 1.1 christos * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
25 1.1 christos * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
26 1.1 christos * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
27 1.1 christos * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28 1.1 christos * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
29 1.1 christos * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
30 1.1 christos * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
31 1.1 christos * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
32 1.1 christos * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
33 1.1 christos * POSSIBILITY OF SUCH DAMAGE.
34 1.1 christos */
35 1.10 lukem
36 1.10 lukem #include <sys/cdefs.h>
37 1.11 christos __KERNEL_RCSID(0, "$NetBSD: linux_cdrom.c,v 1.11 2002/02/15 20:02:56 christos Exp $");
38 1.1 christos
39 1.1 christos #include <sys/param.h>
40 1.1 christos #include <sys/systm.h>
41 1.1 christos #include <sys/ioctl.h>
42 1.1 christos #include <sys/file.h>
43 1.1 christos #include <sys/filedesc.h>
44 1.1 christos #include <sys/mount.h>
45 1.1 christos #include <sys/proc.h>
46 1.1 christos #include <sys/cdio.h>
47 1.5 mycroft #include <sys/dvdio.h>
48 1.2 erh
49 1.2 erh #include <sys/syscallargs.h>
50 1.1 christos
51 1.3 christos #include <compat/linux/common/linux_types.h>
52 1.3 christos #include <compat/linux/common/linux_ioctl.h>
53 1.3 christos #include <compat/linux/common/linux_signal.h>
54 1.3 christos #include <compat/linux/common/linux_util.h>
55 1.3 christos #include <compat/linux/common/linux_cdrom.h>
56 1.3 christos
57 1.1 christos #include <compat/linux/linux_syscallargs.h>
58 1.1 christos
59 1.6 fvdl static int bsd_to_linux_msf_lba(unsigned address_format, union msf_lba *bml,
60 1.6 fvdl union linux_cdrom_addr *llml);
61 1.6 fvdl
62 1.1 christos #if 0
63 1.11 christos #define DPRINTF(x) uprintf x
64 1.1 christos #else
65 1.1 christos #define DPRINTF(x)
66 1.1 christos #endif
67 1.1 christos
68 1.6 fvdl /*
69 1.6 fvdl * XXX from dev/scsipi/cd.c
70 1.6 fvdl */
71 1.6 fvdl #define MAXTRACK 99
72 1.6 fvdl
73 1.6 fvdl static int
74 1.6 fvdl bsd_to_linux_msf_lba(unsigned address_format, union msf_lba *bml,
75 1.6 fvdl union linux_cdrom_addr *llml)
76 1.6 fvdl {
77 1.6 fvdl switch (address_format) {
78 1.6 fvdl case CD_LBA_FORMAT:
79 1.6 fvdl llml->lba = bml->lba;
80 1.6 fvdl break;
81 1.6 fvdl case CD_MSF_FORMAT:
82 1.6 fvdl llml->msf.minute = bml->msf.minute;
83 1.6 fvdl llml->msf.second = bml->msf.second;
84 1.6 fvdl llml->msf.frame = bml->msf.frame;
85 1.6 fvdl break;
86 1.6 fvdl default:
87 1.6 fvdl return -1;
88 1.6 fvdl }
89 1.6 fvdl return 0;
90 1.6 fvdl }
91 1.6 fvdl
92 1.1 christos int
93 1.1 christos linux_ioctl_cdrom(p, uap, retval)
94 1.1 christos struct proc *p;
95 1.1 christos struct linux_sys_ioctl_args /* {
96 1.1 christos syscallarg(int) fd;
97 1.1 christos syscallarg(u_long) com;
98 1.1 christos syscallarg(caddr_t) data;
99 1.1 christos } */ *uap;
100 1.1 christos register_t *retval;
101 1.1 christos {
102 1.1 christos int error, idata;
103 1.1 christos u_long com, ncom;
104 1.1 christos caddr_t sg;
105 1.1 christos struct file *fp;
106 1.1 christos struct filedesc *fdp;
107 1.1 christos int (*ioctlf) __P((struct file *, u_long, caddr_t, struct proc *));
108 1.1 christos
109 1.1 christos struct linux_cdrom_blk l_blk;
110 1.1 christos struct linux_cdrom_msf l_msf;
111 1.1 christos struct linux_cdrom_ti l_ti;
112 1.1 christos struct linux_cdrom_tochdr l_tochdr;
113 1.1 christos struct linux_cdrom_tocentry l_tocentry;
114 1.1 christos struct linux_cdrom_subchnl l_subchnl;
115 1.1 christos struct linux_cdrom_volctrl l_volctrl;
116 1.6 fvdl struct linux_cdrom_multisession l_session;
117 1.1 christos
118 1.1 christos struct ioc_play_blocks t_blocks;
119 1.1 christos struct ioc_play_msf t_msf;
120 1.1 christos struct ioc_play_track t_track;
121 1.1 christos struct ioc_toc_header t_header;
122 1.1 christos struct cd_toc_entry *entry, t_entry;
123 1.1 christos struct ioc_read_toc_entry t_toc_entry;
124 1.1 christos struct cd_sub_channel_info *info, t_info;
125 1.1 christos struct ioc_read_subchannel t_subchannel;
126 1.1 christos struct ioc_vol t_vol;
127 1.1 christos
128 1.5 mycroft dvd_struct ds;
129 1.5 mycroft dvd_authinfo dai;
130 1.5 mycroft
131 1.1 christos fdp = p->p_fd;
132 1.9 thorpej if ((fp = fd_getfile(fdp, SCARG(uap, fd))) == NULL)
133 1.1 christos return (EBADF);
134 1.1 christos
135 1.6 fvdl FILE_USE(fp);
136 1.6 fvdl
137 1.1 christos com = SCARG(uap, com);
138 1.1 christos ioctlf = fp->f_ops->fo_ioctl;
139 1.6 fvdl retval[0] = error = 0;
140 1.1 christos
141 1.1 christos switch(com) {
142 1.1 christos case LINUX_CDROMPLAYMSF:
143 1.1 christos error = copyin(SCARG(uap, data), &l_msf, sizeof l_msf);
144 1.1 christos if (error)
145 1.6 fvdl break;
146 1.1 christos
147 1.1 christos t_msf.start_m = l_msf.cdmsf_min0;
148 1.1 christos t_msf.start_s = l_msf.cdmsf_sec0;
149 1.1 christos t_msf.start_f = l_msf.cdmsf_frame0;
150 1.1 christos t_msf.end_m = l_msf.cdmsf_min1;
151 1.1 christos t_msf.end_s = l_msf.cdmsf_sec1;
152 1.1 christos t_msf.end_f = l_msf.cdmsf_frame1;
153 1.1 christos
154 1.6 fvdl error = ioctlf(fp, CDIOCPLAYMSF, (caddr_t)&t_msf, p);
155 1.6 fvdl break;
156 1.1 christos
157 1.1 christos case LINUX_CDROMPLAYTRKIND:
158 1.1 christos error = copyin(SCARG(uap, data), &l_ti, sizeof l_ti);
159 1.1 christos if (error)
160 1.6 fvdl break;
161 1.1 christos
162 1.1 christos t_track.start_track = l_ti.cdti_trk0;
163 1.1 christos t_track.start_index = l_ti.cdti_ind0;
164 1.1 christos t_track.end_track = l_ti.cdti_trk1;
165 1.1 christos t_track.end_index = l_ti.cdti_ind1;
166 1.1 christos
167 1.6 fvdl error = ioctlf(fp, CDIOCPLAYTRACKS, (caddr_t)&t_track, p);
168 1.6 fvdl break;
169 1.1 christos
170 1.1 christos case LINUX_CDROMREADTOCHDR:
171 1.1 christos error = ioctlf(fp, CDIOREADTOCHEADER, (caddr_t)&t_header, p);
172 1.1 christos if (error)
173 1.6 fvdl break;
174 1.1 christos
175 1.1 christos l_tochdr.cdth_trk0 = t_header.starting_track;
176 1.1 christos l_tochdr.cdth_trk1 = t_header.ending_track;
177 1.1 christos
178 1.6 fvdl error = copyout(&l_tochdr, SCARG(uap, data), sizeof l_tochdr);
179 1.6 fvdl break;
180 1.1 christos
181 1.1 christos case LINUX_CDROMREADTOCENTRY:
182 1.1 christos error = copyin(SCARG(uap, data), &l_tocentry,
183 1.1 christos sizeof l_tocentry);
184 1.1 christos if (error)
185 1.6 fvdl break;
186 1.1 christos
187 1.1 christos sg = stackgap_init(p->p_emul);
188 1.1 christos entry = stackgap_alloc(&sg, sizeof *entry);
189 1.1 christos t_toc_entry.address_format = l_tocentry.cdte_format;
190 1.1 christos t_toc_entry.starting_track = l_tocentry.cdte_track;
191 1.1 christos t_toc_entry.data_len = sizeof *entry;
192 1.1 christos t_toc_entry.data = entry;
193 1.1 christos
194 1.6 fvdl error = ioctlf(fp, CDIOREADTOCENTRIES, (caddr_t)&t_toc_entry,
195 1.1 christos p);
196 1.1 christos if (error)
197 1.6 fvdl break;
198 1.1 christos
199 1.1 christos error = copyin(entry, &t_entry, sizeof t_entry);
200 1.1 christos if (error)
201 1.6 fvdl break;
202 1.1 christos
203 1.1 christos l_tocentry.cdte_adr = t_entry.addr_type;
204 1.1 christos l_tocentry.cdte_ctrl = t_entry.control;
205 1.6 fvdl if (bsd_to_linux_msf_lba(t_entry.addr_type, &t_entry.addr,
206 1.6 fvdl &l_tocentry.cdte_addr) < 0) {
207 1.11 christos uprintf("linux_ioctl: unknown format msf/lba\n");
208 1.6 fvdl error = EINVAL;
209 1.1 christos break;
210 1.1 christos }
211 1.1 christos
212 1.6 fvdl error = copyout(&l_tocentry, SCARG(uap, data),
213 1.1 christos sizeof l_tocentry);
214 1.6 fvdl break;
215 1.1 christos
216 1.1 christos case LINUX_CDROMVOLCTRL:
217 1.1 christos error = copyin(SCARG(uap, data), &l_volctrl, sizeof l_volctrl);
218 1.1 christos if (error)
219 1.6 fvdl break;
220 1.1 christos
221 1.1 christos t_vol.vol[0] = l_volctrl.channel0;
222 1.1 christos t_vol.vol[1] = l_volctrl.channel1;
223 1.1 christos t_vol.vol[2] = l_volctrl.channel2;
224 1.1 christos t_vol.vol[3] = l_volctrl.channel3;
225 1.1 christos
226 1.6 fvdl error = ioctlf(fp, CDIOCSETVOL, (caddr_t)&t_vol, p);
227 1.6 fvdl break;
228 1.1 christos
229 1.1 christos case LINUX_CDROMVOLREAD:
230 1.1 christos error = ioctlf(fp, CDIOCGETVOL, (caddr_t)&t_vol, p);
231 1.1 christos if (error)
232 1.6 fvdl break;
233 1.1 christos
234 1.1 christos l_volctrl.channel0 = t_vol.vol[0];
235 1.1 christos l_volctrl.channel1 = t_vol.vol[1];
236 1.1 christos l_volctrl.channel2 = t_vol.vol[2];
237 1.1 christos l_volctrl.channel3 = t_vol.vol[3];
238 1.1 christos
239 1.6 fvdl error = copyout(&l_volctrl, SCARG(uap, data), sizeof l_volctrl);
240 1.6 fvdl break;
241 1.1 christos
242 1.1 christos case LINUX_CDROMSUBCHNL:
243 1.1 christos error = copyin(SCARG(uap, data), &l_subchnl, sizeof l_subchnl);
244 1.1 christos if (error)
245 1.6 fvdl break;
246 1.7 fvdl
247 1.1 christos sg = stackgap_init(p->p_emul);
248 1.1 christos info = stackgap_alloc(&sg, sizeof *info);
249 1.7 fvdl t_subchannel.address_format = CD_MSF_FORMAT;
250 1.7 fvdl t_subchannel.track = 0;
251 1.7 fvdl t_subchannel.data_format = l_subchnl.cdsc_format;
252 1.1 christos t_subchannel.data_len = sizeof *info;
253 1.1 christos t_subchannel.data = info;
254 1.1 christos DPRINTF(("linux_ioctl: CDROMSUBCHNL %d %d\n",
255 1.1 christos l_subchnl.cdsc_format, l_subchnl.cdsc_trk));
256 1.1 christos
257 1.1 christos error = ioctlf(fp, CDIOCREADSUBCHANNEL, (caddr_t)&t_subchannel,
258 1.1 christos p);
259 1.1 christos if (error)
260 1.6 fvdl break;
261 1.1 christos
262 1.1 christos error = copyin(info, &t_info, sizeof t_info);
263 1.1 christos if (error)
264 1.6 fvdl break;
265 1.1 christos
266 1.6 fvdl l_subchnl.cdsc_audiostatus = t_info.header.audio_status;
267 1.6 fvdl l_subchnl.cdsc_adr = t_info.what.position.addr_type;
268 1.6 fvdl l_subchnl.cdsc_ctrl = t_info.what.position.control;
269 1.6 fvdl l_subchnl.cdsc_ind = t_info.what.position.index_number;
270 1.1 christos
271 1.6 fvdl DPRINTF(("linux_ioctl: CDIOCREADSUBCHANNEL %d %d %d\n",
272 1.6 fvdl t_info.header.audio_status,
273 1.6 fvdl t_info.header.data_len[0],
274 1.6 fvdl t_info.header.data_len[1]));
275 1.6 fvdl DPRINTF(("(more) %d %d %d %d %d\n",
276 1.6 fvdl t_info.what.position.data_format,
277 1.6 fvdl t_info.what.position.control,
278 1.6 fvdl t_info.what.position.addr_type,
279 1.6 fvdl t_info.what.position.track_number,
280 1.6 fvdl t_info.what.position.index_number));
281 1.6 fvdl
282 1.6 fvdl if (bsd_to_linux_msf_lba(t_subchannel.address_format,
283 1.6 fvdl &t_info.what.position.absaddr,
284 1.6 fvdl &l_subchnl.cdsc_absaddr) < 0 ||
285 1.6 fvdl bsd_to_linux_msf_lba(t_subchannel.address_format,
286 1.6 fvdl &t_info.what.position.reladdr,
287 1.6 fvdl &l_subchnl.cdsc_reladdr) < 0) {
288 1.6 fvdl DPRINTF(("linux_ioctl: unknown format msf/lba\n"));
289 1.6 fvdl error = EINVAL;
290 1.6 fvdl break;
291 1.6 fvdl }
292 1.1 christos
293 1.6 fvdl error = copyout(&l_subchnl, SCARG(uap, data), sizeof l_subchnl);
294 1.6 fvdl break;
295 1.1 christos
296 1.1 christos case LINUX_CDROMPLAYBLK:
297 1.1 christos error = copyin(SCARG(uap, data), &l_blk, sizeof l_blk);
298 1.1 christos if (error)
299 1.6 fvdl break;
300 1.1 christos
301 1.1 christos t_blocks.blk = l_blk.from;
302 1.1 christos t_blocks.len = l_blk.len;
303 1.1 christos
304 1.6 fvdl error = ioctlf(fp, CDIOCPLAYBLOCKS, (caddr_t)&t_blocks, p);
305 1.6 fvdl break;
306 1.1 christos
307 1.1 christos case LINUX_CDROMEJECT_SW:
308 1.1 christos error = copyin(SCARG(uap, data), &idata, sizeof idata);
309 1.1 christos if (error)
310 1.6 fvdl break;
311 1.1 christos
312 1.1 christos if (idata == 1)
313 1.1 christos ncom = CDIOCALLOW;
314 1.1 christos else
315 1.1 christos ncom = CDIOCPREVENT;
316 1.6 fvdl error = ioctlf(fp, ncom, NULL, p);
317 1.1 christos break;
318 1.1 christos
319 1.1 christos case LINUX_CDROMPAUSE:
320 1.6 fvdl error = ioctlf(fp, CDIOCPAUSE, NULL, p);
321 1.1 christos break;
322 1.1 christos
323 1.1 christos case LINUX_CDROMRESUME:
324 1.6 fvdl error = ioctlf(fp, CDIOCRESUME, NULL, p);
325 1.1 christos break;
326 1.1 christos
327 1.1 christos case LINUX_CDROMSTOP:
328 1.6 fvdl error = ioctlf(fp, CDIOCSTOP, NULL, p);
329 1.1 christos break;
330 1.1 christos
331 1.1 christos case LINUX_CDROMSTART:
332 1.6 fvdl error = ioctlf(fp, CDIOCSTART, NULL, p);
333 1.1 christos break;
334 1.1 christos
335 1.1 christos case LINUX_CDROMEJECT:
336 1.6 fvdl error = ioctlf(fp, CDIOCEJECT, NULL, p);
337 1.1 christos break;
338 1.1 christos
339 1.1 christos case LINUX_CDROMRESET:
340 1.6 fvdl error = ioctlf(fp, CDIOCRESET, NULL, p);
341 1.6 fvdl break;
342 1.6 fvdl
343 1.6 fvdl case LINUX_CDROMMULTISESSION:
344 1.6 fvdl error = copyin(SCARG(uap, data), &l_session, sizeof l_session);
345 1.6 fvdl if (error)
346 1.6 fvdl break;
347 1.6 fvdl
348 1.6 fvdl error = ioctlf(fp, CDIOREADTOCHEADER, (caddr_t)&t_header, p);
349 1.6 fvdl if (error)
350 1.6 fvdl break;
351 1.6 fvdl
352 1.6 fvdl sg = stackgap_init(p->p_emul);
353 1.6 fvdl entry = stackgap_alloc(&sg, sizeof *entry);
354 1.6 fvdl t_toc_entry.address_format = l_session.addr_format;
355 1.6 fvdl t_toc_entry.starting_track = 0;
356 1.6 fvdl t_toc_entry.data_len = sizeof *entry;
357 1.6 fvdl t_toc_entry.data = entry;
358 1.6 fvdl
359 1.6 fvdl error = ioctlf(fp, CDIOREADTOCENTRIES,
360 1.6 fvdl (caddr_t)&t_toc_entry, p);
361 1.6 fvdl if (error)
362 1.6 fvdl break;
363 1.6 fvdl
364 1.6 fvdl error = copyin(entry, &t_entry, sizeof t_entry);
365 1.6 fvdl if (error)
366 1.6 fvdl break;
367 1.6 fvdl
368 1.6 fvdl if (bsd_to_linux_msf_lba(l_session.addr_format,
369 1.6 fvdl &t_entry.addr, &l_session.addr) < 0) {
370 1.6 fvdl error = EINVAL;
371 1.6 fvdl break;
372 1.6 fvdl }
373 1.6 fvdl
374 1.6 fvdl l_session.xa_flag =
375 1.6 fvdl t_header.starting_track != t_header.ending_track;
376 1.6 fvdl
377 1.6 fvdl error = copyout(&l_session, SCARG(uap, data), sizeof l_session);
378 1.6 fvdl break;
379 1.6 fvdl
380 1.6 fvdl case LINUX_CDROMCLOSETRAY:
381 1.6 fvdl error = ioctlf(fp, CDIOCCLOSE, NULL, p);
382 1.6 fvdl break;
383 1.6 fvdl
384 1.6 fvdl case LINUX_CDROM_LOCKDOOR:
385 1.6 fvdl ncom = SCARG(uap, data) != 0 ? CDIOCPREVENT : CDIOCALLOW;
386 1.6 fvdl error = ioctlf(fp, ncom, NULL, p);
387 1.6 fvdl break;
388 1.6 fvdl
389 1.6 fvdl case LINUX_CDROM_SET_OPTIONS:
390 1.6 fvdl case LINUX_CDROM_CLEAR_OPTIONS:
391 1.6 fvdl /* whatever you say */
392 1.6 fvdl break;
393 1.6 fvdl
394 1.6 fvdl case LINUX_CDROM_DEBUG:
395 1.6 fvdl ncom = SCARG(uap, data) != 0 ? CDIOCSETDEBUG : CDIOCCLRDEBUG;
396 1.6 fvdl error = ioctlf(fp, ncom, NULL, p);
397 1.6 fvdl break;
398 1.6 fvdl
399 1.6 fvdl case LINUX_CDROM_SELECT_SPEED:
400 1.6 fvdl case LINUX_CDROM_SELECT_DISC:
401 1.6 fvdl case LINUX_CDROM_MEDIA_CHANGED:
402 1.6 fvdl case LINUX_CDROM_DRIVE_STATUS:
403 1.6 fvdl case LINUX_CDROM_DISC_STATUS:
404 1.6 fvdl case LINUX_CDROM_CHANGER_NSLOTS:
405 1.6 fvdl case LINUX_CDROM_GET_CAPABILITY:
406 1.7 fvdl error = ENOSYS;
407 1.1 christos break;
408 1.5 mycroft
409 1.5 mycroft case LINUX_DVD_READ_STRUCT:
410 1.5 mycroft error = copyin(SCARG(uap, data), &ds, sizeof ds);
411 1.5 mycroft if (error)
412 1.6 fvdl break;
413 1.5 mycroft error = ioctlf(fp, DVD_READ_STRUCT, (caddr_t)&ds, p);
414 1.5 mycroft if (error)
415 1.6 fvdl break;
416 1.5 mycroft error = copyout(&ds, SCARG(uap, data), sizeof ds);
417 1.6 fvdl break;
418 1.5 mycroft
419 1.5 mycroft case LINUX_DVD_WRITE_STRUCT:
420 1.5 mycroft error = copyin(SCARG(uap, data), &ds, sizeof ds);
421 1.5 mycroft if (error)
422 1.6 fvdl break;
423 1.5 mycroft error = ioctlf(fp, DVD_WRITE_STRUCT, (caddr_t)&ds, p);
424 1.5 mycroft if (error)
425 1.6 fvdl break;
426 1.5 mycroft error = copyout(&ds, SCARG(uap, data), sizeof ds);
427 1.6 fvdl break;
428 1.5 mycroft
429 1.5 mycroft case LINUX_DVD_AUTH:
430 1.5 mycroft error = copyin(SCARG(uap, data), &dai, sizeof dai);
431 1.5 mycroft if (error)
432 1.6 fvdl break;
433 1.5 mycroft error = ioctlf(fp, DVD_AUTH, (caddr_t)&dai, p);
434 1.5 mycroft if (error)
435 1.6 fvdl break;
436 1.5 mycroft error = copyout(&dai, SCARG(uap, data), sizeof dai);
437 1.6 fvdl break;
438 1.5 mycroft
439 1.1 christos
440 1.1 christos default:
441 1.4 christos DPRINTF(("linux_ioctl: unimplemented ioctl %08lx\n", com));
442 1.6 fvdl error = EINVAL;
443 1.1 christos }
444 1.1 christos
445 1.6 fvdl FILE_UNUSE(fp, p);
446 1.6 fvdl return error;
447 1.1 christos }
448