blob: c56bf17993a2155abab6b68f7d9b624ebea337fe [file] [log] [blame]
Dmitry V. Levin38a34c92015-12-17 17:56:48 +00001/*
2 * Copyright (c) 1991, 1992 Paul Kranenburg <pk@cs.few.eur.nl>
3 * Copyright (c) 1993 Branko Lankester <branko@hacktic.nl>
4 * Copyright (c) 1993-1996 Rick Sladkey <jrs@world.std.com>
5 * Copyright (c) 1996-1999 Wichert Akkerman <wichert@cistron.nl>
Dmitry V. Levin5e9944d2016-04-19 01:59:52 +00006 * Copyright (c) 2003-2016 Dmitry V. Levin <ldv@altlinux.org>
Elliott Hughesb7556142018-02-20 17:03:16 -08007 * Copyright (c) 2014-2018 The strace developers.
Dmitry V. Levin38a34c92015-12-17 17:56:48 +00008 * All rights reserved.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. The name of the author may not be used to endorse or promote products
19 * derived from this software without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 */
32
Dmitry V. Levin80f7db12014-12-13 21:49:01 +000033#ifdef STRACE_UID_SIZE
34# if STRACE_UID_SIZE != 16
35# error invalid STRACE_UID_SIZE
36# endif
37
Elliott Hughesdc75b012017-07-05 13:54:44 -070038# define SIZEIFY(x) SIZEIFY_(x, STRACE_UID_SIZE)
39# define SIZEIFY_(x, size) SIZEIFY__(x, size)
40# define SIZEIFY__(x, size) x ## size
Dmitry V. Levin80f7db12014-12-13 21:49:01 +000041
Dmitry V. Levin530bed02014-12-14 13:30:54 +000042# define printuid SIZEIFY(printuid)
Dmitry V. Levin80f7db12014-12-13 21:49:01 +000043# define sys_chown SIZEIFY(sys_chown)
44# define sys_fchown SIZEIFY(sys_fchown)
Dmitry V. Levin530bed02014-12-14 13:30:54 +000045# define sys_getgroups SIZEIFY(sys_getgroups)
46# define sys_getresuid SIZEIFY(sys_getresuid)
47# define sys_getuid SIZEIFY(sys_getuid)
48# define sys_setfsuid SIZEIFY(sys_setfsuid)
49# define sys_setgroups SIZEIFY(sys_setgroups)
50# define sys_setresuid SIZEIFY(sys_setresuid)
51# define sys_setreuid SIZEIFY(sys_setreuid)
52# define sys_setuid SIZEIFY(sys_setuid)
Dmitry V. Levin80f7db12014-12-13 21:49:01 +000053#endif /* STRACE_UID_SIZE */
54
Dmitry V. Levine93ef1e2014-12-11 19:25:02 +000055#include "defs.h"
56
Dmitry V. Levin80f7db12014-12-13 21:49:01 +000057#ifdef STRACE_UID_SIZE
Elliott Hughesb7556142018-02-20 17:03:16 -080058# if !HAVE_ARCH_UID16_SYSCALLS
Dmitry V. Levin80f7db12014-12-13 21:49:01 +000059# undef STRACE_UID_SIZE
60# endif
61#else
62# define STRACE_UID_SIZE 32
63#endif
64
65#ifdef STRACE_UID_SIZE
66
67# undef uid_t
68# define uid_t uid_t_(STRACE_UID_SIZE)
69# define uid_t_(size) uid_t__(size)
70# define uid_t__(size) uint ## size ## _t
Dmitry V. Levine93ef1e2014-12-11 19:25:02 +000071
Dmitry V. Levina0bd3742015-04-07 01:36:50 +000072SYS_FUNC(getuid)
Dmitry V. Levine93ef1e2014-12-11 19:25:02 +000073{
Elliott Hughes28e98bc2018-06-14 16:59:04 -070074 return RVAL_DECODED;
Dmitry V. Levine93ef1e2014-12-11 19:25:02 +000075}
76
Dmitry V. Levina0bd3742015-04-07 01:36:50 +000077SYS_FUNC(setfsuid)
Dmitry V. Levine93ef1e2014-12-11 19:25:02 +000078{
Elliott Hughesd35df492017-02-15 15:19:05 -080079 printuid("", tcp->u_arg[0]);
Dmitry V. Levinabfa9392015-12-27 00:18:03 +000080
Elliott Hughes28e98bc2018-06-14 16:59:04 -070081 return RVAL_DECODED;
Dmitry V. Levine93ef1e2014-12-11 19:25:02 +000082}
83
Dmitry V. Levina0bd3742015-04-07 01:36:50 +000084SYS_FUNC(setuid)
Dmitry V. Levine93ef1e2014-12-11 19:25:02 +000085{
Dmitry V. Levin14278622015-07-16 00:01:25 +000086 printuid("", tcp->u_arg[0]);
87
88 return RVAL_DECODED;
Dmitry V. Levine93ef1e2014-12-11 19:25:02 +000089}
90
Dmitry V. Levin80f7db12014-12-13 21:49:01 +000091static void
Elliott Hughesd35df492017-02-15 15:19:05 -080092get_print_uid(struct tcb *const tcp, const char *const prefix,
93 const kernel_ulong_t addr)
Dmitry V. Levin80f7db12014-12-13 21:49:01 +000094{
95 uid_t uid;
96
Dmitry V. Levin288a8702015-07-15 23:37:31 +000097 tprints(prefix);
Elliott Hughesd35df492017-02-15 15:19:05 -080098 if (!umove_or_printaddr(tcp, addr, &uid)) {
99 printuid("[", uid);
100 tprints("]");
101 }
Dmitry V. Levin80f7db12014-12-13 21:49:01 +0000102}
103
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000104SYS_FUNC(getresuid)
Dmitry V. Levine93ef1e2014-12-11 19:25:02 +0000105{
Dmitry V. Levin288a8702015-07-15 23:37:31 +0000106 if (entering(tcp))
107 return 0;
108
109 get_print_uid(tcp, "", tcp->u_arg[0]);
110 get_print_uid(tcp, ", ", tcp->u_arg[1]);
111 get_print_uid(tcp, ", ", tcp->u_arg[2]);
112
Dmitry V. Levine93ef1e2014-12-11 19:25:02 +0000113 return 0;
114}
115
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000116SYS_FUNC(setreuid)
Dmitry V. Levine93ef1e2014-12-11 19:25:02 +0000117{
Dmitry V. Levin14278622015-07-16 00:01:25 +0000118 printuid("", tcp->u_arg[0]);
119 printuid(", ", tcp->u_arg[1]);
120
121 return RVAL_DECODED;
Dmitry V. Levine93ef1e2014-12-11 19:25:02 +0000122}
123
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000124SYS_FUNC(setresuid)
Dmitry V. Levine93ef1e2014-12-11 19:25:02 +0000125{
Dmitry V. Levin14278622015-07-16 00:01:25 +0000126 printuid("", tcp->u_arg[0]);
127 printuid(", ", tcp->u_arg[1]);
128 printuid(", ", tcp->u_arg[2]);
129
130 return RVAL_DECODED;
Dmitry V. Levine93ef1e2014-12-11 19:25:02 +0000131}
Dmitry V. Levin25ebe462014-12-13 16:02:22 +0000132
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000133SYS_FUNC(chown)
Dmitry V. Levin2f7d0202014-12-13 16:20:44 +0000134{
Dmitry V. Levin14278622015-07-16 00:01:25 +0000135 printpath(tcp, tcp->u_arg[0]);
136 printuid(", ", tcp->u_arg[1]);
137 printuid(", ", tcp->u_arg[2]);
138
139 return RVAL_DECODED;
Dmitry V. Levin2f7d0202014-12-13 16:20:44 +0000140}
141
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000142SYS_FUNC(fchown)
Dmitry V. Levin2f7d0202014-12-13 16:20:44 +0000143{
Dmitry V. Levin14278622015-07-16 00:01:25 +0000144 printfd(tcp, tcp->u_arg[0]);
145 printuid(", ", tcp->u_arg[1]);
146 printuid(", ", tcp->u_arg[2]);
147
148 return RVAL_DECODED;
Dmitry V. Levin2f7d0202014-12-13 16:20:44 +0000149}
150
Dmitry V. Levin25ebe462014-12-13 16:02:22 +0000151void
152printuid(const char *text, const unsigned int uid)
153{
Dmitry V. Levina99bcbf2016-04-14 23:53:08 +0000154 if ((uid_t) -1U == (uid_t) uid)
Dmitry V. Levin25ebe462014-12-13 16:02:22 +0000155 tprintf("%s-1", text);
156 else
Dmitry V. Levina99bcbf2016-04-14 23:53:08 +0000157 tprintf("%s%u", text, (uid_t) uid);
Dmitry V. Levin25ebe462014-12-13 16:02:22 +0000158}
Dmitry V. Levin80f7db12014-12-13 21:49:01 +0000159
Dmitry V. Levin6469f392016-05-07 23:14:24 +0000160static bool
161print_gid(struct tcb *tcp, void *elem_buf, size_t elem_size, void *data)
162{
Elliott Hughesdc75b012017-07-05 13:54:44 -0700163 printuid("", (*(uid_t *) elem_buf));
Dmitry V. Levin6469f392016-05-07 23:14:24 +0000164
165 return true;
166}
167
Dmitry V. Levin5e9944d2016-04-19 01:59:52 +0000168static void
Elliott Hughesd35df492017-02-15 15:19:05 -0800169print_groups(struct tcb *const tcp, const unsigned int len,
170 const kernel_ulong_t addr)
Dmitry V. Levin530bed02014-12-14 13:30:54 +0000171{
Dmitry V. Levin5e9944d2016-04-19 01:59:52 +0000172 static unsigned long ngroups_max;
173 if (!ngroups_max)
174 ngroups_max = sysconf(_SC_NGROUPS_MAX);
Dmitry V. Levin530bed02014-12-14 13:30:54 +0000175
Dmitry V. Levin6469f392016-05-07 23:14:24 +0000176 if (len > ngroups_max) {
Dmitry V. Levin5e9944d2016-04-19 01:59:52 +0000177 printaddr(addr);
178 return;
179 }
180
Dmitry V. Levin6469f392016-05-07 23:14:24 +0000181 uid_t gid;
182 print_array(tcp, addr, len, &gid, sizeof(gid),
Elliott Hughes03a418e2018-06-15 13:11:40 -0700183 tfetch_mem, print_gid, 0);
Dmitry V. Levin5e9944d2016-04-19 01:59:52 +0000184}
185
186SYS_FUNC(setgroups)
187{
Elliott Hughesd35df492017-02-15 15:19:05 -0800188 const int len = tcp->u_arg[0];
Dmitry V. Levin5e9944d2016-04-19 01:59:52 +0000189
Elliott Hughesd35df492017-02-15 15:19:05 -0800190 tprintf("%d, ", len);
Dmitry V. Levin5e9944d2016-04-19 01:59:52 +0000191 print_groups(tcp, len, tcp->u_arg[1]);
Dmitry V. Levin14278622015-07-16 00:01:25 +0000192 return RVAL_DECODED;
Dmitry V. Levin530bed02014-12-14 13:30:54 +0000193}
194
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000195SYS_FUNC(getgroups)
Dmitry V. Levin530bed02014-12-14 13:30:54 +0000196{
Dmitry V. Levin5e9944d2016-04-19 01:59:52 +0000197 if (entering(tcp))
Elliott Hughesd35df492017-02-15 15:19:05 -0800198 tprintf("%d, ", (int) tcp->u_arg[0]);
Dmitry V. Levin5e9944d2016-04-19 01:59:52 +0000199 else
200 print_groups(tcp, tcp->u_rval, tcp->u_arg[1]);
Dmitry V. Levin530bed02014-12-14 13:30:54 +0000201 return 0;
202}
203
Dmitry V. Levin80f7db12014-12-13 21:49:01 +0000204#endif /* STRACE_UID_SIZE */