X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=lib%2Fsocket.c;h=e9c103e55b0cd124ce04baaeef1721fb43d5e5fd;hb=41d82d7d825b9b4e73bb227f5b2fafa86067cba0;hp=dd4ffc41778eb784d1474acb90a5e2f4122eb005;hpb=84004dbf9bb2ab8a7f8b968affc53ee3065fa911;p=deb_libnfs.git diff --git a/lib/socket.c b/lib/socket.c index dd4ffc4..e9c103e 100644 --- a/lib/socket.c +++ b/lib/socket.c @@ -15,25 +15,53 @@ along with this program; if not, see . */ -#include +#if defined(WIN32) +#include +#include +#include +#define ssize_t SSIZE_T +#define MSG_DONTWAIT 0 +#else #include -#include #include +#include +#include +#include +#include +#endif + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif +#include +#include +#include #include #include +#include #include -#include -#include +#ifdef HAVE_SYS_FILIO_H +#include +#endif +#ifdef HAVE_SYS_SOCKIO_H +#include +#endif +#include #include "libnfs.h" #include "libnfs-raw.h" #include "libnfs-private.h" #include "slist.h" +static int rpc_disconnect_requeue(struct rpc_context *rpc); + static void set_nonblocking(int fd) { +#if defined(WIN32) +#else unsigned v; v = fcntl(fd, F_GETFL, 0); fcntl(fd, F_SETFL, v | O_NONBLOCK); +#endif } int rpc_get_fd(struct rpc_context *rpc) @@ -43,11 +71,12 @@ int rpc_get_fd(struct rpc_context *rpc) int rpc_which_events(struct rpc_context *rpc) { - int events = POLLIN; + int events = rpc->is_connected ? POLLIN : POLLOUT; - if (rpc->is_connected == 0) { - events |= POLLOUT; - } + if (rpc->is_udp != 0) { + /* for udp sockets we only wait for pollin */ + return POLLIN; + } if (rpc->outqueue) { events |= POLLOUT; @@ -60,12 +89,11 @@ static int rpc_write_to_socket(struct rpc_context *rpc) ssize_t count; if (rpc == NULL) { - printf("trying to write to socket for NULL context\n"); return -1; } if (rpc->fd == -1) { - printf("trying to write but not connected\n"); - return -2; + rpc_set_error(rpc, "trying to write but not connected"); + return -1; } while (rpc->outqueue != NULL) { @@ -73,14 +101,17 @@ static int rpc_write_to_socket(struct rpc_context *rpc) total = rpc->outqueue->outdata.size; +#if defined(WIN32) + count = send(rpc->fd, rpc->outqueue->outdata.data + rpc->outqueue->written, total - rpc->outqueue->written, 0); +#else count = write(rpc->fd, rpc->outqueue->outdata.data + rpc->outqueue->written, total - rpc->outqueue->written); +#endif if (count == -1) { if (errno == EAGAIN || errno == EWOULDBLOCK) { - printf("socket would block, return from write to socket\n"); return 0; } - printf("Error when writing to socket :%s(%d)\n", strerror(errno), errno); - return -3; + rpc_set_error(rpc, "Error when writing to socket :%s(%d)", strerror(errno), errno); + return -1; } rpc->outqueue->written += count; @@ -98,68 +129,123 @@ static int rpc_read_from_socket(struct rpc_context *rpc) { int available; int size; - unsigned char *buf; + int pdu_size; ssize_t count; +#if defined(WIN32) + if (ioctlsocket(rpc->fd, FIONREAD, &available) != 0) { +#else if (ioctl(rpc->fd, FIONREAD, &available) != 0) { +#endif rpc_set_error(rpc, "Ioctl FIONREAD returned error : %d. Closing socket.", errno); return -1; } if (available == 0) { rpc_set_error(rpc, "Socket has been closed"); - return -2; - } - size = rpc->insize - rpc->inpos + available; - buf = malloc(size); - if (buf == NULL) { - rpc_set_error(rpc, "Out of memory: failed to allocate %d bytes for input buffer. Closing socket.", size); - return -3; - } - if (rpc->insize > rpc->inpos) { - memcpy(buf, rpc->inbuf + rpc->inpos, rpc->insize - rpc->inpos); - rpc->insize -= rpc->inpos; - rpc->inpos = 0; + return -1; } - count = read(rpc->fd, buf + rpc->insize, available); - if (count == -1) { - if (errno == EINTR) { + if (rpc->is_udp) { + char *buf; + socklen_t socklen = sizeof(rpc->udp_src); + + buf = malloc(available); + if (buf == NULL) { + rpc_set_error(rpc, "Failed to malloc buffer for recvfrom"); + return -1; + } + count = recvfrom(rpc->fd, buf, available, MSG_DONTWAIT, (struct sockaddr *)&rpc->udp_src, &socklen); + if (count < 0) { + rpc_set_error(rpc, "Failed recvfrom: %s", strerror(errno)); free(buf); - buf = NULL; - return 0; } - rpc_set_error(rpc, "Read from socket failed, errno:%d. Closing socket.", errno); + if (rpc_process_pdu(rpc, buf, count) != 0) { + rpc_set_error(rpc, "Invalid/garbage pdu received from server. Ignoring PDU"); + free(buf); + return -1; + } free(buf); - buf = NULL; - return -4; + return 0; } - if (rpc->inbuf != NULL) { - free(rpc->inbuf); + /* read record marker, 4 bytes at the beginning of every pdu */ + if (rpc->inbuf == NULL) { + rpc->insize = 4; + rpc->inbuf = malloc(rpc->insize); + if (rpc->inbuf == NULL) { + rpc_set_error(rpc, "Failed to allocate buffer for record marker, errno:%d. Closing socket.", errno); + return -1; + } + } + if (rpc->inpos < 4) { + size = 4 - rpc->inpos; + +#if defined(WIN32) + count = recv(rpc->fd, rpc->inbuf + rpc->inpos, size, 0); +#else + count = read(rpc->fd, rpc->inbuf + rpc->inpos, size); +#endif + if (count == -1) { + if (errno == EINTR) { + return 0; + } + rpc_set_error(rpc, "Read from socket failed, errno:%d. Closing socket.", errno); + return -1; + } + available -= count; + rpc->inpos += count; } - rpc->inbuf = (char *)buf; - rpc->insize += count; - while (1) { - if (rpc->insize - rpc->inpos < 4) { - return 0; + if (available == 0) { + return 0; + } + + pdu_size = rpc_get_pdu_size(rpc->inbuf); + if (rpc->insize < pdu_size) { + unsigned char *buf; + + buf = malloc(pdu_size); + if (buf == NULL) { + rpc_set_error(rpc, "Failed to allocate buffer of %d bytes for pdu, errno:%d. Closing socket.", pdu_size, errno); + return -1; } - count = rpc_get_pdu_size(rpc->inbuf + rpc->inpos); - if (rpc->insize + rpc->inpos < count) { + memcpy(buf, rpc->inbuf, rpc->insize); + free(rpc->inbuf); + rpc->inbuf = buf; + rpc->insize = rpc_get_pdu_size(rpc->inbuf); + } + + size = available; + if (size > rpc->insize - rpc->inpos) { + size = rpc->insize - rpc->inpos; + } + +#if defined(WIN32) + count = recv(rpc->fd, rpc->inbuf + rpc->inpos, size, 0); +#else + count = read(rpc->fd, rpc->inbuf + rpc->inpos, size); +#endif + if (count == -1) { + if (errno == EINTR) { return 0; } - if (rpc_process_pdu(rpc, rpc->inbuf + rpc->inpos, count) != 0) { + rpc_set_error(rpc, "Read from socket failed, errno:%d. Closing socket.", errno); + return -1; + } + available -= count; + rpc->inpos += count; + + if (rpc->inpos == rpc->insize) { + if (rpc_process_pdu(rpc, rpc->inbuf, pdu_size) != 0) { rpc_set_error(rpc, "Invalid/garbage pdu received from server. Closing socket"); - return -5; - } - rpc->inpos += count; - if (rpc->inpos == rpc->insize) { - free(rpc->inbuf); - rpc->inbuf = NULL; - rpc->insize = 0; - rpc->inpos = 0; + return -1; } + free(rpc->inbuf); + rpc->inbuf = NULL; + rpc->insize = 0; + rpc->inpos = 0; } + return 0; } @@ -168,39 +254,63 @@ static int rpc_read_from_socket(struct rpc_context *rpc) int rpc_service(struct rpc_context *rpc, int revents) { if (revents & POLLERR) { - printf("rpc_service: POLLERR, socket error\n"); - if (rpc->is_connected == 0) { - rpc_set_error(rpc, "Failed to connect to server socket."); + int err = 0; + socklen_t err_size = sizeof(err); + + if (getsockopt(rpc->fd, SOL_SOCKET, SO_ERROR, + &err, &err_size) != 0 || err != 0) { + if (err == 0) { + err = errno; + } + rpc_set_error(rpc, "rpc_service: socket error " + "%s(%d).", + strerror(err), err); } else { - rpc_set_error(rpc, "Socket closed with POLLERR"); + rpc_set_error(rpc, "rpc_service: POLLERR, " + "Unknown socket error."); } rpc->connect_cb(rpc, RPC_STATUS_ERROR, rpc->error_string, rpc->connect_data); return -1; } if (revents & POLLHUP) { - printf("rpc_service: POLLHUP, socket error\n"); rpc_set_error(rpc, "Socket failed with POLLHUP"); rpc->connect_cb(rpc, RPC_STATUS_ERROR, rpc->error_string, rpc->connect_data); - return -2; + return -1; } if (rpc->is_connected == 0 && rpc->fd != -1 && revents&POLLOUT) { + int err = 0; + socklen_t err_size = sizeof(err); + + if (getsockopt(rpc->fd, SOL_SOCKET, SO_ERROR, + &err, &err_size) != 0 || err != 0) { + if (err == 0) { + err = errno; + } + rpc_set_error(rpc, "rpc_service: socket error " + "%s(%d) while connecting.", + strerror(err), err); + rpc->connect_cb(rpc, RPC_STATUS_ERROR, + NULL, rpc->connect_data); + return -1; + } + rpc->is_connected = 1; rpc->connect_cb(rpc, RPC_STATUS_SUCCESS, NULL, rpc->connect_data); return 0; } - if (revents & POLLOUT && rpc->outqueue != NULL) { - if (rpc_write_to_socket(rpc) != 0) { - printf("write to socket failed\n"); - return -3; + if (revents & POLLIN) { + if (rpc_read_from_socket(rpc) != 0) { + rpc_disconnect_requeue(rpc); + return 0; } } - if (revents & POLLIN) { - if (rpc_read_from_socket(rpc) != 0) { - rpc_disconnect(rpc, rpc_get_error(rpc)); - return -4; + if (revents & POLLOUT && rpc->outqueue != NULL) { + if (rpc_write_to_socket(rpc) != 0) { + rpc_set_error(rpc, "write to socket failed"); + return -1; } } @@ -216,7 +326,11 @@ int rpc_connect_async(struct rpc_context *rpc, const char *server, int port, rpc if (rpc->fd != -1) { rpc_set_error(rpc, "Trying to connect while already connected"); - printf("%s\n", rpc->error_string); + return -1; + } + + if (rpc->is_udp != 0) { + rpc_set_error(rpc, "Trying to connect on UDP socket"); return -1; } @@ -224,21 +338,22 @@ int rpc_connect_async(struct rpc_context *rpc, const char *server, int port, rpc sin->sin_port = htons(port); if (inet_pton(AF_INET, server, &sin->sin_addr) != 1) { rpc_set_error(rpc, "Not a valid server ip address"); - printf("%s\n", rpc->error_string); - return -2; + return -1; } switch (s.ss_family) { case AF_INET: - rpc->fd = socket(AF_INET, SOCK_STREAM, 0); socksize = sizeof(struct sockaddr_in); +#ifdef HAVE_SOCKADDR_LEN + sin->sin_len = socksize; +#endif + rpc->fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); break; } if (rpc->fd == -1) { rpc_set_error(rpc, "Failed to open socket"); - printf("%s\n", rpc->error_string); - return -3; + return -1; } rpc->connect_cb = cb; @@ -248,8 +363,7 @@ int rpc_connect_async(struct rpc_context *rpc, const char *server, int port, rpc if (connect(rpc->fd, (struct sockaddr *)&s, socksize) != 0 && errno != EINPROGRESS) { rpc_set_error(rpc, "connect() to server failed"); - printf("%s\n", rpc->error_string); - return -4; + return -1; } return 0; @@ -258,7 +372,11 @@ int rpc_connect_async(struct rpc_context *rpc, const char *server, int port, rpc int rpc_disconnect(struct rpc_context *rpc, char *error) { if (rpc->fd != -1) { +#if defined(WIN32) + closesocket(rpc->fd); +#else close(rpc->fd); +#endif } rpc->fd = -1; @@ -268,3 +386,114 @@ int rpc_disconnect(struct rpc_context *rpc, char *error) return 0; } + +/* disconnect but do not error all PDUs, just move pdus in-flight back to the outqueue */ +static int rpc_disconnect_requeue(struct rpc_context *rpc) +{ + struct rpc_pdu *pdu; + + if (rpc->fd != -1) { +#if defined(WIN32) + closesocket(rpc->fd); +#else + close(rpc->fd); +#endif + } + rpc->fd = -1; + + rpc->is_connected = 0; + + /* socket is closed so we will not get any replies to any commands + * in flight. Move them all over from the waitpdu queue back to the out queue + */ + for (pdu=rpc->waitpdu; pdu; pdu=pdu->next) { + SLIST_REMOVE(&rpc->waitpdu, pdu); + SLIST_ADD(&rpc->outqueue, pdu); + } + + return 0; +} + + +int rpc_bind_udp(struct rpc_context *rpc, char *addr, int port) +{ + struct addrinfo *ai = NULL; + char service[6]; + + if (rpc->is_udp == 0) { + rpc_set_error(rpc, "Cant not bind UDP. Not UDP context"); + return -1; + } + + sprintf(service, "%d", port); + if (getaddrinfo(addr, service, NULL, &ai) != 0) { + rpc_set_error(rpc, "Invalid address:%s. " + "Can not resolv into IPv4/v6 structure."); + return -1; + } + + switch(ai->ai_family) { + case AF_INET: + rpc->fd = socket(ai->ai_family, SOCK_DGRAM, 0); + if (rpc->fd == -1) { + rpc_set_error(rpc, "Failed to create UDP socket: %s", strerror(errno)); + freeaddrinfo(ai); + return -1; + } + + if (bind(rpc->fd, (struct sockaddr *)ai->ai_addr, sizeof(struct sockaddr_in)) != 0) { + rpc_set_error(rpc, "Failed to bind to UDP socket: %s",strerror(errno)); + freeaddrinfo(ai); + return -1; + } + break; + default: + rpc_set_error(rpc, "Can not handle UPD sockets of family %d yet", ai->ai_family); + freeaddrinfo(ai); + return -1; + } + + freeaddrinfo(ai); + + return 0; +} + +int rpc_set_udp_destination(struct rpc_context *rpc, char *addr, int port, int is_broadcast) +{ + struct addrinfo *ai = NULL; + char service[6]; + + if (rpc->is_udp == 0) { + rpc_set_error(rpc, "Can not set destination sockaddr. Not UDP context"); + return -1; + } + + sprintf(service, "%d", port); + if (getaddrinfo(addr, service, NULL, &ai) != 0) { + rpc_set_error(rpc, "Invalid address:%s. " + "Can not resolv into IPv4/v6 structure."); + return -1; + } + + if (rpc->udp_dest) { + free(rpc->udp_dest); + rpc->udp_dest = NULL; + } + rpc->udp_dest = malloc(ai->ai_addrlen); + if (rpc->udp_dest == NULL) { + rpc_set_error(rpc, "Out of memory. Failed to allocate sockaddr structure"); + return -1; + } + memcpy(rpc->udp_dest, ai->ai_addr, ai->ai_addrlen); + freeaddrinfo(ai); + + rpc->is_broadcast = is_broadcast; + setsockopt(rpc->fd, SOL_SOCKET, SO_BROADCAST, &is_broadcast, sizeof(is_broadcast)); + + return 0; +} + +struct sockaddr *rpc_get_recv_sockaddr(struct rpc_context *rpc) +{ + return (struct sockaddr *)&rpc->udp_src; +}