Age | Commit message (Collapse) | Author | |
---|---|---|---|
1999-12-06 | Regen. | Aaron Campbell | |
1999-12-06 | Implement compatibility for Linux stime() syscall. | Aaron Campbell | |
1999-11-26 | Use round_page(X) instead of roundup(X, NBPG), use PAGE_SIZE instead of NBPG. | Artur Grabowski | |
1999-11-10 | include syscallnames only if compiling w/ SYSCALL_DEBUG. | Michael Shalayeff | |
was already so for native and sunos, the rest was just wasting space on it. niels@ millert@ ok | |||
1999-09-10 | include sys/exec.h before sys/exec_elf.h | Artur Grabowski | |
1999-07-18 | TIOCM{GET,SET,BIS,BIC}, and TCXONC support | Theo de Raadt | |
1999-06-14 | avoid future register_t vs int problems, if this becomes 64 bit | Theo de Raadt | |
1999-06-08 | better fd leak prevention | Theo de Raadt | |
1999-06-08 | use sys_opipe(), but note the descriptor leakage | Theo de Raadt | |
1999-05-31 | New struct statfs with mount options. NOTE: this replaces statfs(2), | Todd C. Miller | |
fstatfs(2), and getfsstat(2) so you will need to build a new kernel before doing a "make build" or you will get "unimplemented syscall" errors. The new struct statfs has the following featuires: o Has a u_int32_t flags field--now softdep can have a real flag. o Uses u_int32_t instead of longs (nicer on the alpha). Note: the man page used to lie about setting invalid/unused fields to -1. SunOS does that but our code never has. o Gets rid of f_type completely. It hasn't been used since NetBSD 0.9 and having it there but always 0 is confusing. It is conceivable that this may cause some old code to not compile but that is better than silently breaking. o Adds a mount_info union that contains the FSTYPE_args struct. This means that "mount" can now tell you all the options a filesystem was mounted with. This is especially nice for NFS. Other changes: o The linux statfs emulation didn't convert between BSD fs names and linux f_type numbers. Now it does, since the BSD f_type number is useless to linux apps (and has been removed anyway) o FreeBSD's struct statfs is different from our (both old and new) and thus needs conversion. Previously, the OpenBSD syscalls were used without any real translation. o mount(8) will now show extra info when invoked with no arguments. However, to see *everything* you need to use the -v (verbose) flag. | |||
1999-02-10 | branding support and freebsd elf | Theo de Raadt | |
1999-02-10 | more ioctl support | Theo de Raadt | |
1999-02-10 | IP_HDRINCL support, will need tweaking; freebsd | Theo de Raadt | |
1999-02-10 | linux sendmsg/recvmsg | Theo de Raadt | |
1999-02-10 | more socket/file ioctl | Theo de Raadt | |
1999-02-10 | strncpy; edx trashing solution in sys_pipe(); freebsd | Theo de Raadt | |
1999-02-10 | Correct directory entry reads, big directories lost entries as it were. | Niklas Hallqvist | |
Also, fix the NCR SVR4 rdebug syscall emulation. | |||
1999-01-11 | panic prints a newline for you, don't do it in the panic string | Todd C. Miller | |
1998-12-22 | range check signal [] conversions | Theo de Raadt | |
1998-07-28 | Return EINVAL when msg_iovlen or iovcnt <= 0; Make uio_resid unsigned ↵ | Todd C. Miller | |
(size_t) and don't return EINVAL if it is < 0 in sys_{read,write}. Remove check for uio_resid < 0 uiomove() now that uio_resid is unsigned and brack remaining panics with #ifdef DIAGNOSTIC. vn_rdwr() must now take a size_t * as its 9th argument so change that and clean up uses of vn_rdwr(). Fixes 549 + more | |||
1998-07-19 | no; linux connect() appears busted in blocking mode too | Theo de Raadt | |
1998-07-13 | oops; mwp@aba.net.au | Theo de Raadt | |
1998-07-05 | fix netbsd bug; from boquist@cs.chalmers.se | Jason Downs | |
1998-07-04 | emulate shrinking in mremap(); boquist@cs.chalmers.se | Theo de Raadt | |
1998-04-26 | use osscompat for audio emulation. | Niels Provos | |
1998-04-26 | correct utimes() emulation | Theo de Raadt | |
1998-04-25 | Aparently the socketpair bug is fixed in current Linux kernels so | Todd C. Miller | |
back out my last change. | |||
1998-04-25 | Linux has SHUT_RD and SHUT_WR reversed in the ``how'' argument. Presumably | Todd C. Miller | |
they will fix this sometime, after which this change should be backed out. Pointed out by tchrist@perl.com | |||
1998-03-22 | correct a comment | Todd C. Miller | |
1998-03-06 | Just alter the tag if it is not already set | Niklas Hallqvist | |
1998-02-23 | GCC 2.8 -Wall | Niklas Hallqvist | |
1998-02-22 | Remember OS tag when running Linux or SVR4 ELF files. KNF. | Niklas Hallqvist | |
1998-02-10 | recover from lint changes elsewhere, not completely tested | Theo de Raadt | |
1998-02-07 | emulate linux connect() braindamage even better -- only do so on async | Theo de Raadt | |
sockets; pb@fasterix.freenix.org | |||
1998-01-23 | additional ioctls, makes workman and workbone working. | Niels Provos | |
1997-12-20 | indent | Theo de Raadt | |
1997-12-14 | support IP_HDRINCL | Theo de Raadt | |
1997-12-10 | emulate set controlling tty ioctl | Niels Provos | |
1997-12-10 | add GIFMETRIC and GIFMTU | Niels Provos | |
1997-12-10 | sync | Theo de Raadt | |
1997-12-10 | nanosleep emulation | Theo de Raadt | |
1997-12-10 | emulate linux SIOCGIFHWADDR; stolen from freebsd; not tested yet | Theo de Raadt | |
1997-12-10 | insert forgotten copyright + handle eject ioctl. | Niels Provos | |
1997-12-07 | handle linux cdrom ioctls. not that i play quake that often but it was | Niels Provos | |
the only binary around. | |||
1997-11-27 | oh, connect() semantics are EVEN WORSE | Theo de Raadt | |
1997-11-26 | enforce VM_PROT_READ in mmap | Theo de Raadt | |
1997-11-26 | fix shmctl IPC_STAT | Theo de Raadt | |
1997-11-26 | If using async connect(), after select for writeable, if getpeername() | Theo de Raadt | |
indicates connection failure, you can use getsockopt(SOL_SOCKET, SO_ERROR, ...) to find the error. But the linux people I guess didn't know about this, and changed connect() so that a 2nd connect() call on a failed socket returns the error directly. Fake this demented non-standard behaviour which Linux users are now starting to code to. Talk about dilution of the API... | |||
1997-11-26 | indent | Theo de Raadt | |
1997-11-13 | sync | Theo de Raadt | |