Dmitry V. Levin | 38a34c9 | 2015-12-17 17:56:48 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2015 Dmitry V. Levin <ldv@altlinux.org> |
Elliott Hughes | b755614 | 2018-02-20 17:03:16 -0800 | [diff] [blame] | 3 | * Copyright (c) 2014-2018 The strace developers. |
Dmitry V. Levin | 38a34c9 | 2015-12-17 17:56:48 +0000 | [diff] [blame] | 4 | * 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 | |
Dmitry V. Levin | fc4727d | 2014-02-05 17:27:43 +0000 | [diff] [blame] | 29 | #include "defs.h" |
Elliott Hughes | b755614 | 2018-02-20 17:03:16 -0800 | [diff] [blame] | 30 | #include "xstring.h" |
Dmitry V. Levin | fc4727d | 2014-02-05 17:27:43 +0000 | [diff] [blame] | 31 | |
Dmitry V. Levin | 0ed617b | 2014-04-25 23:30:54 +0000 | [diff] [blame] | 32 | #include "xlat/ioprio_who.h" |
Dmitry V. Levin | 0ed617b | 2014-04-25 23:30:54 +0000 | [diff] [blame] | 33 | #include "xlat/ioprio_class.h" |
Dmitry V. Levin | fc4727d | 2014-02-05 17:27:43 +0000 | [diff] [blame] | 34 | |
| 35 | #define IOPRIO_CLASS_SHIFT (13) |
| 36 | #define IOPRIO_PRIO_MASK ((1ul << IOPRIO_CLASS_SHIFT) - 1) |
| 37 | |
| 38 | #define IOPRIO_PRIO_CLASS(mask) ((mask) >> IOPRIO_CLASS_SHIFT) |
| 39 | #define IOPRIO_PRIO_DATA(mask) ((mask) & IOPRIO_PRIO_MASK) |
| 40 | |
| 41 | static const char * |
Dmitry V. Levin | 9134aab | 2016-05-14 21:46:05 +0000 | [diff] [blame] | 42 | sprint_ioprio(unsigned int ioprio) |
Dmitry V. Levin | fc4727d | 2014-02-05 17:27:43 +0000 | [diff] [blame] | 43 | { |
| 44 | static char outstr[256]; |
Elliott Hughes | 03a418e | 2018-06-15 13:11:40 -0700 | [diff] [blame] | 45 | char class_buf[64]; |
Dmitry V. Levin | 9134aab | 2016-05-14 21:46:05 +0000 | [diff] [blame] | 46 | unsigned int class, data; |
Dmitry V. Levin | fc4727d | 2014-02-05 17:27:43 +0000 | [diff] [blame] | 47 | |
| 48 | class = IOPRIO_PRIO_CLASS(ioprio); |
| 49 | data = IOPRIO_PRIO_DATA(ioprio); |
Elliott Hughes | 03a418e | 2018-06-15 13:11:40 -0700 | [diff] [blame] | 50 | sprintxval(class_buf, sizeof(class_buf), ioprio_class, class, |
| 51 | "IOPRIO_CLASS_???"); |
| 52 | xsprintf(outstr, "IOPRIO_PRIO_VALUE(%s, %d)", class_buf, data); |
Dmitry V. Levin | fc4727d | 2014-02-05 17:27:43 +0000 | [diff] [blame] | 53 | |
| 54 | return outstr; |
| 55 | } |
| 56 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 57 | SYS_FUNC(ioprio_get) |
Dmitry V. Levin | fc4727d | 2014-02-05 17:27:43 +0000 | [diff] [blame] | 58 | { |
| 59 | if (entering(tcp)) { |
| 60 | /* int which */ |
| 61 | printxval(ioprio_who, tcp->u_arg[0], "IOPRIO_WHO_???"); |
| 62 | /* int who */ |
| 63 | tprintf(", %d", (int) tcp->u_arg[1]); |
| 64 | return 0; |
| 65 | } else { |
| 66 | if (syserror(tcp)) |
| 67 | return 0; |
| 68 | |
| 69 | tcp->auxstr = sprint_ioprio(tcp->u_rval); |
| 70 | return RVAL_STR; |
| 71 | } |
| 72 | } |
| 73 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 74 | SYS_FUNC(ioprio_set) |
Dmitry V. Levin | fc4727d | 2014-02-05 17:27:43 +0000 | [diff] [blame] | 75 | { |
Dmitry V. Levin | a58ad74 | 2015-07-20 10:42:49 +0000 | [diff] [blame] | 76 | /* int which */ |
| 77 | printxval(ioprio_who, tcp->u_arg[0], "IOPRIO_WHO_???"); |
| 78 | /* int who */ |
| 79 | tprintf(", %d, ", (int) tcp->u_arg[1]); |
| 80 | /* int ioprio */ |
| 81 | tprints(sprint_ioprio(tcp->u_arg[2])); |
| 82 | |
| 83 | return RVAL_DECODED; |
Dmitry V. Levin | fc4727d | 2014-02-05 17:27:43 +0000 | [diff] [blame] | 84 | } |