2015-12-17 17:56:48 +00:00
/*
* Copyright ( c ) 2015 Dmitry V . Levin < ldv @ altlinux . org >
2018-02-13 22:00:00 +00:00
* Copyright ( c ) 2014 - 2018 The strace developers .
2015-12-17 17:56:48 +00:00
* All rights reserved .
*
* Redistribution and use in source and binary forms , with or without
* modification , are permitted provided that the following conditions
* are met :
* 1. Redistributions of source code must retain the above copyright
* notice , this list of conditions and the following disclaimer .
* 2. Redistributions in binary form must reproduce the above copyright
* notice , this list of conditions and the following disclaimer in the
* documentation and / or other materials provided with the distribution .
* 3. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission .
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ` ` AS IS ' ' AND ANY EXPRESS OR
* IMPLIED WARRANTIES , INCLUDING , BUT NOT LIMITED TO , THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED .
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT , INDIRECT ,
* INCIDENTAL , SPECIAL , EXEMPLARY , OR CONSEQUENTIAL DAMAGES ( INCLUDING , BUT
* NOT LIMITED TO , PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES ; LOSS OF USE ,
* DATA , OR PROFITS ; OR BUSINESS INTERRUPTION ) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY , WHETHER IN CONTRACT , STRICT LIABILITY , OR TORT
* ( INCLUDING NEGLIGENCE OR OTHERWISE ) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE , EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE .
*/
2014-02-05 17:27:43 +00:00
# include "defs.h"
2018-01-05 03:51:19 +01:00
# include "xstring.h"
2014-02-05 17:27:43 +00:00
enum {
IOPRIO_WHO_PROCESS = 1 ,
IOPRIO_WHO_PGRP ,
IOPRIO_WHO_USER
} ;
2014-04-25 23:30:54 +00:00
# include "xlat/ioprio_who.h"
2014-02-05 17:27:43 +00:00
enum {
IOPRIO_CLASS_NONE ,
IOPRIO_CLASS_RT ,
IOPRIO_CLASS_BE ,
IOPRIO_CLASS_IDLE
} ;
2014-04-25 23:30:54 +00:00
# include "xlat/ioprio_class.h"
2014-02-05 17:27:43 +00:00
# define IOPRIO_CLASS_SHIFT (13)
# define IOPRIO_PRIO_MASK ((1ul << IOPRIO_CLASS_SHIFT) - 1)
# define IOPRIO_PRIO_CLASS(mask) ((mask) >> IOPRIO_CLASS_SHIFT)
# define IOPRIO_PRIO_DATA(mask) ((mask) & IOPRIO_PRIO_MASK)
static const char *
2016-05-14 21:46:05 +00:00
sprint_ioprio ( unsigned int ioprio )
2014-02-05 17:27:43 +00:00
{
static char outstr [ 256 ] ;
2018-04-04 14:19:50 +02:00
char class_buf [ 64 ] ;
2016-05-14 21:46:05 +00:00
unsigned int class , data ;
2014-02-05 17:27:43 +00:00
class = IOPRIO_PRIO_CLASS ( ioprio ) ;
data = IOPRIO_PRIO_DATA ( ioprio ) ;
2018-04-04 14:19:50 +02:00
sprintxval ( class_buf , sizeof ( class_buf ) , ioprio_class , class ,
" IOPRIO_CLASS_??? " ) ;
xsprintf ( outstr , " IOPRIO_PRIO_VALUE(%s, %d) " , class_buf , data ) ;
2014-02-05 17:27:43 +00:00
return outstr ;
}
2015-04-07 01:36:50 +00:00
SYS_FUNC ( ioprio_get )
2014-02-05 17:27:43 +00:00
{
if ( entering ( tcp ) ) {
/* int which */
printxval ( ioprio_who , tcp - > u_arg [ 0 ] , " IOPRIO_WHO_??? " ) ;
/* int who */
tprintf ( " , %d " , ( int ) tcp - > u_arg [ 1 ] ) ;
return 0 ;
} else {
if ( syserror ( tcp ) )
return 0 ;
tcp - > auxstr = sprint_ioprio ( tcp - > u_rval ) ;
return RVAL_STR ;
}
}
2015-04-07 01:36:50 +00:00
SYS_FUNC ( ioprio_set )
2014-02-05 17:27:43 +00:00
{
2015-07-20 10:42:49 +00:00
/* int which */
printxval ( ioprio_who , tcp - > u_arg [ 0 ] , " IOPRIO_WHO_??? " ) ;
/* int who */
tprintf ( " , %d, " , ( int ) tcp - > u_arg [ 1 ] ) ;
/* int ioprio */
tprints ( sprint_ioprio ( tcp - > u_arg [ 2 ] ) ) ;
return RVAL_DECODED ;
2014-02-05 17:27:43 +00:00
}