1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
|
/*
* Original author : tridge@samba.org, January 2002
*
* Copyright (c) 2005 Christophe Varoqui
* Copyright (c) 2005 Alasdair Kergon, Redhat
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <stdarg.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <sys/poll.h>
#include <errno.h>
#include "memory.h"
#include "uxsock.h"
/*
* connect to a unix domain socket
*/
int ux_socket_connect(const char *name)
{
int fd;
struct sockaddr_un addr;
memset(&addr, 0, sizeof(addr));
addr.sun_family = AF_UNIX;
strncpy(addr.sun_path, name, sizeof(addr.sun_path));
fd = socket(AF_UNIX, SOCK_STREAM, 0);
if (fd == -1) {
return -1;
}
if (connect(fd, (struct sockaddr *)&addr, sizeof(addr)) == -1) {
close(fd);
return -1;
}
return fd;
}
/*
* create a unix domain socket and start listening on it
* return a file descriptor open on the socket
*/
int ux_socket_listen(const char *name)
{
int fd;
struct sockaddr_un addr;
/* get rid of any old socket */
unlink(name);
fd = socket(AF_UNIX, SOCK_STREAM, 0);
if (fd == -1) return -1;
memset(&addr, 0, sizeof(addr));
addr.sun_family = AF_UNIX;
strncpy(addr.sun_path, name, sizeof(addr.sun_path));
if (bind(fd, (struct sockaddr *)&addr, sizeof(addr)) == -1) {
close(fd);
return -1;
}
if (listen(fd, 10) == -1) {
close(fd);
return -1;
}
return fd;
}
/*
* keep writing until it's all sent
*/
size_t write_all(int fd, const void *buf, size_t len)
{
size_t total = 0;
while (len) {
ssize_t n = write(fd, buf, len);
if (n < 0) {
if ((errno == EINTR) || (errno == EAGAIN))
continue;
return total;
}
if (!n)
return total;
buf = n + (char *)buf;
len -= n;
total += n;
}
return total;
}
/*
* keep reading until its all read
*/
size_t read_all(int fd, void *buf, size_t len)
{
size_t total = 0;
while (len) {
ssize_t n = read(fd, buf, len);
if (n < 0) {
if ((errno == EINTR) || (errno == EAGAIN))
continue;
return total;
}
if (!n)
return total;
buf = n + (char *)buf;
len -= n;
total += n;
}
return total;
}
/*
* send a packet in length prefix format
*/
int send_packet(int fd, const char *buf, size_t len)
{
if (write_all(fd, &len, sizeof(len)) != sizeof(len)) return -1;
if (write_all(fd, buf, len) != len) return -1;
return 0;
}
/*
* receive a packet in length prefix format
*/
int recv_packet(int fd, char **buf, size_t *len)
{
if (read_all(fd, len, sizeof(*len)) != sizeof(*len)) return -1;
(*buf) = MALLOC(*len);
if (read_all(fd, *buf, *len) != *len) {
FREE(*buf);
return -1;
}
return 0;
}
|