blob: ea48825e5a019255c0b4b08f537916607df96048 [file] [log] [blame]
Grant Edwards8a082772011-04-07 20:25:40 +00001/*
Elliott Hughes39bac052017-05-25 16:56:11 -07002 * Copyright (c) 2011 Comtrol Corp.
3 * Copyright (c) 2011-2017 The strace developers.
Grant Edwards8a082772011-04-07 20:25:40 +00004 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * 3. The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 */
29
30#include "defs.h"
Dmitry V. Levinb038a432011-08-30 16:05:26 +000031#include <sys/param.h>
Dmitry V. Levin80d5e012015-07-30 16:23:58 +000032#include <poll.h>
Grant Edwards8a082772011-04-07 20:25:40 +000033
34#include "syscall.h"
35
Denys Vlasenko38cfe7c2013-03-05 16:01:53 +010036const char **paths_selected = NULL;
Denys Vlasenko7239dbc2013-03-05 15:46:34 +010037static unsigned num_selected = 0;
Grant Edwards8a082772011-04-07 20:25:40 +000038
39/*
40 * Return true if specified path matches one that we're tracing.
41 */
42static int
43pathmatch(const char *path)
44{
Denys Vlasenko7239dbc2013-03-05 15:46:34 +010045 unsigned i;
Grant Edwards8a082772011-04-07 20:25:40 +000046
Denys Vlasenko7239dbc2013-03-05 15:46:34 +010047 for (i = 0; i < num_selected; ++i) {
Denys Vlasenko38cfe7c2013-03-05 16:01:53 +010048 if (strcmp(path, paths_selected[i]) == 0)
Grant Edwards8a082772011-04-07 20:25:40 +000049 return 1;
50 }
51 return 0;
52}
53
54/*
55 * Return true if specified path (in user-space) matches.
56 */
57static int
Elliott Hughesd35df492017-02-15 15:19:05 -080058upathmatch(struct tcb *const tcp, const kernel_ulong_t upath)
Grant Edwards8a082772011-04-07 20:25:40 +000059{
Denys Vlasenko7b609d52011-06-22 14:32:43 +020060 char path[PATH_MAX + 1];
Grant Edwards8a082772011-04-07 20:25:40 +000061
Dmitry V. Levin1a880cf2013-02-26 19:23:27 +000062 return umovestr(tcp, upath, sizeof path, path) > 0 &&
Grant Edwards8a082772011-04-07 20:25:40 +000063 pathmatch(path);
64}
65
66/*
67 * Return true if specified fd maps to a path we're tracing.
68 */
69static int
70fdmatch(struct tcb *tcp, int fd)
71{
Denys Vlasenko61ad0a42013-03-06 18:24:34 +010072 char path[PATH_MAX + 1];
73 int n = getfdpath(tcp, fd, path, sizeof(path));
Grant Edwards8a082772011-04-07 20:25:40 +000074
Denys Vlasenko61ad0a42013-03-06 18:24:34 +010075 return n >= 0 && pathmatch(path);
Grant Edwards8a082772011-04-07 20:25:40 +000076}
77
78/*
79 * Add a path to the set we're tracing.
Philippe Ombredanne894c7e32014-02-01 09:57:45 -080080 * Specifying NULL will delete all paths.
Grant Edwards8a082772011-04-07 20:25:40 +000081 */
Denys Vlasenko7239dbc2013-03-05 15:46:34 +010082static void
Grant Edwards8a082772011-04-07 20:25:40 +000083storepath(const char *path)
84{
Denys Vlasenko7239dbc2013-03-05 15:46:34 +010085 unsigned i;
Grant Edwards8a082772011-04-07 20:25:40 +000086
Denys Vlasenko7239dbc2013-03-05 15:46:34 +010087 if (pathmatch(path))
88 return; /* already in table */
Grant Edwards8a082772011-04-07 20:25:40 +000089
Denys Vlasenko7239dbc2013-03-05 15:46:34 +010090 i = num_selected++;
Dmitry V. Levin3e9d71f2015-05-25 20:41:02 +000091 paths_selected = xreallocarray(paths_selected, num_selected,
92 sizeof(paths_selected[0]));
Denys Vlasenko38cfe7c2013-03-05 16:01:53 +010093 paths_selected[i] = path;
Grant Edwards8a082772011-04-07 20:25:40 +000094}
95
96/*
97 * Get path associated with fd.
98 */
Denys Vlasenko61ad0a42013-03-06 18:24:34 +010099int
100getfdpath(struct tcb *tcp, int fd, char *buf, unsigned bufsize)
Grant Edwards8a082772011-04-07 20:25:40 +0000101{
Denys Vlasenko384b0ad2012-03-15 18:11:51 +0100102 char linkpath[sizeof("/proc/%u/fd/%u") + 2 * sizeof(int)*3];
Grant Edwards8a082772011-04-07 20:25:40 +0000103 ssize_t n;
104
105 if (fd < 0)
Denys Vlasenko61ad0a42013-03-06 18:24:34 +0100106 return -1;
Grant Edwards8a082772011-04-07 20:25:40 +0000107
Denys Vlasenko29865e72012-03-15 18:03:56 +0100108 sprintf(linkpath, "/proc/%u/fd/%u", tcp->pid, fd);
Denys Vlasenko61ad0a42013-03-06 18:24:34 +0100109 n = readlink(linkpath, buf, bufsize - 1);
110 /*
111 * NB: if buf is too small, readlink doesn't fail,
112 * it returns truncated result (IOW: n == bufsize - 1).
113 */
114 if (n >= 0)
115 buf[n] = '\0';
116 return n;
Grant Edwards8a082772011-04-07 20:25:40 +0000117}
118
119/*
120 * Add a path to the set we're tracing. Also add the canonicalized
121 * version of the path. Secifying NULL will delete all paths.
122 */
Denys Vlasenko7239dbc2013-03-05 15:46:34 +0100123void
Grant Edwards8a082772011-04-07 20:25:40 +0000124pathtrace_select(const char *path)
125{
Denys Vlasenko29865e72012-03-15 18:03:56 +0100126 char *rpath;
Grant Edwards8a082772011-04-07 20:25:40 +0000127
Denys Vlasenko7239dbc2013-03-05 15:46:34 +0100128 storepath(path);
Grant Edwards8a082772011-04-07 20:25:40 +0000129
130 rpath = realpath(path, NULL);
131
132 if (rpath == NULL)
Denys Vlasenko7239dbc2013-03-05 15:46:34 +0100133 return;
Grant Edwards8a082772011-04-07 20:25:40 +0000134
135 /* if realpath and specified path are same, we're done */
Denys Vlasenko29865e72012-03-15 18:03:56 +0100136 if (strcmp(path, rpath) == 0) {
Grant Edwards8a082772011-04-07 20:25:40 +0000137 free(rpath);
Denys Vlasenko7239dbc2013-03-05 15:46:34 +0100138 return;
Grant Edwards8a082772011-04-07 20:25:40 +0000139 }
140
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +0000141 error_msg("Requested path '%s' resolved into '%s'", path, rpath);
Denys Vlasenko7239dbc2013-03-05 15:46:34 +0100142 storepath(rpath);
Grant Edwards8a082772011-04-07 20:25:40 +0000143}
144
145/*
146 * Return true if syscall accesses a selected path
147 * (or if no paths have been specified for tracing).
148 */
149int
150pathtrace_match(struct tcb *tcp)
151{
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100152 const struct_sysent *s;
Grant Edwards8a082772011-04-07 20:25:40 +0000153
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100154 s = tcp->s_ent;
Grant Edwards8a082772011-04-07 20:25:40 +0000155
Philippe Ombredanne894c7e32014-02-01 09:57:45 -0800156 if (!(s->sys_flags & (TRACE_FILE | TRACE_DESC | TRACE_NETWORK)))
Grant Edwards8a082772011-04-07 20:25:40 +0000157 return 0;
158
159 /*
160 * Check for special cases where we need to do something
161 * other than test arg[0].
162 */
163
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300164 switch (s->sen) {
165 case SEN_dup2:
166 case SEN_dup3:
Dmitry V. Levinea197052015-11-22 18:51:05 +0000167 case SEN_kexec_file_load:
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300168 case SEN_sendfile:
169 case SEN_sendfile64:
170 case SEN_tee:
Grant Edwards8a082772011-04-07 20:25:40 +0000171 /* fd, fd */
172 return fdmatch(tcp, tcp->u_arg[0]) ||
173 fdmatch(tcp, tcp->u_arg[1]);
Grant Edwards8a082772011-04-07 20:25:40 +0000174
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300175 case SEN_faccessat:
176 case SEN_fchmodat:
177 case SEN_fchownat:
Dmitry V. Levinc4da4892016-08-23 14:27:49 +0000178 case SEN_fstatat64:
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300179 case SEN_futimesat:
180 case SEN_inotify_add_watch:
181 case SEN_mkdirat:
182 case SEN_mknodat:
Dmitry V. Levin4b3a1702015-11-22 21:29:32 +0000183 case SEN_name_to_handle_at:
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300184 case SEN_newfstatat:
185 case SEN_openat:
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300186 case SEN_readlinkat:
Elliott Hughes39bac052017-05-25 16:56:11 -0700187 case SEN_statx:
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300188 case SEN_unlinkat:
189 case SEN_utimensat:
Grant Edwards8a082772011-04-07 20:25:40 +0000190 /* fd, path */
191 return fdmatch(tcp, tcp->u_arg[0]) ||
192 upathmatch(tcp, tcp->u_arg[1]);
Grant Edwards8a082772011-04-07 20:25:40 +0000193
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300194 case SEN_link:
195 case SEN_mount:
196 case SEN_pivotroot:
Grant Edwards8a082772011-04-07 20:25:40 +0000197 /* path, path */
198 return upathmatch(tcp, tcp->u_arg[0]) ||
199 upathmatch(tcp, tcp->u_arg[1]);
Grant Edwards8a082772011-04-07 20:25:40 +0000200
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300201 case SEN_quotactl:
Dmitry V. Levin79439662012-10-26 23:43:13 +0000202 /* x, path */
203 return upathmatch(tcp, tcp->u_arg[1]);
Dmitry V. Levin79439662012-10-26 23:43:13 +0000204
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300205 case SEN_linkat:
206 case SEN_renameat2:
207 case SEN_renameat:
Grant Edwards8a082772011-04-07 20:25:40 +0000208 /* fd, path, fd, path */
209 return fdmatch(tcp, tcp->u_arg[0]) ||
210 fdmatch(tcp, tcp->u_arg[2]) ||
211 upathmatch(tcp, tcp->u_arg[1]) ||
212 upathmatch(tcp, tcp->u_arg[3]);
Grant Edwards8a082772011-04-07 20:25:40 +0000213
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300214 case SEN_old_mmap:
Denys Vlasenko1ba85432013-02-19 11:28:20 +0100215#if defined(S390)
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300216 case SEN_old_mmap_pgoff:
Denys Vlasenko1ba85432013-02-19 11:28:20 +0100217#endif
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300218 case SEN_mmap:
219 case SEN_mmap_4koff:
220 case SEN_mmap_pgoff:
Dmitry V. Levindd1a80c2015-12-24 15:40:55 +0000221 case SEN_ARCH_mmap:
Grant Edwards8a082772011-04-07 20:25:40 +0000222 /* x, x, x, x, fd */
223 return fdmatch(tcp, tcp->u_arg[4]);
Grant Edwards8a082772011-04-07 20:25:40 +0000224
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300225 case SEN_symlinkat:
Grant Edwards8a082772011-04-07 20:25:40 +0000226 /* path, fd, path */
227 return fdmatch(tcp, tcp->u_arg[1]) ||
228 upathmatch(tcp, tcp->u_arg[0]) ||
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200229 upathmatch(tcp, tcp->u_arg[2]);
Grant Edwards8a082772011-04-07 20:25:40 +0000230
Dmitry V. Levinc1f99f52016-02-13 03:45:32 +0000231 case SEN_copy_file_range:
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300232 case SEN_splice:
Dmitry V. Levinc1f99f52016-02-13 03:45:32 +0000233 /* fd, x, fd, x, x, x */
Grant Edwards8a082772011-04-07 20:25:40 +0000234 return fdmatch(tcp, tcp->u_arg[0]) ||
235 fdmatch(tcp, tcp->u_arg[2]);
Grant Edwards8a082772011-04-07 20:25:40 +0000236
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300237 case SEN_epoll_ctl:
Grant Edwards8a082772011-04-07 20:25:40 +0000238 /* x, x, fd, x */
239 return fdmatch(tcp, tcp->u_arg[2]);
Grant Edwards8a082772011-04-07 20:25:40 +0000240
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300241
242 case SEN_fanotify_mark:
Dmitry V. Levin99db95d2014-02-05 04:13:18 +0000243 /* x, x, x, fd, path */
244 return fdmatch(tcp, tcp->u_arg[3]) ||
245 upathmatch(tcp, tcp->u_arg[4]);
Dmitry V. Levin99db95d2014-02-05 04:13:18 +0000246
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300247 case SEN_oldselect:
248 case SEN_pselect6:
249 case SEN_select:
Grant Edwards8a082772011-04-07 20:25:40 +0000250 {
Denys Vlasenko79a79ea2011-09-01 16:35:44 +0200251 int i, j;
Denys Vlasenko64778cb2013-11-09 20:46:55 +0100252 int nfds;
Elliott Hughesd35df492017-02-15 15:19:05 -0800253 kernel_ulong_t *args;
254 kernel_ulong_t select_args[5];
255 unsigned int oldselect_args[5];
256 unsigned int fdsize;
Grant Edwards8a082772011-04-07 20:25:40 +0000257 fd_set *fds;
258
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300259 if (SEN_oldselect == s->sen) {
Elliott Hughesd35df492017-02-15 15:19:05 -0800260 if (sizeof(*select_args) == sizeof(*oldselect_args)) {
261 if (umove(tcp, tcp->u_arg[0], &select_args)) {
262 return 0;
263 }
264 } else {
265 unsigned int n;
266
267 if (umove(tcp, tcp->u_arg[0], &oldselect_args)) {
268 return 0;
269 }
270
271 for (n = 0; n < 5; ++n) {
272 select_args[n] = oldselect_args[n];
273 }
Grant Edwards8a082772011-04-07 20:25:40 +0000274 }
Elliott Hughesd35df492017-02-15 15:19:05 -0800275 args = select_args;
276 } else {
277 args = tcp->u_arg;
Denys Vlasenko64778cb2013-11-09 20:46:55 +0100278 }
Grant Edwards8a082772011-04-07 20:25:40 +0000279
Denys Vlasenko64778cb2013-11-09 20:46:55 +0100280 /* Kernel truncates arg[0] to int, we do the same. */
281 nfds = (int) args[0];
282 /* Kernel rejects negative nfds, so we don't parse it either. */
283 if (nfds <= 0)
284 return 0;
Denys Vlasenko79a79ea2011-09-01 16:35:44 +0200285 /* Beware of select(2^31-1, NULL, NULL, NULL) and similar... */
Denys Vlasenko64778cb2013-11-09 20:46:55 +0100286 if (nfds > 1024*1024)
Denys Vlasenko79a79ea2011-09-01 16:35:44 +0200287 nfds = 1024*1024;
Denys Vlasenko64778cb2013-11-09 20:46:55 +0100288 fdsize = (((nfds + 7) / 8) + current_wordsize-1) & -current_wordsize;
Dmitry V. Levin3e9d71f2015-05-25 20:41:02 +0000289 fds = xmalloc(fdsize);
Grant Edwards8a082772011-04-07 20:25:40 +0000290
Denys Vlasenko7b609d52011-06-22 14:32:43 +0200291 for (i = 1; i <= 3; ++i) {
Grant Edwards8a082772011-04-07 20:25:40 +0000292 if (args[i] == 0)
293 continue;
Denys Vlasenko7e69ed92015-03-21 19:50:53 +0100294 if (umoven(tcp, args[i], fdsize, fds) < 0) {
Grant Edwards8a082772011-04-07 20:25:40 +0000295 continue;
296 }
Denys Vlasenko64778cb2013-11-09 20:46:55 +0100297 for (j = 0;; j++) {
298 j = next_set_bit(fds, j, nfds);
299 if (j < 0)
300 break;
301 if (fdmatch(tcp, j)) {
Grant Edwards8a082772011-04-07 20:25:40 +0000302 free(fds);
303 return 1;
304 }
Denys Vlasenko64778cb2013-11-09 20:46:55 +0100305 }
Grant Edwards8a082772011-04-07 20:25:40 +0000306 }
307 free(fds);
308 return 0;
309 }
310
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300311 case SEN_poll:
312 case SEN_ppoll:
Grant Edwards8a082772011-04-07 20:25:40 +0000313 {
314 struct pollfd fds;
315 unsigned nfds;
Elliott Hughesd35df492017-02-15 15:19:05 -0800316 kernel_ulong_t start, cur, end;
Grant Edwards8a082772011-04-07 20:25:40 +0000317
318 start = tcp->u_arg[0];
319 nfds = tcp->u_arg[1];
320
321 end = start + sizeof(fds) * nfds;
322
323 if (nfds == 0 || end < start)
324 return 0;
325
326 for (cur = start; cur < end; cur += sizeof(fds))
Elliott Hughesd35df492017-02-15 15:19:05 -0800327 if ((umove(tcp, cur, &fds) == 0)
Grant Edwards8a082772011-04-07 20:25:40 +0000328 && fdmatch(tcp, fds.fd))
329 return 1;
330
331 return 0;
332 }
333
Dmitry V. Levinddb53dd2015-07-25 23:55:51 +0000334 case SEN_bpf:
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300335 case SEN_epoll_create:
Dmitry V. Levin27163462015-08-01 23:07:19 +0000336 case SEN_epoll_create1:
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300337 case SEN_eventfd2:
338 case SEN_eventfd:
339 case SEN_fanotify_init:
340 case SEN_inotify_init1:
Dmitry V. Levin95b84ea2015-07-28 23:03:41 +0000341 case SEN_memfd_create:
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300342 case SEN_perf_event_open:
343 case SEN_pipe:
Dmitry V. Levinf9f04f72016-02-12 16:15:23 +0000344 case SEN_pipe2:
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300345 case SEN_printargs:
346 case SEN_socket:
347 case SEN_socketpair:
348 case SEN_timerfd_create:
349 case SEN_timerfd_gettime:
350 case SEN_timerfd_settime:
Dmitry V. Levin87d64ed2015-11-22 19:56:00 +0000351 case SEN_userfaultfd:
Grant Edwards8a082772011-04-07 20:25:40 +0000352 /*
Philippe Ombredanne894c7e32014-02-01 09:57:45 -0800353 * These have TRACE_FILE or TRACE_DESCRIPTOR or TRACE_NETWORK set,
354 * but they don't have any file descriptor or path args to test.
Grant Edwards8a082772011-04-07 20:25:40 +0000355 */
356 return 0;
357 }
Grant Edwards8a082772011-04-07 20:25:40 +0000358
359 /*
360 * Our fallback position for calls that haven't already
361 * been handled is to just check arg[0].
362 */
363
364 if (s->sys_flags & TRACE_FILE)
365 return upathmatch(tcp, tcp->u_arg[0]);
366
Philippe Ombredanne894c7e32014-02-01 09:57:45 -0800367 if (s->sys_flags & (TRACE_DESC | TRACE_NETWORK))
Grant Edwards8a082772011-04-07 20:25:40 +0000368 return fdmatch(tcp, tcp->u_arg[0]);
369
370 return 0;
371}