2013-11-11 19:06:18 +04:00
/*
* Copyright ( c ) 1991 , 1992 Paul Kranenburg < pk @ cs . few . eur . nl >
* Copyright ( c ) 1993 Branko Lankester < branko @ hacktic . nl >
* Copyright ( c ) 1993 , 1994 , 1995 , 1996 Rick Sladkey < jrs @ world . std . com >
* Copyright ( c ) 1996 - 1999 Wichert Akkerman < wichert @ cistron . nl >
* 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 .
*/
# include "defs.h"
2015-08-26 20:48:40 +03:00
# include <linux/aio_abi.h>
2013-11-11 19:06:18 +04:00
2015-04-07 04:36:50 +03:00
SYS_FUNC ( io_setup )
2013-11-11 19:06:18 +04:00
{
if ( entering ( tcp ) )
2015-08-18 18:02:20 +03:00
tprintf ( " %u, " , ( unsigned int ) tcp - > u_arg [ 0 ] ) ;
2015-07-20 21:40:46 +03:00
else
Fix printing tracee's long integers
Replace ambiguous printnum_long that used to fetch native long integers
from tracee's memory with printnum_ptr, printnum_slong, and printnum_ulong
that fetch tracee's pointer, signed long, and unsigned long integers.
* defs.h (printnum_long, printpair_long): Remove prototypes.
(printnum_int64, printpair_int64): Remove macros, declare functions
unconditionally.
[SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4] (printnum_long_int):
New prototype.
(printnum_ptr, printnum_slong, printnum_ulong): New macros.
* aio.c (sys_io_setup): Use printnum_ulong.
* block.c (block_ioctl): Use printnum_slong and printnum_ulong.
* get_robust_list.c (sys_get_robust_list): Use printnum_ptr
and printnum_ulong.
* io.c (print_off_t): Remove.
(sys_sendfile): Use printnum_ulong.
* ipc.c (sys_semctl): Use printnum_ptr.
* prctl.c (sys_prctl): Likewise.
* process.c (sys_ptrace): Likewise.
* rtc.c (rtc_ioctl): Use printnum_ulong.
* util.c (printnum_long, printpair_long): Remove.
(printnum_int64, printpair_int64): Define unconditionally.
[SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4] (printnum_long_int):
New function.
Signed-off-by: Dmitry V. Levin <ldv@altlinux.org>
Signed-off-by: Elvira Khabirova <lineprinter0@gmail.com>
2015-08-18 17:58:27 +03:00
printnum_ulong ( tcp , tcp - > u_arg [ 1 ] ) ;
2013-11-11 19:06:18 +04:00
return 0 ;
}
2015-04-07 04:36:50 +03:00
SYS_FUNC ( io_destroy )
2013-11-11 19:06:18 +04:00
{
2015-07-20 21:40:46 +03:00
tprintf ( " %lu " , tcp - > u_arg [ 0 ] ) ;
return RVAL_DECODED ;
2013-11-11 19:06:18 +04:00
}
enum iocb_sub {
2015-08-26 20:48:40 +03:00
SUB_NONE , SUB_COMMON , SUB_VECTOR
2013-11-11 19:06:18 +04:00
} ;
static enum iocb_sub
tprint_lio_opcode ( unsigned cmd )
{
static const struct {
const char * name ;
enum iocb_sub sub ;
} cmds [ ] = {
{ " pread " , SUB_COMMON } ,
{ " pwrite " , SUB_COMMON } ,
{ " fsync " , SUB_NONE } ,
{ " fdsync " , SUB_NONE } ,
2015-08-26 20:48:40 +03:00
{ " preadx " , SUB_NONE } ,
{ " poll " , SUB_NONE } ,
2013-11-11 19:06:18 +04:00
{ " noop " , SUB_NONE } ,
{ " preadv " , SUB_VECTOR } ,
{ " pwritev " , SUB_VECTOR } ,
} ;
if ( cmd < ARRAY_SIZE ( cmds ) ) {
tprints ( cmds [ cmd ] . name ) ;
return cmds [ cmd ] . sub ;
}
tprintf ( " %u /* SUB_??? */ " , cmd ) ;
return SUB_NONE ;
}
static void
2015-08-26 20:48:40 +03:00
print_common_flags ( const struct iocb * cb )
2013-11-11 19:06:18 +04:00
{
2015-08-26 20:48:40 +03:00
/* IOCB_FLAG_RESFD is available since v2.6.22-rc1~47 */
# ifdef IOCB_FLAG_RESFD
if ( cb - > aio_flags & IOCB_FLAG_RESFD )
tprintf ( " , resfd=%d " , cb - > aio_resfd ) ;
if ( cb - > aio_flags & ~ IOCB_FLAG_RESFD )
tprintf ( " , flags=%x " , cb - > aio_flags ) ;
2014-09-08 19:20:10 +04:00
# endif
2013-11-11 19:06:18 +04:00
}
2015-08-26 20:48:40 +03:00
static bool
iocb_is_valid ( const struct iocb * cb )
{
return cb - > aio_buf = = ( unsigned long ) cb - > aio_buf & &
cb - > aio_nbytes = = ( size_t ) cb - > aio_nbytes & &
( ssize_t ) cb - > aio_nbytes > = 0 ;
}
static enum iocb_sub
print_iocb_header ( const struct iocb * cb )
{
enum iocb_sub sub ;
if ( cb - > aio_data )
tprintf ( " data=%# " PRIx64 " , " ,
( uint64_t ) cb - > aio_data ) ;
if ( cb - > aio_key )
tprintf ( " key=%u, " , cb - > aio_key ) ;
sub = tprint_lio_opcode ( cb - > aio_lio_opcode ) ;
if ( cb - > aio_reqprio )
tprintf ( " , reqprio=%hd " , cb - > aio_reqprio ) ;
tprintf ( " , fildes=%d " , cb - > aio_fildes ) ;
return sub ;
}
static void
print_iocb ( struct tcb * tcp , const struct iocb * cb )
{
enum iocb_sub sub = print_iocb_header ( cb ) ;
switch ( sub ) {
case SUB_COMMON :
if ( cb - > aio_lio_opcode = = 1 & & iocb_is_valid ( cb ) ) {
tprints ( " , str= " ) ;
printstr ( tcp , ( unsigned long ) cb - > aio_buf ,
( unsigned long ) cb - > aio_nbytes ) ;
} else {
tprintf ( " , buf=%# " PRIx64 , ( uint64_t ) cb - > aio_buf ) ;
}
tprintf ( " , nbytes=% " PRIu64 " , offset=% " PRId64 ,
( uint64_t ) cb - > aio_nbytes , ( int64_t ) cb - > aio_offset ) ;
print_common_flags ( cb ) ;
break ;
case SUB_VECTOR :
if ( iocb_is_valid ( cb ) ) {
tprints ( " , iovec= " ) ;
tprint_iov ( tcp , cb - > aio_nbytes , cb - > aio_buf ,
cb - > aio_lio_opcode = = 8 ) ;
} else {
tprintf ( " , buf=%# " PRIx64 " , nbytes=% " PRIu64 ,
( uint64_t ) cb - > aio_buf ,
( uint64_t ) cb - > aio_nbytes ) ;
}
tprintf ( " , offset=% " PRId64 , ( int64_t ) cb - > aio_offset ) ;
print_common_flags ( cb ) ;
break ;
case SUB_NONE :
break ;
}
}
2013-11-11 19:06:18 +04:00
2015-04-07 04:36:50 +03:00
SYS_FUNC ( io_submit )
2013-11-11 19:06:18 +04:00
{
2015-07-20 21:40:46 +03:00
long nr = tcp - > u_arg [ 1 ] ;
/* if nr <= 0, we end up printing just "[]" */
2015-08-26 20:48:40 +03:00
tprintf ( " %lu, %ld, [ " , tcp - > u_arg [ 0 ] , nr ) ;
2015-07-20 21:40:46 +03:00
{
long i ;
2015-08-26 15:49:07 +03:00
long iocbs = tcp - > u_arg [ 2 ] ;
2013-11-11 19:06:18 +04:00
2015-08-26 15:49:07 +03:00
for ( i = 0 ; i < nr ; + + i , iocbs + = current_wordsize ) {
2015-09-15 02:02:29 +03:00
unsigned long iocbp ;
2015-08-26 20:48:40 +03:00
struct iocb cb ;
2015-08-26 15:49:07 +03:00
2015-07-20 21:40:46 +03:00
if ( i )
tprints ( " , " ) ;
2013-11-11 19:06:18 +04:00
2015-09-15 02:02:29 +03:00
if ( umove_ulong_or_printaddr ( tcp , iocbs , & iocbp ) ) {
2015-08-26 15:49:07 +03:00
/*
* No point in trying to read the whole array
* because nr can be ridiculously large .
*/
2015-07-20 21:40:46 +03:00
break ;
}
2015-08-26 15:49:07 +03:00
2015-07-20 21:40:46 +03:00
tprints ( " { " ) ;
2015-08-26 20:48:40 +03:00
if ( ! umove_or_printaddr ( tcp , iocbp , & cb ) )
print_iocb ( tcp , & cb ) ;
2015-07-20 21:40:46 +03:00
tprints ( " } " ) ;
2013-11-11 19:06:18 +04:00
}
2015-07-20 21:40:46 +03:00
}
tprints ( " ] " ) ;
return RVAL_DECODED ;
}
static int
print_io_event ( struct tcb * tcp , const long addr )
{
struct io_event event ;
if ( umove_or_printaddr ( tcp , addr , & event ) )
return - 1 ;
2015-08-26 20:48:40 +03:00
tprintf ( " {data=%# " PRIx64 " , obj=%# " PRIx64
" , res=% " PRId64 " , res2=% " PRId64 " } " ,
( uint64_t ) event . data , ( uint64_t ) event . obj ,
( int64_t ) event . res , ( int64_t ) event . res2 ) ;
2013-11-11 19:06:18 +04:00
return 0 ;
}
2015-04-07 04:36:50 +03:00
SYS_FUNC ( io_cancel )
2013-11-11 19:06:18 +04:00
{
if ( entering ( tcp ) ) {
tprintf ( " %lu, " , tcp - > u_arg [ 0 ] ) ;
2015-08-26 20:48:40 +03:00
struct iocb cb ;
2015-07-20 21:40:46 +03:00
2015-08-26 20:48:40 +03:00
if ( ! umove_or_printaddr ( tcp , tcp - > u_arg [ 1 ] , & cb ) ) {
tprints ( " { " ) ;
print_iocb_header ( & cb ) ;
tprints ( " } " ) ;
2015-07-20 21:40:46 +03:00
}
2015-08-26 20:48:40 +03:00
tprints ( " , " ) ;
2013-11-11 19:06:18 +04:00
} else {
2015-07-20 21:40:46 +03:00
print_io_event ( tcp , tcp - > u_arg [ 2 ] ) ;
2013-11-11 19:06:18 +04:00
}
return 0 ;
}
2015-04-07 04:36:50 +03:00
SYS_FUNC ( io_getevents )
2013-11-11 19:06:18 +04:00
{
if ( entering ( tcp ) ) {
2015-08-26 19:15:46 +03:00
tprintf ( " %lu, %ld, %ld, " ,
tcp - > u_arg [ 0 ] , tcp - > u_arg [ 1 ] , tcp - > u_arg [ 2 ] ) ;
2013-11-11 19:06:18 +04:00
} else {
if ( tcp - > u_rval = = 0 ) {
2015-07-20 21:40:46 +03:00
tprints ( " [] " ) ;
2013-11-11 19:06:18 +04:00
} else {
struct io_event * events = ( void * ) tcp - > u_arg [ 3 ] ;
long i , nr = tcp - > u_rval ;
for ( i = 0 ; i < nr ; i + + , events + + ) {
if ( i = = 0 )
2015-07-20 21:40:46 +03:00
tprints ( " [ " ) ;
2013-11-11 19:06:18 +04:00
else
tprints ( " , " ) ;
2015-07-20 21:40:46 +03:00
if ( print_io_event ( tcp , ( long ) events ) )
break ;
2013-11-11 19:06:18 +04:00
}
2015-07-20 21:40:46 +03:00
tprints ( " ], " ) ;
2013-11-11 19:06:18 +04:00
}
2015-09-18 04:54:59 +03:00
/*
* Since the timeout parameter is read by the kernel
* on entering syscall , it has to be decoded the same way
* whether the syscall has failed or not .
*/
temporarily_clear_syserror ( tcp ) ;
2013-11-11 19:06:18 +04:00
print_timespec ( tcp , tcp - > u_arg [ 4 ] ) ;
2015-09-18 04:54:59 +03:00
restore_cleared_syserror ( tcp ) ;
2013-11-11 19:06:18 +04:00
}
return 0 ;
}