2017-06-22 00:24:23 +08:00
/*
* Copyright ( c ) 2016 Fabien Siron < fabien . siron @ epita . fr >
* Copyright ( c ) 2017 JingPiao Chen < chenjingpiao @ gmail . com >
2018-04-05 01:40:00 +00:00
* Copyright ( c ) 2016 - 2018 The strace developers .
2017-06-22 00:24:23 +08: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"
2017-08-28 00:33:30 +08:00
# include <endian.h>
2017-06-22 00:24:23 +08:00
# include "netlink.h"
2017-06-28 09:40:00 +08:00
# include "nlattr.h"
2017-08-28 00:46:22 +08:00
# include <netinet/in.h>
# include <arpa/inet.h>
2017-07-19 10:07:34 +00:00
# include <linux/sock_diag.h>
2018-03-10 06:18:30 +01:00
# include "static_assert.h"
2017-06-22 00:24:23 +08:00
2018-05-10 18:29:39 +02:00
# include "xlat/netlink_sk_meminfo_indices.h"
2017-06-22 00:24:23 +08:00
static bool
fetch_nlattr ( struct tcb * const tcp , struct nlattr * const nlattr ,
2018-05-29 09:58:10 +00:00
const kernel_ulong_t addr , const unsigned int len ,
const bool in_array )
2017-06-22 00:24:23 +08:00
{
if ( len < sizeof ( struct nlattr ) ) {
2017-07-07 09:47:17 +08:00
printstr_ex ( tcp , addr , len , QUOTE_FORCE_HEX ) ;
2017-06-22 00:24:23 +08:00
return false ;
}
2018-05-29 09:58:10 +00:00
if ( tfetch_obj ( tcp , addr , nlattr ) )
return true ;
if ( in_array ) {
tprints ( " ... " ) ;
printaddr_comment ( addr ) ;
} else {
printaddr ( addr ) ;
}
2017-06-22 00:24:23 +08:00
2018-05-29 09:58:10 +00:00
return false ;
2017-06-22 00:24:23 +08:00
}
static void
print_nlattr ( const struct nlattr * const nla ,
const struct xlat * const table ,
const char * const dflt )
{
2018-03-10 06:18:30 +01:00
static_assert ( NLA_TYPE_MASK = = ~ ( NLA_F_NESTED | NLA_F_NET_BYTEORDER ) ,
" wrong NLA_TYPE_MASK " ) ;
2017-06-22 00:24:23 +08:00
tprintf ( " {nla_len=%u, nla_type= " , nla - > nla_len ) ;
2018-03-10 06:18:51 +01:00
if ( nla - > nla_type & NLA_F_NESTED ) {
print_xlat ( NLA_F_NESTED ) ;
tprints ( " | " ) ;
}
if ( nla - > nla_type & NLA_F_NET_BYTEORDER ) {
print_xlat ( NLA_F_NET_BYTEORDER ) ;
tprints ( " | " ) ;
}
2017-06-22 00:24:23 +08:00
printxval ( table , nla - > nla_type & NLA_TYPE_MASK , dflt ) ;
tprints ( " } " ) ;
}
static void
2017-06-28 01:40:00 +00:00
decode_nlattr_with_data ( struct tcb * const tcp ,
2017-06-22 00:24:23 +08:00
const struct nlattr * const nla ,
2017-06-28 01:40:00 +00:00
const kernel_ulong_t addr ,
Adjust prototypes of netlink parsing functions
Change the type of "len" argument that is based
on struct nlmsghdr.nlmsg_len from kernel_ulong_t to unsigned int.
* defs.h (netlink_decoder_t, DECL_NETLINK): Change "len" argument type
from kernel_ulong_t to unsigned int.
* netlink.c (decode_nlmsgerr_attr_cookie, decode_nlmsgerr,
decode_payload): Likewise.
* netlink_selinux.c (decode_netlink_selinux): Likewise.
* netlink_sock_diag.c (decode_family, decode_unix_diag_req,
decode_meminfo, decode_unix_diag_vfs, decode_unix_diag_inode,
decode_unix_diag_rqlen, decode_unix_diag_msg, decode_netlink_diag_req,
print_group, decode_netlink_diag_ring, decode_netlink_diag_flags,
decode_netlink_diag_msg, decode_packet_diag_req,
decode_packet_diag_info, decode_packet_diag_mclist,
decode_packet_diag_ring, decode_packet_diag_filter,
decode_packet_diag_msg, decode_inet_addr, decode_inet_diag_hostcond,
decode_inet_diag_markcond, decode_bytecode_data, decode_inet_diag_bc_op,
decode_inet_diag_req_compat, decode_inet_diag_req_v2,
decode_inet_diag_req, decode_inet_diag_meminfo, decode_tcpvegas_info,
decode_tcp_dctcp_info, decode_tcp_bbr_info, decode_inet_diag_msg,
decode_smc_diag_req, decode_smc_diag_conninfo, decode_smc_diag_lgrinfo,
decode_smc_diag_msg, netlink_diag_decoder_t, decode_netlink_sock_diag):
Likewise.
* nlattr.c (fetch_nlattr, decode_nlattr_with_data, decode_nlattr,
decode_nla_str, decode_nla_strn, DECODE_NLA_INTEGER): Likewise.
* nlattr.h (nla_decoder_t, DECL_NLA, decode_nlattr): Likewise.
2017-07-19 10:07:34 +00:00
const unsigned int len ,
2017-06-22 00:24:23 +08:00
const struct xlat * const table ,
2017-06-28 09:40:00 +08:00
const char * const dflt ,
const nla_decoder_t * const decoders ,
const unsigned int size ,
const void * const opaque_data )
2017-06-22 00:24:23 +08:00
{
2018-05-07 08:15:19 +02:00
const unsigned int nla_len = MIN ( nla - > nla_len , len ) ;
2017-06-22 00:24:23 +08:00
if ( nla_len > NLA_HDRLEN )
tprints ( " { " ) ;
print_nlattr ( nla , table , dflt ) ;
if ( nla_len > NLA_HDRLEN ) {
2018-05-07 08:28:38 +02:00
const unsigned int idx = size ? nla - > nla_type : 0 ;
2017-06-22 00:24:23 +08:00
tprints ( " , " ) ;
2017-06-28 09:40:00 +08:00
if ( ! decoders
2018-05-07 08:28:38 +02:00
| | ( size & & idx > = size )
| | ! decoders [ idx ]
| | ! decoders [ idx ] (
tcp , addr + NLA_HDRLEN ,
nla_len - NLA_HDRLEN ,
size ? opaque_data
: ( const void * ) ( uintptr_t ) nla - > nla_type )
)
2017-07-04 14:21:18 +08:00
printstr_ex ( tcp , addr + NLA_HDRLEN ,
2017-08-16 02:24:29 +00:00
nla_len - NLA_HDRLEN , QUOTE_FORCE_HEX ) ;
2017-06-22 00:24:23 +08:00
tprints ( " } " ) ;
}
}
void
decode_nlattr ( struct tcb * const tcp ,
kernel_ulong_t addr ,
Adjust prototypes of netlink parsing functions
Change the type of "len" argument that is based
on struct nlmsghdr.nlmsg_len from kernel_ulong_t to unsigned int.
* defs.h (netlink_decoder_t, DECL_NETLINK): Change "len" argument type
from kernel_ulong_t to unsigned int.
* netlink.c (decode_nlmsgerr_attr_cookie, decode_nlmsgerr,
decode_payload): Likewise.
* netlink_selinux.c (decode_netlink_selinux): Likewise.
* netlink_sock_diag.c (decode_family, decode_unix_diag_req,
decode_meminfo, decode_unix_diag_vfs, decode_unix_diag_inode,
decode_unix_diag_rqlen, decode_unix_diag_msg, decode_netlink_diag_req,
print_group, decode_netlink_diag_ring, decode_netlink_diag_flags,
decode_netlink_diag_msg, decode_packet_diag_req,
decode_packet_diag_info, decode_packet_diag_mclist,
decode_packet_diag_ring, decode_packet_diag_filter,
decode_packet_diag_msg, decode_inet_addr, decode_inet_diag_hostcond,
decode_inet_diag_markcond, decode_bytecode_data, decode_inet_diag_bc_op,
decode_inet_diag_req_compat, decode_inet_diag_req_v2,
decode_inet_diag_req, decode_inet_diag_meminfo, decode_tcpvegas_info,
decode_tcp_dctcp_info, decode_tcp_bbr_info, decode_inet_diag_msg,
decode_smc_diag_req, decode_smc_diag_conninfo, decode_smc_diag_lgrinfo,
decode_smc_diag_msg, netlink_diag_decoder_t, decode_netlink_sock_diag):
Likewise.
* nlattr.c (fetch_nlattr, decode_nlattr_with_data, decode_nlattr,
decode_nla_str, decode_nla_strn, DECODE_NLA_INTEGER): Likewise.
* nlattr.h (nla_decoder_t, DECL_NLA, decode_nlattr): Likewise.
2017-07-19 10:07:34 +00:00
unsigned int len ,
2017-06-22 00:24:23 +08:00
const struct xlat * const table ,
2017-06-28 09:40:00 +08:00
const char * const dflt ,
const nla_decoder_t * const decoders ,
const unsigned int size ,
const void * const opaque_data )
2017-06-22 00:24:23 +08:00
{
struct nlattr nla ;
2018-05-07 08:26:29 +02:00
bool is_array = false ;
2017-06-22 00:24:23 +08:00
unsigned int elt ;
2018-05-07 08:28:38 +02:00
if ( decoders & & ! size & & opaque_data )
error_func_msg ( " [xlat %p, dflt \" %s \" , decoders %p] "
" size is zero (going to pass nla_type as "
" decoder argument), but opaque data (%p) is not "
" - will be ignored " ,
table , dflt , decoders , opaque_data ) ;
2018-05-29 09:58:10 +00:00
for ( elt = 0 ; fetch_nlattr ( tcp , & nla , addr , len , is_array ) ; elt + + ) {
2017-06-22 00:24:23 +08:00
if ( abbrev ( tcp ) & & elt = = max_strlen ) {
tprints ( " ... " ) ;
break ;
}
Adjust prototypes of netlink parsing functions
Change the type of "len" argument that is based
on struct nlmsghdr.nlmsg_len from kernel_ulong_t to unsigned int.
* defs.h (netlink_decoder_t, DECL_NETLINK): Change "len" argument type
from kernel_ulong_t to unsigned int.
* netlink.c (decode_nlmsgerr_attr_cookie, decode_nlmsgerr,
decode_payload): Likewise.
* netlink_selinux.c (decode_netlink_selinux): Likewise.
* netlink_sock_diag.c (decode_family, decode_unix_diag_req,
decode_meminfo, decode_unix_diag_vfs, decode_unix_diag_inode,
decode_unix_diag_rqlen, decode_unix_diag_msg, decode_netlink_diag_req,
print_group, decode_netlink_diag_ring, decode_netlink_diag_flags,
decode_netlink_diag_msg, decode_packet_diag_req,
decode_packet_diag_info, decode_packet_diag_mclist,
decode_packet_diag_ring, decode_packet_diag_filter,
decode_packet_diag_msg, decode_inet_addr, decode_inet_diag_hostcond,
decode_inet_diag_markcond, decode_bytecode_data, decode_inet_diag_bc_op,
decode_inet_diag_req_compat, decode_inet_diag_req_v2,
decode_inet_diag_req, decode_inet_diag_meminfo, decode_tcpvegas_info,
decode_tcp_dctcp_info, decode_tcp_bbr_info, decode_inet_diag_msg,
decode_smc_diag_req, decode_smc_diag_conninfo, decode_smc_diag_lgrinfo,
decode_smc_diag_msg, netlink_diag_decoder_t, decode_netlink_sock_diag):
Likewise.
* nlattr.c (fetch_nlattr, decode_nlattr_with_data, decode_nlattr,
decode_nla_str, decode_nla_strn, DECODE_NLA_INTEGER): Likewise.
* nlattr.h (nla_decoder_t, DECL_NLA, decode_nlattr): Likewise.
2017-07-19 10:07:34 +00:00
const unsigned int nla_len = NLA_ALIGN ( nla . nla_len ) ;
2017-06-22 00:24:23 +08:00
kernel_ulong_t next_addr = 0 ;
Adjust prototypes of netlink parsing functions
Change the type of "len" argument that is based
on struct nlmsghdr.nlmsg_len from kernel_ulong_t to unsigned int.
* defs.h (netlink_decoder_t, DECL_NETLINK): Change "len" argument type
from kernel_ulong_t to unsigned int.
* netlink.c (decode_nlmsgerr_attr_cookie, decode_nlmsgerr,
decode_payload): Likewise.
* netlink_selinux.c (decode_netlink_selinux): Likewise.
* netlink_sock_diag.c (decode_family, decode_unix_diag_req,
decode_meminfo, decode_unix_diag_vfs, decode_unix_diag_inode,
decode_unix_diag_rqlen, decode_unix_diag_msg, decode_netlink_diag_req,
print_group, decode_netlink_diag_ring, decode_netlink_diag_flags,
decode_netlink_diag_msg, decode_packet_diag_req,
decode_packet_diag_info, decode_packet_diag_mclist,
decode_packet_diag_ring, decode_packet_diag_filter,
decode_packet_diag_msg, decode_inet_addr, decode_inet_diag_hostcond,
decode_inet_diag_markcond, decode_bytecode_data, decode_inet_diag_bc_op,
decode_inet_diag_req_compat, decode_inet_diag_req_v2,
decode_inet_diag_req, decode_inet_diag_meminfo, decode_tcpvegas_info,
decode_tcp_dctcp_info, decode_tcp_bbr_info, decode_inet_diag_msg,
decode_smc_diag_req, decode_smc_diag_conninfo, decode_smc_diag_lgrinfo,
decode_smc_diag_msg, netlink_diag_decoder_t, decode_netlink_sock_diag):
Likewise.
* nlattr.c (fetch_nlattr, decode_nlattr_with_data, decode_nlattr,
decode_nla_str, decode_nla_strn, DECODE_NLA_INTEGER): Likewise.
* nlattr.h (nla_decoder_t, DECL_NLA, decode_nlattr): Likewise.
2017-07-19 10:07:34 +00:00
unsigned int next_len = 0 ;
2017-06-22 00:24:23 +08:00
if ( nla . nla_len > = NLA_HDRLEN ) {
next_len = ( len > = nla_len ) ? len - nla_len : 0 ;
if ( next_len & & addr + nla_len > addr )
next_addr = addr + nla_len ;
}
2018-05-07 08:26:29 +02:00
if ( ! is_array & & next_addr ) {
2017-06-22 00:24:23 +08:00
tprints ( " [ " ) ;
2018-05-07 08:26:29 +02:00
is_array = true ;
2017-06-22 00:24:23 +08:00
}
2017-06-28 09:40:00 +08:00
decode_nlattr_with_data ( tcp , & nla , addr , len , table , dflt ,
decoders , size , opaque_data ) ;
2017-06-22 00:24:23 +08:00
if ( ! next_addr )
break ;
tprints ( " , " ) ;
addr = next_addr ;
len = next_len ;
}
2018-05-07 08:26:29 +02:00
if ( is_array ) {
2017-06-22 00:24:23 +08:00
tprints ( " ] " ) ;
}
}
2017-06-28 09:40:00 +08:00
bool
2017-06-28 01:40:00 +00:00
decode_nla_str ( struct tcb * const tcp ,
const kernel_ulong_t addr ,
Adjust prototypes of netlink parsing functions
Change the type of "len" argument that is based
on struct nlmsghdr.nlmsg_len from kernel_ulong_t to unsigned int.
* defs.h (netlink_decoder_t, DECL_NETLINK): Change "len" argument type
from kernel_ulong_t to unsigned int.
* netlink.c (decode_nlmsgerr_attr_cookie, decode_nlmsgerr,
decode_payload): Likewise.
* netlink_selinux.c (decode_netlink_selinux): Likewise.
* netlink_sock_diag.c (decode_family, decode_unix_diag_req,
decode_meminfo, decode_unix_diag_vfs, decode_unix_diag_inode,
decode_unix_diag_rqlen, decode_unix_diag_msg, decode_netlink_diag_req,
print_group, decode_netlink_diag_ring, decode_netlink_diag_flags,
decode_netlink_diag_msg, decode_packet_diag_req,
decode_packet_diag_info, decode_packet_diag_mclist,
decode_packet_diag_ring, decode_packet_diag_filter,
decode_packet_diag_msg, decode_inet_addr, decode_inet_diag_hostcond,
decode_inet_diag_markcond, decode_bytecode_data, decode_inet_diag_bc_op,
decode_inet_diag_req_compat, decode_inet_diag_req_v2,
decode_inet_diag_req, decode_inet_diag_meminfo, decode_tcpvegas_info,
decode_tcp_dctcp_info, decode_tcp_bbr_info, decode_inet_diag_msg,
decode_smc_diag_req, decode_smc_diag_conninfo, decode_smc_diag_lgrinfo,
decode_smc_diag_msg, netlink_diag_decoder_t, decode_netlink_sock_diag):
Likewise.
* nlattr.c (fetch_nlattr, decode_nlattr_with_data, decode_nlattr,
decode_nla_str, decode_nla_strn, DECODE_NLA_INTEGER): Likewise.
* nlattr.h (nla_decoder_t, DECL_NLA, decode_nlattr): Likewise.
2017-07-19 10:07:34 +00:00
const unsigned int len ,
2017-06-28 01:40:00 +00:00
const void * const opaque_data )
2017-06-28 09:40:00 +08:00
{
printstr_ex ( tcp , addr , len , QUOTE_0_TERMINATED ) ;
return true ;
}
bool
2017-06-28 01:40:00 +00:00
decode_nla_strn ( struct tcb * const tcp ,
const kernel_ulong_t addr ,
Adjust prototypes of netlink parsing functions
Change the type of "len" argument that is based
on struct nlmsghdr.nlmsg_len from kernel_ulong_t to unsigned int.
* defs.h (netlink_decoder_t, DECL_NETLINK): Change "len" argument type
from kernel_ulong_t to unsigned int.
* netlink.c (decode_nlmsgerr_attr_cookie, decode_nlmsgerr,
decode_payload): Likewise.
* netlink_selinux.c (decode_netlink_selinux): Likewise.
* netlink_sock_diag.c (decode_family, decode_unix_diag_req,
decode_meminfo, decode_unix_diag_vfs, decode_unix_diag_inode,
decode_unix_diag_rqlen, decode_unix_diag_msg, decode_netlink_diag_req,
print_group, decode_netlink_diag_ring, decode_netlink_diag_flags,
decode_netlink_diag_msg, decode_packet_diag_req,
decode_packet_diag_info, decode_packet_diag_mclist,
decode_packet_diag_ring, decode_packet_diag_filter,
decode_packet_diag_msg, decode_inet_addr, decode_inet_diag_hostcond,
decode_inet_diag_markcond, decode_bytecode_data, decode_inet_diag_bc_op,
decode_inet_diag_req_compat, decode_inet_diag_req_v2,
decode_inet_diag_req, decode_inet_diag_meminfo, decode_tcpvegas_info,
decode_tcp_dctcp_info, decode_tcp_bbr_info, decode_inet_diag_msg,
decode_smc_diag_req, decode_smc_diag_conninfo, decode_smc_diag_lgrinfo,
decode_smc_diag_msg, netlink_diag_decoder_t, decode_netlink_sock_diag):
Likewise.
* nlattr.c (fetch_nlattr, decode_nlattr_with_data, decode_nlattr,
decode_nla_str, decode_nla_strn, DECODE_NLA_INTEGER): Likewise.
* nlattr.h (nla_decoder_t, DECL_NLA, decode_nlattr): Likewise.
2017-07-19 10:07:34 +00:00
const unsigned int len ,
2017-06-28 01:40:00 +00:00
const void * const opaque_data )
2017-06-28 09:40:00 +08:00
{
printstrn ( tcp , addr , len ) ;
return true ;
}
2017-07-19 10:07:34 +00:00
bool
decode_nla_meminfo ( struct tcb * const tcp ,
const kernel_ulong_t addr ,
const unsigned int len ,
const void * const opaque_data )
{
uint32_t mem ;
const size_t nmemb = len / sizeof ( mem ) ;
if ( ! nmemb )
return false ;
unsigned int count = 0 ;
2018-05-10 18:29:39 +02:00
print_array_ex ( tcp , addr , nmemb , & mem , sizeof ( mem ) ,
tfetch_mem , print_uint32_array_member , & count ,
PAF_PRINT_INDICES | PAF_INDEX_XLAT_VALUE_INDEXED
| XLAT_STYLE_FMT_U ,
ARRSZ_PAIR ( netlink_sk_meminfo_indices ) ,
" SK_MEMINFO_??? " ) ;
2017-07-19 10:07:34 +00:00
return true ;
}
2017-11-15 15:30:49 +00:00
bool
decode_nla_fd ( struct tcb * const tcp ,
const kernel_ulong_t addr ,
const unsigned int len ,
const void * const opaque_data )
{
int fd ;
if ( len < sizeof ( fd ) )
return false ;
else if ( ! umove_or_printaddr ( tcp , addr , & fd ) )
printfd ( tcp , fd ) ;
return true ;
}
2017-08-22 23:24:45 +08:00
bool
decode_nla_ifindex ( struct tcb * const tcp ,
const kernel_ulong_t addr ,
const unsigned int len ,
const void * const opaque_data )
{
uint32_t ifindex ;
if ( len < sizeof ( ifindex ) )
return false ;
else if ( ! umove_or_printaddr ( tcp , addr , & ifindex ) )
print_ifindex ( ifindex ) ;
return true ;
}
2018-05-07 08:40:02 +02:00
bool
decode_nla_xval ( struct tcb * const tcp ,
const kernel_ulong_t addr ,
const unsigned int len ,
const void * const opaque_data )
{
const struct decode_nla_xlat_opts * const opts = opaque_data ;
union {
uint64_t val ;
uint8_t bytes [ sizeof ( uint64_t ) ] ;
} data ;
const size_t bytes_offs = is_bigendian ? sizeof ( data ) - len : 0 ;
data . val = 0 ;
if ( len > sizeof ( data ) )
return false ;
else if ( ! umoven_or_printaddr ( tcp , addr , len , data . bytes + bytes_offs ) )
2018-05-18 17:36:00 +02:00
{
if ( opts - > process_fn )
data . val = opts - > process_fn ( data . val ) ;
if ( opts - > prefix )
tprints ( opts - > prefix ) ;
2018-05-07 08:40:02 +02:00
printxval_dispatch_ex ( opts - > xlat , opts - > xlat_size , data . val ,
opts - > dflt , opts - > xt , opts - > style ) ;
2018-05-18 17:36:00 +02:00
if ( opts - > suffix )
tprints ( opts - > suffix ) ;
}
2018-05-07 08:40:02 +02:00
return true ;
}
2018-04-16 02:02:18 +02:00
bool
decode_nla_ip_proto ( struct tcb * const tcp ,
const kernel_ulong_t addr ,
const unsigned int len ,
const void * const opaque_data )
{
2018-05-23 18:48:26 +02:00
const struct decode_nla_xlat_opts opts = {
. xlat = inet_protocols ,
. xlat_size = inet_protocols_size ,
. xt = XT_SORTED ,
. dflt = " IPPROTO_??? " ,
2018-04-16 02:02:18 +02:00
} ;
return decode_nla_xval ( tcp , addr , len , & opts ) ;
}
2018-05-07 08:40:02 +02:00
bool
decode_nla_flags ( struct tcb * const tcp ,
const kernel_ulong_t addr ,
const unsigned int len ,
const void * const opaque_data )
{
const struct decode_nla_xlat_opts * const opts = opaque_data ;
union {
uint64_t flags ;
uint8_t bytes [ sizeof ( uint64_t ) ] ;
} data = { . flags = 0 } ;
const size_t bytes_offs = is_bigendian ? sizeof ( data ) - len : 0 ;
if ( opts - > xt = = XT_INDEXED )
error_func_msg ( " indexed xlats are currently incompatible with "
" printflags " ) ;
if ( len > sizeof ( data ) )
return false ;
else if ( ! umoven_or_printaddr ( tcp , addr , len , data . bytes + bytes_offs ) )
2018-05-18 17:36:00 +02:00
{
if ( opts - > process_fn )
data . flags = opts - > process_fn ( data . flags ) ;
if ( opts - > prefix )
tprints ( opts - > prefix ) ;
2018-05-07 08:40:02 +02:00
printflags_ex ( data . flags , opts - > dflt , opts - > style , opts - > xlat ,
NULL ) ;
2018-05-18 17:36:00 +02:00
if ( opts - > suffix )
tprints ( opts - > suffix ) ;
}
2018-05-07 08:40:02 +02:00
return true ;
}
2017-08-28 00:46:22 +08:00
bool
decode_nla_be16 ( struct tcb * const tcp ,
const kernel_ulong_t addr ,
const unsigned int len ,
const void * const opaque_data )
{
uint16_t num ;
if ( len < sizeof ( num ) )
return false ;
else if ( ! umove_or_printaddr ( tcp , addr , & num ) )
tprintf ( " htons(%u) " , ntohs ( num ) ) ;
return true ;
}
2017-08-28 00:33:30 +08:00
bool
decode_nla_be64 ( struct tcb * const tcp ,
const kernel_ulong_t addr ,
const unsigned int len ,
const void * const opaque_data )
{
# if defined HAVE_BE64TOH || defined be64toh
uint64_t num ;
if ( len < sizeof ( num ) )
return false ;
else if ( ! umove_or_printaddr ( tcp , addr , & num ) )
tprintf ( " htobe64(% " PRIu64 " ) " , be64toh ( num ) ) ;
return true ;
# else
return false ;
# endif
}
2017-06-28 01:40:00 +00:00
# define DECODE_NLA_INTEGER(name, type, fmt) \
bool \
decode_nla_ # # name ( struct tcb * const tcp , \
const kernel_ulong_t addr , \
Adjust prototypes of netlink parsing functions
Change the type of "len" argument that is based
on struct nlmsghdr.nlmsg_len from kernel_ulong_t to unsigned int.
* defs.h (netlink_decoder_t, DECL_NETLINK): Change "len" argument type
from kernel_ulong_t to unsigned int.
* netlink.c (decode_nlmsgerr_attr_cookie, decode_nlmsgerr,
decode_payload): Likewise.
* netlink_selinux.c (decode_netlink_selinux): Likewise.
* netlink_sock_diag.c (decode_family, decode_unix_diag_req,
decode_meminfo, decode_unix_diag_vfs, decode_unix_diag_inode,
decode_unix_diag_rqlen, decode_unix_diag_msg, decode_netlink_diag_req,
print_group, decode_netlink_diag_ring, decode_netlink_diag_flags,
decode_netlink_diag_msg, decode_packet_diag_req,
decode_packet_diag_info, decode_packet_diag_mclist,
decode_packet_diag_ring, decode_packet_diag_filter,
decode_packet_diag_msg, decode_inet_addr, decode_inet_diag_hostcond,
decode_inet_diag_markcond, decode_bytecode_data, decode_inet_diag_bc_op,
decode_inet_diag_req_compat, decode_inet_diag_req_v2,
decode_inet_diag_req, decode_inet_diag_meminfo, decode_tcpvegas_info,
decode_tcp_dctcp_info, decode_tcp_bbr_info, decode_inet_diag_msg,
decode_smc_diag_req, decode_smc_diag_conninfo, decode_smc_diag_lgrinfo,
decode_smc_diag_msg, netlink_diag_decoder_t, decode_netlink_sock_diag):
Likewise.
* nlattr.c (fetch_nlattr, decode_nlattr_with_data, decode_nlattr,
decode_nla_str, decode_nla_strn, DECODE_NLA_INTEGER): Likewise.
* nlattr.h (nla_decoder_t, DECL_NLA, decode_nlattr): Likewise.
2017-07-19 10:07:34 +00:00
const unsigned int len , \
2017-06-28 01:40:00 +00:00
const void * const opaque_data ) \
{ \
type num ; \
\
if ( len < sizeof ( num ) ) \
return false ; \
if ( ! umove_or_printaddr ( tcp , addr , & num ) ) \
tprintf ( fmt , num ) ; \
return true ; \
2017-06-28 09:40:00 +08:00
}
DECODE_NLA_INTEGER ( u8 , uint8_t , " % " PRIu8 )
DECODE_NLA_INTEGER ( u16 , uint16_t , " % " PRIu16 )
DECODE_NLA_INTEGER ( u32 , uint32_t , " % " PRIu32 )
DECODE_NLA_INTEGER ( u64 , uint64_t , " % " PRIu64 )
DECODE_NLA_INTEGER ( s8 , int8_t , " % " PRId8 )
DECODE_NLA_INTEGER ( s16 , int16_t , " % " PRId16 )
DECODE_NLA_INTEGER ( s32 , int32_t , " % " PRId32 )
DECODE_NLA_INTEGER ( s64 , int64_t , " % " PRId64 )