@@ -336,6 +336,8 @@ int tracecmd_msg_initial_setting(struct tracecmd_msg_handle *msg_handle,
int tracecmd_msg_send_port_array(struct tracecmd_msg_handle *msg_handle,
int total_cpus, int *ports);
int tracecmd_msg_collect_metadata(struct tracecmd_msg_handle *msg_handle, int ofd);
+bool tracecmd_msg_done(struct tracecmd_msg_handle *msg_handle);
+void tracecmd_msg_set_done(struct tracecmd_msg_handle *msg_handle);
/* --- Plugin handling --- */
extern struct pevent_plugin_option trace_ftrace_options[];
@@ -55,6 +55,10 @@ static int proto_ver;
static int do_daemon;
+/* Used for signaling INT to finish */
+static struct tracecmd_msg_handle *stop_msg_handle;
+static bool done;
+
#define TEMP_FILE_STR "%s.%s:%s.cpu%d", output_file, host, port, cpu
static char *get_temp_file(const char *host, const char *port, int cpu)
{
@@ -118,28 +122,10 @@ static int process_option(char *option)
return 0;
}
-struct tracecmd_msg_handle *
-tracecmd_msg_handle_alloc(int fd, unsigned long flags)
-{
- struct tracecmd_msg_handle *handle;
-
- handle = calloc(1, sizeof(struct tracecmd_msg_handle));
- if (!handle)
- return NULL;
-
- handle->fd = fd;
- handle->flags = flags;
- return handle;
-}
-
-void tracecmd_msg_handle_close(struct tracecmd_msg_handle *msg_handle)
-{
- close(msg_handle->fd);
- free(msg_handle);
-}
-
static void finish(int sig)
{
+ if (stop_msg_handle)
+ tracecmd_msg_set_done(stop_msg_handle);
done = true;
}
@@ -602,10 +588,13 @@ static int *create_all_readers(int cpus, const char *node, const char *port,
return NULL;
}
-static void collect_metadata_from_client(int ifd, int ofd)
+static void
+collect_metadata_from_client(struct tracecmd_msg_handle *msg_handle,
+ int ofd)
{
char buf[BUFSIZ];
int n, s, t;
+ int ifd = msg_handle->fd;
do {
n = read(ifd, buf, BUFSIZ);
@@ -626,7 +615,7 @@ static void collect_metadata_from_client(int ifd, int ofd)
t -= s;
s = n - t;
} while (t);
- } while (n > 0 && !done);
+ } while (n > 0 && !tracecmd_msg_done(msg_handle));
}
static void stop_all_readers(int cpus, int *pid_array)
@@ -686,11 +675,16 @@ static int process_client(struct tracecmd_msg_handle *msg_handle,
if (!pid_array)
return -ENOMEM;
+ /* on signal stop this msg */
+ stop_msg_handle = msg_handle;
+
/* Now we are ready to start reading data from the client */
if (proto_ver == V2_PROTOCOL)
tracecmd_msg_collect_metadata(msg_handle, ofd);
else
- collect_metadata_from_client(msg_handle->fd, ofd);
+ collect_metadata_from_client(msg_handle, ofd);
+
+ stop_msg_handle = NULL;
/* wait a little to let our readers finish reading */
sleep(1);
@@ -81,8 +81,20 @@ bool use_tcp;
/* for client */
unsigned int page_size;
-/* for server */
-bool done;
+struct tracecmd_msg_server {
+ struct tracecmd_msg_handle handle;
+ int done;
+};
+
+static struct tracecmd_msg_server *
+make_server(struct tracecmd_msg_handle *msg_handle)
+{
+ if (!(msg_handle->flags & TRACECMD_MSG_FL_SERVER)) {
+ plog("Message handle not of type server\n");
+ return NULL;
+ }
+ return (struct tracecmd_msg_server *)msg_handle;
+}
struct tracecmd_msg_opt {
be32 size;
@@ -357,6 +369,20 @@ error:
#define MSG_WAIT_MSEC 5000
static int msg_wait_to = MSG_WAIT_MSEC;
+bool tracecmd_msg_done(struct tracecmd_msg_handle *msg_handle)
+{
+ struct tracecmd_msg_server *msg_server = make_server(msg_handle);
+
+ return (volatile int)msg_server->done;
+}
+
+void tracecmd_msg_set_done(struct tracecmd_msg_handle *msg_handle)
+{
+ struct tracecmd_msg_server *msg_server = make_server(msg_handle);
+
+ msg_server->done = true;
+}
+
/*
* A return value of 0 indicates time-out
*/
@@ -452,6 +478,32 @@ static void error_operation_for_server(struct tracecmd_msg *msg)
warning("Message: cmd=%d size=%d\n", cmd, ntohl(msg->hdr.size));
}
+struct tracecmd_msg_handle *
+tracecmd_msg_handle_alloc(int fd, unsigned long flags)
+{
+ struct tracecmd_msg_handle *handle;
+ int size;
+
+ if (flags == TRACECMD_MSG_FL_SERVER)
+ size = sizeof(struct tracecmd_msg_server);
+ else
+ size = sizeof(struct tracecmd_msg_handle);
+
+ handle = calloc(1, size);
+ if (!handle)
+ return NULL;
+
+ handle->fd = fd;
+ handle->flags = flags;
+ return handle;
+}
+
+void tracecmd_msg_handle_close(struct tracecmd_msg_handle *msg_handle)
+{
+ close(msg_handle->fd);
+ free(msg_handle);
+}
+
#define MAX_OPTION_SIZE 4096
int tracecmd_msg_initial_setting(struct tracecmd_msg_handle *msg_handle,
@@ -648,7 +700,7 @@ int tracecmd_msg_collect_metadata(struct tracecmd_msg_handle *msg_handle, int of
} while (cmd == MSG_SENDMETA);
/* check the finish message of the client */
- while (!done) {
+ while (!tracecmd_msg_done(msg_handle)) {
ret = tracecmd_msg_recv(msg_handle->fd, &msg);
if (ret < 0) {
warning("reading client");
@@ -16,9 +16,6 @@ extern bool use_tcp;
/* for client */
extern unsigned int page_size;
-/* for server */
-extern bool done;
-
void plog(const char *fmt, ...);
void pdie(const char *fmt, ...);