Dmitry V. Levin | 38a34c9 | 2015-12-17 17:56:48 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2002-2003 Roland McGrath <roland@redhat.com> |
| 3 | * Copyright (c) 2007-2008 Ulrich Drepper <drepper@redhat.com> |
| 4 | * Copyright (c) 2009 Andreas Schwab <schwab@redhat.com> |
| 5 | * Copyright (c) 2014-2015 Dmitry V. Levin <ldv@altlinux.org> |
Elliott Hughes | 03a418e | 2018-06-15 13:11:40 -0700 | [diff] [blame] | 6 | * Copyright (c) 2014-2018 The strace developers. |
Dmitry V. Levin | 38a34c9 | 2015-12-17 17:56:48 +0000 | [diff] [blame] | 7 | * All rights reserved. |
| 8 | * |
| 9 | * Redistribution and use in source and binary forms, with or without |
| 10 | * modification, are permitted provided that the following conditions |
| 11 | * are met: |
| 12 | * 1. Redistributions of source code must retain the above copyright |
| 13 | * notice, this list of conditions and the following disclaimer. |
| 14 | * 2. Redistributions in binary form must reproduce the above copyright |
| 15 | * notice, this list of conditions and the following disclaimer in the |
| 16 | * documentation and/or other materials provided with the distribution. |
| 17 | * 3. The name of the author may not be used to endorse or promote products |
| 18 | * derived from this software without specific prior written permission. |
| 19 | * |
| 20 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 21 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 22 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 23 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 24 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 25 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 26 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 27 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 28 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 29 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 30 | */ |
| 31 | |
Dmitry V. Levin | e314f80 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 32 | #include "defs.h" |
| 33 | |
Dmitry V. Levin | e314f80 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 34 | #ifndef FUTEX_PRIVATE_FLAG |
| 35 | # define FUTEX_PRIVATE_FLAG 128 |
| 36 | #endif |
| 37 | #ifndef FUTEX_CLOCK_REALTIME |
| 38 | # define FUTEX_CLOCK_REALTIME 256 |
| 39 | #endif |
Elliott Hughes | 03a418e | 2018-06-15 13:11:40 -0700 | [diff] [blame] | 40 | #ifndef FUTEX_OP_OPARG_SHIFT |
| 41 | # define FUTEX_OP_OPARG_SHIFT 8 |
| 42 | #endif |
Dmitry V. Levin | 003cc9f | 2015-06-17 19:00:17 +0000 | [diff] [blame] | 43 | |
Elliott Hughes | c187376 | 2018-12-19 15:13:36 -0800 | [diff] [blame] | 44 | #include "xlat/futexbitset.h" |
Dmitry V. Levin | e314f80 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 45 | #include "xlat/futexops.h" |
Dmitry V. Levin | e314f80 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 46 | #include "xlat/futexwakeops.h" |
| 47 | #include "xlat/futexwakecmps.h" |
| 48 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 49 | SYS_FUNC(futex) |
Dmitry V. Levin | e314f80 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 50 | { |
Elliott Hughes | d35df49 | 2017-02-15 15:19:05 -0800 | [diff] [blame] | 51 | const kernel_ulong_t uaddr = tcp->u_arg[0]; |
Dmitry V. Levin | b582109 | 2015-07-20 13:15:51 +0000 | [diff] [blame] | 52 | const int op = tcp->u_arg[1]; |
| 53 | const int cmd = op & 127; |
Elliott Hughes | d35df49 | 2017-02-15 15:19:05 -0800 | [diff] [blame] | 54 | const kernel_ulong_t timeout = tcp->u_arg[3]; |
| 55 | const kernel_ulong_t uaddr2 = tcp->u_arg[4]; |
Dmitry V. Levin | b582109 | 2015-07-20 13:15:51 +0000 | [diff] [blame] | 56 | const unsigned int val = tcp->u_arg[2]; |
| 57 | const unsigned int val2 = tcp->u_arg[3]; |
| 58 | const unsigned int val3 = tcp->u_arg[5]; |
Elliott Hughes | 39bac05 | 2017-05-25 16:56:11 -0700 | [diff] [blame] | 59 | const char *comment; |
Dmitry V. Levin | b582109 | 2015-07-20 13:15:51 +0000 | [diff] [blame] | 60 | |
| 61 | printaddr(uaddr); |
| 62 | tprints(", "); |
| 63 | printxval(futexops, op, "FUTEX_???"); |
Dmitry V. Levin | b582109 | 2015-07-20 13:15:51 +0000 | [diff] [blame] | 64 | switch (cmd) { |
| 65 | case FUTEX_WAIT: |
Eugene Syromyatnikov | 110da33 | 2016-08-30 00:01:45 +0300 | [diff] [blame] | 66 | tprintf(", %u", val); |
| 67 | tprints(", "); |
| 68 | print_timespec(tcp, timeout); |
| 69 | break; |
Dmitry V. Levin | b582109 | 2015-07-20 13:15:51 +0000 | [diff] [blame] | 70 | case FUTEX_LOCK_PI: |
| 71 | tprints(", "); |
Dmitry V. Levin | 5938526 | 2015-09-18 15:16:11 +0000 | [diff] [blame] | 72 | print_timespec(tcp, timeout); |
Dmitry V. Levin | b582109 | 2015-07-20 13:15:51 +0000 | [diff] [blame] | 73 | break; |
| 74 | case FUTEX_WAIT_BITSET: |
Eugene Syromyatnikov | 110da33 | 2016-08-30 00:01:45 +0300 | [diff] [blame] | 75 | tprintf(", %u", val); |
Dmitry V. Levin | b582109 | 2015-07-20 13:15:51 +0000 | [diff] [blame] | 76 | tprints(", "); |
Dmitry V. Levin | 5938526 | 2015-09-18 15:16:11 +0000 | [diff] [blame] | 77 | print_timespec(tcp, timeout); |
Elliott Hughes | c187376 | 2018-12-19 15:13:36 -0800 | [diff] [blame] | 78 | tprints(", "); |
| 79 | printxval(futexbitset, val3, NULL); |
Dmitry V. Levin | b582109 | 2015-07-20 13:15:51 +0000 | [diff] [blame] | 80 | break; |
| 81 | case FUTEX_WAKE_BITSET: |
Eugene Syromyatnikov | 110da33 | 2016-08-30 00:01:45 +0300 | [diff] [blame] | 82 | tprintf(", %u", val); |
Elliott Hughes | c187376 | 2018-12-19 15:13:36 -0800 | [diff] [blame] | 83 | tprints(", "); |
| 84 | printxval(futexbitset, val3, NULL); |
Dmitry V. Levin | b582109 | 2015-07-20 13:15:51 +0000 | [diff] [blame] | 85 | break; |
| 86 | case FUTEX_REQUEUE: |
Eugene Syromyatnikov | 110da33 | 2016-08-30 00:01:45 +0300 | [diff] [blame] | 87 | tprintf(", %u", val); |
Dmitry V. Levin | b582109 | 2015-07-20 13:15:51 +0000 | [diff] [blame] | 88 | tprintf(", %u, ", val2); |
| 89 | printaddr(uaddr2); |
| 90 | break; |
| 91 | case FUTEX_CMP_REQUEUE: |
| 92 | case FUTEX_CMP_REQUEUE_PI: |
Eugene Syromyatnikov | 110da33 | 2016-08-30 00:01:45 +0300 | [diff] [blame] | 93 | tprintf(", %u", val); |
Dmitry V. Levin | b582109 | 2015-07-20 13:15:51 +0000 | [diff] [blame] | 94 | tprintf(", %u, ", val2); |
| 95 | printaddr(uaddr2); |
| 96 | tprintf(", %u", val3); |
| 97 | break; |
| 98 | case FUTEX_WAKE_OP: |
Eugene Syromyatnikov | 110da33 | 2016-08-30 00:01:45 +0300 | [diff] [blame] | 99 | tprintf(", %u", val); |
Dmitry V. Levin | b582109 | 2015-07-20 13:15:51 +0000 | [diff] [blame] | 100 | tprintf(", %u, ", val2); |
| 101 | printaddr(uaddr2); |
Elliott Hughes | d35df49 | 2017-02-15 15:19:05 -0800 | [diff] [blame] | 102 | tprints(", "); |
Elliott Hughes | 03a418e | 2018-06-15 13:11:40 -0700 | [diff] [blame] | 103 | if ((val3 >> 28) & FUTEX_OP_OPARG_SHIFT) { |
| 104 | print_xlat(FUTEX_OP_OPARG_SHIFT); |
| 105 | tprints("<<28|"); |
| 106 | } |
Elliott Hughes | 39bac05 | 2017-05-25 16:56:11 -0700 | [diff] [blame] | 107 | comment = printxval(futexwakeops, (val3 >> 28) & 0x7, NULL) |
| 108 | ? NULL : "FUTEX_OP_???"; |
| 109 | tprints("<<28"); |
| 110 | tprints_comment(comment); |
Elliott Hughes | d35df49 | 2017-02-15 15:19:05 -0800 | [diff] [blame] | 111 | tprintf("|%#x<<12|", (val3 >> 12) & 0xfff); |
Elliott Hughes | 39bac05 | 2017-05-25 16:56:11 -0700 | [diff] [blame] | 112 | comment = printxval(futexwakecmps, (val3 >> 24) & 0xf, NULL) |
| 113 | ? NULL : "FUTEX_OP_CMP_???"; |
| 114 | tprints("<<24"); |
| 115 | tprints_comment(comment); |
Elliott Hughes | d35df49 | 2017-02-15 15:19:05 -0800 | [diff] [blame] | 116 | tprintf("|%#x", val3 & 0xfff); |
Dmitry V. Levin | b582109 | 2015-07-20 13:15:51 +0000 | [diff] [blame] | 117 | break; |
| 118 | case FUTEX_WAIT_REQUEUE_PI: |
Eugene Syromyatnikov | 110da33 | 2016-08-30 00:01:45 +0300 | [diff] [blame] | 119 | tprintf(", %u", val); |
Dmitry V. Levin | b582109 | 2015-07-20 13:15:51 +0000 | [diff] [blame] | 120 | tprints(", "); |
Dmitry V. Levin | 5938526 | 2015-09-18 15:16:11 +0000 | [diff] [blame] | 121 | print_timespec(tcp, timeout); |
Dmitry V. Levin | b582109 | 2015-07-20 13:15:51 +0000 | [diff] [blame] | 122 | tprints(", "); |
| 123 | printaddr(uaddr2); |
| 124 | break; |
Eugene Syromyatnikov | 3e0e105 | 2016-08-29 23:57:38 +0300 | [diff] [blame] | 125 | case FUTEX_FD: |
Dmitry V. Levin | b582109 | 2015-07-20 13:15:51 +0000 | [diff] [blame] | 126 | case FUTEX_WAKE: |
Eugene Syromyatnikov | 110da33 | 2016-08-30 00:01:45 +0300 | [diff] [blame] | 127 | tprintf(", %u", val); |
| 128 | break; |
Dmitry V. Levin | b582109 | 2015-07-20 13:15:51 +0000 | [diff] [blame] | 129 | case FUTEX_UNLOCK_PI: |
| 130 | case FUTEX_TRYLOCK_PI: |
| 131 | break; |
| 132 | default: |
Eugene Syromyatnikov | 110da33 | 2016-08-30 00:01:45 +0300 | [diff] [blame] | 133 | tprintf(", %u", val); |
Elliott Hughes | d35df49 | 2017-02-15 15:19:05 -0800 | [diff] [blame] | 134 | tprints(", "); |
| 135 | printaddr(timeout); |
Eugene Syromyatnikov | ebeae24 | 2016-08-29 23:59:01 +0300 | [diff] [blame] | 136 | tprints(", "); |
| 137 | printaddr(uaddr2); |
| 138 | tprintf(", %#x", val3); |
Dmitry V. Levin | b582109 | 2015-07-20 13:15:51 +0000 | [diff] [blame] | 139 | break; |
Dmitry V. Levin | e314f80 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 140 | } |
Dmitry V. Levin | b582109 | 2015-07-20 13:15:51 +0000 | [diff] [blame] | 141 | |
| 142 | return RVAL_DECODED; |
Dmitry V. Levin | e314f80 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 143 | } |