strace/net.c

1006 lines
22 KiB
C
Raw Normal View History

1999-02-19 03:21:36 +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-2000 Wichert Akkerman <wichert@cistron.nl>
* Copyright (c) 1999-2018 The strace developers.
1999-02-19 03:21:36 +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.
*/
#include "defs.h"
#include "print_fields.h"
1999-02-19 03:21:36 +03:00
#include <sys/stat.h>
#include <sys/socket.h>
#include <sys/uio.h>
1999-02-19 03:21:36 +03:00
#include <sys/un.h>
#include <netinet/in.h>
#ifdef HAVE_NETINET_TCP_H
# include <netinet/tcp.h>
2000-09-02 01:03:06 +04:00
#endif
#ifdef HAVE_NETINET_UDP_H
# include <netinet/udp.h>
#endif
#ifdef HAVE_NETINET_SCTP_H
# include <netinet/sctp.h>
#endif
1999-02-19 03:21:36 +03:00
#include <arpa/inet.h>
2001-02-16 23:29:03 +03:00
#include <net/if.h>
1999-02-19 03:21:36 +03:00
#include <asm/types.h>
#ifdef HAVE_NETIPX_IPX_H
# include <netipx/ipx.h>
1999-02-19 03:21:36 +03:00
#else
# include <linux/ipx.h>
1999-02-19 03:21:36 +03:00
#endif
decode extend getsockopt/setsockopt options Currently the code assumes the set of valid options between getsockopt and setsockopt are exactly the same and thus maintains one list. The kernel unfortunately does not do this -- it allows for different opts between the get and set functions. See the {g,s}et_opt{min,max} fields in the various netfilter subcores. To support this, extend the printxval function to take multiple sets of xlats as varargs. Then we add the new get/set lists, and pass them down in the net code when decoding things. A simple example is iptables; before: getsockopt(4, SOL_IP, 0x40 /* IP_??? */, ...) = 0 getsockopt(4, SOL_IP, 0x41 /* IP_??? */, ...) = 0 after: getsockopt(4, SOL_IP, IPT_SO_GET_INFO, ...) = 0 getsockopt(4, SOL_IP, IPT_SO_GET_ENTRIES, ...) = 0 If these were setsockopt calls, then 0x40 & 0x41 would be IPT_SO_SET_REPLACE & IPT_SO_SET_ADD_COUNTERS. * configure.ac: Check for netfilter headers. * defs.h (printxvals): New prototype. (printxval): Change to a define. * net.c: Include netfilter headers and new sockopts headers. (print_sockopt_fd_level_name): Add a is_getsockopt argument. Change SOL_IP and SOL_IPV6 decoding to use printxvals, and use is_getsockopt to pass more xlats down. (getsockopt): Call print_sockopt_fd_level_name with is_getsockopt as true. (setsockopt): Call print_sockopt_fd_level_name with is_getsockopt as false. * util.c (printxval): Rename to ... (printxvals): ... this. Rewrite to be varargs based. * xlat/getsockipoptions.in: New xlat list. * xlat/getsockipv6options.in, xlat/setsockipoptions.in, xlat/setsockipv6options.in: Likewise.
2015-08-19 20:29:27 +03:00
#if defined(HAVE_LINUX_IP_VS_H)
# include <linux/ip_vs.h>
#endif
#include "netlink.h"
decode extend getsockopt/setsockopt options Currently the code assumes the set of valid options between getsockopt and setsockopt are exactly the same and thus maintains one list. The kernel unfortunately does not do this -- it allows for different opts between the get and set functions. See the {g,s}et_opt{min,max} fields in the various netfilter subcores. To support this, extend the printxval function to take multiple sets of xlats as varargs. Then we add the new get/set lists, and pass them down in the net code when decoding things. A simple example is iptables; before: getsockopt(4, SOL_IP, 0x40 /* IP_??? */, ...) = 0 getsockopt(4, SOL_IP, 0x41 /* IP_??? */, ...) = 0 after: getsockopt(4, SOL_IP, IPT_SO_GET_INFO, ...) = 0 getsockopt(4, SOL_IP, IPT_SO_GET_ENTRIES, ...) = 0 If these were setsockopt calls, then 0x40 & 0x41 would be IPT_SO_SET_REPLACE & IPT_SO_SET_ADD_COUNTERS. * configure.ac: Check for netfilter headers. * defs.h (printxvals): New prototype. (printxval): Change to a define. * net.c: Include netfilter headers and new sockopts headers. (print_sockopt_fd_level_name): Add a is_getsockopt argument. Change SOL_IP and SOL_IPV6 decoding to use printxvals, and use is_getsockopt to pass more xlats down. (getsockopt): Call print_sockopt_fd_level_name with is_getsockopt as true. (setsockopt): Call print_sockopt_fd_level_name with is_getsockopt as false. * util.c (printxval): Rename to ... (printxvals): ... this. Rewrite to be varargs based. * xlat/getsockipoptions.in: New xlat list. * xlat/getsockipv6options.in, xlat/setsockipoptions.in, xlat/setsockipv6options.in: Likewise.
2015-08-19 20:29:27 +03:00
#if defined(HAVE_LINUX_NETFILTER_ARP_ARP_TABLES_H)
# include <linux/netfilter_arp/arp_tables.h>
#endif
#if defined(HAVE_LINUX_NETFILTER_BRIDGE_EBTABLES_H)
# include <linux/netfilter_bridge/ebtables.h>
#endif
#if defined(HAVE_LINUX_NETFILTER_IPV4_IP_TABLES_H)
# include <linux/netfilter_ipv4/ip_tables.h>
#endif
#if defined(HAVE_LINUX_NETFILTER_IPV6_IP6_TABLES_H)
# include <linux/netfilter_ipv6/ip6_tables.h>
#endif
#include <linux/if_packet.h>
#include <linux/icmp.h>
1999-02-19 03:21:36 +03:00
#include "xlat/socktypes.h"
#include "xlat/sock_type_flags.h"
#ifndef SOCK_TYPE_MASK
# define SOCK_TYPE_MASK 0xf
#endif
#include "xlat/socketlayers.h"
#include "xlat/inet_protocols.h"
#define XLAT_MACROS_ONLY
# include "xlat/addrfams.h"
#undef XLAT_MACROS_ONLY
#include "xlat/irda_protocols.h"
#include "xlat/can_protocols.h"
#include "xlat/bt_protocols.h"
#include "xlat/isdn_protocols.h"
#include "xlat/phonet_protocols.h"
#include "xlat/caif_protocols.h"
#include "xlat/nfc_protocols.h"
#include "xlat/kcm_protocols.h"
#include "xlat/smc_protocols.h"
static void
decode_sockbuf(struct tcb *const tcp, const int fd, const kernel_ulong_t addr,
const kernel_ulong_t addrlen)
{
switch (verbose(tcp) ? getfdproto(tcp, fd) : SOCK_PROTO_UNKNOWN) {
case SOCK_PROTO_NETLINK:
decode_netlink(tcp, fd, addr, addrlen);
break;
default:
printstrn(tcp, addr, addrlen);
}
}
/*
* low bits of the socket type define real socket type,
* other bits are socket type flags.
*/
static void
tprint_sock_type(unsigned int flags)
{
const char *str = xlookup(socktypes, flags & SOCK_TYPE_MASK);
if (str) {
print_xlat_ex(flags & SOCK_TYPE_MASK, str, XLAT_STYLE_DEFAULT);
flags &= ~SOCK_TYPE_MASK;
if (!flags)
return;
tprints("|");
}
printflags(sock_type_flags, flags, "SOCK_???");
}
SYS_FUNC(socket)
1999-02-19 03:21:36 +03:00
{
printxval(addrfams, tcp->u_arg[0], "AF_???");
tprints(", ");
tprint_sock_type(tcp->u_arg[1]);
tprints(", ");
switch (tcp->u_arg[0]) {
case AF_INET:
case AF_INET6:
printxval(inet_protocols, tcp->u_arg[2], "IPPROTO_???");
break;
case AF_NETLINK:
printxval(netlink_protocols, tcp->u_arg[2], "NETLINK_???");
break;
case AF_IRDA:
printxval_index(can_protocols, tcp->u_arg[2], "IRDAPROTO_???");
break;
case AF_CAN:
printxval_index(can_protocols, tcp->u_arg[2], "CAN_???");
break;
case AF_BLUETOOTH:
printxval_index(bt_protocols, tcp->u_arg[2], "BTPROTO_???");
break;
case AF_RXRPC:
printxval(addrfams, tcp->u_arg[2], "AF_???");
break;
case AF_ISDN:
printxval(isdn_protocols, tcp->u_arg[2], "ISDN_P_???");
break;
case AF_PHONET:
printxval_index(phonet_protocols, tcp->u_arg[2], "PN_PROTO_???");
break;
case AF_CAIF:
printxval_index(caif_protocols, tcp->u_arg[2], "CAIFPROTO_???");
break;
case AF_NFC:
printxval_index(nfc_protocols, tcp->u_arg[2],
"NFC_SOCKPROTO_???");
break;
case AF_KCM:
printxval_index(kcm_protocols, tcp->u_arg[2], "KCMPROTO_???");
break;
case AF_SMC:
printxval_index(smc_protocols, tcp->u_arg[2], "SMCPROTO_???");
break;
default:
tprintf("%" PRI_klu, tcp->u_arg[2]);
break;
1999-02-19 03:21:36 +03:00
}
return RVAL_DECODED | RVAL_FD;
1999-02-19 03:21:36 +03:00
}
static bool
fetch_socklen(struct tcb *const tcp, int *const plen,
const kernel_ulong_t sockaddr, const kernel_ulong_t socklen)
{
return verbose(tcp) && sockaddr && socklen
&& umove(tcp, socklen, plen) == 0;
}
static int
decode_sockname(struct tcb *tcp)
1999-02-19 03:21:36 +03:00
{
int ulen, rlen;
1999-02-19 03:21:36 +03:00
if (entering(tcp)) {
printfd(tcp, tcp->u_arg[0]);
tprints(", ");
if (fetch_socklen(tcp, &ulen, tcp->u_arg[1], tcp->u_arg[2])) {
set_tcb_priv_ulong(tcp, ulen);
return 0;
} else {
printaddr(tcp->u_arg[1]);
tprints(", ");
printaddr(tcp->u_arg[2]);
return RVAL_DECODED;
}
}
ulen = get_tcb_priv_ulong(tcp);
if (syserror(tcp) || umove(tcp, tcp->u_arg[2], &rlen) < 0) {
printaddr(tcp->u_arg[1]);
tprintf(", [%d]", ulen);
} else {
decode_sockaddr(tcp, tcp->u_arg[1], ulen > rlen ? rlen : ulen);
if (ulen != rlen)
tprintf(", [%d->%d]", ulen, rlen);
else
tprintf(", [%d]", rlen);
1999-02-19 03:21:36 +03:00
}
return RVAL_DECODED;
1999-02-19 03:21:36 +03:00
}
SYS_FUNC(accept)
{
return decode_sockname(tcp) | RVAL_FD;
}
SYS_FUNC(accept4)
{
int rc = decode_sockname(tcp);
if (rc & RVAL_DECODED) {
tprints(", ");
printflags(sock_type_flags, tcp->u_arg[3], "SOCK_???");
}
return rc | RVAL_FD;
}
SYS_FUNC(send)
1999-02-19 03:21:36 +03:00
{
printfd(tcp, tcp->u_arg[0]);
tprints(", ");
decode_sockbuf(tcp, tcp->u_arg[0], tcp->u_arg[1], tcp->u_arg[2]);
tprintf(", %" PRI_klu ", ", tcp->u_arg[2]);
/* flags */
printflags(msg_flags, tcp->u_arg[3], "MSG_???");
return RVAL_DECODED;
1999-02-19 03:21:36 +03:00
}
SYS_FUNC(sendto)
1999-02-19 03:21:36 +03:00
{
printfd(tcp, tcp->u_arg[0]);
tprints(", ");
decode_sockbuf(tcp, tcp->u_arg[0], tcp->u_arg[1], tcp->u_arg[2]);
tprintf(", %" PRI_klu ", ", tcp->u_arg[2]);
/* flags */
printflags(msg_flags, tcp->u_arg[3], "MSG_???");
/* to address */
const int addrlen = tcp->u_arg[5];
tprints(", ");
decode_sockaddr(tcp, tcp->u_arg[4], addrlen);
/* to length */
tprintf(", %d", addrlen);
return RVAL_DECODED;
1999-02-19 03:21:36 +03:00
}
SYS_FUNC(recv)
1999-02-19 03:21:36 +03:00
{
if (entering(tcp)) {
printfd(tcp, tcp->u_arg[0]);
tprints(", ");
1999-02-19 03:21:36 +03:00
} else {
if (syserror(tcp)) {
printaddr(tcp->u_arg[1]);
} else {
decode_sockbuf(tcp, tcp->u_arg[0], tcp->u_arg[1],
tcp->u_rval);
}
1999-02-19 03:21:36 +03:00
tprintf(", %" PRI_klu ", ", tcp->u_arg[2]);
2005-05-31 Dmitry V. Levin <ldv@altlinux.org> * util.c (printxval): Change third argument from "char *" to "const char *". (printflags): Add third argument, "const char *", with similar meaning to the third argument of printxval(). * defs.h (printxval): Change third argument from "char *" to "const char *". (printflags): Add third argument. * bjm.c (sys_query_module) [LINUX]: Pass third argument to printflags(). * desc.c (sys_fcntl): Likewise. (sys_flock) [LOCK_SH]: Likewise. (print_epoll_event) [HAVE_SYS_EPOLL_H]: Likewise. * file.c (sys_open): Likewise. (solaris_open) [LINUXSPARC]: Likewise. (sys_access): Likewise. (sys_chflags, sys_fchflags) [FREEBSD]: Likewise. (realprintstat) [HAVE_LONG_LONG_OFF_T && HAVE_STRUCT_STAT_ST_FLAGS]: Likewise. (printstat64) [HAVE_STAT64 && HAVE_STRUCT_STAT_ST_FLAGS]: Likewise. (sys_setxattr, sys_fsetxattr): Likewise. * ipc.c (sys_msgget, sys_msgsnd, sys_msgrcv, sys_semget, sys_shmget, sys_shmat) [LINUX || SUNOS4 || FREEBSD]: Likewise. (sys_mq_open) [LINUX]: Likewise. (printmqattr) [HAVE_MQUEUE_H]: Likewise. * mem.c (print_mmap) [!HAVE_LONG_LONG_OFF_T]: Likewise. (sys_mmap64) [_LFS64_LARGEFILE || HAVE_LONG_LONG_OFF_T]: Likewise. (sys_mprotect): Likewise. (sys_mremap, sys_madvise, sys_mlockall) [LINUX]: Likewise. (sys_msync) [MS_ASYNC]: Likewise. (sys_mctl) [MC_SYNC]: Likewise. (sys_remap_file_pages, sys_mbind, sys_get_mempolicy) [LINUX]: Likewise. * net.c (printmsghdr) [HAVE_STRUCT_MSGHDR_MSG_CONTROL]: Likewise. (sys_send, sys_sendto): Likewise. (sys_sendmsg) [HAVE_SENDMSG]: Likewise. (sys_recv, sys_recvfrom): Likewise. (sys_recvmsg) [HAVE_SENDMSG]: Likewise. (printicmpfilter) [ICMP_FILTER]: Likewise. * proc.c (proc_ioctl) [SVR4 && !HAVE_MP_PROCFS || FREEBSD]: Likewise. * process.c (sys_clone) [LINUX]: Likewise. (printwaitn): Likewise. (sys_waitid) [SVR4 || LINUX]: Likewise. * signal.c (sys_sigvec) [SUNOS4 || FREEBSD]: Likewise. (sys_sigaction): Likewise. (printcontext) [SVR4]: Likewise. (print_stack_t) [LINUX) || FREEBSD]: Likewise. (sys_rt_sigaction) [LINUX]: Likewise. * sock.c (sock_ioctl) [LINUX]: Likewise. * stream.c (sys_putmsg, sys_getmsg): Likewise. (sys_putpmsg) [SYS_putpmsg]: Likewise. (sys_getpmsg) [SYS_getpmsg]: Likewise. (sys_poll): Likewise. (print_transport_message) [TI_BIND]: Likewise. (stream_ioctl): Likewise. * system.c (sys_mount, sys_reboot): Likewise. (sys_cacheflush) [LINUX && M68K]: Likewise. (sys_capget, sys_capset) [SYS_capget]: Likewise. * term.c (term_ioctl) [TIOCMGET]: Likewise. * time.c (sys_clock_nanosleep, sys_timer_settime) [LINUX]: Likewise. Fixes RH#159310.
2005-06-01 23:02:36 +04:00
printflags(msg_flags, tcp->u_arg[3], "MSG_???");
1999-02-19 03:21:36 +03:00
}
return 0;
}
SYS_FUNC(recvfrom)
1999-02-19 03:21:36 +03:00
{
int ulen, rlen;
1999-02-19 03:21:36 +03:00
if (entering(tcp)) {
printfd(tcp, tcp->u_arg[0]);
tprints(", ");
if (fetch_socklen(tcp, &ulen, tcp->u_arg[4], tcp->u_arg[5])) {
set_tcb_priv_ulong(tcp, ulen);
}
1999-02-19 03:21:36 +03:00
} else {
/* buf */
1999-02-19 03:21:36 +03:00
if (syserror(tcp)) {
printaddr(tcp->u_arg[1]);
} else {
decode_sockbuf(tcp, tcp->u_arg[0], tcp->u_arg[1],
tcp->u_rval);
1999-02-19 03:21:36 +03:00
}
/* size */
tprintf(", %" PRI_klu ", ", tcp->u_arg[2]);
1999-02-19 03:21:36 +03:00
/* flags */
2005-05-31 Dmitry V. Levin <ldv@altlinux.org> * util.c (printxval): Change third argument from "char *" to "const char *". (printflags): Add third argument, "const char *", with similar meaning to the third argument of printxval(). * defs.h (printxval): Change third argument from "char *" to "const char *". (printflags): Add third argument. * bjm.c (sys_query_module) [LINUX]: Pass third argument to printflags(). * desc.c (sys_fcntl): Likewise. (sys_flock) [LOCK_SH]: Likewise. (print_epoll_event) [HAVE_SYS_EPOLL_H]: Likewise. * file.c (sys_open): Likewise. (solaris_open) [LINUXSPARC]: Likewise. (sys_access): Likewise. (sys_chflags, sys_fchflags) [FREEBSD]: Likewise. (realprintstat) [HAVE_LONG_LONG_OFF_T && HAVE_STRUCT_STAT_ST_FLAGS]: Likewise. (printstat64) [HAVE_STAT64 && HAVE_STRUCT_STAT_ST_FLAGS]: Likewise. (sys_setxattr, sys_fsetxattr): Likewise. * ipc.c (sys_msgget, sys_msgsnd, sys_msgrcv, sys_semget, sys_shmget, sys_shmat) [LINUX || SUNOS4 || FREEBSD]: Likewise. (sys_mq_open) [LINUX]: Likewise. (printmqattr) [HAVE_MQUEUE_H]: Likewise. * mem.c (print_mmap) [!HAVE_LONG_LONG_OFF_T]: Likewise. (sys_mmap64) [_LFS64_LARGEFILE || HAVE_LONG_LONG_OFF_T]: Likewise. (sys_mprotect): Likewise. (sys_mremap, sys_madvise, sys_mlockall) [LINUX]: Likewise. (sys_msync) [MS_ASYNC]: Likewise. (sys_mctl) [MC_SYNC]: Likewise. (sys_remap_file_pages, sys_mbind, sys_get_mempolicy) [LINUX]: Likewise. * net.c (printmsghdr) [HAVE_STRUCT_MSGHDR_MSG_CONTROL]: Likewise. (sys_send, sys_sendto): Likewise. (sys_sendmsg) [HAVE_SENDMSG]: Likewise. (sys_recv, sys_recvfrom): Likewise. (sys_recvmsg) [HAVE_SENDMSG]: Likewise. (printicmpfilter) [ICMP_FILTER]: Likewise. * proc.c (proc_ioctl) [SVR4 && !HAVE_MP_PROCFS || FREEBSD]: Likewise. * process.c (sys_clone) [LINUX]: Likewise. (printwaitn): Likewise. (sys_waitid) [SVR4 || LINUX]: Likewise. * signal.c (sys_sigvec) [SUNOS4 || FREEBSD]: Likewise. (sys_sigaction): Likewise. (printcontext) [SVR4]: Likewise. (print_stack_t) [LINUX) || FREEBSD]: Likewise. (sys_rt_sigaction) [LINUX]: Likewise. * sock.c (sock_ioctl) [LINUX]: Likewise. * stream.c (sys_putmsg, sys_getmsg): Likewise. (sys_putpmsg) [SYS_putpmsg]: Likewise. (sys_getpmsg) [SYS_getpmsg]: Likewise. (sys_poll): Likewise. (print_transport_message) [TI_BIND]: Likewise. (stream_ioctl): Likewise. * system.c (sys_mount, sys_reboot): Likewise. (sys_cacheflush) [LINUX && M68K]: Likewise. (sys_capget, sys_capset) [SYS_capget]: Likewise. * term.c (term_ioctl) [TIOCMGET]: Likewise. * time.c (sys_clock_nanosleep, sys_timer_settime) [LINUX]: Likewise. Fixes RH#159310.
2005-06-01 23:02:36 +04:00
printflags(msg_flags, tcp->u_arg[3], "MSG_???");
tprints(", ");
ulen = get_tcb_priv_ulong(tcp);
if (!fetch_socklen(tcp, &rlen, tcp->u_arg[4], tcp->u_arg[5])) {
/* from address */
printaddr(tcp->u_arg[4]);
tprints(", ");
/* from length */
printaddr(tcp->u_arg[5]);
1999-02-19 03:21:36 +03:00
return 0;
}
if (syserror(tcp)) {
/* from address */
printaddr(tcp->u_arg[4]);
/* from length */
tprintf(", [%d]", ulen);
return 0;
}
/* from address */
decode_sockaddr(tcp, tcp->u_arg[4], ulen > rlen ? rlen : ulen);
1999-02-19 03:21:36 +03:00
/* from length */
if (ulen != rlen)
tprintf(", [%d->%d]", ulen, rlen);
else
tprintf(", [%d]", rlen);
1999-02-19 03:21:36 +03:00
}
return 0;
}
SYS_FUNC(getsockname)
1999-02-19 03:21:36 +03:00
{
return decode_sockname(tcp);
1999-02-19 03:21:36 +03:00
}
static void
printpair_fd(struct tcb *tcp, const int i0, const int i1)
{
tprints("[");
printfd(tcp, i0);
tprints(", ");
printfd(tcp, i1);
tprints("]");
}
static void
decode_pair_fd(struct tcb *const tcp, const kernel_ulong_t addr)
{
int pair[2];
if (umove_or_printaddr(tcp, addr, &pair))
return;
printpair_fd(tcp, pair[0], pair[1]);
}
static int
do_pipe(struct tcb *tcp, int flags_arg)
{
1999-02-19 03:21:36 +03:00
if (exiting(tcp)) {
decode_pair_fd(tcp, tcp->u_arg[0]);
if (flags_arg >= 0) {
tprints(", ");
printflags(open_mode_flags, tcp->u_arg[flags_arg], "O_???");
}
}
1999-02-19 03:21:36 +03:00
return 0;
}
SYS_FUNC(pipe)
{
#if HAVE_ARCH_GETRVAL2
if (exiting(tcp) && !syserror(tcp))
printpair_fd(tcp, tcp->u_rval, getrval2(tcp));
return 0;
#else
return do_pipe(tcp, -1);
#endif
}
SYS_FUNC(pipe2)
{
return do_pipe(tcp, 1);
}
SYS_FUNC(socketpair)
1999-02-19 03:21:36 +03:00
{
if (entering(tcp)) {
printxval(addrfams, tcp->u_arg[0], "AF_???");
tprints(", ");
tprint_sock_type(tcp->u_arg[1]);
tprintf(", %" PRI_klu, tcp->u_arg[2]);
1999-02-19 03:21:36 +03:00
} else {
tprints(", ");
decode_pair_fd(tcp, tcp->u_arg[3]);
1999-02-19 03:21:36 +03:00
}
return 0;
}
xlat: rename *sock*options xlat tables Such names as sockrxrpcoptions are incomprehensible. * xlat/getsockipoptions.in: Rename to xlat/getsock_ip_options.in. * xlat/getsockipv6options.in: Rename to xlat/getsock_ipv6_options.in. * xlat/setsockipoptions.in: Rename to xlat/setsock_ip_options.in. * xlat/setsockipv6options.in: Rename to xlat/setsock_ipv6_options.in. * xlat/sockalgoptions.in: Rename to xlat/sock_alg_options.in. * xlat/sockbluetoothoptions.in: Rename to xlat/sock_bluetooth_options.in. * xlat/sockcaifoptions.in: Rename to xlat/sock_caif_options.in. * xlat/sockdccpoptions.in: Rename to xlat/sock_dccp_options.in. * xlat/sockipoptions.in: Rename to xlat/sock_ip_options.in. * xlat/sockipv6options.in: Rename to xlat/sock_ipv6_options.in. * xlat/sockipxoptions.in: Rename to xlat/sock_ipx_options.in. * xlat/sockirdaoptions.in: Rename to xlat/sock_irda_options.in. * xlat/sockiucvoptions.in: Rename to xlat/sock_iucv_options.in. * xlat/sockkcmoptions.in: Rename to xlat/sock_kcm_options.in. * xlat/sockllcoptions.in: Rename to xlat/sock_llc_options.in. * xlat/socknetlinkoptions.in: Rename to xlat/sock_netlink_options.in. * xlat/socknfcllcpoptions.in: Rename to xlat/sock_nfcllcp_options.in. * xlat/sockoptions.in: Rename to xlat/sock_options.in. * xlat/sockpacketoptions.in: Rename to xlat/sock_packet_options.in. * xlat/sockpnpoptions.in: Rename to xlat/sock_pnp_options.in. * xlat/sockpppol2tpoptions.in: Rename to xlat/sock_pppol2tp_options.in. * xlat/sockrawoptions.in: Rename to xlat/sock_raw_options.in. * xlat/sockrdsoptions.in: Rename to xlat/sock_rds_options.in. * xlat/sockrxrpcoptions.in: Rename to xlat/sock_rxrpc_options.in. * xlat/socksctpoptions.in: Rename to xlat/sock_sctp_options.in. * xlat/socktcpoptions.in: Rename to xlat/sock_tcp_options.in. * xlat/socktipcoptions.in: Rename to xlat/sock_tipc_options.in. * xlat/socktlsoptions.in: Rename to xlat/sock_tls_options.in. * xlat/sockudpoptions.in: Rename to xlat/sock_udp_options.in. * net.c: Update.
2018-05-08 23:59:20 +03:00
#include "xlat/sock_options.h"
#include "xlat/getsock_options.h"
#include "xlat/setsock_options.h"
xlat: rename *sock*options xlat tables Such names as sockrxrpcoptions are incomprehensible. * xlat/getsockipoptions.in: Rename to xlat/getsock_ip_options.in. * xlat/getsockipv6options.in: Rename to xlat/getsock_ipv6_options.in. * xlat/setsockipoptions.in: Rename to xlat/setsock_ip_options.in. * xlat/setsockipv6options.in: Rename to xlat/setsock_ipv6_options.in. * xlat/sockalgoptions.in: Rename to xlat/sock_alg_options.in. * xlat/sockbluetoothoptions.in: Rename to xlat/sock_bluetooth_options.in. * xlat/sockcaifoptions.in: Rename to xlat/sock_caif_options.in. * xlat/sockdccpoptions.in: Rename to xlat/sock_dccp_options.in. * xlat/sockipoptions.in: Rename to xlat/sock_ip_options.in. * xlat/sockipv6options.in: Rename to xlat/sock_ipv6_options.in. * xlat/sockipxoptions.in: Rename to xlat/sock_ipx_options.in. * xlat/sockirdaoptions.in: Rename to xlat/sock_irda_options.in. * xlat/sockiucvoptions.in: Rename to xlat/sock_iucv_options.in. * xlat/sockkcmoptions.in: Rename to xlat/sock_kcm_options.in. * xlat/sockllcoptions.in: Rename to xlat/sock_llc_options.in. * xlat/socknetlinkoptions.in: Rename to xlat/sock_netlink_options.in. * xlat/socknfcllcpoptions.in: Rename to xlat/sock_nfcllcp_options.in. * xlat/sockoptions.in: Rename to xlat/sock_options.in. * xlat/sockpacketoptions.in: Rename to xlat/sock_packet_options.in. * xlat/sockpnpoptions.in: Rename to xlat/sock_pnp_options.in. * xlat/sockpppol2tpoptions.in: Rename to xlat/sock_pppol2tp_options.in. * xlat/sockrawoptions.in: Rename to xlat/sock_raw_options.in. * xlat/sockrdsoptions.in: Rename to xlat/sock_rds_options.in. * xlat/sockrxrpcoptions.in: Rename to xlat/sock_rxrpc_options.in. * xlat/socksctpoptions.in: Rename to xlat/sock_sctp_options.in. * xlat/socktcpoptions.in: Rename to xlat/sock_tcp_options.in. * xlat/socktipcoptions.in: Rename to xlat/sock_tipc_options.in. * xlat/socktlsoptions.in: Rename to xlat/sock_tls_options.in. * xlat/sockudpoptions.in: Rename to xlat/sock_udp_options.in. * net.c: Update.
2018-05-08 23:59:20 +03:00
#include "xlat/sock_ip_options.h"
#include "xlat/getsock_ip_options.h"
#include "xlat/setsock_ip_options.h"
#include "xlat/sock_ipv6_options.h"
#include "xlat/getsock_ipv6_options.h"
#include "xlat/setsock_ipv6_options.h"
#include "xlat/sock_ipx_options.h"
#include "xlat/sock_netlink_options.h"
#include "xlat/sock_packet_options.h"
#include "xlat/sock_raw_options.h"
#include "xlat/sock_sctp_options.h"
#include "xlat/sock_tcp_options.h"
#include "xlat/sock_udp_options.h"
#include "xlat/sock_irda_options.h"
#include "xlat/sock_llc_options.h"
#include "xlat/sock_dccp_options.h"
#include "xlat/sock_tipc_options.h"
#include "xlat/sock_rxrpc_options.h"
#include "xlat/sock_pppol2tp_options.h"
#include "xlat/sock_bluetooth_options.h"
#include "xlat/sock_pnp_options.h"
#include "xlat/sock_rds_options.h"
#include "xlat/sock_iucv_options.h"
#include "xlat/sock_caif_options.h"
#include "xlat/sock_alg_options.h"
#include "xlat/sock_nfcllcp_options.h"
#include "xlat/sock_kcm_options.h"
#include "xlat/sock_tls_options.h"
static void
print_sockopt_fd_level_name(struct tcb *tcp, int fd, unsigned int level,
unsigned int name, bool is_getsockopt)
1999-02-19 03:21:36 +03:00
{
printfd(tcp, fd);
tprints(", ");
printxval_search(socketlayers, level, "SOL_??");
tprints(", ");
switch (level) {
case SOL_SOCKET:
printxvals(name, "SO_???", sock_options,
is_getsockopt ? getsock_options :
setsock_options, NULL);
break;
case SOL_IP:
xlat: rename *sock*options xlat tables Such names as sockrxrpcoptions are incomprehensible. * xlat/getsockipoptions.in: Rename to xlat/getsock_ip_options.in. * xlat/getsockipv6options.in: Rename to xlat/getsock_ipv6_options.in. * xlat/setsockipoptions.in: Rename to xlat/setsock_ip_options.in. * xlat/setsockipv6options.in: Rename to xlat/setsock_ipv6_options.in. * xlat/sockalgoptions.in: Rename to xlat/sock_alg_options.in. * xlat/sockbluetoothoptions.in: Rename to xlat/sock_bluetooth_options.in. * xlat/sockcaifoptions.in: Rename to xlat/sock_caif_options.in. * xlat/sockdccpoptions.in: Rename to xlat/sock_dccp_options.in. * xlat/sockipoptions.in: Rename to xlat/sock_ip_options.in. * xlat/sockipv6options.in: Rename to xlat/sock_ipv6_options.in. * xlat/sockipxoptions.in: Rename to xlat/sock_ipx_options.in. * xlat/sockirdaoptions.in: Rename to xlat/sock_irda_options.in. * xlat/sockiucvoptions.in: Rename to xlat/sock_iucv_options.in. * xlat/sockkcmoptions.in: Rename to xlat/sock_kcm_options.in. * xlat/sockllcoptions.in: Rename to xlat/sock_llc_options.in. * xlat/socknetlinkoptions.in: Rename to xlat/sock_netlink_options.in. * xlat/socknfcllcpoptions.in: Rename to xlat/sock_nfcllcp_options.in. * xlat/sockoptions.in: Rename to xlat/sock_options.in. * xlat/sockpacketoptions.in: Rename to xlat/sock_packet_options.in. * xlat/sockpnpoptions.in: Rename to xlat/sock_pnp_options.in. * xlat/sockpppol2tpoptions.in: Rename to xlat/sock_pppol2tp_options.in. * xlat/sockrawoptions.in: Rename to xlat/sock_raw_options.in. * xlat/sockrdsoptions.in: Rename to xlat/sock_rds_options.in. * xlat/sockrxrpcoptions.in: Rename to xlat/sock_rxrpc_options.in. * xlat/socksctpoptions.in: Rename to xlat/sock_sctp_options.in. * xlat/socktcpoptions.in: Rename to xlat/sock_tcp_options.in. * xlat/socktipcoptions.in: Rename to xlat/sock_tipc_options.in. * xlat/socktlsoptions.in: Rename to xlat/sock_tls_options.in. * xlat/sockudpoptions.in: Rename to xlat/sock_udp_options.in. * net.c: Update.
2018-05-08 23:59:20 +03:00
printxvals(name, "IP_???", sock_ip_options,
is_getsockopt ? getsock_ip_options :
setsock_ip_options, NULL);
break;
case SOL_IPV6:
xlat: rename *sock*options xlat tables Such names as sockrxrpcoptions are incomprehensible. * xlat/getsockipoptions.in: Rename to xlat/getsock_ip_options.in. * xlat/getsockipv6options.in: Rename to xlat/getsock_ipv6_options.in. * xlat/setsockipoptions.in: Rename to xlat/setsock_ip_options.in. * xlat/setsockipv6options.in: Rename to xlat/setsock_ipv6_options.in. * xlat/sockalgoptions.in: Rename to xlat/sock_alg_options.in. * xlat/sockbluetoothoptions.in: Rename to xlat/sock_bluetooth_options.in. * xlat/sockcaifoptions.in: Rename to xlat/sock_caif_options.in. * xlat/sockdccpoptions.in: Rename to xlat/sock_dccp_options.in. * xlat/sockipoptions.in: Rename to xlat/sock_ip_options.in. * xlat/sockipv6options.in: Rename to xlat/sock_ipv6_options.in. * xlat/sockipxoptions.in: Rename to xlat/sock_ipx_options.in. * xlat/sockirdaoptions.in: Rename to xlat/sock_irda_options.in. * xlat/sockiucvoptions.in: Rename to xlat/sock_iucv_options.in. * xlat/sockkcmoptions.in: Rename to xlat/sock_kcm_options.in. * xlat/sockllcoptions.in: Rename to xlat/sock_llc_options.in. * xlat/socknetlinkoptions.in: Rename to xlat/sock_netlink_options.in. * xlat/socknfcllcpoptions.in: Rename to xlat/sock_nfcllcp_options.in. * xlat/sockoptions.in: Rename to xlat/sock_options.in. * xlat/sockpacketoptions.in: Rename to xlat/sock_packet_options.in. * xlat/sockpnpoptions.in: Rename to xlat/sock_pnp_options.in. * xlat/sockpppol2tpoptions.in: Rename to xlat/sock_pppol2tp_options.in. * xlat/sockrawoptions.in: Rename to xlat/sock_raw_options.in. * xlat/sockrdsoptions.in: Rename to xlat/sock_rds_options.in. * xlat/sockrxrpcoptions.in: Rename to xlat/sock_rxrpc_options.in. * xlat/socksctpoptions.in: Rename to xlat/sock_sctp_options.in. * xlat/socktcpoptions.in: Rename to xlat/sock_tcp_options.in. * xlat/socktipcoptions.in: Rename to xlat/sock_tipc_options.in. * xlat/socktlsoptions.in: Rename to xlat/sock_tls_options.in. * xlat/sockudpoptions.in: Rename to xlat/sock_udp_options.in. * net.c: Update.
2018-05-08 23:59:20 +03:00
printxvals(name, "IPV6_???", sock_ipv6_options,
is_getsockopt ? getsock_ipv6_options :
setsock_ipv6_options, NULL);
break;
case SOL_IPX:
xlat: rename *sock*options xlat tables Such names as sockrxrpcoptions are incomprehensible. * xlat/getsockipoptions.in: Rename to xlat/getsock_ip_options.in. * xlat/getsockipv6options.in: Rename to xlat/getsock_ipv6_options.in. * xlat/setsockipoptions.in: Rename to xlat/setsock_ip_options.in. * xlat/setsockipv6options.in: Rename to xlat/setsock_ipv6_options.in. * xlat/sockalgoptions.in: Rename to xlat/sock_alg_options.in. * xlat/sockbluetoothoptions.in: Rename to xlat/sock_bluetooth_options.in. * xlat/sockcaifoptions.in: Rename to xlat/sock_caif_options.in. * xlat/sockdccpoptions.in: Rename to xlat/sock_dccp_options.in. * xlat/sockipoptions.in: Rename to xlat/sock_ip_options.in. * xlat/sockipv6options.in: Rename to xlat/sock_ipv6_options.in. * xlat/sockipxoptions.in: Rename to xlat/sock_ipx_options.in. * xlat/sockirdaoptions.in: Rename to xlat/sock_irda_options.in. * xlat/sockiucvoptions.in: Rename to xlat/sock_iucv_options.in. * xlat/sockkcmoptions.in: Rename to xlat/sock_kcm_options.in. * xlat/sockllcoptions.in: Rename to xlat/sock_llc_options.in. * xlat/socknetlinkoptions.in: Rename to xlat/sock_netlink_options.in. * xlat/socknfcllcpoptions.in: Rename to xlat/sock_nfcllcp_options.in. * xlat/sockoptions.in: Rename to xlat/sock_options.in. * xlat/sockpacketoptions.in: Rename to xlat/sock_packet_options.in. * xlat/sockpnpoptions.in: Rename to xlat/sock_pnp_options.in. * xlat/sockpppol2tpoptions.in: Rename to xlat/sock_pppol2tp_options.in. * xlat/sockrawoptions.in: Rename to xlat/sock_raw_options.in. * xlat/sockrdsoptions.in: Rename to xlat/sock_rds_options.in. * xlat/sockrxrpcoptions.in: Rename to xlat/sock_rxrpc_options.in. * xlat/socksctpoptions.in: Rename to xlat/sock_sctp_options.in. * xlat/socktcpoptions.in: Rename to xlat/sock_tcp_options.in. * xlat/socktipcoptions.in: Rename to xlat/sock_tipc_options.in. * xlat/socktlsoptions.in: Rename to xlat/sock_tls_options.in. * xlat/sockudpoptions.in: Rename to xlat/sock_udp_options.in. * net.c: Update.
2018-05-08 23:59:20 +03:00
printxval(sock_ipx_options, name, "IPX_???");
break;
case SOL_PACKET:
xlat: rename *sock*options xlat tables Such names as sockrxrpcoptions are incomprehensible. * xlat/getsockipoptions.in: Rename to xlat/getsock_ip_options.in. * xlat/getsockipv6options.in: Rename to xlat/getsock_ipv6_options.in. * xlat/setsockipoptions.in: Rename to xlat/setsock_ip_options.in. * xlat/setsockipv6options.in: Rename to xlat/setsock_ipv6_options.in. * xlat/sockalgoptions.in: Rename to xlat/sock_alg_options.in. * xlat/sockbluetoothoptions.in: Rename to xlat/sock_bluetooth_options.in. * xlat/sockcaifoptions.in: Rename to xlat/sock_caif_options.in. * xlat/sockdccpoptions.in: Rename to xlat/sock_dccp_options.in. * xlat/sockipoptions.in: Rename to xlat/sock_ip_options.in. * xlat/sockipv6options.in: Rename to xlat/sock_ipv6_options.in. * xlat/sockipxoptions.in: Rename to xlat/sock_ipx_options.in. * xlat/sockirdaoptions.in: Rename to xlat/sock_irda_options.in. * xlat/sockiucvoptions.in: Rename to xlat/sock_iucv_options.in. * xlat/sockkcmoptions.in: Rename to xlat/sock_kcm_options.in. * xlat/sockllcoptions.in: Rename to xlat/sock_llc_options.in. * xlat/socknetlinkoptions.in: Rename to xlat/sock_netlink_options.in. * xlat/socknfcllcpoptions.in: Rename to xlat/sock_nfcllcp_options.in. * xlat/sockoptions.in: Rename to xlat/sock_options.in. * xlat/sockpacketoptions.in: Rename to xlat/sock_packet_options.in. * xlat/sockpnpoptions.in: Rename to xlat/sock_pnp_options.in. * xlat/sockpppol2tpoptions.in: Rename to xlat/sock_pppol2tp_options.in. * xlat/sockrawoptions.in: Rename to xlat/sock_raw_options.in. * xlat/sockrdsoptions.in: Rename to xlat/sock_rds_options.in. * xlat/sockrxrpcoptions.in: Rename to xlat/sock_rxrpc_options.in. * xlat/socksctpoptions.in: Rename to xlat/sock_sctp_options.in. * xlat/socktcpoptions.in: Rename to xlat/sock_tcp_options.in. * xlat/socktipcoptions.in: Rename to xlat/sock_tipc_options.in. * xlat/socktlsoptions.in: Rename to xlat/sock_tls_options.in. * xlat/sockudpoptions.in: Rename to xlat/sock_udp_options.in. * net.c: Update.
2018-05-08 23:59:20 +03:00
printxval(sock_packet_options, name, "PACKET_???");
break;
case SOL_TCP:
xlat: rename *sock*options xlat tables Such names as sockrxrpcoptions are incomprehensible. * xlat/getsockipoptions.in: Rename to xlat/getsock_ip_options.in. * xlat/getsockipv6options.in: Rename to xlat/getsock_ipv6_options.in. * xlat/setsockipoptions.in: Rename to xlat/setsock_ip_options.in. * xlat/setsockipv6options.in: Rename to xlat/setsock_ipv6_options.in. * xlat/sockalgoptions.in: Rename to xlat/sock_alg_options.in. * xlat/sockbluetoothoptions.in: Rename to xlat/sock_bluetooth_options.in. * xlat/sockcaifoptions.in: Rename to xlat/sock_caif_options.in. * xlat/sockdccpoptions.in: Rename to xlat/sock_dccp_options.in. * xlat/sockipoptions.in: Rename to xlat/sock_ip_options.in. * xlat/sockipv6options.in: Rename to xlat/sock_ipv6_options.in. * xlat/sockipxoptions.in: Rename to xlat/sock_ipx_options.in. * xlat/sockirdaoptions.in: Rename to xlat/sock_irda_options.in. * xlat/sockiucvoptions.in: Rename to xlat/sock_iucv_options.in. * xlat/sockkcmoptions.in: Rename to xlat/sock_kcm_options.in. * xlat/sockllcoptions.in: Rename to xlat/sock_llc_options.in. * xlat/socknetlinkoptions.in: Rename to xlat/sock_netlink_options.in. * xlat/socknfcllcpoptions.in: Rename to xlat/sock_nfcllcp_options.in. * xlat/sockoptions.in: Rename to xlat/sock_options.in. * xlat/sockpacketoptions.in: Rename to xlat/sock_packet_options.in. * xlat/sockpnpoptions.in: Rename to xlat/sock_pnp_options.in. * xlat/sockpppol2tpoptions.in: Rename to xlat/sock_pppol2tp_options.in. * xlat/sockrawoptions.in: Rename to xlat/sock_raw_options.in. * xlat/sockrdsoptions.in: Rename to xlat/sock_rds_options.in. * xlat/sockrxrpcoptions.in: Rename to xlat/sock_rxrpc_options.in. * xlat/socksctpoptions.in: Rename to xlat/sock_sctp_options.in. * xlat/socktcpoptions.in: Rename to xlat/sock_tcp_options.in. * xlat/socktipcoptions.in: Rename to xlat/sock_tipc_options.in. * xlat/socktlsoptions.in: Rename to xlat/sock_tls_options.in. * xlat/sockudpoptions.in: Rename to xlat/sock_udp_options.in. * net.c: Update.
2018-05-08 23:59:20 +03:00
printxval(sock_tcp_options, name, "TCP_???");
break;
case SOL_SCTP:
xlat: rename *sock*options xlat tables Such names as sockrxrpcoptions are incomprehensible. * xlat/getsockipoptions.in: Rename to xlat/getsock_ip_options.in. * xlat/getsockipv6options.in: Rename to xlat/getsock_ipv6_options.in. * xlat/setsockipoptions.in: Rename to xlat/setsock_ip_options.in. * xlat/setsockipv6options.in: Rename to xlat/setsock_ipv6_options.in. * xlat/sockalgoptions.in: Rename to xlat/sock_alg_options.in. * xlat/sockbluetoothoptions.in: Rename to xlat/sock_bluetooth_options.in. * xlat/sockcaifoptions.in: Rename to xlat/sock_caif_options.in. * xlat/sockdccpoptions.in: Rename to xlat/sock_dccp_options.in. * xlat/sockipoptions.in: Rename to xlat/sock_ip_options.in. * xlat/sockipv6options.in: Rename to xlat/sock_ipv6_options.in. * xlat/sockipxoptions.in: Rename to xlat/sock_ipx_options.in. * xlat/sockirdaoptions.in: Rename to xlat/sock_irda_options.in. * xlat/sockiucvoptions.in: Rename to xlat/sock_iucv_options.in. * xlat/sockkcmoptions.in: Rename to xlat/sock_kcm_options.in. * xlat/sockllcoptions.in: Rename to xlat/sock_llc_options.in. * xlat/socknetlinkoptions.in: Rename to xlat/sock_netlink_options.in. * xlat/socknfcllcpoptions.in: Rename to xlat/sock_nfcllcp_options.in. * xlat/sockoptions.in: Rename to xlat/sock_options.in. * xlat/sockpacketoptions.in: Rename to xlat/sock_packet_options.in. * xlat/sockpnpoptions.in: Rename to xlat/sock_pnp_options.in. * xlat/sockpppol2tpoptions.in: Rename to xlat/sock_pppol2tp_options.in. * xlat/sockrawoptions.in: Rename to xlat/sock_raw_options.in. * xlat/sockrdsoptions.in: Rename to xlat/sock_rds_options.in. * xlat/sockrxrpcoptions.in: Rename to xlat/sock_rxrpc_options.in. * xlat/socksctpoptions.in: Rename to xlat/sock_sctp_options.in. * xlat/socktcpoptions.in: Rename to xlat/sock_tcp_options.in. * xlat/socktipcoptions.in: Rename to xlat/sock_tipc_options.in. * xlat/socktlsoptions.in: Rename to xlat/sock_tls_options.in. * xlat/sockudpoptions.in: Rename to xlat/sock_udp_options.in. * net.c: Update.
2018-05-08 23:59:20 +03:00
printxval(sock_sctp_options, name, "SCTP_???");
break;
case SOL_RAW:
xlat: rename *sock*options xlat tables Such names as sockrxrpcoptions are incomprehensible. * xlat/getsockipoptions.in: Rename to xlat/getsock_ip_options.in. * xlat/getsockipv6options.in: Rename to xlat/getsock_ipv6_options.in. * xlat/setsockipoptions.in: Rename to xlat/setsock_ip_options.in. * xlat/setsockipv6options.in: Rename to xlat/setsock_ipv6_options.in. * xlat/sockalgoptions.in: Rename to xlat/sock_alg_options.in. * xlat/sockbluetoothoptions.in: Rename to xlat/sock_bluetooth_options.in. * xlat/sockcaifoptions.in: Rename to xlat/sock_caif_options.in. * xlat/sockdccpoptions.in: Rename to xlat/sock_dccp_options.in. * xlat/sockipoptions.in: Rename to xlat/sock_ip_options.in. * xlat/sockipv6options.in: Rename to xlat/sock_ipv6_options.in. * xlat/sockipxoptions.in: Rename to xlat/sock_ipx_options.in. * xlat/sockirdaoptions.in: Rename to xlat/sock_irda_options.in. * xlat/sockiucvoptions.in: Rename to xlat/sock_iucv_options.in. * xlat/sockkcmoptions.in: Rename to xlat/sock_kcm_options.in. * xlat/sockllcoptions.in: Rename to xlat/sock_llc_options.in. * xlat/socknetlinkoptions.in: Rename to xlat/sock_netlink_options.in. * xlat/socknfcllcpoptions.in: Rename to xlat/sock_nfcllcp_options.in. * xlat/sockoptions.in: Rename to xlat/sock_options.in. * xlat/sockpacketoptions.in: Rename to xlat/sock_packet_options.in. * xlat/sockpnpoptions.in: Rename to xlat/sock_pnp_options.in. * xlat/sockpppol2tpoptions.in: Rename to xlat/sock_pppol2tp_options.in. * xlat/sockrawoptions.in: Rename to xlat/sock_raw_options.in. * xlat/sockrdsoptions.in: Rename to xlat/sock_rds_options.in. * xlat/sockrxrpcoptions.in: Rename to xlat/sock_rxrpc_options.in. * xlat/socksctpoptions.in: Rename to xlat/sock_sctp_options.in. * xlat/socktcpoptions.in: Rename to xlat/sock_tcp_options.in. * xlat/socktipcoptions.in: Rename to xlat/sock_tipc_options.in. * xlat/socktlsoptions.in: Rename to xlat/sock_tls_options.in. * xlat/sockudpoptions.in: Rename to xlat/sock_udp_options.in. * net.c: Update.
2018-05-08 23:59:20 +03:00
printxval(sock_raw_options, name, "RAW_???");
break;
case SOL_NETLINK:
xlat: rename *sock*options xlat tables Such names as sockrxrpcoptions are incomprehensible. * xlat/getsockipoptions.in: Rename to xlat/getsock_ip_options.in. * xlat/getsockipv6options.in: Rename to xlat/getsock_ipv6_options.in. * xlat/setsockipoptions.in: Rename to xlat/setsock_ip_options.in. * xlat/setsockipv6options.in: Rename to xlat/setsock_ipv6_options.in. * xlat/sockalgoptions.in: Rename to xlat/sock_alg_options.in. * xlat/sockbluetoothoptions.in: Rename to xlat/sock_bluetooth_options.in. * xlat/sockcaifoptions.in: Rename to xlat/sock_caif_options.in. * xlat/sockdccpoptions.in: Rename to xlat/sock_dccp_options.in. * xlat/sockipoptions.in: Rename to xlat/sock_ip_options.in. * xlat/sockipv6options.in: Rename to xlat/sock_ipv6_options.in. * xlat/sockipxoptions.in: Rename to xlat/sock_ipx_options.in. * xlat/sockirdaoptions.in: Rename to xlat/sock_irda_options.in. * xlat/sockiucvoptions.in: Rename to xlat/sock_iucv_options.in. * xlat/sockkcmoptions.in: Rename to xlat/sock_kcm_options.in. * xlat/sockllcoptions.in: Rename to xlat/sock_llc_options.in. * xlat/socknetlinkoptions.in: Rename to xlat/sock_netlink_options.in. * xlat/socknfcllcpoptions.in: Rename to xlat/sock_nfcllcp_options.in. * xlat/sockoptions.in: Rename to xlat/sock_options.in. * xlat/sockpacketoptions.in: Rename to xlat/sock_packet_options.in. * xlat/sockpnpoptions.in: Rename to xlat/sock_pnp_options.in. * xlat/sockpppol2tpoptions.in: Rename to xlat/sock_pppol2tp_options.in. * xlat/sockrawoptions.in: Rename to xlat/sock_raw_options.in. * xlat/sockrdsoptions.in: Rename to xlat/sock_rds_options.in. * xlat/sockrxrpcoptions.in: Rename to xlat/sock_rxrpc_options.in. * xlat/socksctpoptions.in: Rename to xlat/sock_sctp_options.in. * xlat/socktcpoptions.in: Rename to xlat/sock_tcp_options.in. * xlat/socktipcoptions.in: Rename to xlat/sock_tipc_options.in. * xlat/socktlsoptions.in: Rename to xlat/sock_tls_options.in. * xlat/sockudpoptions.in: Rename to xlat/sock_udp_options.in. * net.c: Update.
2018-05-08 23:59:20 +03:00
printxval(sock_netlink_options, name, "NETLINK_???");
break;
case SOL_UDP:
xlat: rename *sock*options xlat tables Such names as sockrxrpcoptions are incomprehensible. * xlat/getsockipoptions.in: Rename to xlat/getsock_ip_options.in. * xlat/getsockipv6options.in: Rename to xlat/getsock_ipv6_options.in. * xlat/setsockipoptions.in: Rename to xlat/setsock_ip_options.in. * xlat/setsockipv6options.in: Rename to xlat/setsock_ipv6_options.in. * xlat/sockalgoptions.in: Rename to xlat/sock_alg_options.in. * xlat/sockbluetoothoptions.in: Rename to xlat/sock_bluetooth_options.in. * xlat/sockcaifoptions.in: Rename to xlat/sock_caif_options.in. * xlat/sockdccpoptions.in: Rename to xlat/sock_dccp_options.in. * xlat/sockipoptions.in: Rename to xlat/sock_ip_options.in. * xlat/sockipv6options.in: Rename to xlat/sock_ipv6_options.in. * xlat/sockipxoptions.in: Rename to xlat/sock_ipx_options.in. * xlat/sockirdaoptions.in: Rename to xlat/sock_irda_options.in. * xlat/sockiucvoptions.in: Rename to xlat/sock_iucv_options.in. * xlat/sockkcmoptions.in: Rename to xlat/sock_kcm_options.in. * xlat/sockllcoptions.in: Rename to xlat/sock_llc_options.in. * xlat/socknetlinkoptions.in: Rename to xlat/sock_netlink_options.in. * xlat/socknfcllcpoptions.in: Rename to xlat/sock_nfcllcp_options.in. * xlat/sockoptions.in: Rename to xlat/sock_options.in. * xlat/sockpacketoptions.in: Rename to xlat/sock_packet_options.in. * xlat/sockpnpoptions.in: Rename to xlat/sock_pnp_options.in. * xlat/sockpppol2tpoptions.in: Rename to xlat/sock_pppol2tp_options.in. * xlat/sockrawoptions.in: Rename to xlat/sock_raw_options.in. * xlat/sockrdsoptions.in: Rename to xlat/sock_rds_options.in. * xlat/sockrxrpcoptions.in: Rename to xlat/sock_rxrpc_options.in. * xlat/socksctpoptions.in: Rename to xlat/sock_sctp_options.in. * xlat/socktcpoptions.in: Rename to xlat/sock_tcp_options.in. * xlat/socktipcoptions.in: Rename to xlat/sock_tipc_options.in. * xlat/socktlsoptions.in: Rename to xlat/sock_tls_options.in. * xlat/sockudpoptions.in: Rename to xlat/sock_udp_options.in. * net.c: Update.
2018-05-08 23:59:20 +03:00
printxval(sock_udp_options, name, "UDP_???");
break;
case SOL_IRDA:
xlat: rename *sock*options xlat tables Such names as sockrxrpcoptions are incomprehensible. * xlat/getsockipoptions.in: Rename to xlat/getsock_ip_options.in. * xlat/getsockipv6options.in: Rename to xlat/getsock_ipv6_options.in. * xlat/setsockipoptions.in: Rename to xlat/setsock_ip_options.in. * xlat/setsockipv6options.in: Rename to xlat/setsock_ipv6_options.in. * xlat/sockalgoptions.in: Rename to xlat/sock_alg_options.in. * xlat/sockbluetoothoptions.in: Rename to xlat/sock_bluetooth_options.in. * xlat/sockcaifoptions.in: Rename to xlat/sock_caif_options.in. * xlat/sockdccpoptions.in: Rename to xlat/sock_dccp_options.in. * xlat/sockipoptions.in: Rename to xlat/sock_ip_options.in. * xlat/sockipv6options.in: Rename to xlat/sock_ipv6_options.in. * xlat/sockipxoptions.in: Rename to xlat/sock_ipx_options.in. * xlat/sockirdaoptions.in: Rename to xlat/sock_irda_options.in. * xlat/sockiucvoptions.in: Rename to xlat/sock_iucv_options.in. * xlat/sockkcmoptions.in: Rename to xlat/sock_kcm_options.in. * xlat/sockllcoptions.in: Rename to xlat/sock_llc_options.in. * xlat/socknetlinkoptions.in: Rename to xlat/sock_netlink_options.in. * xlat/socknfcllcpoptions.in: Rename to xlat/sock_nfcllcp_options.in. * xlat/sockoptions.in: Rename to xlat/sock_options.in. * xlat/sockpacketoptions.in: Rename to xlat/sock_packet_options.in. * xlat/sockpnpoptions.in: Rename to xlat/sock_pnp_options.in. * xlat/sockpppol2tpoptions.in: Rename to xlat/sock_pppol2tp_options.in. * xlat/sockrawoptions.in: Rename to xlat/sock_raw_options.in. * xlat/sockrdsoptions.in: Rename to xlat/sock_rds_options.in. * xlat/sockrxrpcoptions.in: Rename to xlat/sock_rxrpc_options.in. * xlat/socksctpoptions.in: Rename to xlat/sock_sctp_options.in. * xlat/socktcpoptions.in: Rename to xlat/sock_tcp_options.in. * xlat/socktipcoptions.in: Rename to xlat/sock_tipc_options.in. * xlat/socktlsoptions.in: Rename to xlat/sock_tls_options.in. * xlat/sockudpoptions.in: Rename to xlat/sock_udp_options.in. * net.c: Update.
2018-05-08 23:59:20 +03:00
printxval_index(sock_irda_options, name, "IRLMP_???");
break;
case SOL_LLC:
xlat: rename *sock*options xlat tables Such names as sockrxrpcoptions are incomprehensible. * xlat/getsockipoptions.in: Rename to xlat/getsock_ip_options.in. * xlat/getsockipv6options.in: Rename to xlat/getsock_ipv6_options.in. * xlat/setsockipoptions.in: Rename to xlat/setsock_ip_options.in. * xlat/setsockipv6options.in: Rename to xlat/setsock_ipv6_options.in. * xlat/sockalgoptions.in: Rename to xlat/sock_alg_options.in. * xlat/sockbluetoothoptions.in: Rename to xlat/sock_bluetooth_options.in. * xlat/sockcaifoptions.in: Rename to xlat/sock_caif_options.in. * xlat/sockdccpoptions.in: Rename to xlat/sock_dccp_options.in. * xlat/sockipoptions.in: Rename to xlat/sock_ip_options.in. * xlat/sockipv6options.in: Rename to xlat/sock_ipv6_options.in. * xlat/sockipxoptions.in: Rename to xlat/sock_ipx_options.in. * xlat/sockirdaoptions.in: Rename to xlat/sock_irda_options.in. * xlat/sockiucvoptions.in: Rename to xlat/sock_iucv_options.in. * xlat/sockkcmoptions.in: Rename to xlat/sock_kcm_options.in. * xlat/sockllcoptions.in: Rename to xlat/sock_llc_options.in. * xlat/socknetlinkoptions.in: Rename to xlat/sock_netlink_options.in. * xlat/socknfcllcpoptions.in: Rename to xlat/sock_nfcllcp_options.in. * xlat/sockoptions.in: Rename to xlat/sock_options.in. * xlat/sockpacketoptions.in: Rename to xlat/sock_packet_options.in. * xlat/sockpnpoptions.in: Rename to xlat/sock_pnp_options.in. * xlat/sockpppol2tpoptions.in: Rename to xlat/sock_pppol2tp_options.in. * xlat/sockrawoptions.in: Rename to xlat/sock_raw_options.in. * xlat/sockrdsoptions.in: Rename to xlat/sock_rds_options.in. * xlat/sockrxrpcoptions.in: Rename to xlat/sock_rxrpc_options.in. * xlat/socksctpoptions.in: Rename to xlat/sock_sctp_options.in. * xlat/socktcpoptions.in: Rename to xlat/sock_tcp_options.in. * xlat/socktipcoptions.in: Rename to xlat/sock_tipc_options.in. * xlat/socktlsoptions.in: Rename to xlat/sock_tls_options.in. * xlat/sockudpoptions.in: Rename to xlat/sock_udp_options.in. * net.c: Update.
2018-05-08 23:59:20 +03:00
printxval_index(sock_llc_options, name, "LLC_OPT_???");
break;
case SOL_DCCP:
xlat: rename *sock*options xlat tables Such names as sockrxrpcoptions are incomprehensible. * xlat/getsockipoptions.in: Rename to xlat/getsock_ip_options.in. * xlat/getsockipv6options.in: Rename to xlat/getsock_ipv6_options.in. * xlat/setsockipoptions.in: Rename to xlat/setsock_ip_options.in. * xlat/setsockipv6options.in: Rename to xlat/setsock_ipv6_options.in. * xlat/sockalgoptions.in: Rename to xlat/sock_alg_options.in. * xlat/sockbluetoothoptions.in: Rename to xlat/sock_bluetooth_options.in. * xlat/sockcaifoptions.in: Rename to xlat/sock_caif_options.in. * xlat/sockdccpoptions.in: Rename to xlat/sock_dccp_options.in. * xlat/sockipoptions.in: Rename to xlat/sock_ip_options.in. * xlat/sockipv6options.in: Rename to xlat/sock_ipv6_options.in. * xlat/sockipxoptions.in: Rename to xlat/sock_ipx_options.in. * xlat/sockirdaoptions.in: Rename to xlat/sock_irda_options.in. * xlat/sockiucvoptions.in: Rename to xlat/sock_iucv_options.in. * xlat/sockkcmoptions.in: Rename to xlat/sock_kcm_options.in. * xlat/sockllcoptions.in: Rename to xlat/sock_llc_options.in. * xlat/socknetlinkoptions.in: Rename to xlat/sock_netlink_options.in. * xlat/socknfcllcpoptions.in: Rename to xlat/sock_nfcllcp_options.in. * xlat/sockoptions.in: Rename to xlat/sock_options.in. * xlat/sockpacketoptions.in: Rename to xlat/sock_packet_options.in. * xlat/sockpnpoptions.in: Rename to xlat/sock_pnp_options.in. * xlat/sockpppol2tpoptions.in: Rename to xlat/sock_pppol2tp_options.in. * xlat/sockrawoptions.in: Rename to xlat/sock_raw_options.in. * xlat/sockrdsoptions.in: Rename to xlat/sock_rds_options.in. * xlat/sockrxrpcoptions.in: Rename to xlat/sock_rxrpc_options.in. * xlat/socksctpoptions.in: Rename to xlat/sock_sctp_options.in. * xlat/socktcpoptions.in: Rename to xlat/sock_tcp_options.in. * xlat/socktipcoptions.in: Rename to xlat/sock_tipc_options.in. * xlat/socktlsoptions.in: Rename to xlat/sock_tls_options.in. * xlat/sockudpoptions.in: Rename to xlat/sock_udp_options.in. * net.c: Update.
2018-05-08 23:59:20 +03:00
printxval_search(sock_dccp_options, name, "DCCP_SOCKOPT_???");
break;
case SOL_TIPC:
xlat: rename *sock*options xlat tables Such names as sockrxrpcoptions are incomprehensible. * xlat/getsockipoptions.in: Rename to xlat/getsock_ip_options.in. * xlat/getsockipv6options.in: Rename to xlat/getsock_ipv6_options.in. * xlat/setsockipoptions.in: Rename to xlat/setsock_ip_options.in. * xlat/setsockipv6options.in: Rename to xlat/setsock_ipv6_options.in. * xlat/sockalgoptions.in: Rename to xlat/sock_alg_options.in. * xlat/sockbluetoothoptions.in: Rename to xlat/sock_bluetooth_options.in. * xlat/sockcaifoptions.in: Rename to xlat/sock_caif_options.in. * xlat/sockdccpoptions.in: Rename to xlat/sock_dccp_options.in. * xlat/sockipoptions.in: Rename to xlat/sock_ip_options.in. * xlat/sockipv6options.in: Rename to xlat/sock_ipv6_options.in. * xlat/sockipxoptions.in: Rename to xlat/sock_ipx_options.in. * xlat/sockirdaoptions.in: Rename to xlat/sock_irda_options.in. * xlat/sockiucvoptions.in: Rename to xlat/sock_iucv_options.in. * xlat/sockkcmoptions.in: Rename to xlat/sock_kcm_options.in. * xlat/sockllcoptions.in: Rename to xlat/sock_llc_options.in. * xlat/socknetlinkoptions.in: Rename to xlat/sock_netlink_options.in. * xlat/socknfcllcpoptions.in: Rename to xlat/sock_nfcllcp_options.in. * xlat/sockoptions.in: Rename to xlat/sock_options.in. * xlat/sockpacketoptions.in: Rename to xlat/sock_packet_options.in. * xlat/sockpnpoptions.in: Rename to xlat/sock_pnp_options.in. * xlat/sockpppol2tpoptions.in: Rename to xlat/sock_pppol2tp_options.in. * xlat/sockrawoptions.in: Rename to xlat/sock_raw_options.in. * xlat/sockrdsoptions.in: Rename to xlat/sock_rds_options.in. * xlat/sockrxrpcoptions.in: Rename to xlat/sock_rxrpc_options.in. * xlat/socksctpoptions.in: Rename to xlat/sock_sctp_options.in. * xlat/socktcpoptions.in: Rename to xlat/sock_tcp_options.in. * xlat/socktipcoptions.in: Rename to xlat/sock_tipc_options.in. * xlat/socktlsoptions.in: Rename to xlat/sock_tls_options.in. * xlat/sockudpoptions.in: Rename to xlat/sock_udp_options.in. * net.c: Update.
2018-05-08 23:59:20 +03:00
printxval_search(sock_tipc_options, name, "TIPC_???");
break;
case SOL_RXRPC:
xlat: rename *sock*options xlat tables Such names as sockrxrpcoptions are incomprehensible. * xlat/getsockipoptions.in: Rename to xlat/getsock_ip_options.in. * xlat/getsockipv6options.in: Rename to xlat/getsock_ipv6_options.in. * xlat/setsockipoptions.in: Rename to xlat/setsock_ip_options.in. * xlat/setsockipv6options.in: Rename to xlat/setsock_ipv6_options.in. * xlat/sockalgoptions.in: Rename to xlat/sock_alg_options.in. * xlat/sockbluetoothoptions.in: Rename to xlat/sock_bluetooth_options.in. * xlat/sockcaifoptions.in: Rename to xlat/sock_caif_options.in. * xlat/sockdccpoptions.in: Rename to xlat/sock_dccp_options.in. * xlat/sockipoptions.in: Rename to xlat/sock_ip_options.in. * xlat/sockipv6options.in: Rename to xlat/sock_ipv6_options.in. * xlat/sockipxoptions.in: Rename to xlat/sock_ipx_options.in. * xlat/sockirdaoptions.in: Rename to xlat/sock_irda_options.in. * xlat/sockiucvoptions.in: Rename to xlat/sock_iucv_options.in. * xlat/sockkcmoptions.in: Rename to xlat/sock_kcm_options.in. * xlat/sockllcoptions.in: Rename to xlat/sock_llc_options.in. * xlat/socknetlinkoptions.in: Rename to xlat/sock_netlink_options.in. * xlat/socknfcllcpoptions.in: Rename to xlat/sock_nfcllcp_options.in. * xlat/sockoptions.in: Rename to xlat/sock_options.in. * xlat/sockpacketoptions.in: Rename to xlat/sock_packet_options.in. * xlat/sockpnpoptions.in: Rename to xlat/sock_pnp_options.in. * xlat/sockpppol2tpoptions.in: Rename to xlat/sock_pppol2tp_options.in. * xlat/sockrawoptions.in: Rename to xlat/sock_raw_options.in. * xlat/sockrdsoptions.in: Rename to xlat/sock_rds_options.in. * xlat/sockrxrpcoptions.in: Rename to xlat/sock_rxrpc_options.in. * xlat/socksctpoptions.in: Rename to xlat/sock_sctp_options.in. * xlat/socktcpoptions.in: Rename to xlat/sock_tcp_options.in. * xlat/socktipcoptions.in: Rename to xlat/sock_tipc_options.in. * xlat/socktlsoptions.in: Rename to xlat/sock_tls_options.in. * xlat/sockudpoptions.in: Rename to xlat/sock_udp_options.in. * net.c: Update.
2018-05-08 23:59:20 +03:00
printxval_index(sock_rxrpc_options, name, "RXRPC_???");
break;
case SOL_PPPOL2TP:
xlat: rename *sock*options xlat tables Such names as sockrxrpcoptions are incomprehensible. * xlat/getsockipoptions.in: Rename to xlat/getsock_ip_options.in. * xlat/getsockipv6options.in: Rename to xlat/getsock_ipv6_options.in. * xlat/setsockipoptions.in: Rename to xlat/setsock_ip_options.in. * xlat/setsockipv6options.in: Rename to xlat/setsock_ipv6_options.in. * xlat/sockalgoptions.in: Rename to xlat/sock_alg_options.in. * xlat/sockbluetoothoptions.in: Rename to xlat/sock_bluetooth_options.in. * xlat/sockcaifoptions.in: Rename to xlat/sock_caif_options.in. * xlat/sockdccpoptions.in: Rename to xlat/sock_dccp_options.in. * xlat/sockipoptions.in: Rename to xlat/sock_ip_options.in. * xlat/sockipv6options.in: Rename to xlat/sock_ipv6_options.in. * xlat/sockipxoptions.in: Rename to xlat/sock_ipx_options.in. * xlat/sockirdaoptions.in: Rename to xlat/sock_irda_options.in. * xlat/sockiucvoptions.in: Rename to xlat/sock_iucv_options.in. * xlat/sockkcmoptions.in: Rename to xlat/sock_kcm_options.in. * xlat/sockllcoptions.in: Rename to xlat/sock_llc_options.in. * xlat/socknetlinkoptions.in: Rename to xlat/sock_netlink_options.in. * xlat/socknfcllcpoptions.in: Rename to xlat/sock_nfcllcp_options.in. * xlat/sockoptions.in: Rename to xlat/sock_options.in. * xlat/sockpacketoptions.in: Rename to xlat/sock_packet_options.in. * xlat/sockpnpoptions.in: Rename to xlat/sock_pnp_options.in. * xlat/sockpppol2tpoptions.in: Rename to xlat/sock_pppol2tp_options.in. * xlat/sockrawoptions.in: Rename to xlat/sock_raw_options.in. * xlat/sockrdsoptions.in: Rename to xlat/sock_rds_options.in. * xlat/sockrxrpcoptions.in: Rename to xlat/sock_rxrpc_options.in. * xlat/socksctpoptions.in: Rename to xlat/sock_sctp_options.in. * xlat/socktcpoptions.in: Rename to xlat/sock_tcp_options.in. * xlat/socktipcoptions.in: Rename to xlat/sock_tipc_options.in. * xlat/socktlsoptions.in: Rename to xlat/sock_tls_options.in. * xlat/sockudpoptions.in: Rename to xlat/sock_udp_options.in. * net.c: Update.
2018-05-08 23:59:20 +03:00
printxval_index(sock_pppol2tp_options, name, "PPPOL2TP_SO_???");
break;
case SOL_BLUETOOTH:
xlat: rename *sock*options xlat tables Such names as sockrxrpcoptions are incomprehensible. * xlat/getsockipoptions.in: Rename to xlat/getsock_ip_options.in. * xlat/getsockipv6options.in: Rename to xlat/getsock_ipv6_options.in. * xlat/setsockipoptions.in: Rename to xlat/setsock_ip_options.in. * xlat/setsockipv6options.in: Rename to xlat/setsock_ipv6_options.in. * xlat/sockalgoptions.in: Rename to xlat/sock_alg_options.in. * xlat/sockbluetoothoptions.in: Rename to xlat/sock_bluetooth_options.in. * xlat/sockcaifoptions.in: Rename to xlat/sock_caif_options.in. * xlat/sockdccpoptions.in: Rename to xlat/sock_dccp_options.in. * xlat/sockipoptions.in: Rename to xlat/sock_ip_options.in. * xlat/sockipv6options.in: Rename to xlat/sock_ipv6_options.in. * xlat/sockipxoptions.in: Rename to xlat/sock_ipx_options.in. * xlat/sockirdaoptions.in: Rename to xlat/sock_irda_options.in. * xlat/sockiucvoptions.in: Rename to xlat/sock_iucv_options.in. * xlat/sockkcmoptions.in: Rename to xlat/sock_kcm_options.in. * xlat/sockllcoptions.in: Rename to xlat/sock_llc_options.in. * xlat/socknetlinkoptions.in: Rename to xlat/sock_netlink_options.in. * xlat/socknfcllcpoptions.in: Rename to xlat/sock_nfcllcp_options.in. * xlat/sockoptions.in: Rename to xlat/sock_options.in. * xlat/sockpacketoptions.in: Rename to xlat/sock_packet_options.in. * xlat/sockpnpoptions.in: Rename to xlat/sock_pnp_options.in. * xlat/sockpppol2tpoptions.in: Rename to xlat/sock_pppol2tp_options.in. * xlat/sockrawoptions.in: Rename to xlat/sock_raw_options.in. * xlat/sockrdsoptions.in: Rename to xlat/sock_rds_options.in. * xlat/sockrxrpcoptions.in: Rename to xlat/sock_rxrpc_options.in. * xlat/socksctpoptions.in: Rename to xlat/sock_sctp_options.in. * xlat/socktcpoptions.in: Rename to xlat/sock_tcp_options.in. * xlat/socktipcoptions.in: Rename to xlat/sock_tipc_options.in. * xlat/socktlsoptions.in: Rename to xlat/sock_tls_options.in. * xlat/sockudpoptions.in: Rename to xlat/sock_udp_options.in. * net.c: Update.
2018-05-08 23:59:20 +03:00
printxval_search(sock_bluetooth_options, name, "BT_???");
break;
case SOL_PNPIPE:
xlat: rename *sock*options xlat tables Such names as sockrxrpcoptions are incomprehensible. * xlat/getsockipoptions.in: Rename to xlat/getsock_ip_options.in. * xlat/getsockipv6options.in: Rename to xlat/getsock_ipv6_options.in. * xlat/setsockipoptions.in: Rename to xlat/setsock_ip_options.in. * xlat/setsockipv6options.in: Rename to xlat/setsock_ipv6_options.in. * xlat/sockalgoptions.in: Rename to xlat/sock_alg_options.in. * xlat/sockbluetoothoptions.in: Rename to xlat/sock_bluetooth_options.in. * xlat/sockcaifoptions.in: Rename to xlat/sock_caif_options.in. * xlat/sockdccpoptions.in: Rename to xlat/sock_dccp_options.in. * xlat/sockipoptions.in: Rename to xlat/sock_ip_options.in. * xlat/sockipv6options.in: Rename to xlat/sock_ipv6_options.in. * xlat/sockipxoptions.in: Rename to xlat/sock_ipx_options.in. * xlat/sockirdaoptions.in: Rename to xlat/sock_irda_options.in. * xlat/sockiucvoptions.in: Rename to xlat/sock_iucv_options.in. * xlat/sockkcmoptions.in: Rename to xlat/sock_kcm_options.in. * xlat/sockllcoptions.in: Rename to xlat/sock_llc_options.in. * xlat/socknetlinkoptions.in: Rename to xlat/sock_netlink_options.in. * xlat/socknfcllcpoptions.in: Rename to xlat/sock_nfcllcp_options.in. * xlat/sockoptions.in: Rename to xlat/sock_options.in. * xlat/sockpacketoptions.in: Rename to xlat/sock_packet_options.in. * xlat/sockpnpoptions.in: Rename to xlat/sock_pnp_options.in. * xlat/sockpppol2tpoptions.in: Rename to xlat/sock_pppol2tp_options.in. * xlat/sockrawoptions.in: Rename to xlat/sock_raw_options.in. * xlat/sockrdsoptions.in: Rename to xlat/sock_rds_options.in. * xlat/sockrxrpcoptions.in: Rename to xlat/sock_rxrpc_options.in. * xlat/socksctpoptions.in: Rename to xlat/sock_sctp_options.in. * xlat/socktcpoptions.in: Rename to xlat/sock_tcp_options.in. * xlat/socktipcoptions.in: Rename to xlat/sock_tipc_options.in. * xlat/socktlsoptions.in: Rename to xlat/sock_tls_options.in. * xlat/sockudpoptions.in: Rename to xlat/sock_udp_options.in. * net.c: Update.
2018-05-08 23:59:20 +03:00
printxval(sock_pnp_options, name, "PNPIPE_???");
break;
case SOL_RDS:
printxval_search(sock_rds_options, name, "RDS_???");
break;
case SOL_IUCV:
xlat: rename *sock*options xlat tables Such names as sockrxrpcoptions are incomprehensible. * xlat/getsockipoptions.in: Rename to xlat/getsock_ip_options.in. * xlat/getsockipv6options.in: Rename to xlat/getsock_ipv6_options.in. * xlat/setsockipoptions.in: Rename to xlat/setsock_ip_options.in. * xlat/setsockipv6options.in: Rename to xlat/setsock_ipv6_options.in. * xlat/sockalgoptions.in: Rename to xlat/sock_alg_options.in. * xlat/sockbluetoothoptions.in: Rename to xlat/sock_bluetooth_options.in. * xlat/sockcaifoptions.in: Rename to xlat/sock_caif_options.in. * xlat/sockdccpoptions.in: Rename to xlat/sock_dccp_options.in. * xlat/sockipoptions.in: Rename to xlat/sock_ip_options.in. * xlat/sockipv6options.in: Rename to xlat/sock_ipv6_options.in. * xlat/sockipxoptions.in: Rename to xlat/sock_ipx_options.in. * xlat/sockirdaoptions.in: Rename to xlat/sock_irda_options.in. * xlat/sockiucvoptions.in: Rename to xlat/sock_iucv_options.in. * xlat/sockkcmoptions.in: Rename to xlat/sock_kcm_options.in. * xlat/sockllcoptions.in: Rename to xlat/sock_llc_options.in. * xlat/socknetlinkoptions.in: Rename to xlat/sock_netlink_options.in. * xlat/socknfcllcpoptions.in: Rename to xlat/sock_nfcllcp_options.in. * xlat/sockoptions.in: Rename to xlat/sock_options.in. * xlat/sockpacketoptions.in: Rename to xlat/sock_packet_options.in. * xlat/sockpnpoptions.in: Rename to xlat/sock_pnp_options.in. * xlat/sockpppol2tpoptions.in: Rename to xlat/sock_pppol2tp_options.in. * xlat/sockrawoptions.in: Rename to xlat/sock_raw_options.in. * xlat/sockrdsoptions.in: Rename to xlat/sock_rds_options.in. * xlat/sockrxrpcoptions.in: Rename to xlat/sock_rxrpc_options.in. * xlat/socksctpoptions.in: Rename to xlat/sock_sctp_options.in. * xlat/socktcpoptions.in: Rename to xlat/sock_tcp_options.in. * xlat/socktipcoptions.in: Rename to xlat/sock_tipc_options.in. * xlat/socktlsoptions.in: Rename to xlat/sock_tls_options.in. * xlat/sockudpoptions.in: Rename to xlat/sock_udp_options.in. * net.c: Update.
2018-05-08 23:59:20 +03:00
printxval(sock_iucv_options, name, "SO_???");
break;
case SOL_CAIF:
xlat: rename *sock*options xlat tables Such names as sockrxrpcoptions are incomprehensible. * xlat/getsockipoptions.in: Rename to xlat/getsock_ip_options.in. * xlat/getsockipv6options.in: Rename to xlat/getsock_ipv6_options.in. * xlat/setsockipoptions.in: Rename to xlat/setsock_ip_options.in. * xlat/setsockipv6options.in: Rename to xlat/setsock_ipv6_options.in. * xlat/sockalgoptions.in: Rename to xlat/sock_alg_options.in. * xlat/sockbluetoothoptions.in: Rename to xlat/sock_bluetooth_options.in. * xlat/sockcaifoptions.in: Rename to xlat/sock_caif_options.in. * xlat/sockdccpoptions.in: Rename to xlat/sock_dccp_options.in. * xlat/sockipoptions.in: Rename to xlat/sock_ip_options.in. * xlat/sockipv6options.in: Rename to xlat/sock_ipv6_options.in. * xlat/sockipxoptions.in: Rename to xlat/sock_ipx_options.in. * xlat/sockirdaoptions.in: Rename to xlat/sock_irda_options.in. * xlat/sockiucvoptions.in: Rename to xlat/sock_iucv_options.in. * xlat/sockkcmoptions.in: Rename to xlat/sock_kcm_options.in. * xlat/sockllcoptions.in: Rename to xlat/sock_llc_options.in. * xlat/socknetlinkoptions.in: Rename to xlat/sock_netlink_options.in. * xlat/socknfcllcpoptions.in: Rename to xlat/sock_nfcllcp_options.in. * xlat/sockoptions.in: Rename to xlat/sock_options.in. * xlat/sockpacketoptions.in: Rename to xlat/sock_packet_options.in. * xlat/sockpnpoptions.in: Rename to xlat/sock_pnp_options.in. * xlat/sockpppol2tpoptions.in: Rename to xlat/sock_pppol2tp_options.in. * xlat/sockrawoptions.in: Rename to xlat/sock_raw_options.in. * xlat/sockrdsoptions.in: Rename to xlat/sock_rds_options.in. * xlat/sockrxrpcoptions.in: Rename to xlat/sock_rxrpc_options.in. * xlat/socksctpoptions.in: Rename to xlat/sock_sctp_options.in. * xlat/socktcpoptions.in: Rename to xlat/sock_tcp_options.in. * xlat/socktipcoptions.in: Rename to xlat/sock_tipc_options.in. * xlat/socktlsoptions.in: Rename to xlat/sock_tls_options.in. * xlat/sockudpoptions.in: Rename to xlat/sock_udp_options.in. * net.c: Update.
2018-05-08 23:59:20 +03:00
printxval(sock_caif_options, name, "CAIFSO_???");
break;
case SOL_ALG:
xlat: rename *sock*options xlat tables Such names as sockrxrpcoptions are incomprehensible. * xlat/getsockipoptions.in: Rename to xlat/getsock_ip_options.in. * xlat/getsockipv6options.in: Rename to xlat/getsock_ipv6_options.in. * xlat/setsockipoptions.in: Rename to xlat/setsock_ip_options.in. * xlat/setsockipv6options.in: Rename to xlat/setsock_ipv6_options.in. * xlat/sockalgoptions.in: Rename to xlat/sock_alg_options.in. * xlat/sockbluetoothoptions.in: Rename to xlat/sock_bluetooth_options.in. * xlat/sockcaifoptions.in: Rename to xlat/sock_caif_options.in. * xlat/sockdccpoptions.in: Rename to xlat/sock_dccp_options.in. * xlat/sockipoptions.in: Rename to xlat/sock_ip_options.in. * xlat/sockipv6options.in: Rename to xlat/sock_ipv6_options.in. * xlat/sockipxoptions.in: Rename to xlat/sock_ipx_options.in. * xlat/sockirdaoptions.in: Rename to xlat/sock_irda_options.in. * xlat/sockiucvoptions.in: Rename to xlat/sock_iucv_options.in. * xlat/sockkcmoptions.in: Rename to xlat/sock_kcm_options.in. * xlat/sockllcoptions.in: Rename to xlat/sock_llc_options.in. * xlat/socknetlinkoptions.in: Rename to xlat/sock_netlink_options.in. * xlat/socknfcllcpoptions.in: Rename to xlat/sock_nfcllcp_options.in. * xlat/sockoptions.in: Rename to xlat/sock_options.in. * xlat/sockpacketoptions.in: Rename to xlat/sock_packet_options.in. * xlat/sockpnpoptions.in: Rename to xlat/sock_pnp_options.in. * xlat/sockpppol2tpoptions.in: Rename to xlat/sock_pppol2tp_options.in. * xlat/sockrawoptions.in: Rename to xlat/sock_raw_options.in. * xlat/sockrdsoptions.in: Rename to xlat/sock_rds_options.in. * xlat/sockrxrpcoptions.in: Rename to xlat/sock_rxrpc_options.in. * xlat/socksctpoptions.in: Rename to xlat/sock_sctp_options.in. * xlat/socktcpoptions.in: Rename to xlat/sock_tcp_options.in. * xlat/socktipcoptions.in: Rename to xlat/sock_tipc_options.in. * xlat/socktlsoptions.in: Rename to xlat/sock_tls_options.in. * xlat/sockudpoptions.in: Rename to xlat/sock_udp_options.in. * net.c: Update.
2018-05-08 23:59:20 +03:00
printxval_index(sock_alg_options, name, "ALG_???");
break;
case SOL_NFC:
xlat: rename *sock*options xlat tables Such names as sockrxrpcoptions are incomprehensible. * xlat/getsockipoptions.in: Rename to xlat/getsock_ip_options.in. * xlat/getsockipv6options.in: Rename to xlat/getsock_ipv6_options.in. * xlat/setsockipoptions.in: Rename to xlat/setsock_ip_options.in. * xlat/setsockipv6options.in: Rename to xlat/setsock_ipv6_options.in. * xlat/sockalgoptions.in: Rename to xlat/sock_alg_options.in. * xlat/sockbluetoothoptions.in: Rename to xlat/sock_bluetooth_options.in. * xlat/sockcaifoptions.in: Rename to xlat/sock_caif_options.in. * xlat/sockdccpoptions.in: Rename to xlat/sock_dccp_options.in. * xlat/sockipoptions.in: Rename to xlat/sock_ip_options.in. * xlat/sockipv6options.in: Rename to xlat/sock_ipv6_options.in. * xlat/sockipxoptions.in: Rename to xlat/sock_ipx_options.in. * xlat/sockirdaoptions.in: Rename to xlat/sock_irda_options.in. * xlat/sockiucvoptions.in: Rename to xlat/sock_iucv_options.in. * xlat/sockkcmoptions.in: Rename to xlat/sock_kcm_options.in. * xlat/sockllcoptions.in: Rename to xlat/sock_llc_options.in. * xlat/socknetlinkoptions.in: Rename to xlat/sock_netlink_options.in. * xlat/socknfcllcpoptions.in: Rename to xlat/sock_nfcllcp_options.in. * xlat/sockoptions.in: Rename to xlat/sock_options.in. * xlat/sockpacketoptions.in: Rename to xlat/sock_packet_options.in. * xlat/sockpnpoptions.in: Rename to xlat/sock_pnp_options.in. * xlat/sockpppol2tpoptions.in: Rename to xlat/sock_pppol2tp_options.in. * xlat/sockrawoptions.in: Rename to xlat/sock_raw_options.in. * xlat/sockrdsoptions.in: Rename to xlat/sock_rds_options.in. * xlat/sockrxrpcoptions.in: Rename to xlat/sock_rxrpc_options.in. * xlat/socksctpoptions.in: Rename to xlat/sock_sctp_options.in. * xlat/socktcpoptions.in: Rename to xlat/sock_tcp_options.in. * xlat/socktipcoptions.in: Rename to xlat/sock_tipc_options.in. * xlat/socktlsoptions.in: Rename to xlat/sock_tls_options.in. * xlat/sockudpoptions.in: Rename to xlat/sock_udp_options.in. * net.c: Update.
2018-05-08 23:59:20 +03:00
printxval_index(sock_nfcllcp_options, name, "NFC_LLCP_???");
break;
case SOL_KCM:
xlat: rename *sock*options xlat tables Such names as sockrxrpcoptions are incomprehensible. * xlat/getsockipoptions.in: Rename to xlat/getsock_ip_options.in. * xlat/getsockipv6options.in: Rename to xlat/getsock_ipv6_options.in. * xlat/setsockipoptions.in: Rename to xlat/setsock_ip_options.in. * xlat/setsockipv6options.in: Rename to xlat/setsock_ipv6_options.in. * xlat/sockalgoptions.in: Rename to xlat/sock_alg_options.in. * xlat/sockbluetoothoptions.in: Rename to xlat/sock_bluetooth_options.in. * xlat/sockcaifoptions.in: Rename to xlat/sock_caif_options.in. * xlat/sockdccpoptions.in: Rename to xlat/sock_dccp_options.in. * xlat/sockipoptions.in: Rename to xlat/sock_ip_options.in. * xlat/sockipv6options.in: Rename to xlat/sock_ipv6_options.in. * xlat/sockipxoptions.in: Rename to xlat/sock_ipx_options.in. * xlat/sockirdaoptions.in: Rename to xlat/sock_irda_options.in. * xlat/sockiucvoptions.in: Rename to xlat/sock_iucv_options.in. * xlat/sockkcmoptions.in: Rename to xlat/sock_kcm_options.in. * xlat/sockllcoptions.in: Rename to xlat/sock_llc_options.in. * xlat/socknetlinkoptions.in: Rename to xlat/sock_netlink_options.in. * xlat/socknfcllcpoptions.in: Rename to xlat/sock_nfcllcp_options.in. * xlat/sockoptions.in: Rename to xlat/sock_options.in. * xlat/sockpacketoptions.in: Rename to xlat/sock_packet_options.in. * xlat/sockpnpoptions.in: Rename to xlat/sock_pnp_options.in. * xlat/sockpppol2tpoptions.in: Rename to xlat/sock_pppol2tp_options.in. * xlat/sockrawoptions.in: Rename to xlat/sock_raw_options.in. * xlat/sockrdsoptions.in: Rename to xlat/sock_rds_options.in. * xlat/sockrxrpcoptions.in: Rename to xlat/sock_rxrpc_options.in. * xlat/socksctpoptions.in: Rename to xlat/sock_sctp_options.in. * xlat/socktcpoptions.in: Rename to xlat/sock_tcp_options.in. * xlat/socktipcoptions.in: Rename to xlat/sock_tipc_options.in. * xlat/socktlsoptions.in: Rename to xlat/sock_tls_options.in. * xlat/sockudpoptions.in: Rename to xlat/sock_udp_options.in. * net.c: Update.
2018-05-08 23:59:20 +03:00
printxval(sock_kcm_options, name, "KCM_???");
break;
case SOL_TLS:
xlat: rename *sock*options xlat tables Such names as sockrxrpcoptions are incomprehensible. * xlat/getsockipoptions.in: Rename to xlat/getsock_ip_options.in. * xlat/getsockipv6options.in: Rename to xlat/getsock_ipv6_options.in. * xlat/setsockipoptions.in: Rename to xlat/setsock_ip_options.in. * xlat/setsockipv6options.in: Rename to xlat/setsock_ipv6_options.in. * xlat/sockalgoptions.in: Rename to xlat/sock_alg_options.in. * xlat/sockbluetoothoptions.in: Rename to xlat/sock_bluetooth_options.in. * xlat/sockcaifoptions.in: Rename to xlat/sock_caif_options.in. * xlat/sockdccpoptions.in: Rename to xlat/sock_dccp_options.in. * xlat/sockipoptions.in: Rename to xlat/sock_ip_options.in. * xlat/sockipv6options.in: Rename to xlat/sock_ipv6_options.in. * xlat/sockipxoptions.in: Rename to xlat/sock_ipx_options.in. * xlat/sockirdaoptions.in: Rename to xlat/sock_irda_options.in. * xlat/sockiucvoptions.in: Rename to xlat/sock_iucv_options.in. * xlat/sockkcmoptions.in: Rename to xlat/sock_kcm_options.in. * xlat/sockllcoptions.in: Rename to xlat/sock_llc_options.in. * xlat/socknetlinkoptions.in: Rename to xlat/sock_netlink_options.in. * xlat/socknfcllcpoptions.in: Rename to xlat/sock_nfcllcp_options.in. * xlat/sockoptions.in: Rename to xlat/sock_options.in. * xlat/sockpacketoptions.in: Rename to xlat/sock_packet_options.in. * xlat/sockpnpoptions.in: Rename to xlat/sock_pnp_options.in. * xlat/sockpppol2tpoptions.in: Rename to xlat/sock_pppol2tp_options.in. * xlat/sockrawoptions.in: Rename to xlat/sock_raw_options.in. * xlat/sockrdsoptions.in: Rename to xlat/sock_rds_options.in. * xlat/sockrxrpcoptions.in: Rename to xlat/sock_rxrpc_options.in. * xlat/socksctpoptions.in: Rename to xlat/sock_sctp_options.in. * xlat/socktcpoptions.in: Rename to xlat/sock_tcp_options.in. * xlat/socktipcoptions.in: Rename to xlat/sock_tipc_options.in. * xlat/socktlsoptions.in: Rename to xlat/sock_tls_options.in. * xlat/sockudpoptions.in: Rename to xlat/sock_udp_options.in. * net.c: Update.
2018-05-08 23:59:20 +03:00
printxval(sock_tls_options, name, "TLS_???");
break;
1999-02-19 03:21:36 +03:00
/* Other SOL_* protocol levels still need work. */
default:
tprintf("%u", name);
}
tprints(", ");
}
2002-05-22 19:46:49 +04:00
static void
print_set_linger(struct tcb *const tcp, const kernel_ulong_t addr,
const int len)
{
struct linger linger;
if (len < (int) sizeof(linger)) {
printaddr(addr);
} else if (!umove_or_printaddr(tcp, addr, &linger)) {
PRINT_FIELD_D("{", linger, l_onoff);
PRINT_FIELD_D(", ", linger, l_linger);
tprints("}");
}
}
static void
print_get_linger(struct tcb *const tcp, const kernel_ulong_t addr,
unsigned int len)
{
struct linger linger;
if (len < sizeof(linger)) {
if (len != sizeof(linger.l_onoff)) {
printstr_ex(tcp, addr, len, QUOTE_FORCE_HEX);
return;
}
} else {
len = sizeof(linger);
}
if (umoven(tcp, addr, len, &linger) < 0) {
printaddr(addr);
return;
}
PRINT_FIELD_D("{", linger, l_onoff);
if (len == sizeof(linger))
PRINT_FIELD_D(", ", linger, l_linger);
tprints("}");
}
#ifdef SO_PEERCRED
static void
print_ucred(struct tcb *const tcp, const kernel_ulong_t addr, unsigned int len)
{
struct ucred uc;
if (len < sizeof(uc)) {
if (len != sizeof(uc.pid)
&& len != offsetofend(struct ucred, uid)) {
printstr_ex(tcp, addr, len, QUOTE_FORCE_HEX);
return;
}
} else {
len = sizeof(uc);
}
if (umoven(tcp, addr, len, &uc) < 0) {
printaddr(addr);
return;
}
PRINT_FIELD_D("{", uc, pid);
if (len > sizeof(uc.pid))
PRINT_FIELD_UID(", ", uc, uid);
if (len == sizeof(uc))
PRINT_FIELD_UID(", ", uc, gid);
tprints("}");
}
#endif /* SO_PEERCRED */
#ifdef PACKET_STATISTICS
static void
print_tpacket_stats(struct tcb *const tcp, const kernel_ulong_t addr,
const int len)
{
struct tpacket_stats stats;
2002-05-22 19:46:49 +04:00
if (len != sizeof(stats) ||
umove(tcp, addr, &stats) < 0) {
printaddr(addr);
} else {
PRINT_FIELD_U("{", stats, tp_packets);
PRINT_FIELD_U("{", stats, tp_drops);
tprints("}");
1999-02-19 03:21:36 +03:00
}
}
#endif /* PACKET_STATISTICS */
1999-02-19 03:21:36 +03:00
#include "xlat/icmpfilterflags.h"
static void
print_icmp_filter(struct tcb *const tcp, const kernel_ulong_t addr, int len)
{
struct icmp_filter filter = {};
if (len > (int) sizeof(filter))
len = sizeof(filter);
else if (len <= 0) {
printaddr(addr);
return;
}
if (umoven_or_printaddr(tcp, addr, len, &filter))
return;
tprints("~(");
2005-05-31 Dmitry V. Levin <ldv@altlinux.org> * util.c (printxval): Change third argument from "char *" to "const char *". (printflags): Add third argument, "const char *", with similar meaning to the third argument of printxval(). * defs.h (printxval): Change third argument from "char *" to "const char *". (printflags): Add third argument. * bjm.c (sys_query_module) [LINUX]: Pass third argument to printflags(). * desc.c (sys_fcntl): Likewise. (sys_flock) [LOCK_SH]: Likewise. (print_epoll_event) [HAVE_SYS_EPOLL_H]: Likewise. * file.c (sys_open): Likewise. (solaris_open) [LINUXSPARC]: Likewise. (sys_access): Likewise. (sys_chflags, sys_fchflags) [FREEBSD]: Likewise. (realprintstat) [HAVE_LONG_LONG_OFF_T && HAVE_STRUCT_STAT_ST_FLAGS]: Likewise. (printstat64) [HAVE_STAT64 && HAVE_STRUCT_STAT_ST_FLAGS]: Likewise. (sys_setxattr, sys_fsetxattr): Likewise. * ipc.c (sys_msgget, sys_msgsnd, sys_msgrcv, sys_semget, sys_shmget, sys_shmat) [LINUX || SUNOS4 || FREEBSD]: Likewise. (sys_mq_open) [LINUX]: Likewise. (printmqattr) [HAVE_MQUEUE_H]: Likewise. * mem.c (print_mmap) [!HAVE_LONG_LONG_OFF_T]: Likewise. (sys_mmap64) [_LFS64_LARGEFILE || HAVE_LONG_LONG_OFF_T]: Likewise. (sys_mprotect): Likewise. (sys_mremap, sys_madvise, sys_mlockall) [LINUX]: Likewise. (sys_msync) [MS_ASYNC]: Likewise. (sys_mctl) [MC_SYNC]: Likewise. (sys_remap_file_pages, sys_mbind, sys_get_mempolicy) [LINUX]: Likewise. * net.c (printmsghdr) [HAVE_STRUCT_MSGHDR_MSG_CONTROL]: Likewise. (sys_send, sys_sendto): Likewise. (sys_sendmsg) [HAVE_SENDMSG]: Likewise. (sys_recv, sys_recvfrom): Likewise. (sys_recvmsg) [HAVE_SENDMSG]: Likewise. (printicmpfilter) [ICMP_FILTER]: Likewise. * proc.c (proc_ioctl) [SVR4 && !HAVE_MP_PROCFS || FREEBSD]: Likewise. * process.c (sys_clone) [LINUX]: Likewise. (printwaitn): Likewise. (sys_waitid) [SVR4 || LINUX]: Likewise. * signal.c (sys_sigvec) [SUNOS4 || FREEBSD]: Likewise. (sys_sigaction): Likewise. (printcontext) [SVR4]: Likewise. (print_stack_t) [LINUX) || FREEBSD]: Likewise. (sys_rt_sigaction) [LINUX]: Likewise. * sock.c (sock_ioctl) [LINUX]: Likewise. * stream.c (sys_putmsg, sys_getmsg): Likewise. (sys_putpmsg) [SYS_putpmsg]: Likewise. (sys_getpmsg) [SYS_getpmsg]: Likewise. (sys_poll): Likewise. (print_transport_message) [TI_BIND]: Likewise. (stream_ioctl): Likewise. * system.c (sys_mount, sys_reboot): Likewise. (sys_cacheflush) [LINUX && M68K]: Likewise. (sys_capget, sys_capset) [SYS_capget]: Likewise. * term.c (term_ioctl) [TIOCMGET]: Likewise. * time.c (sys_clock_nanosleep, sys_timer_settime) [LINUX]: Likewise. Fixes RH#159310.
2005-06-01 23:02:36 +04:00
printflags(icmpfilterflags, ~filter.data, "ICMP_???");
tprints(")");
}
static bool
print_uint32(struct tcb *tcp, void *elem_buf, size_t elem_size, void *data)
{
tprintf("%u", *(uint32_t *) elem_buf);
return true;
}
static void
print_getsockopt(struct tcb *const tcp, const unsigned int level,
const unsigned int name, const kernel_ulong_t addr,
const int ulen, const int rlen)
1999-02-19 03:21:36 +03:00
{
if (addr && verbose(tcp))
2002-05-23 15:48:58 +04:00
switch (level) {
case SOL_SOCKET:
2002-05-23 15:48:58 +04:00
switch (name) {
case SO_LINGER:
print_get_linger(tcp, addr, rlen);
return;
#ifdef SO_PEERCRED
case SO_PEERCRED:
print_ucred(tcp, addr, rlen);
return;
2002-05-23 15:48:58 +04:00
#endif
#ifdef SO_ATTACH_FILTER
case SO_ATTACH_FILTER:
if (rlen && (unsigned short) rlen == (unsigned int) rlen)
print_sock_fprog(tcp, addr, rlen);
else
printaddr(addr);
return;
#endif /* SO_ATTACH_FILTER */
2002-05-23 15:48:58 +04:00
}
break;
case SOL_PACKET:
switch (name) {
#ifdef PACKET_STATISTICS
case PACKET_STATISTICS:
print_tpacket_stats(tcp, addr, rlen);
return;
#endif
}
2002-05-23 15:48:58 +04:00
break;
case SOL_RAW:
switch (name) {
case ICMP_FILTER:
print_icmp_filter(tcp, addr, rlen);
return;
}
break;
case SOL_NETLINK:
if (ulen < 0 || rlen < 0) {
/*
* As the kernel neither accepts nor returns a negative
* length, in case of successful getsockopt syscall
* invocation these negative values must have come
* from userspace.
*/
printaddr(addr);
return;
}
switch (name) {
case NETLINK_LIST_MEMBERSHIPS: {
uint32_t buf;
print_array(tcp, addr, MIN(ulen, rlen) / sizeof(buf),
&buf, sizeof(buf),
print_array: enhance printing of unfetchable object addresses When umoven_func invocation fails to fetch data, it prints the faulty address. If this happens to a subsequent umoven_func invocation, the printed address may be undistinguishable from a valid data printed by print_func, e.g. when the data is printed in a numeric form like [0x1, 0x2, 0x3, 0xdefaced]. Fix this source of confusion by moving the printing of the faulty address from umoven_func to print_array itself. This change renames umoven_func to tfetch_mem_func and changes its semantics, so that - tfetch_mem_func never prints anything; - tfetch_mem_func returns true if the fetch succeeded, and false otherwise. * defs.h (print_array): Replace umoven_func argument with tfetch_mem_func. * util.c (print_array): Replace umoven_func argument with tfetch_mem_func, document expected tfetch_mem_func return value semantics. When tfetch_mem_func returns false, print either addr or "... /* addr */" depending on the context (inside the array or not). * bpf.c (print_ebpf_prog, print_bpf_prog_info, BEGIN_BPF_CMD_DECODER(BPF_PROG_QUERY)): Replace umoven_or_printaddr argument of print_array with tfetch_mem. * bpf_filter.c (print_bpf_fprog): Likewise. * btrfs.c (btrfs_print_logical_ino_container, btrfs_print_ino_path_container, btrfs_print_qgroup_inherit, btrfs_ioctl): Likewise. * dm.c (dm_decode_dm_target_deps): Likewise. * epoll.c (epoll_wait_common): Likewise. * file_ioctl.c (file_ioctl): Likewise. * ipc_sem.c (tprint_sembuf_array): Likewise. * kexec.c (print_kexec_segments): Likewise. * mem.c (SYS_FUNC(subpage_prot)): Likewise. * net.c (print_getsockopt): Likewise. * netlink.c (decode_nlmsgerr_attr_cookie): Likewise. * netlink_netlink_diag.c (decode_netlink_diag_groups): Likewise. * netlink_packet_diag.c (decode_packet_diag_mclist): Likewise. * netlink_unix_diag.c (decode_unix_diag_inode): Likewise. * nlattr.c (decode_nla_meminfo): Likewise. * numa.c (print_nodemask, SYS_FUNC(move_pages), * perf_ioctl.c (perf_ioctl_query_bpf): Likewise. * poll.c (decode_poll_entering): Likewise. * printsiginfo.c (print_siginfo_array): Likewise. * rtnl_tc.c (decode_tca_stab_data): Likewise. * sock.c (decode_ifconf): Likewise. * uid.c (print_groups): Likewise. * io.c (SYS_FUNC(io_submit), SYS_FUNC(io_getevents)): Replace umoven_or_printaddr argument of print_array with tfetch_mem. (tprint_iov_upto): Replace umoven_or_printaddr_ignore_syserror with tfetch_mem_ignore_syserror. * v4l2.c (print_v4l2_format_fmt): Replace umoven_or_printaddr argument of print_array with tfetch_mem. (print_v4l2_ext_controls): Replace umoven_or_printaddr_ignore_syserror with tfetch_mem_ignore_syserror. * mmsghdr.c (fetch_struct_mmsghdr_or_printaddr): Rename to fetch_struct_mmsghdr_for_print, do not print address, return bool. (decode_mmsgvec): Replace fetch_struct_mmsghdr_or_printaddr with fetch_struct_mmsghdr_for_print. * tests/aio.c (main): Update expected output. * tests/bpf.c (print_BPF_PROG_QUERY_attr5): Likewise. * tests/ioctl_perf-success.c (main): Likewise. * tests/ioctl_v4l2.c (main): Update expected output. * tests/kexec_load.c (main): Likewise. * tests/mmsg_name.c (test_mmsg_name): Update expected output. * tests/move_pages.c (print_page_array, print_node_array): Likewise. * tests/poll.c (print_pollfd_array_entering): Likewise. * tests/preadv-pwritev.c (main): Likewise. * tests/preadv2-pwritev2.c (dumpio): Likewise. * tests/process_vm_readv_writev.c (print_iov): Likewise. * tests/pwritev.c (print_iovec): Likewise. * tests/readv.c (main): Likewise. * tests/seccomp-filter-v.c * tests/semop.c (main): Likewise. * tests/set_mempolicy.c (print_nodes): Likewise. * tests/setgroups.c (main): Likewise. * tests/test_nlattr.h (print_nlattr) Likewise. Co-Authored-by: Eugene Syromyatnikov <evgsyr@gmail.com>
2018-05-29 04:15:19 +03:00
tfetch_mem, print_uint32, 0);
break;
}
default:
printnum_int(tcp, addr, "%d");
break;
}
return;
}
/* default arg printing */
if (verbose(tcp)) {
if (rlen == sizeof(int)) {
printnum_int(tcp, addr, "%d");
} else {
printstrn(tcp, addr, rlen);
}
} else {
printaddr(addr);
}
}
SYS_FUNC(getsockopt)
{
int ulen, rlen;
if (entering(tcp)) {
print_sockopt_fd_level_name(tcp, tcp->u_arg[0],
decode extend getsockopt/setsockopt options Currently the code assumes the set of valid options between getsockopt and setsockopt are exactly the same and thus maintains one list. The kernel unfortunately does not do this -- it allows for different opts between the get and set functions. See the {g,s}et_opt{min,max} fields in the various netfilter subcores. To support this, extend the printxval function to take multiple sets of xlats as varargs. Then we add the new get/set lists, and pass them down in the net code when decoding things. A simple example is iptables; before: getsockopt(4, SOL_IP, 0x40 /* IP_??? */, ...) = 0 getsockopt(4, SOL_IP, 0x41 /* IP_??? */, ...) = 0 after: getsockopt(4, SOL_IP, IPT_SO_GET_INFO, ...) = 0 getsockopt(4, SOL_IP, IPT_SO_GET_ENTRIES, ...) = 0 If these were setsockopt calls, then 0x40 & 0x41 would be IPT_SO_SET_REPLACE & IPT_SO_SET_ADD_COUNTERS. * configure.ac: Check for netfilter headers. * defs.h (printxvals): New prototype. (printxval): Change to a define. * net.c: Include netfilter headers and new sockopts headers. (print_sockopt_fd_level_name): Add a is_getsockopt argument. Change SOL_IP and SOL_IPV6 decoding to use printxvals, and use is_getsockopt to pass more xlats down. (getsockopt): Call print_sockopt_fd_level_name with is_getsockopt as true. (setsockopt): Call print_sockopt_fd_level_name with is_getsockopt as false. * util.c (printxval): Rename to ... (printxvals): ... this. Rewrite to be varargs based. * xlat/getsockipoptions.in: New xlat list. * xlat/getsockipv6options.in, xlat/setsockipoptions.in, xlat/setsockipv6options.in: Likewise.
2015-08-19 20:29:27 +03:00
tcp->u_arg[1], tcp->u_arg[2], true);
if (verbose(tcp) && tcp->u_arg[4]
&& umove(tcp, tcp->u_arg[4], &ulen) == 0) {
set_tcb_priv_ulong(tcp, ulen);
return 0;
} else {
printaddr(tcp->u_arg[3]);
tprints(", ");
printaddr(tcp->u_arg[4]);
return RVAL_DECODED;
}
} else {
ulen = get_tcb_priv_ulong(tcp);
if (syserror(tcp) || umove(tcp, tcp->u_arg[4], &rlen) < 0) {
printaddr(tcp->u_arg[3]);
tprintf(", [%d]", ulen);
} else {
print_getsockopt(tcp, tcp->u_arg[1], tcp->u_arg[2],
tcp->u_arg[3], ulen, rlen);
if (ulen != rlen)
tprintf(", [%d->%d]", ulen, rlen);
else
tprintf(", [%d]", rlen);
}
}
return 0;
}
#ifdef IP_ADD_MEMBERSHIP
static void
print_mreq(struct tcb *const tcp, const kernel_ulong_t addr,
const int len)
{
struct ip_mreq mreq;
if (len < (int) sizeof(mreq)) {
printaddr(addr);
} else if (!umove_or_printaddr(tcp, addr, &mreq)) {
PRINT_FIELD_INET4_ADDR("{", mreq, imr_multiaddr);
PRINT_FIELD_INET4_ADDR(", ", mreq, imr_interface);
tprints("}");
}
}
#endif /* IP_ADD_MEMBERSHIP */
#ifdef IPV6_ADD_MEMBERSHIP
static void
print_mreq6(struct tcb *const tcp, const kernel_ulong_t addr,
const int len)
{
struct ipv6_mreq mreq;
if (len < (int) sizeof(mreq)) {
printaddr(addr);
} else if (!umove_or_printaddr(tcp, addr, &mreq)) {
PRINT_FIELD_INET_ADDR("{", mreq, ipv6mr_multiaddr, AF_INET6);
PRINT_FIELD_IFINDEX(", ", mreq, ipv6mr_interface);
tprints("}");
}
}
#endif /* IPV6_ADD_MEMBERSHIP */
#ifdef PACKET_RX_RING
static void
print_tpacket_req(struct tcb *const tcp, const kernel_ulong_t addr, const int len)
{
struct tpacket_req req;
if (len != sizeof(req) ||
umove(tcp, addr, &req) < 0) {
printaddr(addr);
} else {
PRINT_FIELD_U("{", req, tp_block_size);
PRINT_FIELD_U(", ", req, tp_block_nr);
PRINT_FIELD_U(", ", req, tp_frame_size);
PRINT_FIELD_U(", ", req, tp_frame_nr);
tprints("}");
}
}
#endif /* PACKET_RX_RING */
#ifdef PACKET_ADD_MEMBERSHIP
# include "xlat/packet_mreq_type.h"
static void
print_packet_mreq(struct tcb *const tcp, const kernel_ulong_t addr, const int len)
{
struct packet_mreq mreq;
if (len != sizeof(mreq) ||
umove(tcp, addr, &mreq) < 0) {
printaddr(addr);
} else {
unsigned int i;
PRINT_FIELD_IFINDEX("{", mreq, mr_ifindex);
PRINT_FIELD_XVAL(", ", mreq, mr_type, packet_mreq_type,
"PACKET_MR_???");
PRINT_FIELD_U(", ", mreq, mr_alen);
tprints(", mr_address=");
if (mreq.mr_alen > ARRAY_SIZE(mreq.mr_address))
mreq.mr_alen = ARRAY_SIZE(mreq.mr_address);
for (i = 0; i < mreq.mr_alen; ++i)
tprintf("%02x", mreq.mr_address[i]);
tprints("}");
}
}
#endif /* PACKET_ADD_MEMBERSHIP */
static void
print_setsockopt(struct tcb *const tcp, const unsigned int level,
const unsigned int name, const kernel_ulong_t addr,
const int len)
{
if (addr && verbose(tcp))
switch (level) {
case SOL_SOCKET:
switch (name) {
case SO_LINGER:
print_set_linger(tcp, addr, len);
return;
#ifdef SO_ATTACH_FILTER
case SO_ATTACH_FILTER:
# ifdef SO_ATTACH_REUSEPORT_CBPF
case SO_ATTACH_REUSEPORT_CBPF:
# endif
if ((unsigned int) len == get_sock_fprog_size())
decode_sock_fprog(tcp, addr);
else
printaddr(addr);
return;
#endif /* SO_ATTACH_FILTER */
}
2002-05-23 15:48:58 +04:00
break;
case SOL_IP:
switch (name) {
#ifdef IP_ADD_MEMBERSHIP
case IP_ADD_MEMBERSHIP:
case IP_DROP_MEMBERSHIP:
print_mreq(tcp, addr, len);
return;
#endif /* IP_ADD_MEMBERSHIP */
#ifdef MCAST_JOIN_GROUP
case MCAST_JOIN_GROUP:
case MCAST_LEAVE_GROUP:
print_group_req(tcp, addr, len);
return;
#endif /* MCAST_JOIN_GROUP */
}
break;
case SOL_IPV6:
switch (name) {
#ifdef IPV6_ADD_MEMBERSHIP
case IPV6_ADD_MEMBERSHIP:
case IPV6_DROP_MEMBERSHIP:
# ifdef IPV6_JOIN_ANYCAST
case IPV6_JOIN_ANYCAST:
# endif
# ifdef IPV6_LEAVE_ANYCAST
case IPV6_LEAVE_ANYCAST:
# endif
print_mreq6(tcp, addr, len);
return;
#endif /* IPV6_ADD_MEMBERSHIP */
#ifdef MCAST_JOIN_GROUP
case MCAST_JOIN_GROUP:
case MCAST_LEAVE_GROUP:
print_group_req(tcp, addr, len);
return;
#endif /* MCAST_JOIN_GROUP */
}
break;
case SOL_PACKET:
switch (name) {
#ifdef PACKET_RX_RING
case PACKET_RX_RING:
# ifdef PACKET_TX_RING
case PACKET_TX_RING:
# endif
print_tpacket_req(tcp, addr, len);
return;
#endif /* PACKET_RX_RING */
#ifdef PACKET_ADD_MEMBERSHIP
case PACKET_ADD_MEMBERSHIP:
case PACKET_DROP_MEMBERSHIP:
print_packet_mreq(tcp, addr, len);
return;
#endif /* PACKET_ADD_MEMBERSHIP */
}
2002-05-23 15:48:58 +04:00
break;
case SOL_RAW:
2002-05-23 15:48:58 +04:00
switch (name) {
case ICMP_FILTER:
print_icmp_filter(tcp, addr, len);
return;
2002-05-23 15:48:58 +04:00
}
break;
case SOL_NETLINK:
if (len < (int) sizeof(int))
printaddr(addr);
else
printnum_int(tcp, addr, "%d");
return;
2002-05-23 15:48:58 +04:00
}
2002-05-22 19:46:49 +04:00
2002-05-23 15:48:58 +04:00
/* default arg printing */
2002-05-22 19:46:49 +04:00
if (verbose(tcp)) {
if (len == sizeof(int)) {
printnum_int(tcp, addr, "%d");
} else {
printstrn(tcp, addr, len);
}
} else {
printaddr(addr);
2002-05-23 15:48:58 +04:00
}
}
SYS_FUNC(setsockopt)
2002-05-23 15:48:58 +04:00
{
print_sockopt_fd_level_name(tcp, tcp->u_arg[0],
decode extend getsockopt/setsockopt options Currently the code assumes the set of valid options between getsockopt and setsockopt are exactly the same and thus maintains one list. The kernel unfortunately does not do this -- it allows for different opts between the get and set functions. See the {g,s}et_opt{min,max} fields in the various netfilter subcores. To support this, extend the printxval function to take multiple sets of xlats as varargs. Then we add the new get/set lists, and pass them down in the net code when decoding things. A simple example is iptables; before: getsockopt(4, SOL_IP, 0x40 /* IP_??? */, ...) = 0 getsockopt(4, SOL_IP, 0x41 /* IP_??? */, ...) = 0 after: getsockopt(4, SOL_IP, IPT_SO_GET_INFO, ...) = 0 getsockopt(4, SOL_IP, IPT_SO_GET_ENTRIES, ...) = 0 If these were setsockopt calls, then 0x40 & 0x41 would be IPT_SO_SET_REPLACE & IPT_SO_SET_ADD_COUNTERS. * configure.ac: Check for netfilter headers. * defs.h (printxvals): New prototype. (printxval): Change to a define. * net.c: Include netfilter headers and new sockopts headers. (print_sockopt_fd_level_name): Add a is_getsockopt argument. Change SOL_IP and SOL_IPV6 decoding to use printxvals, and use is_getsockopt to pass more xlats down. (getsockopt): Call print_sockopt_fd_level_name with is_getsockopt as true. (setsockopt): Call print_sockopt_fd_level_name with is_getsockopt as false. * util.c (printxval): Rename to ... (printxvals): ... this. Rewrite to be varargs based. * xlat/getsockipoptions.in: New xlat list. * xlat/getsockipv6options.in, xlat/setsockipoptions.in, xlat/setsockipv6options.in: Likewise.
2015-08-19 20:29:27 +03:00
tcp->u_arg[1], tcp->u_arg[2], false);
print_setsockopt(tcp, tcp->u_arg[1], tcp->u_arg[2],
tcp->u_arg[3], tcp->u_arg[4]);
tprintf(", %d", (int) tcp->u_arg[4]);
return RVAL_DECODED;
1999-02-19 03:21:36 +03:00
}