destroy_traces();
- ustcomm_fini_app(&ustcomm_app);
+ ustcomm_fini_app(&ustcomm_app, 0);
}
void ust_potential_exec(void)
list_del(&bc->list);
}
- ustcomm_free_app(&ustcomm_app);
+ /* free app, keeping socket file */
+ ustcomm_fini_app(&ustcomm_app, 1);
buffers_to_export = 0;
have_listener = 0;
#include "ustcomm.h"
#include "ustcmd.h"
+#include "usterr.h"
pid_t *ustcmd_get_online_pids(void)
{
asprintf(&cmd, "%s %s", "set_subbuf_size", channel_size);
result = ustcmd_send_cmd(cmd, pid, NULL);
- if (result) {
+ if (result != 1) {
free(cmd);
return 1;
}
asprintf(&cmd, "%s %s", "set_subbuf_num", channel_size);
result = ustcmd_send_cmd(cmd, pid, NULL);
- if (result) {
+ if (result != 1) {
free(cmd);
return 1;
}
int result;
result = ustcmd_send_cmd("trace_destroy", pid, NULL);
- if (result) {
+ if (result != 1) {
return USTCMD_ERR_GEN;
}
int result;
result = ustcmd_send_cmd("start", pid, NULL);
- if (result) {
+ if (result != 1) {
return USTCMD_ERR_GEN;
}
int result;
result = ustcmd_send_cmd("trace_create", pid, NULL);
- if (result) {
+ if (result != 1) {
return USTCMD_ERR_GEN;
}
int result;
result = ustcmd_send_cmd("trace_start", pid, NULL);
- if (result) {
+ if (result != 1) {
return USTCMD_ERR_GEN;
}
int result;
result = ustcmd_send_cmd("trace_alloc", pid, NULL);
- if (result) {
+ if (result != 1) {
return USTCMD_ERR_GEN;
}
int result;
result = ustcmd_send_cmd("trace_stop", pid, NULL);
- if (result) {
+ if (result != 1) {
return USTCMD_ERR_GEN;
}
* @param cmsf Pointer to CMSF array to be filled (callee allocates, caller
* frees with `ustcmd_free_cmsf')
* @param pid Targeted PID
- * @return 0 if successful, or errors {USTCMD_ERR_ARG, USTCMD_ERR_GEN}
+ * @return 0 if successful, or -1 on error
*/
int ustcmd_get_cmsf(struct marker_status **cmsf, const pid_t pid)
{
unsigned int i = 0, cmsf_ind = 0;
if (cmsf == NULL) {
- return USTCMD_ERR_ARG;
+ return -1;
}
result = ustcmd_send_cmd("list_markers", pid, &big_str);
- if (result) {
- return USTCMD_ERR_GEN;
+ if (result != 1) {
+ return -1;
}
- if (big_str == NULL) {
- fprintf(stderr, "ustcmd: error while getting markers list\n");
- return USTCMD_ERR_GEN;
+ if (result != 1) {
+ ERR("error while getting markers list");
+ return -1;
}
tmp_cmsf = (struct marker_status *) malloc(sizeof(struct marker_status) *
(ustcmd_count_nl(big_str) + 1));
if (tmp_cmsf == NULL) {
- return USTCMD_ERR_GEN;
+ return -1;
}
/* Parse received reply string (format: "[chan]/[mark] [st] [fs]"): */
}
/**
- * Shoots a given command using ustcomm.
+ * Sends a given command to a traceable process
*
- * @param cmd Null-terminated command to shoot
+ * @param cmd Null-terminated command to send
* @param pid Targeted PID
* @param reply Pointer to string to be filled with a reply string (must
* be NULL if no reply is needed for the given command).
- * @return 0 if successful, or errors {USTCMD_ERR_ARG, USTCMD_ERR_CONN}
+ * @return -1 if successful, 0 on EOT, 1 on success
*/
int ustcmd_send_cmd(const char *cmd, const pid_t pid, char **reply)
{
struct ustcomm_connection conn;
-
- if (cmd == NULL) {
- return USTCMD_ERR_ARG;
- }
+ int retval;
if (ustcomm_connect_app(pid, &conn)) {
- fprintf(stderr, "ustcmd_send_cmd: could not connect to PID %u\n",
- (unsigned int) pid);
- return USTCMD_ERR_CONN;
+ ERR("could not connect to PID %u", (unsigned int) pid);
+ return -1;
}
- ustcomm_send_request(&conn, cmd, reply);
+ retval = ustcomm_send_request(&conn, cmd, reply);
- return 0;
+ ustcomm_close_app(&conn);
+
+ return retval;
}
if(i == 0) {
/* problem */
+ WARN("received empty message");
}
*msg = strndup(*recv_buf, i);
list_for_each_entry(conn, &server->connections, list) {
free(deletable_conn);
deletable_conn = conn;
- close(conn->fd);
+ ustcomm_close_app(conn);
list_del(&conn->list);
}
conn_table = (struct ustcomm_connection **) malloc(n_fds * sizeof(struct ustcomm_connection *));
if(conn_table == NULL) {
ERR("malloc returned NULL");
- return -1;
+ retval = -1;
+ goto free_fds_return;
}
/* special idx 0 is for listening socket */
/* nothing */;
if(result == -1) {
PERROR("poll");
- return -1;
+ retval = -1;
+ goto free_conn_table_return;
}
- if(result == 0)
- return 0;
+ if(result == 0) {
+ retval = 0;
+ goto free_conn_table_return;
+ }
if(fds[0].revents) {
struct ustcomm_connection *newconn;
result = newfd = accept(server->listen_fd, NULL, NULL);
if(result == -1) {
PERROR("accept");
- return -1;
+ retval = -1;
+ goto free_conn_table_return;
}
newconn = (struct ustcomm_connection *) malloc(sizeof(struct ustcomm_connection));
}
}
else {
- goto free_fds_return;
+ goto free_conn_table_return;
}
}
}
free(fds);
+ free(conn_table);
}
+free_conn_table_return:
+ free(conn_table);
free_fds_return:
free(fds);
return retval;
return 1;
}
+/* Return value:
+ * 0: success
+ * -1: error
+ */
+
int ustcomm_connect_path(const char *path, struct ustcomm_connection *conn, pid_t signalpid)
{
int fd;
return close(conn->fd);
}
+/* Open a connection to a traceable app.
+ *
+ * Return value:
+ * 0: success
+ * -1: error
+ */
+
int ustcomm_connect_app(pid_t pid, struct ustcomm_connection *conn)
{
int result;
return ustcomm_connect_path(path, conn, pid);
}
+/* Close a connection to a traceable app. */
+
+int ustcomm_close_app(struct ustcomm_connection *conn)
+{
+ close(conn->fd);
+ free(conn->recv_buf);
+
+ return 0;
+}
+
static int ensure_dir_exists(const char *dir)
{
struct stat st;
return -1;
}
-void ustcomm_free_app(struct ustcomm_app *app)
-{
- int result;
- result = close(app->server.listen_fd);
- if(result == -1) {
- PERROR("close");
- return;
- }
-}
-
/* Used by the daemon to initialize its server so applications
* can connect to it.
*/
return retval;
}
-void ustcomm_fini_app(struct ustcomm_app *handle)
+static void ustcomm_fini_server(struct ustcomm_server *server, int keep_socket_file)
{
int result;
struct stat st;
- /* Destroy socket */
- result = stat(handle->server.socketpath, &st);
- if(result == -1) {
- PERROR("stat (%s)", handle->server.socketpath);
- return;
- }
+ if(!keep_socket_file) {
+ /* Destroy socket */
+ result = stat(server->socketpath, &st);
+ if(result == -1) {
+ PERROR("stat (%s)", server->socketpath);
+ return;
+ }
- /* Paranoid check before deleting. */
- result = S_ISSOCK(st.st_mode);
- if(!result) {
- ERR("The socket we are about to delete is not a socket.");
- return;
+ /* Paranoid check before deleting. */
+ result = S_ISSOCK(st.st_mode);
+ if(!result) {
+ ERR("The socket we are about to delete is not a socket.");
+ return;
+ }
+
+ result = unlink(server->socketpath);
+ if(result == -1) {
+ PERROR("unlink");
+ }
}
- result = unlink(handle->server.socketpath);
+ free(server->socketpath);
+
+ result = close(server->listen_fd);
if(result == -1) {
- PERROR("unlink");
+ PERROR("close");
+ return;
}
}
+void ustcomm_fini_app(struct ustcomm_app *handle, int keep_socket_file)
+{
+ ustcomm_fini_server(&handle->server, keep_socket_file);
+}
+
+void ustcomm_fini_ustd(struct ustcomm_ustd *handle)
+{
+ ustcomm_fini_server(&handle->server, 0);
+}
+
static const char *find_tok(const char *str)
{
while(*str == ' ') {
extern int ustcomm_app_recv_message(struct ustcomm_app *app, char **msg, struct ustcomm_source *src, int timeout);
extern int ustcomm_init_app(pid_t pid, struct ustcomm_app *handle);
-extern void ustcomm_fini_app(struct ustcomm_app *handle);
+extern void ustcomm_fini_app(struct ustcomm_app *handle, int keep_socket_file);
extern void ustcomm_free_app(struct ustcomm_app *app);
extern int ustcomm_init_ustd(struct ustcomm_ustd *handle, const char *sock_path);
extern int ustcomm_connect_app(pid_t pid, struct ustcomm_connection *conn);
+extern int ustcomm_close_app(struct ustcomm_connection *conn);
extern int ustcomm_connect_path(const char *path, struct ustcomm_connection *conn, pid_t signalpid);
extern int ustcomm_send_request(struct ustcomm_connection *conn, const char *req, char **reply);
extern int ustcomm_send_reply(struct ustcomm_server *server, char *msg, struct ustcomm_source *src);
PERROR("sigaction");
return 1;
}
+ result = sigaction(SIGINT, &sa, NULL);
+ if(result == -1) {
+ PERROR("sigaction");
+ return 1;
+ }
result = ustcomm_init_ustd(&ustd, sock_path);
if(result == -1) {
free_bufname:
free(bufname);
}
+ else {
+ WARN("unknown command: %s", recvbuf);
+ }
free(recvbuf);
}
}
}
+ ustcomm_fini_ustd(&ustd);
+
return 0;
}