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
21 #include <sys/types.h>
23 #include <urcu/list.h>
25 #include <ust/kcompat/kcompat.h>
27 #define SOCK_DIR "/tmp/ust-app-socks"
30 struct list_head list
;
35 struct ustcomm_header
{
42 #define USTCOMM_BUFFER_SIZE ((1 << 12) - sizeof(struct ustcomm_header))
44 /* Specify a sata size that leaves margin at the end of a buffer
45 * in order to make sure that we never have more data than
46 * will fit in the buffer AND that the last chars (due to a
47 * pre-receive memset) will always be 0, terminating any string
49 #define USTCOMM_DATA_SIZE (USTCOMM_BUFFER_SIZE - 20 * sizeof(void *))
51 enum tracectl_commands
{
60 GET_BUF_SHMID_PIPE_FD
,
81 struct ustcomm_channel_info
{
83 unsigned int subbuf_size
;
84 unsigned int subbuf_num
;
85 char data
[USTCOMM_DATA_SIZE
];
88 struct ustcomm_buffer_info
{
95 char data
[USTCOMM_DATA_SIZE
];
98 struct ustcomm_marker_info
{
101 char data
[USTCOMM_DATA_SIZE
];
104 struct ustcomm_sock_path
{
106 char data
[USTCOMM_DATA_SIZE
];
109 struct ustcomm_pidunique
{
113 struct ustcomm_notify_buf_mapped
{
114 char data
[USTCOMM_DATA_SIZE
];
117 /* Ensure directory existence, usefull for unix sockets */
118 extern int ensure_dir_exists(const char *dir
);
120 /* Create and delete sockets */
121 extern struct ustcomm_sock
* ustcomm_init_sock(int fd
, int epoll_fd
,
122 struct list_head
*list
);
123 extern void ustcomm_del_sock(struct ustcomm_sock
*sock
, int keep_in_epoll
);
125 /* Create and delete named sockets */
126 extern struct ustcomm_sock
* ustcomm_init_named_socket(const char *name
,
128 extern void ustcomm_del_named_sock(struct ustcomm_sock
*sock
,
129 int keep_socket_file
);
131 /* Send and receive functions for file descriptors */
132 extern int ustcomm_send_fd(int sock
, const struct ustcomm_header
*header
,
133 const char *data
, int *fd
);
134 extern int ustcomm_recv_fd(int sock
, struct ustcomm_header
*header
,
135 char *data
, int *fd
);
137 /* Normal send and receive functions */
138 extern int ustcomm_send(int sock
, const struct ustcomm_header
*header
,
140 extern int ustcomm_recv(int sock
, struct ustcomm_header
*header
,
143 /* Receive and allocate data, not to be used inside libust */
144 extern int ustcomm_recv_alloc(int sock
,
145 struct ustcomm_header
*header
,
148 /* Request function, send and receive */
149 extern int ustcomm_req(int sock
,
150 const struct ustcomm_header
*req_header
,
151 const char *req_data
,
152 struct ustcomm_header
*res_header
,
155 extern int ustcomm_request_consumer(pid_t pid
, const char *channel
);
156 extern int ustcomm_connect_app(pid_t pid
, int *app_fd
);
157 extern int ustcomm_connect_path(const char *path
, int *connection_fd
);
159 extern int nth_token_is(const char *str
, const char *token
, int tok_no
);
161 extern char *nth_token(const char *str
, int tok_no
);
163 /* String serialising functions, printf straight into a buffer */
164 #define USTCOMM_POISON_PTR (void *)0x19831018
166 extern char * ustcomm_print_data(char *data_field
, int field_size
,
167 int *offset
, const char *format
, ...);
168 extern char * ustcomm_restore_ptr(char *ptr
, char *data_field
,
169 int data_field_size
);
171 #define COMPUTE_MSG_SIZE(struct_ptr, offset) \
172 (size_t) (long)(struct_ptr)->data - (long)(struct_ptr) + (offset)
174 /* Packing and unpacking functions, making life easier */
175 extern int ustcomm_pack_channel_info(struct ustcomm_header
*header
,
176 struct ustcomm_channel_info
*ch_inf
,
177 const char *channel
);
179 extern int ustcomm_unpack_channel_info(struct ustcomm_channel_info
*ch_inf
);
181 extern int ustcomm_pack_buffer_info(struct ustcomm_header
*header
,
182 struct ustcomm_buffer_info
*buf_inf
,
186 extern int ustcomm_unpack_buffer_info(struct ustcomm_buffer_info
*buf_inf
);
188 extern int ustcomm_pack_marker_info(struct ustcomm_header
*header
,
189 struct ustcomm_marker_info
*marker_inf
,
193 extern int ustcomm_unpack_marker_info(struct ustcomm_marker_info
*marker_inf
);
196 extern int ustcomm_pack_sock_path(struct ustcomm_header
*header
,
197 struct ustcomm_sock_path
*sock_path_inf
,
198 const char *socket_path
);
200 extern int ustcomm_unpack_sock_path(struct ustcomm_sock_path
*sock_path_inf
);
202 /* Packing and requesting functions */
203 extern int ustcomm_send_ch_req(int sock
, char *channel
, int command
,
204 struct ustcomm_header
*recv_header
,
207 extern int ustcomm_send_buf_req(int sock
, char *channel
, int ch_cpu
,
209 struct ustcomm_header
*recv_header
,
212 #endif /* USTCOMM_H */