1999-02-19 00:21:36 +00: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 >
2001-08-03 21:52:13 +00:00
* Copyright ( c ) 1996 - 2001 Wichert Akkerman < wichert @ cistron . nl >
2018-04-05 01:40:00 +00:00
* Copyright ( c ) 1999 - 2018 The strace developers .
1999-02-19 00:21:36 +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 .
*/
# include "defs.h"
2015-03-28 18:40:13 +01:00
# include <linux/ioctl.h>
2018-09-24 00:26:01 +02:00
# include "xlat/ioc_types.h"
2015-01-20 00:24:36 +00:00
# include "xlat/ioctl_dirs.h"
2001-03-17 17:26:34 +00:00
1999-02-19 00:21:36 +00:00
static int
2011-05-30 14:00:14 +02:00
compare ( const void * a , const void * b )
1999-02-19 00:21:36 +00:00
{
2016-12-21 00:26:06 +00:00
const unsigned int code1 = ( const uintptr_t ) a ;
ioctl: assume that all ioctl commands have unsigned int type
In linux, ioctl command number has a 32-bit unsigned integer type:
fs/ioctl.c:SYSCALL_DEFINE3(ioctl, unsigned int, fd, unsigned int, cmd, unsigned long, arg)
If the kernel completely ignores other bits on 64-bit architectures,
why should strace care?
Let's follow the kernel and treat it as unsigned int.
* defs.h (struct_ioctlent): Change "code" type to "unsigned int".
(ioctl_decode, ioctl_lookup, block_ioctl, loop_ioctl, mtd_ioctl,
ubi_ioctl, ptp_ioctl, scsi_ioctl, sock_ioctl, term_ioctl, rtc_ioctl,
v4l2_ioctl): Likewise.
* ioctl.c (ioctl_decode, ioctl_lookup, compare, ioctl_next_match):
Likewise.
* block.c (block_ioctl): Likewise.
* loop.c (loop_ioctl): Likewise.
* mtd.c (mtd_ioctl, ubi_ioctl): Likewise.
* ptp.c (ptp_ioctl): Likewise.
* scsi.c (scsi_ioctl): Likewise.
* sock.c (sock_ioctl): Likewise.
* term.c (term_ioctl): Likewise.
* time.c (rtc_ioctl): Likewise.
* v4l2.c (v4l2_ioctl): Likewise.
* ioctlsort.c (struct ioctlent, compare, main): Likewise.
2015-01-19 18:44:21 +00:00
const unsigned int code2 = ( ( struct_ioctlent * ) b ) - > code ;
2012-03-20 13:11:51 +01:00
return ( code1 > code2 ) ? 1 : ( code1 < code2 ) ? - 1 : 0 ;
1999-02-19 00:21:36 +00:00
}
2015-07-02 21:37:23 +00:00
static const struct_ioctlent *
ioctl: take all 32 bits of ioctl commands into account
Historically, only 16 bits (8-bit number and 8-bit type) of 32-bit ioctl
commands were used for decoding, which was the source for numerous
annoying collisions like this:
ioctl(0, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
ioctl(0, MGSL_IOCGPARAMS or MMTIMER_GETRES or MTIOCTOP or SNDCTL_MIDI_MPUMODE, 0x7fffd47f7338) = -1 ENOTTY (Inappropriate ioctl for device)
The solution is to use all 32 bits for decoding, not just "number" and
"type", but also "size" and "direction".
As some architectures override defaults that come from asm-generic/ and
provide alternative definitions for some ioctl commands, we support
per-architecture ioctl definitions and merge them with common
definitions at build time. During the merge, we used to keep both
generic and architecture-specific definitions, now architecture-specific
definitions have precedence over generic ones -- ioctlsort omits
definitions from asm-generic/ for those ioctl names that have different
definitions in asm/.
Additional bits of "direction" are architecture specific -- the number
of bits and their values differ between architectures. To reduce
architecture differences in the source code, we keep "direction" in
symbolic form and compile it in ioctlsort.
Additional bits of "size" are also architecture specific -- not only the
number of bits differ between architectures, but sizes of many types
depend on sizeof(long). To reduce architecture differences in the
source code, we keep 32-bit and 64-bit versions of common ioctl
definitions, and use the appropriate version for each architecture and
personality.
To implement this, the tools for generating ioctl definitions from
kernel headers have been rewritten, and the source format of ioctl
definitions has been extended. The final ioctlent*.h files that are
included by syscall.c are now generated from source ioctls_inc*.h and
ioctls_arch*.h files at build time with ioctlsort.
* ioctl.c (ioctl_lookup): Use all 32 bits of ioctl command code.
* ioctlsort.c: Rewritten.
* linux/32/ioctls_inc.h: New file.
* linux/64/ioctls_inc.h: New file.
* linux/aarch64/ioctls_arch0.h: New file.
* linux/aarch64/ioctls_arch1.h: New file.
* linux/aarch64/ioctls_inc0.h: New file.
* linux/aarch64/ioctls_inc1.h: New file.
* linux/alpha/ioctls_arch0.h: New file.
* linux/alpha/ioctls_inc0.h: New file.
* linux/arc/ioctls_arch0.h: New file.
* linux/arc/ioctls_inc0.h: New file.
* linux/arm/ioctls_arch0.h: New file.
* linux/arm/ioctls_inc0.h: New file.
* linux/avr32/ioctls_arch0.h: New file.
* linux/avr32/ioctls_inc0.h: New file.
* linux/bfin/ioctls_arch0.h: New file.
* linux/bfin/ioctls_inc0.h: New file.
* linux/hppa/ioctls_arch0.h: New file.
* linux/hppa/ioctls_inc0.h: New file.
* linux/i386/ioctls_arch0.h: New file.
* linux/i386/ioctls_inc0.h: New file.
* linux/ia64/ioctls_arch0.h: New file.
* linux/ia64/ioctls_inc0.h: New file.
* linux/m68k/ioctls_arch0.h: New file.
* linux/m68k/ioctls_inc0.h: New file.
* linux/metag/ioctls_arch0.h: New file.
* linux/metag/ioctls_inc0.h: New file.
* linux/microblaze/ioctls_arch0.h: New file.
* linux/microblaze/ioctls_inc0.h: New file.
* linux/mips/ioctls_arch0.h: New file.
* linux/mips/ioctls_inc0.h: New file.
* linux/or1k/ioctls_arch0.h: New file.
* linux/or1k/ioctls_inc0.h: New file.
* linux/powerpc/ioctls_arch0.h: New file.
* linux/powerpc/ioctls_inc0.h: New file.
* linux/powerpc64/ioctls_arch0.h: New file.
* linux/powerpc64/ioctls_arch1.h: New file.
* linux/powerpc64/ioctls_inc0.h: New file.
* linux/powerpc64/ioctls_inc1.h: New file.
* linux/s390/ioctls_arch0.h: New file.
* linux/s390/ioctls_inc0.h: New file.
* linux/s390x/ioctls_arch0.h: New file.
* linux/s390x/ioctls_inc0.h: New file.
* linux/sh/ioctls_arch0.h: New file.
* linux/sh/ioctls_inc0.h: New file.
* linux/sh64/ioctls_arch0.h: New file.
* linux/sh64/ioctls_inc0.h: New file.
* linux/sparc/ioctls_arch0.h: New file.
* linux/sparc/ioctls_inc0.h: New file.
* linux/sparc64/ioctls_arch0.h: New file.
* linux/sparc64/ioctls_arch2.h: New file.
* linux/sparc64/ioctls_inc0.h: New file.
* linux/sparc64/ioctls_inc2.h: New file.
* linux/tile/ioctls_arch0.h: New file.
* linux/tile/ioctls_arch1.h: New file.
* linux/tile/ioctls_inc0.h: New file.
* linux/tile/ioctls_inc1.h: New file.
* linux/x32/ioctls_arch0.h: New file.
* linux/x32/ioctls_arch1.h: New file.
* linux/x32/ioctls_inc0.h: New file.
* linux/x32/ioctls_inc1.h: New file.
* linux/x86_64/ioctls_arch0.h: New file.
* linux/x86_64/ioctls_arch1.h: New file.
* linux/x86_64/ioctls_inc0.h: New file.
* linux/x86_64/ioctls_inc1.h: New file.
* linux/xtensa/ioctls_arch0.h: New file.
* linux/xtensa/ioctls_inc0.h: New file.
* linux/aarch64/ioctlent.h.in: Remove.
* linux/aarch64/ioctlent1.h: Remove.
* linux/alpha/ioctlent.h.in: Remove.
* linux/arc/ioctlent.h.in: Remove.
* linux/arm/ioctlent.h.in: Remove.
* linux/avr32/ioctlent.h.in: Remove.
* linux/bfin/ioctlent.h.in: Remove.
* linux/hppa/ioctlent.h.in: Remove.
* linux/i386/ioctlent.h.in: Remove.
* linux/ia64/ioctlent.h.in: Remove.
* linux/ioctlent.h.in: Remove.
* linux/ioctlent.sh: Remove.
* linux/m68k/ioctlent.h.in: Remove.
* linux/metag/ioctlent.h.in: Remove.
* linux/microblaze/ioctlent.h.in: Remove.
* linux/mips/ioctlent.h.in: Remove.
* linux/mips/ioctlent.sh: Remove.
* linux/or1k/ioctlent.h.in: Remove.
* linux/powerpc/ioctlent.h.in: Remove.
* linux/powerpc64/ioctlent.h: Remove.
* linux/powerpc64/ioctlent1.h: Remove.
* linux/s390/ioctlent.h.in: Remove.
* linux/s390x/ioctlent.h.in: Remove.
* linux/sh/ioctlent.h.in: Remove.
* linux/sh64/ioctlent.h.in: Remove.
* linux/sparc/ioctlent.h.in: Remove.
* linux/sparc64/ioctlent.h.in: Remove.
* linux/sparc64/ioctlent2.h: Remove.
* linux/tile/ioctlent.h.in: Remove.
* linux/tile/ioctlent1.h: Remove.
* linux/x32/ioctlent.h.in: Remove.
* linux/x32/ioctlent1.h: Remove.
* linux/x86_64/ioctlent.h.in: Remove.
* linux/x86_64/ioctlent1.h: Remove.
* linux/xtensa/ioctlent.h.in: Remove.
* linux/x86_64/ioctlent2.h: Include ioctlent0.h instead of ioctlent.h.
* syscall.c (struct_ioctlent ioctlent0): Likewise.
* Makefile.am: Remove all ioctlent-related definitions.
Define the list of ioctlent*.h files that have to be generated by
presence of $(srcdir)/$(OS)/$(ARCH)/ioctls_inc*.h files.
Add rules for ioctlent*.h files generation.
(EXTRA_DIST): Update.
* maint/ioctls_gen.sh: New file.
* maint/ioctls_hex.sh: New file.
* maint/ioctls_sym.sh: New file.
* maint/print_ioctlent.c: New file.
* HACKING-scripts: Update for ioctlent.sh -> ioctls_gen.sh migration.
* .gitignore: Add ioctlent[012].h and ioctls_all[012].h.
* configure.ac (AC_CHECK_HEADERS): Add linux/hiddev.h
and linux/mmtimer.h for tests.
* tests/ioctl.c: New file.
* tests/ioctl.test: New test.
* tests/Makefile.am (check_PROGRAMS): Add ioctl.
(TESTS): Add ioctl.test.
* tests/.gitignore: Add ioctl.
2015-01-19 17:02:16 +00:00
ioctl_lookup ( const unsigned int code )
1999-02-19 00:21:36 +00:00
{
2013-02-22 13:26:10 +01:00
struct_ioctlent * iop ;
1999-02-19 00:21:36 +00:00
2016-12-21 00:26:06 +00:00
iop = bsearch ( ( const void * ) ( const uintptr_t ) code , ioctlent ,
2012-03-20 10:57:41 +01:00
nioctlents , sizeof ( ioctlent [ 0 ] ) , compare ) ;
while ( iop > ioctlent ) {
iop - - ;
if ( iop - > code ! = code ) {
2003-11-14 02:54:03 +00:00
iop + + ;
break ;
}
2012-03-20 10:57:41 +01:00
}
2003-11-14 02:54:03 +00:00
return iop ;
}
2015-07-02 21:37:23 +00:00
static const struct_ioctlent *
2013-02-22 13:26:10 +01:00
ioctl_next_match ( const struct_ioctlent * iop )
2003-11-14 02:54:03 +00:00
{
ioctl: assume that all ioctl commands have unsigned int type
In linux, ioctl command number has a 32-bit unsigned integer type:
fs/ioctl.c:SYSCALL_DEFINE3(ioctl, unsigned int, fd, unsigned int, cmd, unsigned long, arg)
If the kernel completely ignores other bits on 64-bit architectures,
why should strace care?
Let's follow the kernel and treat it as unsigned int.
* defs.h (struct_ioctlent): Change "code" type to "unsigned int".
(ioctl_decode, ioctl_lookup, block_ioctl, loop_ioctl, mtd_ioctl,
ubi_ioctl, ptp_ioctl, scsi_ioctl, sock_ioctl, term_ioctl, rtc_ioctl,
v4l2_ioctl): Likewise.
* ioctl.c (ioctl_decode, ioctl_lookup, compare, ioctl_next_match):
Likewise.
* block.c (block_ioctl): Likewise.
* loop.c (loop_ioctl): Likewise.
* mtd.c (mtd_ioctl, ubi_ioctl): Likewise.
* ptp.c (ptp_ioctl): Likewise.
* scsi.c (scsi_ioctl): Likewise.
* sock.c (sock_ioctl): Likewise.
* term.c (term_ioctl): Likewise.
* time.c (rtc_ioctl): Likewise.
* v4l2.c (v4l2_ioctl): Likewise.
* ioctlsort.c (struct ioctlent, compare, main): Likewise.
2015-01-19 18:44:21 +00:00
const unsigned int code = iop - > code ;
2012-03-20 10:57:41 +01:00
iop + + ;
2003-11-14 02:54:03 +00:00
if ( iop < ioctlent + nioctlents & & iop - > code = = code )
return iop ;
return NULL ;
1999-02-19 00:21:36 +00:00
}
2018-09-24 00:26:01 +02:00
static const char *
ioctl_type_str ( uint8_t ioc_type )
{
2018-09-24 03:54:15 +02:00
static char buf [ ] = { ' \' ' , ' \\ ' , ' \' ' , ' \' ' , ' \0 ' } ;
2018-09-24 00:26:01 +02:00
const char * ret = xlookup ( ioc_types , ioc_type ) ;
if ( ret )
return ret ;
2018-09-24 03:54:15 +02:00
if ( ioc_type = = ' \\ ' | | ioc_type = = ' \' ' ) {
buf [ 1 ] = ' \\ ' ;
buf [ 2 ] = ioc_type ;
2018-09-24 00:26:01 +02:00
return buf ;
}
2018-09-24 03:54:15 +02:00
if ( ioc_type > = ' ' & & ioc_type < 0x7F ) {
buf [ 1 ] = ' \' ' ;
buf [ 2 ] = ioc_type ;
return buf + 1 ;
}
2018-09-24 00:26:01 +02:00
return NULL ;
}
2015-07-02 21:37:23 +00:00
static void
2015-01-20 00:24:36 +00:00
ioctl_print_code ( const unsigned int code )
{
tprints ( " _IOC( " ) ;
printflags ( ioctl_dirs , _IOC_DIR ( code ) , " _IOC_??? " ) ;
2018-09-24 00:26:01 +02:00
tprints ( " , " ) ;
print_xlat_ex ( _IOC_TYPE ( code ) , ioctl_type_str ( _IOC_TYPE ( code ) ) ,
XLAT_STYLE_DEFAULT ) ;
tprintf ( " , %#x, %#x) " , _IOC_NR ( code ) , _IOC_SIZE ( code ) ) ;
2015-01-20 00:24:36 +00:00
}
2015-01-21 23:35:27 +01:00
static int
2015-07-02 22:23:53 +00:00
evdev_decode_number ( const unsigned int code )
2015-01-21 23:35:27 +01:00
{
2015-07-02 22:23:53 +00:00
const unsigned int nr = _IOC_NR ( code ) ;
2015-01-21 23:35:27 +01:00
2015-07-02 22:23:53 +00:00
if ( _IOC_DIR ( code ) = = _IOC_WRITE ) {
2015-01-21 23:35:27 +01:00
if ( nr > = 0xc0 & & nr < = 0xc0 + 0x3f ) {
tprints ( " EVIOCSABS( " ) ;
Add xlat description structure.
Rename struct xlat to struct xlat_data and make struct xlat an xlat descriptor
that contains various information about xlat. So far, it's type and number
of items.
As a result, xlookup/printxval now have enought information for handling
xlat depending on its type, so no *index/*_search APIs are needed.
* xlat.h (struct xlat_data): Rename from struct xlat.
(struct xlat): New type definition.
* xlat.c (xlat_search, printxval_sized, printxval_searchn_ex, xlat_idx,
printxval_indexn_ex, printxval_dispatch_ex, ): Remove.
(xlookup): Handle xlat_data based on xlat type.
(xlookup_le): New function, replaces xlat_search_eq_or_less and supports
all xlat types.
(sprintflags_ex, printflags_ex): Update.
* xlat/gen.sh (gen_header): Add handling for #sorted, generate new
struct xlat descriptor.
* defs.h (arp_hardware_types_size, ethernet_protocols_size,
inet_protocols_size, evdev_abs_size, xlat_search,
xlat_search_eq_or_less, xlat_idx, printxval_searchn_ex,
printxval_searchn, printxval_search, printxval_search_ex,
printxval_indexn_ex, printxval_indexn, printxval_index,
printxval_index_ex, printxval_dispatch_ex, printxval_dispatch): Remove.
(enum xlat_style_private_flag_bits): Remove PAF_INDEX_XLAT_SORTED_BIT
and PAF_INDEX_XLAT_VALUE_INDEXED_BIT.
(enum xlat_style_private_flag): Remove PAF_INDEX_XLAT_SORTED and
PAF_INDEX_XLAT_VALUE_INDEXED.
(print_array_ex): Remove index_xlat_size argument.
(xlookup_le): New declaration.
(printxval_ex): New macro.
* dyxlat.c (struct dyxlat): Remove used field (use xlat.size instead),
embed struct xlat, add pointer to struct xlat_data.
(MARK_END): Remove.
(dyxlat_alloc, dyxlat_free, dyxlat_get, dyxlat_add_pair): Update in
accordance with the structure changes.
* evdev.c (evdev_abs_size): Remove.
(keycode_ioctl): Use printxval instead of printxval_index.
(decode_bitset): Remove.
(decode_bitset_): Rename to decode_bitset, remove decode_nr_size and xt
arguments, call printxval instead of printxval_dispatch.
(bit_ioctl, evdev_read_ioctl): Do not pass xlat type to decode_bitset.
* print_fields.h (PRINT_FIELD_XVAL_SORTED_SIZED,
PRINT_FIELD_XVAL_INDEX): Remove.
* nlattr.h (struct decode_nla_xlat_opts): Remove xlat_size and xt
fields.
* nlattr.c (decode_nla_meminfo): do not pass
PAF_INDEX_XLAT_VALUE_INDEXED flag and netlink_sk_meminfo_indices size
in a print_array_ex call.
(decode_nla_xval): Call printxval_ex instead of printxval_dispatch_ex.
(decode_nla_ether_proto, decode_nla_ip_proto): Do not pass xlat_size and
xt fields in opts.
(decode_nla_flags): Remove XT_INDEXED unsupported warning.
* process.c (struct_user_offsets_data): Rename from
struct_user_offsets, change type to struct xlat_data[], remove XLAT_END.
(struct_user_offsets): New xlat description.
(print_user_offset_addr): Rewrite using xlookup_le.
* util.c (print_array_ex): Remove index_xlat_size argument, simply call
printxval_ex for index printing.
* aio.c (tprint_lio_opcode): Use printxval_ex instead of
printxval_indexn_ex.
* bpf.c: Use printxval instead of printxval_index; use PRINT_FIELD_XVAL
instead of PRINT_FIELD_XVAL_INDEX.
* bpf_filter.c (print_bpf_filter_code): Use printxval instead of
printxval_index.
* ioctl.c (evdev_decode_number): Use printxval instead of
printxval_indexn.
* kvm.c (kvm_ioctl_decode_check_extension): Use printxval instead of
printxval_index.
(kvm_ioctl_run_attach_auxstr): Use xlookup instead of xlat_idx.
* net.c: Use printxval instead of printxval_search/printxval_index, use
printxval_ex instead of printxval_searchn_ex.
* netlink_packet_diag.c (decode_packet_diag_msg): Use PRINT_FIELD_XVAL
instead of PRINT_FIELD_XVAL_SORTED_SIZED.
* netlink_smc_diag.c (decode_smc_diag_shutdown): Remove ARRSZ_PAIR
wrapper.
(decode_smc_diag_fallback): Use printxval_ex instead of
printxval_search_ex.
(decode_smc_diag_msg): Use PRINT_FIELD_XVAL instead of
PRINT_FIELD_XVAL_INDEX.
* print_statfs.c (print_statfs_type): Use printxval instead of
printxval_search.
* rtnl_cachereport.c (decode_nla_ipmra_msg_type,
decode_nla_ip6mra_msg_type): Remove ARRSZ_PAIR wrappers, xt fields.
* rtnl_link.c (decode_ifla_inet6_flags, decode_ifla_inet6_agm):
Likewise.
(decode_nla_tun_type, decode_ifla_xdp_attached): Remove xlat_size,
xt fields.
(decode_ifla_inet_conf, decode_ifla_inet6_conf, decode_ifla_inet6_stats,
decode_ifla_inet6_icmp6_stats): Remove PAF_INDEX_XLAT_VALUE_INDEXED flag
and ARRSZ_PAIR wrapper in print_array_ex calls.
(decode_ifinfomsg): Use PRINT_FIELD_XVAL instead of
PRINT_FIELD_XVAL_SORTED_SIZED.
* rtnl_route.c (decode_nla_rt_proto): Use printxval instead of
printxval_search.
* sock.c (print_ifreq): Use PRINT_FIELD_XVAL instead of
PRINT_FIELD_XVAL_SORTED_SIZED.
* sockaddr.c (print_sockaddr_data_ll, print_sockaddr_data_bt,
print_sockaddr): Use printxval instead of printxval_search and
printxval_index.
* time.c (getitimer, osf_getitimer, setitimer, printclockname): Use
printxval instead of printxval_index.
(do_adjtimex): Use xlookup instead of xlat_idx.
* v4l2.c (print_v4l2_cid): Use xlookup instead of xlat_search.
(print_v4l2_cid): Use xlookup_le instead of xlat_search_eq_or_less.
* tests/btrfs.c: Update xlat handling, use struct xlat_data instead of
struct xlat for XLAT() arrays.
* tests/ioctl_block.c: Likewise.
* tests/ioctl_rtc.c: Likewise.
* tests/printflags.c: Likewise.
* tests/printxval.c: Likewise.
* tests/prlimit64.c: Likewise.
* tests/setrlimit.c: Likewise.
* tests/socketcall.c: Likewise.
* tests/xgetrlimit.c: Likewise.
* tests/xstatfsx.c: Likewise.
* xlat/af_packet_versions.in: Add #value_indexed.
* xlat/arp_hardware_types.in: Add #sorted.
* xlat/ax25_protocols.in: Likewise.
* xlat/bluetooth_l2_cid.in: Likewise.
* xlat/bluetooth_l2_psm.in: Likewise.
* xlat/ethernet_protocols.in: Likewise.
* xlat/evdev_ff_types.in: Likewise.
* xlat/fsmagic.in: Likewise.
* xlat/hw_breakpoint_type.in: Likewise.
* xlat/iffflags.in: Likewise.
* xlat/inet6_if_flags.in: Likewise.
* xlat/inet_protocols.in: Likewise.
* xlat/msgctl_flags.in: Likewise.
* xlat/perf_hw_cache_id.in: Likewise.
* xlat/perf_hw_cache_op_id.in: Likewise.
* xlat/perf_hw_cache_op_result_id.in: Likewise.
* xlat/perf_hw_id.in: Likewise.
* xlat/perf_sw_ids.in: Likewise.
* xlat/perf_type_id.in: Likewise.
* xlat/routing_protocols.in: Likewise.
* xlat/semctl_flags.in: Likewise.
* xlat/shmctl_flags.in: Likewise.
* xlat/smc_decl_codes.in: Likewise.
* xlat/sock_ax25_options.in: Likewise.
* xlat/sock_bluetooth_options.in: Likewise.
* xlat/sock_dccp_options.in: Likewise.
* xlat/sock_tipc_options.in: Likewise.
* xlat/socketlayers.in: Likewise.
* xlat/v4l2_control_classes.in: Likewise.
* xlat/v4l2_pix_fmts.in: Likewise.
* xlat/v4l2_sdr_fmts.in: Likewise.
2018-08-31 13:32:15 +02:00
printxval ( evdev_abs , nr - 0xc0 , " ABS_??? " ) ;
2015-01-21 23:35:27 +01:00
tprints ( " ) " ) ;
return 1 ;
}
}
2015-07-02 22:23:53 +00:00
if ( _IOC_DIR ( code ) ! = _IOC_READ )
2015-01-21 23:35:27 +01:00
return 0 ;
if ( nr > = 0x20 & & nr < = 0x20 + 0x1f ) {
tprints ( " EVIOCGBIT( " ) ;
2018-08-01 17:53:57 +08:00
if ( nr = = 0x20 )
tprintf ( " 0 " ) ;
else
printxval ( evdev_ev , nr - 0x20 , " EV_??? " ) ;
2015-07-02 22:23:53 +00:00
tprintf ( " , %u) " , _IOC_SIZE ( code ) ) ;
2015-01-21 23:35:27 +01:00
return 1 ;
} else if ( nr > = 0x40 & & nr < = 0x40 + 0x3f ) {
tprints ( " EVIOCGABS( " ) ;
Add xlat description structure.
Rename struct xlat to struct xlat_data and make struct xlat an xlat descriptor
that contains various information about xlat. So far, it's type and number
of items.
As a result, xlookup/printxval now have enought information for handling
xlat depending on its type, so no *index/*_search APIs are needed.
* xlat.h (struct xlat_data): Rename from struct xlat.
(struct xlat): New type definition.
* xlat.c (xlat_search, printxval_sized, printxval_searchn_ex, xlat_idx,
printxval_indexn_ex, printxval_dispatch_ex, ): Remove.
(xlookup): Handle xlat_data based on xlat type.
(xlookup_le): New function, replaces xlat_search_eq_or_less and supports
all xlat types.
(sprintflags_ex, printflags_ex): Update.
* xlat/gen.sh (gen_header): Add handling for #sorted, generate new
struct xlat descriptor.
* defs.h (arp_hardware_types_size, ethernet_protocols_size,
inet_protocols_size, evdev_abs_size, xlat_search,
xlat_search_eq_or_less, xlat_idx, printxval_searchn_ex,
printxval_searchn, printxval_search, printxval_search_ex,
printxval_indexn_ex, printxval_indexn, printxval_index,
printxval_index_ex, printxval_dispatch_ex, printxval_dispatch): Remove.
(enum xlat_style_private_flag_bits): Remove PAF_INDEX_XLAT_SORTED_BIT
and PAF_INDEX_XLAT_VALUE_INDEXED_BIT.
(enum xlat_style_private_flag): Remove PAF_INDEX_XLAT_SORTED and
PAF_INDEX_XLAT_VALUE_INDEXED.
(print_array_ex): Remove index_xlat_size argument.
(xlookup_le): New declaration.
(printxval_ex): New macro.
* dyxlat.c (struct dyxlat): Remove used field (use xlat.size instead),
embed struct xlat, add pointer to struct xlat_data.
(MARK_END): Remove.
(dyxlat_alloc, dyxlat_free, dyxlat_get, dyxlat_add_pair): Update in
accordance with the structure changes.
* evdev.c (evdev_abs_size): Remove.
(keycode_ioctl): Use printxval instead of printxval_index.
(decode_bitset): Remove.
(decode_bitset_): Rename to decode_bitset, remove decode_nr_size and xt
arguments, call printxval instead of printxval_dispatch.
(bit_ioctl, evdev_read_ioctl): Do not pass xlat type to decode_bitset.
* print_fields.h (PRINT_FIELD_XVAL_SORTED_SIZED,
PRINT_FIELD_XVAL_INDEX): Remove.
* nlattr.h (struct decode_nla_xlat_opts): Remove xlat_size and xt
fields.
* nlattr.c (decode_nla_meminfo): do not pass
PAF_INDEX_XLAT_VALUE_INDEXED flag and netlink_sk_meminfo_indices size
in a print_array_ex call.
(decode_nla_xval): Call printxval_ex instead of printxval_dispatch_ex.
(decode_nla_ether_proto, decode_nla_ip_proto): Do not pass xlat_size and
xt fields in opts.
(decode_nla_flags): Remove XT_INDEXED unsupported warning.
* process.c (struct_user_offsets_data): Rename from
struct_user_offsets, change type to struct xlat_data[], remove XLAT_END.
(struct_user_offsets): New xlat description.
(print_user_offset_addr): Rewrite using xlookup_le.
* util.c (print_array_ex): Remove index_xlat_size argument, simply call
printxval_ex for index printing.
* aio.c (tprint_lio_opcode): Use printxval_ex instead of
printxval_indexn_ex.
* bpf.c: Use printxval instead of printxval_index; use PRINT_FIELD_XVAL
instead of PRINT_FIELD_XVAL_INDEX.
* bpf_filter.c (print_bpf_filter_code): Use printxval instead of
printxval_index.
* ioctl.c (evdev_decode_number): Use printxval instead of
printxval_indexn.
* kvm.c (kvm_ioctl_decode_check_extension): Use printxval instead of
printxval_index.
(kvm_ioctl_run_attach_auxstr): Use xlookup instead of xlat_idx.
* net.c: Use printxval instead of printxval_search/printxval_index, use
printxval_ex instead of printxval_searchn_ex.
* netlink_packet_diag.c (decode_packet_diag_msg): Use PRINT_FIELD_XVAL
instead of PRINT_FIELD_XVAL_SORTED_SIZED.
* netlink_smc_diag.c (decode_smc_diag_shutdown): Remove ARRSZ_PAIR
wrapper.
(decode_smc_diag_fallback): Use printxval_ex instead of
printxval_search_ex.
(decode_smc_diag_msg): Use PRINT_FIELD_XVAL instead of
PRINT_FIELD_XVAL_INDEX.
* print_statfs.c (print_statfs_type): Use printxval instead of
printxval_search.
* rtnl_cachereport.c (decode_nla_ipmra_msg_type,
decode_nla_ip6mra_msg_type): Remove ARRSZ_PAIR wrappers, xt fields.
* rtnl_link.c (decode_ifla_inet6_flags, decode_ifla_inet6_agm):
Likewise.
(decode_nla_tun_type, decode_ifla_xdp_attached): Remove xlat_size,
xt fields.
(decode_ifla_inet_conf, decode_ifla_inet6_conf, decode_ifla_inet6_stats,
decode_ifla_inet6_icmp6_stats): Remove PAF_INDEX_XLAT_VALUE_INDEXED flag
and ARRSZ_PAIR wrapper in print_array_ex calls.
(decode_ifinfomsg): Use PRINT_FIELD_XVAL instead of
PRINT_FIELD_XVAL_SORTED_SIZED.
* rtnl_route.c (decode_nla_rt_proto): Use printxval instead of
printxval_search.
* sock.c (print_ifreq): Use PRINT_FIELD_XVAL instead of
PRINT_FIELD_XVAL_SORTED_SIZED.
* sockaddr.c (print_sockaddr_data_ll, print_sockaddr_data_bt,
print_sockaddr): Use printxval instead of printxval_search and
printxval_index.
* time.c (getitimer, osf_getitimer, setitimer, printclockname): Use
printxval instead of printxval_index.
(do_adjtimex): Use xlookup instead of xlat_idx.
* v4l2.c (print_v4l2_cid): Use xlookup instead of xlat_search.
(print_v4l2_cid): Use xlookup_le instead of xlat_search_eq_or_less.
* tests/btrfs.c: Update xlat handling, use struct xlat_data instead of
struct xlat for XLAT() arrays.
* tests/ioctl_block.c: Likewise.
* tests/ioctl_rtc.c: Likewise.
* tests/printflags.c: Likewise.
* tests/printxval.c: Likewise.
* tests/prlimit64.c: Likewise.
* tests/setrlimit.c: Likewise.
* tests/socketcall.c: Likewise.
* tests/xgetrlimit.c: Likewise.
* tests/xstatfsx.c: Likewise.
* xlat/af_packet_versions.in: Add #value_indexed.
* xlat/arp_hardware_types.in: Add #sorted.
* xlat/ax25_protocols.in: Likewise.
* xlat/bluetooth_l2_cid.in: Likewise.
* xlat/bluetooth_l2_psm.in: Likewise.
* xlat/ethernet_protocols.in: Likewise.
* xlat/evdev_ff_types.in: Likewise.
* xlat/fsmagic.in: Likewise.
* xlat/hw_breakpoint_type.in: Likewise.
* xlat/iffflags.in: Likewise.
* xlat/inet6_if_flags.in: Likewise.
* xlat/inet_protocols.in: Likewise.
* xlat/msgctl_flags.in: Likewise.
* xlat/perf_hw_cache_id.in: Likewise.
* xlat/perf_hw_cache_op_id.in: Likewise.
* xlat/perf_hw_cache_op_result_id.in: Likewise.
* xlat/perf_hw_id.in: Likewise.
* xlat/perf_sw_ids.in: Likewise.
* xlat/perf_type_id.in: Likewise.
* xlat/routing_protocols.in: Likewise.
* xlat/semctl_flags.in: Likewise.
* xlat/shmctl_flags.in: Likewise.
* xlat/smc_decl_codes.in: Likewise.
* xlat/sock_ax25_options.in: Likewise.
* xlat/sock_bluetooth_options.in: Likewise.
* xlat/sock_dccp_options.in: Likewise.
* xlat/sock_tipc_options.in: Likewise.
* xlat/socketlayers.in: Likewise.
* xlat/v4l2_control_classes.in: Likewise.
* xlat/v4l2_pix_fmts.in: Likewise.
* xlat/v4l2_sdr_fmts.in: Likewise.
2018-08-31 13:32:15 +02:00
printxval ( evdev_abs , nr - 0x40 , " ABS_??? " ) ;
2015-01-21 23:35:27 +01:00
tprints ( " ) " ) ;
return 1 ;
}
switch ( _IOC_NR ( nr ) ) {
2018-09-06 20:00:00 +02:00
case 0x06 :
tprintf ( " EVIOCGNAME(%u) " , _IOC_SIZE ( code ) ) ;
return 1 ;
case 0x07 :
tprintf ( " EVIOCGPHYS(%u) " , _IOC_SIZE ( code ) ) ;
return 1 ;
case 0x08 :
tprintf ( " EVIOCGUNIQ(%u) " , _IOC_SIZE ( code ) ) ;
return 1 ;
case 0x09 :
tprintf ( " EVIOCGPROP(%u) " , _IOC_SIZE ( code ) ) ;
return 1 ;
case 0x0a :
tprintf ( " EVIOCGMTSLOTS(%u) " , _IOC_SIZE ( code ) ) ;
return 1 ;
case 0x18 :
tprintf ( " EVIOCGKEY(%u) " , _IOC_SIZE ( code ) ) ;
return 1 ;
case 0x19 :
tprintf ( " EVIOCGLED(%u) " , _IOC_SIZE ( code ) ) ;
return 1 ;
case 0x1a :
tprintf ( " EVIOCGSND(%u) " , _IOC_SIZE ( code ) ) ;
return 1 ;
case 0x1b :
tprintf ( " EVIOCGSW(%u) " , _IOC_SIZE ( code ) ) ;
return 1 ;
default :
return 0 ;
2015-01-21 23:35:27 +01:00
}
}
static int
2015-07-02 22:23:53 +00:00
hiddev_decode_number ( const unsigned int code )
2015-01-21 23:35:27 +01:00
{
2015-07-02 22:23:53 +00:00
if ( _IOC_DIR ( code ) = = _IOC_READ ) {
switch ( _IOC_NR ( code ) ) {
2018-09-06 20:00:00 +02:00
case 0x04 :
tprintf ( " HIDIOCGRAWNAME(%u) " , _IOC_SIZE ( code ) ) ;
return 1 ;
case 0x05 :
tprintf ( " HIDIOCGRAWPHYS(%u) " , _IOC_SIZE ( code ) ) ;
return 1 ;
case 0x06 :
tprintf ( " HIDIOCSFEATURE(%u) " , _IOC_SIZE ( code ) ) ;
return 1 ;
case 0x12 :
tprintf ( " HIDIOCGPHYS(%u) " , _IOC_SIZE ( code ) ) ;
return 1 ;
default :
return 0 ;
2015-01-21 23:35:27 +01:00
}
2015-07-02 22:23:53 +00:00
} else if ( _IOC_DIR ( code ) = = ( _IOC_READ | _IOC_WRITE ) ) {
switch ( _IOC_NR ( code ) ) {
2018-09-06 20:00:00 +02:00
case 0x06 :
tprintf ( " HIDIOCSFEATURE(%u) " , _IOC_SIZE ( code ) ) ;
return 1 ;
case 0x07 :
tprintf ( " HIDIOCGFEATURE(%u) " , _IOC_SIZE ( code ) ) ;
return 1 ;
default :
return 0 ;
2015-01-21 23:35:27 +01:00
}
}
return 0 ;
}
2018-09-24 03:55:01 +02:00
# ifndef SIOCPROTOPRIVATE
# define SIOCPROTOPRIVATE 0x89E0
# endif
# ifndef SIOCDEVPRIVATE
# define SIOCDEVPRIVATE 0x89F0
# endif
# ifndef SIOCIWFIRSTPRIV
# define SIOCIWFIRSTPRIV 0x8BE0
# endif
# ifndef SIOCIWLASTPRIV
# define SIOCIWLASTPRIV 0x8BFF
# endif
2015-07-02 21:37:23 +00:00
static int
2015-07-02 22:31:11 +00:00
ioctl_decode_command_number ( struct tcb * tcp )
2015-01-21 23:35:27 +01:00
{
2015-07-02 22:31:11 +00:00
const unsigned int code = tcp - > u_arg [ 1 ] ;
2015-07-02 22:23:53 +00:00
switch ( _IOC_TYPE ( code ) ) {
2018-09-06 20:00:00 +02:00
case ' E ' :
return evdev_decode_number ( code ) ;
case ' H ' :
return hiddev_decode_number ( code ) ;
case ' M ' :
if ( _IOC_DIR ( code ) = = _IOC_WRITE ) {
tprintf ( " MIXER_WRITE(%u) " , _IOC_NR ( code ) ) ;
return 1 ;
} else if ( _IOC_DIR ( code ) = = _IOC_READ ) {
tprintf ( " MIXER_READ(%u) " , _IOC_NR ( code ) ) ;
return 1 ;
}
return 0 ;
case ' U ' :
if ( _IOC_DIR ( code ) = = _IOC_READ & & _IOC_NR ( code ) = = 0x2c ) {
tprintf ( " UI_GET_SYSNAME(%u) " , _IOC_SIZE ( code ) ) ;
return 1 ;
}
return 0 ;
case ' j ' :
if ( _IOC_DIR ( code ) = = _IOC_READ & & _IOC_NR ( code ) = = 0x13 ) {
tprintf ( " JSIOCGNAME(%u) " , _IOC_SIZE ( code ) ) ;
return 1 ;
}
return 0 ;
case ' k ' :
if ( _IOC_DIR ( code ) = = _IOC_WRITE & & _IOC_NR ( code ) = = 0 ) {
tprintf ( " SPI_IOC_MESSAGE(%u) " , _IOC_SIZE ( code ) ) ;
return 1 ;
}
return 0 ;
2018-09-24 03:55:01 +02:00
case SOCK_IOC_TYPE :
if ( code > SIOCPROTOPRIVATE & & code < = SIOCPROTOPRIVATE + 15 ) {
tprintf ( " SIOCPROTOPRIVATE+%u " , code - SIOCPROTOPRIVATE ) ;
return 1 ;
}
if ( code > SIOCDEVPRIVATE & & code < = SIOCDEVPRIVATE + 15 ) {
tprintf ( " SIOCDEVPRIVATE+%u " , code - SIOCDEVPRIVATE ) ;
return 1 ;
}
return 0 ;
case 0x8B : /* 802.11 */
if ( code > SIOCIWFIRSTPRIV & & code < SIOCIWLASTPRIV ) {
tprintf ( " SIOCIWFIRSTPRIV+%u " , code - SIOCIWFIRSTPRIV ) ;
return 1 ;
}
return 0 ;
2018-09-06 20:00:00 +02:00
default :
return 0 ;
2015-01-21 23:35:27 +01:00
}
}
2017-08-26 00:33:55 +02:00
/**
* Decode arg parameter of the ioctl call .
*
2017-08-14 19:25:13 +02:00
* @ return There are two flags of the return value important for the purposes of
2017-08-26 00:33:55 +02:00
* processing by SYS_FUNC ( ioctl ) :
2017-08-28 00:39:15 +00:00
* - RVAL_IOCTL_DECODED : indicates that ioctl decoder code
* has printed arg parameter ;
* - RVAL_DECODED : indicates that decoding is done .
2017-08-26 00:33:55 +02:00
* As a result , the following behaviour is expected :
* - on entering :
2017-08-28 00:39:15 +00:00
* - 0 : decoding should be continued on exiting ;
* - RVAL_IOCTL_DECODED : decoding on exiting is not needed
* and decoder has printed arg value ;
* - RVAL_DECODED : decoding on exiting is not needed
* and generic handler should print arg value .
2017-08-26 00:33:55 +02:00
* - on exiting :
2017-08-28 00:39:15 +00:00
* - 0 : generic handler should print arg value ;
* - RVAL_IOCTL_DECODED : decoder has printed arg value .
2017-08-26 00:33:55 +02:00
*
2017-08-28 00:39:15 +00:00
* Note that it makes no sense to return just RVAL_DECODED on exiting ,
* but , of course , it is not prohibited ( for example , it may be useful
2017-08-14 19:25:13 +02:00
* in cases where the return path is common on entering and on exiting
* the syscall ) .
2017-08-26 00:33:55 +02:00
*
2017-08-28 00:39:15 +00:00
* SYS_FUNC ( ioctl ) converts RVAL_IOCTL_DECODED flag to RVAL_DECODED ,
* and passes all other bits of ioctl_decode return value unchanged .
2017-08-26 00:33:55 +02:00
*/
2015-07-02 21:37:23 +00:00
static int
2015-07-02 22:27:51 +00:00
ioctl_decode ( struct tcb * tcp )
1999-02-19 00:21:36 +00:00
{
2015-07-02 22:27:51 +00:00
const unsigned int code = tcp - > u_arg [ 1 ] ;
2016-12-26 10:26:03 +00:00
const kernel_ulong_t arg = tcp - > u_arg [ 2 ] ;
2015-07-02 22:27:51 +00:00
ioctl: assume that all ioctl commands have unsigned int type
In linux, ioctl command number has a 32-bit unsigned integer type:
fs/ioctl.c:SYSCALL_DEFINE3(ioctl, unsigned int, fd, unsigned int, cmd, unsigned long, arg)
If the kernel completely ignores other bits on 64-bit architectures,
why should strace care?
Let's follow the kernel and treat it as unsigned int.
* defs.h (struct_ioctlent): Change "code" type to "unsigned int".
(ioctl_decode, ioctl_lookup, block_ioctl, loop_ioctl, mtd_ioctl,
ubi_ioctl, ptp_ioctl, scsi_ioctl, sock_ioctl, term_ioctl, rtc_ioctl,
v4l2_ioctl): Likewise.
* ioctl.c (ioctl_decode, ioctl_lookup, compare, ioctl_next_match):
Likewise.
* block.c (block_ioctl): Likewise.
* loop.c (loop_ioctl): Likewise.
* mtd.c (mtd_ioctl, ubi_ioctl): Likewise.
* ptp.c (ptp_ioctl): Likewise.
* scsi.c (scsi_ioctl): Likewise.
* sock.c (sock_ioctl): Likewise.
* term.c (term_ioctl): Likewise.
* time.c (rtc_ioctl): Likewise.
* v4l2.c (v4l2_ioctl): Likewise.
* ioctlsort.c (struct ioctlent, compare, main): Likewise.
2015-01-19 18:44:21 +00:00
switch ( _IOC_TYPE ( code ) ) {
2011-01-15 20:15:31 +00:00
case 0x03 :
2016-05-26 00:07:17 +00:00
return hdio_ioctl ( tcp , code , arg ) ;
2011-01-15 20:15:31 +00:00
case 0x12 :
return block_ioctl ( tcp , code , arg ) ;
2018-09-11 02:01:21 +02:00
case ' " ' : /* 0x22 */
2007-06-30 11:37:09 +00:00
return scsi_ioctl ( tcp , code , arg ) ;
2018-09-11 02:01:21 +02:00
case ' $ ' : /* 0x24 */
return perf_ioctl ( tcp , code , arg ) ;
case ' = ' : /* 0x3d */
return ptp_ioctl ( tcp , code , arg ) ;
# ifdef HAVE_LINUX_INPUT_H
case ' E ' :
return evdev_ioctl ( tcp , code , arg ) ;
# endif
case ' I ' :
return inotify_ioctl ( tcp , code , arg ) ;
2012-04-17 22:19:31 -04:00
case ' L ' :
return loop_ioctl ( tcp , code , arg ) ;
2017-12-23 02:10:13 +00:00
# ifdef HAVE_STRUCT_MTD_WRITE_REQ
2012-04-04 22:22:01 -04:00
case ' M ' :
return mtd_ioctl ( tcp , code , arg ) ;
2017-12-23 02:10:13 +00:00
# endif
2017-12-23 02:53:54 +00:00
# ifdef HAVE_STRUCT_UBI_ATTACH_REQ_MAX_BEB_PER1024
2013-05-01 23:35:30 -04:00
case ' O ' :
return ubi_ioctl ( tcp , code , arg ) ;
2017-12-23 02:53:54 +00:00
# endif
2018-09-11 02:01:21 +02:00
case ' T ' :
return term_ioctl ( tcp , code , arg ) ;
2014-11-03 21:27:40 +01:00
case ' V ' :
return v4l2_ioctl ( tcp , code , arg ) ;
2018-09-11 02:01:21 +02:00
case ' X ' :
return fs_x_ioctl ( tcp , code , arg ) ;
case ' f ' : {
# if defined(ALPHA) || defined(POWERPC)
int ret = file_ioctl ( tcp , code , arg ) ;
if ( ret ! = RVAL_DECODED )
return ret ;
return term_ioctl ( tcp , code , arg ) ;
# else /* !(ALPHA || POWERPC) */
return file_ioctl ( tcp , code , arg ) ;
# endif /* (ALPHA || POWERPC) */
}
# ifdef HAVE_STRUCT_UBI_ATTACH_REQ_MAX_BEB_PER1024
case ' o ' :
return ubi_ioctl ( tcp , code , arg ) ;
2017-12-23 02:37:33 +00:00
# endif
2018-09-11 02:01:21 +02:00
case ' p ' :
return rtc_ioctl ( tcp , code , arg ) ;
# if defined(ALPHA) || defined(POWERPC)
case ' t ' :
return term_ioctl ( tcp , code , arg ) ;
# endif /* !ALPHA */
case 0x89 :
return sock_ioctl ( tcp , code , arg ) ;
# ifdef HAVE_LINUX_BTRFS_H
case 0x94 :
return btrfs_ioctl ( tcp , code , arg ) ;
2016-05-10 11:49:02 +01:00
# endif
# ifdef HAVE_LINUX_USERFAULTFD_H
case 0xaa :
return uffdio_ioctl ( tcp , code , arg ) ;
2016-05-18 18:09:39 -04:00
# endif
2018-09-11 02:01:21 +02:00
# ifdef HAVE_LINUX_KVM_H
case 0xae :
return kvm_ioctl ( tcp , code , arg ) ;
2016-10-02 17:59:06 -04:00
# endif
2017-04-13 22:10:11 +07:00
case 0xb7 :
return nsfs_ioctl ( tcp , code , arg ) ;
2016-10-02 17:59:06 -04:00
# ifdef HAVE_LINUX_DM_IOCTL_H
case 0xfd :
return dm_ioctl ( tcp , code , arg ) ;
2017-12-02 04:05:25 +09:00
# endif
1999-02-19 00:21:36 +00:00
default :
break ;
}
return 0 ;
}
2015-07-02 21:37:23 +00:00
SYS_FUNC ( ioctl )
{
const struct_ioctlent * iop ;
2015-07-08 14:10:56 +00:00
int ret ;
2015-07-02 21:37:23 +00:00
if ( entering ( tcp ) ) {
printfd ( tcp , tcp - > u_arg [ 0 ] ) ;
tprints ( " , " ) ;
2018-03-19 05:27:41 +01:00
if ( xlat_verbosity ! = XLAT_STYLE_ABBREV )
tprintf ( " %#x " , ( unsigned int ) tcp - > u_arg [ 1 ] ) ;
if ( xlat_verbosity = = XLAT_STYLE_VERBOSE )
tprints ( " /* " ) ;
if ( xlat_verbosity ! = XLAT_STYLE_RAW ) {
ret = ioctl_decode_command_number ( tcp ) ;
if ( ! ( ret & IOCTL_NUMBER_STOP_LOOKUP ) ) {
iop = ioctl_lookup ( tcp - > u_arg [ 1 ] ) ;
if ( iop ) {
if ( ret )
tprints ( " or " ) ;
tprints ( iop - > symbol ) ;
while ( ( iop = ioctl_next_match ( iop ) ) )
tprintf ( " or %s " , iop - > symbol ) ;
} else if ( ! ret ) {
ioctl_print_code ( tcp - > u_arg [ 1 ] ) ;
}
2015-12-04 01:07:33 +01:00
}
2015-07-02 21:37:23 +00:00
}
2018-03-19 05:27:41 +01:00
if ( xlat_verbosity = = XLAT_STYLE_VERBOSE )
tprints ( " */ " ) ;
2015-07-08 14:10:56 +00:00
ret = ioctl_decode ( tcp ) ;
} else {
ret = ioctl_decode ( tcp ) | RVAL_DECODED ;
2015-07-02 21:37:23 +00:00
}
2015-07-08 14:10:56 +00:00
2017-08-28 00:39:15 +00:00
if ( ret & RVAL_IOCTL_DECODED ) {
ret & = ~ RVAL_IOCTL_DECODED ;
ret | = RVAL_DECODED ;
} else if ( ret & RVAL_DECODED ) {
2017-08-26 00:33:55 +02:00
tprintf ( " , %# " PRI_klx , tcp - > u_arg [ 2 ] ) ;
2017-08-28 00:39:15 +00:00
}
2015-07-08 14:10:56 +00:00
return ret ;
2015-07-02 21:37:23 +00:00
}