2018-09-27 09:11:10 +02:00
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
2017-11-27 08:37:28 +01:00
|
|
|
#include <fcntl.h>
|
2018-09-16 10:16:18 +02:00
|
|
|
#include <endian.h>
|
2017-11-27 08:37:28 +01:00
|
|
|
|
2020-04-12 14:34:56 +02:00
|
|
|
#include <socket.hpp>
|
2020-03-09 09:50:30 +01:00
|
|
|
#include <utils.hpp>
|
|
|
|
#include <logging.hpp>
|
2017-11-27 08:37:28 +01:00
|
|
|
|
2019-02-09 21:02:46 +01:00
|
|
|
#define ABS_SOCKET_LEN(sun) (sizeof(sa_family_t) + strlen(sun->sun_path + 1) + 1)
|
2018-09-16 10:16:18 +02:00
|
|
|
|
2018-10-12 06:50:47 +02:00
|
|
|
socklen_t setup_sockaddr(struct sockaddr_un *sun, const char *name) {
|
2018-02-10 20:40:09 +01:00
|
|
|
memset(sun, 0, sizeof(*sun));
|
|
|
|
sun->sun_family = AF_LOCAL;
|
2018-07-02 16:11:28 +02:00
|
|
|
strcpy(sun->sun_path + 1, name);
|
2018-09-16 10:16:18 +02:00
|
|
|
return ABS_SOCKET_LEN(sun);
|
|
|
|
}
|
|
|
|
|
|
|
|
int create_rand_socket(struct sockaddr_un *sun) {
|
|
|
|
memset(sun, 0, sizeof(*sun));
|
|
|
|
sun->sun_family = AF_LOCAL;
|
2019-07-15 02:41:51 +02:00
|
|
|
gen_rand_str(sun->sun_path + 1, sizeof(sun->sun_path) - 1);
|
2018-09-16 10:16:18 +02:00
|
|
|
int fd = xsocket(AF_LOCAL, SOCK_STREAM | SOCK_CLOEXEC, 0);
|
|
|
|
xbind(fd, (struct sockaddr*) sun, ABS_SOCKET_LEN(sun));
|
|
|
|
xlisten(fd, 1);
|
2018-02-10 20:40:09 +01:00
|
|
|
return fd;
|
2017-11-27 08:37:28 +01:00
|
|
|
}
|
|
|
|
|
2018-10-04 10:59:51 +02:00
|
|
|
int socket_accept(int sockfd, int timeout) {
|
2018-10-04 21:06:13 +02:00
|
|
|
struct pollfd pfd = {
|
|
|
|
.fd = sockfd,
|
|
|
|
.events = POLL_IN
|
|
|
|
};
|
2019-07-01 04:09:31 +02:00
|
|
|
return xpoll(&pfd, 1, timeout * 1000) <= 0 ? -1 : xaccept4(sockfd, nullptr, nullptr, SOCK_CLOEXEC);
|
2018-09-16 10:16:18 +02:00
|
|
|
}
|
|
|
|
|
2019-02-09 21:02:46 +01:00
|
|
|
void get_client_cred(int fd, struct ucred *cred) {
|
|
|
|
socklen_t ucred_length = sizeof(*cred);
|
|
|
|
getsockopt(fd, SOL_SOCKET, SO_PEERCRED, cred, &ucred_length);
|
|
|
|
}
|
|
|
|
|
2017-11-27 08:37:28 +01:00
|
|
|
/*
|
|
|
|
* Receive a file descriptor from a Unix socket.
|
|
|
|
* Contributed by @mkasick
|
|
|
|
*
|
|
|
|
* Returns the file descriptor on success, or -1 if a file
|
|
|
|
* descriptor was not actually included in the message
|
|
|
|
*
|
|
|
|
* On error the function terminates by calling exit(-1)
|
|
|
|
*/
|
|
|
|
int recv_fd(int sockfd) {
|
2018-02-10 20:40:09 +01:00
|
|
|
// Need to receive data from the message, otherwise don't care about it.
|
|
|
|
char iovbuf;
|
2018-11-04 09:38:06 +01:00
|
|
|
struct cmsghdr *cmsg;
|
2018-02-10 20:40:09 +01:00
|
|
|
|
|
|
|
struct iovec iov = {
|
|
|
|
.iov_base = &iovbuf,
|
|
|
|
.iov_len = 1,
|
|
|
|
};
|
|
|
|
|
|
|
|
char cmsgbuf[CMSG_SPACE(sizeof(int))];
|
|
|
|
|
|
|
|
struct msghdr msg = {
|
|
|
|
.msg_iov = &iov,
|
|
|
|
.msg_iovlen = 1,
|
|
|
|
.msg_control = cmsgbuf,
|
|
|
|
.msg_controllen = sizeof(cmsgbuf),
|
|
|
|
};
|
|
|
|
|
|
|
|
xrecvmsg(sockfd, &msg, MSG_WAITALL);
|
|
|
|
|
|
|
|
// Was a control message actually sent?
|
|
|
|
switch (msg.msg_controllen) {
|
|
|
|
case 0:
|
|
|
|
// No, so the file descriptor was closed and won't be used.
|
|
|
|
return -1;
|
|
|
|
case sizeof(cmsgbuf):
|
|
|
|
// Yes, grab the file descriptor from it.
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
2018-11-04 09:38:06 +01:00
|
|
|
cmsg = CMSG_FIRSTHDR(&msg);
|
2018-02-10 20:40:09 +01:00
|
|
|
|
2019-07-01 04:09:31 +02:00
|
|
|
if (cmsg == nullptr ||
|
2018-02-10 20:40:09 +01:00
|
|
|
cmsg->cmsg_len != CMSG_LEN(sizeof(int)) ||
|
|
|
|
cmsg->cmsg_level != SOL_SOCKET ||
|
|
|
|
cmsg->cmsg_type != SCM_RIGHTS) {
|
2017-11-27 08:37:28 +01:00
|
|
|
error:
|
2018-02-10 20:40:09 +01:00
|
|
|
LOGE("unable to read fd");
|
|
|
|
exit(-1);
|
|
|
|
}
|
2017-11-27 08:37:28 +01:00
|
|
|
|
2018-02-10 20:40:09 +01:00
|
|
|
return *(int *)CMSG_DATA(cmsg);
|
2017-11-27 08:37:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Send a file descriptor through a Unix socket.
|
|
|
|
* Contributed by @mkasick
|
|
|
|
*
|
|
|
|
* On error the function terminates by calling exit(-1)
|
|
|
|
*
|
|
|
|
* fd may be -1, in which case the dummy data is sent,
|
|
|
|
* but no control message with the FD is sent.
|
|
|
|
*/
|
|
|
|
void send_fd(int sockfd, int fd) {
|
2018-02-10 20:40:09 +01:00
|
|
|
// Need to send some data in the message, this will do.
|
2018-11-04 09:38:06 +01:00
|
|
|
char junk[] = { '\0' };
|
2018-02-10 20:40:09 +01:00
|
|
|
struct iovec iov = {
|
2018-11-04 09:38:06 +01:00
|
|
|
.iov_base = junk,
|
2018-02-10 20:40:09 +01:00
|
|
|
.iov_len = 1,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct msghdr msg = {
|
|
|
|
.msg_iov = &iov,
|
|
|
|
.msg_iovlen = 1,
|
|
|
|
};
|
|
|
|
|
|
|
|
char cmsgbuf[CMSG_SPACE(sizeof(int))];
|
|
|
|
|
|
|
|
if (fd != -1) {
|
|
|
|
// Is the file descriptor actually open?
|
|
|
|
if (fcntl(fd, F_GETFD) == -1) {
|
|
|
|
if (errno != EBADF) {
|
|
|
|
PLOGE("unable to send fd");
|
|
|
|
}
|
|
|
|
// It's closed, don't send a control message or sendmsg will EBADF.
|
|
|
|
} else {
|
|
|
|
// It's open, send the file descriptor in a control message.
|
|
|
|
msg.msg_control = cmsgbuf;
|
|
|
|
msg.msg_controllen = sizeof(cmsgbuf);
|
|
|
|
|
|
|
|
struct cmsghdr *cmsg = CMSG_FIRSTHDR(&msg);
|
|
|
|
|
|
|
|
cmsg->cmsg_len = CMSG_LEN(sizeof(int));
|
|
|
|
cmsg->cmsg_level = SOL_SOCKET;
|
|
|
|
cmsg->cmsg_type = SCM_RIGHTS;
|
|
|
|
|
|
|
|
*(int *)CMSG_DATA(cmsg) = fd;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
xsendmsg(sockfd, &msg, 0);
|
2017-11-27 08:37:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int read_int(int fd) {
|
2018-02-10 20:40:09 +01:00
|
|
|
int val;
|
2018-10-28 09:24:53 +01:00
|
|
|
if (xxread(fd, &val, sizeof(val)) != sizeof(val))
|
2018-10-04 10:59:51 +02:00
|
|
|
return -1;
|
2018-02-10 20:40:09 +01:00
|
|
|
return val;
|
2017-11-27 08:37:28 +01:00
|
|
|
}
|
|
|
|
|
2018-09-16 10:16:18 +02:00
|
|
|
int read_int_be(int fd) {
|
|
|
|
uint32_t val;
|
2018-10-28 09:24:53 +01:00
|
|
|
if (xxread(fd, &val, sizeof(val)) != sizeof(val))
|
2018-10-04 10:59:51 +02:00
|
|
|
return -1;
|
2018-09-16 10:16:18 +02:00
|
|
|
return ntohl(val);
|
|
|
|
}
|
|
|
|
|
2017-11-27 08:37:28 +01:00
|
|
|
void write_int(int fd, int val) {
|
2018-02-10 20:40:09 +01:00
|
|
|
if (fd < 0) return;
|
2018-10-28 09:24:53 +01:00
|
|
|
xwrite(fd, &val, sizeof(val));
|
2017-11-27 08:37:28 +01:00
|
|
|
}
|
|
|
|
|
2018-09-16 10:16:18 +02:00
|
|
|
void write_int_be(int fd, int val) {
|
|
|
|
uint32_t nl = htonl(val);
|
|
|
|
xwrite(fd, &nl, sizeof(nl));
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *rd_str(int fd, int len) {
|
2018-11-04 09:38:06 +01:00
|
|
|
char *val = (char *) xmalloc(sizeof(char) * (len + 1));
|
2018-02-10 20:40:09 +01:00
|
|
|
xxread(fd, val, len);
|
|
|
|
val[len] = '\0';
|
|
|
|
return val;
|
2017-11-27 08:37:28 +01:00
|
|
|
}
|
|
|
|
|
2018-09-16 10:16:18 +02:00
|
|
|
char* read_string(int fd) {
|
|
|
|
int len = read_int(fd);
|
|
|
|
return rd_str(fd, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
char* read_string_be(int fd) {
|
|
|
|
int len = read_int_be(fd);
|
|
|
|
return rd_str(fd, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
void write_string(int fd, const char *val) {
|
2018-02-10 20:40:09 +01:00
|
|
|
if (fd < 0) return;
|
|
|
|
int len = strlen(val);
|
|
|
|
write_int(fd, len);
|
|
|
|
xwrite(fd, val, len);
|
2017-11-27 08:37:28 +01:00
|
|
|
}
|
2018-09-16 10:16:18 +02:00
|
|
|
|
|
|
|
void write_string_be(int fd, const char *val) {
|
|
|
|
int len = strlen(val);
|
|
|
|
write_int_be(fd, len);
|
|
|
|
xwrite(fd, val, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
void write_key_value(int fd, const char *key, const char *val) {
|
|
|
|
write_string_be(fd, key);
|
|
|
|
write_string_be(fd, val);
|
|
|
|
}
|
|
|
|
|
|
|
|
void write_key_token(int fd, const char *key, int tok) {
|
|
|
|
char val[16];
|
|
|
|
sprintf(val, "%d", tok);
|
|
|
|
write_key_value(fd, key, val);
|
|
|
|
}
|