Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 1991, 1992 Paul Kranenburg <pk@cs.few.eur.nl> |
| 3 | * Copyright (c) 1993 Branko Lankester <branko@hacktic.nl> |
| 4 | * Copyright (c) 1993, 1994, 1995, 1996 Rick Sladkey <jrs@world.std.com> |
Wichert Akkerman | 7987cdf | 2000-07-05 16:05:39 +0000 | [diff] [blame] | 5 | * Copyright (c) 1996-2000 Wichert Akkerman <wichert@cistron.nl> |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 6 | * All rights reserved. |
| 7 | * |
| 8 | * Redistribution and use in source and binary forms, with or without |
| 9 | * modification, are permitted provided that the following conditions |
| 10 | * are met: |
| 11 | * 1. Redistributions of source code must retain the above copyright |
| 12 | * notice, this list of conditions and the following disclaimer. |
| 13 | * 2. Redistributions in binary form must reproduce the above copyright |
| 14 | * notice, this list of conditions and the following disclaimer in the |
| 15 | * documentation and/or other materials provided with the distribution. |
| 16 | * 3. The name of the author may not be used to endorse or promote products |
| 17 | * derived from this software without specific prior written permission. |
| 18 | * |
| 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 20 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 21 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 22 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 23 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 24 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 25 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 28 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 | * |
| 30 | * $Id$ |
| 31 | */ |
| 32 | |
| 33 | #include "defs.h" |
| 34 | |
| 35 | #include <sys/stat.h> |
| 36 | #include <sys/socket.h> |
| 37 | #include <sys/un.h> |
Wichert Akkerman | f185065 | 2001-02-16 20:29:03 +0000 | [diff] [blame] | 38 | |
| 39 | #if defined(HAVE_SIN6_SCOPE_ID_LINUX) |
| 40 | #define in6_addr in6_addr_libc |
| 41 | #define ipv6_mreq ipv6_mreq_libc |
| 42 | #define sockaddr_in6 sockaddr_in6_libc |
| 43 | #endif |
| 44 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 45 | #include <netinet/in.h> |
Wichert Akkerman | 8c7122c | 2001-02-16 19:59:55 +0000 | [diff] [blame] | 46 | #ifdef HAVE_NETINET_TCP_H |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 47 | #include <netinet/tcp.h> |
| 48 | #endif |
Wichert Akkerman | 8c7122c | 2001-02-16 19:59:55 +0000 | [diff] [blame] | 49 | #ifdef HAVE_NETINET_UDP_H |
| 50 | #include <netinet/udp.h> |
| 51 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 52 | #include <arpa/inet.h> |
Wichert Akkerman | f185065 | 2001-02-16 20:29:03 +0000 | [diff] [blame] | 53 | #include <net/if.h> |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 54 | #if defined(LINUX) |
| 55 | #include <asm/types.h> |
| 56 | #if defined(__GLIBC__) && (__GLIBC__ >= 2) && (__GLIBC__ + __GLIBC_MINOR__ >= 3) |
| 57 | # include <netipx/ipx.h> |
| 58 | #else |
| 59 | # include <linux/ipx.h> |
| 60 | #endif |
| 61 | #endif /* LINUX */ |
| 62 | |
Wichert Akkerman | f185065 | 2001-02-16 20:29:03 +0000 | [diff] [blame] | 63 | #if defined (__GLIBC__) && (((__GLIBC__ < 2) || (__GLIBC__ == 2 && __GLIBC_MINOR__ < 1)) || defined(HAVE_SIN6_SCOPE_ID_LINUX)) |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 64 | #if defined(HAVE_LINUX_IN6_H) |
Wichert Akkerman | f185065 | 2001-02-16 20:29:03 +0000 | [diff] [blame] | 65 | #if defined(HAVE_SIN6_SCOPE_ID_LINUX) |
| 66 | #undef in6_addr |
| 67 | #undef ipv6_mreq |
| 68 | #undef sockaddr_in6 |
| 69 | #define in6_addr in6_addr_kernel |
| 70 | #define ipv6_mreq ipv6_mreq_kernel |
| 71 | #define sockaddr_in6 sockaddr_in6_kernel |
| 72 | #endif |
Wichert Akkerman | 505e176 | 1999-11-01 19:39:08 +0000 | [diff] [blame] | 73 | #include <linux/in6.h> |
Wichert Akkerman | f185065 | 2001-02-16 20:29:03 +0000 | [diff] [blame] | 74 | #if defined(HAVE_SIN6_SCOPE_ID_LINUX) |
| 75 | #undef in6_addr |
| 76 | #undef ipv6_mreq |
| 77 | #undef sockaddr_in6 |
| 78 | #define in6_addr in6_addr_libc |
| 79 | #define ipv6_mreq ipv6_mreq_libc |
| 80 | #define sockaddr_in6 sockaddr_in6_kernel |
| 81 | #endif |
Wichert Akkerman | 505e176 | 1999-11-01 19:39:08 +0000 | [diff] [blame] | 82 | #endif |
Wichert Akkerman | 2f473da | 1999-11-01 19:53:31 +0000 | [diff] [blame] | 83 | #endif |
Wichert Akkerman | 505e176 | 1999-11-01 19:39:08 +0000 | [diff] [blame] | 84 | |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 85 | #if defined(HAVE_SYS_UIO_H) |
| 86 | #include <sys/uio.h> |
| 87 | #endif |
| 88 | |
| 89 | #if defined(HAVE_LINUX_NETLINK_H) |
| 90 | #include <linux/netlink.h> |
| 91 | #endif |
| 92 | |
| 93 | #if defined(HAVE_LINUX_IF_PACKET_H) |
| 94 | #include <linux/if_packet.h> |
| 95 | #endif |
| 96 | |
Wichert Akkerman | 7987cdf | 2000-07-05 16:05:39 +0000 | [diff] [blame] | 97 | #if defined(HAVE_LINUX_ICMP_H) |
| 98 | #include <linux/icmp.h> |
| 99 | #endif |
| 100 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 101 | #ifndef PF_UNSPEC |
| 102 | #define PF_UNSPEC AF_UNSPEC |
| 103 | #endif |
| 104 | |
Wichert Akkerman | 16a03d2 | 2000-08-10 02:14:04 +0000 | [diff] [blame] | 105 | #if UNIXWARE >= 7 |
| 106 | #define HAVE_SENDMSG 1 /* HACK - *FIXME* */ |
| 107 | #endif |
| 108 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 109 | #ifdef LINUX |
| 110 | /* Under Linux these are enums so we can't test for them with ifdef. */ |
| 111 | #define IPPROTO_EGP IPPROTO_EGP |
| 112 | #define IPPROTO_PUP IPPROTO_PUP |
| 113 | #define IPPROTO_IDP IPPROTO_IDP |
| 114 | #define IPPROTO_IGMP IPPROTO_IGMP |
| 115 | #define IPPROTO_RAW IPPROTO_RAW |
| 116 | #define IPPROTO_MAX IPPROTO_MAX |
| 117 | #endif |
| 118 | |
Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 119 | static const struct xlat domains[] = { |
Roland McGrath | 5a8146a | 2004-06-04 02:24:14 +0000 | [diff] [blame] | 120 | #ifdef PF_AAL5 |
| 121 | { PF_AAL5, "PF_AAL5" }, |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 122 | #endif |
| 123 | #ifdef PF_APPLETALK |
| 124 | { PF_APPLETALK, "PF_APPLETALK" }, |
| 125 | #endif |
Roland McGrath | 5a8146a | 2004-06-04 02:24:14 +0000 | [diff] [blame] | 126 | #ifdef PF_ASH |
| 127 | { PF_ASH, "PF_ASH" }, |
| 128 | #endif |
| 129 | #ifdef PF_ATMPVC |
| 130 | { PF_ATMPVC, "PF_ATMPVC" }, |
| 131 | #endif |
| 132 | #ifdef PF_ATMSVC |
| 133 | { PF_ATMSVC, "PF_ATMSVC" }, |
| 134 | #endif |
| 135 | #ifdef PF_AX25 |
| 136 | { PF_AX25, "PF_AX25" }, |
| 137 | #endif |
| 138 | #ifdef PF_BLUETOOTH |
| 139 | { PF_BLUETOOTH, "PF_BLUETOOTH" }, |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 140 | #endif |
| 141 | #ifdef PF_BRIDGE |
| 142 | { PF_BRIDGE, "PF_BRIDGE" }, |
| 143 | #endif |
Roland McGrath | 5a8146a | 2004-06-04 02:24:14 +0000 | [diff] [blame] | 144 | #ifdef PF_DECnet |
| 145 | { PF_DECnet, "PF_DECnet" }, |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 146 | #endif |
| 147 | #ifdef PF_DECNET |
| 148 | { PF_DECNET, "PF_DECNET" }, |
| 149 | #endif |
Roland McGrath | 5a8146a | 2004-06-04 02:24:14 +0000 | [diff] [blame] | 150 | #ifdef PF_ECONET |
| 151 | { PF_ECONET, "PF_ECONET" }, |
| 152 | #endif |
| 153 | #ifdef PF_FILE |
| 154 | { PF_FILE, "PF_FILE" }, |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 155 | #endif |
| 156 | #ifdef PF_IMPLINK |
| 157 | { PF_IMPLINK, "PF_IMPLINK" }, |
| 158 | #endif |
Roland McGrath | 5a8146a | 2004-06-04 02:24:14 +0000 | [diff] [blame] | 159 | #ifdef PF_INET |
| 160 | { PF_INET, "PF_INET" }, |
| 161 | #endif |
| 162 | #ifdef PF_INET6 |
| 163 | { PF_INET6, "PF_INET6" }, |
| 164 | #endif |
| 165 | #ifdef PF_IPX |
| 166 | { PF_IPX, "PF_IPX" }, |
| 167 | #endif |
| 168 | #ifdef PF_IRDA |
| 169 | { PF_IRDA, "PF_IRDA" }, |
| 170 | #endif |
| 171 | #ifdef PF_ISO |
| 172 | { PF_ISO, "PF_ISO" }, |
| 173 | #endif |
| 174 | #ifdef PF_KEY |
| 175 | { PF_KEY, "PF_KEY" }, |
| 176 | #endif |
| 177 | #ifdef PF_UNIX |
| 178 | { PF_UNIX, "PF_UNIX" }, |
| 179 | #endif |
| 180 | #ifdef PF_LOCAL |
| 181 | { PF_LOCAL, "PF_LOCAL" }, |
| 182 | #endif |
| 183 | #ifdef PF_NETBEUI |
| 184 | { PF_NETBEUI, "PF_NETBEUI" }, |
| 185 | #endif |
| 186 | #ifdef PF_NETLINK |
| 187 | { PF_NETLINK, "PF_NETLINK" }, |
| 188 | #endif |
| 189 | #ifdef PF_NETROM |
| 190 | { PF_NETROM, "PF_NETROM" }, |
| 191 | #endif |
| 192 | #ifdef PF_PACKET |
| 193 | { PF_PACKET, "PF_PACKET" }, |
| 194 | #endif |
| 195 | #ifdef PF_PPPOX |
| 196 | { PF_PPPOX, "PF_PPPOX" }, |
| 197 | #endif |
| 198 | #ifdef PF_ROSE |
| 199 | { PF_ROSE, "PF_ROSE" }, |
| 200 | #endif |
| 201 | #ifdef PF_ROUTE |
| 202 | { PF_ROUTE, "PF_ROUTE" }, |
| 203 | #endif |
| 204 | #ifdef PF_SECURITY |
| 205 | { PF_SECURITY, "PF_SECURITY" }, |
| 206 | #endif |
| 207 | #ifdef PF_SNA |
| 208 | { PF_SNA, "PF_SNA" }, |
| 209 | #endif |
| 210 | #ifdef PF_UNSPEC |
| 211 | { PF_UNSPEC, "PF_UNSPEC" }, |
| 212 | #endif |
| 213 | #ifdef PF_WANPIPE |
| 214 | { PF_WANPIPE, "PF_WANPIPE" }, |
| 215 | #endif |
| 216 | #ifdef PF_X25 |
| 217 | { PF_X25, "PF_X25" }, |
| 218 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 219 | { 0, NULL }, |
| 220 | }; |
Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 221 | const struct xlat addrfams[] = { |
Roland McGrath | 5a8146a | 2004-06-04 02:24:14 +0000 | [diff] [blame] | 222 | #ifdef AF_APPLETALK |
| 223 | { AF_APPLETALK, "AF_APPLETALK" }, |
| 224 | #endif |
| 225 | #ifdef AF_ASH |
| 226 | { AF_ASH, "AF_ASH" }, |
| 227 | #endif |
| 228 | #ifdef AF_ATMPVC |
| 229 | { AF_ATMPVC, "AF_ATMPVC" }, |
| 230 | #endif |
| 231 | #ifdef AF_ATMSVC |
| 232 | { AF_ATMSVC, "AF_ATMSVC" }, |
| 233 | #endif |
| 234 | #ifdef AF_AX25 |
| 235 | { AF_AX25, "AF_AX25" }, |
| 236 | #endif |
| 237 | #ifdef AF_BLUETOOTH |
| 238 | { AF_BLUETOOTH, "AF_BLUETOOTH" }, |
| 239 | #endif |
| 240 | #ifdef AF_BRIDGE |
| 241 | { AF_BRIDGE, "AF_BRIDGE" }, |
| 242 | #endif |
| 243 | #ifdef AF_DECnet |
| 244 | { AF_DECnet, "AF_DECnet" }, |
| 245 | #endif |
| 246 | #ifdef AF_ECONET |
| 247 | { AF_ECONET, "AF_ECONET" }, |
| 248 | #endif |
| 249 | #ifdef AF_FILE |
| 250 | { AF_FILE, "AF_FILE" }, |
| 251 | #endif |
| 252 | #ifdef AF_IMPLINK |
| 253 | { AF_IMPLINK, "AF_IMPLINK" }, |
| 254 | #endif |
| 255 | #ifdef AF_INET |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 256 | { AF_INET, "AF_INET" }, |
Roland McGrath | 5a8146a | 2004-06-04 02:24:14 +0000 | [diff] [blame] | 257 | #endif |
Wichert Akkerman | e4aafd4 | 1999-11-26 09:54:08 +0000 | [diff] [blame] | 258 | #ifdef AF_INET6 |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 259 | { AF_INET6, "AF_INET6" }, |
Wichert Akkerman | e4aafd4 | 1999-11-26 09:54:08 +0000 | [diff] [blame] | 260 | #endif |
Roland McGrath | 5a8146a | 2004-06-04 02:24:14 +0000 | [diff] [blame] | 261 | #ifdef AF_IPX |
| 262 | { AF_IPX, "AF_IPX" }, |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 263 | #endif |
Roland McGrath | 5a8146a | 2004-06-04 02:24:14 +0000 | [diff] [blame] | 264 | #ifdef AF_IRDA |
| 265 | { AF_IRDA, "AF_IRDA" }, |
Wichert Akkerman | e4aafd4 | 1999-11-26 09:54:08 +0000 | [diff] [blame] | 266 | #endif |
| 267 | #ifdef AF_ISO |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 268 | { AF_ISO, "AF_ISO" }, |
| 269 | #endif |
Roland McGrath | 5a8146a | 2004-06-04 02:24:14 +0000 | [diff] [blame] | 270 | #ifdef AF_KEY |
| 271 | { AF_KEY, "AF_KEY" }, |
| 272 | #endif |
| 273 | #ifdef AF_UNIX |
| 274 | { AF_UNIX, "AF_UNIX" }, |
| 275 | #endif |
| 276 | #ifdef AF_LOCAL |
| 277 | { AF_LOCAL, "AF_LOCAL" }, |
| 278 | #endif |
| 279 | #ifdef AF_NETBEUI |
| 280 | { AF_NETBEUI, "AF_NETBEUI" }, |
| 281 | #endif |
| 282 | #ifdef AF_NETLINK |
| 283 | { AF_NETLINK, "AF_NETLINK" }, |
| 284 | #endif |
| 285 | #ifdef AF_NETROM |
| 286 | { AF_NETROM, "AF_NETROM" }, |
| 287 | #endif |
| 288 | #ifdef AF_PACKET |
| 289 | { AF_PACKET, "AF_PACKET" }, |
| 290 | #endif |
| 291 | #ifdef AF_PPPOX |
| 292 | { AF_PPPOX, "AF_PPPOX" }, |
| 293 | #endif |
| 294 | #ifdef AF_ROSE |
| 295 | { AF_ROSE, "AF_ROSE" }, |
| 296 | #endif |
| 297 | #ifdef AF_ROUTE |
| 298 | { AF_ROUTE, "AF_ROUTE" }, |
| 299 | #endif |
| 300 | #ifdef AF_SECURITY |
| 301 | { AF_SECURITY, "AF_SECURITY" }, |
| 302 | #endif |
| 303 | #ifdef AF_SNA |
| 304 | { AF_SNA, "AF_SNA" }, |
| 305 | #endif |
| 306 | #ifdef AF_UNSPEC |
| 307 | { AF_UNSPEC, "AF_UNSPEC" }, |
| 308 | #endif |
| 309 | #ifdef AF_WANPIPE |
| 310 | { AF_WANPIPE, "AF_WANPIPE" }, |
| 311 | #endif |
| 312 | #ifdef AF_X25 |
| 313 | { AF_X25, "AF_X25" }, |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 314 | #endif |
| 315 | { 0, NULL }, |
| 316 | }; |
Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 317 | static const struct xlat socktypes[] = { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 318 | { SOCK_STREAM, "SOCK_STREAM" }, |
| 319 | { SOCK_DGRAM, "SOCK_DGRAM" }, |
| 320 | #ifdef SOCK_RAW |
| 321 | { SOCK_RAW, "SOCK_RAW" }, |
| 322 | #endif |
| 323 | #ifdef SOCK_SEQPACKET |
| 324 | { SOCK_SEQPACKET,"SOCK_SEQPACKET"}, |
| 325 | #endif |
| 326 | #ifdef SOCK_RDM |
| 327 | { SOCK_RDM, "SOCK_RDM" }, |
| 328 | #endif |
| 329 | #ifdef SOCK_PACKET |
| 330 | { SOCK_PACKET, "SOCK_PACKET" }, |
| 331 | #endif |
| 332 | { 0, NULL }, |
| 333 | }; |
Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 334 | static const struct xlat socketlayers[] = { |
John Hughes | 1e4cb34 | 2001-03-06 09:25:46 +0000 | [diff] [blame] | 335 | #if defined(SOL_IP) |
Wichert Akkerman | efdecac | 2000-11-26 03:59:21 +0000 | [diff] [blame] | 336 | { SOL_IP, "SOL_IP" }, |
John Hughes | 1e4cb34 | 2001-03-06 09:25:46 +0000 | [diff] [blame] | 337 | #endif |
Wichert Akkerman | efdecac | 2000-11-26 03:59:21 +0000 | [diff] [blame] | 338 | #if defined(SOL_ICMP) |
| 339 | { SOL_ICMP, "SOL_ICMP" }, |
| 340 | #endif |
John Hughes | 1e4cb34 | 2001-03-06 09:25:46 +0000 | [diff] [blame] | 341 | #if defined(SOL_TCP) |
Wichert Akkerman | efdecac | 2000-11-26 03:59:21 +0000 | [diff] [blame] | 342 | { SOL_TCP, "SOL_TCP" }, |
John Hughes | 1e4cb34 | 2001-03-06 09:25:46 +0000 | [diff] [blame] | 343 | #endif |
| 344 | #if defined(SOL_UDP) |
Wichert Akkerman | efdecac | 2000-11-26 03:59:21 +0000 | [diff] [blame] | 345 | { SOL_UDP, "SOL_UDP" }, |
John Hughes | 1e4cb34 | 2001-03-06 09:25:46 +0000 | [diff] [blame] | 346 | #endif |
Wichert Akkerman | efdecac | 2000-11-26 03:59:21 +0000 | [diff] [blame] | 347 | #if defined(SOL_IPV6) |
| 348 | { SOL_IPV6, "SOL_IPV6" }, |
| 349 | #endif |
| 350 | #if defined(SOL_ICMPV6) |
| 351 | { SOL_ICMPV6, "SOL_ICMPV6" }, |
| 352 | #endif |
| 353 | #if defined(SOL_RAW) |
| 354 | { SOL_RAW, "SOL_RAW" }, |
| 355 | #endif |
| 356 | #if defined(SOL_IPX) |
| 357 | { SOL_IPX, "SOL_IPX" }, |
| 358 | #endif |
| 359 | #if defined(SOL_IPX) |
| 360 | { SOL_IPX, "SOL_IPX" }, |
| 361 | #endif |
| 362 | #if defined(SOL_AX25) |
| 363 | { SOL_AX25, "SOL_AX25" }, |
| 364 | #endif |
| 365 | #if defined(SOL_ATALK) |
| 366 | { SOL_ATALK, "SOL_ATALK" }, |
| 367 | #endif |
| 368 | #if defined(SOL_NETROM) |
| 369 | { SOL_NETROM, "SOL_NETROM" }, |
| 370 | #endif |
| 371 | #if defined(SOL_ROSE) |
| 372 | { SOL_ROSE, "SOL_ROSE" }, |
| 373 | #endif |
| 374 | #if defined(SOL_DECNET) |
| 375 | { SOL_DECNET, "SOL_DECNET" }, |
| 376 | #endif |
| 377 | #if defined(SOL_X25) |
| 378 | { SOL_X25, "SOL_X25" }, |
| 379 | #endif |
| 380 | #if defined(SOL_PACKET) |
| 381 | { SOL_PACKET, "SOL_PACKET" }, |
| 382 | #endif |
| 383 | #if defined(SOL_ATM) |
| 384 | { SOL_ATM, "SOL_ATM" }, |
| 385 | #endif |
| 386 | #if defined(SOL_AAL) |
| 387 | { SOL_AAL, "SOL_AAL" }, |
| 388 | #endif |
| 389 | #if defined(SOL_IRDA) |
| 390 | { SOL_IRDA, "SOL_IRDA" }, |
| 391 | #endif |
John Hughes | 6156357 | 2001-03-27 16:47:36 +0000 | [diff] [blame] | 392 | { SOL_SOCKET, "SOL_SOCKET" }, /* Never used! */ |
Wichert Akkerman | efdecac | 2000-11-26 03:59:21 +0000 | [diff] [blame] | 393 | }; |
John Hughes | 93f7fcc | 2002-05-22 15:46:49 +0000 | [diff] [blame] | 394 | /*** WARNING: DANGER WILL ROBINSON: NOTE "socketlayers" array above |
| 395 | falls into "protocols" array below!!!! This is intended!!! ***/ |
Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 396 | static const struct xlat protocols[] = { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 397 | { IPPROTO_IP, "IPPROTO_IP" }, |
| 398 | { IPPROTO_ICMP, "IPPROTO_ICMP" }, |
| 399 | { IPPROTO_TCP, "IPPROTO_TCP" }, |
| 400 | { IPPROTO_UDP, "IPPROTO_UDP" }, |
| 401 | #ifdef IPPROTO_GGP |
| 402 | { IPPROTO_GGP, "IPPROTO_GGP" }, |
| 403 | #endif |
| 404 | #ifdef IPPROTO_EGP |
| 405 | { IPPROTO_EGP, "IPPROTO_EGP" }, |
| 406 | #endif |
| 407 | #ifdef IPPROTO_PUP |
| 408 | { IPPROTO_PUP, "IPPROTO_PUP" }, |
| 409 | #endif |
| 410 | #ifdef IPPROTO_IDP |
| 411 | { IPPROTO_IDP, "IPPROTO_IDP" }, |
| 412 | #endif |
| 413 | #ifdef IPPROTO_IPV6 |
| 414 | { IPPROTO_IPV6, "IPPROTO_IPV6" }, |
| 415 | #endif |
| 416 | #ifdef IPPROTO_ICMPV6 |
| 417 | { IPPROTO_ICMPV6,"IPPROTO_ICMPV6"}, |
| 418 | #endif |
| 419 | #ifdef IPPROTO_IGMP |
| 420 | { IPPROTO_IGMP, "IPPROTO_IGMP" }, |
| 421 | #endif |
| 422 | #ifdef IPPROTO_HELLO |
| 423 | { IPPROTO_HELLO,"IPPROTO_HELLO" }, |
| 424 | #endif |
| 425 | #ifdef IPPROTO_ND |
| 426 | { IPPROTO_ND, "IPPROTO_ND" }, |
| 427 | #endif |
| 428 | #ifdef IPPROTO_RAW |
| 429 | { IPPROTO_RAW, "IPPROTO_RAW" }, |
| 430 | #endif |
| 431 | #ifdef IPPROTO_MAX |
| 432 | { IPPROTO_MAX, "IPPROTO_MAX" }, |
| 433 | #endif |
| 434 | #ifdef IPPROTO_IPIP |
| 435 | { IPPROTO_IPIP, "IPPROTO_IPIP" }, |
| 436 | #endif |
| 437 | { 0, NULL }, |
| 438 | }; |
Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 439 | static const struct xlat msg_flags[] = { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 440 | { MSG_OOB, "MSG_OOB" }, |
| 441 | #ifdef MSG_DONTROUTE |
| 442 | { MSG_DONTROUTE,"MSG_DONTROUTE" }, |
| 443 | #endif |
| 444 | #ifdef MSG_PEEK |
| 445 | { MSG_PEEK, "MSG_PEEK" }, |
| 446 | #endif |
| 447 | #ifdef MSG_CTRUNC |
| 448 | { MSG_CTRUNC, "MSG_CTRUNC" }, |
| 449 | #endif |
| 450 | #ifdef MSG_PROXY |
| 451 | { MSG_PROXY, "MSG_PROXY" }, |
| 452 | #endif |
| 453 | #ifdef MSG_EOR |
| 454 | { MSG_EOR, "MSG_EOR" }, |
| 455 | #endif |
| 456 | #ifdef MSG_WAITALL |
| 457 | { MSG_WAITALL, "MSG_WAITALL" }, |
| 458 | #endif |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 459 | #ifdef MSG_TRUNC |
| 460 | { MSG_TRUNC, "MSG_TRUNC" }, |
| 461 | #endif |
| 462 | #ifdef MSG_CTRUNC |
| 463 | { MSG_CTRUNC, "MSG_CTRUNC" }, |
| 464 | #endif |
| 465 | #ifdef MSG_ERRQUEUE |
| 466 | { MSG_ERRQUEUE, "MSG_ERRQUEUE" }, |
| 467 | #endif |
| 468 | #ifdef MSG_DONTWAIT |
| 469 | { MSG_DONTWAIT, "MSG_DONTWAIT" }, |
| 470 | #endif |
| 471 | #ifdef MSG_CONFIRM |
| 472 | { MSG_CONFIRM, "MSG_CONFIRM" }, |
| 473 | #endif |
| 474 | #ifdef MSG_PROBE |
| 475 | { MSG_PROBE, "MSG_PROBE" }, |
| 476 | #endif |
Roland McGrath | 05e5e79 | 2004-04-14 02:53:54 +0000 | [diff] [blame] | 477 | #ifdef MSG_FIN |
| 478 | { MSG_FIN, "MSG_FIN" }, |
| 479 | #endif |
| 480 | #ifdef MSG_SYN |
| 481 | { MSG_SYN, "MSG_SYN" }, |
| 482 | #endif |
| 483 | #ifdef MSG_RST |
| 484 | { MSG_RST, "MSG_RST" }, |
| 485 | #endif |
| 486 | #ifdef MSG_NOSIGNAL |
| 487 | { MSG_NOSIGNAL, "MSG_NOSIGNAL" }, |
| 488 | #endif |
| 489 | #ifdef MSG_MORE |
| 490 | { MSG_MORE, "MSG_MORE" }, |
| 491 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 492 | { 0, NULL }, |
| 493 | }; |
| 494 | |
Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 495 | static const struct xlat sockoptions[] = { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 496 | #ifdef SO_ACCEPTCONN |
Roland McGrath | 1bf4373 | 2004-08-31 07:16:14 +0000 | [diff] [blame] | 497 | { SO_ACCEPTCONN, "SO_ACCEPTCONN" }, |
John Hughes | 38ae88d | 2002-05-23 11:48:58 +0000 | [diff] [blame] | 498 | #endif |
| 499 | #ifdef SO_ALLRAW |
| 500 | { SO_ALLRAW, "SO_ALLRAW" }, |
| 501 | #endif |
Roland McGrath | 1bf4373 | 2004-08-31 07:16:14 +0000 | [diff] [blame] | 502 | #ifdef SO_ATTACH_FILTER |
| 503 | { SO_ATTACH_FILTER, "SO_ATTACH_FILTER" }, |
| 504 | #endif |
| 505 | #ifdef SO_BINDTODEVICE |
| 506 | { SO_BINDTODEVICE, "SO_BINDTODEVICE" }, |
| 507 | #endif |
| 508 | #ifdef SO_BROADCAST |
| 509 | { SO_BROADCAST, "SO_BROADCAST" }, |
| 510 | #endif |
| 511 | #ifdef SO_BSDCOMPAT |
| 512 | { SO_BSDCOMPAT, "SO_BSDCOMPAT" }, |
| 513 | #endif |
| 514 | #ifdef SO_DEBUG |
| 515 | { SO_DEBUG, "SO_DEBUG" }, |
| 516 | #endif |
| 517 | #ifdef SO_DETACH_FILTER |
| 518 | { SO_DETACH_FILTER, "SO_DETACH_FILTER" }, |
| 519 | #endif |
| 520 | #ifdef SO_DONTROUTE |
| 521 | { SO_DONTROUTE, "SO_DONTROUTE" }, |
| 522 | #endif |
| 523 | #ifdef SO_ERROR |
| 524 | { SO_ERROR, "SO_ERROR" }, |
| 525 | #endif |
John Hughes | 38ae88d | 2002-05-23 11:48:58 +0000 | [diff] [blame] | 526 | #ifdef SO_ICS |
| 527 | { SO_ICS, "SO_ICS" }, |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 528 | #endif |
Roland McGrath | 1bf4373 | 2004-08-31 07:16:14 +0000 | [diff] [blame] | 529 | #ifdef SO_IMASOCKET |
| 530 | { SO_IMASOCKET, "SO_IMASOCKET" }, |
| 531 | #endif |
| 532 | #ifdef SO_KEEPALIVE |
| 533 | { SO_KEEPALIVE, "SO_KEEPALIVE" }, |
| 534 | #endif |
| 535 | #ifdef SO_LINGER |
| 536 | { SO_LINGER, "SO_LINGER" }, |
| 537 | #endif |
| 538 | #ifdef SO_LISTENING |
| 539 | { SO_LISTENING, "SO_LISTENING" }, |
| 540 | #endif |
| 541 | #ifdef SO_MGMT |
| 542 | { SO_MGMT, "SO_MGMT" }, |
| 543 | #endif |
| 544 | #ifdef SO_NO_CHECK |
| 545 | { SO_NO_CHECK, "SO_NO_CHECK" }, |
| 546 | #endif |
| 547 | #ifdef SO_OOBINLINE |
| 548 | { SO_OOBINLINE, "SO_OOBINLINE" }, |
| 549 | #endif |
| 550 | #ifdef SO_ORDREL |
| 551 | { SO_ORDREL, "SO_ORDREL" }, |
| 552 | #endif |
| 553 | #ifdef SO_PARALLELSVR |
| 554 | { SO_PARALLELSVR, "SO_PARALLELSVR" }, |
| 555 | #endif |
| 556 | #ifdef SO_PASSCRED |
| 557 | { SO_PASSCRED, "SO_PASSCRED" }, |
| 558 | #endif |
| 559 | #ifdef SO_PEERCRED |
| 560 | { SO_PEERCRED, "SO_PEERCRED" }, |
| 561 | #endif |
| 562 | #ifdef SO_PEERNAME |
| 563 | { SO_PEERNAME, "SO_PEERNAME" }, |
| 564 | #endif |
| 565 | #ifdef SO_PEERSEC |
| 566 | { SO_PEERSEC, "SO_PEERSEC" }, |
| 567 | #endif |
| 568 | #ifdef SO_PRIORITY |
| 569 | { SO_PRIORITY, "SO_PRIORITY" }, |
| 570 | #endif |
| 571 | #ifdef SO_PROTOTYPE |
| 572 | { SO_PROTOTYPE, "SO_PROTOTYPE" }, |
| 573 | #endif |
| 574 | #ifdef SO_RCVBUF |
| 575 | { SO_RCVBUF, "SO_RCVBUF" }, |
| 576 | #endif |
| 577 | #ifdef SO_RCVLOWAT |
| 578 | { SO_RCVLOWAT, "SO_RCVLOWAT" }, |
| 579 | #endif |
| 580 | #ifdef SO_RCVTIMEO |
| 581 | { SO_RCVTIMEO, "SO_RCVTIMEO" }, |
| 582 | #endif |
| 583 | #ifdef SO_RDWR |
| 584 | { SO_RDWR, "SO_RDWR" }, |
| 585 | #endif |
| 586 | #ifdef SO_REUSEADDR |
| 587 | { SO_REUSEADDR, "SO_REUSEADDR" }, |
| 588 | #endif |
| 589 | #ifdef SO_REUSEPORT |
| 590 | { SO_REUSEPORT, "SO_REUSEPORT" }, |
| 591 | #endif |
| 592 | #ifdef SO_SECURITY_AUTHENTICATION |
| 593 | { SO_SECURITY_AUTHENTICATION,"SO_SECURITY_AUTHENTICATION"}, |
| 594 | #endif |
| 595 | #ifdef SO_SECURITY_ENCRYPTION_NETWORK |
| 596 | { SO_SECURITY_ENCRYPTION_NETWORK,"SO_SECURITY_ENCRYPTION_NETWORK"}, |
| 597 | #endif |
| 598 | #ifdef SO_SECURITY_ENCRYPTION_TRANSPORT |
| 599 | { SO_SECURITY_ENCRYPTION_TRANSPORT,"SO_SECURITY_ENCRYPTION_TRANSPORT"}, |
| 600 | #endif |
| 601 | #ifdef SO_SEMA |
| 602 | { SO_SEMA, "SO_SEMA" }, |
| 603 | #endif |
| 604 | #ifdef SO_SNDBUF |
| 605 | { SO_SNDBUF, "SO_SNDBUF" }, |
| 606 | #endif |
| 607 | #ifdef SO_SNDLOWAT |
| 608 | { SO_SNDLOWAT, "SO_SNDLOWAT" }, |
| 609 | #endif |
| 610 | #ifdef SO_SNDTIMEO |
| 611 | { SO_SNDTIMEO, "SO_SNDTIMEO" }, |
| 612 | #endif |
| 613 | #ifdef SO_TIMESTAMP |
| 614 | { SO_TIMESTAMP, "SO_TIMESTAMP" }, |
| 615 | #endif |
| 616 | #ifdef SO_TYPE |
| 617 | { SO_TYPE, "SO_TYPE" }, |
| 618 | #endif |
| 619 | #ifdef SO_USELOOPBACK |
| 620 | { SO_USELOOPBACK, "SO_USELOOPBACK" }, |
| 621 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 622 | { 0, NULL }, |
| 623 | }; |
| 624 | |
John Hughes | 93f7fcc | 2002-05-22 15:46:49 +0000 | [diff] [blame] | 625 | #if !defined (SOL_IP) && defined (IPPROTO_IP) |
| 626 | #define SOL_IP IPPROTO_IP |
| 627 | #endif |
| 628 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 629 | #ifdef SOL_IP |
Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 630 | static const struct xlat sockipoptions[] = { |
John Hughes | 93f7fcc | 2002-05-22 15:46:49 +0000 | [diff] [blame] | 631 | #ifdef IP_TOS |
Wichert Akkerman | 7987cdf | 2000-07-05 16:05:39 +0000 | [diff] [blame] | 632 | { IP_TOS, "IP_TOS" }, |
John Hughes | 93f7fcc | 2002-05-22 15:46:49 +0000 | [diff] [blame] | 633 | #endif |
| 634 | #ifdef IP_TTL |
Wichert Akkerman | 7987cdf | 2000-07-05 16:05:39 +0000 | [diff] [blame] | 635 | { IP_TTL, "IP_TTL" }, |
John Hughes | 93f7fcc | 2002-05-22 15:46:49 +0000 | [diff] [blame] | 636 | #endif |
| 637 | #ifdef IP_HDRINCL |
Wichert Akkerman | 7987cdf | 2000-07-05 16:05:39 +0000 | [diff] [blame] | 638 | { IP_HDRINCL, "IP_HDRINCL" }, |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 639 | #endif |
John Hughes | 93f7fcc | 2002-05-22 15:46:49 +0000 | [diff] [blame] | 640 | #ifdef IP_OPTIONS |
Wichert Akkerman | 7987cdf | 2000-07-05 16:05:39 +0000 | [diff] [blame] | 641 | { IP_OPTIONS, "IP_OPTIONS" }, |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 642 | #endif |
John Hughes | 93f7fcc | 2002-05-22 15:46:49 +0000 | [diff] [blame] | 643 | #ifdef IP_ROUTER_ALERT |
Wichert Akkerman | 7987cdf | 2000-07-05 16:05:39 +0000 | [diff] [blame] | 644 | { IP_ROUTER_ALERT, "IP_ROUTER_ALERT" }, |
John Hughes | 93f7fcc | 2002-05-22 15:46:49 +0000 | [diff] [blame] | 645 | #endif |
| 646 | #ifdef IP_RECVOPTIONS |
Wichert Akkerman | 7987cdf | 2000-07-05 16:05:39 +0000 | [diff] [blame] | 647 | { IP_RECVOPTIONS, "IP_RECVOPTIONS" }, |
| 648 | #endif |
John Hughes | 93f7fcc | 2002-05-22 15:46:49 +0000 | [diff] [blame] | 649 | #ifdef IP_RECVOPTS |
| 650 | { IP_RECVOPTS, "IP_RECVOPTS" }, |
| 651 | #endif |
| 652 | #ifdef IP_RECVRETOPTS |
| 653 | { IP_RECVRETOPTS, "IP_RECVRETOPTS" }, |
| 654 | #endif |
| 655 | #ifdef IP_RECVDSTADDR |
| 656 | { IP_RECVDSTADDR, "IP_RECVDSTADDR" }, |
| 657 | #endif |
| 658 | #ifdef IP_RETOPTS |
Wichert Akkerman | 7987cdf | 2000-07-05 16:05:39 +0000 | [diff] [blame] | 659 | { IP_RETOPTS, "IP_RETOPTS" }, |
John Hughes | 93f7fcc | 2002-05-22 15:46:49 +0000 | [diff] [blame] | 660 | #endif |
| 661 | #ifdef IP_PKTINFO |
Wichert Akkerman | 7987cdf | 2000-07-05 16:05:39 +0000 | [diff] [blame] | 662 | { IP_PKTINFO, "IP_PKTINFO" }, |
John Hughes | 93f7fcc | 2002-05-22 15:46:49 +0000 | [diff] [blame] | 663 | #endif |
| 664 | #ifdef IP_PKTOPTIONS |
| 665 | { IP_PKTOPTIONS, "IP_PKTOPTIONS" }, |
| 666 | #endif |
| 667 | #ifdef IP_MTU_DISCOVER |
Wichert Akkerman | 7987cdf | 2000-07-05 16:05:39 +0000 | [diff] [blame] | 668 | { IP_MTU_DISCOVER, "IP_MTU_DISCOVER" }, |
John Hughes | 93f7fcc | 2002-05-22 15:46:49 +0000 | [diff] [blame] | 669 | #endif |
| 670 | #ifdef IP_RECVERR |
Wichert Akkerman | 7987cdf | 2000-07-05 16:05:39 +0000 | [diff] [blame] | 671 | { IP_RECVERR, "IP_RECVERR" }, |
John Hughes | 93f7fcc | 2002-05-22 15:46:49 +0000 | [diff] [blame] | 672 | #endif |
| 673 | #ifdef IP_RECVTTL |
Wichert Akkerman | 7987cdf | 2000-07-05 16:05:39 +0000 | [diff] [blame] | 674 | { IP_RECVTTL, "IP_RECRECVTTL" }, |
John Hughes | 93f7fcc | 2002-05-22 15:46:49 +0000 | [diff] [blame] | 675 | #endif |
| 676 | #ifdef IP_RECVTOS |
Wichert Akkerman | 7987cdf | 2000-07-05 16:05:39 +0000 | [diff] [blame] | 677 | { IP_RECVTOS, "IP_RECRECVTOS" }, |
John Hughes | 93f7fcc | 2002-05-22 15:46:49 +0000 | [diff] [blame] | 678 | #endif |
| 679 | #ifdef IP_MTU |
Wichert Akkerman | 7987cdf | 2000-07-05 16:05:39 +0000 | [diff] [blame] | 680 | { IP_MTU, "IP_MTU" }, |
| 681 | #endif |
John Hughes | 93f7fcc | 2002-05-22 15:46:49 +0000 | [diff] [blame] | 682 | #ifdef IP_MULTICAST_IF |
Wichert Akkerman | 7987cdf | 2000-07-05 16:05:39 +0000 | [diff] [blame] | 683 | { IP_MULTICAST_IF, "IP_MULTICAST_IF" }, |
John Hughes | 93f7fcc | 2002-05-22 15:46:49 +0000 | [diff] [blame] | 684 | #endif |
| 685 | #ifdef IP_MULTICAST_TTL |
Wichert Akkerman | 7987cdf | 2000-07-05 16:05:39 +0000 | [diff] [blame] | 686 | { IP_MULTICAST_TTL, "IP_MULTICAST_TTL" }, |
John Hughes | 93f7fcc | 2002-05-22 15:46:49 +0000 | [diff] [blame] | 687 | #endif |
| 688 | #ifdef IP_MULTICAST_LOOP |
Wichert Akkerman | 7987cdf | 2000-07-05 16:05:39 +0000 | [diff] [blame] | 689 | { IP_MULTICAST_LOOP, "IP_MULTICAST_LOOP" }, |
John Hughes | 93f7fcc | 2002-05-22 15:46:49 +0000 | [diff] [blame] | 690 | #endif |
| 691 | #ifdef IP_ADD_MEMBERSHIP |
Wichert Akkerman | 7987cdf | 2000-07-05 16:05:39 +0000 | [diff] [blame] | 692 | { IP_ADD_MEMBERSHIP, "IP_ADD_MEMBERSHIP" }, |
John Hughes | 93f7fcc | 2002-05-22 15:46:49 +0000 | [diff] [blame] | 693 | #endif |
| 694 | #ifdef IP_DROP_MEMBERSHIP |
Wichert Akkerman | 7987cdf | 2000-07-05 16:05:39 +0000 | [diff] [blame] | 695 | { IP_DROP_MEMBERSHIP, "IP_DROP_MEMBERSHIP" }, |
John Hughes | 93f7fcc | 2002-05-22 15:46:49 +0000 | [diff] [blame] | 696 | #endif |
| 697 | #ifdef IP_BROADCAST_IF |
| 698 | { IP_BROADCAST_IF, "IP_BROADCAST_IF" }, |
| 699 | #endif |
| 700 | #ifdef IP_RECVIFINDEX |
| 701 | { IP_RECVIFINDEX, "IP_RECVIFINDEX" }, |
| 702 | #endif |
Roland McGrath | 4f6ba69 | 2004-08-31 07:01:26 +0000 | [diff] [blame] | 703 | #ifdef IP_MSFILTER |
| 704 | { IP_MSFILTER, "IP_MSFILTER" }, |
| 705 | #endif |
| 706 | #ifdef MCAST_MSFILTER |
| 707 | { MCAST_MSFILTER, "MCAST_MSFILTER" }, |
| 708 | #endif |
| 709 | #ifdef IP_FREEBIND |
| 710 | { IP_FREEBIND, "IP_FREEBIND" }, |
| 711 | #endif |
Wichert Akkerman | 7987cdf | 2000-07-05 16:05:39 +0000 | [diff] [blame] | 712 | { 0, NULL }, |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 713 | }; |
| 714 | #endif /* SOL_IP */ |
| 715 | |
Roland McGrath | 4f6ba69 | 2004-08-31 07:01:26 +0000 | [diff] [blame] | 716 | #ifdef SOL_IPV6 |
Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 717 | static const struct xlat sockipv6options[] = { |
Roland McGrath | 4f6ba69 | 2004-08-31 07:01:26 +0000 | [diff] [blame] | 718 | #ifdef IPV6_ADDRFORM |
| 719 | { IPV6_ADDRFORM, "IPV6_ADDRFORM" }, |
| 720 | #endif |
| 721 | #ifdef MCAST_FILTER |
| 722 | { MCAST_FILTER, "MCAST_FILTER" }, |
| 723 | #endif |
| 724 | #ifdef IPV6_PKTOPTIONS |
| 725 | { IPV6_PKTOPTIONS, "IPV6_PKTOPTIONS" }, |
| 726 | #endif |
| 727 | #ifdef IPV6_MTU |
| 728 | { IPV6_MTU, "IPV6_MTU" }, |
| 729 | #endif |
| 730 | #ifdef IPV6_V6ONLY |
| 731 | { IPV6_V6ONLY, "IPV6_V6ONLY" }, |
| 732 | #endif |
| 733 | #ifdef IPV6_PKTINFO |
| 734 | { IPV6_PKTINFO, "IPV6_PKTINFO" }, |
| 735 | #endif |
| 736 | #ifdef IPV6_HOPLIMIT |
| 737 | { IPV6_HOPLIMIT, "IPV6_HOPLIMIT" }, |
| 738 | #endif |
| 739 | #ifdef IPV6_RTHDR |
| 740 | { IPV6_RTHDR, "IPV6_RTHDR" }, |
| 741 | #endif |
| 742 | #ifdef IPV6_HOPOPTS |
| 743 | { IPV6_HOPOPTS, "IPV6_HOPOPTS" }, |
| 744 | #endif |
| 745 | #ifdef IPV6_DSTOPTS |
| 746 | { IPV6_DSTOPTS, "IPV6_DSTOPTS" }, |
| 747 | #endif |
| 748 | #ifdef IPV6_FLOWINFO |
| 749 | { IPV6_FLOWINFO, "IPV6_FLOWINFO" }, |
| 750 | #endif |
| 751 | #ifdef IPV6_UNICAST_HOPS |
| 752 | { IPV6_UNICAST_HOPS, "IPV6_UNICAST_HOPS" }, |
| 753 | #endif |
| 754 | #ifdef IPV6_MULTICAST_HOPS |
| 755 | { IPV6_MULTICAST_HOPS, "IPV6_MULTICAST_HOPS" }, |
| 756 | #endif |
| 757 | #ifdef IPV6_MULTICAST_LOOP |
| 758 | { IPV6_MULTICAST_LOOP, "IPV6_MULTICAST_LOOP" }, |
| 759 | #endif |
| 760 | #ifdef IPV6_MULTICAST_IF |
| 761 | { IPV6_MULTICAST_IF, "IPV6_MULTICAST_IF" }, |
| 762 | #endif |
| 763 | #ifdef IPV6_MTU_DISCOVER |
| 764 | { IPV6_MTU_DISCOVER, "IPV6_MTU_DISCOVER" }, |
| 765 | #endif |
| 766 | #ifdef IPV6_RECVERR |
| 767 | { IPV6_RECVERR, "IPV6_RECVERR" }, |
| 768 | #endif |
| 769 | #ifdef IPV6_FLOWINFO_SEND |
| 770 | { IPV6_FLOWINFO_SEND, "IPV6_FLOWINFO_SEND" }, |
| 771 | #endif |
| 772 | { 0, NULL }, |
| 773 | }; |
| 774 | #endif /* SOL_IPV6 */ |
| 775 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 776 | #ifdef SOL_IPX |
Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 777 | static const struct xlat sockipxoptions[] = { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 778 | { IPX_TYPE, "IPX_TYPE" }, |
| 779 | { 0, NULL }, |
| 780 | }; |
| 781 | #endif /* SOL_IPX */ |
| 782 | |
Wichert Akkerman | 7987cdf | 2000-07-05 16:05:39 +0000 | [diff] [blame] | 783 | #ifdef SOL_RAW |
Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 784 | static const struct xlat sockrawoptions[] = { |
Wichert Akkerman | 7987cdf | 2000-07-05 16:05:39 +0000 | [diff] [blame] | 785 | #if defined(ICMP_FILTER) |
| 786 | { ICMP_FILTER, "ICMP_FILTER" }, |
| 787 | #endif |
| 788 | { 0, NULL }, |
| 789 | }; |
| 790 | #endif /* SOL_RAW */ |
| 791 | |
| 792 | #ifdef SOL_PACKET |
Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 793 | static const struct xlat sockpacketoptions[] = { |
Wichert Akkerman | 7987cdf | 2000-07-05 16:05:39 +0000 | [diff] [blame] | 794 | { PACKET_ADD_MEMBERSHIP, "PACKET_ADD_MEMBERSHIP" }, |
| 795 | { PACKET_DROP_MEMBERSHIP, "PACKET_DROP_MEMBERSHIP"}, |
| 796 | #if defined(PACKET_RECV_OUTPUT) |
| 797 | { PACKET_RECV_OUTPUT, "PACKET_RECV_OUTPUT" }, |
| 798 | #endif |
| 799 | #if defined(PACKET_RX_RING) |
| 800 | { PACKET_RX_RING, "PACKET_RX_RING" }, |
| 801 | #endif |
| 802 | #if defined(PACKET_STATISTICS) |
| 803 | { PACKET_STATISTICS, "PACKET_STATISTICS" }, |
| 804 | #endif |
| 805 | { 0, NULL }, |
| 806 | }; |
| 807 | #endif /* SOL_PACKET */ |
| 808 | |
John Hughes | 93f7fcc | 2002-05-22 15:46:49 +0000 | [diff] [blame] | 809 | #if !defined (SOL_TCP) && defined (IPPROTO_TCP) |
| 810 | #define SOL_TCP IPPROTO_TCP |
| 811 | #endif |
| 812 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 813 | #ifdef SOL_TCP |
Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 814 | static const struct xlat socktcpoptions[] = { |
Wichert Akkerman | 8b8ff7c | 2001-12-27 22:27:30 +0000 | [diff] [blame] | 815 | { TCP_NODELAY, "TCP_NODELAY" }, |
| 816 | { TCP_MAXSEG, "TCP_MAXSEG" }, |
Wichert Akkerman | 7987cdf | 2000-07-05 16:05:39 +0000 | [diff] [blame] | 817 | #if defined(TCP_CORK) |
Wichert Akkerman | 8b8ff7c | 2001-12-27 22:27:30 +0000 | [diff] [blame] | 818 | { TCP_CORK, "TCP_CORK" }, |
Wichert Akkerman | 7987cdf | 2000-07-05 16:05:39 +0000 | [diff] [blame] | 819 | #endif |
Wichert Akkerman | 8b8ff7c | 2001-12-27 22:27:30 +0000 | [diff] [blame] | 820 | #if defined(TCP_KEEPIDLE) |
| 821 | { TCP_KEEPIDLE, "TCP_KEEPIDLE" }, |
| 822 | #endif |
| 823 | #if defined(TCP_KEEPINTVL) |
| 824 | { TCP_KEEPINTVL, "TCP_KEEPINTVL" }, |
| 825 | #endif |
| 826 | #if defined(TCP_KEEPCNT) |
| 827 | { TCP_KEEPCNT, "TCP_KEEPCNT" }, |
| 828 | #endif |
John Hughes | 38ae88d | 2002-05-23 11:48:58 +0000 | [diff] [blame] | 829 | #if defined(TCP_NKEEP) |
| 830 | { TCP_NKEEP, "TCP_NKEEP" }, |
| 831 | #endif |
Wichert Akkerman | 8b8ff7c | 2001-12-27 22:27:30 +0000 | [diff] [blame] | 832 | #if defined(TCP_SYNCNT) |
| 833 | { TCP_SYNCNT, "TCP_SYNCNT" }, |
| 834 | #endif |
| 835 | #if defined(TCP_LINGER2) |
| 836 | { TCP_LINGER2, "TCP_LINGER2" }, |
| 837 | #endif |
| 838 | #if defined(TCP_DEFER_ACCEPT) |
| 839 | { TCP_DEFER_ACCEPT, "TCP_DEFER_ACCEPT" }, |
| 840 | #endif |
| 841 | #if defined(TCP_WINDOW_CLAMP) |
| 842 | { TCP_WINDOW_CLAMP, "TCP_WINDOW_CLAMP" }, |
| 843 | #endif |
| 844 | #if defined(TCP_INFO) |
| 845 | { TCP_INFO, "TCP_INFO" }, |
| 846 | #endif |
| 847 | #if defined(TCP_QUICKACK) |
| 848 | { TCP_QUICKACK, "TCP_QUICKACK" }, |
| 849 | #endif |
| 850 | { 0, NULL }, |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 851 | }; |
| 852 | #endif /* SOL_TCP */ |
| 853 | |
Wichert Akkerman | 7987cdf | 2000-07-05 16:05:39 +0000 | [diff] [blame] | 854 | #ifdef SOL_RAW |
Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 855 | static const struct xlat icmpfilterflags[] = { |
Wichert Akkerman | 7987cdf | 2000-07-05 16:05:39 +0000 | [diff] [blame] | 856 | #if defined(ICMP_ECHOREPLY) |
| 857 | { (1<<ICMP_ECHOREPLY), "ICMP_ECHOREPLY" }, |
| 858 | #endif |
| 859 | #if defined(ICMP_DEST_UNREACH) |
| 860 | { (1<<ICMP_DEST_UNREACH), "ICMP_DEST_UNREACH" }, |
| 861 | #endif |
| 862 | #if defined(ICMP_SOURCE_QUENCH) |
| 863 | { (1<<ICMP_SOURCE_QUENCH), "ICMP_SOURCE_QUENCH" }, |
| 864 | #endif |
| 865 | #if defined(ICMP_REDIRECT) |
| 866 | { (1<<ICMP_REDIRECT), "ICMP_REDIRECT" }, |
| 867 | #endif |
| 868 | #if defined(ICMP_ECHO) |
| 869 | { (1<<ICMP_ECHO), "ICMP_ECHO" }, |
| 870 | #endif |
| 871 | #if defined(ICMP_TIME_EXCEEDED) |
| 872 | { (1<<ICMP_TIME_EXCEEDED), "ICMP_TIME_EXCEEDED" }, |
| 873 | #endif |
| 874 | #if defined(ICMP_PARAMETERPROB) |
| 875 | { (1<<ICMP_PARAMETERPROB), "ICMP_PARAMETERPROB" }, |
| 876 | #endif |
| 877 | #if defined(ICMP_TIMESTAMP) |
| 878 | { (1<<ICMP_TIMESTAMP), "ICMP_TIMESTAMP" }, |
| 879 | #endif |
| 880 | #if defined(ICMP_TIMESTAMPREPLY) |
| 881 | { (1<<ICMP_TIMESTAMPREPLY), "ICMP_TIMESTAMPREPLY" }, |
| 882 | #endif |
| 883 | #if defined(ICMP_INFO_REQUEST) |
| 884 | { (1<<ICMP_INFO_REQUEST), "ICMP_INFO_REQUEST" }, |
| 885 | #endif |
| 886 | #if defined(ICMP_INFO_REPLY) |
| 887 | { (1<<ICMP_INFO_REPLY), "ICMP_INFO_REPLY" }, |
| 888 | #endif |
| 889 | #if defined(ICMP_ADDRESS) |
| 890 | { (1<<ICMP_ADDRESS), "ICMP_ADDRESS" }, |
| 891 | #endif |
| 892 | #if defined(ICMP_ADDRESSREPLY) |
| 893 | { (1<<ICMP_ADDRESSREPLY), "ICMP_ADDRESSREPLY" }, |
| 894 | #endif |
| 895 | { 0, NULL }, |
| 896 | }; |
| 897 | #endif /* SOL_RAW */ |
| 898 | |
Wichert Akkerman | b0c598f | 2002-04-01 12:48:06 +0000 | [diff] [blame] | 899 | #if defined(AF_PACKET) /* from e.g. linux/if_packet.h */ |
Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 900 | static const struct xlat af_packet_types[] = { |
Wichert Akkerman | b0c598f | 2002-04-01 12:48:06 +0000 | [diff] [blame] | 901 | #if defined(PACKET_HOST) |
| 902 | { PACKET_HOST, "PACKET_HOST" }, |
| 903 | #endif |
| 904 | #if defined(PACKET_BROADCAST) |
| 905 | { PACKET_BROADCAST, "PACKET_BROADCAST" }, |
| 906 | #endif |
| 907 | #if defined(PACKET_MULTICAST) |
| 908 | { PACKET_MULTICAST, "PACKET_MULTICAST" }, |
| 909 | #endif |
| 910 | #if defined(PACKET_OTHERHOST) |
| 911 | { PACKET_OTHERHOST, "PACKET_OTHERHOST" }, |
| 912 | #endif |
| 913 | #if defined(PACKET_OUTGOING) |
| 914 | { PACKET_OUTGOING, "PACKET_OUTGOING" }, |
| 915 | #endif |
| 916 | #if defined(PACKET_LOOPBACK) |
| 917 | { PACKET_LOOPBACK, "PACKET_LOOPBACK" }, |
| 918 | #endif |
| 919 | #if defined(PACKET_FASTROUTE) |
| 920 | { PACKET_FASTROUTE, "PACKET_FASTROUTE" }, |
| 921 | #endif |
| 922 | { 0, NULL }, |
| 923 | }; |
| 924 | #endif /* defined(AF_PACKET) */ |
| 925 | |
Wichert Akkerman | 16a03d2 | 2000-08-10 02:14:04 +0000 | [diff] [blame] | 926 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 927 | void |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 928 | printsock(tcp, addr, addrlen) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 929 | struct tcb *tcp; |
| 930 | long addr; |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 931 | int addrlen; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 932 | { |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 933 | union { |
| 934 | char pad[128]; |
| 935 | struct sockaddr sa; |
| 936 | struct sockaddr_in sin; |
| 937 | struct sockaddr_un sau; |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 938 | #ifdef HAVE_INET_NTOP |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 939 | struct sockaddr_in6 sa6; |
| 940 | #endif |
| 941 | #if defined(LINUX) && defined(AF_IPX) |
| 942 | struct sockaddr_ipx sipx; |
| 943 | #endif |
| 944 | #ifdef AF_PACKET |
| 945 | struct sockaddr_ll ll; |
| 946 | #endif |
| 947 | #ifdef AF_NETLINK |
| 948 | struct sockaddr_nl nl; |
| 949 | #endif |
| 950 | } addrbuf; |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 951 | char string_addr[100]; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 952 | |
| 953 | if (addr == 0) { |
| 954 | tprintf("NULL"); |
| 955 | return; |
| 956 | } |
| 957 | if (!verbose(tcp)) { |
| 958 | tprintf("%#lx", addr); |
| 959 | return; |
| 960 | } |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 961 | if ((addrlen<2) || (addrlen>sizeof(addrbuf))) |
| 962 | addrlen=sizeof(addrbuf); |
| 963 | |
| 964 | if (umoven(tcp, addr, addrlen, (char*)&addrbuf) < 0) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 965 | tprintf("{...}"); |
| 966 | return; |
| 967 | } |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 968 | |
John Hughes | 1fcb1d6 | 2001-09-18 15:56:53 +0000 | [diff] [blame] | 969 | tprintf("{sa_family="); |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 970 | printxval(addrfams, addrbuf.sa.sa_family, "AF_???"); |
| 971 | tprintf(", "); |
| 972 | |
| 973 | switch (addrbuf.sa.sa_family) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 974 | case AF_UNIX: |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 975 | if (addrlen==2) { |
| 976 | tprintf("<nil>"); |
| 977 | } else if (addrbuf.sau.sun_path[0]) { |
Wichert Akkerman | fa30618 | 2001-02-21 16:42:26 +0000 | [diff] [blame] | 978 | tprintf("path=\"%-.*s\"", addrlen-2, addrbuf.sau.sun_path); |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 979 | } else { |
Wichert Akkerman | fa30618 | 2001-02-21 16:42:26 +0000 | [diff] [blame] | 980 | tprintf("path=@%-.*s", addrlen-3, addrbuf.sau.sun_path+1); |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 981 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 982 | break; |
| 983 | case AF_INET: |
John Hughes | 1fcb1d6 | 2001-09-18 15:56:53 +0000 | [diff] [blame] | 984 | tprintf("sin_port=htons(%u), sin_addr=inet_addr(\"%s\")", |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 985 | ntohs(addrbuf.sin.sin_port), inet_ntoa(addrbuf.sin.sin_addr)); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 986 | break; |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 987 | #ifdef HAVE_INET_NTOP |
| 988 | case AF_INET6: |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 989 | inet_ntop(AF_INET6, &addrbuf.sa6.sin6_addr, string_addr, sizeof(string_addr)); |
Wichert Akkerman | f185065 | 2001-02-16 20:29:03 +0000 | [diff] [blame] | 990 | tprintf("sin6_port=htons(%u), inet_pton(AF_INET6, \"%s\", &sin6_addr), sin6_flowinfo=%u", |
| 991 | ntohs(addrbuf.sa6.sin6_port), string_addr, |
| 992 | addrbuf.sa6.sin6_flowinfo); |
Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 993 | #ifdef HAVE_STRUCT_SOCKADDR_IN6_SIN6_SCOPE_ID |
Wichert Akkerman | f185065 | 2001-02-16 20:29:03 +0000 | [diff] [blame] | 994 | { |
| 995 | #if defined(HAVE_IF_INDEXTONAME) && defined(IN6_IS_ADDR_LINKLOCAL) && defined(IN6_IS_ADDR_MC_LINKLOCAL) |
| 996 | int numericscope = 0; |
| 997 | if (IN6_IS_ADDR_LINKLOCAL (&addrbuf.sa6.sin6_addr) |
| 998 | || IN6_IS_ADDR_MC_LINKLOCAL (&addrbuf.sa6.sin6_addr)) { |
| 999 | char scopebuf[IFNAMSIZ + 1]; |
Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 1000 | |
Wichert Akkerman | f185065 | 2001-02-16 20:29:03 +0000 | [diff] [blame] | 1001 | if (if_indextoname (addrbuf.sa6.sin6_scope_id, scopebuf) == NULL) |
| 1002 | numericscope++; |
| 1003 | else |
| 1004 | tprintf(", sin6_scope_id=if_nametoindex(\"%s\")", scopebuf); |
| 1005 | } else |
| 1006 | numericscope++; |
Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 1007 | |
Wichert Akkerman | f185065 | 2001-02-16 20:29:03 +0000 | [diff] [blame] | 1008 | if (numericscope) |
| 1009 | #endif |
| 1010 | tprintf(", sin6_scope_id=%u", addrbuf.sa6.sin6_scope_id); |
| 1011 | } |
| 1012 | #endif |
| 1013 | break; |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 1014 | #endif |
Wichert Akkerman | dbb440e | 1999-05-11 15:06:44 +0000 | [diff] [blame] | 1015 | #if defined(AF_IPX) && defined(linux) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1016 | case AF_IPX: |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 1017 | { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1018 | int i; |
John Hughes | 1fcb1d6 | 2001-09-18 15:56:53 +0000 | [diff] [blame] | 1019 | tprintf("sipx_port=htons(%u), ", |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 1020 | ntohs(addrbuf.sipx.sipx_port)); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1021 | /* Yes, I know, this does not look too |
| 1022 | * strace-ish, but otherwise the IPX |
| 1023 | * addresses just look monstrous... |
| 1024 | * Anyways, feel free if you don't like |
Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 1025 | * this way.. :) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1026 | */ |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 1027 | tprintf("%08lx:", (unsigned long)ntohl(addrbuf.sipx.sipx_network)); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1028 | for (i = 0; i<IPX_NODE_LEN; i++) |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 1029 | tprintf("%02x", addrbuf.sipx.sipx_node[i]); |
| 1030 | tprintf("/[%02x]", addrbuf.sipx.sipx_type); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1031 | } |
| 1032 | break; |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 1033 | #endif /* AF_IPX && linux */ |
| 1034 | #ifdef AF_PACKET |
| 1035 | case AF_PACKET: |
| 1036 | { |
| 1037 | int i; |
Wichert Akkerman | b0c598f | 2002-04-01 12:48:06 +0000 | [diff] [blame] | 1038 | tprintf("proto=%#04x, if%d, pkttype=", |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 1039 | ntohs(addrbuf.ll.sll_protocol), |
Wichert Akkerman | b0c598f | 2002-04-01 12:48:06 +0000 | [diff] [blame] | 1040 | addrbuf.ll.sll_ifindex); |
| 1041 | printxval(af_packet_types, addrbuf.ll.sll_pkttype, "?"); |
| 1042 | tprintf(", addr(%d)={%d, ", |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 1043 | addrbuf.ll.sll_halen, |
| 1044 | addrbuf.ll.sll_hatype); |
Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 1045 | for (i=0; i<addrbuf.ll.sll_halen; i++) |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 1046 | tprintf("%02x", addrbuf.ll.sll_addr[i]); |
| 1047 | } |
| 1048 | break; |
| 1049 | |
| 1050 | #endif /* AF_APACKET */ |
Roland McGrath | 36ef1bc | 2003-11-06 23:41:23 +0000 | [diff] [blame] | 1051 | #ifdef AF_NETLINK |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 1052 | case AF_NETLINK: |
| 1053 | tprintf("pid=%d, groups=%08x", addrbuf.nl.nl_pid, addrbuf.nl.nl_groups); |
| 1054 | break; |
| 1055 | #endif /* AF_NETLINK */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1056 | /* AF_AX25 AF_APPLETALK AF_NETROM AF_BRIDGE AF_AAL5 |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 1057 | AF_X25 AF_ROSE etc. still need to be done */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1058 | |
| 1059 | default: |
John Hughes | 1fcb1d6 | 2001-09-18 15:56:53 +0000 | [diff] [blame] | 1060 | tprintf("sa_data="); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1061 | printstr(tcp, (long) &((struct sockaddr *) addr)->sa_data, |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 1062 | sizeof addrbuf.sa.sa_data); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1063 | break; |
| 1064 | } |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 1065 | tprintf("}"); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1066 | } |
| 1067 | |
| 1068 | #if HAVE_SENDMSG |
Roland McGrath | 5077082 | 2004-10-06 22:11:51 +0000 | [diff] [blame] | 1069 | static const struct xlat scmvals[] = { |
| 1070 | #ifdef SCM_RIGHTS |
| 1071 | { SCM_RIGHTS, "SCM_RIGHTS" }, |
| 1072 | #endif |
| 1073 | #ifdef SCM_CREDENTIALS |
| 1074 | { SCM_CREDENTIALS, "SCM_CREDENTIALS" }, |
| 1075 | #endif |
| 1076 | { 0, NULL } |
| 1077 | }; |
| 1078 | |
| 1079 | static void |
| 1080 | printcmsghdr(tcp, addr, len) |
| 1081 | struct tcb *tcp; |
| 1082 | unsigned long addr; |
| 1083 | unsigned long len; |
| 1084 | { |
| 1085 | union { |
| 1086 | char msg_control[len]; |
| 1087 | struct cmsghdr cmsg; |
| 1088 | } u; |
| 1089 | if (umoven(tcp, addr, len, u.msg_control) < 0) { |
| 1090 | tprintf(", msg_control=%#lx", addr); |
| 1091 | return; |
| 1092 | } |
| 1093 | |
| 1094 | tprintf(", {cmsg_len=%zu, cmsg_level=", u.cmsg.cmsg_len); |
| 1095 | printxval(socketlayers, u.cmsg.cmsg_level, "SOL_???"); |
| 1096 | tprintf(", cmsg_type="); |
| 1097 | |
| 1098 | if (u.cmsg.cmsg_level == SOL_SOCKET) { |
| 1099 | printxval(scmvals, u.cmsg.cmsg_type, "SCM_???"); |
Roland McGrath | 96ad7b8 | 2005-02-02 03:11:32 +0000 | [diff] [blame] | 1100 | |
Roland McGrath | 5077082 | 2004-10-06 22:11:51 +0000 | [diff] [blame] | 1101 | if (u.cmsg.cmsg_type == SCM_RIGHTS) { |
| 1102 | int *fds = (int *) CMSG_DATA (&u.cmsg); |
| 1103 | int first = 1; |
| 1104 | tprintf(", {"); |
| 1105 | while ((char *) fds < (u.msg_control |
| 1106 | + u.cmsg.cmsg_len)) { |
| 1107 | if (!first) |
| 1108 | tprintf(", "); |
| 1109 | tprintf("%d", *fds++); |
| 1110 | first = 0; |
| 1111 | } |
| 1112 | tprintf("}}"); |
| 1113 | return; |
| 1114 | } |
| 1115 | if (u.cmsg.cmsg_type == SCM_CREDENTIALS |
| 1116 | && CMSG_LEN(sizeof(struct ucred)) <= u.cmsg.cmsg_len) { |
| 1117 | struct ucred *uc = (struct ucred *) CMSG_DATA (&u.cmsg); |
| 1118 | tprintf("{pid=%ld, uid=%ld, gid=%ld}}", |
| 1119 | (long)uc->pid, (long)uc->uid, (long)uc->gid); |
| 1120 | return; |
| 1121 | } |
| 1122 | } |
| 1123 | tprintf(", ...}"); |
| 1124 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1125 | |
| 1126 | static void |
| 1127 | printmsghdr(tcp, addr) |
| 1128 | struct tcb *tcp; |
| 1129 | long addr; |
| 1130 | { |
| 1131 | struct msghdr msg; |
| 1132 | |
Wichert Akkerman | 2e2553a | 1999-05-09 00:29:58 +0000 | [diff] [blame] | 1133 | if (umove(tcp, addr, &msg) < 0) { |
| 1134 | tprintf("%#lx", addr); |
| 1135 | return; |
| 1136 | } |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 1137 | tprintf("{msg_name(%d)=", msg.msg_namelen); |
| 1138 | printsock(tcp, (long)msg.msg_name, msg.msg_namelen); |
| 1139 | |
| 1140 | tprintf(", msg_iov(%lu)=", (unsigned long)msg.msg_iovlen); |
John Hughes | 1d08dcf | 2001-07-10 13:48:44 +0000 | [diff] [blame] | 1141 | tprint_iov(tcp, msg.msg_iovlen, (long) msg.msg_iov); |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 1142 | |
Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 1143 | #ifdef HAVE_STRUCT_MSGHDR_MSG_CONTROL |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 1144 | tprintf(", msg_controllen=%lu", (unsigned long)msg.msg_controllen); |
Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 1145 | if (msg.msg_controllen) |
Roland McGrath | 5077082 | 2004-10-06 22:11:51 +0000 | [diff] [blame] | 1146 | printcmsghdr(tcp, (unsigned long) msg.msg_control, |
| 1147 | msg.msg_controllen); |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 1148 | tprintf(", msg_flags="); |
| 1149 | if (printflags(msg_flags, msg.msg_flags)==0) |
| 1150 | tprintf("0"); |
Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 1151 | #else /* !HAVE_STRUCT_MSGHDR_MSG_CONTROL */ |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 1152 | tprintf("msg_accrights=%#lx, msg_accrightslen=%u", |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1153 | (unsigned long) msg.msg_accrights, msg.msg_accrightslen); |
Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 1154 | #endif /* !HAVE_STRUCT_MSGHDR_MSG_CONTROL */ |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 1155 | tprintf("}"); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1156 | } |
| 1157 | |
| 1158 | #endif /* HAVE_SENDMSG */ |
| 1159 | |
| 1160 | int |
| 1161 | sys_socket(tcp) |
| 1162 | struct tcb *tcp; |
| 1163 | { |
| 1164 | if (entering(tcp)) { |
| 1165 | printxval(domains, tcp->u_arg[0], "PF_???"); |
| 1166 | tprintf(", "); |
| 1167 | printxval(socktypes, tcp->u_arg[1], "SOCK_???"); |
| 1168 | tprintf(", "); |
| 1169 | switch (tcp->u_arg[0]) { |
| 1170 | case PF_INET: |
Roland McGrath | 8758e54 | 2003-06-23 23:39:59 +0000 | [diff] [blame] | 1171 | #ifdef PF_INET6 |
| 1172 | case PF_INET6: |
| 1173 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1174 | printxval(protocols, tcp->u_arg[2], "IPPROTO_???"); |
| 1175 | break; |
| 1176 | #ifdef PF_IPX |
| 1177 | case PF_IPX: |
| 1178 | /* BTW: I don't believe this.. */ |
| 1179 | tprintf("["); |
| 1180 | printxval(domains, tcp->u_arg[2], "PF_???"); |
| 1181 | tprintf("]"); |
| 1182 | break; |
| 1183 | #endif /* PF_IPX */ |
| 1184 | default: |
| 1185 | tprintf("%lu", tcp->u_arg[2]); |
| 1186 | break; |
| 1187 | } |
| 1188 | } |
| 1189 | return 0; |
| 1190 | } |
| 1191 | |
| 1192 | int |
John Hughes | bdf48f5 | 2001-03-06 15:08:09 +0000 | [diff] [blame] | 1193 | sys_so_socket(tcp) |
| 1194 | struct tcb *tcp; |
| 1195 | { |
| 1196 | if (entering(tcp)) { |
| 1197 | /* not sure really what these args are... but this |
| 1198 | * is how truss prints it |
| 1199 | */ |
| 1200 | tprintf("%ld, %ld, %ld, ", |
| 1201 | tcp->u_arg[0], tcp->u_arg[1], tcp->u_arg[2]); |
| 1202 | printpath(tcp, tcp->u_arg[3]); |
| 1203 | tprintf(", %ld", tcp->u_arg[4]); |
| 1204 | } |
| 1205 | return 0; |
| 1206 | } |
| 1207 | |
| 1208 | int |
| 1209 | sys_so_socketpair(tcp) |
| 1210 | struct tcb *tcp; |
| 1211 | { |
| 1212 | if (entering(tcp)) { |
| 1213 | /* not sure what this arg is */ |
| 1214 | tprintf("0x%lx", tcp->u_arg[0]); |
| 1215 | } |
| 1216 | return 0; |
| 1217 | } |
| 1218 | |
| 1219 | int |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1220 | sys_bind(tcp) |
| 1221 | struct tcb *tcp; |
| 1222 | { |
| 1223 | if (entering(tcp)) { |
| 1224 | tprintf("%ld, ", tcp->u_arg[0]); |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 1225 | printsock(tcp, tcp->u_arg[1], tcp->u_arg[2]); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1226 | tprintf(", %lu", tcp->u_arg[2]); |
| 1227 | } |
| 1228 | return 0; |
| 1229 | } |
| 1230 | |
| 1231 | int |
| 1232 | sys_connect(tcp) |
| 1233 | struct tcb *tcp; |
| 1234 | { |
| 1235 | return sys_bind(tcp); |
| 1236 | } |
| 1237 | |
| 1238 | int |
| 1239 | sys_listen(tcp) |
| 1240 | struct tcb *tcp; |
| 1241 | { |
| 1242 | if (entering(tcp)) { |
| 1243 | tprintf("%ld, %lu", tcp->u_arg[0], tcp->u_arg[1]); |
| 1244 | } |
| 1245 | return 0; |
| 1246 | } |
| 1247 | |
| 1248 | int |
| 1249 | sys_accept(tcp) |
| 1250 | struct tcb *tcp; |
| 1251 | { |
| 1252 | if (entering(tcp)) { |
| 1253 | tprintf("%ld, ", tcp->u_arg[0]); |
| 1254 | } else if (!tcp->u_arg[2]) |
| 1255 | tprintf("%#lx, NULL", tcp->u_arg[1]); |
| 1256 | else { |
| 1257 | if (tcp->u_arg[1] == 0 || syserror(tcp)) { |
| 1258 | tprintf("%#lx", tcp->u_arg[1]); |
| 1259 | } else { |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 1260 | printsock(tcp, tcp->u_arg[1], tcp->u_arg[2]); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1261 | } |
| 1262 | tprintf(", "); |
| 1263 | printnum(tcp, tcp->u_arg[2], "%lu"); |
| 1264 | } |
| 1265 | return 0; |
| 1266 | } |
| 1267 | |
| 1268 | int |
| 1269 | sys_send(tcp) |
| 1270 | struct tcb *tcp; |
| 1271 | { |
| 1272 | if (entering(tcp)) { |
| 1273 | tprintf("%ld, ", tcp->u_arg[0]); |
| 1274 | printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]); |
| 1275 | tprintf(", %lu, ", tcp->u_arg[2]); |
| 1276 | /* flags */ |
| 1277 | if (printflags(msg_flags, tcp->u_arg[3]) == 0) |
| 1278 | tprintf("0"); |
| 1279 | } |
| 1280 | return 0; |
| 1281 | } |
| 1282 | |
| 1283 | int |
| 1284 | sys_sendto(tcp) |
| 1285 | struct tcb *tcp; |
| 1286 | { |
| 1287 | if (entering(tcp)) { |
| 1288 | tprintf("%ld, ", tcp->u_arg[0]); |
| 1289 | printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]); |
| 1290 | tprintf(", %lu, ", tcp->u_arg[2]); |
| 1291 | /* flags */ |
| 1292 | if (printflags(msg_flags, tcp->u_arg[3]) == 0) |
| 1293 | tprintf("0"); |
| 1294 | /* to address */ |
| 1295 | tprintf(", "); |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 1296 | printsock(tcp, tcp->u_arg[4], tcp->u_arg[5]); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1297 | /* to length */ |
| 1298 | tprintf(", %lu", tcp->u_arg[5]); |
| 1299 | } |
| 1300 | return 0; |
| 1301 | } |
| 1302 | |
| 1303 | #ifdef HAVE_SENDMSG |
| 1304 | |
| 1305 | int |
| 1306 | sys_sendmsg(tcp) |
| 1307 | struct tcb *tcp; |
| 1308 | { |
| 1309 | if (entering(tcp)) { |
| 1310 | tprintf("%ld, ", tcp->u_arg[0]); |
| 1311 | printmsghdr(tcp, tcp->u_arg[1]); |
| 1312 | /* flags */ |
| 1313 | tprintf(", "); |
| 1314 | if (printflags(msg_flags, tcp->u_arg[2]) == 0) |
| 1315 | tprintf("0"); |
| 1316 | } |
| 1317 | return 0; |
| 1318 | } |
| 1319 | |
| 1320 | #endif /* HAVE_SENDMSG */ |
| 1321 | |
| 1322 | int |
| 1323 | sys_recv(tcp) |
| 1324 | struct tcb *tcp; |
| 1325 | { |
| 1326 | if (entering(tcp)) { |
| 1327 | tprintf("%ld, ", tcp->u_arg[0]); |
| 1328 | } else { |
| 1329 | if (syserror(tcp)) |
| 1330 | tprintf("%#lx", tcp->u_arg[1]); |
| 1331 | else |
| 1332 | printstr(tcp, tcp->u_arg[1], tcp->u_rval); |
| 1333 | |
| 1334 | tprintf(", %lu, ", tcp->u_arg[2]); |
| 1335 | if (printflags(msg_flags, tcp->u_arg[3]) == 0) |
| 1336 | tprintf("0"); |
| 1337 | } |
| 1338 | return 0; |
| 1339 | } |
| 1340 | |
| 1341 | int |
| 1342 | sys_recvfrom(tcp) |
| 1343 | struct tcb *tcp; |
| 1344 | { |
| 1345 | int fromlen; |
| 1346 | |
| 1347 | if (entering(tcp)) { |
| 1348 | tprintf("%ld, ", tcp->u_arg[0]); |
| 1349 | } else { |
| 1350 | if (syserror(tcp)) { |
| 1351 | tprintf("%#lx, %lu, %lu, %#lx, %#lx", |
| 1352 | tcp->u_arg[1], tcp->u_arg[2], tcp->u_arg[3], |
| 1353 | tcp->u_arg[4], tcp->u_arg[5]); |
| 1354 | return 0; |
| 1355 | } |
| 1356 | /* buf */ |
| 1357 | printstr(tcp, tcp->u_arg[1], tcp->u_rval); |
| 1358 | /* len */ |
| 1359 | tprintf(", %lu, ", tcp->u_arg[2]); |
| 1360 | /* flags */ |
| 1361 | if (printflags(msg_flags, tcp->u_arg[3]) == 0) |
| 1362 | tprintf("0"); |
| 1363 | /* from address, len */ |
| 1364 | if (!tcp->u_arg[4] || !tcp->u_arg[5]) { |
| 1365 | if (tcp->u_arg[4] == 0) |
| 1366 | tprintf(", NULL"); |
| 1367 | else |
| 1368 | tprintf(", %#lx", tcp->u_arg[4]); |
| 1369 | if (tcp->u_arg[5] == 0) |
| 1370 | tprintf(", NULL"); |
| 1371 | else |
| 1372 | tprintf(", %#lx", tcp->u_arg[5]); |
| 1373 | return 0; |
| 1374 | } |
| 1375 | if (umove(tcp, tcp->u_arg[5], &fromlen) < 0) { |
| 1376 | tprintf(", {...}, [?]"); |
| 1377 | return 0; |
| 1378 | } |
| 1379 | tprintf(", "); |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 1380 | printsock(tcp, tcp->u_arg[4], tcp->u_arg[5]); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1381 | /* from length */ |
| 1382 | tprintf(", [%u]", fromlen); |
| 1383 | } |
| 1384 | return 0; |
| 1385 | } |
| 1386 | |
| 1387 | #ifdef HAVE_SENDMSG |
| 1388 | |
| 1389 | int |
| 1390 | sys_recvmsg(tcp) |
| 1391 | struct tcb *tcp; |
| 1392 | { |
| 1393 | if (entering(tcp)) { |
| 1394 | tprintf("%ld, ", tcp->u_arg[0]); |
| 1395 | } else { |
| 1396 | if (syserror(tcp) || !verbose(tcp)) |
| 1397 | tprintf("%#lx", tcp->u_arg[1]); |
| 1398 | else |
| 1399 | printmsghdr(tcp, tcp->u_arg[1]); |
| 1400 | /* flags */ |
| 1401 | tprintf(", "); |
| 1402 | if (printflags(msg_flags, tcp->u_arg[2]) == 0) |
| 1403 | tprintf("0"); |
| 1404 | } |
| 1405 | return 0; |
| 1406 | } |
| 1407 | |
| 1408 | #endif /* HAVE_SENDMSG */ |
| 1409 | |
| 1410 | int |
| 1411 | sys_shutdown(tcp) |
| 1412 | struct tcb *tcp; |
| 1413 | { |
| 1414 | if (entering(tcp)) { |
| 1415 | tprintf("%ld, %ld", tcp->u_arg[0], tcp->u_arg[1]); |
| 1416 | switch (tcp->u_arg[1]) { |
| 1417 | case 0: |
| 1418 | tprintf("%s", " /* receive */"); |
| 1419 | break; |
| 1420 | case 1: |
| 1421 | tprintf("%s", " /* send */"); |
| 1422 | break; |
| 1423 | case 2: |
| 1424 | tprintf("%s", " /* send and receive */"); |
| 1425 | break; |
| 1426 | } |
| 1427 | } |
| 1428 | return 0; |
| 1429 | } |
| 1430 | |
| 1431 | int |
| 1432 | sys_getsockname(tcp) |
| 1433 | struct tcb *tcp; |
| 1434 | { |
| 1435 | return sys_accept(tcp); |
| 1436 | } |
| 1437 | |
| 1438 | int |
| 1439 | sys_getpeername(tcp) |
| 1440 | struct tcb *tcp; |
| 1441 | { |
| 1442 | return sys_accept(tcp); |
| 1443 | } |
| 1444 | |
| 1445 | int |
| 1446 | sys_pipe(tcp) |
| 1447 | struct tcb *tcp; |
| 1448 | { |
| 1449 | |
Roland McGrath | 6d1a65c | 2004-07-12 07:44:08 +0000 | [diff] [blame] | 1450 | #if defined(LINUX) && !defined(SPARC) && !defined(SPARC64) && !defined(SH) && !defined(IA64) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1451 | int fds[2]; |
| 1452 | |
| 1453 | if (exiting(tcp)) { |
| 1454 | if (syserror(tcp)) { |
| 1455 | tprintf("%#lx", tcp->u_arg[0]); |
| 1456 | return 0; |
| 1457 | } |
| 1458 | if (umoven(tcp, tcp->u_arg[0], sizeof fds, (char *) fds) < 0) |
| 1459 | tprintf("[...]"); |
| 1460 | else |
| 1461 | tprintf("[%u, %u]", fds[0], fds[1]); |
| 1462 | } |
Roland McGrath | 6d1a65c | 2004-07-12 07:44:08 +0000 | [diff] [blame] | 1463 | #elif defined(SPARC) || defined(SPARC64) || defined(SH) || defined(SVR4) || defined(FREEBSD) || defined(IA64) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1464 | if (exiting(tcp)) |
| 1465 | tprintf("[%lu, %lu]", tcp->u_rval, getrval2(tcp)); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1466 | #endif |
| 1467 | return 0; |
| 1468 | } |
| 1469 | |
| 1470 | int |
| 1471 | sys_socketpair(tcp) |
| 1472 | struct tcb *tcp; |
| 1473 | { |
| 1474 | #ifdef LINUX |
| 1475 | int fds[2]; |
| 1476 | #endif |
| 1477 | |
| 1478 | if (entering(tcp)) { |
| 1479 | printxval(domains, tcp->u_arg[0], "PF_???"); |
| 1480 | tprintf(", "); |
| 1481 | printxval(socktypes, tcp->u_arg[1], "SOCK_???"); |
| 1482 | tprintf(", "); |
| 1483 | switch (tcp->u_arg[0]) { |
| 1484 | case PF_INET: |
| 1485 | printxval(protocols, tcp->u_arg[2], "IPPROTO_???"); |
| 1486 | break; |
| 1487 | #ifdef PF_IPX |
| 1488 | case PF_IPX: |
| 1489 | /* BTW: I don't believe this.. */ |
| 1490 | tprintf("["); |
| 1491 | printxval(domains, tcp->u_arg[2], "PF_???"); |
| 1492 | tprintf("]"); |
| 1493 | break; |
| 1494 | #endif /* PF_IPX */ |
Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 1495 | default: |
Wichert Akkerman | 2e2553a | 1999-05-09 00:29:58 +0000 | [diff] [blame] | 1496 | tprintf("%lu", tcp->u_arg[2]); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1497 | break; |
| 1498 | } |
| 1499 | } else { |
| 1500 | if (syserror(tcp)) { |
Wichert Akkerman | 2e2553a | 1999-05-09 00:29:58 +0000 | [diff] [blame] | 1501 | tprintf(", %#lx", tcp->u_arg[3]); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1502 | return 0; |
| 1503 | } |
| 1504 | #ifdef LINUX |
| 1505 | if (umoven(tcp, tcp->u_arg[3], sizeof fds, (char *) fds) < 0) |
Wichert Akkerman | 2e2553a | 1999-05-09 00:29:58 +0000 | [diff] [blame] | 1506 | tprintf(", [...]"); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1507 | else |
| 1508 | tprintf(", [%u, %u]", fds[0], fds[1]); |
| 1509 | #endif /* LINUX */ |
Wichert Akkerman | 2e4ffe5 | 2000-09-03 23:57:48 +0000 | [diff] [blame] | 1510 | #if defined(SUNOS4) || defined(SVR4) || defined(FREEBSD) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1511 | tprintf(", [%lu, %lu]", tcp->u_rval, getrval2(tcp)); |
Wichert Akkerman | 2e4ffe5 | 2000-09-03 23:57:48 +0000 | [diff] [blame] | 1512 | #endif /* SUNOS4 || SVR4 || FREEBSD */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1513 | } |
| 1514 | return 0; |
| 1515 | } |
| 1516 | |
| 1517 | int |
| 1518 | sys_getsockopt(tcp) |
| 1519 | struct tcb *tcp; |
| 1520 | { |
| 1521 | if (entering(tcp)) { |
| 1522 | tprintf("%ld, ", tcp->u_arg[0]); |
John Hughes | 93f7fcc | 2002-05-22 15:46:49 +0000 | [diff] [blame] | 1523 | printxval(socketlayers, tcp->u_arg[1], "SOL_???"); |
| 1524 | tprintf (", "); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1525 | switch (tcp->u_arg[1]) { |
| 1526 | case SOL_SOCKET: |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1527 | printxval(sockoptions, tcp->u_arg[2], "SO_???"); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1528 | break; |
| 1529 | #ifdef SOL_IP |
| 1530 | case SOL_IP: |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1531 | printxval(sockipoptions, tcp->u_arg[2], "IP_???"); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1532 | break; |
| 1533 | #endif |
Roland McGrath | 4f6ba69 | 2004-08-31 07:01:26 +0000 | [diff] [blame] | 1534 | #ifdef SOL_IPV6 |
| 1535 | case SOL_IPV6: |
| 1536 | printxval(sockipv6options, tcp->u_arg[2], "IPV6_???"); |
| 1537 | break; |
| 1538 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1539 | #ifdef SOL_IPX |
| 1540 | case SOL_IPX: |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1541 | printxval(sockipxoptions, tcp->u_arg[2], "IPX_???"); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1542 | break; |
| 1543 | #endif |
Wichert Akkerman | 7987cdf | 2000-07-05 16:05:39 +0000 | [diff] [blame] | 1544 | #ifdef SOL_PACKET |
| 1545 | case SOL_PACKET: |
Wichert Akkerman | 7987cdf | 2000-07-05 16:05:39 +0000 | [diff] [blame] | 1546 | printxval(sockpacketoptions, tcp->u_arg[2], "PACKET_???"); |
Wichert Akkerman | 7987cdf | 2000-07-05 16:05:39 +0000 | [diff] [blame] | 1547 | break; |
| 1548 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1549 | #ifdef SOL_TCP |
| 1550 | case SOL_TCP: |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1551 | printxval(socktcpoptions, tcp->u_arg[2], "TCP_???"); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1552 | break; |
| 1553 | #endif |
| 1554 | |
| 1555 | /* SOL_AX25 SOL_ROSE SOL_ATALK SOL_NETROM SOL_UDP SOL_DECNET SOL_X25 |
| 1556 | * etc. still need work */ |
Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 1557 | default: |
John Hughes | 93f7fcc | 2002-05-22 15:46:49 +0000 | [diff] [blame] | 1558 | tprintf("%lu", tcp->u_arg[2]); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1559 | break; |
| 1560 | } |
| 1561 | } else { |
Roland McGrath | fc544db | 2005-02-02 02:48:57 +0000 | [diff] [blame] | 1562 | int len; |
John Hughes | 93f7fcc | 2002-05-22 15:46:49 +0000 | [diff] [blame] | 1563 | if (syserror(tcp) || umove (tcp, tcp->u_arg[4], &len) < 0) { |
| 1564 | tprintf(", %#lx, %#lx", |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1565 | tcp->u_arg[3], tcp->u_arg[4]); |
| 1566 | return 0; |
| 1567 | } |
John Hughes | 93f7fcc | 2002-05-22 15:46:49 +0000 | [diff] [blame] | 1568 | |
| 1569 | switch (tcp->u_arg[1]) { |
| 1570 | case SOL_SOCKET: |
| 1571 | switch (tcp->u_arg[2]) { |
| 1572 | #ifdef SO_LINGER |
| 1573 | case SO_LINGER: |
| 1574 | if (len == sizeof (struct linger)) { |
| 1575 | struct linger linger; |
| 1576 | if (umove (tcp, |
| 1577 | tcp->u_arg[3], |
| 1578 | &linger) < 0) |
| 1579 | break; |
| 1580 | tprintf(", {onoff=%d, linger=%d}, " |
Roland McGrath | 96ad7b8 | 2005-02-02 03:11:32 +0000 | [diff] [blame] | 1581 | "[%d]", |
John Hughes | 93f7fcc | 2002-05-22 15:46:49 +0000 | [diff] [blame] | 1582 | linger.l_onoff, |
| 1583 | linger.l_linger, |
| 1584 | len); |
| 1585 | return 0; |
| 1586 | } |
| 1587 | break; |
| 1588 | #endif |
| 1589 | } |
| 1590 | break; |
| 1591 | } |
| 1592 | |
| 1593 | tprintf (", "); |
| 1594 | if (len == sizeof (int)) { |
| 1595 | printnum(tcp, tcp->u_arg[3], "%ld"); |
| 1596 | } |
| 1597 | else { |
| 1598 | printstr (tcp, tcp->u_arg[3], len); |
| 1599 | } |
Roland McGrath | fc544db | 2005-02-02 02:48:57 +0000 | [diff] [blame] | 1600 | tprintf(", [%d]", len); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1601 | } |
| 1602 | return 0; |
| 1603 | } |
| 1604 | |
Wichert Akkerman | 7987cdf | 2000-07-05 16:05:39 +0000 | [diff] [blame] | 1605 | #if defined(ICMP_FILTER) |
| 1606 | static void printicmpfilter(tcp, addr) |
| 1607 | struct tcb *tcp; |
| 1608 | long addr; |
| 1609 | { |
| 1610 | struct icmp_filter filter; |
| 1611 | |
| 1612 | if (!addr) { |
| 1613 | tprintf("NULL"); |
| 1614 | return; |
| 1615 | } |
| 1616 | if (syserror(tcp) || !verbose(tcp)) { |
| 1617 | tprintf("%#lx", addr); |
| 1618 | return; |
| 1619 | } |
| 1620 | if (umove(tcp, addr, &filter) < 0) { |
| 1621 | tprintf("{...}"); |
| 1622 | return; |
| 1623 | } |
| 1624 | |
| 1625 | tprintf("~("); |
| 1626 | if (printflags(icmpfilterflags, ~filter.data) == 0) |
| 1627 | tprintf("0"); |
| 1628 | tprintf(")"); |
| 1629 | } |
| 1630 | #endif /* ICMP_FILTER */ |
| 1631 | |
John Hughes | 38ae88d | 2002-05-23 11:48:58 +0000 | [diff] [blame] | 1632 | static int |
| 1633 | printsockopt (tcp, level, name, addr, len) |
| 1634 | struct tcb *tcp; |
| 1635 | int level; |
| 1636 | int name; |
| 1637 | long addr; |
| 1638 | int len; |
| 1639 | { |
| 1640 | printxval(socketlayers, level, "SOL_??"); |
| 1641 | tprintf (", "); |
| 1642 | switch (level) { |
| 1643 | case SOL_SOCKET: |
| 1644 | printxval(sockoptions, name, "SO_???"); |
| 1645 | switch (name) { |
| 1646 | #if defined(SO_LINGER) |
| 1647 | case SO_LINGER: |
| 1648 | if (len == sizeof (struct linger)) { |
| 1649 | struct linger linger; |
| 1650 | if (umove (tcp, addr, &linger) < 0) |
| 1651 | break; |
| 1652 | tprintf(", {onoff=%d, linger=%d}", |
| 1653 | linger.l_onoff, |
| 1654 | linger.l_linger); |
| 1655 | return 0; |
| 1656 | } |
| 1657 | break; |
| 1658 | #endif |
| 1659 | } |
| 1660 | break; |
| 1661 | #ifdef SOL_IP |
| 1662 | case SOL_IP: |
| 1663 | printxval(sockipoptions, name, "IP_???"); |
| 1664 | break; |
| 1665 | #endif |
Roland McGrath | 4f6ba69 | 2004-08-31 07:01:26 +0000 | [diff] [blame] | 1666 | #ifdef SOL_IPV6 |
| 1667 | case SOL_IPV6: |
| 1668 | printxval(sockipv6options, name, "IPV6_???"); |
| 1669 | break; |
| 1670 | #endif |
John Hughes | 38ae88d | 2002-05-23 11:48:58 +0000 | [diff] [blame] | 1671 | #ifdef SOL_IPX |
| 1672 | case SOL_IPX: |
| 1673 | printxval(sockipxoptions, name, "IPX_???"); |
| 1674 | break; |
| 1675 | #endif |
| 1676 | #ifdef SOL_PACKET |
| 1677 | case SOL_PACKET: |
| 1678 | printxval(sockpacketoptions, name, "PACKET_???"); |
| 1679 | /* TODO: decode packate_mreq for PACKET_*_MEMBERSHIP */ |
| 1680 | break; |
| 1681 | #endif |
| 1682 | #ifdef SOL_TCP |
| 1683 | case SOL_TCP: |
| 1684 | printxval(socktcpoptions, name, "TCP_???"); |
| 1685 | break; |
| 1686 | #endif |
| 1687 | #ifdef SOL_RAW |
| 1688 | case SOL_RAW: |
| 1689 | printxval(sockrawoptions, name, "RAW_???"); |
| 1690 | switch (name) { |
| 1691 | #if defined(ICMP_FILTER) |
| 1692 | case ICMP_FILTER: |
| 1693 | tprintf(", "); |
| 1694 | printicmpfilter(tcp, addr); |
| 1695 | return 0; |
| 1696 | #endif |
| 1697 | } |
| 1698 | break; |
| 1699 | #endif |
| 1700 | |
Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 1701 | /* SOL_AX25 SOL_ATALK SOL_NETROM SOL_UDP SOL_DECNET SOL_X25 |
John Hughes | 38ae88d | 2002-05-23 11:48:58 +0000 | [diff] [blame] | 1702 | * etc. still need work */ |
| 1703 | |
| 1704 | default: |
| 1705 | tprintf("%u", name); |
| 1706 | } |
| 1707 | |
| 1708 | /* default arg printing */ |
| 1709 | |
| 1710 | tprintf (", "); |
Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 1711 | |
John Hughes | 38ae88d | 2002-05-23 11:48:58 +0000 | [diff] [blame] | 1712 | if (len == sizeof (int)) { |
| 1713 | printnum(tcp, addr, "%ld"); |
| 1714 | } |
| 1715 | else { |
| 1716 | printstr (tcp, addr, len); |
| 1717 | } |
| 1718 | return 0; |
| 1719 | } |
| 1720 | |
| 1721 | |
Roland McGrath | c3ca0d8 | 2003-01-14 07:53:38 +0000 | [diff] [blame] | 1722 | #ifdef HAVE_STRUCT_OPTHDR |
John Hughes | 38ae88d | 2002-05-23 11:48:58 +0000 | [diff] [blame] | 1723 | |
| 1724 | void |
| 1725 | print_sock_optmgmt (tcp, addr, len) |
| 1726 | struct tcb *tcp; |
| 1727 | long addr; |
| 1728 | int len; |
| 1729 | { |
| 1730 | int c = 0; |
| 1731 | struct opthdr hdr; |
| 1732 | |
John Hughes | 2c4e3a8 | 2002-05-24 10:19:44 +0000 | [diff] [blame] | 1733 | while (len >= (int) sizeof hdr) { |
John Hughes | 38ae88d | 2002-05-23 11:48:58 +0000 | [diff] [blame] | 1734 | if (umove(tcp, addr, &hdr) < 0) break; |
| 1735 | if (c++) { |
| 1736 | tprintf (", "); |
| 1737 | } |
| 1738 | else if (len > hdr.len + sizeof hdr) { |
| 1739 | tprintf ("["); |
| 1740 | } |
| 1741 | tprintf ("{"); |
| 1742 | addr += sizeof hdr; |
| 1743 | len -= sizeof hdr; |
| 1744 | printsockopt (tcp, hdr.level, hdr.name, addr, hdr.len); |
John Hughes | 2c4e3a8 | 2002-05-24 10:19:44 +0000 | [diff] [blame] | 1745 | if (hdr.len > 0) { |
| 1746 | addr += hdr.len; |
| 1747 | len -= hdr.len; |
| 1748 | } |
John Hughes | 38ae88d | 2002-05-23 11:48:58 +0000 | [diff] [blame] | 1749 | tprintf ("}"); |
| 1750 | } |
| 1751 | if (len > 0) { |
| 1752 | if (c++) tprintf (", "); |
| 1753 | printstr (tcp, addr, len); |
| 1754 | } |
| 1755 | if (c > 1) tprintf ("]"); |
| 1756 | } |
| 1757 | |
| 1758 | #endif |
| 1759 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1760 | int |
| 1761 | sys_setsockopt(tcp) |
| 1762 | struct tcb *tcp; |
| 1763 | { |
| 1764 | if (entering(tcp)) { |
| 1765 | tprintf("%ld, ", tcp->u_arg[0]); |
John Hughes | 38ae88d | 2002-05-23 11:48:58 +0000 | [diff] [blame] | 1766 | printsockopt (tcp, tcp->u_arg[1], tcp->u_arg[2], |
| 1767 | tcp->u_arg[3], tcp->u_arg[4]); |
John Hughes | 93f7fcc | 2002-05-22 15:46:49 +0000 | [diff] [blame] | 1768 | tprintf(", %lu", tcp->u_arg[4]); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1769 | } |
| 1770 | return 0; |
| 1771 | } |
Wichert Akkerman | 16a03d2 | 2000-08-10 02:14:04 +0000 | [diff] [blame] | 1772 | |
| 1773 | #if UNIXWARE >= 7 |
| 1774 | |
Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 1775 | static const struct xlat sock_version[] = { |
Wichert Akkerman | 16a03d2 | 2000-08-10 02:14:04 +0000 | [diff] [blame] | 1776 | { __NETLIB_UW211_SVR4, "UW211_SVR4" }, |
| 1777 | { __NETLIB_UW211_XPG4, "UW211_XPG4" }, |
| 1778 | { __NETLIB_GEMINI_SVR4, "GEMINI_SVR4" }, |
| 1779 | { __NETLIB_GEMINI_XPG4, "GEMINI_XPG4" }, |
| 1780 | { __NETLIB_FP1_SVR4, "FP1_SVR4" }, |
| 1781 | { __NETLIB_FP1_XPG4, "FP1_XPG4" }, |
| 1782 | { 0, NULL }, |
| 1783 | }; |
| 1784 | |
| 1785 | |
| 1786 | int |
| 1787 | netlib_call(tcp, func) |
| 1788 | struct tcb *tcp; |
| 1789 | int (*func) (); |
| 1790 | { |
| 1791 | if (entering(tcp)) { |
| 1792 | int i; |
| 1793 | printxval (sock_version, tcp->u_arg[0], "__NETLIB_???"); |
| 1794 | tprintf(", "); |
| 1795 | --tcp->u_nargs; |
| 1796 | for (i = 0; i < tcp->u_nargs; i++) |
| 1797 | tcp->u_arg[i] = tcp->u_arg[i + 1]; |
| 1798 | return func (tcp); |
Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 1799 | |
Wichert Akkerman | 16a03d2 | 2000-08-10 02:14:04 +0000 | [diff] [blame] | 1800 | } |
| 1801 | |
| 1802 | return func (tcp); |
| 1803 | } |
| 1804 | |
| 1805 | int |
| 1806 | sys_xsocket(tcp) |
| 1807 | struct tcb *tcp; |
| 1808 | { |
| 1809 | return netlib_call (tcp, sys_socket); |
| 1810 | } |
| 1811 | |
| 1812 | int |
| 1813 | sys_xsocketpair(tcp) |
| 1814 | struct tcb *tcp; |
| 1815 | { |
| 1816 | return netlib_call (tcp, sys_socketpair); |
| 1817 | } |
| 1818 | |
| 1819 | int |
| 1820 | sys_xbind(tcp) |
| 1821 | struct tcb *tcp; |
| 1822 | { |
| 1823 | return netlib_call (tcp, sys_bind); |
| 1824 | } |
| 1825 | |
| 1826 | int |
| 1827 | sys_xconnect(tcp) |
| 1828 | struct tcb *tcp; |
| 1829 | { |
| 1830 | return netlib_call (tcp, sys_connect); |
| 1831 | } |
| 1832 | |
| 1833 | int |
| 1834 | sys_xlisten(tcp) |
| 1835 | struct tcb *tcp; |
| 1836 | { |
| 1837 | return netlib_call (tcp, sys_listen); |
| 1838 | } |
| 1839 | |
| 1840 | int |
| 1841 | sys_xaccept(tcp) |
| 1842 | struct tcb *tcp; |
| 1843 | { |
| 1844 | return netlib_call (tcp, sys_accept); |
| 1845 | } |
| 1846 | |
| 1847 | int |
| 1848 | sys_xsendmsg(tcp) |
| 1849 | struct tcb *tcp; |
| 1850 | { |
| 1851 | return netlib_call (tcp, sys_sendmsg); |
| 1852 | } |
| 1853 | |
| 1854 | int |
| 1855 | sys_xrecvmsg(tcp) |
| 1856 | struct tcb *tcp; |
| 1857 | { |
| 1858 | return netlib_call (tcp, sys_recvmsg); |
| 1859 | } |
| 1860 | |
| 1861 | int |
| 1862 | sys_xgetsockaddr(tcp) |
| 1863 | struct tcb *tcp; |
| 1864 | { |
| 1865 | if (entering(tcp)) { |
| 1866 | printxval (sock_version, tcp->u_arg[0], "__NETLIB_???"); |
| 1867 | tprintf(", "); |
| 1868 | if (tcp->u_arg[1] == 0) { |
| 1869 | tprintf ("LOCALNAME, "); |
| 1870 | } |
| 1871 | else if (tcp->u_arg[1] == 1) { |
| 1872 | tprintf ("REMOTENAME, "); |
| 1873 | } |
| 1874 | else { |
| 1875 | tprintf ("%ld, ", tcp->u_arg [1]); |
| 1876 | } |
| 1877 | tprintf ("%ld, ", tcp->u_arg [2]); |
Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 1878 | } |
Wichert Akkerman | 16a03d2 | 2000-08-10 02:14:04 +0000 | [diff] [blame] | 1879 | else { |
| 1880 | if (tcp->u_arg[3] == 0 || syserror(tcp)) { |
| 1881 | tprintf("%#lx", tcp->u_arg[3]); |
| 1882 | } else { |
| 1883 | printsock(tcp, tcp->u_arg[3], tcp->u_arg[4]); |
| 1884 | } |
| 1885 | tprintf(", "); |
| 1886 | printnum(tcp, tcp->u_arg[4], "%lu"); |
| 1887 | } |
| 1888 | |
| 1889 | return 0; |
| 1890 | |
| 1891 | } |
| 1892 | |
| 1893 | #if 0 |
| 1894 | |
| 1895 | int |
| 1896 | sys_xsetsockaddr(tcp) |
| 1897 | struct tcb *tcp; |
| 1898 | { |
| 1899 | return netlib_call (tcp, sys_setsockaddr); |
| 1900 | } |
| 1901 | |
| 1902 | #endif |
| 1903 | |
| 1904 | int |
| 1905 | sys_xgetsockopt(tcp) |
| 1906 | struct tcb *tcp; |
| 1907 | { |
| 1908 | return netlib_call (tcp, sys_getsockopt); |
| 1909 | } |
| 1910 | |
| 1911 | int |
| 1912 | sys_xsetsockopt(tcp) |
| 1913 | struct tcb *tcp; |
| 1914 | { |
| 1915 | return netlib_call (tcp, sys_setsockopt); |
| 1916 | } |
| 1917 | |
| 1918 | int |
| 1919 | sys_xshutdown(tcp) |
| 1920 | struct tcb *tcp; |
| 1921 | { |
| 1922 | return netlib_call (tcp, sys_shutdown); |
| 1923 | } |
| 1924 | |
| 1925 | #endif |