Home | History | Annotate | Line # | Download | only in common
linux_socket.h revision 1.10.16.4
      1  1.10.16.4     skrll /*	$NetBSD: linux_socket.h,v 1.10.16.4 2005/11/10 14:01:07 skrll Exp $	*/
      2        1.4       erh 
      3        1.4       erh /*-
      4        1.6      fvdl  * Copyright (c) 1995, 1998 The NetBSD Foundation, Inc.
      5        1.4       erh  * All rights reserved.
      6        1.4       erh  *
      7        1.4       erh  * This code is derived from software contributed to The NetBSD Foundation
      8        1.6      fvdl  * by Frank van der Linden and Eric Haszlakiewicz.
      9        1.4       erh  *
     10        1.4       erh  * Redistribution and use in source and binary forms, with or without
     11        1.4       erh  * modification, are permitted provided that the following conditions
     12        1.4       erh  * are met:
     13        1.4       erh  * 1. Redistributions of source code must retain the above copyright
     14        1.4       erh  *    notice, this list of conditions and the following disclaimer.
     15        1.4       erh  * 2. Redistributions in binary form must reproduce the above copyright
     16        1.4       erh  *    notice, this list of conditions and the following disclaimer in the
     17        1.4       erh  *    documentation and/or other materials provided with the distribution.
     18        1.4       erh  * 3. All advertising materials mentioning features or use of this software
     19        1.4       erh  *    must display the following acknowledgement:
     20        1.4       erh  *	This product includes software developed by the NetBSD
     21        1.4       erh  *	Foundation, Inc. and its contributors.
     22        1.4       erh  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23        1.4       erh  *    contributors may be used to endorse or promote products derived
     24        1.4       erh  *    from this software without specific prior written permission.
     25        1.4       erh  *
     26        1.4       erh  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27        1.4       erh  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28        1.4       erh  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29        1.4       erh  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30        1.4       erh  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31        1.4       erh  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32        1.4       erh  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33        1.4       erh  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34        1.4       erh  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35        1.4       erh  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36        1.4       erh  * POSSIBILITY OF SUCH DAMAGE.
     37        1.1      fvdl  */
     38        1.1      fvdl 
     39        1.5  christos #ifndef _LINUX_SOCKET_H
     40        1.5  christos #define _LINUX_SOCKET_H
     41        1.1      fvdl 
     42        1.1      fvdl /*
     43        1.1      fvdl  * Various Linux socket defines. Everything that is not re-defined here
     44        1.1      fvdl  * is the same as in NetBSD.
     45        1.1      fvdl  *
     46        1.1      fvdl  * COMPAT_43 is assumed, and the osockaddr struct is used (it is what
     47        1.1      fvdl  * Linux uses)
     48        1.1      fvdl  */
     49        1.1      fvdl 
     50        1.1      fvdl /*
     51        1.1      fvdl  * Address families. There are fewer of them, and they're numbered
     52        1.1      fvdl  * a bit different
     53        1.1      fvdl  */
     54        1.1      fvdl 
     55        1.1      fvdl #define LINUX_AF_UNSPEC		0
     56        1.1      fvdl #define LINUX_AF_UNIX		1
     57        1.1      fvdl #define LINUX_AF_INET		2
     58        1.1      fvdl #define LINUX_AF_AX25		3
     59        1.1      fvdl #define LINUX_AF_IPX		4
     60        1.1      fvdl #define LINUX_AF_APPLETALK	5
     61        1.4       erh #define LINUX_AF_NETROM		6
     62        1.4       erh #define LINUX_AF_BRIDGE		7
     63        1.4       erh #define LINUX_AF_ATMPVC		8
     64        1.4       erh #define LINUX_AF_X25		9
     65        1.4       erh #define LINUX_AF_INET6		10
     66        1.4       erh #define LINUX_AF_ROSE		11
     67        1.4       erh #define LINUX_AF_DECnet		12
     68        1.4       erh #define LINUX_AF_NETBEUI	13
     69        1.4       erh #define LINUX_AF_SECURITY	14
     70        1.4       erh #define LINUX_pseudo_AF_KEY	15
     71        1.4       erh #define LINUX_AF_NETLINK	16
     72        1.4       erh #define LINUX_AF_PACKET		17
     73        1.4       erh #define LINUX_AF_ASH		18
     74        1.4       erh #define LINUX_AF_ECONET		19
     75        1.4       erh #define	LINUX_AF_ATMSVC		20
     76        1.4       erh #define	LINUX_AF_SNA		22
     77        1.4       erh #define LINUX_AF_MAX		32
     78        1.1      fvdl 
     79        1.1      fvdl /*
     80        1.1      fvdl  * Option levels for [gs]etsockopt(2). Only SOL_SOCKET is different,
     81        1.1      fvdl  * the rest matches IPPROTO_XXX
     82        1.1      fvdl  */
     83        1.1      fvdl 
     84        1.4       erh /* SOL_SOCKET is machine dependant on Linux */
     85        1.1      fvdl #define LINUX_SOL_IP		0
     86        1.4       erh #define LINUX_SOL_TCP		6
     87        1.4       erh #define LINUX_SOL_UDP		17
     88        1.4       erh /* Unused for now: */
     89        1.4       erh #define LINUX_SOL_IPV6		41
     90        1.4       erh #define LINUX_SOL_ICMPV6	58
     91        1.4       erh #define LINUX_SOL_RAW		255
     92        1.1      fvdl #define LINUX_SOL_IPX		256
     93        1.1      fvdl #define LINUX_SOL_AX25		257
     94        1.4       erh #define LINUX_SOL_ATALK		258
     95        1.4       erh #define LINUX_SOL_NETROM	259
     96        1.4       erh #define LINUX_SOL_ROSE		260
     97        1.4       erh #define LINUX_SOL_DECNET	261
     98        1.4       erh #define LINUX_SOL_X25		262
     99        1.4       erh #define LINUX_SOL_PACKET	263
    100        1.4       erh #define LINUX_SOL_ATM		264
    101        1.4       erh #define LINUX_SOL_AAL		265
    102        1.1      fvdl 
    103        1.1      fvdl /*
    104        1.4       erh  * Options for [gs]etsockopt(2), socket level are machine dependant.
    105        1.1      fvdl  */
    106        1.1      fvdl 
    107        1.1      fvdl /*
    108        1.4       erh  * Options for [gs]etsockopt(2), IP level.
    109        1.1      fvdl  */
    110        1.1      fvdl 
    111        1.2   mycroft #define LINUX_IP_TOS		1
    112        1.2   mycroft #define LINUX_IP_TTL		2
    113        1.2   mycroft #define	LINUX_IP_MULTICAST_IF	32
    114        1.2   mycroft #define	LINUX_IP_MULTICAST_TTL	33
    115        1.2   mycroft #define	LINUX_IP_MULTICAST_LOOP	34
    116        1.2   mycroft #define	LINUX_IP_ADD_MEMBERSHIP	35
    117        1.2   mycroft #define	LINUX_IP_DROP_MEMBERSHIP 36
    118        1.3   mycroft 
    119        1.3   mycroft /*
    120        1.4       erh  * Options for [gs]etsockopt(2), TCP level.
    121        1.3   mycroft  */
    122        1.3   mycroft 
    123        1.3   mycroft #define	LINUX_TCP_NODELAY	1
    124        1.3   mycroft #define	LINUX_TCP_MAXSEG	2
    125        1.1      fvdl 
    126  1.10.16.1     skrll /* "Socket"-level control message types: */
    127  1.10.16.1     skrll #define LINUX_SCM_RIGHTS	1	/* same as SCM_RIGHTS */
    128  1.10.16.1     skrll #define LINUX_SCM_CREDENTIALS	2	/* accepts ucred rather than sockcred */
    129  1.10.16.1     skrll #define LINUX_SCM_CONNECT	3	/* not supported in NetBSD */
    130  1.10.16.1     skrll #define LINUX_SCM_TIMESTAMP	LINUX_SO_TIMESTAMP
    131  1.10.16.1     skrll 				/* not actually implemented in Linux 2.5.15? */
    132  1.10.16.1     skrll 
    133  1.10.16.1     skrll /*
    134  1.10.16.1     skrll  * Message flags (for sendmsg/recvmsg)
    135  1.10.16.1     skrll  */
    136  1.10.16.1     skrll #define LINUX_MSG_OOB		0x001
    137  1.10.16.1     skrll #define LINUX_MSG_PEEK		0x002
    138  1.10.16.1     skrll #define LINUX_MSG_DONTROUTE	0x004
    139  1.10.16.1     skrll #define LINUX_MSG_TRYHARD	0x004
    140  1.10.16.1     skrll #define LINUX_MSG_CTRUNC	0x008
    141  1.10.16.1     skrll #define LINUX_MSG_PROBE		0x010	/* Don't send, only probe path */
    142  1.10.16.1     skrll #define LINUX_MSG_TRUNC		0x020
    143  1.10.16.1     skrll #define LINUX_MSG_DONTWAIT	0x040	/* this msg should be nonblocking */
    144  1.10.16.1     skrll #define LINUX_MSG_EOR		0x080	/* data completes record */
    145  1.10.16.1     skrll #define LINUX_MSG_WAITALL	0x100	/* wait for full request or error */
    146  1.10.16.1     skrll #define LINUX_MSG_FIN		0x200
    147  1.10.16.1     skrll #define LINUX_MSG_EOF		LINUX_MSG_FIN
    148  1.10.16.1     skrll #define LINUX_MSG_SYN		0x400
    149  1.10.16.1     skrll #define LINUX_MSG_CONFIRM	0x800	/* Confirm path validity */
    150  1.10.16.1     skrll #define LINUX_MSG_RST		0x1000
    151  1.10.16.1     skrll #define LINUX_MSG_ERRQUEUE	0x2000	/* fetch message from error queue */
    152  1.10.16.1     skrll #define LINUX_MSG_NOSIGNAL	0x4000	/* do not generate SIGPIPE */
    153  1.10.16.1     skrll #define LINUX_MSG_MORE		0x8000	/* Sender will send more */
    154  1.10.16.1     skrll 
    155  1.10.16.1     skrll /*
    156  1.10.16.1     skrll  * Linux alignment requirement for CMSG struct manipulation.
    157  1.10.16.1     skrll  * Linux aligns on (long) boundary on all architectures.
    158  1.10.16.1     skrll  */
    159  1.10.16.1     skrll #define LINUX_CMSG_ALIGN(n)	\
    160  1.10.16.1     skrll 	(((n) + sizeof(long)-1) & ~(sizeof(long)-1))
    161  1.10.16.1     skrll #define LINUX_CMSG_DATA(cmsg)	\
    162  1.10.16.1     skrll 	((u_char *)(void *)(cmsg) + __CMSG_ALIGN(sizeof(struct cmsghdr)))
    163  1.10.16.1     skrll #define	LINUX_CMSG_NXTHDR(mhdr, cmsg)	\
    164  1.10.16.1     skrll 	(((__caddr_t)(cmsg) + LINUX_CMSG_ALIGN((cmsg)->cmsg_len) + \
    165  1.10.16.1     skrll 			    LINUX_CMSG_ALIGN(sizeof(struct cmsghdr)) > \
    166  1.10.16.1     skrll 	    (((__caddr_t)(mhdr)->msg_control) + (mhdr)->msg_controllen)) ? \
    167  1.10.16.1     skrll 	    (struct cmsghdr *)NULL : \
    168  1.10.16.1     skrll 	    (struct cmsghdr *)((__caddr_t)(cmsg) + \
    169  1.10.16.1     skrll 	        LINUX_CMSG_ALIGN((cmsg)->cmsg_len)))
    170  1.10.16.1     skrll #define LINUX_CMSG_ALIGNDIFF	\
    171  1.10.16.1     skrll 	(CMSG_ALIGN(sizeof(struct cmsghdr)) - LINUX_CMSG_ALIGN(sizeof(struct cmsghdr)))
    172  1.10.16.1     skrll 
    173  1.10.16.1     skrll /*
    174  1.10.16.1     skrll  * Machine specific definitions.
    175  1.10.16.1     skrll  */
    176        1.5  christos #if defined(__i386__)
    177        1.5  christos #include <compat/linux/arch/i386/linux_socket.h>
    178        1.7     itohy #elif defined(__m68k__)
    179        1.7     itohy #include <compat/linux/arch/m68k/linux_socket.h>
    180        1.5  christos #elif defined(__alpha__)
    181        1.5  christos #include <compat/linux/arch/alpha/linux_socket.h>
    182        1.8      manu #elif defined(__powerpc__)
    183        1.8      manu #include <compat/linux/arch/powerpc/linux_socket.h>
    184        1.9      manu #elif defined(__mips__)
    185        1.9      manu #include <compat/linux/arch/mips/linux_socket.h>
    186       1.10     bjh21 #elif defined(__arm__)
    187       1.10     bjh21 #include <compat/linux/arch/arm/linux_socket.h>
    188  1.10.16.4     skrll #elif defined(__amd64__)
    189  1.10.16.4     skrll #include <compat/linux/arch/amd64/linux_socket.h>
    190        1.5  christos #else
    191        1.5  christos #error Undefined linux_socket.h machine type.
    192        1.5  christos #endif
    193        1.5  christos 
    194        1.5  christos #endif /* !_LINUX_SOCKET_H */
    195