2 * Copyright (C) 2005-2013 Andre Noll <maan@systemlinux.org>
4 * Licensed under the GPL v2. For licencing details see COPYING.
7 /** \file net.c Networking-related helper functions. */
10 * Since glibc 2.8, the _GNU_SOURCE feature test macro must be defined in order
11 * to obtain the definition of the ucred structure.
17 /* At least NetBSD needs these. */
25 #define AI_ADDRCONFIG 0
38 * Parse and validate IPv4 address/netmask string.
40 * \param cidr Address in CIDR notation
41 * \param addr Copy of the IPv4 address part of \a cidr
42 * \param addrlen Size of \a addr in bytes
43 * \param netmask Value of the netmask part in \a cidr or the
44 * default of 32 if not specified.
46 * \return Pointer to \a addr if succesful, NULL on error.
49 char *parse_cidr(const char *cidr
,
50 char *addr
, ssize_t addrlen
,
54 char *c
= addr
, *end
= c
+ (addrlen
- 1);
58 if (cidr
== NULL
|| addrlen
< 1)
61 for (o
= cidr
; (*c
= *o
== '/'? '\0' : *o
); c
++, o
++)
66 if (para_atoi32(++o
, netmask
) < 0 ||
67 *netmask
< 0 || *netmask
> 0x20)
70 if (is_valid_ipv4_address(addr
))
79 * Match string as a candidate IPv4 address.
81 * \param address The string to match.
82 * \return True if \a address has "dot-quad" format.
84 static bool is_v4_dot_quad(const char *address
)
89 assert(para_regcomp(&r
, "^([0-9]+\\.){3}[0-9]+$",
90 REG_EXTENDED
| REG_NOSUB
) >= 0);
91 result
= regexec(&r
, address
, 0, NULL
, 0) == 0;
97 * Perform basic syntax checking on the host-part of an URL:
99 * - Since ':' is invalid in IPv4 addresses and DNS names, the
100 * presence of ':' causes interpretation as IPv6 address;
101 * - next the first-match-wins algorithm from RFC 3986 is applied;
102 * - else the string is considered as DNS name, to be resolved later.
104 * \param host The host string to check.
105 * \return True if \a host passes the syntax checks.
107 * \sa RFC 3986, 3.2.2; RFC 1123, 2.1; RFC 1034, 3.5
109 static bool host_string_ok(const char *host
)
111 if (host
== NULL
|| *host
== '\0')
113 if (strchr(host
, ':') != NULL
)
114 return is_valid_ipv6_address(host
);
115 if (is_v4_dot_quad(host
))
116 return is_valid_ipv4_address(host
);
121 * Parse and validate URL string.
123 * The URL syntax is loosely based on RFC 3986, supporting one of
124 * - "["host"]"[:port] for native IPv6 addresses and
125 * - host[:port] for IPv4 hostnames and DNS names.
127 * Native IPv6 addresses must be enclosed in square brackets, since
128 * otherwise there is an ambiguity with the port separator `:'.
129 * The 'port' part is always considered to be a number; if absent,
130 * it is set to -1, to indicate that a default port is to be used.
132 * The following are valid examples:
140 * \param url The URL string to take apart.
141 * \param host To return the copied host part of \a url.
142 * \param hostlen The maximum length of \a host.
143 * \param port To return the port number (if any) of \a url.
145 * \return Pointer to \a host, or \p NULL if failed. If \p NULL is returned,
146 * \a host and \a port are undefined. If no port number was present in \a url,
147 * \a port is set to -1.
149 * \sa RFC 3986, 3.2.2/3.2.3
151 char *parse_url(const char *url
,
152 char *host
, ssize_t hostlen
,
156 char *c
= host
, *end
= c
+ (hostlen
- 1);
160 if (o
== NULL
|| hostlen
< 1)
164 for (++o
; (*c
= *o
== ']' ? '\0' : *o
); c
++, o
++)
168 if (*o
++ != ']' || (*o
!= '\0' && *o
!= ':'))
171 for (; (*c
= *o
== ':'? '\0' : *o
); c
++, o
++) {
172 if (c
== end
&& o
[1])
178 if (para_atoi32(++o
, port
) < 0 ||
179 *port
< 0 || *port
> 0xffff)
181 if (host_string_ok(host
))
189 * Stringify port number, resolve into service name where defined.
190 * \param port 2-byte port number, in host-byte-order.
191 * \param transport Transport protocol name (e.g. "udp", "tcp"), or NULL.
192 * \return Pointer to static result buffer.
194 * \sa getservent(3), services(5), nsswitch.conf(5)
196 const char *stringify_port(int port
, const char *transport
)
198 static char service
[NI_MAXSERV
];
200 if (port
< 0 || port
> 0xFFFF) {
201 snprintf(service
, sizeof(service
), "undefined (%d)", port
);
203 struct servent
*se
= getservbyport(htons(port
), transport
);
206 snprintf(service
, sizeof(service
), "%u", port
);
208 snprintf(service
, sizeof(service
), "%s", se
->s_name
);
214 * Determine the socket type for a given layer-4 protocol.
216 * \param l4type The symbolic name of the transport-layer protocol.
218 * \sa ip(7), socket(2)
220 static inline int sock_type(const unsigned l4type
)
223 case IPPROTO_UDP
: return SOCK_DGRAM
;
224 case IPPROTO_TCP
: return SOCK_STREAM
;
225 case IPPROTO_DCCP
: return SOCK_DCCP
;
227 return -1; /* not supported here */
231 * Pretty-print transport-layer name.
233 static const char *layer4_name(const unsigned l4type
)
236 case IPPROTO_UDP
: return "UDP";
237 case IPPROTO_TCP
: return "TCP";
238 case IPPROTO_DCCP
: return "DCCP";
240 return "UNKNOWN PROTOCOL";
244 * Flowopts: Transport-layer independent encapsulation of socket options.
246 * These collect individual socket options into a queue, which is disposed of
247 * directly after makesock(). The 'pre_conn_opt' structure is for internal use
248 * only and should not be visible elsewhere.
250 * \sa setsockopt(2), makesock()
252 struct pre_conn_opt
{
253 int sock_level
; /**< Second argument to setsockopt() */
254 int sock_option
; /**< Third argument to setsockopt() */
255 char *opt_name
; /**< Stringified \a sock_option */
256 void *opt_val
; /**< Fourth argument to setsockopt() */
257 socklen_t opt_len
; /**< Fifth argument to setsockopt() */
259 struct list_head node
; /**< FIFO, as sockopt order matters. */
262 /** FIFO list of pre-connection socket options to be set */
264 struct list_head sockopts
;
268 * Allocate and initialize a flowopt queue.
270 * \return A new structure to be passed to \ref flowopt_add(). It is
271 * automatically deallocated in \ref makesock().
273 struct flowopts
*flowopt_new(void)
275 struct flowopts
*new = para_malloc(sizeof(*new));
277 INIT_LIST_HEAD(&new->sockopts
);
282 * Append new socket option to flowopt queue.
284 * \param fo The flowopt queue to append to.
285 * \param lev Level at which \a opt resides.
286 * \param opt New option to add.
287 * \param name Stringified name of \a opt.
288 * \param val The value to set \a opt to.
289 * \param len Length of \a val.
293 void flowopt_add(struct flowopts
*fo
, int lev
, int opt
,
294 const char *name
, const void *val
, int len
)
296 struct pre_conn_opt
*new = para_malloc(sizeof(*new));
298 new->sock_option
= opt
;
299 new->sock_level
= lev
;
300 new->opt_name
= para_strdup(name
);
306 new->opt_val
= para_malloc(len
);
308 memcpy(new->opt_val
, val
, len
);
311 list_add_tail(&new->node
, &fo
->sockopts
);
314 /** Set the entire bunch of pre-connection options at once. */
315 static void flowopt_setopts(int sockfd
, struct flowopts
*fo
)
317 struct pre_conn_opt
*pc
;
322 list_for_each_entry(pc
, &fo
->sockopts
, node
)
323 if (setsockopt(sockfd
, pc
->sock_level
, pc
->sock_option
,
324 pc
->opt_val
, pc
->opt_len
) < 0) {
325 PARA_EMERG_LOG("Can not set %s socket option: %s",
326 pc
->opt_name
, strerror(errno
));
331 static void flowopt_cleanup(struct flowopts
*fo
)
333 struct pre_conn_opt
*cur
, *next
;
338 list_for_each_entry_safe(cur
, next
, &fo
->sockopts
, node
) {
347 * Resolve IPv4/IPv6 address and create a ready-to-use active or passive socket.
349 * \param l4type The layer-4 type (\p IPPROTO_xxx).
350 * \param passive Whether this is a passive (1) or active (0) socket.
351 * \param host Remote or local hostname or IPv/6 address string.
352 * \param port_number Decimal port number.
353 * \param fo Socket options to be set before making the connection.
355 * This creates a ready-made IPv4/v6 socket structure after looking up the
356 * necessary parameters. The interpretation of \a host depends on the value of
358 * - on a passive socket host is interpreted as an interface IPv4/6 address
359 * (can be left NULL);
360 * - on an active socket, \a host is the peer DNS name or IPv4/6 address
362 * - \a port_number is in either case the numeric port number (not service
365 * Furthermore, bind(2) is called on passive sockets, and connect(2) on active
366 * sockets. The algorithm tries all possible address combinations until it
367 * succeeds. If \a fo is supplied, options are set and cleanup is performed.
369 * \return This function returns 1 on success and \a -E_ADDRESS_LOOKUP when no
370 * matching connection could be set up (with details in the error log).
372 * \sa ipv6(7), getaddrinfo(3), bind(2), connect(2).
374 int makesock(unsigned l4type
, bool passive
,
375 const char *host
, uint16_t port_number
,
378 struct addrinfo
*local
= NULL
, *src
= NULL
, *remote
= NULL
,
380 unsigned int l3type
= AF_UNSPEC
;
381 int rc
, on
= 1, sockfd
= -1,
382 socktype
= sock_type(l4type
);
383 char port
[6]; /* port number has at most 5 digits */
385 sprintf(port
, "%u", port_number
);
386 /* Set up address hint structure */
387 memset(&hints
, 0, sizeof(hints
));
388 hints
.ai_family
= l3type
;
389 hints
.ai_socktype
= socktype
;
391 * getaddrinfo does not support SOCK_DCCP, so for the sake of lookup
392 * (and only then) pretend to be UDP.
394 if (l4type
== IPPROTO_DCCP
)
395 hints
.ai_socktype
= SOCK_DGRAM
;
397 /* only use addresses available on the host */
398 hints
.ai_flags
= AI_ADDRCONFIG
;
399 if (l3type
== AF_INET6
)
400 /* use v4-mapped-v6 if no v6 addresses found */
401 hints
.ai_flags
|= AI_V4MAPPED
| AI_ALL
;
403 if (passive
&& host
== NULL
)
404 hints
.ai_flags
|= AI_PASSIVE
;
406 /* Obtain local/remote address information */
407 if ((rc
= getaddrinfo(host
, port
, &hints
, passive
? &local
: &remote
))) {
408 PARA_ERROR_LOG("can not resolve %s address %s#%s: %s.\n",
410 host
? host
: (passive
? "[loopback]" : "[localhost]"),
411 port
, gai_strerror(rc
));
412 rc
= -E_ADDRESS_LOOKUP
;
416 /* Iterate over all src/dst combination, exhausting dst first */
417 for (src
= local
, dst
= remote
; src
!= NULL
|| dst
!= NULL
; /* no op */ ) {
418 if (src
&& dst
&& src
->ai_family
== AF_INET
419 && dst
->ai_family
== AF_INET6
)
420 goto get_next_dst
; /* v4 -> v6 is not possible */
422 sockfd
= socket(src
? src
->ai_family
: dst
->ai_family
,
428 * Reuse the address on passive sockets to avoid failure on
429 * restart (protocols using listen()) and when creating
430 * multiple listener instances (UDP multicast).
432 if (passive
&& setsockopt(sockfd
, SOL_SOCKET
, SO_REUSEADDR
,
433 &on
, sizeof(on
)) == -1) {
436 PARA_ERROR_LOG("can not set SO_REUSEADDR: %s\n",
438 rc
= -ERRNO_TO_PARA_ERROR(rc
);
441 flowopt_setopts(sockfd
, fo
);
444 if (bind(sockfd
, src
->ai_addr
, src
->ai_addrlen
) < 0) {
448 if (!dst
) /* bind-only completed successfully */
452 if (dst
&& connect(sockfd
, dst
->ai_addr
, dst
->ai_addrlen
) == 0)
453 break; /* connection completed successfully */
456 if (dst
&& (dst
= dst
->ai_next
))
459 if (src
&& (src
= src
->ai_next
)) /* restart inner loop */
466 freeaddrinfo(remote
);
469 if (src
== NULL
&& dst
== NULL
) {
472 PARA_ERROR_LOG("can not create %s socket %s#%s.\n",
473 layer4_name(l4type
), host
? host
: (passive
?
474 "[loopback]" : "[localhost]"), port
);
481 * Create a passive / listening socket.
483 * \param l4type The transport-layer type (\p IPPROTO_xxx).
484 * \param port The decimal port number to listen on.
485 * \param fo Flowopts (if any) to set before starting to listen.
487 * \return Positive integer (socket descriptor) on success, negative value
490 * \sa makesock(), ip(7), ipv6(7), bind(2), listen(2).
492 int para_listen(unsigned l4type
, uint16_t port
, struct flowopts
*fo
)
494 int ret
, fd
= makesock(l4type
, 1, NULL
, port
, fo
);
497 ret
= listen(fd
, BACKLOG
);
501 return -ERRNO_TO_PARA_ERROR(ret
);
503 PARA_INFO_LOG("listening on %s port %u, fd %d\n",
504 layer4_name(l4type
), port
, fd
);
510 * Determine IPv4/v6 socket address length.
511 * \param sa Container of IPv4 or IPv6 address.
512 * \return Address-family dependent address length.
514 static socklen_t
salen(const struct sockaddr
*sa
)
516 assert(sa
->sa_family
== AF_INET
|| sa
->sa_family
== AF_INET6
);
518 return sa
->sa_family
== AF_INET6
519 ? sizeof(struct sockaddr_in6
)
520 : sizeof(struct sockaddr_in
);
523 /** True if @ss holds a v6-mapped-v4 address (RFC 4291, 2.5.5.2) */
524 static bool SS_IS_ADDR_V4MAPPED(const struct sockaddr_storage
*ss
)
526 const struct sockaddr_in6
*ia6
= (const struct sockaddr_in6
*)ss
;
528 return ss
->ss_family
== AF_INET6
&& IN6_IS_ADDR_V4MAPPED(&ia6
->sin6_addr
);
532 * Process IPv4/v6 address, turn v6-mapped-v4 address into normal IPv4 address.
533 * \param ss Container of IPv4/6 address.
534 * \return Pointer to normalized address (may be static storage).
538 static const struct sockaddr
*
539 normalize_ip_address(const struct sockaddr_storage
*ss
)
541 assert(ss
->ss_family
== AF_INET
|| ss
->ss_family
== AF_INET6
);
543 if (SS_IS_ADDR_V4MAPPED(ss
)) {
544 const struct sockaddr_in6
*ia6
= (const struct sockaddr_in6
*)ss
;
545 static struct sockaddr_in ia
;
547 ia
.sin_family
= AF_INET
;
548 ia
.sin_port
= ia6
->sin6_port
;
549 memcpy(&ia
.sin_addr
.s_addr
, &(ia6
->sin6_addr
.s6_addr
[12]), 4);
550 return (const struct sockaddr
*)&ia
;
552 return (const struct sockaddr
*)ss
;
556 * Generic/fallback MTU values
558 * These are taken from RFC 1122, RFC 2460, and RFC 5405.
559 * - RFC 1122, 3.3.3 defines EMTU_S ("Effective MTU for sending") and recommends
560 * to use an EMTU_S size of of 576 bytes if the IPv4 path MTU is unknown;
561 * - RFC 2460, 5. requires a minimum IPv6 MTU of 1280 bytes;
562 * - RFC 5405, 3.2 recommends that if path MTU discovery is not done,
563 * UDP senders should use the respective minimum values of EMTU_S.
565 static inline int generic_mtu(const int af_type
)
567 return af_type
== AF_INET6
? 1280 : 576;
570 /** Crude approximation of IP header overhead - neglecting options. */
571 static inline int estimated_header_overhead(const int af_type
)
573 return af_type
== AF_INET6
? 40 : 20;
577 * Get the maximum transport-layer message size (MMS_S).
579 * \param sockfd The socket file descriptor.
581 * The socket must be connected. See RFC 1122, 3.3.3. If the protocol familiy
582 * could not be determined, \p AF_INET is assumed.
584 * \return The maximum message size of the address family type.
586 int generic_max_transport_msg_size(int sockfd
)
588 struct sockaddr_storage ss
;
589 socklen_t sslen
= sizeof(ss
);
590 int af_type
= AF_INET
;
592 if (getpeername(sockfd
, (struct sockaddr
*)&ss
, &sslen
) < 0) {
593 PARA_ERROR_LOG("can not determine remote address type: %s\n",
595 } else if (!SS_IS_ADDR_V4MAPPED(&ss
)) {
596 af_type
= ss
.ss_family
;
598 return generic_mtu(af_type
) - estimated_header_overhead(af_type
);
602 * Look up the local or remote side of a connected socket structure.
604 * \param fd The socket descriptor of the connected socket.
605 * \param getname Either \p getsockname() for local, or \p getpeername() for
608 * \return A static character string identifying hostname and port of the
609 * chosen side in numeric host:port format.
611 * \sa getsockname(2), getpeername(2), parse_url(), getnameinfo(3),
612 * services(5), nsswitch.conf(5).
614 static char *__get_sock_name(int fd
, typeof(getsockname
) getname
)
616 struct sockaddr_storage ss
;
617 const struct sockaddr
*sa
;
618 socklen_t sslen
= sizeof(ss
);
619 char hbuf
[NI_MAXHOST
], sbuf
[NI_MAXSERV
];
620 static char output
[sizeof(hbuf
) + sizeof(sbuf
) + 4];
623 if (getname(fd
, (struct sockaddr
*)&ss
, &sslen
) < 0) {
624 PARA_ERROR_LOG("can not determine address from fd %d: %s\n",
625 fd
, strerror(errno
));
626 snprintf(output
, sizeof(output
), "(unknown)");
629 sa
= normalize_ip_address(&ss
);
630 ret
= getnameinfo(sa
, salen(sa
), hbuf
, sizeof(hbuf
), sbuf
,
631 sizeof(sbuf
), NI_NUMERICHOST
| NI_NUMERICSERV
);
633 PARA_WARNING_LOG("hostname lookup error (%s).\n",
635 snprintf(output
, sizeof(output
), "(lookup error)");
636 } else if (sa
->sa_family
== AF_INET6
)
637 snprintf(output
, sizeof(output
), "[%s]:%s", hbuf
, sbuf
);
639 snprintf(output
, sizeof(output
), "%s:%s", hbuf
, sbuf
);
644 * Look up the local side of a connected socket structure.
646 * \param sockfd The file descriptor of the socket.
648 * \return A pointer to a static buffer containing hostname an port. This
649 * buffer must not be freed by the caller.
653 char *local_name(int sockfd
)
655 return __get_sock_name(sockfd
, getsockname
);
659 * Look up the remote side of a connected socket structure.
661 * \param sockfd The file descriptor of the socket.
663 * \return Analogous to the return value of \ref local_name() but for the
668 char *remote_name(int sockfd
)
670 return __get_sock_name(sockfd
, getpeername
);
674 * Extract IPv4 or IPv6-mapped-IPv4 address from sockaddr_storage.
676 * \param ss Container of IPv4/6 address.
677 * \param ia Extracted IPv4 address (different from 0) or 0 if unsuccessful.
681 void extract_v4_addr(const struct sockaddr_storage
*ss
, struct in_addr
*ia
)
683 const struct sockaddr
*sa
= normalize_ip_address(ss
);
685 memset(ia
, 0, sizeof(*ia
));
686 if (sa
->sa_family
== AF_INET
)
687 *ia
= ((struct sockaddr_in
*)sa
)->sin_addr
;
691 * Receive data from a file descriptor.
693 * \param fd The file descriptor.
694 * \param buf The buffer to write the data to.
695 * \param size The size of \a buf.
697 * Receive at most \a size bytes from file descriptor \a fd.
699 * \return The number of bytes received on success, negative on errors, zero if
700 * the peer has performed an orderly shutdown.
704 __must_check
int recv_bin_buffer(int fd
, char *buf
, size_t size
)
708 n
= recv(fd
, buf
, size
, 0);
710 return -ERRNO_TO_PARA_ERROR(errno
);
715 * Receive and write terminating NULL byte.
717 * \param fd The file descriptor.
718 * \param buf The buffer to write the data to.
719 * \param size The size of \a buf.
721 * Read at most \a size - 1 bytes from file descriptor \a fd and
722 * write a NULL byte at the end of the received data.
724 * \return The return value of the underlying call to \a recv_bin_buffer().
726 * \sa recv_bin_buffer()
728 int recv_buffer(int fd
, char *buf
, size_t size
)
733 n
= recv_bin_buffer(fd
, buf
, size
- 1);
742 * Wrapper around the accept system call.
744 * \param fd The listening socket.
745 * \param rfds An optional fd_set pointer.
746 * \param addr Structure which is filled in with the address of the peer socket.
747 * \param size Should contain the size of the structure pointed to by \a addr.
748 * \param new_fd Result pointer.
750 * Accept incoming connections on \a addr, retry if interrupted. If \a rfds is
751 * not \p NULL, return 0 if \a fd is not set in \a rfds without calling accept().
753 * \return Negative on errors, zero if no connections are present to be accepted,
758 int para_accept(int fd
, fd_set
*rfds
, void *addr
, socklen_t size
, int *new_fd
)
762 if (rfds
&& !FD_ISSET(fd
, rfds
))
765 ret
= accept(fd
, (struct sockaddr
*) addr
, &size
);
766 while (ret
< 0 && errno
== EINTR
);
772 if (errno
== EAGAIN
|| errno
== EWOULDBLOCK
)
774 return -ERRNO_TO_PARA_ERROR(errno
);
778 * Probe the list of DCCP CCIDs configured on this host.
779 * \param ccid_array Pointer to return statically allocated array in.
780 * \return Number of elements returned in \a ccid_array or error.
782 * NB: This feature is only available on Linux > 2.6.30; on older kernels
783 * ENOPROTOOPT ("Protocol not available") will be returned.
785 int dccp_available_ccids(uint8_t **ccid_array
)
787 static uint8_t ccids
[DCCP_MAX_HOST_CCIDS
];
788 socklen_t nccids
= sizeof(ccids
);
791 ret
= fd
= makesock(IPPROTO_DCCP
, 1, NULL
, 0, NULL
);
795 if (getsockopt(fd
, SOL_DCCP
, DCCP_SOCKOPT_AVAILABLE_CCIDS
,
796 ccids
, &nccids
) < 0) {
799 PARA_ERROR_LOG("No DCCP_SOCKOPT_AVAILABLE_CCIDS: %s\n",
801 return -ERRNO_TO_PARA_ERROR(ret
);
810 * Prepare a structure for \p AF_UNIX socket addresses.
812 * \param u Pointer to the struct to be prepared.
813 * \param name The socket pathname.
815 * This just copies \a name to the sun_path component of \a u.
817 * \return Positive on success, \p -E_NAME_TOO_LONG if \a name is longer
818 * than \p UNIX_PATH_MAX.
820 static int init_unix_addr(struct sockaddr_un
*u
, const char *name
)
822 if (strlen(name
) >= UNIX_PATH_MAX
)
823 return -E_NAME_TOO_LONG
;
824 memset(u
->sun_path
, 0, UNIX_PATH_MAX
);
825 u
->sun_family
= PF_UNIX
;
826 strcpy(u
->sun_path
, name
);
831 * Prepare, create, and bind a socket for local communication.
833 * \param name The socket pathname.
834 * \param unix_addr Pointer to the \p AF_UNIX socket structure.
835 * \param mode The desired mode of the socket.
837 * This function creates a local socket for sequenced, reliable,
838 * two-way, connection-based byte streams.
840 * \return The file descriptor, on success, negative on errors.
846 int create_local_socket(const char *name
, struct sockaddr_un
*unix_addr
,
851 ret
= init_unix_addr(unix_addr
, name
);
854 ret
= socket(PF_UNIX
, SOCK_STREAM
, 0);
856 return -ERRNO_TO_PARA_ERROR(errno
);
858 ret
= bind(fd
, (struct sockaddr
*) unix_addr
, UNIX_PATH_MAX
);
860 ret
= -ERRNO_TO_PARA_ERROR(errno
);
864 if (chmod(name
, mode
) < 0)
873 * Prepare, create, and connect to a Unix domain socket for local communication.
875 * \param name The socket pathname.
877 * This function creates a local socket for sequenced, reliable, two-way,
878 * connection-based byte streams.
880 * \return The file descriptor of the connected socket on success, negative on
883 * \sa create_local_socket(), unix(7), connect(2).
885 int connect_local_socket(const char *name
)
887 struct sockaddr_un unix_addr
;
890 PARA_DEBUG_LOG("connecting to %s\n", name
);
891 ret
= init_unix_addr(&unix_addr
, name
);
894 fd
= socket(PF_UNIX
, SOCK_STREAM
, 0);
896 return -ERRNO_TO_PARA_ERROR(errno
);
897 if (connect(fd
, (struct sockaddr
*)&unix_addr
, sizeof(unix_addr
)) == -1) {
898 ret
= -ERRNO_TO_PARA_ERROR(errno
);
908 ssize_t
send_cred_buffer(int sock
, char *buf
)
910 return write_buffer(sock
, buf
);
912 int recv_cred_buffer(int fd
, char *buf
, size_t size
)
914 return recv_buffer(fd
, buf
, size
) > 0? 1 : -E_RECVMSG
;
916 #else /* HAVE_UCRED */
918 * Send \p NULL-terminated buffer and Unix credentials of the current process.
920 * \param sock The socket file descriptor.
921 * \param buf The buffer to be sent.
923 * \return On success, this call returns the number of characters sent. On
924 * error, \p -E_SENDMSG is returned.
926 * \sa sendmsg(2), okir's Black Hats Manual.
928 ssize_t
send_cred_buffer(int sock
, char *buf
)
930 char control
[sizeof(struct cmsghdr
) + sizeof(struct ucred
)];
932 struct cmsghdr
*cmsg
;
933 static struct iovec iov
;
939 iov
.iov_len
= strlen(buf
);
943 /* compose the message */
944 memset(&msg
, 0, sizeof(msg
));
947 msg
.msg_control
= control
;
948 msg
.msg_controllen
= sizeof(control
);
949 /* attach the ucred struct */
950 cmsg
= CMSG_FIRSTHDR(&msg
);
951 cmsg
->cmsg_level
= SOL_SOCKET
;
952 cmsg
->cmsg_type
= SCM_CREDENTIALS
;
953 cmsg
->cmsg_len
= CMSG_LEN(sizeof(struct ucred
));
954 *(struct ucred
*)CMSG_DATA(cmsg
) = c
;
955 msg
.msg_controllen
= cmsg
->cmsg_len
;
956 ret
= sendmsg(sock
, &msg
, 0);
962 static void dispose_fds(int *fds
, unsigned num
)
966 for (i
= 0; i
< num
; i
++)
971 * Receive a buffer and the Unix credentials of the sending process.
973 * \param fd the socket file descriptor.
974 * \param buf the buffer to store the message.
975 * \param size the size of \a buffer.
977 * \return negative on errors, the user id on success.
979 * \sa recvmsg(2), okir's Black Hats Manual.
981 int recv_cred_buffer(int fd
, char *buf
, size_t size
)
985 struct cmsghdr
*cmsg
;
991 setsockopt(fd
, SOL_SOCKET
, SO_PASSCRED
, &yes
, sizeof(int));
992 memset(&msg
, 0, sizeof(msg
));
993 memset(buf
, 0, size
);
998 msg
.msg_control
= control
;
999 msg
.msg_controllen
= sizeof(control
);
1000 if (recvmsg(fd
, &msg
, 0) < 0)
1002 result
= -E_SCM_CREDENTIALS
;
1003 cmsg
= CMSG_FIRSTHDR(&msg
);
1005 if (cmsg
->cmsg_level
== SOL_SOCKET
&& cmsg
->cmsg_type
1006 == SCM_CREDENTIALS
) {
1007 memcpy(&cred
, CMSG_DATA(cmsg
), sizeof(struct ucred
));
1010 if (cmsg
->cmsg_level
== SOL_SOCKET
1011 && cmsg
->cmsg_type
== SCM_RIGHTS
) {
1012 dispose_fds((int *) CMSG_DATA(cmsg
),
1013 (cmsg
->cmsg_len
- CMSG_LEN(0))
1016 cmsg
= CMSG_NXTHDR(&msg
, cmsg
);
1020 #endif /* HAVE_UCRED */