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 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
|
// SPDX-License-Identifier: LGPL-2.1-or-later
/*
* Copyright (C) 2015 Red Hat, Inc.
*
* This file is part of the device-mapper multipath userspace tools.
*/
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <poll.h>
#include <stddef.h>
#include <string.h>
#include <errno.h>
#include <fcntl.h>
#include "mpath_cmd.h"
#include "mpath_fill_sockaddr.c"
/*
* keep reading until its all read
*/
static ssize_t read_all(int fd, void *buf, size_t len, unsigned int timeout)
{
size_t total = 0;
ssize_t n;
int ret;
struct pollfd pfd;
while (len) {
pfd.fd = fd;
pfd.events = POLLIN;
ret = poll(&pfd, 1, timeout);
if (!ret) {
errno = ETIMEDOUT;
return -1;
} else if (ret < 0) {
if (errno == EINTR)
continue;
return -1;
} else if (!(pfd.revents & POLLIN))
continue;
n = recv(fd, buf, len, 0);
if (n < 0) {
if ((errno == EINTR) || (errno == EAGAIN))
continue;
return -1;
}
if (!n)
return total;
buf = n + (char *)buf;
len -= n;
total += n;
}
return total;
}
/*
* keep writing until it's all sent
*/
static size_t write_all(int fd, const void *buf, size_t len)
{
size_t total = 0;
while (len) {
ssize_t n = send(fd, buf, len, MSG_NOSIGNAL);
if (n < 0) {
if ((errno == EINTR) || (errno == EAGAIN))
continue;
return total;
}
if (!n)
return total;
buf = n + (const char *)buf;
len -= n;
total += n;
}
return total;
}
/*
* connect to a unix domain socket
*/
int mpath_connect__(int nonblocking)
{
int fd;
size_t len;
struct sockaddr_un addr;
int flags = 0;
const char *const names[2] = {PATHNAME_SOCKET, ABSTRACT_SOCKET};
int name_idx = 0;
const char *env_name = getenv("MULTIPATH_SOCKET_NAME"), *name;
retry:
fd = socket(AF_LOCAL, SOCK_STREAM, 0);
if (fd == -1)
return -1;
if (nonblocking) {
flags = fcntl(fd, F_GETFL, 0);
if (flags != -1)
(void)fcntl(fd, F_SETFL, flags|O_NONBLOCK);
}
name = env_name ? env_name : names[name_idx];
len = mpath_fill_sockaddr__(&addr, name);
if (connect(fd, (struct sockaddr *)&addr, len) == -1) {
int err = errno;
close(fd);
if (name != env_name && ++name_idx == 1)
goto retry;
else {
errno = err;
return -1;
}
}
if (nonblocking && flags != -1)
(void)fcntl(fd, F_SETFL, flags);
return fd;
}
extern int __mpath_connect(int)
__attribute__((weak, alias("mpath_connect__")));
/*
* connect to a unix domain socket
*/
int mpath_connect(void)
{
return mpath_connect__(0);
}
int mpath_disconnect(int fd)
{
return close(fd);
}
ssize_t mpath_recv_reply_len(int fd, unsigned int timeout)
{
size_t len;
ssize_t ret;
ret = read_all(fd, &len, sizeof(len), timeout);
if (ret < 0)
return ret;
if (ret != sizeof(len)) {
errno = EIO;
return -1;
}
if (len <= 0 || len >= MAX_REPLY_LEN) {
errno = ERANGE;
return -1;
}
return len;
}
int mpath_recv_reply_data(int fd, char *reply, size_t len,
unsigned int timeout)
{
ssize_t ret;
if (len <= 0)
return 0;
ret = read_all(fd, reply, len, timeout);
if (ret < 0)
return ret;
if ((size_t)ret != len) {
errno = EIO;
return -1;
}
reply[len - 1] = '\0';
return 0;
}
int mpath_recv_reply(int fd, char **reply, unsigned int timeout)
{
int err;
ssize_t len;
*reply = NULL;
len = mpath_recv_reply_len(fd, timeout);
if (len <= 0)
return len;
*reply = malloc(len);
if (!*reply)
return -1;
err = mpath_recv_reply_data(fd, *reply, len, timeout);
if (err) {
free(*reply);
*reply = NULL;
return -1;
}
return 0;
}
int mpath_send_cmd(int fd, const char *cmd)
{
size_t len;
if (cmd != NULL)
len = strlen(cmd) + 1;
else
len = 0;
if (write_all(fd, &len, sizeof(len)) != sizeof(len))
return -1;
if (len && write_all(fd, cmd, len) != len)
return -1;
return 0;
}
int mpath_process_cmd(int fd, const char *cmd, char **reply,
unsigned int timeout)
{
if (mpath_send_cmd(fd, cmd) != 0)
return -1;
return mpath_recv_reply(fd, reply, timeout);
}
|