Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1 | /* |
| 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, 1994, 1995, 1996 Rick Sladkey <jrs@world.std.com> |
Wichert Akkerman | 4dc8a2a | 1999-12-23 14:20:14 +0000 | [diff] [blame] | 5 | * Copyright (c) 1996-1999 Wichert Akkerman <wichert@cistron.nl> |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 6 | * All rights reserved. |
| 7 | * |
| 8 | * Redistribution and use in source and binary forms, with or without |
| 9 | * modification, are permitted provided that the following conditions |
| 10 | * are met: |
| 11 | * 1. Redistributions of source code must retain the above copyright |
| 12 | * notice, this list of conditions and the following disclaimer. |
| 13 | * 2. Redistributions in binary form must reproduce the above copyright |
| 14 | * notice, this list of conditions and the following disclaimer in the |
| 15 | * documentation and/or other materials provided with the distribution. |
| 16 | * 3. The name of the author may not be used to endorse or promote products |
| 17 | * derived from this software without specific prior written permission. |
| 18 | * |
| 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 20 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 21 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 22 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 23 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 24 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 25 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 28 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 | * |
| 30 | * $Id$ |
| 31 | */ |
| 32 | |
| 33 | #include "defs.h" |
| 34 | |
| 35 | #include <fcntl.h> |
| 36 | #include <sys/file.h> |
Roland McGrath | 93817bf | 2004-10-06 22:23:31 +0000 | [diff] [blame] | 37 | #ifdef LINUX |
| 38 | #include <inttypes.h> |
Roland McGrath | 63d6e54 | 2004-10-20 02:17:41 +0000 | [diff] [blame] | 39 | #endif |
| 40 | #ifdef HAVE_SYS_EPOLL_H |
Roland McGrath | 93817bf | 2004-10-06 22:23:31 +0000 | [diff] [blame] | 41 | #include <sys/epoll.h> |
| 42 | #endif |
Roland McGrath | 37b9f84 | 2005-05-09 08:02:00 +0000 | [diff] [blame] | 43 | #ifdef HAVE_LIBAIO_H |
| 44 | #include <libaio.h> |
| 45 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 46 | |
John Hughes | 70623be | 2001-03-08 13:59:00 +0000 | [diff] [blame] | 47 | #if HAVE_LONG_LONG_OFF_T |
| 48 | /* |
| 49 | * Hacks for systems that have a long long off_t |
| 50 | */ |
John Hughes | b8c9f77 | 2001-03-07 16:53:07 +0000 | [diff] [blame] | 51 | #define flock64 flock /* Horrid hack */ |
| 52 | #define printflock printflock64 /* Horrider hack */ |
| 53 | #endif |
| 54 | |
| 55 | |
Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 56 | static const struct xlat fcntlcmds[] = { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 57 | { F_DUPFD, "F_DUPFD" }, |
| 58 | { F_GETFD, "F_GETFD" }, |
| 59 | { F_SETFD, "F_SETFD" }, |
| 60 | { F_GETFL, "F_GETFL" }, |
| 61 | { F_SETFL, "F_SETFL" }, |
| 62 | { F_GETLK, "F_GETLK" }, |
| 63 | { F_SETLK, "F_SETLK" }, |
| 64 | { F_SETLKW, "F_SETLKW" }, |
| 65 | { F_GETOWN, "F_GETOWN" }, |
| 66 | { F_SETOWN, "F_SETOWN" }, |
| 67 | #ifdef F_RSETLK |
| 68 | { F_RSETLK, "F_RSETLK" }, |
| 69 | #endif |
| 70 | #ifdef F_RSETLKW |
| 71 | { F_RSETLKW, "F_RSETLKW" }, |
| 72 | #endif |
| 73 | #ifdef F_RGETLK |
| 74 | { F_RGETLK, "F_RGETLK" }, |
| 75 | #endif |
| 76 | #ifdef F_CNVT |
| 77 | { F_CNVT, "F_CNVT" }, |
| 78 | #endif |
Wichert Akkerman | 5ae21ea | 2000-05-01 01:53:59 +0000 | [diff] [blame] | 79 | #ifdef F_SETSIG |
| 80 | { F_SETSIG, "F_SETSIG" }, |
| 81 | #endif |
| 82 | #ifdef F_GETSIG |
| 83 | { F_GETSIG, "F_GETSIG" }, |
| 84 | #endif |
John Hughes | bdf48f5 | 2001-03-06 15:08:09 +0000 | [diff] [blame] | 85 | #ifdef F_CHKFL |
| 86 | { F_CHKFL, "F_CHKFL" }, |
| 87 | #endif |
| 88 | #ifdef F_DUP2FD |
| 89 | { F_DUP2FD, "F_DUP2FD" }, |
| 90 | #endif |
| 91 | #ifdef F_ALLOCSP |
| 92 | { F_ALLOCSP, "F_ALLOCSP" }, |
| 93 | #endif |
| 94 | #ifdef F_ISSTREAM |
| 95 | { F_ISSTREAM, "F_ISSTREAM" }, |
| 96 | #endif |
| 97 | #ifdef F_PRIV |
| 98 | { F_PRIV, "F_PRIV" }, |
| 99 | #endif |
| 100 | #ifdef F_NPRIV |
| 101 | { F_NPRIV, "F_NPRIV" }, |
| 102 | #endif |
| 103 | #ifdef F_QUOTACL |
| 104 | { F_QUOTACL, "F_QUOTACL" }, |
| 105 | #endif |
| 106 | #ifdef F_BLOCKS |
| 107 | { F_BLOCKS, "F_BLOCKS" }, |
| 108 | #endif |
| 109 | #ifdef F_BLKSIZE |
| 110 | { F_BLKSIZE, "F_BLKSIZE" }, |
| 111 | #endif |
| 112 | #ifdef F_GETOWN |
| 113 | { F_GETOWN, "F_GETOWN" }, |
| 114 | #endif |
| 115 | #ifdef F_SETOWN |
| 116 | { F_SETOWN, "F_SETOWN" }, |
| 117 | #endif |
| 118 | #ifdef F_REVOKE |
| 119 | { F_REVOKE, "F_REVOKE" }, |
| 120 | #endif |
| 121 | #ifdef F_SETLK |
| 122 | { F_SETLK, "F_SETLK" }, |
| 123 | #endif |
| 124 | #ifdef F_SETLKW |
| 125 | { F_SETLKW, "F_SETLKW" }, |
| 126 | #endif |
| 127 | #ifdef F_FREESP |
| 128 | { F_FREESP, "F_FREESP" }, |
| 129 | #endif |
| 130 | #ifdef F_GETLK |
| 131 | { F_GETLK, "F_GETLK" }, |
| 132 | #endif |
| 133 | #ifdef F_SETLK64 |
| 134 | { F_SETLK64, "F_SETLK64" }, |
| 135 | #endif |
| 136 | #ifdef F_SETLKW64 |
| 137 | { F_SETLKW64, "F_SETLKW64" }, |
| 138 | #endif |
| 139 | #ifdef F_FREESP64 |
| 140 | { F_FREESP64, "F_FREESP64" }, |
| 141 | #endif |
| 142 | #ifdef F_GETLK64 |
| 143 | { F_GETLK64, "F_GETLK64" }, |
| 144 | #endif |
| 145 | #ifdef F_SHARE |
| 146 | { F_SHARE, "F_SHARE" }, |
| 147 | #endif |
| 148 | #ifdef F_UNSHARE |
| 149 | { F_UNSHARE, "F_UNSHARE" }, |
| 150 | #endif |
Denys Vlasenko | eedaac7 | 2009-03-10 20:41:58 +0000 | [diff] [blame] | 151 | #ifdef F_SETLEASE |
| 152 | { F_SETLEASE, "F_SETLEASE" }, |
| 153 | #endif |
| 154 | #ifdef F_GETLEASE |
| 155 | { F_GETLEASE, "F_GETLEASE" }, |
| 156 | #endif |
| 157 | #ifdef F_NOTIFY |
| 158 | { F_NOTIFY, "F_NOTIFY" }, |
| 159 | #endif |
| 160 | #ifdef F_DUPFD_CLOEXEC |
| 161 | { F_DUPFD_CLOEXEC,"F_DUPFD_CLOEXEC"}, |
| 162 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 163 | { 0, NULL }, |
| 164 | }; |
| 165 | |
Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 166 | static const struct xlat fdflags[] = { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 167 | #ifdef FD_CLOEXEC |
| 168 | { FD_CLOEXEC, "FD_CLOEXEC" }, |
| 169 | #endif |
| 170 | { 0, NULL }, |
| 171 | }; |
| 172 | |
| 173 | #ifdef LOCK_SH |
| 174 | |
Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 175 | static const struct xlat flockcmds[] = { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 176 | { LOCK_SH, "LOCK_SH" }, |
| 177 | { LOCK_EX, "LOCK_EX" }, |
| 178 | { LOCK_NB, "LOCK_NB" }, |
| 179 | { LOCK_UN, "LOCK_UN" }, |
| 180 | { 0, NULL }, |
| 181 | }; |
| 182 | |
| 183 | #endif /* LOCK_SH */ |
| 184 | |
Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 185 | static const struct xlat lockfcmds[] = { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 186 | { F_RDLCK, "F_RDLCK" }, |
| 187 | { F_WRLCK, "F_WRLCK" }, |
| 188 | { F_UNLCK, "F_UNLCK" }, |
| 189 | #ifdef F_EXLCK |
| 190 | { F_EXLCK, "F_EXLCK" }, |
| 191 | #endif |
| 192 | #ifdef F_SHLCK |
| 193 | { F_SHLCK, "F_SHLCK" }, |
| 194 | #endif |
| 195 | { 0, NULL }, |
| 196 | }; |
| 197 | |
Denys Vlasenko | eedaac7 | 2009-03-10 20:41:58 +0000 | [diff] [blame] | 198 | #ifdef F_NOTIFY |
| 199 | static const struct xlat notifyflags[] = { |
| 200 | #ifdef DN_ACCESS |
| 201 | { DN_ACCESS, "DN_ACCESS" }, |
| 202 | #endif |
| 203 | #ifdef DN_MODIFY |
| 204 | { DN_MODIFY, "DN_MODIFY" }, |
| 205 | #endif |
| 206 | #ifdef DN_CREATE |
| 207 | { DN_CREATE, "DN_CREATE" }, |
| 208 | #endif |
| 209 | #ifdef DN_DELETE |
| 210 | { DN_DELETE, "DN_DELETE" }, |
| 211 | #endif |
| 212 | #ifdef DN_RENAME |
| 213 | { DN_RENAME, "DN_RENAME" }, |
| 214 | #endif |
| 215 | #ifdef DN_ATTRIB |
| 216 | { DN_ATTRIB, "DN_ATTRIB" }, |
| 217 | #endif |
| 218 | #ifdef DN_MULTISHOT |
| 219 | { DN_MULTISHOT, "DN_MULTISHOT" }, |
| 220 | #endif |
| 221 | { 0, NULL }, |
| 222 | }; |
| 223 | #endif |
| 224 | |
Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 225 | static const struct xlat whence[] = { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 226 | { SEEK_SET, "SEEK_SET" }, |
| 227 | { SEEK_CUR, "SEEK_CUR" }, |
| 228 | { SEEK_END, "SEEK_END" }, |
| 229 | { 0, NULL }, |
| 230 | }; |
| 231 | |
John Hughes | 70623be | 2001-03-08 13:59:00 +0000 | [diff] [blame] | 232 | #ifndef HAVE_LONG_LONG_OFF_T |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 233 | /* fcntl/lockf */ |
| 234 | static void |
Denys Vlasenko | 30b5e5a | 2009-01-06 15:12:52 +0000 | [diff] [blame] | 235 | printflock(struct tcb *tcp, long addr, int getlk) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 236 | { |
| 237 | struct flock fl; |
| 238 | |
Denys Vlasenko | 7a862d7 | 2009-04-15 13:22:59 +0000 | [diff] [blame] | 239 | #if SUPPORTED_PERSONALITIES > 1 |
| 240 | if (personality_wordsize[current_personality] != sizeof(fl.l_start)) { |
| 241 | if (personality_wordsize[current_personality] == 4) { |
| 242 | /* 32-bit x86 app on x86_64 and similar cases */ |
| 243 | struct { |
| 244 | short int l_type; |
| 245 | short int l_whence; |
| 246 | int32_t l_start; /* off_t */ |
| 247 | int32_t l_len; /* off_t */ |
| 248 | int32_t l_pid; /* pid_t */ |
| 249 | } fl32; |
| 250 | if (umove(tcp, addr, &fl32) < 0) { |
| 251 | tprintf("{...}"); |
| 252 | return; |
| 253 | } |
| 254 | fl.l_type = fl32.l_type; |
| 255 | fl.l_whence = fl32.l_whence; |
| 256 | fl.l_start = fl32.l_start; |
| 257 | fl.l_len = fl32.l_len; |
| 258 | fl.l_pid = fl32.l_pid; |
| 259 | } else { |
| 260 | /* let people know we have a problem here */ |
| 261 | tprintf("{ <decode error: unsupported wordsize %d> }", |
| 262 | personality_wordsize[current_personality]); |
| 263 | return; |
| 264 | } |
| 265 | } else |
| 266 | #endif |
| 267 | { |
Denys Vlasenko | 30b5e5a | 2009-01-06 15:12:52 +0000 | [diff] [blame] | 268 | if (umove(tcp, addr, &fl) < 0) { |
| 269 | tprintf("{...}"); |
| 270 | return; |
| 271 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 272 | } |
| 273 | tprintf("{type="); |
| 274 | printxval(lockfcmds, fl.l_type, "F_???"); |
| 275 | tprintf(", whence="); |
| 276 | printxval(whence, fl.l_whence, "SEEK_???"); |
| 277 | tprintf(", start=%ld, len=%ld", fl.l_start, fl.l_len); |
| 278 | if (getlk) |
| 279 | tprintf(", pid=%lu}", (unsigned long) fl.l_pid); |
| 280 | else |
| 281 | tprintf("}"); |
| 282 | } |
John Hughes | b8c9f77 | 2001-03-07 16:53:07 +0000 | [diff] [blame] | 283 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 284 | |
John Hughes | 70623be | 2001-03-08 13:59:00 +0000 | [diff] [blame] | 285 | #if _LFS64_LARGEFILE || HAVE_LONG_LONG_OFF_T |
John Hughes | bdf48f5 | 2001-03-06 15:08:09 +0000 | [diff] [blame] | 286 | /* fcntl/lockf */ |
| 287 | static void |
Denys Vlasenko | 30b5e5a | 2009-01-06 15:12:52 +0000 | [diff] [blame] | 288 | printflock64(struct tcb *tcp, long addr, int getlk) |
John Hughes | bdf48f5 | 2001-03-06 15:08:09 +0000 | [diff] [blame] | 289 | { |
| 290 | struct flock64 fl; |
| 291 | |
| 292 | if (umove(tcp, addr, &fl) < 0) { |
| 293 | tprintf("{...}"); |
| 294 | return; |
| 295 | } |
| 296 | tprintf("{type="); |
| 297 | printxval(lockfcmds, fl.l_type, "F_???"); |
| 298 | tprintf(", whence="); |
| 299 | printxval(whence, fl.l_whence, "SEEK_???"); |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 300 | tprintf(", start=%lld, len=%lld", (long long) fl.l_start, (long long) fl.l_len); |
John Hughes | bdf48f5 | 2001-03-06 15:08:09 +0000 | [diff] [blame] | 301 | if (getlk) |
| 302 | tprintf(", pid=%lu}", (unsigned long) fl.l_pid); |
| 303 | else |
| 304 | tprintf("}"); |
| 305 | } |
| 306 | #endif |
| 307 | |
Dmitry V. Levin | 9b5b67e | 2007-01-11 23:19:55 +0000 | [diff] [blame] | 308 | int |
| 309 | sys_fcntl(struct tcb *tcp) |
| 310 | { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 311 | if (entering(tcp)) { |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 312 | printfd(tcp, tcp->u_arg[0]); |
| 313 | tprintf(", "); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 314 | printxval(fcntlcmds, tcp->u_arg[1], "F_???"); |
| 315 | switch (tcp->u_arg[1]) { |
| 316 | case F_SETFD: |
| 317 | tprintf(", "); |
Roland McGrath | b2dee13 | 2005-06-01 19:02:36 +0000 | [diff] [blame] | 318 | printflags(fdflags, tcp->u_arg[2], "FD_???"); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 319 | break; |
| 320 | case F_SETOWN: case F_DUPFD: |
Denys Vlasenko | eedaac7 | 2009-03-10 20:41:58 +0000 | [diff] [blame] | 321 | #ifdef F_DUPFD_CLOEXEC |
| 322 | case F_DUPFD_CLOEXEC: |
| 323 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 324 | tprintf(", %ld", tcp->u_arg[2]); |
| 325 | break; |
| 326 | case F_SETFL: |
| 327 | tprintf(", "); |
Denys Vlasenko | eedaac7 | 2009-03-10 20:41:58 +0000 | [diff] [blame] | 328 | tprint_open_modes(tcp->u_arg[2]); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 329 | break; |
| 330 | case F_SETLK: case F_SETLKW: |
John Hughes | bdf48f5 | 2001-03-06 15:08:09 +0000 | [diff] [blame] | 331 | #ifdef F_FREESP |
| 332 | case F_FREESP: |
| 333 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 334 | tprintf(", "); |
| 335 | printflock(tcp, tcp->u_arg[2], 0); |
| 336 | break; |
John Hughes | bdf48f5 | 2001-03-06 15:08:09 +0000 | [diff] [blame] | 337 | #if _LFS64_LARGEFILE |
| 338 | #ifdef F_FREESP64 |
| 339 | case F_FREESP64: |
| 340 | #endif |
Roland McGrath | e948faf | 2002-12-15 23:58:18 +0000 | [diff] [blame] | 341 | /* Linux glibc defines SETLK64 as SETLK, |
John Hughes | bdf48f5 | 2001-03-06 15:08:09 +0000 | [diff] [blame] | 342 | even though the kernel has different values - as does Solaris. */ |
Denys Vlasenko | eedaac7 | 2009-03-10 20:41:58 +0000 | [diff] [blame] | 343 | #if defined(F_SETLK64) && F_SETLK64 + 0 != F_SETLK |
John Hughes | bdf48f5 | 2001-03-06 15:08:09 +0000 | [diff] [blame] | 344 | case F_SETLK64: |
| 345 | #endif |
Denys Vlasenko | eedaac7 | 2009-03-10 20:41:58 +0000 | [diff] [blame] | 346 | #if defined(F_SETLKW64) && F_SETLKW64 + 0 != F_SETLKW |
John Hughes | bdf48f5 | 2001-03-06 15:08:09 +0000 | [diff] [blame] | 347 | case F_SETLKW64: |
| 348 | #endif |
| 349 | tprintf(", "); |
| 350 | printflock64(tcp, tcp->u_arg[2], 0); |
| 351 | break; |
| 352 | #endif |
Denys Vlasenko | eedaac7 | 2009-03-10 20:41:58 +0000 | [diff] [blame] | 353 | #ifdef F_NOTIFY |
| 354 | case F_NOTIFY: |
| 355 | tprintf(", "); |
| 356 | printflags(notifyflags, tcp->u_arg[2], "DN_???"); |
| 357 | break; |
| 358 | #endif |
| 359 | #ifdef F_SETLEASE |
| 360 | case F_SETLEASE: |
| 361 | tprintf(", "); |
| 362 | printxval(lockfcmds, tcp->u_arg[2], "F_???"); |
| 363 | break; |
| 364 | #endif |
Denys Vlasenko | 5ae2b7c | 2009-02-27 20:32:52 +0000 | [diff] [blame] | 365 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 366 | } |
| 367 | else { |
| 368 | switch (tcp->u_arg[1]) { |
| 369 | case F_DUPFD: |
Denys Vlasenko | eedaac7 | 2009-03-10 20:41:58 +0000 | [diff] [blame] | 370 | #ifdef F_DUPFD_CLOEXEC |
| 371 | case F_DUPFD_CLOEXEC: |
| 372 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 373 | case F_SETFD: case F_SETFL: |
| 374 | case F_SETLK: case F_SETLKW: |
| 375 | case F_SETOWN: case F_GETOWN: |
Denys Vlasenko | eedaac7 | 2009-03-10 20:41:58 +0000 | [diff] [blame] | 376 | #ifdef F_NOTIFY |
| 377 | case F_NOTIFY: |
| 378 | #endif |
| 379 | #ifdef F_SETLEASE |
| 380 | case F_SETLEASE: |
| 381 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 382 | break; |
| 383 | case F_GETFD: |
Dmitry V. Levin | 21a7534 | 2008-09-03 01:22:18 +0000 | [diff] [blame] | 384 | if (syserror(tcp) || tcp->u_rval == 0) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 385 | return 0; |
Denys Vlasenko | eedaac7 | 2009-03-10 20:41:58 +0000 | [diff] [blame] | 386 | tcp->auxstr = sprintflags("flags ", fdflags, tcp->u_rval); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 387 | return RVAL_HEX|RVAL_STR; |
| 388 | case F_GETFL: |
Dmitry V. Levin | 21a7534 | 2008-09-03 01:22:18 +0000 | [diff] [blame] | 389 | if (syserror(tcp)) |
| 390 | return 0; |
Dmitry V. Levin | 9b5b67e | 2007-01-11 23:19:55 +0000 | [diff] [blame] | 391 | tcp->auxstr = sprint_open_modes(tcp->u_rval); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 392 | return RVAL_HEX|RVAL_STR; |
| 393 | case F_GETLK: |
| 394 | tprintf(", "); |
| 395 | printflock(tcp, tcp->u_arg[2], 1); |
| 396 | break; |
John Hughes | bdf48f5 | 2001-03-06 15:08:09 +0000 | [diff] [blame] | 397 | #if _LFS64_LARGEFILE |
Denys Vlasenko | b63256e | 2011-06-07 12:13:24 +0200 | [diff] [blame] | 398 | #if defined(F_GETLK64) && F_GETLK64+0 != F_GETLK |
John Hughes | bdf48f5 | 2001-03-06 15:08:09 +0000 | [diff] [blame] | 399 | case F_GETLK64: |
| 400 | #endif |
| 401 | tprintf(", "); |
| 402 | printflock64(tcp, tcp->u_arg[2], 1); |
| 403 | break; |
| 404 | #endif |
Denys Vlasenko | eedaac7 | 2009-03-10 20:41:58 +0000 | [diff] [blame] | 405 | #ifdef F_GETLEASE |
| 406 | case F_GETLEASE: |
| 407 | if (syserror(tcp)) |
| 408 | return 0; |
| 409 | tcp->auxstr = xlookup(lockfcmds, tcp->u_rval); |
| 410 | return RVAL_HEX|RVAL_STR; |
| 411 | #endif |
Denys Vlasenko | 5ae2b7c | 2009-02-27 20:32:52 +0000 | [diff] [blame] | 412 | default: |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 413 | tprintf(", %#lx", tcp->u_arg[2]); |
| 414 | break; |
| 415 | } |
| 416 | } |
| 417 | return 0; |
| 418 | } |
| 419 | |
| 420 | #ifdef LOCK_SH |
| 421 | |
| 422 | int |
Denys Vlasenko | 30b5e5a | 2009-01-06 15:12:52 +0000 | [diff] [blame] | 423 | sys_flock(struct tcb *tcp) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 424 | { |
| 425 | if (entering(tcp)) { |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 426 | printfd(tcp, tcp->u_arg[0]); |
| 427 | tprintf(", "); |
Roland McGrath | b2dee13 | 2005-06-01 19:02:36 +0000 | [diff] [blame] | 428 | printflags(flockcmds, tcp->u_arg[1], "LOCK_???"); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 429 | } |
| 430 | return 0; |
| 431 | } |
| 432 | #endif /* LOCK_SH */ |
| 433 | |
| 434 | int |
Denys Vlasenko | 30b5e5a | 2009-01-06 15:12:52 +0000 | [diff] [blame] | 435 | sys_close(struct tcb *tcp) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 436 | { |
| 437 | if (entering(tcp)) { |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 438 | printfd(tcp, tcp->u_arg[0]); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 439 | } |
| 440 | return 0; |
| 441 | } |
| 442 | |
| 443 | int |
Denys Vlasenko | 30b5e5a | 2009-01-06 15:12:52 +0000 | [diff] [blame] | 444 | sys_dup(struct tcb *tcp) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 445 | { |
| 446 | if (entering(tcp)) { |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 447 | printfd(tcp, tcp->u_arg[0]); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 448 | } |
| 449 | return 0; |
| 450 | } |
| 451 | |
Dmitry V. Levin | 4371b10 | 2008-11-10 22:53:02 +0000 | [diff] [blame] | 452 | static int |
| 453 | do_dup2(struct tcb *tcp, int flags_arg) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 454 | { |
| 455 | if (entering(tcp)) { |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 456 | printfd(tcp, tcp->u_arg[0]); |
| 457 | tprintf(", "); |
| 458 | printfd(tcp, tcp->u_arg[1]); |
Dmitry V. Levin | 4371b10 | 2008-11-10 22:53:02 +0000 | [diff] [blame] | 459 | if (flags_arg >= 0) { |
| 460 | tprintf(", "); |
| 461 | printflags(open_mode_flags, tcp->u_arg[flags_arg], "O_???"); |
| 462 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 463 | } |
| 464 | return 0; |
| 465 | } |
| 466 | |
Dmitry V. Levin | 4371b10 | 2008-11-10 22:53:02 +0000 | [diff] [blame] | 467 | int |
| 468 | sys_dup2(struct tcb *tcp) |
| 469 | { |
| 470 | return do_dup2(tcp, -1); |
| 471 | } |
| 472 | |
| 473 | #ifdef LINUX |
| 474 | int |
| 475 | sys_dup3(struct tcb *tcp) |
| 476 | { |
| 477 | return do_dup2(tcp, 2); |
| 478 | } |
| 479 | #endif |
| 480 | |
Dmitry V. Levin | b9fe011 | 2006-12-13 16:59:44 +0000 | [diff] [blame] | 481 | #if defined(ALPHA) || defined(FREEBSD) || defined(SUNOS4) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 482 | int |
Denys Vlasenko | 30b5e5a | 2009-01-06 15:12:52 +0000 | [diff] [blame] | 483 | sys_getdtablesize(struct tcb *tcp) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 484 | { |
| 485 | return 0; |
| 486 | } |
Dmitry V. Levin | b9fe011 | 2006-12-13 16:59:44 +0000 | [diff] [blame] | 487 | #endif /* ALPHA || FREEBSD || SUNOS4 */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 488 | |
| 489 | static int |
Dmitry V. Levin | a7945a3 | 2006-12-13 17:10:11 +0000 | [diff] [blame] | 490 | decode_select(struct tcb *tcp, long *args, enum bitness_t bitness) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 491 | { |
| 492 | int i, j, nfds; |
Roland McGrath | e85aaa4 | 2005-02-06 01:55:12 +0000 | [diff] [blame] | 493 | unsigned int fdsize = ((((args[0] + 7) / 8) + sizeof(long) - 1) |
| 494 | & -sizeof(long)); |
| 495 | fd_set *fds; |
Dmitry V. Levin | 30145dd | 2010-09-06 22:08:24 +0000 | [diff] [blame] | 496 | const char *sep; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 497 | long arg; |
| 498 | |
| 499 | if (entering(tcp)) { |
Roland McGrath | e85aaa4 | 2005-02-06 01:55:12 +0000 | [diff] [blame] | 500 | fds = (fd_set *) malloc(fdsize); |
Roland McGrath | 46100d0 | 2005-06-01 18:55:42 +0000 | [diff] [blame] | 501 | if (fds == NULL) |
| 502 | fprintf(stderr, "out of memory\n"); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 503 | nfds = args[0]; |
| 504 | tprintf("%d", nfds); |
| 505 | for (i = 0; i < 3; i++) { |
| 506 | arg = args[i+1]; |
| 507 | if (arg == 0) { |
| 508 | tprintf(", NULL"); |
| 509 | continue; |
| 510 | } |
Roland McGrath | 46100d0 | 2005-06-01 18:55:42 +0000 | [diff] [blame] | 511 | if (fds == NULL || !verbose(tcp)) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 512 | tprintf(", %#lx", arg); |
| 513 | continue; |
| 514 | } |
Roland McGrath | e85aaa4 | 2005-02-06 01:55:12 +0000 | [diff] [blame] | 515 | if (umoven(tcp, arg, fdsize, (char *) fds) < 0) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 516 | tprintf(", [?]"); |
| 517 | continue; |
| 518 | } |
| 519 | tprintf(", ["); |
| 520 | for (j = 0, sep = ""; j < nfds; j++) { |
Roland McGrath | e85aaa4 | 2005-02-06 01:55:12 +0000 | [diff] [blame] | 521 | if (FD_ISSET(j, fds)) { |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 522 | tprintf("%s", sep); |
| 523 | printfd(tcp, j); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 524 | sep = " "; |
| 525 | } |
| 526 | } |
| 527 | tprintf("]"); |
| 528 | } |
Roland McGrath | e85aaa4 | 2005-02-06 01:55:12 +0000 | [diff] [blame] | 529 | free(fds); |
Dmitry V. Levin | a7945a3 | 2006-12-13 17:10:11 +0000 | [diff] [blame] | 530 | tprintf(", "); |
Roland McGrath | 6afc565 | 2007-07-24 01:57:11 +0000 | [diff] [blame] | 531 | printtv_bitness(tcp, args[4], bitness, 0); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 532 | } |
Denys Vlasenko | 7b609d5 | 2011-06-22 14:32:43 +0200 | [diff] [blame] | 533 | else { |
Denys Vlasenko | 2fb4db3 | 2011-08-31 12:26:03 +0200 | [diff] [blame^] | 534 | static char outstr[1024]; |
| 535 | char *outptr; |
| 536 | #define end_outstr (outstr + sizeof(outstr)) |
| 537 | const char *sep; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 538 | |
| 539 | if (syserror(tcp)) |
| 540 | return 0; |
| 541 | |
Denys Vlasenko | 5d64581 | 2011-08-20 12:48:18 +0200 | [diff] [blame] | 542 | nfds = tcp->u_rval; |
| 543 | if (nfds == 0) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 544 | tcp->auxstr = "Timeout"; |
| 545 | return RVAL_STR; |
| 546 | } |
Roland McGrath | e85aaa4 | 2005-02-06 01:55:12 +0000 | [diff] [blame] | 547 | |
Denys Vlasenko | 2fb4db3 | 2011-08-31 12:26:03 +0200 | [diff] [blame^] | 548 | fds = malloc(fdsize); |
Roland McGrath | 46100d0 | 2005-06-01 18:55:42 +0000 | [diff] [blame] | 549 | if (fds == NULL) |
| 550 | fprintf(stderr, "out of memory\n"); |
Roland McGrath | e85aaa4 | 2005-02-06 01:55:12 +0000 | [diff] [blame] | 551 | |
Denys Vlasenko | 2fb4db3 | 2011-08-31 12:26:03 +0200 | [diff] [blame^] | 552 | tcp->auxstr = outstr; |
| 553 | outptr = outstr; |
| 554 | sep = ""; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 555 | for (i = 0; i < 3; i++) { |
| 556 | int first = 1; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 557 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 558 | arg = args[i+1]; |
Roland McGrath | 46100d0 | 2005-06-01 18:55:42 +0000 | [diff] [blame] | 559 | if (fds == NULL || !arg || |
| 560 | umoven(tcp, arg, fdsize, (char *) fds) < 0) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 561 | continue; |
| 562 | for (j = 0; j < args[0]; j++) { |
Roland McGrath | e85aaa4 | 2005-02-06 01:55:12 +0000 | [diff] [blame] | 563 | if (FD_ISSET(j, fds)) { |
Denys Vlasenko | 2fb4db3 | 2011-08-31 12:26:03 +0200 | [diff] [blame^] | 564 | /* +2 chars needed at the end: ']',NUL */ |
| 565 | if (outptr < end_outstr - (sizeof(", except [") + sizeof(int)*3 + 2)) { |
| 566 | if (first) { |
| 567 | outptr += sprintf(outptr, "%s%s [%u", |
| 568 | sep, |
| 569 | i == 0 ? "in" : i == 1 ? "out" : "except", |
| 570 | j |
| 571 | ); |
| 572 | first = 0; |
| 573 | sep = ", "; |
| 574 | } |
| 575 | else { |
| 576 | outptr += sprintf(outptr, " %u", j); |
| 577 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 578 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 579 | nfds--; |
| 580 | } |
| 581 | } |
Denys Vlasenko | 2fb4db3 | 2011-08-31 12:26:03 +0200 | [diff] [blame^] | 582 | if (outptr != outstr) |
| 583 | *outptr++ = ']'; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 584 | if (nfds == 0) |
| 585 | break; |
| 586 | } |
Roland McGrath | e85aaa4 | 2005-02-06 01:55:12 +0000 | [diff] [blame] | 587 | free(fds); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 588 | #ifdef LINUX |
| 589 | /* This contains no useful information on SunOS. */ |
| 590 | if (args[4]) { |
Denys Vlasenko | 2fb4db3 | 2011-08-31 12:26:03 +0200 | [diff] [blame^] | 591 | if (outptr < end_outstr - 128) { |
| 592 | outptr += sprintf(outptr, "%sleft ", sep); |
| 593 | outptr = sprinttv(tcp, args[4], bitness, outptr); |
| 594 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 595 | } |
| 596 | #endif /* LINUX */ |
Denys Vlasenko | 2fb4db3 | 2011-08-31 12:26:03 +0200 | [diff] [blame^] | 597 | *outptr = '\0'; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 598 | return RVAL_STR; |
Denys Vlasenko | 2fb4db3 | 2011-08-31 12:26:03 +0200 | [diff] [blame^] | 599 | #undef end_outstr |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 600 | } |
| 601 | return 0; |
| 602 | } |
| 603 | |
| 604 | #ifdef LINUX |
| 605 | |
| 606 | int |
Denys Vlasenko | 30b5e5a | 2009-01-06 15:12:52 +0000 | [diff] [blame] | 607 | sys_oldselect(struct tcb *tcp) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 608 | { |
| 609 | long args[5]; |
| 610 | |
| 611 | if (umoven(tcp, tcp->u_arg[0], sizeof args, (char *) args) < 0) { |
| 612 | tprintf("[...]"); |
| 613 | return 0; |
| 614 | } |
Dmitry V. Levin | a7945a3 | 2006-12-13 17:10:11 +0000 | [diff] [blame] | 615 | return decode_select(tcp, args, BITNESS_CURRENT); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 616 | } |
| 617 | |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 618 | #ifdef ALPHA |
Roland McGrath | e948faf | 2002-12-15 23:58:18 +0000 | [diff] [blame] | 619 | int |
Denys Vlasenko | 30b5e5a | 2009-01-06 15:12:52 +0000 | [diff] [blame] | 620 | sys_osf_select(struct tcb *tcp) |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 621 | { |
| 622 | long *args = tcp->u_arg; |
Dmitry V. Levin | a7945a3 | 2006-12-13 17:10:11 +0000 | [diff] [blame] | 623 | return decode_select(tcp, args, BITNESS_32); |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 624 | } |
| 625 | #endif |
| 626 | |
Denys Vlasenko | 30b5e5a | 2009-01-06 15:12:52 +0000 | [diff] [blame] | 627 | static const struct xlat epollctls[] = { |
Roland McGrath | 63d6e54 | 2004-10-20 02:17:41 +0000 | [diff] [blame] | 628 | #ifdef EPOLL_CTL_ADD |
Roland McGrath | 93817bf | 2004-10-06 22:23:31 +0000 | [diff] [blame] | 629 | { EPOLL_CTL_ADD, "EPOLL_CTL_ADD" }, |
Roland McGrath | 63d6e54 | 2004-10-20 02:17:41 +0000 | [diff] [blame] | 630 | #endif |
| 631 | #ifdef EPOLL_CTL_MOD |
Roland McGrath | 93817bf | 2004-10-06 22:23:31 +0000 | [diff] [blame] | 632 | { EPOLL_CTL_MOD, "EPOLL_CTL_MOD" }, |
Roland McGrath | 63d6e54 | 2004-10-20 02:17:41 +0000 | [diff] [blame] | 633 | #endif |
| 634 | #ifdef EPOLL_CTL_DEL |
Roland McGrath | 93817bf | 2004-10-06 22:23:31 +0000 | [diff] [blame] | 635 | { EPOLL_CTL_DEL, "EPOLL_CTL_DEL" }, |
Roland McGrath | 63d6e54 | 2004-10-20 02:17:41 +0000 | [diff] [blame] | 636 | #endif |
Roland McGrath | 93817bf | 2004-10-06 22:23:31 +0000 | [diff] [blame] | 637 | { 0, NULL } |
| 638 | }; |
| 639 | |
Denys Vlasenko | 30b5e5a | 2009-01-06 15:12:52 +0000 | [diff] [blame] | 640 | static const struct xlat epollevents[] = { |
Roland McGrath | 63d6e54 | 2004-10-20 02:17:41 +0000 | [diff] [blame] | 641 | #ifdef EPOLLIN |
Roland McGrath | 93817bf | 2004-10-06 22:23:31 +0000 | [diff] [blame] | 642 | { EPOLLIN, "EPOLLIN" }, |
Roland McGrath | 63d6e54 | 2004-10-20 02:17:41 +0000 | [diff] [blame] | 643 | #endif |
| 644 | #ifdef EPOLLPRI |
Roland McGrath | 93817bf | 2004-10-06 22:23:31 +0000 | [diff] [blame] | 645 | { EPOLLPRI, "EPOLLPRI" }, |
Roland McGrath | 63d6e54 | 2004-10-20 02:17:41 +0000 | [diff] [blame] | 646 | #endif |
| 647 | #ifdef EPOLLOUT |
Roland McGrath | 93817bf | 2004-10-06 22:23:31 +0000 | [diff] [blame] | 648 | { EPOLLOUT, "EPOLLOUT" }, |
Roland McGrath | 63d6e54 | 2004-10-20 02:17:41 +0000 | [diff] [blame] | 649 | #endif |
| 650 | #ifdef EPOLLRDNORM |
Roland McGrath | 93817bf | 2004-10-06 22:23:31 +0000 | [diff] [blame] | 651 | { EPOLLRDNORM, "EPOLLRDNORM" }, |
Roland McGrath | 63d6e54 | 2004-10-20 02:17:41 +0000 | [diff] [blame] | 652 | #endif |
| 653 | #ifdef EPOLLRDBAND |
Roland McGrath | 93817bf | 2004-10-06 22:23:31 +0000 | [diff] [blame] | 654 | { EPOLLRDBAND, "EPOLLRDBAND" }, |
Roland McGrath | 63d6e54 | 2004-10-20 02:17:41 +0000 | [diff] [blame] | 655 | #endif |
| 656 | #ifdef EPOLLWRNORM |
Roland McGrath | 93817bf | 2004-10-06 22:23:31 +0000 | [diff] [blame] | 657 | { EPOLLWRNORM, "EPOLLWRNORM" }, |
Roland McGrath | 63d6e54 | 2004-10-20 02:17:41 +0000 | [diff] [blame] | 658 | #endif |
| 659 | #ifdef EPOLLWRBAND |
Roland McGrath | 93817bf | 2004-10-06 22:23:31 +0000 | [diff] [blame] | 660 | { EPOLLWRBAND, "EPOLLWRBAND" }, |
Roland McGrath | 63d6e54 | 2004-10-20 02:17:41 +0000 | [diff] [blame] | 661 | #endif |
| 662 | #ifdef EPOLLMSG |
Roland McGrath | 93817bf | 2004-10-06 22:23:31 +0000 | [diff] [blame] | 663 | { EPOLLMSG, "EPOLLMSG" }, |
Roland McGrath | 63d6e54 | 2004-10-20 02:17:41 +0000 | [diff] [blame] | 664 | #endif |
| 665 | #ifdef EPOLLERR |
Roland McGrath | 93817bf | 2004-10-06 22:23:31 +0000 | [diff] [blame] | 666 | { EPOLLERR, "EPOLLERR" }, |
Roland McGrath | 63d6e54 | 2004-10-20 02:17:41 +0000 | [diff] [blame] | 667 | #endif |
| 668 | #ifdef EPOLLHUP |
Roland McGrath | 93817bf | 2004-10-06 22:23:31 +0000 | [diff] [blame] | 669 | { EPOLLHUP, "EPOLLHUP" }, |
Roland McGrath | 63d6e54 | 2004-10-20 02:17:41 +0000 | [diff] [blame] | 670 | #endif |
| 671 | #ifdef EPOLLONESHOT |
Roland McGrath | 93817bf | 2004-10-06 22:23:31 +0000 | [diff] [blame] | 672 | { EPOLLONESHOT, "EPOLLONESHOT" }, |
Roland McGrath | 63d6e54 | 2004-10-20 02:17:41 +0000 | [diff] [blame] | 673 | #endif |
| 674 | #ifdef EPOLLET |
Roland McGrath | 93817bf | 2004-10-06 22:23:31 +0000 | [diff] [blame] | 675 | { EPOLLET, "EPOLLET" }, |
Roland McGrath | 63d6e54 | 2004-10-20 02:17:41 +0000 | [diff] [blame] | 676 | #endif |
Roland McGrath | 93817bf | 2004-10-06 22:23:31 +0000 | [diff] [blame] | 677 | { 0, NULL } |
| 678 | }; |
| 679 | |
| 680 | int |
Dmitry V. Levin | 4371b10 | 2008-11-10 22:53:02 +0000 | [diff] [blame] | 681 | sys_epoll_create(struct tcb *tcp) |
Roland McGrath | 93817bf | 2004-10-06 22:23:31 +0000 | [diff] [blame] | 682 | { |
| 683 | if (entering(tcp)) |
| 684 | tprintf("%ld", tcp->u_arg[0]); |
| 685 | return 0; |
| 686 | } |
| 687 | |
Dmitry V. Levin | 4371b10 | 2008-11-10 22:53:02 +0000 | [diff] [blame] | 688 | int |
| 689 | sys_epoll_create1(struct tcb *tcp) |
| 690 | { |
| 691 | if (entering(tcp)) |
| 692 | printflags(open_mode_flags, tcp->u_arg[0], "O_???"); |
| 693 | return 0; |
| 694 | } |
| 695 | |
Roland McGrath | 63d6e54 | 2004-10-20 02:17:41 +0000 | [diff] [blame] | 696 | #ifdef HAVE_SYS_EPOLL_H |
Roland McGrath | 93817bf | 2004-10-06 22:23:31 +0000 | [diff] [blame] | 697 | static void |
Denys Vlasenko | 30b5e5a | 2009-01-06 15:12:52 +0000 | [diff] [blame] | 698 | print_epoll_event(struct epoll_event *ev) |
Roland McGrath | 93817bf | 2004-10-06 22:23:31 +0000 | [diff] [blame] | 699 | { |
| 700 | tprintf("{"); |
Roland McGrath | b2dee13 | 2005-06-01 19:02:36 +0000 | [diff] [blame] | 701 | printflags(epollevents, ev->events, "EPOLL???"); |
Roland McGrath | 93817bf | 2004-10-06 22:23:31 +0000 | [diff] [blame] | 702 | /* We cannot know what format the program uses, so print u32 and u64 |
| 703 | which will cover every value. */ |
| 704 | tprintf(", {u32=%" PRIu32 ", u64=%" PRIu64 "}}", |
| 705 | ev->data.u32, ev->data.u64); |
| 706 | } |
Roland McGrath | 63d6e54 | 2004-10-20 02:17:41 +0000 | [diff] [blame] | 707 | #endif |
Roland McGrath | 93817bf | 2004-10-06 22:23:31 +0000 | [diff] [blame] | 708 | |
| 709 | int |
Denys Vlasenko | 30b5e5a | 2009-01-06 15:12:52 +0000 | [diff] [blame] | 710 | sys_epoll_ctl(struct tcb *tcp) |
Roland McGrath | 93817bf | 2004-10-06 22:23:31 +0000 | [diff] [blame] | 711 | { |
| 712 | if (entering(tcp)) { |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 713 | printfd(tcp, tcp->u_arg[0]); |
| 714 | tprintf(", "); |
Denys Vlasenko | adedb51 | 2008-12-30 18:47:55 +0000 | [diff] [blame] | 715 | printxval(epollctls, tcp->u_arg[1], "EPOLL_CTL_???"); |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 716 | tprintf(", "); |
| 717 | printfd(tcp, tcp->u_arg[2]); |
| 718 | tprintf(", "); |
Roland McGrath | 93817bf | 2004-10-06 22:23:31 +0000 | [diff] [blame] | 719 | if (tcp->u_arg[3] == 0) |
| 720 | tprintf("NULL"); |
Roland McGrath | 63d6e54 | 2004-10-20 02:17:41 +0000 | [diff] [blame] | 721 | else { |
| 722 | #ifdef HAVE_SYS_EPOLL_H |
| 723 | struct epoll_event ev; |
Roland McGrath | 6e52d23 | 2004-10-20 02:17:41 +0000 | [diff] [blame] | 724 | if (umove(tcp, tcp->u_arg[3], &ev) == 0) |
Roland McGrath | 63d6e54 | 2004-10-20 02:17:41 +0000 | [diff] [blame] | 725 | print_epoll_event(&ev); |
| 726 | else |
| 727 | #endif |
| 728 | tprintf("{...}"); |
| 729 | } |
Roland McGrath | 93817bf | 2004-10-06 22:23:31 +0000 | [diff] [blame] | 730 | } |
| 731 | return 0; |
| 732 | } |
| 733 | |
Roland McGrath | f240005 | 2007-08-02 01:13:26 +0000 | [diff] [blame] | 734 | static void |
Denys Vlasenko | 30b5e5a | 2009-01-06 15:12:52 +0000 | [diff] [blame] | 735 | epoll_wait_common(struct tcb *tcp) |
Roland McGrath | 93817bf | 2004-10-06 22:23:31 +0000 | [diff] [blame] | 736 | { |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 737 | if (entering(tcp)) { |
| 738 | printfd(tcp, tcp->u_arg[0]); |
| 739 | tprintf(", "); |
| 740 | } else { |
Roland McGrath | 93817bf | 2004-10-06 22:23:31 +0000 | [diff] [blame] | 741 | if (syserror(tcp)) |
| 742 | tprintf("%lx", tcp->u_arg[1]); |
| 743 | else if (tcp->u_rval == 0) |
| 744 | tprintf("{}"); |
| 745 | else { |
Roland McGrath | 63d6e54 | 2004-10-20 02:17:41 +0000 | [diff] [blame] | 746 | #ifdef HAVE_SYS_EPOLL_H |
Roland McGrath | aa524c8 | 2005-06-01 19:22:06 +0000 | [diff] [blame] | 747 | struct epoll_event ev, *start, *cur, *end; |
| 748 | int failed = 0; |
| 749 | |
| 750 | tprintf("{"); |
| 751 | start = (struct epoll_event *) tcp->u_arg[1]; |
| 752 | end = start + tcp->u_rval; |
| 753 | for (cur = start; cur < end; ++cur) { |
| 754 | if (cur > start) |
| 755 | tprintf(", "); |
| 756 | if (umove(tcp, (long) cur, &ev) == 0) |
| 757 | print_epoll_event(&ev); |
| 758 | else { |
| 759 | tprintf("?"); |
| 760 | failed = 1; |
| 761 | break; |
Roland McGrath | 93817bf | 2004-10-06 22:23:31 +0000 | [diff] [blame] | 762 | } |
Roland McGrath | 93817bf | 2004-10-06 22:23:31 +0000 | [diff] [blame] | 763 | } |
Roland McGrath | aa524c8 | 2005-06-01 19:22:06 +0000 | [diff] [blame] | 764 | tprintf("}"); |
| 765 | if (failed) |
| 766 | tprintf(" %#lx", (long) start); |
| 767 | #else |
| 768 | tprintf("{...}"); |
Roland McGrath | 63d6e54 | 2004-10-20 02:17:41 +0000 | [diff] [blame] | 769 | #endif |
Roland McGrath | 93817bf | 2004-10-06 22:23:31 +0000 | [diff] [blame] | 770 | } |
| 771 | tprintf(", %ld, %ld", tcp->u_arg[2], tcp->u_arg[3]); |
| 772 | } |
Roland McGrath | f240005 | 2007-08-02 01:13:26 +0000 | [diff] [blame] | 773 | } |
| 774 | |
| 775 | int |
Denys Vlasenko | 30b5e5a | 2009-01-06 15:12:52 +0000 | [diff] [blame] | 776 | sys_epoll_wait(struct tcb *tcp) |
Roland McGrath | f240005 | 2007-08-02 01:13:26 +0000 | [diff] [blame] | 777 | { |
| 778 | epoll_wait_common(tcp); |
| 779 | return 0; |
| 780 | } |
| 781 | |
| 782 | int |
Denys Vlasenko | 30b5e5a | 2009-01-06 15:12:52 +0000 | [diff] [blame] | 783 | sys_epoll_pwait(struct tcb *tcp) |
Roland McGrath | f240005 | 2007-08-02 01:13:26 +0000 | [diff] [blame] | 784 | { |
| 785 | epoll_wait_common(tcp); |
Dmitry V. Levin | 9676499 | 2010-04-06 23:54:18 +0000 | [diff] [blame] | 786 | if (exiting(tcp)) { |
| 787 | tprintf(", "); |
Roland McGrath | f240005 | 2007-08-02 01:13:26 +0000 | [diff] [blame] | 788 | print_sigset(tcp, tcp->u_arg[4], 0); |
Dmitry V. Levin | 9676499 | 2010-04-06 23:54:18 +0000 | [diff] [blame] | 789 | } |
Roland McGrath | 93817bf | 2004-10-06 22:23:31 +0000 | [diff] [blame] | 790 | return 0; |
| 791 | } |
Roland McGrath | 37b9f84 | 2005-05-09 08:02:00 +0000 | [diff] [blame] | 792 | |
| 793 | int |
Denys Vlasenko | 30b5e5a | 2009-01-06 15:12:52 +0000 | [diff] [blame] | 794 | sys_io_setup(struct tcb *tcp) |
Roland McGrath | 37b9f84 | 2005-05-09 08:02:00 +0000 | [diff] [blame] | 795 | { |
| 796 | if (entering(tcp)) |
| 797 | tprintf("%ld, ", tcp->u_arg[0]); |
| 798 | else { |
| 799 | if (syserror(tcp)) |
| 800 | tprintf("0x%0lx", tcp->u_arg[1]); |
| 801 | else { |
| 802 | unsigned long user_id; |
| 803 | if (umove(tcp, tcp->u_arg[1], &user_id) == 0) |
| 804 | tprintf("{%lu}", user_id); |
| 805 | else |
| 806 | tprintf("{...}"); |
| 807 | } |
| 808 | } |
| 809 | return 0; |
| 810 | } |
| 811 | |
| 812 | int |
Denys Vlasenko | 30b5e5a | 2009-01-06 15:12:52 +0000 | [diff] [blame] | 813 | sys_io_destroy(struct tcb *tcp) |
Roland McGrath | 37b9f84 | 2005-05-09 08:02:00 +0000 | [diff] [blame] | 814 | { |
| 815 | if (entering(tcp)) |
| 816 | tprintf("%lu", tcp->u_arg[0]); |
| 817 | return 0; |
| 818 | } |
| 819 | |
Dmitry V. Levin | 081e72f | 2011-06-21 15:11:57 +0000 | [diff] [blame] | 820 | #ifdef HAVE_LIBAIO_H |
| 821 | |
Andi Kleen | dfcd741 | 2011-06-13 22:05:44 +0000 | [diff] [blame] | 822 | enum iocb_sub { |
| 823 | SUB_NONE, SUB_COMMON, SUB_POLL, SUB_VECTOR |
| 824 | }; |
| 825 | |
| 826 | static const char * |
| 827 | iocb_cmd_lookup(unsigned cmd, enum iocb_sub *sub) |
| 828 | { |
Denys Vlasenko | 7999262 | 2011-08-19 19:44:17 +0200 | [diff] [blame] | 829 | static char buf[sizeof("%u /* SUB_??? */") + sizeof(int)*3]; |
| 830 | static const struct { |
Andi Kleen | dfcd741 | 2011-06-13 22:05:44 +0000 | [diff] [blame] | 831 | const char *name; |
| 832 | enum iocb_sub sub; |
| 833 | } cmds[] = { |
| 834 | { "pread", SUB_COMMON }, |
| 835 | { "pwrite", SUB_COMMON }, |
| 836 | { "fsync", SUB_NONE }, |
| 837 | { "fdsync", SUB_NONE }, |
| 838 | { "op4", SUB_NONE }, |
| 839 | { "poll", SUB_POLL }, |
| 840 | { "noop", SUB_NONE }, |
| 841 | { "preadv", SUB_VECTOR }, |
| 842 | { "pwritev", SUB_VECTOR }, |
| 843 | }; |
| 844 | |
| 845 | if (cmd < ARRAY_SIZE(cmds)) { |
| 846 | *sub = cmds[cmd].sub; |
| 847 | return cmds[cmd].name; |
| 848 | } |
| 849 | *sub = SUB_NONE; |
Denys Vlasenko | 7999262 | 2011-08-19 19:44:17 +0200 | [diff] [blame] | 850 | sprintf(buf, "%u /* SUB_??? */", cmd); |
Andi Kleen | dfcd741 | 2011-06-13 22:05:44 +0000 | [diff] [blame] | 851 | return buf; |
| 852 | } |
| 853 | |
| 854 | /* Not defined in libaio.h */ |
| 855 | #ifndef IOCB_RESFD |
| 856 | # define IOCB_RESFD (1 << 0) |
| 857 | #endif |
| 858 | |
| 859 | static void |
| 860 | print_common_flags(struct iocb *iocb) |
| 861 | { |
| 862 | if (iocb->u.c.flags & IOCB_RESFD) |
| 863 | tprintf("resfd=%d, ", iocb->u.c.resfd); |
| 864 | if (iocb->u.c.flags & ~IOCB_RESFD) |
| 865 | tprintf("flags=%x, ", iocb->u.c.flags); |
| 866 | } |
Dmitry V. Levin | 081e72f | 2011-06-21 15:11:57 +0000 | [diff] [blame] | 867 | |
| 868 | #endif /* HAVE_LIBAIO_H */ |
| 869 | |
Roland McGrath | 37b9f84 | 2005-05-09 08:02:00 +0000 | [diff] [blame] | 870 | int |
Denys Vlasenko | 30b5e5a | 2009-01-06 15:12:52 +0000 | [diff] [blame] | 871 | sys_io_submit(struct tcb *tcp) |
Roland McGrath | 37b9f84 | 2005-05-09 08:02:00 +0000 | [diff] [blame] | 872 | { |
| 873 | long nr; |
| 874 | if (entering(tcp)) { |
| 875 | tprintf("%lu, %ld, ", tcp->u_arg[0], tcp->u_arg[1]); |
| 876 | nr = tcp->u_arg[1]; |
| 877 | /* and if nr is negative? */ |
| 878 | if (nr == 0) |
| 879 | tprintf("{}"); |
| 880 | else { |
| 881 | #ifdef HAVE_LIBAIO_H |
| 882 | long i; |
| 883 | struct iocb *iocbp, **iocbs = (void *)tcp->u_arg[2]; |
| 884 | |
| 885 | for (i = 0; i < nr; i++, iocbs++) { |
Andi Kleen | dfcd741 | 2011-06-13 22:05:44 +0000 | [diff] [blame] | 886 | enum iocb_sub sub; |
Roland McGrath | 37b9f84 | 2005-05-09 08:02:00 +0000 | [diff] [blame] | 887 | struct iocb iocb; |
| 888 | if (i == 0) |
| 889 | tprintf("{"); |
| 890 | else |
| 891 | tprintf(", "); |
| 892 | |
| 893 | if (umove(tcp, (unsigned long)iocbs, &iocbp) || |
| 894 | umove(tcp, (unsigned long)iocbp, &iocb)) { |
| 895 | tprintf("{...}"); |
| 896 | continue; |
| 897 | } |
Andi Kleen | dfcd741 | 2011-06-13 22:05:44 +0000 | [diff] [blame] | 898 | tprintf("{"); |
| 899 | if (iocb.data) |
| 900 | tprintf("data:%p, ", iocb.data); |
| 901 | if (iocb.key) |
| 902 | tprintf("key:%u, ", iocb.key); |
| 903 | tprintf("%s, ", iocb_cmd_lookup(iocb.aio_lio_opcode, &sub)); |
| 904 | if (iocb.aio_reqprio) |
| 905 | tprintf("reqprio:%d, ", iocb.aio_reqprio); |
| 906 | tprintf("filedes:%d", iocb.aio_fildes); |
| 907 | switch (sub) { |
| 908 | case SUB_COMMON: |
| 909 | if (iocb.aio_lio_opcode == IO_CMD_PWRITE) { |
| 910 | tprintf(", str:"); |
| 911 | printstr(tcp, (unsigned long)iocb.u.c.buf, |
| 912 | iocb.u.c.nbytes); |
| 913 | } else { |
| 914 | tprintf(", buf:%p", iocb.u.c.buf); |
| 915 | } |
| 916 | tprintf(", nbytes:%lu, offset:%llx", |
| 917 | iocb.u.c.nbytes, |
| 918 | iocb.u.c.offset); |
| 919 | print_common_flags(&iocb); |
| 920 | break; |
| 921 | case SUB_VECTOR: |
| 922 | tprintf(", %llx, ", iocb.u.v.offset); |
| 923 | print_common_flags(&iocb); |
| 924 | tprint_iov(tcp, iocb.u.v.nr, |
| 925 | (unsigned long)iocb.u.v.vec, |
| 926 | iocb.aio_lio_opcode == IO_CMD_PWRITEV); |
| 927 | break; |
| 928 | case SUB_POLL: |
| 929 | tprintf(", %x", iocb.u.poll.events); |
| 930 | break; |
| 931 | case SUB_NONE: |
| 932 | break; |
| 933 | } |
| 934 | tprintf("}"); |
Roland McGrath | 37b9f84 | 2005-05-09 08:02:00 +0000 | [diff] [blame] | 935 | } |
| 936 | if (i) |
| 937 | tprintf("}"); |
| 938 | #else |
Andi Kleen | dfcd741 | 2011-06-13 22:05:44 +0000 | [diff] [blame] | 939 | #warning "libaio-devel is not available => no io_submit decoding" |
| 940 | tprintf("%#lx", tcp->u_arg[2]); |
Roland McGrath | 37b9f84 | 2005-05-09 08:02:00 +0000 | [diff] [blame] | 941 | #endif |
| 942 | } |
| 943 | } |
| 944 | return 0; |
| 945 | } |
| 946 | |
| 947 | int |
Denys Vlasenko | 30b5e5a | 2009-01-06 15:12:52 +0000 | [diff] [blame] | 948 | sys_io_cancel(struct tcb *tcp) |
Roland McGrath | 37b9f84 | 2005-05-09 08:02:00 +0000 | [diff] [blame] | 949 | { |
| 950 | if (entering(tcp)) { |
| 951 | #ifdef HAVE_LIBAIO_H |
| 952 | struct iocb iocb; |
| 953 | #endif |
| 954 | tprintf("%lu, ", tcp->u_arg[0]); |
| 955 | #ifdef HAVE_LIBAIO_H |
| 956 | if (umove(tcp, tcp->u_arg[1], &iocb) == 0) { |
| 957 | tprintf("{%p, %u, %hu, %hu, %d}, ", |
| 958 | iocb.data, iocb.key, |
| 959 | iocb.aio_lio_opcode, |
| 960 | iocb.aio_reqprio, iocb.aio_fildes); |
| 961 | } else |
| 962 | #endif |
| 963 | tprintf("{...}, "); |
| 964 | } else { |
| 965 | if (tcp->u_rval < 0) |
| 966 | tprintf("{...}"); |
| 967 | else { |
| 968 | #ifdef HAVE_LIBAIO_H |
| 969 | struct io_event event; |
| 970 | if (umove(tcp, tcp->u_arg[2], &event) == 0) |
| 971 | tprintf("{%p, %p, %ld, %ld}", |
| 972 | event.data, event.obj, |
| 973 | event.res, event.res2); |
Dmitry V. Levin | 414fe7d | 2009-07-08 11:21:17 +0000 | [diff] [blame] | 974 | else |
Roland McGrath | 37b9f84 | 2005-05-09 08:02:00 +0000 | [diff] [blame] | 975 | #endif |
| 976 | tprintf("{...}"); |
| 977 | } |
| 978 | } |
| 979 | return 0; |
| 980 | } |
| 981 | |
| 982 | int |
Denys Vlasenko | 30b5e5a | 2009-01-06 15:12:52 +0000 | [diff] [blame] | 983 | sys_io_getevents(struct tcb *tcp) |
Roland McGrath | 37b9f84 | 2005-05-09 08:02:00 +0000 | [diff] [blame] | 984 | { |
| 985 | if (entering(tcp)) { |
| 986 | tprintf("%ld, %ld, %ld, ", tcp->u_arg[0], tcp->u_arg[1], |
| 987 | tcp->u_arg[2]); |
| 988 | } else { |
| 989 | if (tcp->u_rval == 0) { |
| 990 | tprintf("{}"); |
| 991 | } else { |
| 992 | #ifdef HAVE_LIBAIO_H |
| 993 | struct io_event *events = (void *)tcp->u_arg[3]; |
| 994 | long i, nr = tcp->u_rval; |
| 995 | |
| 996 | for (i = 0; i < nr; i++, events++) { |
| 997 | struct io_event event; |
| 998 | |
| 999 | if (i == 0) |
| 1000 | tprintf("{"); |
| 1001 | else |
| 1002 | tprintf(", "); |
| 1003 | |
| 1004 | if (umove(tcp, (unsigned long)events, &event) != 0) { |
| 1005 | tprintf("{...}"); |
| 1006 | continue; |
| 1007 | } |
| 1008 | tprintf("{%p, %p, %ld, %ld}", event.data, |
| 1009 | event.obj, event.res, event.res2); |
| 1010 | } |
| 1011 | tprintf("}, "); |
| 1012 | #else |
| 1013 | tprintf("{...}"); |
| 1014 | #endif |
| 1015 | } |
| 1016 | |
Roland McGrath | 6bc09da | 2007-11-01 21:50:54 +0000 | [diff] [blame] | 1017 | print_timespec(tcp, tcp->u_arg[4]); |
Roland McGrath | 37b9f84 | 2005-05-09 08:02:00 +0000 | [diff] [blame] | 1018 | } |
| 1019 | return 0; |
| 1020 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1021 | #endif /* LINUX */ |
| 1022 | |
| 1023 | int |
Denys Vlasenko | 30b5e5a | 2009-01-06 15:12:52 +0000 | [diff] [blame] | 1024 | sys_select(struct tcb *tcp) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1025 | { |
Dmitry V. Levin | a7945a3 | 2006-12-13 17:10:11 +0000 | [diff] [blame] | 1026 | return decode_select(tcp, tcp->u_arg, BITNESS_CURRENT); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1027 | } |
Dmitry V. Levin | 95ebf5a | 2006-10-13 20:25:12 +0000 | [diff] [blame] | 1028 | |
| 1029 | #ifdef LINUX |
| 1030 | int |
| 1031 | sys_pselect6(struct tcb *tcp) |
| 1032 | { |
Dmitry V. Levin | a7945a3 | 2006-12-13 17:10:11 +0000 | [diff] [blame] | 1033 | int rc = decode_select(tcp, tcp->u_arg, BITNESS_CURRENT); |
Roland McGrath | fe10aa7 | 2007-11-01 21:52:20 +0000 | [diff] [blame] | 1034 | if (entering(tcp)) { |
Dmitry V. Levin | 95ebf5a | 2006-10-13 20:25:12 +0000 | [diff] [blame] | 1035 | struct { |
| 1036 | void *ss; |
| 1037 | unsigned long len; |
| 1038 | } data; |
| 1039 | if (umove(tcp, tcp->u_arg[5], &data) < 0) |
| 1040 | tprintf(", %#lx", tcp->u_arg[5]); |
| 1041 | else { |
| 1042 | tprintf(", {"); |
Roland McGrath | fe10aa7 | 2007-11-01 21:52:20 +0000 | [diff] [blame] | 1043 | if (data.len < sizeof(long)) |
Dmitry V. Levin | 95ebf5a | 2006-10-13 20:25:12 +0000 | [diff] [blame] | 1044 | tprintf("%#lx", (long)data.ss); |
| 1045 | else |
| 1046 | print_sigset(tcp, (long)data.ss, 0); |
| 1047 | tprintf(", %lu}", data.len); |
| 1048 | } |
| 1049 | } |
| 1050 | return rc; |
| 1051 | } |
Roland McGrath | e7c3967 | 2007-08-02 01:32:17 +0000 | [diff] [blame] | 1052 | |
Dmitry V. Levin | 4371b10 | 2008-11-10 22:53:02 +0000 | [diff] [blame] | 1053 | static int |
| 1054 | do_eventfd(struct tcb *tcp, int flags_arg) |
Roland McGrath | e7c3967 | 2007-08-02 01:32:17 +0000 | [diff] [blame] | 1055 | { |
Dmitry V. Levin | 4371b10 | 2008-11-10 22:53:02 +0000 | [diff] [blame] | 1056 | if (entering(tcp)) { |
Roland McGrath | e7c3967 | 2007-08-02 01:32:17 +0000 | [diff] [blame] | 1057 | tprintf("%lu", tcp->u_arg[0]); |
Dmitry V. Levin | 4371b10 | 2008-11-10 22:53:02 +0000 | [diff] [blame] | 1058 | if (flags_arg >= 0) { |
| 1059 | tprintf(", "); |
| 1060 | printflags(open_mode_flags, tcp->u_arg[flags_arg], "O_???"); |
| 1061 | } |
| 1062 | } |
Roland McGrath | e7c3967 | 2007-08-02 01:32:17 +0000 | [diff] [blame] | 1063 | return 0; |
| 1064 | } |
Dmitry V. Levin | 4371b10 | 2008-11-10 22:53:02 +0000 | [diff] [blame] | 1065 | |
| 1066 | int |
| 1067 | sys_eventfd(struct tcb *tcp) |
| 1068 | { |
| 1069 | return do_eventfd(tcp, -1); |
| 1070 | } |
| 1071 | |
| 1072 | int |
| 1073 | sys_eventfd2(struct tcb *tcp) |
| 1074 | { |
| 1075 | return do_eventfd(tcp, 1); |
| 1076 | } |
Dmitry V. Levin | 95ebf5a | 2006-10-13 20:25:12 +0000 | [diff] [blame] | 1077 | #endif |