Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 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 | |
| 31 | #include <ctype.h> |
Dmitry V. Levin | b038a43 | 2011-08-30 16:05:26 +0000 | [diff] [blame] | 32 | #include <sys/param.h> |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 33 | |
| 34 | #ifdef HAVE_POLL_H |
| 35 | #include <poll.h> |
| 36 | #endif |
| 37 | #ifdef HAVE_SYS_POLL_H |
| 38 | #include <sys/poll.h> |
| 39 | #endif |
| 40 | |
| 41 | #include "syscall.h" |
| 42 | |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 43 | #define MAXSELECTED 256 /* max number of "selected" paths */ |
| 44 | static const char *selected[MAXSELECTED]; /* paths selected for tracing */ |
| 45 | |
| 46 | /* |
| 47 | * Return true if specified path matches one that we're tracing. |
| 48 | */ |
| 49 | static int |
| 50 | pathmatch(const char *path) |
| 51 | { |
Dmitry V. Levin | fcda7a5 | 2011-06-13 21:58:43 +0000 | [diff] [blame] | 52 | unsigned int i; |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 53 | |
Denys Vlasenko | 7b609d5 | 2011-06-22 14:32:43 +0200 | [diff] [blame] | 54 | for (i = 0; i < ARRAY_SIZE(selected); ++i) { |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 55 | if (selected[i] == NULL) |
| 56 | return 0; |
| 57 | if (!strcmp(path, selected[i])) |
| 58 | return 1; |
| 59 | } |
| 60 | return 0; |
| 61 | } |
| 62 | |
| 63 | /* |
| 64 | * Return true if specified path (in user-space) matches. |
| 65 | */ |
| 66 | static int |
| 67 | upathmatch(struct tcb *tcp, unsigned long upath) |
| 68 | { |
Denys Vlasenko | 7b609d5 | 2011-06-22 14:32:43 +0200 | [diff] [blame] | 69 | char path[PATH_MAX + 1]; |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 70 | |
| 71 | return umovestr(tcp, upath, sizeof path, path) == 0 && |
| 72 | pathmatch(path); |
| 73 | } |
| 74 | |
| 75 | /* |
| 76 | * Return true if specified fd maps to a path we're tracing. |
| 77 | */ |
| 78 | static int |
| 79 | fdmatch(struct tcb *tcp, int fd) |
| 80 | { |
| 81 | const char *path = getfdpath(tcp, fd); |
| 82 | |
| 83 | return path && pathmatch(path); |
| 84 | } |
| 85 | |
| 86 | /* |
| 87 | * Add a path to the set we're tracing. |
| 88 | * Secifying NULL will delete all paths. |
| 89 | */ |
| 90 | static int |
| 91 | storepath(const char *path) |
| 92 | { |
Dmitry V. Levin | fcda7a5 | 2011-06-13 21:58:43 +0000 | [diff] [blame] | 93 | unsigned int i; |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 94 | |
Denys Vlasenko | 7b609d5 | 2011-06-22 14:32:43 +0200 | [diff] [blame] | 95 | if (path == NULL) { |
Dmitry V. Levin | fcda7a5 | 2011-06-13 21:58:43 +0000 | [diff] [blame] | 96 | for (i = 0; i < ARRAY_SIZE(selected); ++i) |
Denys Vlasenko | 7b609d5 | 2011-06-22 14:32:43 +0200 | [diff] [blame] | 97 | if (selected[i]) { |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 98 | free((char *) selected[i]); |
| 99 | selected[i] = NULL; |
| 100 | } |
| 101 | return 0; |
| 102 | } |
| 103 | |
Dmitry V. Levin | fcda7a5 | 2011-06-13 21:58:43 +0000 | [diff] [blame] | 104 | for (i = 0; i < ARRAY_SIZE(selected); ++i) |
Denys Vlasenko | 7b609d5 | 2011-06-22 14:32:43 +0200 | [diff] [blame] | 105 | if (!selected[i]) { |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 106 | selected[i] = path; |
| 107 | return 0; |
| 108 | } |
| 109 | |
Dmitry V. Levin | fcda7a5 | 2011-06-13 21:58:43 +0000 | [diff] [blame] | 110 | fprintf(stderr, "Max trace paths exceeded, only using first %u\n", |
| 111 | (unsigned int) ARRAY_SIZE(selected)); |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 112 | return -1; |
| 113 | } |
| 114 | |
| 115 | /* |
| 116 | * Get path associated with fd. |
| 117 | */ |
| 118 | const char *getfdpath(struct tcb *tcp, int fd) |
| 119 | { |
| 120 | #ifdef LINUX |
| 121 | static char path[PATH_MAX+1]; |
| 122 | char linkpath[64]; |
| 123 | ssize_t n; |
| 124 | |
| 125 | if (fd < 0) |
| 126 | return NULL; |
| 127 | |
| 128 | snprintf(linkpath, sizeof linkpath, "/proc/%d/fd/%d", tcp->pid, fd); |
| 129 | n = readlink(linkpath, path, (sizeof path) - 1); |
| 130 | if (n <= 0) |
| 131 | return NULL; |
| 132 | path[n] = '\0'; |
| 133 | return path; |
| 134 | #else |
| 135 | return NULL; |
| 136 | #endif |
| 137 | } |
| 138 | |
| 139 | /* |
| 140 | * Add a path to the set we're tracing. Also add the canonicalized |
| 141 | * version of the path. Secifying NULL will delete all paths. |
| 142 | */ |
| 143 | int |
| 144 | pathtrace_select(const char *path) |
| 145 | { |
| 146 | char *rpath; |
| 147 | |
| 148 | if (path == NULL) |
| 149 | return storepath(path); |
| 150 | |
| 151 | if (storepath(path)) |
| 152 | return -1; |
| 153 | |
| 154 | rpath = realpath(path, NULL); |
| 155 | |
| 156 | if (rpath == NULL) |
| 157 | return 0; |
| 158 | |
| 159 | /* if realpath and specified path are same, we're done */ |
Denys Vlasenko | 7b609d5 | 2011-06-22 14:32:43 +0200 | [diff] [blame] | 160 | if (!strcmp(path, rpath)) { |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 161 | free(rpath); |
| 162 | return 0; |
| 163 | } |
| 164 | |
| 165 | fprintf(stderr, "Requested path '%s' resolved into '%s'\n", |
| 166 | path, rpath); |
| 167 | return storepath(rpath); |
| 168 | } |
| 169 | |
| 170 | /* |
| 171 | * Return true if syscall accesses a selected path |
| 172 | * (or if no paths have been specified for tracing). |
| 173 | */ |
| 174 | int |
| 175 | pathtrace_match(struct tcb *tcp) |
| 176 | { |
| 177 | const struct sysent *s; |
| 178 | |
| 179 | if (selected[0] == NULL) |
| 180 | return 1; |
| 181 | |
| 182 | s = &sysent[tcp->scno]; |
| 183 | |
| 184 | if (!(s->sys_flags & (TRACE_FILE | TRACE_DESC))) |
| 185 | return 0; |
| 186 | |
| 187 | /* |
| 188 | * Check for special cases where we need to do something |
| 189 | * other than test arg[0]. |
| 190 | */ |
| 191 | |
| 192 | #ifdef LINUX |
| 193 | |
| 194 | if (s->sys_func == sys_dup2 || |
| 195 | s->sys_func == sys_dup3 || |
| 196 | s->sys_func == sys_sendfile || |
| 197 | s->sys_func == sys_sendfile64 || |
Denys Vlasenko | b63256e | 2011-06-07 12:13:24 +0200 | [diff] [blame] | 198 | !strcmp(s->sys_name, "tee")) |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 199 | { |
| 200 | /* fd, fd */ |
| 201 | return fdmatch(tcp, tcp->u_arg[0]) || |
| 202 | fdmatch(tcp, tcp->u_arg[1]); |
| 203 | } |
| 204 | |
| 205 | if (s->sys_func == sys_inotify_add_watch || |
| 206 | s->sys_func == sys_faccessat || |
| 207 | s->sys_func == sys_fchmodat || |
| 208 | s->sys_func == sys_futimesat || |
| 209 | s->sys_func == sys_mkdirat || |
| 210 | s->sys_func == sys_unlinkat || |
| 211 | s->sys_func == sys_newfstatat || |
| 212 | s->sys_func == sys_mknodat || |
| 213 | s->sys_func == sys_openat || |
| 214 | s->sys_func == sys_readlinkat || |
| 215 | s->sys_func == sys_utimensat || |
| 216 | s->sys_func == sys_fchownat || |
Denys Vlasenko | b63256e | 2011-06-07 12:13:24 +0200 | [diff] [blame] | 217 | s->sys_func == sys_pipe2) |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 218 | { |
| 219 | /* fd, path */ |
| 220 | return fdmatch(tcp, tcp->u_arg[0]) || |
| 221 | upathmatch(tcp, tcp->u_arg[1]); |
| 222 | } |
| 223 | |
| 224 | if (s->sys_func == sys_link || |
| 225 | s->sys_func == sys_pivotroot || |
| 226 | s->sys_func == sys_rename || |
| 227 | s->sys_func == sys_symlink || |
Denys Vlasenko | b63256e | 2011-06-07 12:13:24 +0200 | [diff] [blame] | 228 | s->sys_func == sys_mount) |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 229 | { |
| 230 | /* path, path */ |
| 231 | return upathmatch(tcp, tcp->u_arg[0]) || |
| 232 | upathmatch(tcp, tcp->u_arg[1]); |
| 233 | } |
| 234 | |
| 235 | if (s->sys_func == sys_renameat || |
Denys Vlasenko | b63256e | 2011-06-07 12:13:24 +0200 | [diff] [blame] | 236 | s->sys_func == sys_linkat) |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 237 | { |
| 238 | /* fd, path, fd, path */ |
| 239 | return fdmatch(tcp, tcp->u_arg[0]) || |
| 240 | fdmatch(tcp, tcp->u_arg[2]) || |
| 241 | upathmatch(tcp, tcp->u_arg[1]) || |
| 242 | upathmatch(tcp, tcp->u_arg[3]); |
| 243 | } |
| 244 | |
Denys Vlasenko | 7b609d5 | 2011-06-22 14:32:43 +0200 | [diff] [blame] | 245 | if (s->sys_func == sys_old_mmap || s->sys_func == sys_mmap) { |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 246 | /* x, x, x, x, fd */ |
| 247 | return fdmatch(tcp, tcp->u_arg[4]); |
| 248 | } |
| 249 | |
Denys Vlasenko | 7b609d5 | 2011-06-22 14:32:43 +0200 | [diff] [blame] | 250 | if (s->sys_func == sys_symlinkat) { |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 251 | /* path, fd, path */ |
| 252 | return fdmatch(tcp, tcp->u_arg[1]) || |
| 253 | upathmatch(tcp, tcp->u_arg[0]) || |
Denys Vlasenko | b63256e | 2011-06-07 12:13:24 +0200 | [diff] [blame] | 254 | upathmatch(tcp, tcp->u_arg[2]); |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 255 | } |
| 256 | |
Denys Vlasenko | 7b609d5 | 2011-06-22 14:32:43 +0200 | [diff] [blame] | 257 | if (!strcmp(s->sys_name, "splice")) { |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 258 | /* fd, x, fd, x, x */ |
| 259 | return fdmatch(tcp, tcp->u_arg[0]) || |
| 260 | fdmatch(tcp, tcp->u_arg[2]); |
| 261 | } |
| 262 | |
Denys Vlasenko | 7b609d5 | 2011-06-22 14:32:43 +0200 | [diff] [blame] | 263 | if (s->sys_func == sys_epoll_ctl) { |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 264 | /* x, x, fd, x */ |
| 265 | return fdmatch(tcp, tcp->u_arg[2]); |
| 266 | } |
| 267 | |
| 268 | if (s->sys_func == sys_select || |
| 269 | s->sys_func == sys_oldselect || |
Denys Vlasenko | b63256e | 2011-06-07 12:13:24 +0200 | [diff] [blame] | 270 | s->sys_func == sys_pselect6) |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 271 | { |
| 272 | int i, j, nfds; |
| 273 | long *args, oldargs[5]; |
| 274 | unsigned fdsize; |
| 275 | fd_set *fds; |
| 276 | |
Denys Vlasenko | 7b609d5 | 2011-06-22 14:32:43 +0200 | [diff] [blame] | 277 | if (s->sys_func == sys_oldselect) { |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 278 | if (umoven(tcp, tcp->u_arg[0], sizeof oldargs, |
| 279 | (char*) oldargs) < 0) |
| 280 | { |
| 281 | fprintf(stderr, "umoven() failed\n"); |
| 282 | return 0; |
| 283 | } |
| 284 | args = oldargs; |
| 285 | } else |
| 286 | args = tcp->u_arg; |
| 287 | |
| 288 | nfds = args[0]; |
| 289 | fdsize = ((((nfds + 7) / 8) + sizeof(long) - 1) |
| 290 | & -sizeof(long)); |
| 291 | fds = malloc(fdsize); |
| 292 | |
Denys Vlasenko | 1d46ba5 | 2011-08-31 14:00:02 +0200 | [diff] [blame^] | 293 | if (!fds) |
| 294 | die_out_of_memory(); |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 295 | |
Denys Vlasenko | 7b609d5 | 2011-06-22 14:32:43 +0200 | [diff] [blame] | 296 | for (i = 1; i <= 3; ++i) { |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 297 | if (args[i] == 0) |
| 298 | continue; |
| 299 | |
Denys Vlasenko | 7b609d5 | 2011-06-22 14:32:43 +0200 | [diff] [blame] | 300 | if (umoven(tcp, args[i], fdsize, (char *) fds) < 0) { |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 301 | fprintf(stderr, "umoven() failed\n"); |
| 302 | continue; |
| 303 | } |
| 304 | |
| 305 | for (j = 0; j < nfds; ++j) |
Denys Vlasenko | 7b609d5 | 2011-06-22 14:32:43 +0200 | [diff] [blame] | 306 | if (FD_ISSET(j, fds) && fdmatch(tcp, j)) { |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 307 | free(fds); |
| 308 | return 1; |
| 309 | } |
| 310 | } |
| 311 | free(fds); |
| 312 | return 0; |
| 313 | } |
| 314 | |
| 315 | if (s->sys_func == sys_poll || |
Denys Vlasenko | b63256e | 2011-06-07 12:13:24 +0200 | [diff] [blame] | 316 | s->sys_func == sys_ppoll) |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 317 | { |
| 318 | struct pollfd fds; |
| 319 | unsigned nfds; |
| 320 | unsigned long start, cur, end; |
| 321 | |
| 322 | start = tcp->u_arg[0]; |
| 323 | nfds = tcp->u_arg[1]; |
| 324 | |
| 325 | end = start + sizeof(fds) * nfds; |
| 326 | |
| 327 | if (nfds == 0 || end < start) |
| 328 | return 0; |
| 329 | |
| 330 | for (cur = start; cur < end; cur += sizeof(fds)) |
| 331 | if ((umoven(tcp, cur, sizeof fds, (char *) &fds) == 0) |
| 332 | && fdmatch(tcp, fds.fd)) |
| 333 | return 1; |
| 334 | |
| 335 | return 0; |
| 336 | } |
| 337 | |
| 338 | if (s->sys_func == printargs || |
| 339 | s->sys_func == sys_pipe || |
| 340 | s->sys_func == sys_pipe2 || |
| 341 | s->sys_func == sys_eventfd2 || |
| 342 | s->sys_func == sys_eventfd || |
| 343 | s->sys_func == sys_inotify_init1 || |
| 344 | s->sys_func == sys_timerfd_create || |
| 345 | s->sys_func == sys_timerfd_settime || |
| 346 | s->sys_func == sys_timerfd_gettime || |
| 347 | s->sys_func == sys_epoll_create || |
| 348 | !strcmp(s->sys_name, "fanotify_init")) |
| 349 | { |
| 350 | /* |
| 351 | * These have TRACE_FILE or TRACE_DESCRIPTOR set, but they |
| 352 | * don't have any file descriptor or path args to test. |
| 353 | */ |
| 354 | return 0; |
| 355 | } |
| 356 | #else |
| 357 | #warning "path tracing only using arg[0]" |
| 358 | #endif |
| 359 | |
| 360 | /* |
| 361 | * Our fallback position for calls that haven't already |
| 362 | * been handled is to just check arg[0]. |
| 363 | */ |
| 364 | |
| 365 | if (s->sys_flags & TRACE_FILE) |
| 366 | return upathmatch(tcp, tcp->u_arg[0]); |
| 367 | |
| 368 | if (s->sys_flags & TRACE_DESC) |
| 369 | return fdmatch(tcp, tcp->u_arg[0]); |
| 370 | |
| 371 | return 0; |
| 372 | } |