2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 #include <sys/socket.h>
26 #include <sys/types.h>
30 #include "liblttsessiondcomm.h"
33 * Human readable error message.
35 static const char *lttcomm_readable_code
[] = {
36 [ LTTCOMM_ERR_INDEX(LTTCOMM_OK
) ] = "Success",
37 [ LTTCOMM_ERR_INDEX(LTTCOMM_ERR
) ] = "Unknown error",
38 [ LTTCOMM_ERR_INDEX(LTTCOMM_UND
) ] = "Undefined command",
39 [ LTTCOMM_ERR_INDEX(LTTCOMM_NO_SESSION
) ] = "No session found",
40 [ LTTCOMM_ERR_INDEX(LTTCOMM_LIST_FAIL
) ] = "Unable to list traceable apps",
41 [ LTTCOMM_ERR_INDEX(LTTCOMM_NO_APPS
) ] = "No traceable apps found",
42 [ LTTCOMM_ERR_INDEX(LTTCOMM_NO_SESS
) ] = "No session found",
43 [ LTTCOMM_ERR_INDEX(LTTCOMM_NO_TRACE
) ] = "No trace found",
44 [ LTTCOMM_ERR_INDEX(LTTCOMM_FATAL
) ] = "Fatal error of the session daemon",
45 [ LTTCOMM_ERR_INDEX(LTTCOMM_CREATE_FAIL
) ] = "Create trace failed",
46 [ LTTCOMM_ERR_INDEX(LTTCOMM_START_FAIL
) ] = "Start trace failed",
47 [ LTTCOMM_ERR_INDEX(LTTCOMM_NO_TRACEABLE
) ] = "App is not traceable",
48 [ LTTCOMM_ERR_INDEX(LTTCOMM_SELECT_SESS
) ] = "A session MUST be selected",
49 [ LTTCOMM_ERR_INDEX(LTTCOMM_EXIST_SESS
) ] = "Session name already exist",
53 * lttcom_get_readable_code
55 * Return ptr to string representing a human readable
56 * error code from the lttcomm_return_code enum.
58 * These code MUST be negative in other to treat that
61 const char *lttcomm_get_readable_code(enum lttcomm_return_code code
)
65 if (tmp_code
>= LTTCOMM_OK
&& tmp_code
< LTTCOMM_NR
) {
66 return lttcomm_readable_code
[LTTCOMM_ERR_INDEX(tmp_code
)];
69 return "Unknown error code";
73 * lttcomm_connect_unix_sock
75 * Connect to unix socket using the path name.
77 int lttcomm_connect_unix_sock(const char *pathname
)
79 struct sockaddr_un sun
;
83 fd
= socket(PF_UNIX
, SOCK_STREAM
, 0);
89 memset(&sun
, 0, sizeof(sun
));
90 sun
.sun_family
= AF_UNIX
;
91 strncpy(sun
.sun_path
, pathname
, sizeof(sun
.sun_path
));
93 ret
= connect(fd
, (struct sockaddr
*) &sun
, sizeof(sun
));
106 * lttcomm_accept_unix_sock
108 * Do an accept(2) on the sock and return the
109 * new file descriptor. The socket MUST be bind(2) before.
111 int lttcomm_accept_unix_sock(int sock
)
114 struct sockaddr_un sun
;
118 new_fd
= accept(sock
, (struct sockaddr
*) &sun
, &len
);
131 * lttcomm_create_unix_sock
133 * Creates a AF_UNIX local socket using pathname
134 * bind the socket upon creation and return the fd.
136 int lttcomm_create_unix_sock(const char *pathname
)
138 struct sockaddr_un sun
;
142 /* Create server socket */
143 if ((fd
= socket(PF_UNIX
, SOCK_STREAM
, 0)) < 0) {
148 memset(&sun
, 0, sizeof(sun
));
149 sun
.sun_family
= AF_UNIX
;
150 strncpy(sun
.sun_path
, pathname
, strlen(pathname
));
152 ret
= bind(fd
, (struct sockaddr
*) &sun
, sizeof(sun
));
165 * lttcomm_listen_unix_sock
167 * Make the socket listen using MAX_LISTEN.
169 int lttcomm_listen_unix_sock(int sock
)
173 ret
= listen(sock
, MAX_LISTEN
);
182 * lttcomm_recv_unix_sock
184 * Receive data of size len in put that data into
185 * the buf param. Using recvmsg API.
186 * Return the size of received data.
188 ssize_t
lttcomm_recv_unix_sock(int sock
, void *buf
, size_t len
)
194 memset(&msg
, 0, sizeof(msg
));
196 iov
[0].iov_base
= buf
;
197 iov
[0].iov_len
= len
;
201 ret
= recvmsg(sock
, &msg
, 0);
210 * lttcomm_send_unix_sock
212 * Send buf data of size len. Using sendmsg API.
213 * Return the size of sent data.
215 ssize_t
lttcomm_send_unix_sock(int sock
, void *buf
, size_t len
)
221 memset(&msg
, 0, sizeof(msg
));
223 iov
[0].iov_base
= buf
;
224 iov
[0].iov_len
= len
;
228 ret
= sendmsg(sock
, &msg
, 0);
237 * lttcomm_close_unix_sock
239 * Shutdown cleanly a unix socket.
241 int lttcomm_close_unix_sock(int sock
)
245 /* Shutdown receptions and transmissions */
246 ret
= shutdown(sock
, SHUT_RDWR
);
This page took 0.035867 seconds and 4 git commands to generate.