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
|
/*
* Check success injection.
*
* Copyright (c) 2017 Elvira Khabirova <lineprinter0@gmail.com>
* Copyright (c) 2017-2021 The strace developers.
* All rights reserved.
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "tests.h"
#include "scno.h"
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/stat.h>
int
main(int argc, char *argv[])
{
assert(argc == 2);
static const char dir[] = "..";
struct stat before, after;
if (stat(".", &before))
perror_msg_and_fail("stat");
long rval = syscall(__NR_chdir, dir);
if (stat(".", &after))
perror_msg_and_fail("stat");
if (before.st_dev != after.st_dev || before.st_ino != after.st_ino)
error_msg_and_fail("syscall succeeded");
if (atol(argv[1]) != rval)
error_msg_and_fail("expected retval %s, got retval %ld",
argv[1], rval);
printf("chdir(\"%s\") = %ld (INJECTED)\n", dir, rval);
puts("+++ exited with 0 +++");
return 0;
}
|