mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-07-14 15:09:09 +00:00
Improve system call wrappers
This change improves copy_file_range(), sendfile(), splice(), openpty(), closefrom(), close_range(), fadvise() and posix_fadvise() in addition to writing tests that confirm things like errno and seeking behavior across platforms. We now less aggressively polyfill behavior with some of these functions when the platform support isn't available. Please see: https://justine.lol/cosmopolitan/functions.html
This commit is contained in:
parent
224c12f54d
commit
c7a8cd21e9
89 changed files with 1151 additions and 414 deletions
|
@ -16,57 +16,9 @@
|
|||
│ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR │
|
||||
│ PERFORMANCE OF THIS SOFTWARE. │
|
||||
╚─────────────────────────────────────────────────────────────────────────────*/
|
||||
#include "libc/calls/calls.h"
|
||||
#include "libc/calls/syscall-sysv.internal.h"
|
||||
#include "libc/calls/syscall_support-sysv.internal.h"
|
||||
#include "libc/calls/termios.h"
|
||||
#include "libc/dce.h"
|
||||
#include "libc/errno.h"
|
||||
#include "libc/fmt/itoa.h"
|
||||
#include "libc/paths.h"
|
||||
#include "libc/str/str.h"
|
||||
#include "libc/sysv/consts/termios.h"
|
||||
#include "libc/sysv/errfuns.h"
|
||||
|
||||
struct fiodgname_arg {
|
||||
int len;
|
||||
void *buf;
|
||||
};
|
||||
|
||||
static int PtsName(int fd, char *buf, size_t size) {
|
||||
if (size < 9 + 12) return erange();
|
||||
if (_isptmaster(fd)) return -1;
|
||||
|
||||
if (IsLinux()) {
|
||||
int pty;
|
||||
if (sys_ioctl(fd, TIOCGPTN, &pty)) return -1;
|
||||
buf[0] = '/', buf[1] = 'd', buf[2] = 'e', buf[3] = 'v';
|
||||
buf[4] = '/', buf[5] = 'p', buf[6] = 't', buf[7] = 's';
|
||||
buf[8] = '/', FormatInt32(buf + 9, pty);
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (IsFreebsd()) {
|
||||
struct fiodgname_arg fgn = {size - 5, buf + 5};
|
||||
buf[0] = '/', buf[1] = 'd';
|
||||
buf[2] = 'e', buf[3] = 'v';
|
||||
buf[4] = '/', buf[5] = 0;
|
||||
if (sys_ioctl(fd, FIODGNAME, &fgn) == -1) {
|
||||
if (errno == EINVAL) errno = ERANGE;
|
||||
return -1;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (IsXnu()) {
|
||||
char b2[128];
|
||||
if (sys_ioctl(fd, TIOCPTYGNAME, b2)) return -1;
|
||||
if (strlen(b2) + 1 > size) return erange();
|
||||
strcpy(buf, b2);
|
||||
return 0;
|
||||
}
|
||||
|
||||
return enosys();
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets name subordinate pseudoteletypewriter.
|
||||
|
@ -75,7 +27,7 @@ static int PtsName(int fd, char *buf, size_t size) {
|
|||
*/
|
||||
errno_t ptsname_r(int fd, char *buf, size_t size) {
|
||||
int rc, e = errno;
|
||||
if (!PtsName(fd, buf, size)) {
|
||||
if (!_ptsname(fd, buf, size)) {
|
||||
rc = 0;
|
||||
} else {
|
||||
rc = errno;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue