-
Notifications
You must be signed in to change notification settings - Fork 0
/
alpha.c
66 lines (55 loc) · 1.09 KB
/
alpha.c
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
/*
* Copyright (c) 2016 Dmitry V. Levin <[email protected]>
* Copyright (c) 2016-2018 The strace developers.
* All rights reserved.
*
* SPDX-License-Identifier: LGPL-2.1-or-later
*/
#include "defs.h"
#ifdef ALPHA
# include "xstring.h"
static int
decode_getxxid(struct tcb *tcp, const char *what)
{
if (entering(tcp))
return 0;
long rval = getrval2(tcp);
if (rval == -1)
return 0;
static const char const fmt[] = "%s %ld";
static char outstr[sizeof(fmt) + 3 * sizeof(rval)];
xsprintf(outstr, fmt, what, rval);
tcp->auxstr = outstr;
return RVAL_STR;
}
SYS_FUNC(getxpid)
{
return decode_getxxid(tcp, "ppid");
}
SYS_FUNC(getxuid)
{
return decode_getxxid(tcp, "euid");
}
SYS_FUNC(getxgid)
{
return decode_getxxid(tcp, "egid");
}
SYS_FUNC(osf_statfs)
{
printpath(tcp, tcp->u_arg[0]);
tprints(", ");
printaddr(tcp->u_arg[1]);
tprints(", ");
tprintf("%lu", tcp->u_arg[2]);
return RVAL_DECODED;
}
SYS_FUNC(osf_fstatfs)
{
printfd(tcp, tcp->u_arg[0]);
tprints(", ");
printaddr(tcp->u_arg[1]);
tprints(", ");
tprintf("%lu", tcp->u_arg[2]);
return RVAL_DECODED;
}
#endif /* ALPHA */