mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
919cfd12bd
Closes #8544 PiperOrigin-RevId: 535456427
96 lines
2.4 KiB
C
96 lines
2.4 KiB
C
// Copyright 2021 The gVisor Authors.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#include <err.h>
|
|
#include <errno.h>
|
|
#include <getopt.h>
|
|
#include <stddef.h>
|
|
#include <stdio.h>
|
|
#include <sys/epoll.h>
|
|
#include <sys/ioctl.h>
|
|
#include <sys/select.h>
|
|
#include <unistd.h>
|
|
|
|
// Flag to indicate that TTY is being used in the container.
|
|
static int tty = 0;
|
|
|
|
// Tests that FIONREAD is supported with host FD.
|
|
void testFionread() {
|
|
int size = 0;
|
|
if (ioctl(STDOUT_FILENO, FIONREAD, &size) < 0) {
|
|
err(1, "ioctl(stdin, FIONREAD)");
|
|
}
|
|
if (size != 0) {
|
|
err(1, "FIONREAD wrong size, want: 0, got: %d", size);
|
|
}
|
|
}
|
|
|
|
// Docker maps stdin to /dev/null which doesn't support epoll. Check that error
|
|
// is correctly propagated.
|
|
void testEpoll() {
|
|
if (tty) {
|
|
// stdin is not /dev/null when TTY is used for the container.
|
|
return;
|
|
}
|
|
int fd = epoll_create(1);
|
|
if (fd < 0) {
|
|
err(1, "epoll_create");
|
|
}
|
|
|
|
struct epoll_event event;
|
|
event.events = EPOLLIN;
|
|
event.data.u64 = 123;
|
|
int res = epoll_ctl(fd, EPOLL_CTL_ADD, 0, &event);
|
|
if (res != -1) {
|
|
err(1, "epoll_ctl(EPOLL_CTL_ADD, stdin) should have failed");
|
|
}
|
|
if (errno != EPERM) {
|
|
err(1, "epoll_ctl(EPOLL_CTL_ADD, stdin) should have returned EPERM");
|
|
}
|
|
}
|
|
|
|
// Docker maps stdin to /dev/null. Check that select(2) works with stdin.
|
|
void testSelect() {
|
|
fd_set rfds;
|
|
struct timeval tv;
|
|
int res;
|
|
FD_ZERO(&rfds);
|
|
FD_SET(0, &rfds);
|
|
tv.tv_sec = 0;
|
|
tv.tv_usec = 1;
|
|
res = select(1, &rfds, NULL, NULL, &tv);
|
|
if (res == -1) {
|
|
err(1, "select(1, [STDIN], NULL, NULL) returned error");
|
|
}
|
|
}
|
|
|
|
int main(int argc, char** argv) {
|
|
int opt;
|
|
while ((opt = getopt(argc, argv, "t")) != -1) {
|
|
switch (opt) {
|
|
case 't':
|
|
tty = 1;
|
|
break;
|
|
default:
|
|
fprintf(stderr, "Usage: %s [-t]\n", argv[0]);
|
|
return 1;
|
|
}
|
|
}
|
|
|
|
testFionread();
|
|
testEpoll();
|
|
testSelect();
|
|
return 0;
|
|
}
|