Dmitry V. Levin
92e347b556
We do our best to keep copyright headers up to date, yet git history provides better information on this subject and is more accurate than copyright headers.
38 lines
613 B
C
38 lines
613 B
C
/*
|
|
* Copyright (c) 2014-2018 The strace developers.
|
|
* All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1-or-later
|
|
*/
|
|
|
|
#include "defs.h"
|
|
|
|
static void
|
|
decode_renameat(struct tcb *tcp)
|
|
{
|
|
print_dirfd(tcp, tcp->u_arg[0]);
|
|
printpath(tcp, tcp->u_arg[1]);
|
|
tprints(", ");
|
|
print_dirfd(tcp, tcp->u_arg[2]);
|
|
printpath(tcp, tcp->u_arg[3]);
|
|
}
|
|
|
|
SYS_FUNC(renameat)
|
|
{
|
|
decode_renameat(tcp);
|
|
|
|
return RVAL_DECODED;
|
|
}
|
|
|
|
#include <linux/fs.h>
|
|
#include "xlat/rename_flags.h"
|
|
|
|
SYS_FUNC(renameat2)
|
|
{
|
|
decode_renameat(tcp);
|
|
tprints(", ");
|
|
printflags(rename_flags, tcp->u_arg[4], "RENAME_??");
|
|
|
|
return RVAL_DECODED;
|
|
}
|