summaryrefslogtreecommitdiff
path: root/src/open_tree.c
blob: 508ef5fd182641c3a327b78371d7db0f3fb926c3 (plain)
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
/*
 * Copyright (c) 2019-2021 Dmitry V. Levin <ldv@strace.io>
 * All rights reserved.
 *
 * SPDX-License-Identifier: LGPL-2.1-or-later
 */

#include "defs.h"
#include <linux/mount.h>
#include "kernel_fcntl.h"
#include <linux/fcntl.h>
#include "xlat/open_tree_flags.h"

SYS_FUNC(open_tree)
{
	/* dfd */
	print_dirfd(tcp, tcp->u_arg[0]);
	tprint_arg_next();

	/* pathname */
	printpath(tcp, tcp->u_arg[1]);
	tprint_arg_next();

	/* flags */
	printflags(open_tree_flags, tcp->u_arg[2], "OPEN_TREE_???");

	return RVAL_DECODED | RVAL_FD;
}