libubox/usock.c

166 lines
4 KiB
C
Raw Normal View History

/*
* usock - socket helper functions
*
* Copyright (C) 2010 Steven Barth <steven@midlink.org>
* Copyright (C) 2011-2012 Felix Fietkau <nbd@openwrt.org>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
2010-10-13 21:17:51 +02:00
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <netdb.h>
#include <poll.h>
2010-10-13 21:17:51 +02:00
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include <string.h>
2011-02-07 17:00:50 +01:00
#include <stdbool.h>
#include <stdio.h>
2010-10-13 21:17:51 +02:00
#include "usock.h"
2011-02-07 17:00:50 +01:00
static void usock_set_flags(int sock, unsigned int type)
{
if (!(type & USOCK_NOCLOEXEC))
fcntl(sock, F_SETFD, fcntl(sock, F_GETFD) | FD_CLOEXEC);
if (type & USOCK_NONBLOCK)
fcntl(sock, F_SETFL, fcntl(sock, F_GETFL) | O_NONBLOCK);
}
static int usock_connect(int type, struct sockaddr *sa, int sa_len, int family, int socktype, bool server)
2011-02-07 17:00:50 +01:00
{
int sock;
sock = socket(family, socktype, 0);
if (sock < 0)
return -1;
usock_set_flags(sock, type);
2011-02-07 17:00:50 +01:00
if (server) {
const int one = 1;
setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one));
2010-10-13 21:17:51 +02:00
2011-02-07 17:00:50 +01:00
if (!bind(sock, sa, sa_len) &&
(socktype != SOCK_STREAM || !listen(sock, SOMAXCONN)))
return sock;
2010-10-13 21:17:51 +02:00
} else {
2011-02-07 17:00:50 +01:00
if (!connect(sock, sa, sa_len) || errno == EINPROGRESS)
return sock;
2010-10-13 21:17:51 +02:00
}
2011-02-07 17:00:50 +01:00
close(sock);
return -1;
}
static int usock_unix(int type, const char *host)
2011-02-07 17:00:50 +01:00
{
struct sockaddr_un sun = {.sun_family = AF_UNIX};
bool server = !!(type & USOCK_SERVER);
int socktype = ((type & 0xff) == USOCK_TCP) ? SOCK_STREAM : SOCK_DGRAM;
2011-02-07 17:00:50 +01:00
if (strlen(host) >= sizeof(sun.sun_path)) {
errno = EINVAL;
return -1;
}
strcpy(sun.sun_path, host);
return usock_connect(type, (struct sockaddr*)&sun, sizeof(sun), AF_UNIX, socktype, server);
2011-02-07 17:00:50 +01:00
}
int usock_inet(int type, const char *host, const char *service, void *addr)
2011-02-07 17:00:50 +01:00
{
int socktype = ((type & 0xff) == USOCK_TCP) ? SOCK_STREAM : SOCK_DGRAM;
bool server = !!(type & USOCK_SERVER);
2011-02-07 17:00:50 +01:00
struct addrinfo *result, *rp;
struct addrinfo hints = {
.ai_family = (type & USOCK_IPV6ONLY) ? AF_INET6 :
(type & USOCK_IPV4ONLY) ? AF_INET : AF_UNSPEC,
.ai_socktype = socktype,
.ai_flags = AI_ADDRCONFIG
| ((type & USOCK_SERVER) ? AI_PASSIVE : 0)
| ((type & USOCK_NUMERIC) ? AI_NUMERICHOST : 0),
};
int sock = -1;
if (getaddrinfo(host, service, &hints, &result))
return -1;
for (rp = result; rp != NULL; rp = rp->ai_next) {
sock = usock_connect(type, rp->ai_addr, rp->ai_addrlen, rp->ai_family, socktype, server);
if (sock >= 0) {
if (addr)
memcpy(addr, rp->ai_addr, rp->ai_addrlen);
2011-02-07 17:00:50 +01:00
break;
}
2011-02-07 17:00:50 +01:00
}
freeaddrinfo(result);
return sock;
}
const char *usock_port(int port)
{
static char buffer[sizeof("65535\0")];
if (port < 0 || port > 65535)
return NULL;
snprintf(buffer, sizeof(buffer), "%u", port);
return buffer;
}
2011-02-07 17:00:50 +01:00
int usock(int type, const char *host, const char *service) {
int sock;
if (type & USOCK_UNIX)
sock = usock_unix(type, host);
2011-02-07 17:00:50 +01:00
else
sock = usock_inet(type, host, service, NULL);
2011-02-07 17:00:50 +01:00
if (sock < 0)
return -1;
2010-10-13 21:17:51 +02:00
return sock;
}
int usock_wait_ready(int fd, int msecs) {
struct pollfd fds[1];
int res;
fds[0].fd = fd;
fds[0].events = POLLOUT;
res = poll(fds, 1, msecs);
if (res < 0) {
return errno;
} else if (res == 0) {
return -ETIMEDOUT;
} else {
int err = 0;
socklen_t optlen = sizeof(err);
res = getsockopt(fd, SOL_SOCKET, SO_ERROR, &err, &optlen);
if (res)
return errno;
if (err)
return err;
}
return 0;
}