2015-12-17 20:56:48 +03: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 >
* Copyright ( c ) 2005 - 2007 Roland McGrath < roland @ redhat . com >
* Copyright ( c ) 2006 - 2007 Ulrich Drepper < drepper @ redhat . com >
* Copyright ( c ) 2009 - 2013 Denys Vlasenko < dvlasenk @ redhat . com >
* Copyright ( c ) 2005 - 2015 Dmitry V . Levin < ldv @ altlinux . org >
2018-02-14 01:00:00 +03:00
* Copyright ( c ) 2014 - 2018 The strace developers .
2015-12-17 20:56:48 +03: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-12-06 06:53:16 +03:00
# include "defs.h"
2018-01-06 04:45:16 +03:00
# include "xstring.h"
2014-12-06 06:53:16 +03:00
2018-02-02 22:39:23 +03:00
# include <asm/fcntl.h>
2014-12-06 06:53:16 +03:00
2016-10-28 05:19:58 +03:00
/* some libcs are guilty of messing up with O_ACCMODE */
# undef O_ACCMODE
# define O_ACCMODE 03
2014-12-06 06:53:16 +03:00
# ifdef O_LARGEFILE
2017-06-18 01:23:09 +03:00
# if O_LARGEFILE == 0 /* biarch platforms in 64-bit mode */
2014-12-06 06:53:16 +03:00
# undef O_LARGEFILE
# endif
# endif
# include "xlat/open_access_modes.h"
# include "xlat/open_mode_flags.h"
# ifndef AT_FDCWD
2017-06-18 01:23:09 +03:00
# define AT_FDCWD -100
2014-12-06 06:53:16 +03:00
# endif
/* The fd is an "int", so when decoding x86 on x86_64, we need to force sign
* extension to get the right value . We do this by declaring fd as int here .
*/
void
print_dirfd ( struct tcb * tcp , int fd )
{
if ( fd = = AT_FDCWD )
2018-03-10 08:56:21 +03:00
print_xlat_d ( AT_FDCWD ) ;
else
2014-12-06 06:53:16 +03:00
printfd ( tcp , fd ) ;
2018-03-10 08:56:21 +03:00
tprints ( " , " ) ;
2014-12-06 06:53:16 +03:00
}
/*
* low bits of the open ( 2 ) flags define access mode ,
* other bits are real flags .
*/
const char *
2016-04-29 02:40:37 +03:00
sprint_open_modes ( unsigned int flags )
2014-12-06 06:53:16 +03:00
{
static char outstr [ ( 1 + ARRAY_SIZE ( open_mode_flags ) ) * sizeof ( " O_LARGEFILE " ) ] ;
char * p ;
char sep ;
const char * str ;
const struct xlat * x ;
sep = ' ' ;
p = stpcpy ( outstr , " flags " ) ;
str = xlookup ( open_access_modes , flags & 3 ) ;
if ( str ) {
* p + + = sep ;
p = stpcpy ( p , str ) ;
flags & = ~ 3 ;
if ( ! flags )
return outstr ;
sep = ' | ' ;
}
for ( x = open_mode_flags ; x - > str ; x + + ) {
if ( ( flags & x - > val ) = = x - > val ) {
* p + + = sep ;
p = stpcpy ( p , x - > str ) ;
flags & = ~ x - > val ;
if ( ! flags )
return outstr ;
sep = ' | ' ;
}
}
/* flags is still nonzero */
* p + + = sep ;
2018-01-08 23:03:24 +03:00
p = xappendstr ( outstr , p , " %#x " , flags ) ;
2014-12-06 06:53:16 +03:00
return outstr ;
}
void
2016-04-29 02:40:37 +03:00
tprint_open_modes ( unsigned int flags )
2014-12-06 06:53:16 +03:00
{
2018-04-04 15:54:06 +03:00
print_xlat_ex ( flags , sprint_open_modes ( flags ) + sizeof ( " flags " ) ,
XLAT_STYLE_DEFAULT ) ;
2014-12-06 06:53:16 +03:00
}
static int
decode_open ( struct tcb * tcp , int offset )
{
2015-07-18 01:03:29 +03:00
printpath ( tcp , tcp - > u_arg [ offset ] ) ;
tprints ( " , " ) ;
/* flags */
tprint_open_modes ( tcp - > u_arg [ offset + 1 ] ) ;
2018-07-31 15:21:32 +03:00
if ( tcp - > u_arg [ offset + 1 ] & ( O_CREAT | __O_TMPFILE ) ) {
2015-07-18 01:03:29 +03:00
/* mode */
2016-08-03 17:05:39 +03:00
tprints ( " , " ) ;
print_numeric_umode_t ( tcp - > u_arg [ offset + 2 ] ) ;
2014-12-06 06:53:16 +03:00
}
2015-07-18 01:03:29 +03:00
return RVAL_DECODED | RVAL_FD ;
2014-12-06 06:53:16 +03:00
}
2015-04-07 04:36:50 +03:00
SYS_FUNC ( open )
2014-12-06 06:53:16 +03:00
{
return decode_open ( tcp , 0 ) ;
}
2015-04-07 04:36:50 +03:00
SYS_FUNC ( openat )
2014-12-06 06:53:16 +03:00
{
2015-07-18 01:03:29 +03:00
print_dirfd ( tcp , tcp - > u_arg [ 0 ] ) ;
2014-12-06 06:53:16 +03:00
return decode_open ( tcp , 1 ) ;
}
2015-04-07 04:36:50 +03:00
SYS_FUNC ( creat )
2014-12-06 06:53:16 +03:00
{
2015-07-18 01:03:29 +03:00
printpath ( tcp , tcp - > u_arg [ 0 ] ) ;
2016-08-03 17:05:39 +03:00
tprints ( " , " ) ;
print_numeric_umode_t ( tcp - > u_arg [ 1 ] ) ;
2015-07-18 01:03:29 +03:00
return RVAL_DECODED | RVAL_FD ;
2014-12-06 06:53:16 +03:00
}