]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/sys/socket.h
MFV r323530,r323533,r323534: 7431 ZFS Channel Programs, and followups
[FreeBSD/FreeBSD.git] / sys / sys / socket.h
1 /*-
2  * Copyright (c) 1982, 1985, 1986, 1988, 1993, 1994
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. Neither the name of the University nor the names of its contributors
14  *    may be used to endorse or promote products derived from this software
15  *    without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  *      @(#)socket.h    8.4 (Berkeley) 2/21/94
30  * $FreeBSD$
31  */
32
33 #ifndef _SYS_SOCKET_H_
34 #define _SYS_SOCKET_H_
35
36 #include <sys/cdefs.h>
37 #include <sys/_types.h>
38 #include <sys/_iovec.h>
39 #include <machine/_align.h>
40
41 /*
42  * Definitions related to sockets: types, address families, options.
43  */
44
45 /*
46  * Data types.
47  */
48 #if __BSD_VISIBLE
49 #ifndef _GID_T_DECLARED
50 typedef __gid_t         gid_t;
51 #define _GID_T_DECLARED
52 #endif
53
54 #ifndef _OFF_T_DECLARED
55 typedef __off_t         off_t;
56 #define _OFF_T_DECLARED
57 #endif
58
59 #ifndef _PID_T_DECLARED
60 typedef __pid_t         pid_t;
61 #define _PID_T_DECLARED
62 #endif
63 #endif
64
65 #ifndef _SA_FAMILY_T_DECLARED
66 typedef __sa_family_t   sa_family_t;
67 #define _SA_FAMILY_T_DECLARED
68 #endif
69
70 #ifndef _SOCKLEN_T_DECLARED
71 typedef __socklen_t     socklen_t;
72 #define _SOCKLEN_T_DECLARED
73 #endif
74  
75 #ifndef _SSIZE_T_DECLARED
76 typedef __ssize_t       ssize_t;
77 #define _SSIZE_T_DECLARED
78 #endif
79
80 #if __BSD_VISIBLE 
81 #ifndef _UID_T_DECLARED
82 typedef __uid_t         uid_t;
83 #define _UID_T_DECLARED
84 #endif
85 #endif
86
87 #ifndef _UINT32_T_DECLARED
88 typedef __uint32_t      uint32_t;
89 #define _UINT32_T_DECLARED
90 #endif
91
92 #ifndef _UINTPTR_T_DECLARED
93 typedef __uintptr_t     uintptr_t;
94 #define _UINTPTR_T_DECLARED
95 #endif
96
97 /*
98  * Types
99  */
100 #define SOCK_STREAM     1               /* stream socket */
101 #define SOCK_DGRAM      2               /* datagram socket */
102 #define SOCK_RAW        3               /* raw-protocol interface */
103 #if __BSD_VISIBLE
104 #define SOCK_RDM        4               /* reliably-delivered message */
105 #endif
106 #define SOCK_SEQPACKET  5               /* sequenced packet stream */
107
108 #if __BSD_VISIBLE
109 /*
110  * Creation flags, OR'ed into socket() and socketpair() type argument.
111  */
112 #define SOCK_CLOEXEC    0x10000000
113 #define SOCK_NONBLOCK   0x20000000
114 #ifdef _KERNEL
115 /*
116  * Flags for accept1(), kern_accept4() and solisten_dequeue, in addition
117  * to SOCK_CLOEXEC and SOCK_NONBLOCK.
118  */
119 #define ACCEPT4_INHERIT 0x1
120 #define ACCEPT4_COMPAT  0x2
121 #endif  /* _KERNEL */
122 #endif  /* __BSD_VISIBLE */
123
124 /*
125  * Option flags per-socket.
126  */
127 #define SO_DEBUG        0x0001          /* turn on debugging info recording */
128 #define SO_ACCEPTCONN   0x0002          /* socket has had listen() */
129 #define SO_REUSEADDR    0x0004          /* allow local address reuse */
130 #define SO_KEEPALIVE    0x0008          /* keep connections alive */
131 #define SO_DONTROUTE    0x0010          /* just use interface addresses */
132 #define SO_BROADCAST    0x0020          /* permit sending of broadcast msgs */
133 #if __BSD_VISIBLE
134 #define SO_USELOOPBACK  0x0040          /* bypass hardware when possible */
135 #endif
136 #define SO_LINGER       0x0080          /* linger on close if data present */
137 #define SO_OOBINLINE    0x0100          /* leave received OOB data in line */
138 #if __BSD_VISIBLE
139 #define SO_REUSEPORT    0x0200          /* allow local address & port reuse */
140 #define SO_TIMESTAMP    0x0400          /* timestamp received dgram traffic */
141 #define SO_NOSIGPIPE    0x0800          /* no SIGPIPE from EPIPE */
142 #define SO_ACCEPTFILTER 0x1000          /* there is an accept filter */
143 #define SO_BINTIME      0x2000          /* timestamp received dgram traffic */
144 #endif
145 #define SO_NO_OFFLOAD   0x4000          /* socket cannot be offloaded */
146 #define SO_NO_DDP       0x8000          /* disable direct data placement */
147
148 /*
149  * Additional options, not kept in so_options.
150  */
151 #define SO_SNDBUF       0x1001          /* send buffer size */
152 #define SO_RCVBUF       0x1002          /* receive buffer size */
153 #define SO_SNDLOWAT     0x1003          /* send low-water mark */
154 #define SO_RCVLOWAT     0x1004          /* receive low-water mark */
155 #define SO_SNDTIMEO     0x1005          /* send timeout */
156 #define SO_RCVTIMEO     0x1006          /* receive timeout */
157 #define SO_ERROR        0x1007          /* get error status and clear */
158 #define SO_TYPE         0x1008          /* get socket type */
159 #if __BSD_VISIBLE
160 #define SO_LABEL        0x1009          /* socket's MAC label */
161 #define SO_PEERLABEL    0x1010          /* socket's peer's MAC label */
162 #define SO_LISTENQLIMIT 0x1011          /* socket's backlog limit */
163 #define SO_LISTENQLEN   0x1012          /* socket's complete queue length */
164 #define SO_LISTENINCQLEN        0x1013  /* socket's incomplete queue length */
165 #define SO_SETFIB       0x1014          /* use this FIB to route */
166 #define SO_USER_COOKIE  0x1015          /* user cookie (dummynet etc.) */
167 #define SO_PROTOCOL     0x1016          /* get socket protocol (Linux name) */
168 #define SO_PROTOTYPE    SO_PROTOCOL     /* alias for SO_PROTOCOL (SunOS name) */
169 #define SO_TS_CLOCK     0x1017          /* clock type used for SO_TIMESTAMP */
170 #define SO_MAX_PACING_RATE      0x1018  /* socket's max TX pacing rate (Linux name) */
171 #endif
172
173 #if __BSD_VISIBLE
174 #define SO_TS_REALTIME_MICRO    0       /* microsecond resolution, realtime */
175 #define SO_TS_BINTIME           1       /* sub-nanosecond resolution, realtime */
176 #define SO_TS_REALTIME          2       /* nanosecond resolution, realtime */
177 #define SO_TS_MONOTONIC         3       /* nanosecond resolution, monotonic */
178 #define SO_TS_DEFAULT           SO_TS_REALTIME_MICRO
179 #define SO_TS_CLOCK_MAX         SO_TS_MONOTONIC
180 #endif
181
182 /*
183  * Space reserved for new socket options added by third-party vendors.
184  * This range applies to all socket option levels.  New socket options
185  * in FreeBSD should always use an option value less than SO_VENDOR.
186  */
187 #if __BSD_VISIBLE
188 #define SO_VENDOR       0x80000000
189 #endif
190
191 /*
192  * Structure used for manipulating linger option.
193  */
194 struct linger {
195         int     l_onoff;                /* option on/off */
196         int     l_linger;               /* linger time */
197 };
198
199 #if __BSD_VISIBLE
200 struct accept_filter_arg {
201         char    af_name[16];
202         char    af_arg[256-16];
203 };
204 #endif
205
206 /*
207  * Level number for (get/set)sockopt() to apply to socket itself.
208  */
209 #define SOL_SOCKET      0xffff          /* options for socket level */
210
211 /*
212  * Address families.
213  */
214 #define AF_UNSPEC       0               /* unspecified */
215 #if __BSD_VISIBLE
216 #define AF_LOCAL        AF_UNIX         /* local to host (pipes, portals) */
217 #endif
218 #define AF_UNIX         1               /* standardized name for AF_LOCAL */
219 #define AF_INET         2               /* internetwork: UDP, TCP, etc. */
220 #if __BSD_VISIBLE
221 #define AF_IMPLINK      3               /* arpanet imp addresses */
222 #define AF_PUP          4               /* pup protocols: e.g. BSP */
223 #define AF_CHAOS        5               /* mit CHAOS protocols */
224 #define AF_NETBIOS      6               /* SMB protocols */
225 #define AF_ISO          7               /* ISO protocols */
226 #define AF_OSI          AF_ISO
227 #define AF_ECMA         8               /* European computer manufacturers */
228 #define AF_DATAKIT      9               /* datakit protocols */
229 #define AF_CCITT        10              /* CCITT protocols, X.25 etc */
230 #define AF_SNA          11              /* IBM SNA */
231 #define AF_DECnet       12              /* DECnet */
232 #define AF_DLI          13              /* DEC Direct data link interface */
233 #define AF_LAT          14              /* LAT */
234 #define AF_HYLINK       15              /* NSC Hyperchannel */
235 #define AF_APPLETALK    16              /* Apple Talk */
236 #define AF_ROUTE        17              /* Internal Routing Protocol */
237 #define AF_LINK         18              /* Link layer interface */
238 #define pseudo_AF_XTP   19              /* eXpress Transfer Protocol (no AF) */
239 #define AF_COIP         20              /* connection-oriented IP, aka ST II */
240 #define AF_CNT          21              /* Computer Network Technology */
241 #define pseudo_AF_RTIP  22              /* Help Identify RTIP packets */
242 #define AF_IPX          23              /* Novell Internet Protocol */
243 #define AF_SIP          24              /* Simple Internet Protocol */
244 #define pseudo_AF_PIP   25              /* Help Identify PIP packets */
245 #define AF_ISDN         26              /* Integrated Services Digital Network*/
246 #define AF_E164         AF_ISDN         /* CCITT E.164 recommendation */
247 #define pseudo_AF_KEY   27              /* Internal key-management function */
248 #endif
249 #define AF_INET6        28              /* IPv6 */
250 #if __BSD_VISIBLE
251 #define AF_NATM         29              /* native ATM access */
252 #define AF_ATM          30              /* ATM */
253 #define pseudo_AF_HDRCMPLT 31           /* Used by BPF to not rewrite headers
254                                          * in interface output routine
255                                          */
256 #define AF_NETGRAPH     32              /* Netgraph sockets */
257 #define AF_SLOW         33              /* 802.3ad slow protocol */
258 #define AF_SCLUSTER     34              /* Sitara cluster protocol */
259 #define AF_ARP          35
260 #define AF_BLUETOOTH    36              /* Bluetooth sockets */
261 #define AF_IEEE80211    37              /* IEEE 802.11 protocol */
262 #define AF_INET_SDP     40              /* OFED Socket Direct Protocol ipv4 */
263 #define AF_INET6_SDP    42              /* OFED Socket Direct Protocol ipv6 */
264 #define AF_MAX          42
265 /*
266  * When allocating a new AF_ constant, please only allocate
267  * even numbered constants for FreeBSD until 134 as odd numbered AF_
268  * constants 39-133 are now reserved for vendors.
269  */
270 #define AF_VENDOR00 39
271 #define AF_VENDOR01 41
272 #define AF_VENDOR02 43
273 #define AF_VENDOR03 45
274 #define AF_VENDOR04 47
275 #define AF_VENDOR05 49
276 #define AF_VENDOR06 51
277 #define AF_VENDOR07 53
278 #define AF_VENDOR08 55
279 #define AF_VENDOR09 57
280 #define AF_VENDOR10 59
281 #define AF_VENDOR11 61
282 #define AF_VENDOR12 63
283 #define AF_VENDOR13 65
284 #define AF_VENDOR14 67
285 #define AF_VENDOR15 69
286 #define AF_VENDOR16 71
287 #define AF_VENDOR17 73
288 #define AF_VENDOR18 75
289 #define AF_VENDOR19 77
290 #define AF_VENDOR20 79
291 #define AF_VENDOR21 81
292 #define AF_VENDOR22 83
293 #define AF_VENDOR23 85
294 #define AF_VENDOR24 87
295 #define AF_VENDOR25 89
296 #define AF_VENDOR26 91
297 #define AF_VENDOR27 93
298 #define AF_VENDOR28 95
299 #define AF_VENDOR29 97
300 #define AF_VENDOR30 99
301 #define AF_VENDOR31 101
302 #define AF_VENDOR32 103
303 #define AF_VENDOR33 105
304 #define AF_VENDOR34 107
305 #define AF_VENDOR35 109
306 #define AF_VENDOR36 111
307 #define AF_VENDOR37 113
308 #define AF_VENDOR38 115
309 #define AF_VENDOR39 117
310 #define AF_VENDOR40 119
311 #define AF_VENDOR41 121
312 #define AF_VENDOR42 123
313 #define AF_VENDOR43 125
314 #define AF_VENDOR44 127
315 #define AF_VENDOR45 129
316 #define AF_VENDOR46 131
317 #define AF_VENDOR47 133
318 #endif
319
320 /*
321  * Structure used by kernel to store most
322  * addresses.
323  */
324 struct sockaddr {
325         unsigned char   sa_len;         /* total length */
326         sa_family_t     sa_family;      /* address family */
327         char            sa_data[14];    /* actually longer; address value */
328 };
329 #if __BSD_VISIBLE
330 #define SOCK_MAXADDRLEN 255             /* longest possible addresses */
331
332 /*
333  * Structure used by kernel to pass protocol
334  * information in raw sockets.
335  */
336 struct sockproto {
337         unsigned short  sp_family;              /* address family */
338         unsigned short  sp_protocol;            /* protocol */
339 };
340 #endif
341
342 #include <sys/_sockaddr_storage.h>
343
344 #if __BSD_VISIBLE
345 /*
346  * Protocol families, same as address families for now.
347  */
348 #define PF_UNSPEC       AF_UNSPEC
349 #define PF_LOCAL        AF_LOCAL
350 #define PF_UNIX         PF_LOCAL        /* backward compatibility */
351 #define PF_INET         AF_INET
352 #define PF_IMPLINK      AF_IMPLINK
353 #define PF_PUP          AF_PUP
354 #define PF_CHAOS        AF_CHAOS
355 #define PF_NETBIOS      AF_NETBIOS
356 #define PF_ISO          AF_ISO
357 #define PF_OSI          AF_ISO
358 #define PF_ECMA         AF_ECMA
359 #define PF_DATAKIT      AF_DATAKIT
360 #define PF_CCITT        AF_CCITT
361 #define PF_SNA          AF_SNA
362 #define PF_DECnet       AF_DECnet
363 #define PF_DLI          AF_DLI
364 #define PF_LAT          AF_LAT
365 #define PF_HYLINK       AF_HYLINK
366 #define PF_APPLETALK    AF_APPLETALK
367 #define PF_ROUTE        AF_ROUTE
368 #define PF_LINK         AF_LINK
369 #define PF_XTP          pseudo_AF_XTP   /* really just proto family, no AF */
370 #define PF_COIP         AF_COIP
371 #define PF_CNT          AF_CNT
372 #define PF_SIP          AF_SIP
373 #define PF_IPX          AF_IPX
374 #define PF_RTIP         pseudo_AF_RTIP  /* same format as AF_INET */
375 #define PF_PIP          pseudo_AF_PIP
376 #define PF_ISDN         AF_ISDN
377 #define PF_KEY          pseudo_AF_KEY
378 #define PF_INET6        AF_INET6
379 #define PF_NATM         AF_NATM
380 #define PF_ATM          AF_ATM
381 #define PF_NETGRAPH     AF_NETGRAPH
382 #define PF_SLOW         AF_SLOW
383 #define PF_SCLUSTER     AF_SCLUSTER
384 #define PF_ARP          AF_ARP
385 #define PF_BLUETOOTH    AF_BLUETOOTH
386 #define PF_IEEE80211    AF_IEEE80211
387 #define PF_INET_SDP     AF_INET_SDP
388 #define PF_INET6_SDP    AF_INET6_SDP
389
390 #define PF_MAX          AF_MAX
391
392 /*
393  * Definitions for network related sysctl, CTL_NET.
394  *
395  * Second level is protocol family.
396  * Third level is protocol number.
397  *
398  * Further levels are defined by the individual families.
399  */
400
401 /*
402  * PF_ROUTE - Routing table
403  *
404  * Three additional levels are defined:
405  *      Fourth: address family, 0 is wildcard
406  *      Fifth: type of info, defined below
407  *      Sixth: flag(s) to mask with for NET_RT_FLAGS
408  */
409 #define NET_RT_DUMP     1               /* dump; may limit to a.f. */
410 #define NET_RT_FLAGS    2               /* by flags, e.g. RESOLVING */
411 #define NET_RT_IFLIST   3               /* survey interface list */
412 #define NET_RT_IFMALIST 4               /* return multicast address list */
413 #define NET_RT_IFLISTL  5               /* Survey interface list, using 'l'en
414                                          * versions of msghdr structs. */
415 #endif /* __BSD_VISIBLE */
416
417 /*
418  * Maximum queue length specifiable by listen.
419  */
420 #define SOMAXCONN       128
421
422 /*
423  * Message header for recvmsg and sendmsg calls.
424  * Used value-result for recvmsg, value only for sendmsg.
425  */
426 struct msghdr {
427         void            *msg_name;              /* optional address */
428         socklen_t        msg_namelen;           /* size of address */
429         struct iovec    *msg_iov;               /* scatter/gather array */
430         int              msg_iovlen;            /* # elements in msg_iov */
431         void            *msg_control;           /* ancillary data, see below */
432         socklen_t        msg_controllen;        /* ancillary data buffer len */
433         int              msg_flags;             /* flags on received message */
434 };
435
436 #define MSG_OOB          0x00000001     /* process out-of-band data */
437 #define MSG_PEEK         0x00000002     /* peek at incoming message */
438 #define MSG_DONTROUTE    0x00000004     /* send without using routing tables */
439 #define MSG_EOR          0x00000008     /* data completes record */
440 #define MSG_TRUNC        0x00000010     /* data discarded before delivery */
441 #define MSG_CTRUNC       0x00000020     /* control data lost before delivery */
442 #define MSG_WAITALL      0x00000040     /* wait for full request or error */
443 #if __BSD_VISIBLE
444 #define MSG_DONTWAIT     0x00000080     /* this message should be nonblocking */
445 #define MSG_EOF          0x00000100     /* data completes connection */
446 /*                       0x00000200        unused */
447 /*                       0x00000400        unused */
448 /*                       0x00000800        unused */
449 /*                       0x00001000        unused */
450 #define MSG_NOTIFICATION 0x00002000     /* SCTP notification */
451 #define MSG_NBIO         0x00004000     /* FIONBIO mode, used by fifofs */
452 #define MSG_COMPAT       0x00008000             /* used in sendit() */
453 #endif
454 #ifdef _KERNEL
455 #define MSG_SOCALLBCK    0x00010000     /* for use by socket callbacks - soreceive (TCP) */
456 #endif
457 #if __POSIX_VISIBLE >= 200809
458 #define MSG_NOSIGNAL     0x00020000     /* do not generate SIGPIPE on EOF */
459 #endif
460 #if __BSD_VISIBLE
461 #define MSG_CMSG_CLOEXEC 0x00040000     /* make received fds close-on-exec */
462 #define MSG_WAITFORONE   0x00080000     /* for recvmmsg() */
463 #endif
464 #ifdef _KERNEL
465 #define MSG_MORETOCOME   0x00100000     /* additional data pending */
466 #endif
467
468 /*
469  * Header for ancillary data objects in msg_control buffer.
470  * Used for additional information with/about a datagram
471  * not expressible by flags.  The format is a sequence
472  * of message elements headed by cmsghdr structures.
473  */
474 struct cmsghdr {
475         socklen_t       cmsg_len;               /* data byte count, including hdr */
476         int             cmsg_level;             /* originating protocol */
477         int             cmsg_type;              /* protocol-specific type */
478 /* followed by  u_char  cmsg_data[]; */
479 };
480
481 #if __BSD_VISIBLE
482 /*
483  * While we may have more groups than this, the cmsgcred struct must
484  * be able to fit in an mbuf and we have historically supported a
485  * maximum of 16 groups.
486 */
487 #define CMGROUP_MAX 16
488
489 /*
490  * Credentials structure, used to verify the identity of a peer
491  * process that has sent us a message. This is allocated by the
492  * peer process but filled in by the kernel. This prevents the
493  * peer from lying about its identity. (Note that cmcred_groups[0]
494  * is the effective GID.)
495  */
496 struct cmsgcred {
497         pid_t   cmcred_pid;             /* PID of sending process */
498         uid_t   cmcred_uid;             /* real UID of sending process */
499         uid_t   cmcred_euid;            /* effective UID of sending process */
500         gid_t   cmcred_gid;             /* real GID of sending process */
501         short   cmcred_ngroups;         /* number or groups */
502         gid_t   cmcred_groups[CMGROUP_MAX];     /* groups */
503 };
504
505 /*
506  * Socket credentials.
507  */
508 struct sockcred {
509         uid_t   sc_uid;                 /* real user id */
510         uid_t   sc_euid;                /* effective user id */
511         gid_t   sc_gid;                 /* real group id */
512         gid_t   sc_egid;                /* effective group id */
513         int     sc_ngroups;             /* number of supplemental groups */
514         gid_t   sc_groups[1];           /* variable length */
515 };
516
517 /*
518  * Compute size of a sockcred structure with groups.
519  */
520 #define SOCKCREDSIZE(ngrps) \
521         (sizeof(struct sockcred) + (sizeof(gid_t) * ((ngrps) - 1)))
522
523 #endif /* __BSD_VISIBLE */
524
525 /* given pointer to struct cmsghdr, return pointer to data */
526 #define CMSG_DATA(cmsg)         ((unsigned char *)(cmsg) + \
527                                  _ALIGN(sizeof(struct cmsghdr)))
528
529 /* given pointer to struct cmsghdr, return pointer to next cmsghdr */
530 #define CMSG_NXTHDR(mhdr, cmsg) \
531         ((char *)(cmsg) == (char *)0 ? CMSG_FIRSTHDR(mhdr) : \
532             ((char *)(cmsg) + _ALIGN(((struct cmsghdr *)(cmsg))->cmsg_len) + \
533           _ALIGN(sizeof(struct cmsghdr)) > \
534             (char *)(mhdr)->msg_control + (mhdr)->msg_controllen) ? \
535             (struct cmsghdr *)0 : \
536             (struct cmsghdr *)(void *)((char *)(cmsg) + \
537             _ALIGN(((struct cmsghdr *)(cmsg))->cmsg_len)))
538
539 /*
540  * RFC 2292 requires to check msg_controllen, in case that the kernel returns
541  * an empty list for some reasons.
542  */
543 #define CMSG_FIRSTHDR(mhdr) \
544         ((mhdr)->msg_controllen >= sizeof(struct cmsghdr) ? \
545          (struct cmsghdr *)(mhdr)->msg_control : \
546          (struct cmsghdr *)0)
547
548 #if __BSD_VISIBLE
549 /* RFC 2292 additions */
550 #define CMSG_SPACE(l)           (_ALIGN(sizeof(struct cmsghdr)) + _ALIGN(l))
551 #define CMSG_LEN(l)             (_ALIGN(sizeof(struct cmsghdr)) + (l))
552 #endif
553
554 #ifdef _KERNEL
555 #define CMSG_ALIGN(n)   _ALIGN(n)
556 #endif
557
558 /* "Socket"-level control message types: */
559 #define SCM_RIGHTS      0x01            /* access rights (array of int) */
560 #if __BSD_VISIBLE
561 #define SCM_TIMESTAMP   0x02            /* timestamp (struct timeval) */
562 #define SCM_CREDS       0x03            /* process creds (struct cmsgcred) */
563 #define SCM_BINTIME     0x04            /* timestamp (struct bintime) */
564 #define SCM_REALTIME    0x05            /* timestamp (struct timespec) */
565 #define SCM_MONOTONIC   0x06            /* timestamp (struct timespec) */
566 #endif
567
568 #if __BSD_VISIBLE
569 /*
570  * 4.3 compat sockaddr, move to compat file later
571  */
572 struct osockaddr {
573         unsigned short sa_family;       /* address family */
574         char    sa_data[14];            /* up to 14 bytes of direct address */
575 };
576
577 /*
578  * 4.3-compat message header (move to compat file later).
579  */
580 struct omsghdr {
581         char    *msg_name;              /* optional address */
582         int     msg_namelen;            /* size of address */
583         struct  iovec *msg_iov;         /* scatter/gather array */
584         int     msg_iovlen;             /* # elements in msg_iov */
585         char    *msg_accrights;         /* access rights sent/received */
586         int     msg_accrightslen;
587 };
588 #endif
589
590 /*
591  * howto arguments for shutdown(2), specified by Posix.1g.
592  */
593 #define SHUT_RD         0               /* shut down the reading side */
594 #define SHUT_WR         1               /* shut down the writing side */
595 #define SHUT_RDWR       2               /* shut down both sides */
596
597 #if __BSD_VISIBLE
598 /* for SCTP */
599 /* we cheat and use the SHUT_XX defines for these */
600 #define PRU_FLUSH_RD     SHUT_RD
601 #define PRU_FLUSH_WR     SHUT_WR
602 #define PRU_FLUSH_RDWR   SHUT_RDWR
603 #endif
604
605
606 #if __BSD_VISIBLE
607 /*
608  * sendfile(2) header/trailer struct
609  */
610 struct sf_hdtr {
611         struct iovec *headers;  /* pointer to an array of header struct iovec's */
612         int hdr_cnt;            /* number of header iovec's */
613         struct iovec *trailers; /* pointer to an array of trailer struct iovec's */
614         int trl_cnt;            /* number of trailer iovec's */
615 };
616
617 /*
618  * Sendfile-specific flag(s)
619  */
620 #define SF_NODISKIO     0x00000001
621 #define SF_MNOWAIT      0x00000002      /* obsolete */
622 #define SF_SYNC         0x00000004
623 #define SF_USER_READAHEAD       0x00000008
624 #define SF_NOCACHE      0x00000010
625 #define SF_FLAGS(rh, flags)     (((rh) << 16) | (flags))
626
627 #ifdef _KERNEL
628 #define SF_READAHEAD(flags)     ((flags) >> 16)
629 #endif /* _KERNEL */
630
631 /*
632  * Sendmmsg/recvmmsg specific structure(s)
633  */
634 struct mmsghdr {
635         struct msghdr   msg_hdr;                /* message header */
636         ssize_t         msg_len;                /* message length */
637 };
638 #endif /* __BSD_VISIBLE */
639
640 #ifndef _KERNEL
641
642 #include <sys/cdefs.h>
643
644 __BEGIN_DECLS
645 int     accept(int, struct sockaddr * __restrict, socklen_t * __restrict);
646 int     bind(int, const struct sockaddr *, socklen_t);
647 int     connect(int, const struct sockaddr *, socklen_t);
648 #if __BSD_VISIBLE
649 int     accept4(int, struct sockaddr * __restrict, socklen_t * __restrict, int);
650 int     bindat(int, int, const struct sockaddr *, socklen_t);
651 int     connectat(int, int, const struct sockaddr *, socklen_t);
652 #endif
653 int     getpeername(int, struct sockaddr * __restrict, socklen_t * __restrict);
654 int     getsockname(int, struct sockaddr * __restrict, socklen_t * __restrict);
655 int     getsockopt(int, int, int, void * __restrict, socklen_t * __restrict);
656 int     listen(int, int);
657 ssize_t recv(int, void *, size_t, int);
658 ssize_t recvfrom(int, void *, size_t, int, struct sockaddr * __restrict, socklen_t * __restrict);
659 ssize_t recvmsg(int, struct msghdr *, int);
660 #if __BSD_VISIBLE
661 struct timespec;
662 ssize_t recvmmsg(int, struct mmsghdr * __restrict, size_t, int,
663     const struct timespec * __restrict);
664 #endif
665 ssize_t send(int, const void *, size_t, int);
666 ssize_t sendto(int, const void *,
667             size_t, int, const struct sockaddr *, socklen_t);
668 ssize_t sendmsg(int, const struct msghdr *, int);
669 #if __BSD_VISIBLE
670 int     sendfile(int, int, off_t, size_t, struct sf_hdtr *, off_t *, int);
671 ssize_t sendmmsg(int, struct mmsghdr * __restrict, size_t, int);
672 int     setfib(int);
673 #endif
674 int     setsockopt(int, int, int, const void *, socklen_t);
675 int     shutdown(int, int);
676 int     sockatmark(int);
677 int     socket(int, int, int);
678 int     socketpair(int, int, int, int *);
679 __END_DECLS
680
681 #endif /* !_KERNEL */
682
683 #ifdef _KERNEL
684 struct socket;
685
686 struct tcpcb *so_sototcpcb(struct socket *so);
687 struct inpcb *so_sotoinpcb(struct socket *so);
688 struct sockbuf *so_sockbuf_snd(struct socket *);
689 struct sockbuf *so_sockbuf_rcv(struct socket *);
690
691 int so_state_get(const struct socket *);
692 void so_state_set(struct socket *, int);
693
694 int so_options_get(const struct socket *);
695 void so_options_set(struct socket *, int);
696
697 int so_error_get(const struct socket *);
698 void so_error_set(struct socket *, int);
699
700 int so_linger_get(const struct socket *);
701 void so_linger_set(struct socket *, int);
702
703 struct protosw *so_protosw_get(const struct socket *);
704 void so_protosw_set(struct socket *, struct protosw *);
705
706 void so_sorwakeup_locked(struct socket *so);
707 void so_sowwakeup_locked(struct socket *so);
708
709 void so_sorwakeup(struct socket *so);
710 void so_sowwakeup(struct socket *so);
711
712 void so_lock(struct socket *so);
713 void so_unlock(struct socket *so);
714
715 #endif /* _KERNEL */
716 #endif /* !_SYS_SOCKET_H_ */