1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
|
/* $NetBSD: linux_pipe.c,v 1.7 1995/06/11 21:51:38 fvdl Exp $ */
/*
* Copyright (c) 1995 Frank van der Linden
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed for the NetBSD Project
* by Frank van der Linden
* 4. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* Linux compatibility module. Try to deal with various Linux system calls.
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/namei.h>
#include <sys/proc.h>
#include <sys/dir.h>
#include <sys/file.h>
#include <sys/stat.h>
#include <sys/filedesc.h>
#include <sys/ioctl.h>
#include <sys/kernel.h>
#include <sys/malloc.h>
#include <sys/mbuf.h>
#include <sys/mman.h>
#include <sys/mount.h>
#include <sys/ptrace.h>
#include <sys/resource.h>
#include <sys/resourcevar.h>
#include <sys/signal.h>
#include <sys/signalvar.h>
#include <sys/socket.h>
#include <sys/time.h>
#include <sys/times.h>
#include <sys/vnode.h>
#include <sys/uio.h>
#include <sys/wait.h>
#include <sys/utsname.h>
#include <sys/unistd.h>
#include <sys/syscallargs.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <compat/linux/linux_types.h>
#include <compat/linux/linux_fcntl.h>
#include <compat/linux/linux_mmap.h>
#include <compat/linux/linux_syscallargs.h>
#include <compat/linux/linux_util.h>
#include <compat/linux/linux_dirent.h>
/*
* The information on a terminated (or stopped) process needs
* to be converted in order for Linux binaries to get a valid signal
* number out of it.
*/
static int
bsd_to_linux_wstat(status)
int *status;
{
if (WIFSIGNALED(*status))
*status = (*status & ~0177) |
bsd_to_linux_sig(WTERMSIG(*status));
else if (WIFSTOPPED(*status))
*status = (*status & ~0xff00) |
(bsd_to_linux_sig(WSTOPSIG(*status)) << 8);
}
/*
* waitpid(2). Passed on to the NetBSD call, surrounded by code to
* reserve some space for a NetBSD-style wait status, and converting
* it to what Linux wants.
*/
int
linux_waitpid(p, uap, retval)
struct proc *p;
struct linux_waitpid_args /* {
syscallarg(int) pid;
syscallarg(int *) status;
syscallarg(int) options;
} */ *uap;
register_t *retval;
{
struct wait4_args w4a;
int error, *status, tstat;
caddr_t sg;
sg = stackgap_init();
status = (int *) stackgap_alloc(&sg, sizeof status);
SCARG(&w4a, pid) = SCARG(uap, pid);
SCARG(&w4a, status) = status;
SCARG(&w4a, options) = SCARG(uap, options);
SCARG(&w4a, rusage) = NULL;
if ((error = wait4(p, &w4a, retval)))
return error;
if ((error = copyin(status, &tstat, sizeof tstat)))
return error;
bsd_to_linux_wstat(&tstat);
return copyout(&tstat, SCARG(uap, status), sizeof tstat);
}
/*
* This is very much the same as waitpid()
*/
int
linux_wait4(p, uap, retval)
struct proc *p;
struct linux_wait4_args /* {
syscallarg(int) pid;
syscallarg(int *) status;
syscallarg(int) options;
syscallarg(struct rusage *) rusage;
} */ *uap;
register_t *retval;
{
struct wait4_args w4a;
int error, *status, tstat;
caddr_t sg;
sg = stackgap_init();
status = (int *) stackgap_alloc(&sg, sizeof status);
SCARG(&w4a, pid) = SCARG(uap, pid);
SCARG(&w4a, status) = status;
SCARG(&w4a, options) = SCARG(uap, options);
SCARG(&w4a, rusage) = SCARG(uap, rusage);
if ((error = wait4(p, &w4a, retval)))
return error;
if ((error = copyin(status, &tstat, sizeof tstat)))
return error;
bsd_to_linux_wstat(&tstat);
return copyout(&tstat, SCARG(uap, status), sizeof tstat);
}
/*
* This is the old brk(2) call. I don't think anything in the Linux
* world uses this anymore
*/
int
linux_break(p, uap, retval)
struct proc *p;
struct linux_brk_args /* {
syscallarg(char *) nsize;
} */ *uap;
register_t *retval;
{
return ENOSYS;
}
/*
* Linux brk(2). The check if the new address is >= the old one is
* done in the kernel in Linux. NetBSD does it in the library.
*/
int
linux_brk(p, uap, retval)
struct proc *p;
struct linux_brk_args /* {
syscallarg(char *) nsize;
} */ *uap;
register_t *retval;
{
char *nbrk = SCARG(uap, nsize);
struct obreak_args oba;
struct vmspace *vm = p->p_vmspace;
int error = 0;
caddr_t oldbrk, newbrk;
oldbrk = vm->vm_daddr + ctob(vm->vm_dsize);
/*
* XXX inconsistent.. Linux always returns at least the old
* brk value, but it will be page-aligned if this fails,
* and possibly not page aligned if it succeeds (the user
* supplied pointer is returned).
*/
SCARG(&oba, nsize) = nbrk;
if ((caddr_t) nbrk > vm->vm_daddr && obreak(p, &oba, retval) == 0)
retval[0] = (register_t) nbrk;
else
retval[0] = (register_t) oldbrk;
return 0;
}
/*
* I wonder why Linux has gettimeofday() _and_ time().. Still, we
* need to deal with it.
*/
int
linux_time(p, uap, retval)
struct proc *p;
struct linux_time_args /* {
linux_time_t *t;
} */ *uap;
register_t *retval;
{
struct timeval atv;
linux_time_t tt;
int error;
microtime(&atv);
tt = atv.tv_sec;
if (SCARG(uap, t) && (error = copyout(&tt, SCARG(uap, t), sizeof tt)))
return error;
retval[0] = tt;
return 0;
}
/*
* Convert BSD statfs structure to Linux statfs structure.
* The Linux structure has less fields, and it also wants
* the length of a name in a dir entry in a field, which
* we fake (probably the wrong way).
*/
static void
bsd_to_linux_statfs(bsp, lsp)
struct statfs *bsp;
struct linux_statfs *lsp;
{
lsp->l_ftype = bsp->f_type;
lsp->l_fbsize = bsp->f_bsize;
lsp->l_fblocks = bsp->f_blocks;
lsp->l_fbfree = bsp->f_bfree;
lsp->l_fbavail = bsp->f_bavail;
lsp->l_ffiles = bsp->f_files;
lsp->l_fffree = bsp->f_ffree;
lsp->l_ffsid.val[0] = bsp->f_fsid.val[0];
lsp->l_ffsid.val[1] = bsp->f_fsid.val[1];
lsp->l_fnamelen = MAXNAMLEN; /* XXX */
}
/*
* Implement the fs stat functions. Straightforward.
*/
int
linux_statfs(p, uap, retval)
struct proc *p;
struct linux_statfs_args /* {
syscallarg(char *) path;
syscallarg(struct linux_statfs *) sp;
} */ *uap;
register_t *retval;
{
struct statfs btmp, *bsp;
struct linux_statfs ltmp;
struct statfs_args bsa;
caddr_t sg;
int error;
sg = stackgap_init();
bsp = (struct statfs *) stackgap_alloc(&sg, sizeof (struct statfs));
CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
SCARG(&bsa, path) = SCARG(uap, path);
SCARG(&bsa, buf) = bsp;
if ((error = statfs(p, &bsa, retval)))
return error;
if ((error = copyin((caddr_t) bsp, (caddr_t) &btmp, sizeof btmp)))
return error;
bsd_to_linux_statfs(&btmp, <mp);
return copyout((caddr_t) <mp, (caddr_t) SCARG(uap, sp), sizeof ltmp);
}
int
linux_fstatfs(p, uap, retval)
struct proc *p;
struct linux_fstatfs_args /* {
syscallarg(int) fd;
syscallarg(struct linux_statfs *) sp;
} */ *uap;
register_t *retval;
{
struct statfs btmp, *bsp;
struct linux_statfs ltmp;
struct fstatfs_args bsa;
caddr_t sg;
int error;
sg = stackgap_init();
bsp = (struct statfs *) stackgap_alloc(&sg, sizeof (struct statfs));
SCARG(&bsa, fd) = SCARG(uap, fd);
SCARG(&bsa, buf) = bsp;
if ((error = statfs(p, &bsa, retval)))
return error;
if ((error = copyin((caddr_t) bsp, (caddr_t) &btmp, sizeof btmp)))
return error;
bsd_to_linux_statfs(&btmp, <mp);
return copyout((caddr_t) <mp, (caddr_t) SCARG(uap, sp), sizeof ltmp);
}
/*
* uname(). Just copy the info from the various strings stored in the
* kernel, and put it in the Linux utsname structure. That structure
* is almost the same as the NetBSD one, only it has fields 65 characters
* long, and an extra domainname field.
*/
int
linux_uname(p, uap, retval)
struct proc *p;
struct linux_uname_args /* {
syscallarg(struct linux_utsname *) up;
} */ *uap;
register_t *retval;
{
extern char ostype[], osrelease[], version[], hostname[], domainname[];
extern char machine[];
struct linux_utsname tluts;
int len;
char *cp;
strncpy(tluts.l_sysname, ostype, sizeof (tluts.l_sysname));
strncpy(tluts.l_nodename, hostname, sizeof (tluts.l_nodename));
strncpy(tluts.l_release, osrelease, sizeof (tluts.l_release));
strncpy(tluts.l_machine, machine, sizeof (tluts.l_machine));
strncpy(tluts.l_domainname, domainname, sizeof (tluts.l_domainname));
strncpy(tluts.l_version, version, sizeof (tluts.l_version));
/* This part taken from the the uname() in libc */
len = sizeof (tluts.l_version);
for (cp = tluts.l_version; len--; ++cp)
if (*cp == '\n' || *cp == '\t')
if (len > 1)
*cp = ' ';
else
*cp = '\0';
return copyout(&tluts, SCARG(uap, up), sizeof tluts);
}
/*
* Linux wants to pass everything to a syscall in registers. However,
* mmap() has 6 of them. Oops: out of register error. They just pass
* everything in a structure.
*/
int
linux_mmap(p, uap, retval)
struct proc *p;
struct linux_mmap_args /* {
syscallarg(struct linux_mmap *) lmp;
} */ *uap;
register_t *retval;
{
struct linux_mmap lmap;
struct mmap_args cma;
int error, flags;
if ((error = copyin(SCARG(uap, lmp), &lmap, sizeof lmap)))
return error;
flags = 0;
flags |= cvtto_bsd_mask(lmap.lm_flags, LINUX_MAP_SHARED, MAP_SHARED);
flags |= cvtto_bsd_mask(lmap.lm_flags, LINUX_MAP_PRIVATE, MAP_PRIVATE);
flags |= cvtto_bsd_mask(lmap.lm_flags, LINUX_MAP_FIXED, MAP_FIXED);
flags |= cvtto_bsd_mask(lmap.lm_flags, LINUX_MAP_ANON, MAP_ANON);
SCARG(&cma,addr) = lmap.lm_addr;
SCARG(&cma,len) = lmap.lm_len;
SCARG(&cma,prot) = lmap.lm_prot;
SCARG(&cma,flags) = flags;
SCARG(&cma,fd) = lmap.lm_fd;
SCARG(&cma,pad) = 0;
SCARG(&cma,pos) = lmap.lm_pos;
return mmap(p, &cma, retval);
}
/*
* Linux doesn't use the retval[1] value to determine whether
* we are the child or parent.
*/
int
linux_fork(p, uap, retval)
struct proc *p;
void *uap;
register_t *retval;
{
int error;
if ((error = fork(p, uap, retval)))
return error;
if (retval[1] == 1)
retval[0] = 0;
return 0;
}
/*
* This code is partly stolen from src/lib/libc/compat-43/times.c
* XXX - CLK_TCK isn't declared in /sys, just in <time.h>, done here
*/
#define CLK_TCK 100
#define CONVTCK(r) (r.tv_sec * CLK_TCK + r.tv_usec / (1000000 / CLK_TCK))
int
linux_times(p, uap, retval)
struct proc *p;
struct linux_times_args /* {
syscallarg(struct times *) tms;
} */ *uap;
register_t *retval;
{
struct timeval t;
struct linux_tms ltms;
struct rusage ru;
int error, s;
calcru(p, &ru.ru_utime, &ru.ru_stime, NULL);
ltms.ltms_utime = CONVTCK(ru.ru_utime);
ltms.ltms_stime = CONVTCK(ru.ru_stime);
ltms.ltms_cutime = CONVTCK(p->p_stats->p_cru.ru_utime);
ltms.ltms_cstime = CONVTCK(p->p_stats->p_cru.ru_stime);
if ((error = copyout(<ms, SCARG(uap, tms), sizeof ltms)))
return error;
s = splclock();
timersub(&time, &boottime, &t);
splx(s);
retval[0] = ((linux_clock_t)(CONVTCK(t)));
return 0;
}
/*
* NetBSD passes fd[0] in retval[0], and fd[1] in retval[1].
* Linux directly passes the pointer.
*/
int
linux_pipe(p, uap, retval)
struct proc *p;
struct linux_pipe_args /* {
syscallarg(int *) pfds;
} */ *uap;
register_t *retval;
{
int error;
if ((error = pipe(p, 0, retval)))
return error;
/* Assumes register_t is an int */
if ((error = copyout(retval, SCARG(uap, pfds), 2 * sizeof (int))))
return error;
retval[0] = 0;
return 0;
}
/*
* Alarm. This is a libc call which used setitimer(2) in NetBSD.
* Fiddle with the timers to make it work.
*/
int
linux_alarm(p, uap, retval)
struct proc *p;
struct linux_alarm_args /* {
syscallarg(unsigned int) secs;
} */ *uap;
register_t *retval;
{
int error, s;
struct itimerval *itp, it;
itp = &p->p_realtimer;
s = splclock();
/*
* Clear any pending timer alarms.
*/
untimeout(realitexpire, p);
timerclear(&itp->it_interval);
if (timerisset(&itp->it_value) &&
timercmp(&itp->it_value, &time, >))
timersub(&itp->it_value, &time, &itp->it_value);
/*
* Return how many seconds were left (rounded up)
*/
retval[0] = itp->it_value.tv_sec;
if (itp->it_value.tv_usec)
retval[0]++;
/*
* alarm(0) just resets the timer.
*/
if (SCARG(uap, secs) == 0) {
timerclear(&itp->it_value);
splx(s);
return 0;
}
/*
* Check the new alarm time for sanity, and set it.
*/
timerclear(&it.it_interval);
it.it_value.tv_sec = SCARG(uap, secs);
it.it_value.tv_usec = 0;
if (itimerfix(&it.it_value) || itimerfix(&it.it_interval)) {
splx(s);
return (EINVAL);
}
if (timerisset(&it.it_value)) {
timeradd(&it.it_value, &time, &it.it_value);
timeout(realitexpire, p, hzto(&it.it_value));
}
p->p_realtimer = it;
splx(s);
return 0;
}
/*
* utime(). Do conversion to things that utimes() understands,
* and pass it on.
*/
int
linux_utime(p, uap, retval)
struct proc *p;
struct linux_utime_args /* {
syscallarg(char *) path;
syscallarg(struct linux_utimbuf *)times;
} */ *uap;
register_t *retval;
{
caddr_t sg;
int error;
struct utimes_args ua;
struct timeval tv[2], *tvp;
struct linux_utimbuf lut;
sg = stackgap_init();
CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
SCARG(&ua, path) = SCARG(uap, path);
if (SCARG(uap, times) != NULL) {
if ((error = copyin(SCARG(uap, times), &lut, sizeof lut)))
return error;
tv[0].tv_usec = tv[1].tv_usec = 0;
tv[0].tv_sec = lut.l_actime;
tv[1].tv_sec = lut.l_modtime;
tvp = (struct timeval *) stackgap_alloc(sizeof tv);
if ((error = copyout(tv, tvp, sizeof tv)))
return error;
SCARG(&ua, tptr) = tvp;
}
else
SCARG(&ua, tptr) = NULL;
return utimes(p, uap, retval);
}
/*
* Linux 'readdir' call. This code is mostly taken from the
* SunOS getdents call (see compat/sunos/sunos_misc.c), though
* an attempt has been made to keep it a little cleaner (failing
* miserably, because of the cruft needed if count 1 is passed).
*
* Read in BSD-style entries, convert them, and copy them out.
* Note that the Linux d_reclen is actually the name length,
* and d_off is the reclen.
*
* Note that this doesn't handle union-mounted filesystems.
*/
int
linux_readdir(p, uap, retval)
struct proc *p;
struct linux_readdir_args /* {
syscallarg(int) fd;
syscallarg(struct linux_dirent *) dent;
syscallarg(unsigned int) count;
} */ *uap;
register_t *retval;
{
register struct dirent *bdp;
struct vnode *vp;
caddr_t inp, buf; /* BSD-format */
int len, reclen; /* BSD-format */
caddr_t outp; /* Linux-format */
int resid, linuxreclen; /* Linux-format */
struct file *fp;
struct uio auio;
struct iovec aiov;
struct linux_dirent idb;
off_t off; /* true file offset */
linux_off_t soff; /* Linux file offset */
int buflen, error, eofflag, nbytes, justone;
struct vattr va;
if ((error = getvnode(p->p_fd, SCARG(uap, fd), &fp)) != 0)
return (error);
if ((fp->f_flag & FREAD) == 0)
return (EBADF);
vp = (struct vnode *)fp->f_data;
if (vp->v_type != VDIR) /* XXX vnode readdir op should do this */
return (EINVAL);
if ((error = VOP_GETATTR(vp, &va, p->p_ucred, p)))
return error;
nbytes = SCARG(uap, count);
if (nbytes == 1) { /* Need this for older Linux libs, apparently */
nbytes = sizeof (struct linux_dirent);
buflen = max(va.va_blocksize, nbytes);
justone = 1;
} else {
buflen = min(MAXBSIZE, nbytes);
justone = 0;
}
buf = malloc(buflen, M_TEMP, M_WAITOK);
VOP_LOCK(vp);
off = fp->f_offset;
again:
aiov.iov_base = buf;
aiov.iov_len = buflen;
auio.uio_iov = &aiov;
auio.uio_iovcnt = 1;
auio.uio_rw = UIO_READ;
auio.uio_segflg = UIO_SYSSPACE;
auio.uio_procp = p;
auio.uio_resid = buflen;
auio.uio_offset = off;
/*
* First we read into the malloc'ed buffer, then
* we massage it into user space, one record at a time.
*/
error = VOP_READDIR(vp, &auio, fp->f_cred, &eofflag, (u_long *)0, 0);
if (error)
goto out;
inp = buf;
outp = (caddr_t) SCARG(uap, dent);
resid = nbytes;
if ((len = buflen - auio.uio_resid) == 0)
goto eof;
for (; len > 0; len -= reclen) {
bdp = (struct dirent *)inp;
reclen = bdp->d_reclen;
if (reclen & 3)
panic("linux_readdir");
off += reclen; /* each entry points to next */
if (bdp->d_fileno == 0) {
inp += reclen; /* it is a hole; squish it out */
continue;
}
linuxreclen = LINUX_RECLEN(&idb, bdp->d_namlen);
if (reclen > len || resid < linuxreclen) {
/* entry too big for buffer, so just stop */
outp++;
break;
}
/*
* Massage in place to make a Linux-shaped dirent (otherwise
* we have to worry about touching user memory outside of
* the copyout() call).
*/
idb.d_ino = (long)bdp->d_fileno;
idb.d_off = (linux_off_t)linuxreclen;
idb.d_reclen = (u_short)bdp->d_namlen;
strcpy(idb.d_name, bdp->d_name);
if ((error = copyout((caddr_t)&idb, outp, linuxreclen)))
goto out;
/* advance past this real entry */
inp += reclen;
/* advance output past Linux-shaped entry */
outp += linuxreclen;
resid -= linuxreclen;
if (justone)
break;
}
/* if we squished out the whole block, try again */
if (outp == (caddr_t) SCARG(uap, dent))
goto again;
fp->f_offset = off; /* update the vnode offset */
if (justone)
nbytes = resid + linuxreclen;
eof:
*retval = nbytes - resid;
out:
VOP_UNLOCK(vp);
free(buf, M_TEMP);
return error;
}
/*
* Out of register error once more.. Also, Linux copies the amount of
* time left into the user-supplied timeval structure.
*/
int
linux_select(p, uap, retval)
struct proc *p;
struct linux_select_args /* {
syscallarg(struct linux_select *) lsp;
} */ *uap;
register_t *retval;
{
struct linux_select ls;
struct select_args bsa;
struct timeval tv0, tv1, utv;
int error;
if ((error = copyin(SCARG(uap, lsp), (caddr_t)&ls, sizeof ls)))
return error;
SCARG(&bsa, nd) = ls.nfds;
SCARG(&bsa, in) = ls.readfds;
SCARG(&bsa, ou) = ls.writefds;
SCARG(&bsa, ex) = ls.exceptfds;
SCARG(&bsa, tv) = ls.timeout;
/*
* Store current time for computation of the amount of
* time left.
*/
if (ls.timeout)
microtime(&tv0);
if ((error = select(p, &bsa, retval)))
return error;
if (ls.timeout) {
if (!*retval) {
utv.tv_sec = 0;
utv.tv_usec = 0;
} else {
/*
* Compute how many time was left of the timeout,
* by subtracting the current time and the time
* before we started the call, and subtracting
* that result from the user-supplied value.
*/
microtime(&tv1);
if ((error = copyin((caddr_t)ls.timeout, (caddr_t)&utv,
sizeof utv)))
return error;
timersub(&tv1, &tv0, &tv1);
timersub(&utv, &tv1, &utv);
}
if ((error = copyout((caddr_t)&utv, (caddr_t)ls.timeout,
sizeof utv)))
return error;
}
return 0;
}
/*
* Get the process group of a certain process. Look it up
* and return the value.
*/
int
linux_getpgid(p, uap, retval)
struct proc *p;
struct linux_getpgid_args /* {
syscallarg(int) pid;
} */ *uap;
register_t *retval;
{
struct proc *targp;
if (SCARG(uap, pid) != 0 && SCARG(uap, pid) != p->p_pid)
if ((targp = pfind(SCARG(uap, pid))) == 0)
return ESRCH;
else
targp = p;
retval[0] = targp->p_pgid;
return 0;
}
/*
* Set the 'personality' (emulation mode) for the current process. Only
* accept the Linux personality here (0). This call is needed because
* the Linux ELF crt0 issues it in an ugly kludge to make sure that
* ELF binaries run in Linux mode, not SVR4 mode.
*/
int
linux_personality(p, uap, retval)
struct proc *p;
struct linux_personality_args /* P
syscallarg(int) per;
} */ *uap;
register_t *retval;
{
if (SCARG(uap, per) != 0)
return EINVAL;
retval[0] = 0;
return 0;
}
|