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 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385
|
/*****************************************************************************
* Written by Chris Dunlap <cdunlap@llnl.gov>.
* Copyright (C) 2007-2022 Lawrence Livermore National Security, LLC.
* Copyright (C) 2001-2007 The Regents of the University of California.
* UCRL-CODE-2002-009.
*
* This file is part of ConMan: The Console Manager.
* For details, see <https://dun.github.io/conman/>.
*
* ConMan is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option)
* any later version.
*
* ConMan is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
* You should have received a copy of the GNU General Public License along
* with ConMan. If not, see <http://www.gnu.org/licenses/>.
*****************************************************************************/
#if HAVE_CONFIG_H
# include <config.h>
#endif /* HAVE_CONFIG_H */
#include <assert.h>
#include <errno.h>
#include <limits.h>
#include <stdio.h>
#include <string.h>
#include <sys/types.h> /* include before socket.h for bsd */
#include <sys/socket.h>
#include <sys/stat.h>
#include <sys/un.h>
#include "inevent.h"
#include "list.h"
#include "log.h"
#include "server.h"
#include "tpoll.h"
#include "util.h"
#include "util-file.h"
#include "util-str.h"
static int open_unixsock_obj_via_inotify(obj_t *unixsock);
static size_t max_unixsock_dev_strlen(void);
static int connect_unixsock_obj(obj_t *unixsock);
static int disconnect_unixsock_obj(obj_t *unixsock);
static void reset_unixsock_delay(obj_t *unixsock);
extern tpoll_t tp_global; /* defined in server.c */
int is_unixsock_dev(const char *dev, const char *cwd, char **path_ref)
{
const char *prefix = "unix:";
int n;
char buf[PATH_MAX];
assert(dev != NULL);
if (strncasecmp(dev, prefix, strlen(prefix)) != 0) {
return(0);
}
dev += strlen(prefix);
if (dev[0] == '\0') {
return(0);
}
if ((dev[0] != '/') && (cwd != NULL)) {
n = snprintf(buf, sizeof(buf), "%s/%s", cwd, dev);
if ((n < 0) || ((size_t) n >= sizeof(buf))) {
return(0);
}
dev = buf;
}
if (path_ref) {
*path_ref = create_string(dev);
}
return(1);
}
obj_t * create_unixsock_obj(server_conf_t *conf, char *name, char *dev,
char *errbuf, int errlen)
{
/* Creates a new unix domain object and adds it to the master objs list.
* Returns the new objects, or NULL on error.
*/
size_t n;
ListIterator i;
obj_t *unixsock;
int rv;
assert(conf != NULL);
assert((name != NULL) && (name[0] != '\0'));
assert((dev != NULL) && (dev[0] != '\0'));
assert(errbuf != NULL);
assert(errlen > 0);
/* Check length of device string.
*/
n = max_unixsock_dev_strlen();
if (strlen(dev) > n) {
if ((errbuf != NULL) && (errlen > 0)) {
snprintf(errbuf, errlen,
"console [%s] exceeds maximum device length of %lu bytes",
name, (unsigned long) n);
}
return(NULL);
}
/* Check for duplicate console and device names.
*/
i = list_iterator_create(conf->objs);
while ((unixsock = list_next(i))) {
if (is_console_obj(unixsock) && !strcmp(unixsock->name, name)) {
if ((errbuf != NULL) && (errlen > 0)) {
snprintf(errbuf, errlen,
"console [%s] specifies duplicate console name", name);
}
break;
}
if (is_unixsock_obj(unixsock)
&& !strcmp(unixsock->aux.unixsock.dev, dev)) {
if ((errbuf != NULL) && (errlen > 0)) {
snprintf(errbuf, errlen,
"console [%s] specifies duplicate device \"%s\"",
name, dev);
}
break;
}
}
list_iterator_destroy(i);
if (unixsock != NULL) {
return(NULL);
}
unixsock = create_obj(conf, name, -1, CONMAN_OBJ_UNIXSOCK);
unixsock->aux.unixsock.dev = create_string(dev);
unixsock->aux.unixsock.logfile = NULL;
unixsock->aux.unixsock.timer = -1;
unixsock->aux.unixsock.state = CONMAN_UNIXSOCK_DOWN;
unixsock->aux.unixsock.isViaInotify = 0;
unixsock->aux.unixsock.delay = UNIXSOCK_MIN_TIMEOUT;
/*
* Add obj to the master conf->objs list.
*/
list_append(conf->objs, unixsock);
rv = inevent_add(unixsock->aux.unixsock.dev,
(inevent_cb_f) open_unixsock_obj_via_inotify, unixsock);
if (rv < 0) {
log_msg(LOG_INFO,
"Console [%s] unable to register device \"%s\" for inotify events",
unixsock->name, unixsock->aux.unixsock.dev);
}
return(unixsock);
}
int open_unixsock_obj(obj_t *unixsock)
{
/* (Re)opens the specified 'unixsock' obj.
* Returns 0 if the console is successfully opened; o/w, returns -1.
*/
int rc = 0;
assert(unixsock != NULL);
assert(is_unixsock_obj(unixsock));
if (unixsock->aux.unixsock.state == CONMAN_UNIXSOCK_UP) {
rc = disconnect_unixsock_obj(unixsock);
}
else {
rc = connect_unixsock_obj(unixsock);
}
return(rc);
}
static int open_unixsock_obj_via_inotify(obj_t *unixsock)
{
/* Opens the specified 'unixsock' obj via an inotify callback.
* Returns 0 if the console is successfully opened; o/w, returns -1.
*/
unixsock_obj_t *auxp;
assert(unixsock != NULL);
assert(is_unixsock_obj(unixsock));
auxp = &(unixsock->aux.unixsock);
auxp->isViaInotify = 1;
return(open_unixsock_obj(unixsock));
}
static size_t max_unixsock_dev_strlen(void)
{
/* Returns the maximum string length allowed for a unix domain device.
*
* Note: This routine exists because the UNIX_PATH_MAX #define is not part
* of <sys/un.h> under Linux (it's in <linux/un.h> instead), and as such,
* I'm not sure how portable it is to use.
*/
struct sockaddr_un saddr;
/* Subtract 1 byte for null termination of string.
*/
return(sizeof(saddr.sun_path) - 1);
}
static int connect_unixsock_obj(obj_t *unixsock)
{
/* Opens a connection to the specified (unixsock) obj.
* Returns 0 if the connection is successfully completed; o/w, returns -1.
*/
unixsock_obj_t *auxp;
int isViaInotify;
struct stat st;
struct sockaddr_un saddr;
size_t n;
assert(unixsock != NULL);
assert(is_unixsock_obj(unixsock));
assert(unixsock->aux.unixsock.state != CONMAN_UNIXSOCK_UP);
assert(strlen(unixsock->aux.unixsock.dev) <= max_unixsock_dev_strlen());
auxp = &(unixsock->aux.unixsock);
isViaInotify = auxp->isViaInotify;
auxp->isViaInotify = 0;
if (auxp->timer >= 0) {
(void) tpoll_timeout_cancel(tp_global, auxp->timer);
auxp->timer = -1;
}
if (stat(auxp->dev, &st) < 0) {
log_msg(LOG_DEBUG, "Console [%s] cannot stat device \"%s\": %s",
unixsock->name, auxp->dev, strerror(errno));
return(disconnect_unixsock_obj(unixsock));
}
#ifdef S_ISSOCK
/* Danger, Will Robinson! S_ISSOCK not in POSIX.1-1996.
*
* If this is not defined, connect() will detect the error of the device
* not being a socket.
*/
if (!S_ISSOCK(st.st_mode)) {
log_msg(LOG_NOTICE, "Console [%s] device \"%s\" is not a socket",
unixsock->name, auxp->dev);
return(disconnect_unixsock_obj(unixsock));
}
#endif /* S_ISSOCK */
memset(&saddr, 0, sizeof(saddr));
saddr.sun_family = AF_UNIX;
n = strlcpy(saddr.sun_path, auxp->dev, sizeof(saddr.sun_path));
if (n >= sizeof(saddr.sun_path)) {
log_msg(LOG_NOTICE,
"Console [%s] device path exceeds %lu-byte maximum",
unixsock->name, (unsigned long) sizeof(saddr.sun_path) - 1);
return(disconnect_unixsock_obj(unixsock));
}
if ((unixsock->fd = socket(AF_UNIX, SOCK_STREAM, 0)) < 0) {
log_msg(LOG_INFO, "Console [%s] cannot create socket: %s",
unixsock->name, strerror(errno));
return(disconnect_unixsock_obj(unixsock));
}
set_fd_nonblocking(unixsock->fd);
set_fd_closed_on_exec(unixsock->fd);
/* If a connect() triggered via an inotify event fails, reset the
* reconnect delay to its minimum to quickly re-attempt the connection.
* This handles the case where the remote has successfully called bind()
* (triggering the inotify event) but has not yet called listen().
* FIXME: Check to see if connect() on a nonblocking unix domain socket
* can return EINPROGRESS. I don't think it can.
*/
if (connect(unixsock->fd,
(struct sockaddr *) &saddr, sizeof(saddr)) < 0) {
if (isViaInotify) {
auxp->delay = UNIXSOCK_MIN_TIMEOUT;
DPRINTF((15, "Reset [%s] reconnect delay due to inotify event\n",
unixsock->name));
}
log_msg(LOG_INFO, "Console [%s] cannot connect to device \"%s\": %s",
unixsock->name, auxp->dev, strerror(errno));
return(disconnect_unixsock_obj(unixsock));
}
/* Write-locking the unix domain socket appears ineffective. But since
* create_unixsock_obj() already checks for duplicate devices, this is
* only an issue if two daemons are trying to simultaneously use the
* same local socket.
*/
unixsock->gotEOF = 0;
auxp->state = CONMAN_UNIXSOCK_UP;
tpoll_set(tp_global, unixsock->fd, POLLIN);
/* Require the connection to be up for a minimum length of time before
* resetting the reconnect-delay back to the minimum.
*/
auxp->timer = tpoll_timeout_relative(tp_global,
(callback_f) reset_unixsock_delay, unixsock, MIN_CONNECT_SECS * 1000);
/* Notify linked objs when transitioning into an UP state.
*/
write_notify_msg(unixsock, LOG_INFO, "Console [%s] connected to \"%s\"",
unixsock->name, auxp->dev);
DPRINTF((9, "Opened [%s] unixsock: fd=%d dev=%s.\n",
unixsock->name, unixsock->fd, auxp->dev));
return(0);
}
static int disconnect_unixsock_obj(obj_t *unixsock)
{
/* Closes the existing connection with the specified (unixsock) obj
* and sets a timer for establishing a new connection.
* Always returns -1.
*/
unixsock_obj_t *auxp;
assert(unixsock != NULL);
assert(is_unixsock_obj(unixsock));
auxp = &(unixsock->aux.unixsock);
if (auxp->timer >= 0) {
(void) tpoll_timeout_cancel(tp_global, auxp->timer);
auxp->timer = -1;
}
if (unixsock->fd >= 0) {
tpoll_clear(tp_global, unixsock->fd, POLLIN | POLLOUT);
if (close(unixsock->fd) < 0) {
log_msg(LOG_WARNING, "Console [%s] cannot close device \"%s\": %s",
unixsock->name, auxp->dev, strerror(errno));
}
unixsock->fd = -1;
}
/* Notify linked objs when transitioning from an UP state.
*/
if (auxp->state == CONMAN_UNIXSOCK_UP) {
auxp->state = CONMAN_UNIXSOCK_DOWN;
write_notify_msg(unixsock, LOG_INFO,
"Console [%s] disconnected from \"%s\"",
unixsock->name, auxp->dev);
}
/* Set timer for establishing new connection.
*/
auxp->timer = tpoll_timeout_relative(tp_global,
(callback_f) connect_unixsock_obj, unixsock, auxp->delay * 1000);
if (auxp->delay < UNIXSOCK_MAX_TIMEOUT) {
auxp->delay = MIN(auxp->delay * 2, UNIXSOCK_MAX_TIMEOUT);
}
return(-1);
}
static void reset_unixsock_delay(obj_t *unixsock)
{
/* Resets the unixsock obj's reconnect-delay after the connection has been up
* for the minimum length of time. This protects against spinning on
* reconnects when the connection immediately terminates.
*/
unixsock_obj_t *auxp;
assert(unixsock != NULL);
assert(is_unixsock_obj(unixsock));
auxp = &(unixsock->aux.unixsock);
/* Reset the timer ID since this routine is only invoked by a timer.
*/
auxp->timer = -1;
DPRINTF((15, "Reset [%s] reconnect delay\n", unixsock->name));
auxp->delay = UNIXSOCK_MIN_TIMEOUT;
return;
}
|