blob: a9d428890fbd79f0db25cec233db4c7e0f575d95 [file] [log] [blame]
Dmitry V. Levin38a34c92015-12-17 17:56:48 +00001/*
2 * Copyright (c) 2015 Dmitry V. Levin <ldv@altlinux.org>
Elliott Hughesb7556142018-02-20 17:03:16 -08003 * Copyright (c) 2014-2018 The strace developers.
Dmitry V. Levin38a34c92015-12-17 17:56:48 +00004 * 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. Levinfc4727d2014-02-05 17:27:43 +000029#include "defs.h"
Elliott Hughesb7556142018-02-20 17:03:16 -080030#include "xstring.h"
Dmitry V. Levinfc4727d2014-02-05 17:27:43 +000031
Dmitry V. Levin0ed617b2014-04-25 23:30:54 +000032#include "xlat/ioprio_who.h"
Dmitry V. Levin0ed617b2014-04-25 23:30:54 +000033#include "xlat/ioprio_class.h"
Dmitry V. Levinfc4727d2014-02-05 17:27:43 +000034
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
41static const char *
Dmitry V. Levin9134aab2016-05-14 21:46:05 +000042sprint_ioprio(unsigned int ioprio)
Dmitry V. Levinfc4727d2014-02-05 17:27:43 +000043{
44 static char outstr[256];
Elliott Hughes03a418e2018-06-15 13:11:40 -070045 char class_buf[64];
Dmitry V. Levin9134aab2016-05-14 21:46:05 +000046 unsigned int class, data;
Dmitry V. Levinfc4727d2014-02-05 17:27:43 +000047
48 class = IOPRIO_PRIO_CLASS(ioprio);
49 data = IOPRIO_PRIO_DATA(ioprio);
Elliott Hughes03a418e2018-06-15 13:11:40 -070050 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. Levinfc4727d2014-02-05 17:27:43 +000053
54 return outstr;
55}
56
Dmitry V. Levina0bd3742015-04-07 01:36:50 +000057SYS_FUNC(ioprio_get)
Dmitry V. Levinfc4727d2014-02-05 17:27:43 +000058{
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. Levina0bd3742015-04-07 01:36:50 +000074SYS_FUNC(ioprio_set)
Dmitry V. Levinfc4727d2014-02-05 17:27:43 +000075{
Dmitry V. Levina58ad742015-07-20 10:42:49 +000076 /* 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. Levinfc4727d2014-02-05 17:27:43 +000084}