1 /* Copyright (C) 2009 Pierre-Marc Fournier
3 * This library is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU Lesser General Public
5 * License as published by the Free Software Foundation; either
6 * version 2.1 of the License, or (at your option) any later version.
8 * This library is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 #include <sys/types.h>
22 #include <sys/socket.h>
37 #define UNIX_PATH_MAX 108
41 /* FIXME: ustcomm blocks on message sending, which might be problematic in
42 * some cases. Fix the poll() usage so sends are buffered until they don't
46 //static void bt(void)
51 // result = backtrace(&buffer, 100);
52 // backtrace_symbols_fd(buffer, result, STDERR_FILENO);
55 static int mkdir_p(const char *path
, mode_t mode
)
63 tmp
= malloc(strlen(path
) + 1);
71 while (*path_p
!= '/') {
77 strncpy(tmp
, path
, path_p
- path
);
78 tmp
[path_p
-path
] = '\0';
79 if (tmp
[path_p
- path
- 1] != '/') {
80 result
= mkdir(tmp
, mode
);
82 if (!(errno
== EEXIST
|| errno
== EACCES
|| errno
== EROFS
)) {
83 /* Then this is a real error */
93 result
= mkdir(path
, mode
);
104 char *strdup_malloc(const char *s
)
111 retval
= (char *) malloc(strlen(s
)+1);
118 static int signal_process(pid_t pid
)
123 void ustcomm_init_connection(struct ustcomm_connection
*conn
)
125 conn
->recv_buf
= NULL
;
126 conn
->recv_buf_size
= 0;
127 conn
->recv_buf_alloc
= 0;
130 int pid_is_online(pid_t pid
) {
136 * @fd: file descriptor to send to
137 * @msg: a null-terminated string containing the message to send
141 * 0: connection closed
145 static int send_message_fd(int fd
, const char *msg
)
149 /* Send including the final \0 */
150 result
= patient_send(fd
, msg
, strlen(msg
)+1, MSG_NOSIGNAL
);
156 else if(result
== 0) {
160 DBG("sent message \"%s\"", msg
);
164 /* Called by an app to ask the consumer daemon to connect to it. */
166 int ustcomm_request_consumer(pid_t pid
, const char *channel
)
168 char path
[UNIX_PATH_MAX
];
172 struct ustcomm_connection conn
;
173 char *explicit_daemon_socket_path
;
175 explicit_daemon_socket_path
= getenv("UST_DAEMON_SOCKET");
176 if(explicit_daemon_socket_path
) {
177 /* user specified explicitly a socket path */
178 result
= snprintf(path
, UNIX_PATH_MAX
, "%s", explicit_daemon_socket_path
);
181 /* just use the default path */
182 result
= snprintf(path
, UNIX_PATH_MAX
, "%s/ustd", SOCK_DIR
);
185 if(result
>= UNIX_PATH_MAX
) {
186 ERR("string overflow allocating socket name");
190 asprintf(&msg
, "collect %d %s", pid
, channel
);
192 /* don't signal it because it's the daemon */
193 result
= ustcomm_connect_path(path
, &conn
, -1);
195 WARN("ustcomm_connect_path failed");
200 result
= ustcomm_send_request(&conn
, msg
, NULL
);
202 WARN("ustcomm_send_request failed");
208 ustcomm_disconnect(&conn
);
215 /* returns 1 to indicate a message was received
216 * returns 0 to indicate no message was received (end of stream)
217 * returns -1 to indicate an error
220 #define RECV_INCREMENT 1000
221 #define RECV_INITIAL_BUF_SIZE 10
223 static int recv_message_fd(int fd
, char **recv_buf
, int *recv_buf_size
, int *recv_buf_alloc
, char **msg
)
227 /* 1. Check if there is a message in the buf */
229 2.1 receive chunk and put it in buffer
230 2.2 process full message if there is one
231 -- while no message arrived
238 /* Search for full message in buffer */
239 for(i
=0; i
<*recv_buf_size
; i
++) {
240 if((*recv_buf
)[i
] == '\0') {
246 /* Process found message */
253 *msg
= strndup(*recv_buf
, i
);
255 /* Remove processed message from buffer */
256 newbuf
= (char *) malloc(*recv_buf_size
- (i
+1));
257 memcpy(newbuf
, *recv_buf
+ (i
+1), *recv_buf_size
- (i
+1));
260 *recv_buf_size
-= (i
+1);
261 *recv_buf_alloc
-= (i
+1);
266 /* Receive a chunk from the fd */
267 if(*recv_buf_alloc
- *recv_buf_size
< RECV_INCREMENT
) {
268 *recv_buf_alloc
+= RECV_INCREMENT
- (*recv_buf_alloc
- *recv_buf_size
);
269 *recv_buf
= (char *) realloc(*recv_buf
, *recv_buf_alloc
);
272 result
= recv(fd
, *recv_buf
+*recv_buf_size
, RECV_INCREMENT
, 0);
274 if(errno
== ECONNRESET
) {
285 *recv_buf_size
+= result
;
287 /* Go back to the beginning to check if there is a full message in the buffer */
290 DBG("received message \"%s\"", *recv_buf
);
296 static int recv_message_conn(struct ustcomm_connection
*conn
, char **msg
)
298 return recv_message_fd(conn
->fd
, &conn
->recv_buf
, &conn
->recv_buf_size
, &conn
->recv_buf_alloc
, msg
);
301 int ustcomm_send_reply(struct ustcomm_server
*server
, char *msg
, struct ustcomm_source
*src
)
305 result
= send_message_fd(src
->fd
, msg
);
307 ERR("error in send_message_fd");
314 /* Called after a fork. */
316 int ustcomm_close_all_connections(struct ustcomm_server
*server
)
318 struct ustcomm_connection
*conn
;
319 struct ustcomm_connection
*deletable_conn
= NULL
;
321 list_for_each_entry(conn
, &server
->connections
, list
) {
322 free(deletable_conn
);
323 deletable_conn
= conn
;
325 list_del(&conn
->list
);
331 /* @timeout: max blocking time in milliseconds, -1 means infinity
333 * returns 1 to indicate a message was received
334 * returns 0 to indicate no message was received
335 * returns -1 to indicate an error
338 int ustcomm_recv_message(struct ustcomm_server
*server
, char **msg
, struct ustcomm_source
*src
, int timeout
)
341 struct ustcomm_connection
**conn_table
;
342 struct ustcomm_connection
*conn
;
350 list_for_each_entry(conn
, &server
->connections
, list
) {
354 fds
= (struct pollfd
*) malloc(n_fds
* sizeof(struct pollfd
));
356 ERR("malloc returned NULL");
360 conn_table
= (struct ustcomm_connection
**) malloc(n_fds
* sizeof(struct ustcomm_connection
*));
361 if(conn_table
== NULL
) {
362 ERR("malloc returned NULL");
366 /* special idx 0 is for listening socket */
367 fds
[idx
].fd
= server
->listen_fd
;
368 fds
[idx
].events
= POLLIN
;
371 list_for_each_entry(conn
, &server
->connections
, list
) {
372 fds
[idx
].fd
= conn
->fd
;
373 fds
[idx
].events
= POLLIN
;
374 conn_table
[idx
] = conn
;
378 while((result
= poll(fds
, n_fds
, timeout
)) == -1 && errno
== EINTR
)
389 struct ustcomm_connection
*newconn
;
392 result
= newfd
= accept(server
->listen_fd
, NULL
, NULL
);
398 newconn
= (struct ustcomm_connection
*) malloc(sizeof(struct ustcomm_connection
));
399 if(newconn
== NULL
) {
400 ERR("malloc returned NULL");
404 ustcomm_init_connection(newconn
);
407 list_add(&newconn
->list
, &server
->connections
);
410 for(idx
=1; idx
<n_fds
; idx
++) {
411 if(fds
[idx
].revents
) {
412 retval
= recv_message_conn(conn_table
[idx
], msg
);
414 src
->fd
= fds
[idx
].fd
;
417 /* connection finished */
420 list_for_each_entry(conn
, &server
->connections
, list
) {
421 if(conn
->fd
== fds
[idx
].fd
) {
422 list_del(&conn
->list
);
428 goto free_fds_return
;
441 int ustcomm_ustd_recv_message(struct ustcomm_ustd
*ustd
, char **msg
, struct ustcomm_source
*src
, int timeout
)
443 return ustcomm_recv_message(&ustd
->server
, msg
, src
, timeout
);
446 int ustcomm_app_recv_message(struct ustcomm_app
*app
, char **msg
, struct ustcomm_source
*src
, int timeout
)
448 return ustcomm_recv_message(&app
->server
, msg
, src
, timeout
);
451 /* This removes src from the list of active connections of app.
454 int ustcomm_app_detach_client(struct ustcomm_app
*app
, struct ustcomm_source
*src
)
456 struct ustcomm_server
*server
= (struct ustcomm_server
*)app
;
457 struct ustcomm_connection
*conn
;
459 list_for_each_entry(conn
, &server
->connections
, list
) {
460 if(conn
->fd
== src
->fd
) {
461 list_del(&conn
->list
);
471 static int init_named_socket(const char *name
, char **path_out
)
476 struct sockaddr_un addr
;
478 result
= fd
= socket(PF_UNIX
, SOCK_STREAM
, 0);
484 addr
.sun_family
= AF_UNIX
;
486 strncpy(addr
.sun_path
, name
, UNIX_PATH_MAX
);
487 addr
.sun_path
[UNIX_PATH_MAX
-1] = '\0';
489 result
= access(name
, F_OK
);
492 result
= unlink(name
);
494 PERROR("unlink of socket file");
497 WARN("socket already exists; overwriting");
500 result
= bind(fd
, (struct sockaddr
*)&addr
, sizeof(addr
));
506 result
= listen(fd
, 1);
513 *path_out
= strdup(addr
.sun_path
);
526 * 0: Success, but no reply because recv() returned 0
530 * On error, the error message is printed, except on
531 * ECONNRESET, which is normal when the application dies.
534 int ustcomm_send_request(struct ustcomm_connection
*conn
, const char *req
, char **reply
)
538 /* Send including the final \0 */
539 result
= send_message_fd(conn
->fd
, req
);
546 result
= recv_message_conn(conn
, reply
);
550 else if(result
== 0) {
557 int ustcomm_connect_path(const char *path
, struct ustcomm_connection
*conn
, pid_t signalpid
)
561 struct sockaddr_un addr
;
563 ustcomm_init_connection(conn
);
565 result
= fd
= socket(PF_UNIX
, SOCK_STREAM
, 0);
571 addr
.sun_family
= AF_UNIX
;
573 result
= snprintf(addr
.sun_path
, UNIX_PATH_MAX
, "%s", path
);
574 if(result
>= UNIX_PATH_MAX
) {
575 ERR("string overflow allocating socket name");
580 result
= signal_process(signalpid
);
582 ERR("could not signal process");
587 result
= connect(fd
, (struct sockaddr
*)&addr
, sizeof(addr
));
589 PERROR("connect (path=%s)", path
);
598 int ustcomm_disconnect(struct ustcomm_connection
*conn
)
600 return close(conn
->fd
);
603 int ustcomm_connect_app(pid_t pid
, struct ustcomm_connection
*conn
)
606 char path
[UNIX_PATH_MAX
];
609 result
= snprintf(path
, UNIX_PATH_MAX
, "%s/%d", SOCK_DIR
, pid
);
610 if(result
>= UNIX_PATH_MAX
) {
611 ERR("string overflow allocating socket name");
615 return ustcomm_connect_path(path
, conn
, pid
);
618 static int ensure_dir_exists(const char *dir
)
626 result
= stat(dir
, &st
);
627 if(result
== -1 && errno
!= ENOENT
) {
630 else if(result
== -1) {
634 result
= mkdir_p(dir
, 0777);
636 ERR("executing in recursive creation of directory %s", dir
);
644 /* Called by an application to initialize its server so daemons can
648 int ustcomm_init_app(pid_t pid
, struct ustcomm_app
*handle
)
653 result
= asprintf(&name
, "%s/%d", SOCK_DIR
, (int)pid
);
654 if(result
>= UNIX_PATH_MAX
) {
655 ERR("string overflow allocating socket name");
659 result
= ensure_dir_exists(SOCK_DIR
);
661 ERR("Unable to create socket directory %s", SOCK_DIR
);
665 handle
->server
.listen_fd
= init_named_socket(name
, &(handle
->server
.socketpath
));
666 if(handle
->server
.listen_fd
< 0) {
667 ERR("Error initializing named socket (%s). Check that directory exists and that it is writable.", name
);
672 INIT_LIST_HEAD(&handle
->server
.connections
);
681 void ustcomm_free_app(struct ustcomm_app
*app
)
684 result
= close(app
->server
.listen_fd
);
691 /* Used by the daemon to initialize its server so applications
695 int ustcomm_init_ustd(struct ustcomm_ustd
*handle
, const char *sock_path
)
701 asprintf(&name
, "%s", sock_path
);
706 /* Only check if socket dir exists if we are using the default directory */
707 result
= ensure_dir_exists(SOCK_DIR
);
709 ERR("Unable to create socket directory %s", SOCK_DIR
);
713 asprintf(&name
, "%s/%s", SOCK_DIR
, "ustd");
716 handle
->server
.listen_fd
= init_named_socket(name
, &handle
->server
.socketpath
);
717 if(handle
->server
.listen_fd
< 0) {
718 ERR("error initializing named socket at %s", name
);
723 INIT_LIST_HEAD(&handle
->server
.connections
);
731 void ustcomm_fini_app(struct ustcomm_app
*handle
)
737 result
= stat(handle
->server
.socketpath
, &st
);
739 PERROR("stat (%s)", handle
->server
.socketpath
);
743 /* Paranoid check before deleting. */
744 result
= S_ISSOCK(st
.st_mode
);
746 ERR("The socket we are about to delete is not a socket.");
750 result
= unlink(handle
->server
.socketpath
);
756 static const char *find_tok(const char *str
)
768 static const char *find_sep(const char *str
)
780 int nth_token_is(const char *str
, const char *token
, int tok_no
)
786 for(i
=0; i
<=tok_no
; i
++) {
800 if(end
-start
!= strlen(token
))
803 if(strncmp(start
, token
, end
-start
))
809 char *nth_token(const char *str
, int tok_no
)
811 static char *retval
= NULL
;
816 for(i
=0; i
<=tok_no
; i
++) {
835 asprintf(&retval
, "%.*s", (int)(end
-start
), start
);