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
|
/*
* Copyright (c) 2016-2023 The strace developers.
* All rights reserved.
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "tests.h"
#include "scno.h"
#ifdef __NR_link
# include <stdio.h>
# include <string.h>
# include <unistd.h>
int
main(void)
{
static const char sample_1_str[] = "link_sample_old";
static const char sample_2_str[] = "link_sample_new";
TAIL_ALLOC_OBJECT_CONST_ARR(char, sample_1, sizeof(sample_1_str));
TAIL_ALLOC_OBJECT_CONST_ARR(char, sample_2, sizeof(sample_2_str));
TAIL_ALLOC_OBJECT_CONST_ARR(char, short_1, sizeof(sample_1_str) - 1);
TAIL_ALLOC_OBJECT_CONST_ARR(char, short_2, sizeof(sample_2_str) - 1);
long rc;
memcpy(sample_1, sample_1_str, sizeof(sample_1_str));
memcpy(sample_2, sample_2_str, sizeof(sample_2_str));
memcpy(short_1, sample_1_str, sizeof(sample_1_str) - 1);
memcpy(short_2, sample_2_str, sizeof(sample_2_str) - 1);
rc = syscall(__NR_link, NULL, NULL);
# ifndef PATH_TRACING
printf("link(NULL, NULL) = %s\n", sprintrc(rc));
# endif
rc = syscall(__NR_link, short_1, NULL);
# ifndef PATH_TRACING
printf("link(%p, NULL) = %s\n", short_1, sprintrc(rc));
# endif
rc = syscall(__NR_link, NULL, sample_1);
printf("link(NULL, \"%s\") = %s\n",
sample_1_str, sprintrc(rc));
rc = syscall(__NR_link, sample_1, short_2);
printf("link(\"%s\", %p) = %s\n",
sample_1_str, short_2, sprintrc(rc));
rc = syscall(__NR_link, short_1, sample_2);
# ifndef PATH_TRACING
printf("link(%p, \"%s\") = %s\n",
short_1, sample_2_str, sprintrc(rc));
# endif
rc = syscall(__NR_link, sample_1, sample_2);
printf("link(\"%s\", \"%s\") = %s\n",
sample_1_str, sample_2_str, sprintrc(rc));
puts("+++ exited with 0 +++");
return 0;
}
#else
SKIP_MAIN_UNDEFINED("__NR_link")
#endif
|