Deleted Added
full compact
linux_file.c (82518) linux_file.c (83221)
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

--- 11 unchanged lines hidden (view full) ---

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 *
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

--- 11 unchanged lines hidden (view full) ---

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 * $FreeBSD: head/sys/compat/linux/linux_file.c 82518 2001-08-29 19:05:27Z gallatin $
28 * $FreeBSD: head/sys/compat/linux/linux_file.c 83221 2001-09-08 19:07:04Z marcel $
29 */
30
31#include "opt_compat.h"
32
33#include <sys/param.h>
34#include <sys/systm.h>
35#include <sys/conf.h>
36#include <sys/dirent.h>

--- 107 unchanged lines hidden (view full) ---

144 PROC_UNLOCK(p);
145#ifdef DEBUG
146 if (ldebug(open))
147 printf(LMSG("open returns error %d"), error);
148#endif
149 return error;
150}
151
29 */
30
31#include "opt_compat.h"
32
33#include <sys/param.h>
34#include <sys/systm.h>
35#include <sys/conf.h>
36#include <sys/dirent.h>

--- 107 unchanged lines hidden (view full) ---

144 PROC_UNLOCK(p);
145#ifdef DEBUG
146 if (ldebug(open))
147 printf(LMSG("open returns error %d"), error);
148#endif
149 return error;
150}
151
152struct linux_flock {
153 short l_type;
154 short l_whence;
155 linux_off_t l_start;
156 linux_off_t l_len;
157 linux_pid_t l_pid;
158};
159
160static void
161linux_to_bsd_flock(struct linux_flock *linux_flock, struct flock *bsd_flock)
162{
163 switch (linux_flock->l_type) {
164 case LINUX_F_RDLCK:
165 bsd_flock->l_type = F_RDLCK;
166 break;
167 case LINUX_F_WRLCK:
168 bsd_flock->l_type = F_WRLCK;
169 break;
170 case LINUX_F_UNLCK:
171 bsd_flock->l_type = F_UNLCK;
172 break;
173 default:
174 bsd_flock->l_type = -1;
175 break;
176 }
177 bsd_flock->l_whence = linux_flock->l_whence;
178 bsd_flock->l_start = (off_t)linux_flock->l_start;
179 bsd_flock->l_len = (off_t)linux_flock->l_len;
180 bsd_flock->l_pid = (pid_t)linux_flock->l_pid;
181}
182
183static void
184bsd_to_linux_flock(struct flock *bsd_flock, struct linux_flock *linux_flock)
185{
186 switch (bsd_flock->l_type) {
187 case F_RDLCK:
188 linux_flock->l_type = LINUX_F_RDLCK;
189 break;
190 case F_WRLCK:
191 linux_flock->l_type = LINUX_F_WRLCK;
192 break;
193 case F_UNLCK:
194 linux_flock->l_type = LINUX_F_UNLCK;
195 break;
196 }
197 linux_flock->l_whence = bsd_flock->l_whence;
198 linux_flock->l_start = (linux_off_t)bsd_flock->l_start;
199 linux_flock->l_len = (linux_off_t)bsd_flock->l_len;
200 linux_flock->l_pid = (linux_pid_t)bsd_flock->l_pid;
201}
202
203int
152int
204linux_fcntl(struct proc *p, struct linux_fcntl_args *args)
205{
206 int error, result;
207 struct fcntl_args /* {
208 int fd;
209 int cmd;
210 long arg;
211 } */ fcntl_args;
212 struct linux_flock linux_flock;
213 struct flock *bsd_flock;
214 struct filedesc *fdp;
215 struct file *fp;
216 caddr_t sg;
217
218 sg = stackgap_init();
219 bsd_flock = (struct flock *)stackgap_alloc(&sg, sizeof(struct flock));
220
221#ifdef DEBUG
222 if (ldebug(fcntl))
223 printf(ARGS(fcntl, "%d, %08x, *"), args->fd, args->cmd);
224#endif
225 fcntl_args.fd = args->fd;
226
227 switch (args->cmd) {
228 case LINUX_F_DUPFD:
229 fcntl_args.cmd = F_DUPFD;
230 fcntl_args.arg = args->arg;
231 return fcntl(p, &fcntl_args);
232
233 case LINUX_F_GETFD:
234 fcntl_args.cmd = F_GETFD;
235 return fcntl(p, &fcntl_args);
236
237 case LINUX_F_SETFD:
238 fcntl_args.cmd = F_SETFD;
239 fcntl_args.arg = args->arg;
240 return fcntl(p, &fcntl_args);
241
242 case LINUX_F_GETFL:
243 fcntl_args.cmd = F_GETFL;
244 error = fcntl(p, &fcntl_args);
245 result = p->p_retval[0];
246 p->p_retval[0] = 0;
247 if (result & O_RDONLY) p->p_retval[0] |= LINUX_O_RDONLY;
248 if (result & O_WRONLY) p->p_retval[0] |= LINUX_O_WRONLY;
249 if (result & O_RDWR) p->p_retval[0] |= LINUX_O_RDWR;
250 if (result & O_NDELAY) p->p_retval[0] |= LINUX_O_NONBLOCK;
251 if (result & O_APPEND) p->p_retval[0] |= LINUX_O_APPEND;
252 if (result & O_FSYNC) p->p_retval[0] |= LINUX_O_SYNC;
253 if (result & O_ASYNC) p->p_retval[0] |= LINUX_FASYNC;
254 return error;
255
256 case LINUX_F_SETFL:
257 fcntl_args.arg = 0;
258 if (args->arg & LINUX_O_NDELAY) fcntl_args.arg |= O_NONBLOCK;
259 if (args->arg & LINUX_O_APPEND) fcntl_args.arg |= O_APPEND;
260 if (args->arg & LINUX_O_SYNC) fcntl_args.arg |= O_FSYNC;
261 if (args->arg & LINUX_FASYNC) fcntl_args.arg |= O_ASYNC;
262 fcntl_args.cmd = F_SETFL;
263 return fcntl(p, &fcntl_args);
264
265 case LINUX_F_GETLK:
266 if ((error = copyin((caddr_t)args->arg, (caddr_t)&linux_flock,
267 sizeof(struct linux_flock))))
268 return error;
269 linux_to_bsd_flock(&linux_flock, bsd_flock);
270 fcntl_args.cmd = F_GETLK;
271 fcntl_args.arg = (long)bsd_flock;
272 error = fcntl(p, &fcntl_args);
273 if (error)
274 return error;
275 bsd_to_linux_flock(bsd_flock, &linux_flock);
276 return copyout((caddr_t)&linux_flock, (caddr_t)args->arg,
277 sizeof(struct linux_flock));
278
279 case LINUX_F_SETLK:
280 if ((error = copyin((caddr_t)args->arg, (caddr_t)&linux_flock,
281 sizeof(struct linux_flock))))
282 return error;
283 linux_to_bsd_flock(&linux_flock, bsd_flock);
284 fcntl_args.cmd = F_SETLK;
285 fcntl_args.arg = (long)bsd_flock;
286 return fcntl(p, &fcntl_args);
287
288 case LINUX_F_SETLKW:
289 if ((error = copyin((caddr_t)args->arg, (caddr_t)&linux_flock,
290 sizeof(struct linux_flock))))
291 return error;
292 linux_to_bsd_flock(&linux_flock, bsd_flock);
293 fcntl_args.cmd = F_SETLKW;
294 fcntl_args.arg = (long)bsd_flock;
295 return fcntl(p, &fcntl_args);
296
297 case LINUX_F_GETOWN:
298 fcntl_args.cmd = F_GETOWN;
299 return fcntl(p, &fcntl_args);
300
301 case LINUX_F_SETOWN:
302 /*
303 * XXX some Linux applications depend on F_SETOWN having no
304 * significant effect for pipes (SIGIO is not delivered for
305 * pipes under Linux-2.2.35 at least).
306 */
307 fdp = p->p_fd;
308 if ((u_int)args->fd >= fdp->fd_nfiles ||
309 (fp = fdp->fd_ofiles[args->fd]) == NULL)
310 return EBADF;
311 if (fp->f_type == DTYPE_PIPE)
312 return EINVAL;
313
314 fcntl_args.cmd = F_SETOWN;
315 fcntl_args.arg = args->arg;
316 return fcntl(p, &fcntl_args);
317 }
318 return EINVAL;
319}
320
321int
322linux_lseek(struct proc *p, struct linux_lseek_args *args)
323{
324
325 struct lseek_args /* {
326 int fd;
327 int pad;
328 off_t offset;
329 int whence;
330 } */ tmp_args;
331 int error;
332
333#ifdef DEBUG
334 if (ldebug(lseek))
335 printf(ARGS(lseek, "%d, %ld, %d"),
153linux_lseek(struct proc *p, struct linux_lseek_args *args)
154{
155
156 struct lseek_args /* {
157 int fd;
158 int pad;
159 off_t offset;
160 int whence;
161 } */ tmp_args;
162 int error;
163
164#ifdef DEBUG
165 if (ldebug(lseek))
166 printf(ARGS(lseek, "%d, %ld, %d"),
336 args->fdes, args->off, args->whence);
167 args->fdes, (long)args->off, args->whence);
337#endif
338 tmp_args.fd = args->fdes;
339 tmp_args.offset = (off_t)args->off;
340 tmp_args.whence = args->whence;
341 error = lseek(p, &tmp_args);
342 return error;
343}
344

--- 22 unchanged lines hidden (view full) ---

367 if ((error = copyout(p->p_retval, (caddr_t)args->res, sizeof (off_t))))
368 return error;
369
370 p->p_retval[0] = 0;
371 return 0;
372}
373#endif /*!__alpha__*/
374
168#endif
169 tmp_args.fd = args->fdes;
170 tmp_args.offset = (off_t)args->off;
171 tmp_args.whence = args->whence;
172 error = lseek(p, &tmp_args);
173 return error;
174}
175

--- 22 unchanged lines hidden (view full) ---

198 if ((error = copyout(p->p_retval, (caddr_t)args->res, sizeof (off_t))))
199 return error;
200
201 p->p_retval[0] = 0;
202 return 0;
203}
204#endif /*!__alpha__*/
205
375
376struct linux_dirent {
377 long dino;
378 linux_off_t doff;
379 unsigned short dreclen;
380 char dname[LINUX_NAME_MAX + 1];
381};
382
383#define LINUX_RECLEN(de,namlen) \
384 ALIGN((((char *)&(de)->dname - (char *)de) + (namlen) + 1))
385
386#ifndef __alpha__
387int
388linux_readdir(struct proc *p, struct linux_readdir_args *args)
389{
390 struct linux_getdents_args lda;
391
392 lda.fd = args->fd;
393 lda.dent = args->dent;
394 lda.count = 1;
395 return linux_getdents(p, &lda);
396}
397#endif /*!__alpha__*/
398
206#ifndef __alpha__
207int
208linux_readdir(struct proc *p, struct linux_readdir_args *args)
209{
210 struct linux_getdents_args lda;
211
212 lda.fd = args->fd;
213 lda.dent = args->dent;
214 lda.count = 1;
215 return linux_getdents(p, &lda);
216}
217#endif /*!__alpha__*/
218
399int
400linux_getdents(struct proc *p, struct linux_getdents_args *args)
219/*
220 * Note that linux_getdents(2) and linux_getdents64(2) have the same
221 * arguments. They only differ in the definition of struct dirent they
222 * operate on. We use this to common the code, with the exception of
223 * accessing struct dirent. Note that linux_readdir(2) is implemented
224 * by means of linux_getdents(2). In this case we never operate on
225 * struct dirent64 and thus don't need to handle it...
226 */
227
228struct l_dirent {
229 l_long d_ino;
230 l_off_t d_off;
231 l_ushort d_reclen;
232 char d_name[LINUX_NAME_MAX + 1];
233};
234
235struct l_dirent64 {
236 uint64_t d_ino;
237 int64_t d_off;
238 l_ushort d_reclen;
239 u_char d_type;
240 char d_name[LINUX_NAME_MAX + 1];
241};
242
243#define LINUX_RECLEN(de,namlen) \
244 ALIGN((((char *)&(de)->d_name - (char *)de) + (namlen) + 1))
245
246#define LINUX_DIRBLKSIZ 512
247
248static int
249getdents_common(struct proc *p, struct linux_getdents64_args *args,
250 int is64bit)
401{
251{
402 register struct dirent *bdp;
403 struct vnode *vp;
404 caddr_t inp, buf; /* BSD-format */
405 int len, reclen; /* BSD-format */
406 caddr_t outp; /* Linux-format */
407 int resid, linuxreclen=0; /* Linux-format */
408 struct file *fp;
409 struct uio auio;
410 struct iovec aiov;
411 struct vattr va;
412 off_t off;
413 struct linux_dirent linux_dirent;
414 int buflen, error, eofflag, nbytes, justone;
415 u_long *cookies = NULL, *cookiep;
416 int ncookies;
252 register struct dirent *bdp;
253 struct vnode *vp;
254 caddr_t inp, buf; /* BSD-format */
255 int len, reclen; /* BSD-format */
256 caddr_t outp; /* Linux-format */
257 int resid, linuxreclen=0; /* Linux-format */
258 struct file *fp;
259 struct uio auio;
260 struct iovec aiov;
261 struct vattr va;
262 off_t off;
263 struct l_dirent linux_dirent;
264 struct l_dirent64 linux_dirent64;
265 int buflen, error, eofflag, nbytes, justone;
266 u_long *cookies = NULL, *cookiep;
267 int ncookies;
417
268
418#ifdef DEBUG
419 if (ldebug(getdents))
420 printf(ARGS(getdents, "%d, *, %d"), args->fd, args->count);
421#endif
422 if ((error = getvnode(p->p_fd, args->fd, &fp)) != 0) {
423 return (error);
424 }
269 if ((error = getvnode(p->p_fd, args->fd, &fp)) != 0)
270 return (error);
425
271
426 if ((fp->f_flag & FREAD) == 0)
427 return (EBADF);
272 if ((fp->f_flag & FREAD) == 0)
273 return (EBADF);
428
274
429 vp = (struct vnode *) fp->f_data;
275 vp = (struct vnode *) fp->f_data;
276 if (vp->v_type != VDIR)
277 return (EINVAL);
430
278
431 if (vp->v_type != VDIR)
432 return (EINVAL);
279 if ((error = VOP_GETATTR(vp, &va, p->p_ucred, p)))
280 return (error);
433
281
434 if ((error = VOP_GETATTR(vp, &va, p->p_ucred, p))) {
435 return error;
436 }
282 nbytes = args->count;
283 if (nbytes == 1) {
284 /* readdir(2) case. Always struct dirent. */
285 if (is64bit)
286 return (EINVAL);
287 nbytes = sizeof(linux_dirent);
288 justone = 1;
289 } else
290 justone = 0;
437
291
438 nbytes = args->count;
439 if (nbytes == 1) {
440 nbytes = sizeof (struct linux_dirent);
441 justone = 1;
442 }
443 else
444 justone = 0;
292 off = fp->f_offset;
445
293
446 off = fp->f_offset;
447#define DIRBLKSIZ 512 /* XXX we used to use ufs's DIRBLKSIZ */
448 buflen = max(DIRBLKSIZ, nbytes);
449 buflen = min(buflen, MAXBSIZE);
450 buf = malloc(buflen, M_TEMP, M_WAITOK);
451 vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, p);
294 buflen = max(LINUX_DIRBLKSIZ, nbytes);
295 buflen = min(buflen, MAXBSIZE);
296 buf = malloc(buflen, M_TEMP, M_WAITOK);
297 vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, p);
298
452again:
299again:
453 aiov.iov_base = buf;
454 aiov.iov_len = buflen;
455 auio.uio_iov = &aiov;
456 auio.uio_iovcnt = 1;
457 auio.uio_rw = UIO_READ;
458 auio.uio_segflg = UIO_SYSSPACE;
459 auio.uio_procp = p;
460 auio.uio_resid = buflen;
461 auio.uio_offset = off;
300 aiov.iov_base = buf;
301 aiov.iov_len = buflen;
302 auio.uio_iov = &aiov;
303 auio.uio_iovcnt = 1;
304 auio.uio_rw = UIO_READ;
305 auio.uio_segflg = UIO_SYSSPACE;
306 auio.uio_procp = p;
307 auio.uio_resid = buflen;
308 auio.uio_offset = off;
462
309
463 if (cookies) {
464 free(cookies, M_TEMP);
465 cookies = NULL;
466 }
310 if (cookies) {
311 free(cookies, M_TEMP);
312 cookies = NULL;
313 }
467
314
468 error = VOP_READDIR(vp, &auio, fp->f_cred, &eofflag, &ncookies, &cookies);
469 if (error) {
470 goto out;
471 }
315 if ((error = VOP_READDIR(vp, &auio, fp->f_cred, &eofflag, &ncookies,
316 &cookies)))
317 goto out;
472
318
473 inp = buf;
474 outp = (caddr_t) args->dent;
475 resid = nbytes;
476 if ((len = buflen - auio.uio_resid) <= 0) {
477 goto eof;
478 }
319 inp = buf;
320 outp = (caddr_t)args->dirent;
321 resid = nbytes;
322 if ((len = buflen - auio.uio_resid) <= 0)
323 goto eof;
479
324
480 cookiep = cookies;
325 cookiep = cookies;
481
326
482 if (cookies) {
483 /*
484 * When using cookies, the vfs has the option of reading from
485 * a different offset than that supplied (UFS truncates the
486 * offset to a block boundary to make sure that it never reads
487 * partway through a directory entry, even if the directory
488 * has been compacted).
489 */
490 while (len > 0 && ncookies > 0 && *cookiep <= off) {
491 bdp = (struct dirent *) inp;
492 len -= bdp->d_reclen;
493 inp += bdp->d_reclen;
494 cookiep++;
495 ncookies--;
327 if (cookies) {
328 /*
329 * When using cookies, the vfs has the option of reading from
330 * a different offset than that supplied (UFS truncates the
331 * offset to a block boundary to make sure that it never reads
332 * partway through a directory entry, even if the directory
333 * has been compacted).
334 */
335 while (len > 0 && ncookies > 0 && *cookiep <= off) {
336 bdp = (struct dirent *) inp;
337 len -= bdp->d_reclen;
338 inp += bdp->d_reclen;
339 cookiep++;
340 ncookies--;
341 }
496 }
342 }
497 }
498
343
499 while (len > 0) {
500 if (cookiep && ncookies == 0)
501 break;
502 bdp = (struct dirent *) inp;
503 reclen = bdp->d_reclen;
504 if (reclen & 3) {
505 printf("linux_readdir: reclen=%d\n", reclen);
506 error = EFAULT;
507 goto out;
344 while (len > 0) {
345 if (cookiep && ncookies == 0)
346 break;
347 bdp = (struct dirent *) inp;
348 reclen = bdp->d_reclen;
349 if (reclen & 3) {
350 error = EFAULT;
351 goto out;
352 }
353
354 if (bdp->d_fileno == 0) {
355 inp += reclen;
356 if (cookiep) {
357 off = *cookiep++;
358 ncookies--;
359 } else
360 off += reclen;
361
362 len -= reclen;
363 continue;
364 }
365
366 linuxreclen = (is64bit)
367 ? LINUX_RECLEN(&linux_dirent64, bdp->d_namlen)
368 : LINUX_RECLEN(&linux_dirent, bdp->d_namlen);
369
370 if (reclen > len || resid < linuxreclen) {
371 outp++;
372 break;
373 }
374
375 if (justone) {
376 /* readdir(2) case. */
377 linux_dirent.d_ino = (l_long)bdp->d_fileno;
378 linux_dirent.d_off = (l_off_t)linuxreclen;
379 linux_dirent.d_reclen = (l_ushort)bdp->d_namlen;
380 strcpy(linux_dirent.d_name, bdp->d_name);
381 error = copyout(&linux_dirent, outp, linuxreclen);
382 } else {
383 if (is64bit) {
384 linux_dirent64.d_ino = bdp->d_fileno;
385 linux_dirent64.d_off = (cookiep)
386 ? (l_off_t)*cookiep
387 : (l_off_t)(off + reclen);
388 linux_dirent64.d_reclen =
389 (l_ushort)linuxreclen;
390 linux_dirent64.d_type = bdp->d_type;
391 strcpy(linux_dirent64.d_name, bdp->d_name);
392 error = copyout(&linux_dirent64, outp,
393 linuxreclen);
394 } else {
395 linux_dirent.d_ino = bdp->d_fileno;
396 linux_dirent.d_off = (cookiep)
397 ? (l_off_t)*cookiep
398 : (l_off_t)(off + reclen);
399 linux_dirent.d_reclen = (l_ushort)linuxreclen;
400 strcpy(linux_dirent.d_name, bdp->d_name);
401 error = copyout(&linux_dirent, outp,
402 linuxreclen);
403 }
404 }
405 if (error)
406 goto out;
407
408 inp += reclen;
409 if (cookiep) {
410 off = *cookiep++;
411 ncookies--;
412 } else
413 off += reclen;
414
415 outp += linuxreclen;
416 resid -= linuxreclen;
417 len -= reclen;
418 if (justone)
419 break;
508 }
420 }
509
510 if (bdp->d_fileno == 0) {
511 inp += reclen;
512 if (cookiep) {
513 off = *cookiep++;
514 ncookies--;
515 } else
516 off += reclen;
517 len -= reclen;
518 continue;
519 }
520 linuxreclen = LINUX_RECLEN(&linux_dirent, bdp->d_namlen);
521 if (reclen > len || resid < linuxreclen) {
522 outp++;
523 break;
524 }
525 linux_dirent.dino = (long) bdp->d_fileno;
526 if (justone) {
527 /*
528 * old linux-style readdir usage.
529 */
530 linux_dirent.doff = (linux_off_t) linuxreclen;
531 linux_dirent.dreclen = (u_short) bdp->d_namlen;
532 } else {
533 if (cookiep)
534 linux_dirent.doff = (linux_off_t)*cookiep;
535 else
536 linux_dirent.doff = (linux_off_t)(off + reclen);
537 linux_dirent.dreclen = (u_short) linuxreclen;
538 }
539 strcpy(linux_dirent.dname, bdp->d_name);
540 if ((error = copyout((caddr_t)&linux_dirent, outp, linuxreclen))) {
541 goto out;
542 }
543 inp += reclen;
544 if (cookiep) {
545 off = *cookiep++;
546 ncookies--;
547 } else
548 off += reclen;
549 outp += linuxreclen;
550 resid -= linuxreclen;
551 len -= reclen;
552 if (justone)
553 break;
554 }
555
421
556 if (outp == (caddr_t) args->dent)
557 goto again;
558 fp->f_offset = off;
422 if (outp == (caddr_t)args->dirent)
423 goto again;
559
424
560 if (justone)
561 nbytes = resid + linuxreclen;
425 fp->f_offset = off;
426 if (justone)
427 nbytes = resid + linuxreclen;
562
563eof:
428
429eof:
564 p->p_retval[0] = nbytes - resid;
430 p->p_retval[0] = nbytes - resid;
431
565out:
432out:
566 if (cookies)
567 free(cookies, M_TEMP);
568 VOP_UNLOCK(vp, 0, p);
569 free(buf, M_TEMP);
570 return error;
433 if (cookies)
434 free(cookies, M_TEMP);
435
436 VOP_UNLOCK(vp, 0, p);
437 free(buf, M_TEMP);
438 return (error);
571}
572
439}
440
441int
442linux_getdents(struct proc *p, struct linux_getdents_args *args)
443{
444
445#ifdef DEBUG
446 if (ldebug(getdents))
447 printf(ARGS(getdents, "%d, *, %d"), args->fd, args->count);
448#endif
449
450 return (getdents_common(p, (struct linux_getdents64_args*)args, 0));
451}
452
453int
454linux_getdents64(struct proc *p, struct linux_getdents64_args *args)
455{
456
457#ifdef DEBUG
458 if (ldebug(getdents64))
459 printf(ARGS(getdents64, "%d, *, %d"), args->fd, args->count);
460#endif
461
462 return (getdents_common(p, args, 1));
463}
464
573/*
574 * These exist mainly for hooks for doing /compat/linux translation.
575 */
576
577int
578linux_access(struct proc *p, struct linux_access_args *args)
579{
580 struct access_args bsd;

--- 63 unchanged lines hidden (view full) ---

644#endif
645 bsd.path = args->path;
646 bsd.mode = args->mode;
647
648 return chmod(p, &bsd);
649}
650
651int
465/*
466 * These exist mainly for hooks for doing /compat/linux translation.
467 */
468
469int
470linux_access(struct proc *p, struct linux_access_args *args)
471{
472 struct access_args bsd;

--- 63 unchanged lines hidden (view full) ---

536#endif
537 bsd.path = args->path;
538 bsd.mode = args->mode;
539
540 return chmod(p, &bsd);
541}
542
543int
652linux_chown(struct proc *p, struct linux_chown_args *args)
653{
654 struct chown_args bsd;
655 caddr_t sg;
656
657 sg = stackgap_init();
658 CHECKALTEXIST(p, &sg, args->path);
659
660#ifdef DEBUG
661 if (ldebug(chown))
662 printf(ARGS(chown, "%s, %d, %d"),
663 args->path, args->uid, args->gid);
664#endif
665 bsd.path = args->path;
666 /* XXX size casts here */
667 bsd.uid = args->uid;
668 bsd.gid = args->gid;
669
670 return chown(p, &bsd);
671}
672
673int
674linux_lchown(struct proc *p, struct linux_lchown_args *args)
675{
676 struct lchown_args bsd;
677 caddr_t sg;
678
679 sg = stackgap_init();
680 CHECKALTEXIST(p, &sg, args->path);
681
682#ifdef DEBUG
683 if (ldebug(lchown))
684 printf(ARGS(lchown, "%s, %d, %d"),
685 args->path, args->uid, args->gid);
686#endif
687 bsd.path = args->path;
688 /* XXX size casts here */
689 bsd.uid = args->uid;
690 bsd.gid = args->gid;
691
692 return lchown(p, &bsd);
693}
694
695int
696linux_mkdir(struct proc *p, struct linux_mkdir_args *args)
697{
698 struct mkdir_args bsd;
699 caddr_t sg;
700
701 sg = stackgap_init();
702 CHECKALTCREAT(p, &sg, args->path);
703

--- 92 unchanged lines hidden (view full) ---

796 struct truncate_args bsd;
797 caddr_t sg;
798
799 sg = stackgap_init();
800 CHECKALTEXIST(p, &sg, args->path);
801
802#ifdef DEBUG
803 if (ldebug(truncate))
544linux_mkdir(struct proc *p, struct linux_mkdir_args *args)
545{
546 struct mkdir_args bsd;
547 caddr_t sg;
548
549 sg = stackgap_init();
550 CHECKALTCREAT(p, &sg, args->path);
551

--- 92 unchanged lines hidden (view full) ---

644 struct truncate_args bsd;
645 caddr_t sg;
646
647 sg = stackgap_init();
648 CHECKALTEXIST(p, &sg, args->path);
649
650#ifdef DEBUG
651 if (ldebug(truncate))
804 printf(ARGS(truncate, "%s, %ld"), args->path, args->length);
652 printf(ARGS(truncate, "%s, %ld"), args->path,
653 (long)args->length);
805#endif
806 bsd.path = args->path;
807 bsd.length = args->length;
808
809 return truncate(p, &bsd);
810}
811
812int

--- 119 unchanged lines hidden (view full) ---

932 if (args->rwflag & LINUX_MS_REMOUNT)
933 fsflags |= MNT_UPDATE;
934 }
935
936 return (vfs_mount(p, fstype, mntonname, fsflags, fsdata));
937}
938
939int
654#endif
655 bsd.path = args->path;
656 bsd.length = args->length;
657
658 return truncate(p, &bsd);
659}
660
661int

--- 119 unchanged lines hidden (view full) ---

781 if (args->rwflag & LINUX_MS_REMOUNT)
782 fsflags |= MNT_UPDATE;
783 }
784
785 return (vfs_mount(p, fstype, mntonname, fsflags, fsdata));
786}
787
788int
940linux_umount(struct proc *p, struct linux_umount_args *args)
789linux_oldumount(struct proc *p, struct linux_oldumount_args *args)
941{
790{
942 struct linux_umount2_args args2;
791 struct linux_umount_args args2;
943
944 args2.path = args->path;
945 args2.flags = 0;
792
793 args2.path = args->path;
794 args2.flags = 0;
946 return (linux_umount2(p, &args2));
795 return (linux_umount(p, &args2));
947}
948
949int
796}
797
798int
950linux_umount2(struct proc *p, struct linux_umount2_args *args)
799linux_umount(struct proc *p, struct linux_umount_args *args)
951{
952 struct unmount_args bsd;
953
954 bsd.path = args->path;
955 bsd.flags = args->flags; /* XXX correct? */
956 return (unmount(p, &bsd));
957}
800{
801 struct unmount_args bsd;
802
803 bsd.path = args->path;
804 bsd.flags = args->flags; /* XXX correct? */
805 return (unmount(p, &bsd));
806}
807
808/*
809 * fcntl family of syscalls
810 */
811
812struct l_flock {
813 l_short l_type;
814 l_short l_whence;
815 l_off_t l_start;
816 l_off_t l_len;
817 l_pid_t l_pid;
818};
819
820static void
821linux_to_bsd_flock(struct l_flock *linux_flock, struct flock *bsd_flock)
822{
823 switch (linux_flock->l_type) {
824 case LINUX_F_RDLCK:
825 bsd_flock->l_type = F_RDLCK;
826 break;
827 case LINUX_F_WRLCK:
828 bsd_flock->l_type = F_WRLCK;
829 break;
830 case LINUX_F_UNLCK:
831 bsd_flock->l_type = F_UNLCK;
832 break;
833 default:
834 bsd_flock->l_type = -1;
835 break;
836 }
837 bsd_flock->l_whence = linux_flock->l_whence;
838 bsd_flock->l_start = (off_t)linux_flock->l_start;
839 bsd_flock->l_len = (off_t)linux_flock->l_len;
840 bsd_flock->l_pid = (pid_t)linux_flock->l_pid;
841}
842
843static void
844bsd_to_linux_flock(struct flock *bsd_flock, struct l_flock *linux_flock)
845{
846 switch (bsd_flock->l_type) {
847 case F_RDLCK:
848 linux_flock->l_type = LINUX_F_RDLCK;
849 break;
850 case F_WRLCK:
851 linux_flock->l_type = LINUX_F_WRLCK;
852 break;
853 case F_UNLCK:
854 linux_flock->l_type = LINUX_F_UNLCK;
855 break;
856 }
857 linux_flock->l_whence = bsd_flock->l_whence;
858 linux_flock->l_start = (l_off_t)bsd_flock->l_start;
859 linux_flock->l_len = (l_off_t)bsd_flock->l_len;
860 linux_flock->l_pid = (l_pid_t)bsd_flock->l_pid;
861}
862
863#if defined(__i386__)
864struct l_flock64 {
865 l_short l_type;
866 l_short l_whence;
867 l_loff_t l_start;
868 l_loff_t l_len;
869 l_pid_t l_pid;
870};
871
872static void
873linux_to_bsd_flock64(struct l_flock64 *linux_flock, struct flock *bsd_flock)
874{
875 switch (linux_flock->l_type) {
876 case LINUX_F_RDLCK:
877 bsd_flock->l_type = F_RDLCK;
878 break;
879 case LINUX_F_WRLCK:
880 bsd_flock->l_type = F_WRLCK;
881 break;
882 case LINUX_F_UNLCK:
883 bsd_flock->l_type = F_UNLCK;
884 break;
885 default:
886 bsd_flock->l_type = -1;
887 break;
888 }
889 bsd_flock->l_whence = linux_flock->l_whence;
890 bsd_flock->l_start = (off_t)linux_flock->l_start;
891 bsd_flock->l_len = (off_t)linux_flock->l_len;
892 bsd_flock->l_pid = (pid_t)linux_flock->l_pid;
893}
894
895static void
896bsd_to_linux_flock64(struct flock *bsd_flock, struct l_flock64 *linux_flock)
897{
898 switch (bsd_flock->l_type) {
899 case F_RDLCK:
900 linux_flock->l_type = LINUX_F_RDLCK;
901 break;
902 case F_WRLCK:
903 linux_flock->l_type = LINUX_F_WRLCK;
904 break;
905 case F_UNLCK:
906 linux_flock->l_type = LINUX_F_UNLCK;
907 break;
908 }
909 linux_flock->l_whence = bsd_flock->l_whence;
910 linux_flock->l_start = (l_loff_t)bsd_flock->l_start;
911 linux_flock->l_len = (l_loff_t)bsd_flock->l_len;
912 linux_flock->l_pid = (l_pid_t)bsd_flock->l_pid;
913}
914#endif /* __i386__ */
915
916#if defined(__alpha__)
917#define linux_fcntl64_args linux_fcntl_args
918#endif
919
920static int
921fcntl_common(struct proc *p, struct linux_fcntl64_args *args)
922{
923 struct fcntl_args fcntl_args;
924 struct filedesc *fdp;
925 struct file *fp;
926 int error, result;
927
928 fcntl_args.fd = args->fd;
929
930 switch (args->cmd) {
931 case LINUX_F_DUPFD:
932 fcntl_args.cmd = F_DUPFD;
933 fcntl_args.arg = args->arg;
934 return (fcntl(p, &fcntl_args));
935
936 case LINUX_F_GETFD:
937 fcntl_args.cmd = F_GETFD;
938 return (fcntl(p, &fcntl_args));
939
940 case LINUX_F_SETFD:
941 fcntl_args.cmd = F_SETFD;
942 fcntl_args.arg = args->arg;
943 return (fcntl(p, &fcntl_args));
944
945 case LINUX_F_GETFL:
946 fcntl_args.cmd = F_GETFL;
947 error = fcntl(p, &fcntl_args);
948 result = p->p_retval[0];
949 p->p_retval[0] = 0;
950 if (result & O_RDONLY)
951 p->p_retval[0] |= LINUX_O_RDONLY;
952 if (result & O_WRONLY)
953 p->p_retval[0] |= LINUX_O_WRONLY;
954 if (result & O_RDWR)
955 p->p_retval[0] |= LINUX_O_RDWR;
956 if (result & O_NDELAY)
957 p->p_retval[0] |= LINUX_O_NONBLOCK;
958 if (result & O_APPEND)
959 p->p_retval[0] |= LINUX_O_APPEND;
960 if (result & O_FSYNC)
961 p->p_retval[0] |= LINUX_O_SYNC;
962 if (result & O_ASYNC)
963 p->p_retval[0] |= LINUX_FASYNC;
964 return (error);
965
966 case LINUX_F_SETFL:
967 fcntl_args.arg = 0;
968 if (args->arg & LINUX_O_NDELAY)
969 fcntl_args.arg |= O_NONBLOCK;
970 if (args->arg & LINUX_O_APPEND)
971 fcntl_args.arg |= O_APPEND;
972 if (args->arg & LINUX_O_SYNC)
973 fcntl_args.arg |= O_FSYNC;
974 if (args->arg & LINUX_FASYNC)
975 fcntl_args.arg |= O_ASYNC;
976 fcntl_args.cmd = F_SETFL;
977 return (fcntl(p, &fcntl_args));
978
979 case LINUX_F_GETOWN:
980 fcntl_args.cmd = F_GETOWN;
981 return (fcntl(p, &fcntl_args));
982
983 case LINUX_F_SETOWN:
984 /*
985 * XXX some Linux applications depend on F_SETOWN having no
986 * significant effect for pipes (SIGIO is not delivered for
987 * pipes under Linux-2.2.35 at least).
988 */
989 fdp = p->p_fd;
990 if ((u_int)args->fd >= fdp->fd_nfiles ||
991 (fp = fdp->fd_ofiles[args->fd]) == NULL)
992 return (EBADF);
993 if (fp->f_type == DTYPE_PIPE)
994 return (EINVAL);
995
996 fcntl_args.cmd = F_SETOWN;
997 fcntl_args.arg = args->arg;
998 return (fcntl(p, &fcntl_args));
999 }
1000
1001 return (EINVAL);
1002}
1003
1004int
1005linux_fcntl(struct proc *p, struct linux_fcntl_args *args)
1006{
1007 struct linux_fcntl64_args args64;
1008 struct fcntl_args fcntl_args;
1009 struct l_flock linux_flock;
1010 struct flock *bsd_flock;
1011 int error;
1012 caddr_t sg;
1013
1014 sg = stackgap_init();
1015 bsd_flock = (struct flock *)stackgap_alloc(&sg, sizeof(bsd_flock));
1016
1017#ifdef DEBUG
1018 if (ldebug(fcntl))
1019 printf(ARGS(fcntl, "%d, %08x, *"), args->fd, args->cmd);
1020#endif
1021
1022 switch (args->cmd) {
1023 case LINUX_F_GETLK:
1024 error = copyin((caddr_t)args->arg, &linux_flock,
1025 sizeof(linux_flock));
1026 if (error)
1027 return (error);
1028 linux_to_bsd_flock(&linux_flock, bsd_flock);
1029 fcntl_args.fd = args->fd;
1030 fcntl_args.cmd = F_GETLK;
1031 fcntl_args.arg = (long)bsd_flock;
1032 error = fcntl(p, &fcntl_args);
1033 if (error)
1034 return (error);
1035 bsd_to_linux_flock(bsd_flock, &linux_flock);
1036 return (copyout(&linux_flock, (caddr_t)args->arg,
1037 sizeof(linux_flock)));
1038
1039 case LINUX_F_SETLK:
1040 error = copyin((caddr_t)args->arg, &linux_flock,
1041 sizeof(linux_flock));
1042 if (error)
1043 return (error);
1044 linux_to_bsd_flock(&linux_flock, bsd_flock);
1045 fcntl_args.fd = args->fd;
1046 fcntl_args.cmd = F_SETLK;
1047 fcntl_args.arg = (long)bsd_flock;
1048 return (fcntl(p, &fcntl_args));
1049
1050 case LINUX_F_SETLKW:
1051 error = copyin((caddr_t)args->arg, &linux_flock,
1052 sizeof(linux_flock));
1053 if (error)
1054 return (error);
1055 linux_to_bsd_flock(&linux_flock, bsd_flock);
1056 fcntl_args.fd = args->fd;
1057 fcntl_args.cmd = F_SETLKW;
1058 fcntl_args.arg = (long)bsd_flock;
1059 return (fcntl(p, &fcntl_args));
1060 }
1061
1062 args64.fd = args->fd;
1063 args64.cmd = args->cmd;
1064 args64.arg = args->arg;
1065 return (fcntl_common(p, &args64));
1066}
1067
1068#if defined(__i386__)
1069int
1070linux_fcntl64(struct proc *p, struct linux_fcntl64_args *args)
1071{
1072 struct fcntl_args fcntl_args;
1073 struct l_flock64 linux_flock;
1074 struct flock *bsd_flock;
1075 int error;
1076 caddr_t sg;
1077
1078 sg = stackgap_init();
1079 bsd_flock = (struct flock *)stackgap_alloc(&sg, sizeof(bsd_flock));
1080
1081#ifdef DEBUG
1082 if (ldebug(fcntl64))
1083 printf(ARGS(fcntl64, "%d, %08x, *"), args->fd, args->cmd);
1084#endif
1085
1086 switch (args->cmd) {
1087 case LINUX_F_GETLK:
1088 error = copyin((caddr_t)args->arg, &linux_flock,
1089 sizeof(linux_flock));
1090 if (error)
1091 return (error);
1092 linux_to_bsd_flock64(&linux_flock, bsd_flock);
1093 fcntl_args.fd = args->fd;
1094 fcntl_args.cmd = F_GETLK;
1095 fcntl_args.arg = (long)bsd_flock;
1096 error = fcntl(p, &fcntl_args);
1097 if (error)
1098 return (error);
1099 bsd_to_linux_flock64(bsd_flock, &linux_flock);
1100 return (copyout(&linux_flock, (caddr_t)args->arg,
1101 sizeof(linux_flock)));
1102
1103 case LINUX_F_SETLK:
1104 error = copyin((caddr_t)args->arg, &linux_flock,
1105 sizeof(linux_flock));
1106 if (error)
1107 return (error);
1108 linux_to_bsd_flock64(&linux_flock, bsd_flock);
1109 fcntl_args.fd = args->fd;
1110 fcntl_args.cmd = F_SETLK;
1111 fcntl_args.arg = (long)bsd_flock;
1112 return (fcntl(p, &fcntl_args));
1113
1114 case LINUX_F_SETLKW:
1115 error = copyin((caddr_t)args->arg, &linux_flock,
1116 sizeof(linux_flock));
1117 if (error)
1118 return (error);
1119 linux_to_bsd_flock64(&linux_flock, bsd_flock);
1120 fcntl_args.fd = args->fd;
1121 fcntl_args.cmd = F_SETLKW;
1122 fcntl_args.arg = (long)bsd_flock;
1123 return (fcntl(p, &fcntl_args));
1124 }
1125
1126 return (fcntl_common(p, args));
1127}
1128#endif /* __i386__ */