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
|
/*
* Copyright (c) 2020-2021 The strace developers.
* All rights reserved.
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "tests.h"
#include "scno.h"
#include "pidns.h"
#if defined __NR_getpid && (!defined __NR_getxpid || __NR_getxpid != __NR_getpid)
# include <stdio.h>
# include <unistd.h>
# include <sys/time.h>
# define SYSCALL_COUNT 10000
/**
* Max ratio of the execution time with and without pidns translation.
*/
# define MAX_TIME_RATIO 20
static long
execute_syscalls(void)
{
/* Load our PID in the cache */
syscall(__NR_getpid);
struct timeval stop, start;
gettimeofday(&start, NULL);
for (int i = 0; i < SYSCALL_COUNT; i++)
syscall(__NR_getpid);
gettimeofday(&stop, NULL);
return (stop.tv_usec - start.tv_usec) +
(stop.tv_sec - start.tv_sec) * 1000000;
}
int
main(void)
{
long orig_us = execute_syscalls();
long max_us = orig_us * MAX_TIME_RATIO;
pidns_test_init();
long us = execute_syscalls();
fprintf(stderr, "Before PID NS test init: %ld\n"
"After PID NS test init: %ld (%.2f times slower)\n",
orig_us, us, (float) us / orig_us);
if (us > max_us)
error_msg_and_fail("pidns translation took too long: %ld us "
"(max: %ld us)", us, max_us);
return 0;
}
#else
SKIP_MAIN_UNDEFINED("__NR_getpid")
#endif
|