]> granicus.if.org Git - strace/blob - pathtrace.c
getdents: fix typos in array output
[strace] / pathtrace.c
1 /*
2  * Copyright (c) 2011, Comtrol Corp.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. The name of the author may not be used to endorse or promote products
14  *    derived from this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  *
27  */
28
29 #include "defs.h"
30 #include <sys/param.h>
31 #include <poll.h>
32
33 #include "syscall.h"
34
35 const char **paths_selected = NULL;
36 static unsigned num_selected = 0;
37
38 /*
39  * Return true if specified path matches one that we're tracing.
40  */
41 static int
42 pathmatch(const char *path)
43 {
44         unsigned i;
45
46         for (i = 0; i < num_selected; ++i) {
47                 if (strcmp(path, paths_selected[i]) == 0)
48                         return 1;
49         }
50         return 0;
51 }
52
53 /*
54  * Return true if specified path (in user-space) matches.
55  */
56 static int
57 upathmatch(struct tcb *tcp, unsigned long upath)
58 {
59         char path[PATH_MAX + 1];
60
61         return umovestr(tcp, upath, sizeof path, path) > 0 &&
62                 pathmatch(path);
63 }
64
65 /*
66  * Return true if specified fd maps to a path we're tracing.
67  */
68 static int
69 fdmatch(struct tcb *tcp, int fd)
70 {
71         char path[PATH_MAX + 1];
72         int n = getfdpath(tcp, fd, path, sizeof(path));
73
74         return n >= 0 && pathmatch(path);
75 }
76
77 /*
78  * Add a path to the set we're tracing.
79  * Specifying NULL will delete all paths.
80  */
81 static void
82 storepath(const char *path)
83 {
84         unsigned i;
85
86         if (pathmatch(path))
87                 return; /* already in table */
88
89         i = num_selected++;
90         paths_selected = xreallocarray(paths_selected, num_selected,
91                                        sizeof(paths_selected[0]));
92         paths_selected[i] = path;
93 }
94
95 /*
96  * Get path associated with fd.
97  */
98 int
99 getfdpath(struct tcb *tcp, int fd, char *buf, unsigned bufsize)
100 {
101         char linkpath[sizeof("/proc/%u/fd/%u") + 2 * sizeof(int)*3];
102         ssize_t n;
103
104         if (fd < 0)
105                 return -1;
106
107         sprintf(linkpath, "/proc/%u/fd/%u", tcp->pid, fd);
108         n = readlink(linkpath, buf, bufsize - 1);
109         /*
110          * NB: if buf is too small, readlink doesn't fail,
111          * it returns truncated result (IOW: n == bufsize - 1).
112          */
113         if (n >= 0)
114                 buf[n] = '\0';
115         return n;
116 }
117
118 /*
119  * Add a path to the set we're tracing.  Also add the canonicalized
120  * version of the path.  Secifying NULL will delete all paths.
121  */
122 void
123 pathtrace_select(const char *path)
124 {
125         char *rpath;
126
127         storepath(path);
128
129         rpath = realpath(path, NULL);
130
131         if (rpath == NULL)
132                 return;
133
134         /* if realpath and specified path are same, we're done */
135         if (strcmp(path, rpath) == 0) {
136                 free(rpath);
137                 return;
138         }
139
140         error_msg("Requested path '%s' resolved into '%s'", path, rpath);
141         storepath(rpath);
142 }
143
144 /*
145  * Return true if syscall accesses a selected path
146  * (or if no paths have been specified for tracing).
147  */
148 int
149 pathtrace_match(struct tcb *tcp)
150 {
151         const struct_sysent *s;
152
153         s = tcp->s_ent;
154
155         if (!(s->sys_flags & (TRACE_FILE | TRACE_DESC | TRACE_NETWORK)))
156                 return 0;
157
158         /*
159          * Check for special cases where we need to do something
160          * other than test arg[0].
161          */
162
163         switch (s->sen) {
164         case SEN_dup2:
165         case SEN_dup3:
166         case SEN_sendfile:
167         case SEN_sendfile64:
168         case SEN_tee:
169                 /* fd, fd */
170                 return fdmatch(tcp, tcp->u_arg[0]) ||
171                         fdmatch(tcp, tcp->u_arg[1]);
172
173         case SEN_faccessat:
174         case SEN_fchmodat:
175         case SEN_fchownat:
176         case SEN_futimesat:
177         case SEN_inotify_add_watch:
178         case SEN_mkdirat:
179         case SEN_mknodat:
180         case SEN_newfstatat:
181         case SEN_openat:
182         case SEN_pipe2:
183         case SEN_readlinkat:
184         case SEN_unlinkat:
185         case SEN_utimensat:
186                 /* fd, path */
187                 return fdmatch(tcp, tcp->u_arg[0]) ||
188                         upathmatch(tcp, tcp->u_arg[1]);
189
190         case SEN_link:
191         case SEN_mount:
192         case SEN_pivotroot:
193                 /* path, path */
194                 return upathmatch(tcp, tcp->u_arg[0]) ||
195                         upathmatch(tcp, tcp->u_arg[1]);
196
197         case SEN_quotactl:
198                 /* x, path */
199                 return upathmatch(tcp, tcp->u_arg[1]);
200
201         case SEN_linkat:
202         case SEN_renameat2:
203         case SEN_renameat:
204                 /* fd, path, fd, path */
205                 return fdmatch(tcp, tcp->u_arg[0]) ||
206                         fdmatch(tcp, tcp->u_arg[2]) ||
207                         upathmatch(tcp, tcp->u_arg[1]) ||
208                         upathmatch(tcp, tcp->u_arg[3]);
209
210         case SEN_old_mmap:
211 #if defined(S390)
212         case SEN_old_mmap_pgoff:
213 #endif
214         case SEN_mmap:
215         case SEN_mmap_4koff:
216         case SEN_mmap_pgoff:
217                 /* x, x, x, x, fd */
218                 return fdmatch(tcp, tcp->u_arg[4]);
219
220         case SEN_symlinkat:
221                 /* path, fd, path */
222                 return fdmatch(tcp, tcp->u_arg[1]) ||
223                         upathmatch(tcp, tcp->u_arg[0]) ||
224                         upathmatch(tcp, tcp->u_arg[2]);
225
226         case SEN_splice:
227                 /* fd, x, fd, x, x */
228                 return fdmatch(tcp, tcp->u_arg[0]) ||
229                         fdmatch(tcp, tcp->u_arg[2]);
230
231         case SEN_epoll_ctl:
232                 /* x, x, fd, x */
233                 return fdmatch(tcp, tcp->u_arg[2]);
234
235
236         case SEN_fanotify_mark:
237                 /* x, x, x, fd, path */
238                 return fdmatch(tcp, tcp->u_arg[3]) ||
239                         upathmatch(tcp, tcp->u_arg[4]);
240
241         case SEN_oldselect:
242         case SEN_pselect6:
243         case SEN_select:
244         {
245                 int     i, j;
246                 int     nfds;
247                 long   *args, oldargs[5];
248                 unsigned fdsize;
249                 fd_set *fds;
250
251                 args = tcp->u_arg;
252                 if (SEN_oldselect == s->sen) {
253                         if (umoven(tcp, tcp->u_arg[0], sizeof oldargs,
254                                    oldargs) < 0)
255                         {
256                                 error_msg("umoven() failed");
257                                 return 0;
258                         }
259                         args = oldargs;
260                 }
261
262                 /* Kernel truncates arg[0] to int, we do the same. */
263                 nfds = (int) args[0];
264                 /* Kernel rejects negative nfds, so we don't parse it either. */
265                 if (nfds <= 0)
266                         return 0;
267                 /* Beware of select(2^31-1, NULL, NULL, NULL) and similar... */
268                 if (nfds > 1024*1024)
269                         nfds = 1024*1024;
270                 fdsize = (((nfds + 7) / 8) + current_wordsize-1) & -current_wordsize;
271                 fds = xmalloc(fdsize);
272
273                 for (i = 1; i <= 3; ++i) {
274                         if (args[i] == 0)
275                                 continue;
276                         if (umoven(tcp, args[i], fdsize, fds) < 0) {
277                                 error_msg("umoven() failed");
278                                 continue;
279                         }
280                         for (j = 0;; j++) {
281                                 j = next_set_bit(fds, j, nfds);
282                                 if (j < 0)
283                                         break;
284                                 if (fdmatch(tcp, j)) {
285                                         free(fds);
286                                         return 1;
287                                 }
288                         }
289                 }
290                 free(fds);
291                 return 0;
292         }
293
294         case SEN_poll:
295         case SEN_ppoll:
296         {
297                 struct pollfd fds;
298                 unsigned nfds;
299                 unsigned long start, cur, end;
300
301                 start = tcp->u_arg[0];
302                 nfds = tcp->u_arg[1];
303
304                 end = start + sizeof(fds) * nfds;
305
306                 if (nfds == 0 || end < start)
307                         return 0;
308
309                 for (cur = start; cur < end; cur += sizeof(fds))
310                         if ((umoven(tcp, cur, sizeof fds, &fds) == 0)
311                             && fdmatch(tcp, fds.fd))
312                                 return 1;
313
314                 return 0;
315         }
316
317         case SEN_bpf:
318         case SEN_epoll_create:
319         case SEN_epoll_create1:
320         case SEN_eventfd2:
321         case SEN_eventfd:
322         case SEN_fanotify_init:
323         case SEN_inotify_init1:
324         case SEN_memfd_create:
325         case SEN_perf_event_open:
326         case SEN_pipe:
327         case SEN_printargs:
328         case SEN_socket:
329         case SEN_socketpair:
330         case SEN_timerfd_create:
331         case SEN_timerfd_gettime:
332         case SEN_timerfd_settime:
333                 /*
334                  * These have TRACE_FILE or TRACE_DESCRIPTOR or TRACE_NETWORK set,
335                  * but they don't have any file descriptor or path args to test.
336                  */
337                 return 0;
338         }
339
340         /*
341          * Our fallback position for calls that haven't already
342          * been handled is to just check arg[0].
343          */
344
345         if (s->sys_flags & TRACE_FILE)
346                 return upathmatch(tcp, tcp->u_arg[0]);
347
348         if (s->sys_flags & (TRACE_DESC | TRACE_NETWORK))
349                 return fdmatch(tcp, tcp->u_arg[0]);
350
351         return 0;
352 }