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
|
/*
* Check decoding of dup2 syscall.
*
* Copyright (c) 2016-2020 The strace developers.
* All rights reserved.
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "tests.h"
#include "scno.h"
#ifdef __NR_dup2
# include <stdio.h>
# include <unistd.h>
# ifndef FD0_PATH
# define FD0_PATH ""
# endif
# ifndef FD9_PATH
# define FD9_PATH ""
# endif
# ifndef SKIP_IF_PROC_IS_UNAVAILABLE
# define SKIP_IF_PROC_IS_UNAVAILABLE
# endif
static const char *errstr;
static long
k_dup2(const unsigned int fd1, const unsigned int fd2)
{
const kernel_ulong_t fill = (kernel_ulong_t) 0xdefaced00000000ULL;
const kernel_ulong_t bad = (kernel_ulong_t) 0xbadc0dedbadc0dedULL;
const kernel_ulong_t arg1 = fill | fd1;
const kernel_ulong_t arg2 = fill | fd2;
const long rc = syscall(__NR_dup2, arg1, arg2, bad, bad, bad, bad);
errstr = sprintrc(rc);
return rc;
}
int
main(void)
{
SKIP_IF_PROC_IS_UNAVAILABLE;
int fd0 = dup(0);
int fd9 = dup(9);
if (k_dup2(0, 0))
perror_msg_and_skip("dup2");
# ifndef PATH_TRACING
printf("dup2(0" FD0_PATH ", 0" FD0_PATH ") = 0" FD0_PATH "\n");
# endif
k_dup2(-1, -2);
# ifndef PATH_TRACING
printf("dup2(-1, -2) = %s\n", errstr);
# endif
k_dup2(-2, -1);
# ifndef PATH_TRACING
printf("dup2(-2, -1) = %s\n", errstr);
# endif
k_dup2(-3, 0);
# ifndef PATH_TRACING
printf("dup2(-3, 0" FD0_PATH ") = %s\n", errstr);
# endif
k_dup2(0, -4);
# ifndef PATH_TRACING
printf("dup2(0" FD0_PATH ", -4) = %s\n", errstr);
# endif
k_dup2(-5, 9);
printf("dup2(-5, 9" FD9_PATH ") = %s\n", errstr);
k_dup2(9, -6);
printf("dup2(9" FD9_PATH ", -6) = %s\n", errstr);
k_dup2(9, 9);
printf("dup2(9" FD9_PATH ", 9" FD9_PATH ") = 9" FD9_PATH "\n");
k_dup2(0, fd0);
# ifndef PATH_TRACING
printf("dup2(0" FD0_PATH ", %d" FD0_PATH ") = %d" FD0_PATH "\n",
fd0, fd0);
# endif
k_dup2(9, fd9);
printf("dup2(9" FD9_PATH ", %d" FD9_PATH ") = %d" FD9_PATH "\n",
fd9, fd9);
k_dup2(0, fd9);
printf("dup2(0" FD0_PATH ", %d" FD9_PATH ") = %d" FD0_PATH "\n",
fd9, fd9);
k_dup2(9, fd0);
printf("dup2(9" FD9_PATH ", %d" FD0_PATH ") = %d" FD9_PATH "\n",
fd0, fd0);
close(fd0);
close(fd9);
k_dup2(0, fd0);
# ifndef PATH_TRACING
printf("dup2(0" FD0_PATH ", %d) = %d" FD0_PATH "\n",
fd0, fd0);
# endif
k_dup2(9, fd9);
printf("dup2(9" FD9_PATH ", %d) = %d" FD9_PATH "\n",
fd9, fd9);
puts("+++ exited with 0 +++");
return 0;
}
#else
SKIP_MAIN_UNDEFINED("__NR_dup2")
#endif
|