2511bb12f27d8f1251d41f23a5c639d51fa874ff
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.
26 #include "liblttsessiondcomm.h"
32 * find_session_ust_trace_by_pid
34 * Iterate over the session ust_traces and
35 * return a pointer or NULL if not found.
37 static struct ltt_ust_trace
*find_session_ust_trace_by_pid(
38 struct ltt_session
*session
, pid_t pid
)
40 struct ltt_ust_trace
*iter
;
42 cds_list_for_each_entry(iter
, &session
->ust_traces
, list
) {
43 if (iter
->pid
== pid
) {
53 * get_trace_count_per_session
55 * Return the total count of traces (ust and kernel)
56 * for the specified session.
58 int get_trace_count_per_session(struct ltt_session
*session
)
60 return session
->ust_trace_count
;
64 * get_traces_per_session
66 * Fill the lttng_trace array of all the
67 * available trace of the session.
70 void get_traces_per_session(struct ltt_session *session, struct lttng_trace *traces)
73 struct ltt_ust_trace *ust_iter;
74 struct lttng_trace trace;
76 DBG("Getting userspace traces for session %s", session->name);
78 cds_list_for_each_entry(ust_iter, &session->ust_traces, list) {
79 trace.type = USERSPACE;
80 trace.pid = ust_iter->pid;
81 strncpy(trace.name, ust_iter->name, sizeof(trace.name));
82 trace.name[sizeof(trace.name) - 1] = '\0';
83 memcpy(&traces[i], &trace, sizeof(trace));
84 memset(&trace, 0, sizeof(trace));
88 DBG("Getting kernel traces for session %s", session->name);
90 if (session->kern_session_count > 0) {
92 strncpy(trace.name, "kernel", 6);
93 memcpy(&traces[i], &trace, sizeof(trace));
101 * Create an userspace trace using pid.
102 * This trace is then appended to the current session
105 int ust_create_trace(struct command_ctx
*cmd_ctx
)
108 struct ltt_ust_trace
*trace
;
110 DBG("Creating trace for pid %d", cmd_ctx
->lsm
->pid
);
112 trace
= malloc(sizeof(struct ltt_ust_trace
));
120 trace
->pid
= cmd_ctx
->lsm
->pid
;
122 /* NOTE: to be removed. Trace name will no longer be
123 * required for LTTng userspace tracer. For now, we set it
124 * to 'auto' for API compliance.
126 snprintf(trace
->name
, 5, "auto");
128 ret
= ustctl_create_trace(cmd_ctx
->ust_sock
, trace
->name
);
130 ret
= LTTCOMM_CREATE_FAIL
;
134 /* Check if current session is valid */
135 if (cmd_ctx
->session
) {
136 cds_list_add(&trace
->list
, &cmd_ctx
->session
->ust_traces
);
137 cmd_ctx
->session
->ust_trace_count
++;
151 * Start a trace. This trace, identified by the pid, must be
152 * in the current session ust_traces list.
154 int ust_start_trace(struct command_ctx
*cmd_ctx
)
157 struct ltt_ust_trace
*trace
;
159 DBG("Starting trace for pid %d", cmd_ctx
->lsm
->pid
);
161 trace
= find_session_ust_trace_by_pid(cmd_ctx
->session
, cmd_ctx
->lsm
->pid
);
163 ret
= LTTCOMM_NO_TRACE
;
167 ret
= ustctl_start_trace(cmd_ctx
->ust_sock
, "auto");
169 ret
= LTTCOMM_START_FAIL
;
182 * Stop a trace. This trace, identified by the pid, must be
183 * in the current session ust_traces list.
185 int ust_stop_trace(struct command_ctx
*cmd_ctx
)
188 struct ltt_ust_trace
*trace
;
190 DBG("Stopping trace for pid %d", cmd_ctx
->lsm
->pid
);
192 trace
= find_session_ust_trace_by_pid(cmd_ctx
->session
, cmd_ctx
->lsm
->pid
);
194 ret
= LTTCOMM_NO_TRACE
;
198 ret
= ustctl_stop_trace(cmd_ctx
->ust_sock
, trace
->name
);
200 ret
= LTTCOMM_STOP_FAIL
;
This page took 0.032887 seconds and 4 git commands to generate.