dcd6079c9b
fixes #4117
71 lines
1.7 KiB
C
71 lines
1.7 KiB
C
/*
|
|
* vim:ts=4:sw=4:expandtab
|
|
*
|
|
* i3 - an improved dynamic tiling window manager
|
|
* © 2009 Michael Stapelberg and contributors (see also: LICENSE)
|
|
*
|
|
*/
|
|
#include "libi3.h"
|
|
|
|
#include <unistd.h>
|
|
#include <libgen.h>
|
|
#include <err.h>
|
|
#include <fcntl.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <sys/socket.h>
|
|
#include <sys/un.h>
|
|
|
|
/*
|
|
* Creates the UNIX domain socket at the given path, sets it to non-blocking
|
|
* mode, bind()s and listen()s on it.
|
|
*
|
|
* The full path to the socket is stored in the char* that out_socketpath points
|
|
* to.
|
|
*
|
|
*/
|
|
int create_socket(const char *filename, char **out_socketpath) {
|
|
char *resolved = resolve_tilde(filename);
|
|
DLOG("Creating UNIX socket at %s\n", resolved);
|
|
char *copy = sstrdup(resolved);
|
|
const char *dir = dirname(copy);
|
|
if (!path_exists(dir)) {
|
|
mkdirp(dir, DEFAULT_DIR_MODE);
|
|
}
|
|
free(copy);
|
|
|
|
/* Unlink the unix domain socket before */
|
|
unlink(resolved);
|
|
|
|
int sockfd = socket(AF_LOCAL, SOCK_STREAM, 0);
|
|
if (sockfd < 0) {
|
|
perror("socket()");
|
|
free(resolved);
|
|
return -1;
|
|
}
|
|
|
|
(void)fcntl(sockfd, F_SETFD, FD_CLOEXEC);
|
|
|
|
struct sockaddr_un addr;
|
|
memset(&addr, 0, sizeof(struct sockaddr_un));
|
|
addr.sun_family = AF_LOCAL;
|
|
strncpy(addr.sun_path, resolved, sizeof(addr.sun_path) - 1);
|
|
if (bind(sockfd, (struct sockaddr *)&addr, sizeof(struct sockaddr_un)) < 0) {
|
|
perror("bind()");
|
|
free(resolved);
|
|
return -1;
|
|
}
|
|
|
|
set_nonblock(sockfd);
|
|
|
|
if (listen(sockfd, 5) < 0) {
|
|
perror("listen()");
|
|
free(resolved);
|
|
return -1;
|
|
}
|
|
|
|
free(*out_socketpath);
|
|
*out_socketpath = resolved;
|
|
return sockfd;
|
|
}
|