linux_file.c revision 315550
1/*-
2 * Copyright (c) 1994-1995 S��ren Schmidt
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 *    notice, this list of conditions and the following disclaimer
10 *    in this position and unchanged.
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. The name of the author may not be used to endorse or promote products
15 *    derived from this software without specific prior written permission
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#include <sys/cdefs.h>
30__FBSDID("$FreeBSD: stable/11/sys/compat/linux/linux_file.c 315550 2017-03-19 14:36:19Z trasz $");
31
32#include "opt_compat.h"
33
34#include <sys/param.h>
35#include <sys/systm.h>
36#include <sys/capsicum.h>
37#include <sys/conf.h>
38#include <sys/dirent.h>
39#include <sys/fcntl.h>
40#include <sys/file.h>
41#include <sys/filedesc.h>
42#include <sys/lock.h>
43#include <sys/malloc.h>
44#include <sys/mount.h>
45#include <sys/mutex.h>
46#include <sys/namei.h>
47#include <sys/proc.h>
48#include <sys/stat.h>
49#include <sys/sx.h>
50#include <sys/syscallsubr.h>
51#include <sys/sysproto.h>
52#include <sys/tty.h>
53#include <sys/unistd.h>
54#include <sys/vnode.h>
55
56#ifdef COMPAT_LINUX32
57#include <machine/../linux32/linux.h>
58#include <machine/../linux32/linux32_proto.h>
59#else
60#include <machine/../linux/linux.h>
61#include <machine/../linux/linux_proto.h>
62#endif
63#include <compat/linux/linux_misc.h>
64#include <compat/linux/linux_util.h>
65#include <compat/linux/linux_file.h>
66
67static int	linux_common_open(struct thread *, int, char *, int, int);
68static int	linux_getdents_error(struct thread *, int, int);
69
70
71int
72linux_creat(struct thread *td, struct linux_creat_args *args)
73{
74	char *path;
75	int error;
76
77	LCONVPATHEXIST(td, args->path, &path);
78#ifdef DEBUG
79	if (ldebug(creat))
80		printf(ARGS(creat, "%s, %d"), path, args->mode);
81#endif
82	error = kern_openat(td, AT_FDCWD, path, UIO_SYSSPACE,
83	    O_WRONLY | O_CREAT | O_TRUNC, args->mode);
84	LFREEPATH(path);
85	return (error);
86}
87
88
89static int
90linux_common_open(struct thread *td, int dirfd, char *path, int l_flags, int mode)
91{
92	cap_rights_t rights;
93	struct proc *p = td->td_proc;
94	struct file *fp;
95	int fd;
96	int bsd_flags, error;
97
98	bsd_flags = 0;
99	switch (l_flags & LINUX_O_ACCMODE) {
100	case LINUX_O_WRONLY:
101		bsd_flags |= O_WRONLY;
102		break;
103	case LINUX_O_RDWR:
104		bsd_flags |= O_RDWR;
105		break;
106	default:
107		bsd_flags |= O_RDONLY;
108	}
109	if (l_flags & LINUX_O_NDELAY)
110		bsd_flags |= O_NONBLOCK;
111	if (l_flags & LINUX_O_APPEND)
112		bsd_flags |= O_APPEND;
113	if (l_flags & LINUX_O_SYNC)
114		bsd_flags |= O_FSYNC;
115	if (l_flags & LINUX_O_NONBLOCK)
116		bsd_flags |= O_NONBLOCK;
117	if (l_flags & LINUX_FASYNC)
118		bsd_flags |= O_ASYNC;
119	if (l_flags & LINUX_O_CREAT)
120		bsd_flags |= O_CREAT;
121	if (l_flags & LINUX_O_TRUNC)
122		bsd_flags |= O_TRUNC;
123	if (l_flags & LINUX_O_EXCL)
124		bsd_flags |= O_EXCL;
125	if (l_flags & LINUX_O_NOCTTY)
126		bsd_flags |= O_NOCTTY;
127	if (l_flags & LINUX_O_DIRECT)
128		bsd_flags |= O_DIRECT;
129	if (l_flags & LINUX_O_NOFOLLOW)
130		bsd_flags |= O_NOFOLLOW;
131	if (l_flags & LINUX_O_DIRECTORY)
132		bsd_flags |= O_DIRECTORY;
133	/* XXX LINUX_O_NOATIME: unable to be easily implemented. */
134
135	error = kern_openat(td, dirfd, path, UIO_SYSSPACE, bsd_flags, mode);
136	if (error != 0)
137		goto done;
138	if (bsd_flags & O_NOCTTY)
139		goto done;
140
141	/*
142	 * XXX In between kern_open() and fget(), another process
143	 * having the same filedesc could use that fd without
144	 * checking below.
145	*/
146	fd = td->td_retval[0];
147	if (fget(td, fd, cap_rights_init(&rights, CAP_IOCTL), &fp) == 0) {
148		if (fp->f_type != DTYPE_VNODE) {
149			fdrop(fp, td);
150			goto done;
151		}
152		sx_slock(&proctree_lock);
153		PROC_LOCK(p);
154		if (SESS_LEADER(p) && !(p->p_flag & P_CONTROLT)) {
155			PROC_UNLOCK(p);
156			sx_sunlock(&proctree_lock);
157			/* XXXPJD: Verify if TIOCSCTTY is allowed. */
158			(void) fo_ioctl(fp, TIOCSCTTY, (caddr_t) 0,
159			    td->td_ucred, td);
160		} else {
161			PROC_UNLOCK(p);
162			sx_sunlock(&proctree_lock);
163		}
164		fdrop(fp, td);
165	}
166
167done:
168#ifdef DEBUG
169	if (ldebug(open))
170		printf(LMSG("open returns error %d"), error);
171#endif
172	LFREEPATH(path);
173	return (error);
174}
175
176int
177linux_openat(struct thread *td, struct linux_openat_args *args)
178{
179	char *path;
180	int dfd;
181
182	dfd = (args->dfd == LINUX_AT_FDCWD) ? AT_FDCWD : args->dfd;
183	if (args->flags & LINUX_O_CREAT)
184		LCONVPATH_AT(td, args->filename, &path, 1, dfd);
185	else
186		LCONVPATH_AT(td, args->filename, &path, 0, dfd);
187#ifdef DEBUG
188	if (ldebug(openat))
189		printf(ARGS(openat, "%i, %s, 0x%x, 0x%x"), args->dfd,
190		    path, args->flags, args->mode);
191#endif
192	return (linux_common_open(td, dfd, path, args->flags, args->mode));
193}
194
195int
196linux_open(struct thread *td, struct linux_open_args *args)
197{
198	char *path;
199
200	if (args->flags & LINUX_O_CREAT)
201		LCONVPATHCREAT(td, args->path, &path);
202	else
203		LCONVPATHEXIST(td, args->path, &path);
204#ifdef DEBUG
205	if (ldebug(open))
206		printf(ARGS(open, "%s, 0x%x, 0x%x"),
207		    path, args->flags, args->mode);
208#endif
209	return (linux_common_open(td, AT_FDCWD, path, args->flags, args->mode));
210}
211
212int
213linux_lseek(struct thread *td, struct linux_lseek_args *args)
214{
215
216#ifdef DEBUG
217	if (ldebug(lseek))
218		printf(ARGS(lseek, "%d, %ld, %d"),
219		    args->fdes, (long)args->off, args->whence);
220#endif
221	return (kern_lseek(td, args->fdes, args->off, args->whence));
222}
223
224#if defined(__i386__) || (defined(__amd64__) && defined(COMPAT_LINUX32))
225int
226linux_llseek(struct thread *td, struct linux_llseek_args *args)
227{
228	int error;
229	off_t off;
230
231#ifdef DEBUG
232	if (ldebug(llseek))
233		printf(ARGS(llseek, "%d, %d:%d, %d"),
234		    args->fd, args->ohigh, args->olow, args->whence);
235#endif
236	off = (args->olow) | (((off_t) args->ohigh) << 32);
237
238	error = kern_lseek(td, args->fd, off, args->whence);
239	if (error != 0)
240		return (error);
241
242	error = copyout(td->td_retval, args->res, sizeof(off_t));
243	if (error != 0)
244		return (error);
245
246	td->td_retval[0] = 0;
247	return (0);
248}
249#endif /* __i386__ || (__amd64__ && COMPAT_LINUX32) */
250
251/*
252 * Note that linux_getdents(2) and linux_getdents64(2) have the same
253 * arguments. They only differ in the definition of struct dirent they
254 * operate on.
255 * Note that linux_readdir(2) is a special case of linux_getdents(2)
256 * where count is always equals 1, meaning that the buffer is one
257 * dirent-structure in size and that the code can't handle more anyway.
258 * Note that linux_readdir(2) can't be implemented by means of linux_getdents(2)
259 * as in case when the *dent buffer size is equal to 1 linux_getdents(2) will
260 * trash user stack.
261 */
262
263static int
264linux_getdents_error(struct thread *td, int fd, int err)
265{
266	cap_rights_t rights;
267	struct vnode *vp;
268	struct file *fp;
269	int error;
270
271	/* Linux return ENOTDIR in case when fd is not a directory. */
272	error = getvnode(td, fd, cap_rights_init(&rights, CAP_READ), &fp);
273	if (error != 0)
274		return (error);
275	vp = fp->f_vnode;
276	if (vp->v_type != VDIR) {
277		fdrop(fp, td);
278		return (ENOTDIR);
279	}
280	fdrop(fp, td);
281	return (err);
282}
283
284struct l_dirent {
285	l_ulong		d_ino;
286	l_off_t		d_off;
287	l_ushort	d_reclen;
288	char		d_name[LINUX_NAME_MAX + 1];
289};
290
291struct l_dirent64 {
292	uint64_t	d_ino;
293	int64_t		d_off;
294	l_ushort	d_reclen;
295	u_char		d_type;
296	char		d_name[LINUX_NAME_MAX + 1];
297};
298
299/*
300 * Linux uses the last byte in the dirent buffer to store d_type,
301 * at least glibc-2.7 requires it. That is why l_dirent is padded with 2 bytes.
302 */
303#define LINUX_RECLEN(namlen)						\
304    roundup(offsetof(struct l_dirent, d_name) + (namlen) + 2, sizeof(l_ulong))
305
306#define LINUX_RECLEN64(namlen)						\
307    roundup(offsetof(struct l_dirent64, d_name) + (namlen) + 1,		\
308    sizeof(uint64_t))
309
310#define	LINUX_DIRBLKSIZ		512
311
312/*
313 * Linux l_dirent is bigger than FreeBSD dirent, thus the buffer size
314 * passed to kern_getdirentries() must be smaller than the one passed
315 * to linux_getdents() by certain factor.
316 */
317#define	LINUX_RECLEN_RATIO(X)	X * offsetof(struct dirent, d_name) /	\
318    offsetof(struct l_dirent, d_name);
319#define	LINUX_RECLEN64_RATIO(X)	X * offsetof(struct dirent, d_name) / 	\
320    offsetof(struct l_dirent64, d_name);
321
322int
323linux_getdents(struct thread *td, struct linux_getdents_args *args)
324{
325	struct dirent *bdp;
326	caddr_t inp, buf;		/* BSD-format */
327	int len, reclen;		/* BSD-format */
328	caddr_t outp;			/* Linux-format */
329	int resid, linuxreclen;		/* Linux-format */
330	caddr_t lbuf;			/* Linux-format */
331	long base;
332	struct l_dirent *linux_dirent;
333	int buflen, error;
334	size_t retval;
335
336#ifdef DEBUG
337	if (ldebug(getdents))
338		printf(ARGS(getdents, "%d, *, %d"), args->fd, args->count);
339#endif
340	buflen = LINUX_RECLEN_RATIO(args->count);
341	buflen = min(buflen, MAXBSIZE);
342	buf = malloc(buflen, M_TEMP, M_WAITOK);
343
344	error = kern_getdirentries(td, args->fd, buf, buflen,
345	    &base, NULL, UIO_SYSSPACE);
346	if (error != 0) {
347		error = linux_getdents_error(td, args->fd, error);
348		goto out1;
349	}
350
351	lbuf = malloc(LINUX_RECLEN(LINUX_NAME_MAX), M_TEMP, M_WAITOK | M_ZERO);
352
353	len = td->td_retval[0];
354	inp = buf;
355	outp = (caddr_t)args->dent;
356	resid = args->count;
357	retval = 0;
358
359	while (len > 0) {
360		bdp = (struct dirent *) inp;
361		reclen = bdp->d_reclen;
362		linuxreclen = LINUX_RECLEN(bdp->d_namlen);
363		/*
364		 * No more space in the user supplied dirent buffer.
365		 * Return EINVAL.
366		 */
367		if (resid < linuxreclen) {
368			error = EINVAL;
369			goto out;
370		}
371
372		linux_dirent = (struct l_dirent*)lbuf;
373		linux_dirent->d_ino = bdp->d_fileno;
374		linux_dirent->d_off = base + reclen;
375		linux_dirent->d_reclen = linuxreclen;
376		/*
377		 * Copy d_type to last byte of l_dirent buffer
378		 */
379		lbuf[linuxreclen - 1] = bdp->d_type;
380		strlcpy(linux_dirent->d_name, bdp->d_name,
381		    linuxreclen - offsetof(struct l_dirent, d_name)-1);
382		error = copyout(linux_dirent, outp, linuxreclen);
383		if (error != 0)
384			goto out;
385
386		inp += reclen;
387		base += reclen;
388		len -= reclen;
389
390		retval += linuxreclen;
391		outp += linuxreclen;
392		resid -= linuxreclen;
393	}
394	td->td_retval[0] = retval;
395
396out:
397	free(lbuf, M_LINUX);
398out1:
399	free(buf, M_LINUX);
400	return (error);
401}
402
403int
404linux_getdents64(struct thread *td, struct linux_getdents64_args *args)
405{
406	struct dirent *bdp;
407	caddr_t inp, buf;		/* BSD-format */
408	int len, reclen;		/* BSD-format */
409	caddr_t outp;			/* Linux-format */
410	int resid, linuxreclen;		/* Linux-format */
411	caddr_t lbuf;			/* Linux-format */
412	long base;
413	struct l_dirent64 *linux_dirent64;
414	int buflen, error;
415	size_t retval;
416
417#ifdef DEBUG
418	if (ldebug(getdents64))
419		uprintf(ARGS(getdents64, "%d, *, %d"), args->fd, args->count);
420#endif
421	buflen = LINUX_RECLEN64_RATIO(args->count);
422	buflen = min(buflen, MAXBSIZE);
423	buf = malloc(buflen, M_TEMP, M_WAITOK);
424
425	error = kern_getdirentries(td, args->fd, buf, buflen,
426	    &base, NULL, UIO_SYSSPACE);
427	if (error != 0) {
428		error = linux_getdents_error(td, args->fd, error);
429		goto out1;
430	}
431
432	lbuf = malloc(LINUX_RECLEN64(LINUX_NAME_MAX), M_TEMP, M_WAITOK | M_ZERO);
433
434	len = td->td_retval[0];
435	inp = buf;
436	outp = (caddr_t)args->dirent;
437	resid = args->count;
438	retval = 0;
439
440	while (len > 0) {
441		bdp = (struct dirent *) inp;
442		reclen = bdp->d_reclen;
443		linuxreclen = LINUX_RECLEN64(bdp->d_namlen);
444		/*
445		 * No more space in the user supplied dirent buffer.
446		 * Return EINVAL.
447		 */
448		if (resid < linuxreclen) {
449			error = EINVAL;
450			goto out;
451		}
452
453		linux_dirent64 = (struct l_dirent64*)lbuf;
454		linux_dirent64->d_ino = bdp->d_fileno;
455		linux_dirent64->d_off = base + reclen;
456		linux_dirent64->d_reclen = linuxreclen;
457		linux_dirent64->d_type = bdp->d_type;
458		strlcpy(linux_dirent64->d_name, bdp->d_name,
459		    linuxreclen - offsetof(struct l_dirent64, d_name));
460		error = copyout(linux_dirent64, outp, linuxreclen);
461		if (error != 0)
462			goto out;
463
464		inp += reclen;
465		base += reclen;
466		len -= reclen;
467
468		retval += linuxreclen;
469		outp += linuxreclen;
470		resid -= linuxreclen;
471	}
472	td->td_retval[0] = retval;
473
474out:
475	free(lbuf, M_TEMP);
476out1:
477	free(buf, M_TEMP);
478	return (error);
479}
480
481#if defined(__i386__) || (defined(__amd64__) && defined(COMPAT_LINUX32))
482int
483linux_readdir(struct thread *td, struct linux_readdir_args *args)
484{
485	struct dirent *bdp;
486	caddr_t buf;			/* BSD-format */
487	int linuxreclen;		/* Linux-format */
488	caddr_t lbuf;			/* Linux-format */
489	long base;
490	struct l_dirent *linux_dirent;
491	int buflen, error;
492
493#ifdef DEBUG
494	if (ldebug(readdir))
495		printf(ARGS(readdir, "%d, *"), args->fd);
496#endif
497	buflen = LINUX_RECLEN(LINUX_NAME_MAX);
498	buflen = LINUX_RECLEN_RATIO(buflen);
499	buf = malloc(buflen, M_TEMP, M_WAITOK);
500
501	error = kern_getdirentries(td, args->fd, buf, buflen,
502	    &base, NULL, UIO_SYSSPACE);
503	if (error != 0) {
504		error = linux_getdents_error(td, args->fd, error);
505		goto out;
506	}
507	if (td->td_retval[0] == 0)
508		goto out;
509
510	lbuf = malloc(LINUX_RECLEN(LINUX_NAME_MAX), M_TEMP, M_WAITOK | M_ZERO);
511
512	bdp = (struct dirent *) buf;
513	linuxreclen = LINUX_RECLEN(bdp->d_namlen);
514
515	linux_dirent = (struct l_dirent*)lbuf;
516	linux_dirent->d_ino = bdp->d_fileno;
517	linux_dirent->d_off = linuxreclen;
518	linux_dirent->d_reclen = bdp->d_namlen;
519	strlcpy(linux_dirent->d_name, bdp->d_name,
520	    linuxreclen - offsetof(struct l_dirent, d_name));
521	error = copyout(linux_dirent, args->dent, linuxreclen);
522	if (error == 0)
523		td->td_retval[0] = linuxreclen;
524
525	free(lbuf, M_LINUX);
526out:
527	free(buf, M_LINUX);
528	return (error);
529}
530#endif /* __i386__ || (__amd64__ && COMPAT_LINUX32) */
531
532
533/*
534 * These exist mainly for hooks for doing /compat/linux translation.
535 */
536
537int
538linux_access(struct thread *td, struct linux_access_args *args)
539{
540	char *path;
541	int error;
542
543	/* linux convention */
544	if (args->amode & ~(F_OK | X_OK | W_OK | R_OK))
545		return (EINVAL);
546
547	LCONVPATHEXIST(td, args->path, &path);
548
549#ifdef DEBUG
550	if (ldebug(access))
551		printf(ARGS(access, "%s, %d"), path, args->amode);
552#endif
553	error = kern_accessat(td, AT_FDCWD, path, UIO_SYSSPACE, 0,
554	    args->amode);
555	LFREEPATH(path);
556
557	return (error);
558}
559
560int
561linux_faccessat(struct thread *td, struct linux_faccessat_args *args)
562{
563	char *path;
564	int error, dfd;
565
566	/* linux convention */
567	if (args->amode & ~(F_OK | X_OK | W_OK | R_OK))
568		return (EINVAL);
569
570	dfd = (args->dfd == LINUX_AT_FDCWD) ? AT_FDCWD : args->dfd;
571	LCONVPATHEXIST_AT(td, args->filename, &path, dfd);
572
573#ifdef DEBUG
574	if (ldebug(access))
575		printf(ARGS(access, "%s, %d"), path, args->amode);
576#endif
577
578	error = kern_accessat(td, dfd, path, UIO_SYSSPACE, 0, args->amode);
579	LFREEPATH(path);
580
581	return (error);
582}
583
584int
585linux_unlink(struct thread *td, struct linux_unlink_args *args)
586{
587	char *path;
588	int error;
589	struct stat st;
590
591	LCONVPATHEXIST(td, args->path, &path);
592
593#ifdef DEBUG
594	if (ldebug(unlink))
595		printf(ARGS(unlink, "%s"), path);
596#endif
597
598	error = kern_unlinkat(td, AT_FDCWD, path, UIO_SYSSPACE, 0);
599	if (error == EPERM) {
600		/* Introduce POSIX noncompliant behaviour of Linux */
601		if (kern_statat(td, 0, AT_FDCWD, path, UIO_SYSSPACE, &st,
602		    NULL) == 0) {
603			if (S_ISDIR(st.st_mode))
604				error = EISDIR;
605		}
606	}
607	LFREEPATH(path);
608	return (error);
609}
610
611int
612linux_unlinkat(struct thread *td, struct linux_unlinkat_args *args)
613{
614	char *path;
615	int error, dfd;
616	struct stat st;
617
618	if (args->flag & ~LINUX_AT_REMOVEDIR)
619		return (EINVAL);
620
621	dfd = (args->dfd == LINUX_AT_FDCWD) ? AT_FDCWD : args->dfd;
622	LCONVPATHEXIST_AT(td, args->pathname, &path, dfd);
623
624#ifdef DEBUG
625	if (ldebug(unlinkat))
626		printf(ARGS(unlinkat, "%s"), path);
627#endif
628
629	if (args->flag & LINUX_AT_REMOVEDIR)
630		error = kern_rmdirat(td, dfd, path, UIO_SYSSPACE);
631	else
632		error = kern_unlinkat(td, dfd, path, UIO_SYSSPACE, 0);
633	if (error == EPERM && !(args->flag & LINUX_AT_REMOVEDIR)) {
634		/* Introduce POSIX noncompliant behaviour of Linux */
635		if (kern_statat(td, AT_SYMLINK_NOFOLLOW, dfd, path,
636		    UIO_SYSSPACE, &st, NULL) == 0 && S_ISDIR(st.st_mode))
637			error = EISDIR;
638	}
639	LFREEPATH(path);
640	return (error);
641}
642int
643linux_chdir(struct thread *td, struct linux_chdir_args *args)
644{
645	char *path;
646	int error;
647
648	LCONVPATHEXIST(td, args->path, &path);
649
650#ifdef DEBUG
651	if (ldebug(chdir))
652		printf(ARGS(chdir, "%s"), path);
653#endif
654	error = kern_chdir(td, path, UIO_SYSSPACE);
655	LFREEPATH(path);
656	return (error);
657}
658
659int
660linux_chmod(struct thread *td, struct linux_chmod_args *args)
661{
662	char *path;
663	int error;
664
665	LCONVPATHEXIST(td, args->path, &path);
666
667#ifdef DEBUG
668	if (ldebug(chmod))
669		printf(ARGS(chmod, "%s, %d"), path, args->mode);
670#endif
671	error = kern_fchmodat(td, AT_FDCWD, path, UIO_SYSSPACE,
672	    args->mode, 0);
673	LFREEPATH(path);
674	return (error);
675}
676
677int
678linux_fchmodat(struct thread *td, struct linux_fchmodat_args *args)
679{
680	char *path;
681	int error, dfd;
682
683	dfd = (args->dfd == LINUX_AT_FDCWD) ? AT_FDCWD : args->dfd;
684	LCONVPATHEXIST_AT(td, args->filename, &path, dfd);
685
686#ifdef DEBUG
687	if (ldebug(fchmodat))
688		printf(ARGS(fchmodat, "%s, %d"), path, args->mode);
689#endif
690
691	error = kern_fchmodat(td, dfd, path, UIO_SYSSPACE, args->mode, 0);
692	LFREEPATH(path);
693	return (error);
694}
695
696int
697linux_mkdir(struct thread *td, struct linux_mkdir_args *args)
698{
699	char *path;
700	int error;
701
702	LCONVPATHCREAT(td, args->path, &path);
703
704#ifdef DEBUG
705	if (ldebug(mkdir))
706		printf(ARGS(mkdir, "%s, %d"), path, args->mode);
707#endif
708	error = kern_mkdirat(td, AT_FDCWD, path, UIO_SYSSPACE, args->mode);
709	LFREEPATH(path);
710	return (error);
711}
712
713int
714linux_mkdirat(struct thread *td, struct linux_mkdirat_args *args)
715{
716	char *path;
717	int error, dfd;
718
719	dfd = (args->dfd == LINUX_AT_FDCWD) ? AT_FDCWD : args->dfd;
720	LCONVPATHCREAT_AT(td, args->pathname, &path, dfd);
721
722#ifdef DEBUG
723	if (ldebug(mkdirat))
724		printf(ARGS(mkdirat, "%s, %d"), path, args->mode);
725#endif
726	error = kern_mkdirat(td, dfd, path, UIO_SYSSPACE, args->mode);
727	LFREEPATH(path);
728	return (error);
729}
730
731int
732linux_rmdir(struct thread *td, struct linux_rmdir_args *args)
733{
734	char *path;
735	int error;
736
737	LCONVPATHEXIST(td, args->path, &path);
738
739#ifdef DEBUG
740	if (ldebug(rmdir))
741		printf(ARGS(rmdir, "%s"), path);
742#endif
743	error = kern_rmdirat(td, AT_FDCWD, path, UIO_SYSSPACE);
744	LFREEPATH(path);
745	return (error);
746}
747
748int
749linux_rename(struct thread *td, struct linux_rename_args *args)
750{
751	char *from, *to;
752	int error;
753
754	LCONVPATHEXIST(td, args->from, &from);
755	/* Expand LCONVPATHCREATE so that `from' can be freed on errors */
756	error = linux_emul_convpath(td, args->to, UIO_USERSPACE, &to, 1, AT_FDCWD);
757	if (to == NULL) {
758		LFREEPATH(from);
759		return (error);
760	}
761
762#ifdef DEBUG
763	if (ldebug(rename))
764		printf(ARGS(rename, "%s, %s"), from, to);
765#endif
766	error = kern_renameat(td, AT_FDCWD, from, AT_FDCWD, to, UIO_SYSSPACE);
767	LFREEPATH(from);
768	LFREEPATH(to);
769	return (error);
770}
771
772int
773linux_renameat(struct thread *td, struct linux_renameat_args *args)
774{
775	char *from, *to;
776	int error, olddfd, newdfd;
777
778	olddfd = (args->olddfd == LINUX_AT_FDCWD) ? AT_FDCWD : args->olddfd;
779	newdfd = (args->newdfd == LINUX_AT_FDCWD) ? AT_FDCWD : args->newdfd;
780	LCONVPATHEXIST_AT(td, args->oldname, &from, olddfd);
781	/* Expand LCONVPATHCREATE so that `from' can be freed on errors */
782	error = linux_emul_convpath(td, args->newname, UIO_USERSPACE, &to, 1, newdfd);
783	if (to == NULL) {
784		LFREEPATH(from);
785		return (error);
786	}
787
788#ifdef DEBUG
789	if (ldebug(renameat))
790		printf(ARGS(renameat, "%s, %s"), from, to);
791#endif
792	error = kern_renameat(td, olddfd, from, newdfd, to, UIO_SYSSPACE);
793	LFREEPATH(from);
794	LFREEPATH(to);
795	return (error);
796}
797
798int
799linux_symlink(struct thread *td, struct linux_symlink_args *args)
800{
801	char *path, *to;
802	int error;
803
804	LCONVPATHEXIST(td, args->path, &path);
805	/* Expand LCONVPATHCREATE so that `path' can be freed on errors */
806	error = linux_emul_convpath(td, args->to, UIO_USERSPACE, &to, 1, AT_FDCWD);
807	if (to == NULL) {
808		LFREEPATH(path);
809		return (error);
810	}
811
812#ifdef DEBUG
813	if (ldebug(symlink))
814		printf(ARGS(symlink, "%s, %s"), path, to);
815#endif
816	error = kern_symlinkat(td, path, AT_FDCWD, to, UIO_SYSSPACE);
817	LFREEPATH(path);
818	LFREEPATH(to);
819	return (error);
820}
821
822int
823linux_symlinkat(struct thread *td, struct linux_symlinkat_args *args)
824{
825	char *path, *to;
826	int error, dfd;
827
828	dfd = (args->newdfd == LINUX_AT_FDCWD) ? AT_FDCWD : args->newdfd;
829	LCONVPATHEXIST_AT(td, args->oldname, &path, dfd);
830	/* Expand LCONVPATHCREATE so that `path' can be freed on errors */
831	error = linux_emul_convpath(td, args->newname, UIO_USERSPACE, &to, 1, dfd);
832	if (to == NULL) {
833		LFREEPATH(path);
834		return (error);
835	}
836
837#ifdef DEBUG
838	if (ldebug(symlinkat))
839		printf(ARGS(symlinkat, "%s, %s"), path, to);
840#endif
841
842	error = kern_symlinkat(td, path, dfd, to, UIO_SYSSPACE);
843	LFREEPATH(path);
844	LFREEPATH(to);
845	return (error);
846}
847
848int
849linux_readlink(struct thread *td, struct linux_readlink_args *args)
850{
851	char *name;
852	int error;
853
854	LCONVPATHEXIST(td, args->name, &name);
855
856#ifdef DEBUG
857	if (ldebug(readlink))
858		printf(ARGS(readlink, "%s, %p, %d"), name, (void *)args->buf,
859		    args->count);
860#endif
861	error = kern_readlinkat(td, AT_FDCWD, name, UIO_SYSSPACE,
862	    args->buf, UIO_USERSPACE, args->count);
863	LFREEPATH(name);
864	return (error);
865}
866
867int
868linux_readlinkat(struct thread *td, struct linux_readlinkat_args *args)
869{
870	char *name;
871	int error, dfd;
872
873	dfd = (args->dfd == LINUX_AT_FDCWD) ? AT_FDCWD : args->dfd;
874	LCONVPATHEXIST_AT(td, args->path, &name, dfd);
875
876#ifdef DEBUG
877	if (ldebug(readlinkat))
878		printf(ARGS(readlinkat, "%s, %p, %d"), name, (void *)args->buf,
879		    args->bufsiz);
880#endif
881
882	error = kern_readlinkat(td, dfd, name, UIO_SYSSPACE, args->buf,
883	    UIO_USERSPACE, args->bufsiz);
884	LFREEPATH(name);
885	return (error);
886}
887
888int
889linux_truncate(struct thread *td, struct linux_truncate_args *args)
890{
891	char *path;
892	int error;
893
894	LCONVPATHEXIST(td, args->path, &path);
895
896#ifdef DEBUG
897	if (ldebug(truncate))
898		printf(ARGS(truncate, "%s, %ld"), path, (long)args->length);
899#endif
900
901	error = kern_truncate(td, path, UIO_SYSSPACE, args->length);
902	LFREEPATH(path);
903	return (error);
904}
905
906#if defined(__i386__) || (defined(__amd64__) && defined(COMPAT_LINUX32))
907int
908linux_truncate64(struct thread *td, struct linux_truncate64_args *args)
909{
910	char *path;
911	int error;
912
913	LCONVPATHEXIST(td, args->path, &path);
914
915#ifdef DEBUG
916	if (ldebug(truncate64))
917		printf(ARGS(truncate64, "%s, %jd"), path, args->length);
918#endif
919
920	error = kern_truncate(td, path, UIO_SYSSPACE, args->length);
921	LFREEPATH(path);
922	return (error);
923}
924#endif /* __i386__ || (__amd64__ && COMPAT_LINUX32) */
925
926int
927linux_ftruncate(struct thread *td, struct linux_ftruncate_args *args)
928{
929
930	return (kern_ftruncate(td, args->fd, args->length));
931}
932
933int
934linux_link(struct thread *td, struct linux_link_args *args)
935{
936	char *path, *to;
937	int error;
938
939	LCONVPATHEXIST(td, args->path, &path);
940	/* Expand LCONVPATHCREATE so that `path' can be freed on errors */
941	error = linux_emul_convpath(td, args->to, UIO_USERSPACE, &to, 1, AT_FDCWD);
942	if (to == NULL) {
943		LFREEPATH(path);
944		return (error);
945	}
946
947#ifdef DEBUG
948	if (ldebug(link))
949		printf(ARGS(link, "%s, %s"), path, to);
950#endif
951	error = kern_linkat(td, AT_FDCWD, AT_FDCWD, path, to, UIO_SYSSPACE,
952	    FOLLOW);
953	LFREEPATH(path);
954	LFREEPATH(to);
955	return (error);
956}
957
958int
959linux_linkat(struct thread *td, struct linux_linkat_args *args)
960{
961	char *path, *to;
962	int error, olddfd, newdfd, follow;
963
964	if (args->flag & ~LINUX_AT_SYMLINK_FOLLOW)
965		return (EINVAL);
966
967	olddfd = (args->olddfd == LINUX_AT_FDCWD) ? AT_FDCWD : args->olddfd;
968	newdfd = (args->newdfd == LINUX_AT_FDCWD) ? AT_FDCWD : args->newdfd;
969	LCONVPATHEXIST_AT(td, args->oldname, &path, olddfd);
970	/* Expand LCONVPATHCREATE so that `path' can be freed on errors */
971	error = linux_emul_convpath(td, args->newname, UIO_USERSPACE, &to, 1, newdfd);
972	if (to == NULL) {
973		LFREEPATH(path);
974		return (error);
975	}
976
977#ifdef DEBUG
978	if (ldebug(linkat))
979		printf(ARGS(linkat, "%i, %s, %i, %s, %i"), args->olddfd, path,
980			args->newdfd, to, args->flag);
981#endif
982
983	follow = (args->flag & LINUX_AT_SYMLINK_FOLLOW) == 0 ? NOFOLLOW :
984	    FOLLOW;
985	error = kern_linkat(td, olddfd, newdfd, path, to, UIO_SYSSPACE, follow);
986	LFREEPATH(path);
987	LFREEPATH(to);
988	return (error);
989}
990
991int
992linux_fdatasync(td, uap)
993	struct thread *td;
994	struct linux_fdatasync_args *uap;
995{
996
997	return (kern_fsync(td, uap->fd, false));
998}
999
1000int
1001linux_pread(td, uap)
1002	struct thread *td;
1003	struct linux_pread_args *uap;
1004{
1005	struct pread_args bsd;
1006	cap_rights_t rights;
1007	struct vnode *vp;
1008	int error;
1009
1010	bsd.fd = uap->fd;
1011	bsd.buf = uap->buf;
1012	bsd.nbyte = uap->nbyte;
1013	bsd.offset = uap->offset;
1014	error = sys_pread(td, &bsd);
1015	if (error == 0) {
1016		/* This seems to violate POSIX but linux does it */
1017		error = fgetvp(td, uap->fd,
1018		    cap_rights_init(&rights, CAP_PREAD), &vp);
1019		if (error != 0)
1020			return (error);
1021		if (vp->v_type == VDIR) {
1022			vrele(vp);
1023			return (EISDIR);
1024		}
1025		vrele(vp);
1026	}
1027	return (error);
1028}
1029
1030int
1031linux_pwrite(td, uap)
1032	struct thread *td;
1033	struct linux_pwrite_args *uap;
1034{
1035	struct pwrite_args bsd;
1036
1037	bsd.fd = uap->fd;
1038	bsd.buf = uap->buf;
1039	bsd.nbyte = uap->nbyte;
1040	bsd.offset = uap->offset;
1041	return (sys_pwrite(td, &bsd));
1042}
1043
1044int
1045linux_preadv(struct thread *td, struct linux_preadv_args *uap)
1046{
1047	struct uio *auio;
1048	int error;
1049	off_t offset;
1050
1051	/*
1052	 * According http://man7.org/linux/man-pages/man2/preadv.2.html#NOTES
1053	 * pos_l and pos_h, respectively, contain the
1054	 * low order and high order 32 bits of offset.
1055	 */
1056	offset = (((off_t)uap->pos_h << (sizeof(offset) * 4)) <<
1057	    (sizeof(offset) * 4)) | uap->pos_l;
1058	if (offset < 0)
1059		return (EINVAL);
1060#ifdef COMPAT_LINUX32
1061	error = linux32_copyinuio(PTRIN(uap->vec), uap->vlen, &auio);
1062#else
1063	error = copyinuio(uap->vec, uap->vlen, &auio);
1064#endif
1065	if (error != 0)
1066		return (error);
1067	error = kern_preadv(td, uap->fd, auio, offset);
1068	free(auio, M_IOV);
1069	return (error);
1070}
1071
1072int
1073linux_pwritev(struct thread *td, struct linux_pwritev_args *uap)
1074{
1075	struct uio *auio;
1076	int error;
1077	off_t offset;
1078
1079	/*
1080	 * According http://man7.org/linux/man-pages/man2/pwritev.2.html#NOTES
1081	 * pos_l and pos_h, respectively, contain the
1082	 * low order and high order 32 bits of offset.
1083	 */
1084	offset = (((off_t)uap->pos_h << (sizeof(offset) * 4)) <<
1085	    (sizeof(offset) * 4)) | uap->pos_l;
1086	if (offset < 0)
1087		return (EINVAL);
1088#ifdef COMPAT_LINUX32
1089	error = linux32_copyinuio(PTRIN(uap->vec), uap->vlen, &auio);
1090#else
1091	error = copyinuio(uap->vec, uap->vlen, &auio);
1092#endif
1093	if (error != 0)
1094		return (error);
1095	error = kern_pwritev(td, uap->fd, auio, offset);
1096	free(auio, M_IOV);
1097	return (error);
1098}
1099
1100int
1101linux_mount(struct thread *td, struct linux_mount_args *args)
1102{
1103	char fstypename[MFSNAMELEN];
1104	char mntonname[MNAMELEN], mntfromname[MNAMELEN];
1105	int error;
1106	int fsflags;
1107
1108	error = copyinstr(args->filesystemtype, fstypename, MFSNAMELEN - 1,
1109	    NULL);
1110	if (error)
1111		return (error);
1112	error = copyinstr(args->specialfile, mntfromname, MNAMELEN - 1, NULL);
1113	if (error)
1114		return (error);
1115	error = copyinstr(args->dir, mntonname, MNAMELEN - 1, NULL);
1116	if (error)
1117		return (error);
1118
1119#ifdef DEBUG
1120	if (ldebug(mount))
1121		printf(ARGS(mount, "%s, %s, %s"),
1122		    fstypename, mntfromname, mntonname);
1123#endif
1124
1125	if (strcmp(fstypename, "ext2") == 0) {
1126		strcpy(fstypename, "ext2fs");
1127	} else if (strcmp(fstypename, "proc") == 0) {
1128		strcpy(fstypename, "linprocfs");
1129	} else if (strcmp(fstypename, "vfat") == 0) {
1130		strcpy(fstypename, "msdosfs");
1131	}
1132
1133	fsflags = 0;
1134
1135	if ((args->rwflag & 0xffff0000) == 0xc0ed0000) {
1136		/*
1137		 * Linux SYNC flag is not included; the closest equivalent
1138		 * FreeBSD has is !ASYNC, which is our default.
1139		 */
1140		if (args->rwflag & LINUX_MS_RDONLY)
1141			fsflags |= MNT_RDONLY;
1142		if (args->rwflag & LINUX_MS_NOSUID)
1143			fsflags |= MNT_NOSUID;
1144		if (args->rwflag & LINUX_MS_NOEXEC)
1145			fsflags |= MNT_NOEXEC;
1146		if (args->rwflag & LINUX_MS_REMOUNT)
1147			fsflags |= MNT_UPDATE;
1148	}
1149
1150	error = kernel_vmount(fsflags,
1151	    "fstype", fstypename,
1152	    "fspath", mntonname,
1153	    "from", mntfromname,
1154	    NULL);
1155	return (error);
1156}
1157
1158#if defined(__i386__) || (defined(__amd64__) && defined(COMPAT_LINUX32))
1159int
1160linux_oldumount(struct thread *td, struct linux_oldumount_args *args)
1161{
1162	struct linux_umount_args args2;
1163
1164	args2.path = args->path;
1165	args2.flags = 0;
1166	return (linux_umount(td, &args2));
1167}
1168#endif /* __i386__ || (__amd64__ && COMPAT_LINUX32) */
1169
1170int
1171linux_umount(struct thread *td, struct linux_umount_args *args)
1172{
1173	struct unmount_args bsd;
1174
1175	bsd.path = args->path;
1176	bsd.flags = args->flags;	/* XXX correct? */
1177	return (sys_unmount(td, &bsd));
1178}
1179
1180/*
1181 * fcntl family of syscalls
1182 */
1183
1184struct l_flock {
1185	l_short		l_type;
1186	l_short		l_whence;
1187	l_off_t		l_start;
1188	l_off_t		l_len;
1189	l_pid_t		l_pid;
1190}
1191#if defined(__amd64__) && defined(COMPAT_LINUX32)
1192__packed
1193#endif
1194;
1195
1196static void
1197linux_to_bsd_flock(struct l_flock *linux_flock, struct flock *bsd_flock)
1198{
1199	switch (linux_flock->l_type) {
1200	case LINUX_F_RDLCK:
1201		bsd_flock->l_type = F_RDLCK;
1202		break;
1203	case LINUX_F_WRLCK:
1204		bsd_flock->l_type = F_WRLCK;
1205		break;
1206	case LINUX_F_UNLCK:
1207		bsd_flock->l_type = F_UNLCK;
1208		break;
1209	default:
1210		bsd_flock->l_type = -1;
1211		break;
1212	}
1213	bsd_flock->l_whence = linux_flock->l_whence;
1214	bsd_flock->l_start = (off_t)linux_flock->l_start;
1215	bsd_flock->l_len = (off_t)linux_flock->l_len;
1216	bsd_flock->l_pid = (pid_t)linux_flock->l_pid;
1217	bsd_flock->l_sysid = 0;
1218}
1219
1220static void
1221bsd_to_linux_flock(struct flock *bsd_flock, struct l_flock *linux_flock)
1222{
1223	switch (bsd_flock->l_type) {
1224	case F_RDLCK:
1225		linux_flock->l_type = LINUX_F_RDLCK;
1226		break;
1227	case F_WRLCK:
1228		linux_flock->l_type = LINUX_F_WRLCK;
1229		break;
1230	case F_UNLCK:
1231		linux_flock->l_type = LINUX_F_UNLCK;
1232		break;
1233	}
1234	linux_flock->l_whence = bsd_flock->l_whence;
1235	linux_flock->l_start = (l_off_t)bsd_flock->l_start;
1236	linux_flock->l_len = (l_off_t)bsd_flock->l_len;
1237	linux_flock->l_pid = (l_pid_t)bsd_flock->l_pid;
1238}
1239
1240#if defined(__i386__) || (defined(__amd64__) && defined(COMPAT_LINUX32))
1241struct l_flock64 {
1242	l_short		l_type;
1243	l_short		l_whence;
1244	l_loff_t	l_start;
1245	l_loff_t	l_len;
1246	l_pid_t		l_pid;
1247}
1248#if defined(__amd64__) && defined(COMPAT_LINUX32)
1249__packed
1250#endif
1251;
1252
1253static void
1254linux_to_bsd_flock64(struct l_flock64 *linux_flock, struct flock *bsd_flock)
1255{
1256	switch (linux_flock->l_type) {
1257	case LINUX_F_RDLCK:
1258		bsd_flock->l_type = F_RDLCK;
1259		break;
1260	case LINUX_F_WRLCK:
1261		bsd_flock->l_type = F_WRLCK;
1262		break;
1263	case LINUX_F_UNLCK:
1264		bsd_flock->l_type = F_UNLCK;
1265		break;
1266	default:
1267		bsd_flock->l_type = -1;
1268		break;
1269	}
1270	bsd_flock->l_whence = linux_flock->l_whence;
1271	bsd_flock->l_start = (off_t)linux_flock->l_start;
1272	bsd_flock->l_len = (off_t)linux_flock->l_len;
1273	bsd_flock->l_pid = (pid_t)linux_flock->l_pid;
1274	bsd_flock->l_sysid = 0;
1275}
1276
1277static void
1278bsd_to_linux_flock64(struct flock *bsd_flock, struct l_flock64 *linux_flock)
1279{
1280	switch (bsd_flock->l_type) {
1281	case F_RDLCK:
1282		linux_flock->l_type = LINUX_F_RDLCK;
1283		break;
1284	case F_WRLCK:
1285		linux_flock->l_type = LINUX_F_WRLCK;
1286		break;
1287	case F_UNLCK:
1288		linux_flock->l_type = LINUX_F_UNLCK;
1289		break;
1290	}
1291	linux_flock->l_whence = bsd_flock->l_whence;
1292	linux_flock->l_start = (l_loff_t)bsd_flock->l_start;
1293	linux_flock->l_len = (l_loff_t)bsd_flock->l_len;
1294	linux_flock->l_pid = (l_pid_t)bsd_flock->l_pid;
1295}
1296#endif /* __i386__ || (__amd64__ && COMPAT_LINUX32) */
1297
1298static int
1299fcntl_common(struct thread *td, struct linux_fcntl_args *args)
1300{
1301	struct l_flock linux_flock;
1302	struct flock bsd_flock;
1303	cap_rights_t rights;
1304	struct file *fp;
1305	long arg;
1306	int error, result;
1307
1308	switch (args->cmd) {
1309	case LINUX_F_DUPFD:
1310		return (kern_fcntl(td, args->fd, F_DUPFD, args->arg));
1311
1312	case LINUX_F_GETFD:
1313		return (kern_fcntl(td, args->fd, F_GETFD, 0));
1314
1315	case LINUX_F_SETFD:
1316		return (kern_fcntl(td, args->fd, F_SETFD, args->arg));
1317
1318	case LINUX_F_GETFL:
1319		error = kern_fcntl(td, args->fd, F_GETFL, 0);
1320		result = td->td_retval[0];
1321		td->td_retval[0] = 0;
1322		if (result & O_RDONLY)
1323			td->td_retval[0] |= LINUX_O_RDONLY;
1324		if (result & O_WRONLY)
1325			td->td_retval[0] |= LINUX_O_WRONLY;
1326		if (result & O_RDWR)
1327			td->td_retval[0] |= LINUX_O_RDWR;
1328		if (result & O_NDELAY)
1329			td->td_retval[0] |= LINUX_O_NONBLOCK;
1330		if (result & O_APPEND)
1331			td->td_retval[0] |= LINUX_O_APPEND;
1332		if (result & O_FSYNC)
1333			td->td_retval[0] |= LINUX_O_SYNC;
1334		if (result & O_ASYNC)
1335			td->td_retval[0] |= LINUX_FASYNC;
1336#ifdef LINUX_O_NOFOLLOW
1337		if (result & O_NOFOLLOW)
1338			td->td_retval[0] |= LINUX_O_NOFOLLOW;
1339#endif
1340#ifdef LINUX_O_DIRECT
1341		if (result & O_DIRECT)
1342			td->td_retval[0] |= LINUX_O_DIRECT;
1343#endif
1344		return (error);
1345
1346	case LINUX_F_SETFL:
1347		arg = 0;
1348		if (args->arg & LINUX_O_NDELAY)
1349			arg |= O_NONBLOCK;
1350		if (args->arg & LINUX_O_APPEND)
1351			arg |= O_APPEND;
1352		if (args->arg & LINUX_O_SYNC)
1353			arg |= O_FSYNC;
1354		if (args->arg & LINUX_FASYNC)
1355			arg |= O_ASYNC;
1356#ifdef LINUX_O_NOFOLLOW
1357		if (args->arg & LINUX_O_NOFOLLOW)
1358			arg |= O_NOFOLLOW;
1359#endif
1360#ifdef LINUX_O_DIRECT
1361		if (args->arg & LINUX_O_DIRECT)
1362			arg |= O_DIRECT;
1363#endif
1364		return (kern_fcntl(td, args->fd, F_SETFL, arg));
1365
1366	case LINUX_F_GETLK:
1367		error = copyin((void *)args->arg, &linux_flock,
1368		    sizeof(linux_flock));
1369		if (error)
1370			return (error);
1371		linux_to_bsd_flock(&linux_flock, &bsd_flock);
1372		error = kern_fcntl(td, args->fd, F_GETLK, (intptr_t)&bsd_flock);
1373		if (error)
1374			return (error);
1375		bsd_to_linux_flock(&bsd_flock, &linux_flock);
1376		return (copyout(&linux_flock, (void *)args->arg,
1377		    sizeof(linux_flock)));
1378
1379	case LINUX_F_SETLK:
1380		error = copyin((void *)args->arg, &linux_flock,
1381		    sizeof(linux_flock));
1382		if (error)
1383			return (error);
1384		linux_to_bsd_flock(&linux_flock, &bsd_flock);
1385		return (kern_fcntl(td, args->fd, F_SETLK,
1386		    (intptr_t)&bsd_flock));
1387
1388	case LINUX_F_SETLKW:
1389		error = copyin((void *)args->arg, &linux_flock,
1390		    sizeof(linux_flock));
1391		if (error)
1392			return (error);
1393		linux_to_bsd_flock(&linux_flock, &bsd_flock);
1394		return (kern_fcntl(td, args->fd, F_SETLKW,
1395		     (intptr_t)&bsd_flock));
1396
1397	case LINUX_F_GETOWN:
1398		return (kern_fcntl(td, args->fd, F_GETOWN, 0));
1399
1400	case LINUX_F_SETOWN:
1401		/*
1402		 * XXX some Linux applications depend on F_SETOWN having no
1403		 * significant effect for pipes (SIGIO is not delivered for
1404		 * pipes under Linux-2.2.35 at least).
1405		 */
1406		error = fget(td, args->fd,
1407		    cap_rights_init(&rights, CAP_FCNTL), &fp);
1408		if (error)
1409			return (error);
1410		if (fp->f_type == DTYPE_PIPE) {
1411			fdrop(fp, td);
1412			return (EINVAL);
1413		}
1414		fdrop(fp, td);
1415
1416		return (kern_fcntl(td, args->fd, F_SETOWN, args->arg));
1417
1418	case LINUX_F_DUPFD_CLOEXEC:
1419		return (kern_fcntl(td, args->fd, F_DUPFD_CLOEXEC, args->arg));
1420	}
1421
1422	return (EINVAL);
1423}
1424
1425int
1426linux_fcntl(struct thread *td, struct linux_fcntl_args *args)
1427{
1428
1429#ifdef DEBUG
1430	if (ldebug(fcntl))
1431		printf(ARGS(fcntl, "%d, %08x, *"), args->fd, args->cmd);
1432#endif
1433
1434	return (fcntl_common(td, args));
1435}
1436
1437#if defined(__i386__) || (defined(__amd64__) && defined(COMPAT_LINUX32))
1438int
1439linux_fcntl64(struct thread *td, struct linux_fcntl64_args *args)
1440{
1441	struct l_flock64 linux_flock;
1442	struct flock bsd_flock;
1443	struct linux_fcntl_args fcntl_args;
1444	int error;
1445
1446#ifdef DEBUG
1447	if (ldebug(fcntl64))
1448		printf(ARGS(fcntl64, "%d, %08x, *"), args->fd, args->cmd);
1449#endif
1450
1451	switch (args->cmd) {
1452	case LINUX_F_GETLK64:
1453		error = copyin((void *)args->arg, &linux_flock,
1454		    sizeof(linux_flock));
1455		if (error)
1456			return (error);
1457		linux_to_bsd_flock64(&linux_flock, &bsd_flock);
1458		error = kern_fcntl(td, args->fd, F_GETLK, (intptr_t)&bsd_flock);
1459		if (error)
1460			return (error);
1461		bsd_to_linux_flock64(&bsd_flock, &linux_flock);
1462		return (copyout(&linux_flock, (void *)args->arg,
1463			    sizeof(linux_flock)));
1464
1465	case LINUX_F_SETLK64:
1466		error = copyin((void *)args->arg, &linux_flock,
1467		    sizeof(linux_flock));
1468		if (error)
1469			return (error);
1470		linux_to_bsd_flock64(&linux_flock, &bsd_flock);
1471		return (kern_fcntl(td, args->fd, F_SETLK,
1472		    (intptr_t)&bsd_flock));
1473
1474	case LINUX_F_SETLKW64:
1475		error = copyin((void *)args->arg, &linux_flock,
1476		    sizeof(linux_flock));
1477		if (error)
1478			return (error);
1479		linux_to_bsd_flock64(&linux_flock, &bsd_flock);
1480		return (kern_fcntl(td, args->fd, F_SETLKW,
1481		    (intptr_t)&bsd_flock));
1482	}
1483
1484	fcntl_args.fd = args->fd;
1485	fcntl_args.cmd = args->cmd;
1486	fcntl_args.arg = args->arg;
1487	return (fcntl_common(td, &fcntl_args));
1488}
1489#endif /* __i386__ || (__amd64__ && COMPAT_LINUX32) */
1490
1491int
1492linux_chown(struct thread *td, struct linux_chown_args *args)
1493{
1494	char *path;
1495	int error;
1496
1497	LCONVPATHEXIST(td, args->path, &path);
1498
1499#ifdef DEBUG
1500	if (ldebug(chown))
1501		printf(ARGS(chown, "%s, %d, %d"), path, args->uid, args->gid);
1502#endif
1503	error = kern_fchownat(td, AT_FDCWD, path, UIO_SYSSPACE, args->uid,
1504	    args->gid, 0);
1505	LFREEPATH(path);
1506	return (error);
1507}
1508
1509int
1510linux_fchownat(struct thread *td, struct linux_fchownat_args *args)
1511{
1512	char *path;
1513	int error, dfd, flag;
1514
1515	if (args->flag & ~LINUX_AT_SYMLINK_NOFOLLOW)
1516		return (EINVAL);
1517
1518	dfd = (args->dfd == LINUX_AT_FDCWD) ? AT_FDCWD :  args->dfd;
1519	LCONVPATHEXIST_AT(td, args->filename, &path, dfd);
1520
1521#ifdef DEBUG
1522	if (ldebug(fchownat))
1523		printf(ARGS(fchownat, "%s, %d, %d"), path, args->uid, args->gid);
1524#endif
1525
1526	flag = (args->flag & LINUX_AT_SYMLINK_NOFOLLOW) == 0 ? 0 :
1527	    AT_SYMLINK_NOFOLLOW;
1528	error = kern_fchownat(td, dfd, path, UIO_SYSSPACE, args->uid, args->gid,
1529	    flag);
1530	LFREEPATH(path);
1531	return (error);
1532}
1533
1534int
1535linux_lchown(struct thread *td, struct linux_lchown_args *args)
1536{
1537	char *path;
1538	int error;
1539
1540	LCONVPATHEXIST(td, args->path, &path);
1541
1542#ifdef DEBUG
1543	if (ldebug(lchown))
1544		printf(ARGS(lchown, "%s, %d, %d"), path, args->uid, args->gid);
1545#endif
1546	error = kern_fchownat(td, AT_FDCWD, path, UIO_SYSSPACE, args->uid,
1547	    args->gid, AT_SYMLINK_NOFOLLOW);
1548	LFREEPATH(path);
1549	return (error);
1550}
1551
1552static int
1553convert_fadvice(int advice)
1554{
1555	switch (advice) {
1556	case LINUX_POSIX_FADV_NORMAL:
1557		return (POSIX_FADV_NORMAL);
1558	case LINUX_POSIX_FADV_RANDOM:
1559		return (POSIX_FADV_RANDOM);
1560	case LINUX_POSIX_FADV_SEQUENTIAL:
1561		return (POSIX_FADV_SEQUENTIAL);
1562	case LINUX_POSIX_FADV_WILLNEED:
1563		return (POSIX_FADV_WILLNEED);
1564	case LINUX_POSIX_FADV_DONTNEED:
1565		return (POSIX_FADV_DONTNEED);
1566	case LINUX_POSIX_FADV_NOREUSE:
1567		return (POSIX_FADV_NOREUSE);
1568	default:
1569		return (-1);
1570	}
1571}
1572
1573int
1574linux_fadvise64(struct thread *td, struct linux_fadvise64_args *args)
1575{
1576	int advice;
1577
1578	advice = convert_fadvice(args->advice);
1579	if (advice == -1)
1580		return (EINVAL);
1581	return (kern_posix_fadvise(td, args->fd, args->offset, args->len,
1582	    advice));
1583}
1584
1585#if defined(__i386__) || (defined(__amd64__) && defined(COMPAT_LINUX32))
1586int
1587linux_fadvise64_64(struct thread *td, struct linux_fadvise64_64_args *args)
1588{
1589	int advice;
1590
1591	advice = convert_fadvice(args->advice);
1592	if (advice == -1)
1593		return (EINVAL);
1594	return (kern_posix_fadvise(td, args->fd, args->offset, args->len,
1595	    advice));
1596}
1597#endif /* __i386__ || (__amd64__ && COMPAT_LINUX32) */
1598
1599int
1600linux_pipe(struct thread *td, struct linux_pipe_args *args)
1601{
1602	int fildes[2];
1603	int error;
1604
1605#ifdef DEBUG
1606	if (ldebug(pipe))
1607		printf(ARGS(pipe, "*"));
1608#endif
1609
1610	error = kern_pipe(td, fildes, 0, NULL, NULL);
1611	if (error != 0)
1612		return (error);
1613
1614	error = copyout(fildes, args->pipefds, sizeof(fildes));
1615	if (error != 0) {
1616		(void)kern_close(td, fildes[0]);
1617		(void)kern_close(td, fildes[1]);
1618	}
1619
1620	return (error);
1621}
1622
1623int
1624linux_pipe2(struct thread *td, struct linux_pipe2_args *args)
1625{
1626	int fildes[2];
1627	int error, flags;
1628
1629#ifdef DEBUG
1630	if (ldebug(pipe2))
1631		printf(ARGS(pipe2, "*, %d"), args->flags);
1632#endif
1633
1634	if ((args->flags & ~(LINUX_O_NONBLOCK | LINUX_O_CLOEXEC)) != 0)
1635		return (EINVAL);
1636
1637	flags = 0;
1638	if ((args->flags & LINUX_O_NONBLOCK) != 0)
1639		flags |= O_NONBLOCK;
1640	if ((args->flags & LINUX_O_CLOEXEC) != 0)
1641		flags |= O_CLOEXEC;
1642	error = kern_pipe(td, fildes, flags, NULL, NULL);
1643	if (error != 0)
1644		return (error);
1645
1646	error = copyout(fildes, args->pipefds, sizeof(fildes));
1647	if (error != 0) {
1648		(void)kern_close(td, fildes[0]);
1649		(void)kern_close(td, fildes[1]);
1650	}
1651
1652	return (error);
1653}
1654
1655int
1656linux_dup3(struct thread *td, struct linux_dup3_args *args)
1657{
1658	int cmd;
1659	intptr_t newfd;
1660
1661	if (args->oldfd == args->newfd)
1662		return (EINVAL);
1663	if ((args->flags & ~LINUX_O_CLOEXEC) != 0)
1664		return (EINVAL);
1665	if (args->flags & LINUX_O_CLOEXEC)
1666		cmd = F_DUP2FD_CLOEXEC;
1667	else
1668		cmd = F_DUP2FD;
1669
1670	newfd = args->newfd;
1671	return (kern_fcntl(td, args->oldfd, cmd, newfd));
1672}
1673
1674int
1675linux_fallocate(struct thread *td, struct linux_fallocate_args *args)
1676{
1677
1678	/*
1679	 * We emulate only posix_fallocate system call for which
1680	 * mode should be 0.
1681	 */
1682	if (args->mode != 0)
1683		return (ENOSYS);
1684
1685	return (kern_posix_fallocate(td, args->fd, args->offset,
1686	    args->len));
1687}
1688