Commit | Line | Data |
---|---|---|
0d37f2bc DG |
1 | /* |
2 | * Copyright (C) 2012 - David Goulet <dgoulet@efficios.com> | |
3 | * | |
4 | * This program is free software; you can redistribute it and/or modify it | |
5 | * under the terms of the GNU General Public License, version 2 only, as | |
6 | * published by the Free Software Foundation. | |
7 | * | |
8 | * This program is distributed in the hope that it will be useful, but WITHOUT | |
9 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
10 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | |
11 | * more details. | |
12 | * | |
13 | * You should have received a copy of the GNU General Public License along with | |
14 | * this program; if not, write to the Free Software Foundation, Inc., 51 | |
15 | * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
16 | */ | |
17 | ||
18 | #ifndef _LTTCOMM_UNIX_H | |
19 | #define _LTTCOMM_UNIX_H | |
20 | ||
21 | #define _GNU_SOURCE | |
22 | #include <limits.h> | |
23 | #include <sys/un.h> | |
24 | ||
25 | #include <common/compat/socket.h> | |
8d9eb6d8 | 26 | #include <common/macros.h> |
0d37f2bc DG |
27 | |
28 | #include "sessiond-comm.h" | |
29 | ||
8d9eb6d8 JG |
30 | LTTNG_HIDDEN |
31 | int lttcomm_create_unix_sock(const char *pathname); | |
32 | LTTNG_HIDDEN | |
33 | int lttcomm_create_anon_unix_socketpair(int *fds); | |
34 | LTTNG_HIDDEN | |
35 | int lttcomm_connect_unix_sock(const char *pathname); | |
36 | LTTNG_HIDDEN | |
37 | int lttcomm_accept_unix_sock(int sock); | |
38 | LTTNG_HIDDEN | |
39 | int lttcomm_listen_unix_sock(int sock); | |
40 | LTTNG_HIDDEN | |
41 | int lttcomm_close_unix_sock(int sock); | |
0d37f2bc DG |
42 | |
43 | /* Send a message accompanied by fd(s) over a unix socket. */ | |
8d9eb6d8 JG |
44 | LTTNG_HIDDEN |
45 | ssize_t lttcomm_send_fds_unix_sock(int sock, int *fds, size_t nb_fd); | |
0d37f2bc | 46 | /* Recv a message accompanied by fd(s) from a unix socket */ |
8d9eb6d8 JG |
47 | LTTNG_HIDDEN |
48 | ssize_t lttcomm_recv_fds_unix_sock(int sock, int *fds, size_t nb_fd); | |
0d37f2bc | 49 | |
8d9eb6d8 JG |
50 | LTTNG_HIDDEN |
51 | ssize_t lttcomm_recv_unix_sock(int sock, void *buf, size_t len); | |
52 | LTTNG_HIDDEN | |
53 | ssize_t lttcomm_send_unix_sock(int sock, void *buf, size_t len); | |
0d37f2bc | 54 | |
8d9eb6d8 JG |
55 | LTTNG_HIDDEN |
56 | ssize_t lttcomm_send_creds_unix_sock(int sock, void *buf, size_t len); | |
57 | LTTNG_HIDDEN | |
58 | ssize_t lttcomm_recv_creds_unix_sock(int sock, void *buf, size_t len, | |
0d37f2bc DG |
59 | lttng_sock_cred *creds); |
60 | ||
8d9eb6d8 JG |
61 | LTTNG_HIDDEN |
62 | int lttcomm_setsockopt_creds_unix_sock(int sock); | |
0d37f2bc DG |
63 | |
64 | #endif /* _LTTCOMM_UNIX_H */ |