summaryrefslogtreecommitdiff
path: root/src/dup.c
blob: 35c453831faf0fe5c64c84b2dffa04f6724f7bd7 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
 * Copyright (c) 1999-2021 The strace developers.
 * All rights reserved.
 *
 * SPDX-License-Identifier: LGPL-2.1-or-later
 */

#include "defs.h"

static int
dup_123(struct tcb *const tcp, const int newfd_arg, const int flags_arg)
{
	/* oldfd */
	printfd(tcp, tcp->u_arg[0]);

	if (newfd_arg > 0) {
		tprint_arg_next();
		/* newfd */
		printfd(tcp, tcp->u_arg[newfd_arg]);

		if (flags_arg > 0) {
			tprint_arg_next();
			/* flags */
			printflags(open_mode_flags, tcp->u_arg[flags_arg],
				   "O_???");
		}
	}

	return RVAL_DECODED | RVAL_FD;
}

SYS_FUNC(dup)
{
	return dup_123(tcp, -1, -1);
}

SYS_FUNC(dup2)
{
	return dup_123(tcp, 1, -1);
}

SYS_FUNC(dup3)
{
	return dup_123(tcp, 1, 2);
}