]> git.sur5r.net Git - i3/i3/blob - src/ipc.c
add an IPC request to get the bar configuration (by ID)
[i3/i3] / src / ipc.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  *
6  * © 2009-2011 Michael Stapelberg and contributors
7  *
8  * See file LICENSE for license information.
9  *
10  * ipc.c: Everything about the UNIX domain sockets for IPC
11  *
12  */
13 #include <sys/socket.h>
14 #include <sys/un.h>
15 #include <fcntl.h>
16 #include <libgen.h>
17 #include <ev.h>
18 #include <yajl/yajl_gen.h>
19 #include <yajl/yajl_parse.h>
20 #include <yajl/yajl_version.h>
21
22 #include "all.h"
23
24 char *current_socketpath = NULL;
25
26 /* Shorter names for all those yajl_gen_* functions */
27 #define y(x, ...) yajl_gen_ ## x (gen, ##__VA_ARGS__)
28 #define ystr(str) yajl_gen_string(gen, (unsigned char*)str, strlen(str))
29
30 TAILQ_HEAD(ipc_client_head, ipc_client) all_clients = TAILQ_HEAD_INITIALIZER(all_clients);
31
32 /*
33  * Puts the given socket file descriptor into non-blocking mode or dies if
34  * setting O_NONBLOCK failed. Non-blocking sockets are a good idea for our
35  * IPC model because we should by no means block the window manager.
36  *
37  */
38 static void set_nonblock(int sockfd) {
39     int flags = fcntl(sockfd, F_GETFL, 0);
40     flags |= O_NONBLOCK;
41     if (fcntl(sockfd, F_SETFL, flags) < 0)
42         err(-1, "Could not set O_NONBLOCK");
43 }
44
45 /*
46  * Emulates mkdir -p (creates any missing folders)
47  *
48  */
49 static bool mkdirp(const char *path) {
50     if (mkdir(path, S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH) == 0)
51         return true;
52     if (errno != ENOENT) {
53         ELOG("mkdir(%s) failed: %s\n", path, strerror(errno));
54         return false;
55     }
56     char *copy = strdup(path);
57     /* strip trailing slashes, if any */
58     while (copy[strlen(copy)-1] == '/')
59         copy[strlen(copy)-1] = '\0';
60
61     char *sep = strrchr(copy, '/');
62     if (sep == NULL) {
63         FREE(copy);
64         return false;
65     }
66     *sep = '\0';
67     bool result = false;
68     if (mkdirp(copy))
69         result = mkdirp(path);
70     free(copy);
71
72     return result;
73 }
74
75 /*
76  * Sends the specified event to all IPC clients which are currently connected
77  * and subscribed to this kind of event.
78  *
79  */
80 void ipc_send_event(const char *event, uint32_t message_type, const char *payload) {
81     ipc_client *current;
82     TAILQ_FOREACH(current, &all_clients, clients) {
83         /* see if this client is interested in this event */
84         bool interested = false;
85         for (int i = 0; i < current->num_events; i++) {
86             if (strcasecmp(current->events[i], event) != 0)
87                 continue;
88             interested = true;
89             break;
90         }
91         if (!interested)
92             continue;
93
94         ipc_send_message(current->fd, strlen(payload), message_type, (const uint8_t*)payload);
95     }
96 }
97
98 /*
99  * Calls shutdown() on each socket and closes it. This function to be called
100  * when exiting or restarting only!
101  *
102  */
103 void ipc_shutdown() {
104     ipc_client *current;
105     TAILQ_FOREACH(current, &all_clients, clients) {
106         shutdown(current->fd, SHUT_RDWR);
107         close(current->fd);
108     }
109 }
110
111 /*
112  * Executes the command and returns whether it could be successfully parsed
113  * or not (at the moment, always returns true).
114  *
115  */
116 IPC_HANDLER(command) {
117     /* To get a properly terminated buffer, we copy
118      * message_size bytes out of the buffer */
119     char *command = scalloc(message_size + 1);
120     strncpy(command, (const char*)message, message_size);
121     LOG("IPC: received: *%s*\n", command);
122     char *reply = parse_cmd((const char*)command);
123     char *save_reply = reply;
124     free(command);
125
126     /* If no reply was provided, we just use the default success message */
127     if (reply == NULL)
128         reply = "{\"success\":true}";
129     ipc_send_message(fd, strlen(reply), I3_IPC_REPLY_TYPE_COMMAND, (const uint8_t*)reply);
130
131     FREE(save_reply);
132 }
133
134 static void dump_rect(yajl_gen gen, const char *name, Rect r) {
135     ystr(name);
136     y(map_open);
137     ystr("x");
138     y(integer, r.x);
139     ystr("y");
140     y(integer, r.y);
141     ystr("width");
142     y(integer, r.width);
143     ystr("height");
144     y(integer, r.height);
145     y(map_close);
146 }
147
148 void dump_node(yajl_gen gen, struct Con *con, bool inplace_restart) {
149     y(map_open);
150     ystr("id");
151     y(integer, (long int)con);
152
153     ystr("type");
154     y(integer, con->type);
155
156     ystr("orientation");
157     switch (con->orientation) {
158         case NO_ORIENTATION:
159             ystr("none");
160             break;
161         case HORIZ:
162             ystr("horizontal");
163             break;
164         case VERT:
165             ystr("vertical");
166             break;
167     }
168
169     ystr("percent");
170     if (con->percent == 0.0)
171         y(null);
172     else y(double, con->percent);
173
174     ystr("urgent");
175     y(bool, con->urgent);
176
177     if (con->mark != NULL) {
178         ystr("mark");
179         ystr(con->mark);
180     }
181
182     ystr("focused");
183     y(bool, (con == focused));
184
185     ystr("layout");
186     switch (con->layout) {
187         case L_DEFAULT:
188             ystr("default");
189             break;
190         case L_STACKED:
191             ystr("stacked");
192             break;
193         case L_TABBED:
194             ystr("tabbed");
195             break;
196         case L_DOCKAREA:
197             ystr("dockarea");
198             break;
199         case L_OUTPUT:
200             ystr("output");
201             break;
202     }
203
204     ystr("border");
205     switch (con->border_style) {
206         case BS_NORMAL:
207             ystr("normal");
208             break;
209         case BS_NONE:
210             ystr("none");
211             break;
212         case BS_1PIXEL:
213             ystr("1pixel");
214             break;
215     }
216
217     dump_rect(gen, "rect", con->rect);
218     dump_rect(gen, "window_rect", con->window_rect);
219     dump_rect(gen, "geometry", con->geometry);
220
221     ystr("name");
222     if (con->window && con->window->name_json)
223         ystr(con->window->name_json);
224     else
225         ystr(con->name);
226
227     if (con->type == CT_WORKSPACE) {
228         ystr("num");
229         y(integer, con->num);
230     }
231
232     ystr("window");
233     if (con->window)
234         y(integer, con->window->id);
235     else y(null);
236
237     ystr("nodes");
238     y(array_open);
239     Con *node;
240     if (con->type != CT_DOCKAREA || !inplace_restart) {
241         TAILQ_FOREACH(node, &(con->nodes_head), nodes) {
242             dump_node(gen, node, inplace_restart);
243         }
244     }
245     y(array_close);
246
247     ystr("floating_nodes");
248     y(array_open);
249     TAILQ_FOREACH(node, &(con->floating_head), floating_windows) {
250         dump_node(gen, node, inplace_restart);
251     }
252     y(array_close);
253
254     ystr("focus");
255     y(array_open);
256     TAILQ_FOREACH(node, &(con->focus_head), focused) {
257         y(integer, (long int)node);
258     }
259     y(array_close);
260
261     ystr("fullscreen_mode");
262     y(integer, con->fullscreen_mode);
263
264     ystr("swallows");
265     y(array_open);
266     Match *match;
267     TAILQ_FOREACH(match, &(con->swallow_head), matches) {
268         if (match->dock != -1) {
269             y(map_open);
270             ystr("dock");
271             y(integer, match->dock);
272             ystr("insert_where");
273             y(integer, match->insert_where);
274             y(map_close);
275         }
276
277         /* TODO: the other swallow keys */
278     }
279
280     if (inplace_restart) {
281         if (con->window != NULL) {
282             y(map_open);
283             ystr("id");
284             y(integer, con->window->id);
285             y(map_close);
286         }
287     }
288     y(array_close);
289
290     y(map_close);
291 }
292
293 IPC_HANDLER(tree) {
294     setlocale(LC_NUMERIC, "C");
295 #if YAJL_MAJOR >= 2
296     yajl_gen gen = yajl_gen_alloc(NULL);
297 #else
298     yajl_gen gen = yajl_gen_alloc(NULL, NULL);
299 #endif
300     dump_node(gen, croot, false);
301     setlocale(LC_NUMERIC, "");
302
303     const unsigned char *payload;
304 #if YAJL_MAJOR >= 2
305     size_t length;
306 #else
307     unsigned int length;
308 #endif
309     y(get_buf, &payload, &length);
310
311     ipc_send_message(fd, length, I3_IPC_REPLY_TYPE_TREE, payload);
312     y(free);
313 }
314
315
316 /*
317  * Formats the reply message for a GET_WORKSPACES request and sends it to the
318  * client
319  *
320  */
321 IPC_HANDLER(get_workspaces) {
322 #if YAJL_MAJOR >= 2
323     yajl_gen gen = yajl_gen_alloc(NULL);
324 #else
325     yajl_gen gen = yajl_gen_alloc(NULL, NULL);
326 #endif
327     y(array_open);
328
329     Con *focused_ws = con_get_workspace(focused);
330
331     Con *output;
332     TAILQ_FOREACH(output, &(croot->nodes_head), nodes) {
333         Con *ws;
334         TAILQ_FOREACH(ws, &(output_get_content(output)->nodes_head), nodes) {
335             assert(ws->type == CT_WORKSPACE);
336             y(map_open);
337
338             ystr("num");
339             if (ws->num == -1)
340                 y(null);
341             else y(integer, ws->num);
342
343             ystr("name");
344             ystr(ws->name);
345
346             ystr("visible");
347             y(bool, workspace_is_visible(ws));
348
349             ystr("focused");
350             y(bool, ws == focused_ws);
351
352             ystr("rect");
353             y(map_open);
354             ystr("x");
355             y(integer, ws->rect.x);
356             ystr("y");
357             y(integer, ws->rect.y);
358             ystr("width");
359             y(integer, ws->rect.width);
360             ystr("height");
361             y(integer, ws->rect.height);
362             y(map_close);
363
364             ystr("output");
365             ystr(output->name);
366
367             ystr("urgent");
368             y(bool, ws->urgent);
369
370             y(map_close);
371         }
372     }
373
374     y(array_close);
375
376     const unsigned char *payload;
377 #if YAJL_MAJOR >= 2
378     size_t length;
379 #else
380     unsigned int length;
381 #endif
382     y(get_buf, &payload, &length);
383
384     ipc_send_message(fd, length, I3_IPC_REPLY_TYPE_WORKSPACES, payload);
385     y(free);
386 }
387
388 /*
389  * Formats the reply message for a GET_OUTPUTS request and sends it to the
390  * client
391  *
392  */
393 IPC_HANDLER(get_outputs) {
394 #if YAJL_MAJOR >= 2
395     yajl_gen gen = yajl_gen_alloc(NULL);
396 #else
397     yajl_gen gen = yajl_gen_alloc(NULL, NULL);
398 #endif
399     y(array_open);
400
401     Output *output;
402     TAILQ_FOREACH(output, &outputs, outputs) {
403         y(map_open);
404
405         ystr("name");
406         ystr(output->name);
407
408         ystr("active");
409         y(bool, output->active);
410
411         ystr("rect");
412         y(map_open);
413         ystr("x");
414         y(integer, output->rect.x);
415         ystr("y");
416         y(integer, output->rect.y);
417         ystr("width");
418         y(integer, output->rect.width);
419         ystr("height");
420         y(integer, output->rect.height);
421         y(map_close);
422
423         ystr("current_workspace");
424         Con *ws = NULL;
425         if (output->con && (ws = con_get_fullscreen_con(output->con, CF_OUTPUT)))
426             ystr(ws->name);
427         else y(null);
428
429         y(map_close);
430     }
431
432     y(array_close);
433
434     const unsigned char *payload;
435 #if YAJL_MAJOR >= 2
436     size_t length;
437 #else
438     unsigned int length;
439 #endif
440     y(get_buf, &payload, &length);
441
442     ipc_send_message(fd, length, I3_IPC_REPLY_TYPE_OUTPUTS, payload);
443     y(free);
444 }
445
446 /*
447  * Formats the reply message for a GET_MARKS request and sends it to the
448  * client
449  *
450  */
451 IPC_HANDLER(get_marks) {
452 #if YAJL_MAJOR >= 2
453     yajl_gen gen = yajl_gen_alloc(NULL);
454 #else
455     yajl_gen gen = yajl_gen_alloc(NULL, NULL);
456 #endif
457     y(array_open);
458
459     Con *con;
460     TAILQ_FOREACH(con, &all_cons, all_cons)
461         if (con->mark != NULL)
462             ystr(con->mark);
463
464     y(array_close);
465
466     const unsigned char *payload;
467 #if YAJL_MAJOR >= 2
468     size_t length;
469 #else
470     unsigned int length;
471 #endif
472     y(get_buf, &payload, &length);
473
474     ipc_send_message(fd, length, I3_IPC_REPLY_TYPE_MARKS, payload);
475     y(free);
476 }
477
478 /*
479  * Formats the reply message for a GET_BAR_CONFIG request and sends it to the
480  * client.
481  *
482  */
483 IPC_HANDLER(get_bar_config) {
484     /* To get a properly terminated buffer, we copy
485      * message_size bytes out of the buffer */
486     char *bar_id = scalloc(message_size + 1);
487     strncpy(bar_id, (const char*)message, message_size);
488     LOG("IPC: looking for config for bar ID \"%s\"\n", bar_id);
489     Barconfig *current, *config = NULL;
490     SLIST_FOREACH(current, &barconfigs, configs) {
491         if (strcmp(current->id, bar_id) != 0)
492             continue;
493
494         config = current;
495         break;
496     }
497
498 #if YAJL_MAJOR >= 2
499     yajl_gen gen = yajl_gen_alloc(NULL);
500 #else
501     yajl_gen gen = yajl_gen_alloc(NULL, NULL);
502 #endif
503
504     y(map_open);
505
506     if (!config) {
507         /* If we did not find a config for the given ID, the reply will contain
508          * a null 'id' field. */
509         ystr("id");
510         y(null);
511     } else {
512         ystr("id");
513         ystr(config->id);
514
515         if (config->num_outputs > 0) {
516             ystr("outputs");
517             y(array_open);
518             for (int c = 0; c < config->num_outputs; c++)
519                 ystr(config->outputs[c]);
520             y(array_close);
521         }
522
523 #define YSTR_IF_SET(name) \
524         do { \
525             if (config->name) { \
526                 ystr( # name); \
527                 ystr(config->name); \
528             } \
529         } while (0)
530
531         YSTR_IF_SET(tray_output);
532         YSTR_IF_SET(socket_path);
533
534         ystr("mode");
535         if (config->mode == M_HIDE)
536             ystr("hide");
537         else ystr("dock");
538
539         ystr("position");
540         if (config->position == P_BOTTOM)
541             ystr("bottom");
542         else ystr("top");
543
544         YSTR_IF_SET(status_command);
545         YSTR_IF_SET(font);
546
547         ystr("workspace_buttons");
548         y(bool, !config->hide_workspace_buttons);
549
550         ystr("verbose");
551         y(bool, config->verbose);
552
553 #undef YSTR_IF_SET
554 #define YSTR_IF_SET(name) \
555         do { \
556             if (config->colors.name) { \
557                 ystr( # name); \
558                 ystr(config->colors.name); \
559             } \
560         } while (0)
561
562         ystr("colors");
563         y(map_open);
564         YSTR_IF_SET(background);
565         YSTR_IF_SET(statusline);
566         YSTR_IF_SET(focused_workspace_text);
567         YSTR_IF_SET(focused_workspace_bg);
568         YSTR_IF_SET(active_workspace_text);
569         YSTR_IF_SET(active_workspace_bg);
570         YSTR_IF_SET(inactive_workspace_text);
571         YSTR_IF_SET(inactive_workspace_bg);
572         YSTR_IF_SET(urgent_workspace_text);
573         YSTR_IF_SET(urgent_workspace_bg);
574
575 #undef YSTR_IF_SET
576     }
577
578     y(map_close);
579
580     const unsigned char *payload;
581 #if YAJL_MAJOR >= 2
582     size_t length;
583 #else
584     unsigned int length;
585 #endif
586     y(get_buf, &payload, &length);
587
588     ipc_send_message(fd, length, I3_IPC_REPLY_TYPE_BAR_CONFIG, payload);
589     y(free);
590 }
591
592 /*
593  * Callback for the YAJL parser (will be called when a string is parsed).
594  *
595  */
596 #if YAJL_MAJOR < 2
597 static int add_subscription(void *extra, const unsigned char *s,
598                             unsigned int len) {
599 #else
600 static int add_subscription(void *extra, const unsigned char *s,
601                             size_t len) {
602 #endif
603     ipc_client *client = extra;
604
605     DLOG("should add subscription to extra %p, sub %.*s\n", client, len, s);
606     int event = client->num_events;
607
608     client->num_events++;
609     client->events = realloc(client->events, client->num_events * sizeof(char*));
610     /* We copy the string because it is not null-terminated and strndup()
611      * is missing on some BSD systems */
612     client->events[event] = scalloc(len+1);
613     memcpy(client->events[event], s, len);
614
615     DLOG("client is now subscribed to:\n");
616     for (int i = 0; i < client->num_events; i++)
617         DLOG("event %s\n", client->events[i]);
618     DLOG("(done)\n");
619
620     return 1;
621 }
622
623 /*
624  * Subscribes this connection to the event types which were given as a JSON
625  * serialized array in the payload field of the message.
626  *
627  */
628 IPC_HANDLER(subscribe) {
629     yajl_handle p;
630     yajl_callbacks callbacks;
631     yajl_status stat;
632     ipc_client *current, *client = NULL;
633
634     /* Search the ipc_client structure for this connection */
635     TAILQ_FOREACH(current, &all_clients, clients) {
636         if (current->fd != fd)
637             continue;
638
639         client = current;
640         break;
641     }
642
643     if (client == NULL) {
644         ELOG("Could not find ipc_client data structure for fd %d\n", fd);
645         return;
646     }
647
648     /* Setup the JSON parser */
649     memset(&callbacks, 0, sizeof(yajl_callbacks));
650     callbacks.yajl_string = add_subscription;
651
652 #if YAJL_MAJOR >= 2
653     p = yajl_alloc(&callbacks, NULL, (void*)client);
654 #else
655     p = yajl_alloc(&callbacks, NULL, NULL, (void*)client);
656 #endif
657     stat = yajl_parse(p, (const unsigned char*)message, message_size);
658     if (stat != yajl_status_ok) {
659         unsigned char *err;
660         err = yajl_get_error(p, true, (const unsigned char*)message,
661                              message_size);
662         ELOG("YAJL parse error: %s\n", err);
663         yajl_free_error(p, err);
664
665         const char *reply = "{\"success\":false}";
666         ipc_send_message(fd, strlen(reply), I3_IPC_REPLY_TYPE_SUBSCRIBE, (const uint8_t*)reply);
667         yajl_free(p);
668         return;
669     }
670     yajl_free(p);
671     const char *reply = "{\"success\":true}";
672     ipc_send_message(fd, strlen(reply), I3_IPC_REPLY_TYPE_SUBSCRIBE, (const uint8_t*)reply);
673 }
674
675 /* The index of each callback function corresponds to the numeric
676  * value of the message type (see include/i3/ipc.h) */
677 handler_t handlers[7] = {
678     handle_command,
679     handle_get_workspaces,
680     handle_subscribe,
681     handle_get_outputs,
682     handle_tree,
683     handle_get_marks,
684     handle_get_bar_config
685 };
686
687 /*
688  * Handler for activity on a client connection, receives a message from a
689  * client.
690  *
691  * For now, the maximum message size is 2048. I’m not sure for what the
692  * IPC interface will be used in the future, thus I’m not implementing a
693  * mechanism for arbitrarily long messages, as it seems like overkill
694  * at the moment.
695  *
696  */
697 static void ipc_receive_message(EV_P_ struct ev_io *w, int revents) {
698     char buf[2048];
699     int n = read(w->fd, buf, sizeof(buf));
700
701     /* On error or an empty message, we close the connection */
702     if (n <= 0) {
703 #if 0
704         /* FIXME: I get these when closing a client socket,
705          * therefore we just treat them as an error. Is this
706          * correct? */
707         if (errno == EAGAIN || errno == EWOULDBLOCK)
708                 return;
709 #endif
710
711         /* If not, there was some kind of error. We don’t bother
712          * and close the connection */
713         close(w->fd);
714
715         /* Delete the client from the list of clients */
716         ipc_client *current;
717         TAILQ_FOREACH(current, &all_clients, clients) {
718             if (current->fd != w->fd)
719                 continue;
720
721             for (int i = 0; i < current->num_events; i++)
722                 free(current->events[i]);
723             /* We can call TAILQ_REMOVE because we break out of the
724              * TAILQ_FOREACH afterwards */
725             TAILQ_REMOVE(&all_clients, current, clients);
726             break;
727         }
728
729         ev_io_stop(EV_A_ w);
730
731         DLOG("IPC: client disconnected\n");
732         return;
733     }
734
735     /* Terminate the message correctly */
736     buf[n] = '\0';
737
738     /* Check if the message starts with the i3 IPC magic code */
739     if (n < strlen(I3_IPC_MAGIC)) {
740         DLOG("IPC: message too short, ignoring\n");
741         return;
742     }
743
744     if (strncmp(buf, I3_IPC_MAGIC, strlen(I3_IPC_MAGIC)) != 0) {
745         DLOG("IPC: message does not start with the IPC magic\n");
746         return;
747     }
748
749     uint8_t *message = (uint8_t*)buf;
750     while (n > 0) {
751         DLOG("IPC: n = %d\n", n);
752         message += strlen(I3_IPC_MAGIC);
753         n -= strlen(I3_IPC_MAGIC);
754
755         /* The next 32 bit after the magic are the message size */
756         uint32_t message_size;
757         memcpy(&message_size, (uint32_t*)message, sizeof(uint32_t));
758         message += sizeof(uint32_t);
759         n -= sizeof(uint32_t);
760
761         if (message_size > n) {
762             DLOG("IPC: Either the message size was wrong or the message was not read completely, dropping\n");
763             return;
764         }
765
766         /* The last 32 bits of the header are the message type */
767         uint32_t message_type;
768         memcpy(&message_type, (uint32_t*)message, sizeof(uint32_t));
769         message += sizeof(uint32_t);
770         n -= sizeof(uint32_t);
771
772         if (message_type >= (sizeof(handlers) / sizeof(handler_t)))
773             DLOG("Unhandled message type: %d\n", message_type);
774         else {
775             handler_t h = handlers[message_type];
776             h(w->fd, message, n, message_size, message_type);
777         }
778         n -= message_size;
779         message += message_size;
780     }
781 }
782
783 /*
784  * Handler for activity on the listening socket, meaning that a new client
785  * has just connected and we should accept() him. Sets up the event handler
786  * for activity on the new connection and inserts the file descriptor into
787  * the list of clients.
788  *
789  */
790 void ipc_new_client(EV_P_ struct ev_io *w, int revents) {
791     struct sockaddr_un peer;
792     socklen_t len = sizeof(struct sockaddr_un);
793     int client;
794     if ((client = accept(w->fd, (struct sockaddr*)&peer, &len)) < 0) {
795         if (errno == EINTR)
796             return;
797         else perror("accept()");
798         return;
799     }
800
801     set_nonblock(client);
802
803     struct ev_io *package = scalloc(sizeof(struct ev_io));
804     ev_io_init(package, ipc_receive_message, client, EV_READ);
805     ev_io_start(EV_A_ package);
806
807     DLOG("IPC: new client connected on fd %d\n", w->fd);
808
809     ipc_client *new = scalloc(sizeof(ipc_client));
810     new->fd = client;
811
812     TAILQ_INSERT_TAIL(&all_clients, new, clients);
813 }
814
815 /*
816  * Creates the UNIX domain socket at the given path, sets it to non-blocking
817  * mode, bind()s and listen()s on it.
818  *
819  */
820 int ipc_create_socket(const char *filename) {
821     int sockfd;
822
823     FREE(current_socketpath);
824
825     char *resolved = resolve_tilde(filename);
826     DLOG("Creating IPC-socket at %s\n", resolved);
827     char *copy = sstrdup(resolved);
828     const char *dir = dirname(copy);
829     if (!path_exists(dir))
830         mkdirp(dir);
831     free(copy);
832
833     /* Unlink the unix domain socket before */
834     unlink(resolved);
835
836     if ((sockfd = socket(AF_LOCAL, SOCK_STREAM, 0)) < 0) {
837         perror("socket()");
838         free(resolved);
839         return -1;
840     }
841
842     (void)fcntl(sockfd, F_SETFD, FD_CLOEXEC);
843
844     struct sockaddr_un addr;
845     memset(&addr, 0, sizeof(struct sockaddr_un));
846     addr.sun_family = AF_LOCAL;
847     strncpy(addr.sun_path, resolved, sizeof(addr.sun_path) - 1);
848     if (bind(sockfd, (struct sockaddr*)&addr, sizeof(struct sockaddr_un)) < 0) {
849         perror("bind()");
850         free(resolved);
851         return -1;
852     }
853
854     set_nonblock(sockfd);
855
856     if (listen(sockfd, 5) < 0) {
857         perror("listen()");
858         free(resolved);
859         return -1;
860     }
861
862     current_socketpath = resolved;
863     return sockfd;
864 }