* Implement POSIX (XSI)'s header file re_comp.h
[dragonfly.git] / sys / emulation / svr4 / svr4_fcntl.c
1 /*
2  * Copyright (c) 1998 Mark Newton
3  * Copyright (c) 1994, 1997 Christos Zoulas.  
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  * 3. All advertising materials mentioning features or use of this software
15  *    must display the following acknowledgement:
16  *      This product includes software developed by Christos Zoulas.
17  * 4. The name of the author may not be used to endorse or promote products
18  *    derived from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30  * 
31  * $FreeBSD: src/sys/svr4/svr4_fcntl.c,v 1.7 1999/12/12 10:27:04 newton Exp $
32  * $DragonFly: src/sys/emulation/svr4/Attic/svr4_fcntl.c,v 1.14 2003/08/27 06:07:10 rob Exp $
33  */
34 #include <sys/param.h>
35 #include <sys/systm.h>
36 #include <sys/proc.h>
37 #include <sys/namei.h>
38 #include <sys/file.h>
39 #include <sys/stat.h>
40 #include <sys/filedesc.h>
41 /*#include <sys/ioctl.h>*/
42 #include <sys/kernel.h>
43 #include <sys/mount.h>
44 #include <sys/malloc.h>
45 #include <sys/vnode.h>
46 #include <sys/unistd.h>
47
48 #include <sys/sysproto.h>
49
50 #include "svr4.h"
51 #include "svr4_types.h"
52 #include "svr4_signal.h"
53 #include "svr4_proto.h"
54 #include "svr4_util.h"
55 #include "svr4_fcntl.h"
56
57 static int svr4_to_bsd_flags (int);
58 static u_long svr4_to_bsd_cmd (u_long);
59 static int fd_revoke (struct thread *, int);
60 static int fd_truncate (struct thread *, int, struct flock *, int *);
61 static int bsd_to_svr4_flags (int);
62 static void bsd_to_svr4_flock (struct flock *, struct svr4_flock *);
63 static void svr4_to_bsd_flock (struct svr4_flock *, struct flock *);
64 static void bsd_to_svr4_flock64 (struct flock *, struct svr4_flock64 *);
65 static void svr4_to_bsd_flock64 (struct svr4_flock64 *, struct flock *);
66
67 static u_long
68 svr4_to_bsd_cmd(cmd)
69         u_long  cmd;
70 {
71         switch (cmd) {
72         case SVR4_F_DUPFD:
73                 return F_DUPFD;
74         case SVR4_F_GETFD:
75                 return F_GETFD;
76         case SVR4_F_SETFD:
77                 return F_SETFD;
78         case SVR4_F_GETFL:
79                 return F_GETFL;
80         case SVR4_F_SETFL:
81                 return F_SETFL;
82         case SVR4_F_GETLK:
83                 return F_GETLK;
84         case SVR4_F_SETLK:
85                 return F_SETLK;
86         case SVR4_F_SETLKW:
87                 return F_SETLKW;
88         default:
89                 return -1;
90         }
91 }
92
93 static int
94 svr4_to_bsd_flags(l)
95         int     l;
96 {
97         int     r = 0;
98         r |= (l & SVR4_O_RDONLY) ? O_RDONLY : 0;
99         r |= (l & SVR4_O_WRONLY) ? O_WRONLY : 0;
100         r |= (l & SVR4_O_RDWR) ? O_RDWR : 0;
101         r |= (l & SVR4_O_NDELAY) ? O_NONBLOCK : 0;
102         r |= (l & SVR4_O_APPEND) ? O_APPEND : 0;
103         r |= (l & SVR4_O_SYNC) ? O_FSYNC : 0;
104         r |= (l & SVR4_O_NONBLOCK) ? O_NONBLOCK : 0;
105         r |= (l & SVR4_O_PRIV) ? O_EXLOCK : 0;
106         r |= (l & SVR4_O_CREAT) ? O_CREAT : 0;
107         r |= (l & SVR4_O_TRUNC) ? O_TRUNC : 0;
108         r |= (l & SVR4_O_EXCL) ? O_EXCL : 0;
109         r |= (l & SVR4_O_NOCTTY) ? O_NOCTTY : 0;
110         return r;
111 }
112
113 static int
114 bsd_to_svr4_flags(l)
115         int     l;
116 {
117         int     r = 0;
118         r |= (l & O_RDONLY) ? SVR4_O_RDONLY : 0;
119         r |= (l & O_WRONLY) ? SVR4_O_WRONLY : 0;
120         r |= (l & O_RDWR) ? SVR4_O_RDWR : 0;
121         r |= (l & O_NDELAY) ? SVR4_O_NONBLOCK : 0;
122         r |= (l & O_APPEND) ? SVR4_O_APPEND : 0;
123         r |= (l & O_FSYNC) ? SVR4_O_SYNC : 0;
124         r |= (l & O_NONBLOCK) ? SVR4_O_NONBLOCK : 0;
125         r |= (l & O_EXLOCK) ? SVR4_O_PRIV : 0;
126         r |= (l & O_CREAT) ? SVR4_O_CREAT : 0;
127         r |= (l & O_TRUNC) ? SVR4_O_TRUNC : 0;
128         r |= (l & O_EXCL) ? SVR4_O_EXCL : 0;
129         r |= (l & O_NOCTTY) ? SVR4_O_NOCTTY : 0;
130         return r;
131 }
132
133
134 static void
135 bsd_to_svr4_flock(iflp, oflp)
136         struct flock            *iflp;
137         struct svr4_flock       *oflp;
138 {
139         switch (iflp->l_type) {
140         case F_RDLCK:
141                 oflp->l_type = SVR4_F_RDLCK;
142                 break;
143         case F_WRLCK:
144                 oflp->l_type = SVR4_F_WRLCK;
145                 break;
146         case F_UNLCK:
147                 oflp->l_type = SVR4_F_UNLCK;
148                 break;
149         default:
150                 oflp->l_type = -1;
151                 break;
152         }
153
154         oflp->l_whence = (short) iflp->l_whence;
155         oflp->l_start = (svr4_off_t) iflp->l_start;
156         oflp->l_len = (svr4_off_t) iflp->l_len;
157         oflp->l_sysid = 0;
158         oflp->l_pid = (svr4_pid_t) iflp->l_pid;
159 }
160
161
162 static void
163 svr4_to_bsd_flock(iflp, oflp)
164         struct svr4_flock       *iflp;
165         struct flock            *oflp;
166 {
167         switch (iflp->l_type) {
168         case SVR4_F_RDLCK:
169                 oflp->l_type = F_RDLCK;
170                 break;
171         case SVR4_F_WRLCK:
172                 oflp->l_type = F_WRLCK;
173                 break;
174         case SVR4_F_UNLCK:
175                 oflp->l_type = F_UNLCK;
176                 break;
177         default:
178                 oflp->l_type = -1;
179                 break;
180         }
181
182         oflp->l_whence = iflp->l_whence;
183         oflp->l_start = (off_t) iflp->l_start;
184         oflp->l_len = (off_t) iflp->l_len;
185         oflp->l_pid = (pid_t) iflp->l_pid;
186
187 }
188
189 static void
190 bsd_to_svr4_flock64(iflp, oflp)
191         struct flock            *iflp;
192         struct svr4_flock64     *oflp;
193 {
194         switch (iflp->l_type) {
195         case F_RDLCK:
196                 oflp->l_type = SVR4_F_RDLCK;
197                 break;
198         case F_WRLCK:
199                 oflp->l_type = SVR4_F_WRLCK;
200                 break;
201         case F_UNLCK:
202                 oflp->l_type = SVR4_F_UNLCK;
203                 break;
204         default:
205                 oflp->l_type = -1;
206                 break;
207         }
208
209         oflp->l_whence = (short) iflp->l_whence;
210         oflp->l_start = (svr4_off64_t) iflp->l_start;
211         oflp->l_len = (svr4_off64_t) iflp->l_len;
212         oflp->l_sysid = 0;
213         oflp->l_pid = (svr4_pid_t) iflp->l_pid;
214 }
215
216
217 static void
218 svr4_to_bsd_flock64(iflp, oflp)
219         struct svr4_flock64     *iflp;
220         struct flock            *oflp;
221 {
222         switch (iflp->l_type) {
223         case SVR4_F_RDLCK:
224                 oflp->l_type = F_RDLCK;
225                 break;
226         case SVR4_F_WRLCK:
227                 oflp->l_type = F_WRLCK;
228                 break;
229         case SVR4_F_UNLCK:
230                 oflp->l_type = F_UNLCK;
231                 break;
232         default:
233                 oflp->l_type = -1;
234                 break;
235         }
236
237         oflp->l_whence = iflp->l_whence;
238         oflp->l_start = (off_t) iflp->l_start;
239         oflp->l_len = (off_t) iflp->l_len;
240         oflp->l_pid = (pid_t) iflp->l_pid;
241
242 }
243
244
245 static int
246 fd_revoke(struct thread *td, int fd)
247 {
248         struct proc *p = td->td_proc;
249         struct filedesc *fdp;
250         struct file *fp;
251         struct vnode *vp;
252         struct vattr vattr;
253         int error;
254
255         KKASSERT(p);
256
257         fdp = p->p_fd;
258         if ((u_int)fd >= fdp->fd_nfiles || (fp = fdp->fd_ofiles[fd]) == NULL)
259                 return EBADF;
260
261         if (fp->f_type != DTYPE_VNODE) 
262                 return EINVAL;
263
264         vp = (struct vnode *) fp->f_data;
265
266         if (vp->v_type != VCHR && vp->v_type != VBLK) {
267                 error = EINVAL;
268                 goto out;
269         }
270
271         if ((error = VOP_GETATTR(vp, &vattr, td)) != 0)
272                 goto out;
273
274         if (p->p_ucred->cr_uid != vattr.va_uid &&
275             (error = suser(p->p_thread)) != 0)
276                 goto out;
277
278         if (vcount(vp) > 1)
279                 VOP_REVOKE(vp, REVOKEALL);
280 out:
281         vrele(vp);
282         return error;
283 }
284
285
286 static int
287 fd_truncate(struct thread *td, int fd, struct flock *flp, int *retval)
288 {
289         struct proc *p = td->td_proc;
290         struct filedesc *fdp;
291         struct file *fp;
292         off_t start, length;
293         struct vnode *vp;
294         struct vattr vattr;
295         int error;
296         struct ftruncate_args ft;
297
298         KKASSERT(p);
299         fdp = p->p_fd;
300
301         /*
302          * We only support truncating the file.
303          */
304         if ((u_int)fd >= fdp->fd_nfiles || (fp = fdp->fd_ofiles[fd]) == NULL)
305                 return EBADF;
306
307         vp = (struct vnode *)fp->f_data;
308         if (fp->f_type != DTYPE_VNODE || vp->v_type == VFIFO)
309                 return ESPIPE;
310
311         if ((error = VOP_GETATTR(vp, &vattr, td)) != 0)
312                 return error;
313
314         length = vattr.va_size;
315
316         switch (flp->l_whence) {
317         case SEEK_CUR:
318                 start = fp->f_offset + flp->l_start;
319                 break;
320
321         case SEEK_END:
322                 start = flp->l_start + length;
323                 break;
324
325         case SEEK_SET:
326                 start = flp->l_start;
327                 break;
328
329         default:
330                 return EINVAL;
331         }
332
333         if (start + flp->l_len < length) {
334                 /* We don't support free'ing in the middle of the file */
335                 return EINVAL;
336         }
337
338         SCARG(&ft, fd) = fd;
339         SCARG(&ft, length) = start;
340         error = ftruncate(&ft);
341         *retval = ft.sysmsg_result;
342         return(error);
343 }
344
345 int
346 svr4_sys_open(struct svr4_sys_open_args *uap)
347 {
348         struct thread *td = curthread;  /* XXX */
349         struct proc *p = td->td_proc;
350         struct open_args cup;
351         int     error, retval;
352
353         caddr_t sg = stackgap_init();
354         CHECKALTEXIST(&sg, SCARG(uap, path));
355
356         cup.sysmsg_result = 0;
357         cup.path = uap->path;
358         cup.flags = svr4_to_bsd_flags(uap->flags);
359         cup.mode = uap->mode;
360         error = open(&cup);
361
362         if (error) {
363           /*            uprintf("svr4_open(%s, 0x%0x, 0%o): %d\n", uap->path,
364                         uap->flags, uap->mode, error);*/
365                 return error;
366         }
367
368         KKASSERT(p);
369         retval = uap->sysmsg_result = cup.sysmsg_result;
370
371         if (!(SCARG(&cup, flags) & O_NOCTTY) && SESS_LEADER(p) &&
372             !(p->p_flag & P_CONTROLT)) {
373 #if defined(NOTYET)
374                 struct filedesc *fdp = p->p_fd;
375                 struct file     *fp = fdp->fd_ofiles[retval];
376
377                 /* ignore any error, just give it a try */
378                 if (fp->f_type == DTYPE_VNODE)
379                         fo_ioctl(fp, TIOCSCTTY, (caddr_t) 0, p);
380 #endif
381         }
382         return error;
383 }
384
385 int
386 svr4_sys_open64(struct svr4_sys_open64_args *uap)
387 {
388         return svr4_sys_open((struct svr4_sys_open_args *)uap);
389 }
390
391 int
392 svr4_sys_creat(struct svr4_sys_creat_args *uap)
393 {
394         struct open_args cup;
395         int error;
396
397         caddr_t sg = stackgap_init();
398         CHECKALTEXIST(&sg, SCARG(uap, path));
399
400         SCARG(&cup, path) = SCARG(uap, path);
401         SCARG(&cup, mode) = SCARG(uap, mode);
402         SCARG(&cup, flags) = O_WRONLY | O_CREAT | O_TRUNC;
403
404         cup.sysmsg_result = 0;
405         error = open(&cup);
406         uap->sysmsg_result = cup.sysmsg_result;
407         return(error);
408 }
409
410 int
411 svr4_sys_creat64(struct svr4_sys_creat64_args *uap)
412 {
413         return svr4_sys_creat((struct svr4_sys_creat_args *)uap);
414 }
415
416 int
417 svr4_sys_llseek(struct svr4_sys_llseek_args *v)
418 {
419         struct svr4_sys_llseek_args *uap = v;
420         struct lseek_args ap;
421
422         SCARG(&ap, fd) = SCARG(uap, fd);
423
424 #if BYTE_ORDER == BIG_ENDIAN
425         SCARG(&ap, offset) = (((long long) SCARG(uap, offset1)) << 32) | 
426                 SCARG(uap, offset2);
427 #else
428         SCARG(&ap, offset) = (((long long) SCARG(uap, offset2)) << 32) | 
429                 SCARG(uap, offset1);
430 #endif
431         SCARG(&ap, whence) = SCARG(uap, whence);
432
433         return lseek(&ap);
434 }
435
436 int
437 svr4_sys_access(struct svr4_sys_access_args *uap)
438 {
439         struct access_args cup;
440         int error;
441
442         caddr_t sg = stackgap_init();
443         CHECKALTEXIST(&sg, SCARG(uap, path));
444
445         SCARG(&cup, path) = SCARG(uap, path);
446         SCARG(&cup, flags) = SCARG(uap, flags);
447         cup.sysmsg_result = 0;
448         error = access(&cup);
449         uap->sysmsg_result = cup.sysmsg_result;
450         return(error);
451 }
452
453 #if defined(NOTYET)
454 int
455 svr4_sys_pread(struct svr4_sys_pread_args *uap)
456 {
457         struct pread_args pra;
458         int error;
459
460         /*
461          * Just translate the args structure and call the NetBSD
462          * pread(2) system call (offset type is 64-bit in NetBSD).
463          */
464         SCARG(&pra, fd) = SCARG(uap, fd);
465         SCARG(&pra, buf) = SCARG(uap, buf);
466         SCARG(&pra, nbyte) = SCARG(uap, nbyte);
467         SCARG(&pra, offset) = SCARG(uap, off);
468
469         pra.sysmsg_result = 0;
470         error = pread(&pra);
471         uap->sysmsg_result = pra.sysmsg_result;
472         return(error);
473 }
474 #endif
475
476 #if defined(NOTYET)
477 int
478 svr4_sys_pread64(struct thread *td, void *v, register_t *retval)
479 {
480         struct svr4_sys_pread64_args *uap = v;
481         struct sys_pread_args pra;
482         int error;
483
484         /*
485          * Just translate the args structure and call the NetBSD
486          * pread(2) system call (offset type is 64-bit in NetBSD).
487          */
488         SCARG(&pra, fd) = SCARG(uap, fd);
489         SCARG(&pra, buf) = SCARG(uap, buf);
490         SCARG(&pra, nbyte) = SCARG(uap, nbyte);
491         SCARG(&pra, offset) = SCARG(uap, off);
492
493         pra.sysmsg_result = 0;
494         error = sys_pread(&pra, retval);
495         uap->sysmsg_result = pra.sysmsg_result;
496         return(error);
497 }
498 #endif /* NOTYET */
499
500 #if defined(NOTYET)
501 int
502 svr4_sys_pwrite(struct svr4_sys_pwrite_args *uap)
503 {
504         struct pwrite_args pwa;
505         int error;
506
507         /*
508          * Just translate the args structure and call the NetBSD
509          * pwrite(2) system call (offset type is 64-bit in NetBSD).
510          */
511         SCARG(&pwa, fd) = SCARG(uap, fd);
512         SCARG(&pwa, buf) = SCARG(uap, buf);
513         SCARG(&pwa, nbyte) = SCARG(uap, nbyte);
514         SCARG(&pwa, offset) = SCARG(uap, off);
515
516         pwa.sysmsg_result = 0;
517         error = pwrite(&pwa);
518         uap->sysmsg_result = pwa.sysmsg_result;
519         return(error);
520 }
521 #endif
522
523 #if defined(NOTYET)
524 int
525 svr4_sys_pwrite64(struct thread *td, void *v, register_t *retval)
526 {
527         struct svr4_sys_pwrite64_args *uap = v;
528         struct sys_pwrite_args pwa;
529
530         /*
531          * Just translate the args structure and call the NetBSD
532          * pwrite(2) system call (offset type is 64-bit in NetBSD).
533          */
534         SCARG(&pwa, fd) = SCARG(uap, fd);
535         SCARG(&pwa, buf) = SCARG(uap, buf);
536         SCARG(&pwa, nbyte) = SCARG(uap, nbyte);
537         SCARG(&pwa, offset) = SCARG(uap, off);
538
539         return (sys_pwrite(p, &pwa, retval));
540 }
541 #endif /* NOTYET */
542
543 int
544 svr4_sys_fcntl(struct svr4_sys_fcntl_args *uap)
545 {
546         struct thread *td = curthread;  /* XXX */
547         int                             error;
548         struct fcntl_args               fa;
549         int                             *retval;
550
551         retval = &uap->sysmsg_result;
552
553         SCARG(&fa, fd) = SCARG(uap, fd);
554         SCARG(&fa, cmd) = svr4_to_bsd_cmd(SCARG(uap, cmd));
555
556         switch (SCARG(&fa, cmd)) {
557         case F_DUPFD:
558         case F_GETFD:
559         case F_SETFD:
560                 SCARG(&fa, arg) = (long) SCARG(uap, arg);
561                 fa.sysmsg_result = 0;
562                 error = fcntl(&fa);
563                 *retval = fa.sysmsg_result;
564                 return error;
565
566         case F_GETFL:
567                 SCARG(&fa, arg) = (long) SCARG(uap, arg);
568                 error = fcntl(&fa);
569                 if (error)
570                         return error;
571                 *retval = bsd_to_svr4_flags(fa.sysmsg_result);
572                 return error;
573
574         case F_SETFL:
575                 {
576                         /*
577                          * we must save the O_ASYNC flag, as that is
578                          * handled by ioctl(_, I_SETSIG, _) emulation.
579                          */
580                         long cmd;
581                         int flags;
582
583                         DPRINTF(("Setting flags %p\n", SCARG(uap, arg)));
584                         cmd = SCARG(&fa, cmd); /* save it for a while */
585
586                         SCARG(&fa, cmd) = F_GETFL;
587                         if ((error = fcntl(&fa)) != 0)
588                                 return error;
589                         flags = fa.sysmsg_result;
590                         flags &= O_ASYNC;
591                         flags |= svr4_to_bsd_flags((u_long) SCARG(uap, arg));
592                         SCARG(&fa, cmd) = cmd;
593                         SCARG(&fa, arg) = (long) flags;
594                         error = fcntl(&fa);
595                         *retval = fa.sysmsg_result;
596                         return error;
597                 }
598
599         case F_GETLK:
600         case F_SETLK:
601         case F_SETLKW:
602                 {
603                         struct svr4_flock        ifl;
604                         struct flock            *flp, fl;
605                         caddr_t sg = stackgap_init();
606
607                         flp = stackgap_alloc(&sg, sizeof(struct flock));
608                         SCARG(&fa, arg) = (long) flp;
609
610                         error = copyin(SCARG(uap, arg), &ifl, sizeof ifl);
611                         if (error)
612                                 return error;
613
614                         svr4_to_bsd_flock(&ifl, &fl);
615
616                         error = copyout(&fl, flp, sizeof fl);
617                         if (error)
618                                 return error;
619
620                         fa.sysmsg_result = 0;
621                         error = fcntl(&fa);
622                         *retval = fa.sysmsg_result;
623                         if (error || SCARG(&fa, cmd) != F_GETLK)
624                                 return error;
625
626                         error = copyin(flp, &fl, sizeof fl);
627                         if (error)
628                                 return error;
629
630                         bsd_to_svr4_flock(&fl, &ifl);
631
632                         return copyout(&ifl, SCARG(uap, arg), sizeof ifl);
633                 }
634         case -1:
635                 switch (SCARG(uap, cmd)) {
636                 case SVR4_F_DUP2FD:
637                         {
638                                 struct dup2_args du;
639
640                                 SCARG(&du, from) = SCARG(uap, fd);
641                                 SCARG(&du, to) = (int)SCARG(uap, arg);
642                                 error = dup2(&du);
643                                 if (error)
644                                         return error;
645                                 *retval = SCARG(&du, to);
646                                 return 0;
647                         }
648
649                 case SVR4_F_FREESP:
650                         {
651                                 struct svr4_flock        ifl;
652                                 struct flock             fl;
653
654                                 error = copyin(SCARG(uap, arg), &ifl,
655                                     sizeof ifl);
656                                 if (error)
657                                         return error;
658                                 svr4_to_bsd_flock(&ifl, &fl);
659                                 return fd_truncate(td, SCARG(uap, fd), &fl, retval);
660                         }
661
662                 case SVR4_F_GETLK64:
663                 case SVR4_F_SETLK64:
664                 case SVR4_F_SETLKW64:
665                         {
666                                 struct svr4_flock64      ifl;
667                                 struct flock            *flp, fl;
668                                 caddr_t sg = stackgap_init();
669
670                                 flp = stackgap_alloc(&sg, sizeof(struct flock));
671                                 SCARG(&fa, arg) = (long) flp;
672
673                                 error = copyin(SCARG(uap, arg), &ifl,
674                                     sizeof ifl);
675                                 if (error)
676                                         return error;
677
678                                 svr4_to_bsd_flock64(&ifl, &fl);
679
680                                 error = copyout(&fl, flp, sizeof fl);
681                                 if (error)
682                                         return error;
683
684                                 fa.sysmsg_result = 0;
685                                 error = fcntl(&fa);
686                                 *retval = fa.sysmsg_result;
687                                 if (error || SCARG(&fa, cmd) != F_GETLK)
688                                         return error;
689
690                                 error = copyin(flp, &fl, sizeof fl);
691                                 if (error)
692                                         return error;
693
694                                 bsd_to_svr4_flock64(&fl, &ifl);
695
696                                 return copyout(&ifl, SCARG(uap, arg),
697                                     sizeof ifl);
698                         }
699
700                 case SVR4_F_FREESP64:
701                         {
702                                 struct svr4_flock64      ifl;
703                                 struct flock             fl;
704
705                                 error = copyin(SCARG(uap, arg), &ifl,
706                                     sizeof ifl);
707                                 if (error)
708                                         return error;
709                                 svr4_to_bsd_flock64(&ifl, &fl);
710                                 return fd_truncate(td, SCARG(uap, fd), &fl, retval);
711                         }
712
713                 case SVR4_F_REVOKE:
714                         return fd_revoke(td, SCARG(uap, fd));
715
716                 default:
717                         return ENOSYS;
718                 }
719
720         default:
721                 return ENOSYS;
722         }
723 }