fix destruction to free all memory
[ust.git] / libustcmd / ustcmd.c
CommitLineData
ab33e65c
PP
1/* Copyright (C) 2009 Pierre-Marc Fournier, Philippe Proulx-Barrette
2 *
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.
7 *
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.
12 *
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
16 */
17
ef290fca 18#define _GNU_SOURCE
ab33e65c
PP
19#include <stdio.h>
20#include <unistd.h>
21#include <getopt.h>
22#include <stdlib.h>
23#include <fcntl.h>
24#include <string.h>
25#include <dirent.h>
ab33e65c
PP
26
27#include "ustcomm.h"
28#include "ustcmd.h"
2a79ceeb 29#include "usterr.h"
ab33e65c 30
08230db7 31pid_t *ustcmd_get_online_pids(void)
772030fe 32{
08230db7
PMF
33 struct dirent *dirent;
34 DIR *dir;
ef290fca 35 unsigned int ret_size = 1 * sizeof(pid_t), i = 0;
ab33e65c
PP
36
37 dir = opendir(SOCK_DIR);
38 if (!dir) {
39 return NULL;
40 }
41
08230db7 42 pid_t *ret = (pid_t *) malloc(ret_size);
ab33e65c 43
772030fe 44 while ((dirent = readdir(dir))) {
ab33e65c
PP
45 if (!strcmp(dirent->d_name, ".") ||
46 !strcmp(dirent->d_name, "..")) {
47
48 continue;
49 }
50
51 if (dirent->d_type != DT_DIR &&
52 !!strcmp(dirent->d_name, "ustd")) {
53
08230db7 54 sscanf(dirent->d_name, "%u", (unsigned int *) &ret[i]);
ab33e65c
PP
55 if (pid_is_online(ret[i])) {
56 ret_size += sizeof(pid_t);
08230db7 57 ret = (pid_t *) realloc(ret, ret_size);
ab33e65c
PP
58 ++i;
59 }
60 }
61 }
62
77957c95 63 ret[i] = 0; /* Array end */
ab33e65c 64
08230db7
PMF
65 if (ret[0] == 0) {
66 /* No PID at all */
ab33e65c
PP
67 free(ret);
68 return NULL;
69 }
70
71 closedir(dir);
72 return ret;
73}
74
75/**
76 * Sets marker state (USTCMD_MS_ON or USTCMD_MS_OFF).
77 *
78 * @param mn Marker name
79 * @param state Marker's new state
80 * @param pid Traced process ID
81 * @return 0 if successful, or errors {USTCMD_ERR_GEN, USTCMD_ERR_ARG}
82 */
08230db7 83int ustcmd_set_marker_state(const char *mn, int state, pid_t pid)
ef290fca 84{
08230db7
PMF
85 char *cmd_str [] = {"disable_marker", "enable_marker"};
86 char *cmd;
ef290fca
PMF
87 int result;
88
ab33e65c
PP
89 if (mn == NULL) {
90 return USTCMD_ERR_ARG;
91 }
92
ab33e65c
PP
93 asprintf(&cmd, "%s %s", cmd_str[state], mn);
94
08230db7 95 result = ustcmd_send_cmd(cmd, pid, NULL);
ef290fca 96 if (result) {
ab33e65c
PP
97 free(cmd);
98 return USTCMD_ERR_GEN;
99 }
100
101 free(cmd);
102 return 0;
103}
104
763f41e5
DS
105/**
106 * Set subbuffer size.
107 *
108 * @param channel_size Channel name and size
109 * @param pid Traced process ID
110 * @return 0 if successful, or error
111 */
112int ustcmd_set_subbuf_size(const char *channel_size, pid_t pid)
113{
114 char *cmd;
115 int result;
116
117 asprintf(&cmd, "%s %s", "set_subbuf_size", channel_size);
118
119 result = ustcmd_send_cmd(cmd, pid, NULL);
2a79ceeb 120 if (result != 1) {
763f41e5
DS
121 free(cmd);
122 return 1;
123 }
124
125 free(cmd);
126 return 0;
127}
128
129/**
130 * Set subbuffer num.
131 *
132 * @param channel_num Channel name and num
133 * @param pid Traced process ID
134 * @return 0 if successful, or error
135 */
136int ustcmd_set_subbuf_num(const char *channel_size, pid_t pid)
137{
138 char *cmd;
139 int result;
140
141 asprintf(&cmd, "%s %s", "set_subbuf_num", channel_size);
142
143 result = ustcmd_send_cmd(cmd, pid, NULL);
2a79ceeb 144 if (result != 1) {
763f41e5
DS
145 free(cmd);
146 return 1;
147 }
148
149 free(cmd);
150 return 0;
151}
152
153
ab33e65c
PP
154/**
155 * Destroys an UST trace according to a PID.
156 *
157 * @param pid Traced process ID
158 * @return 0 if successful, or error USTCMD_ERR_GEN
159 */
772030fe
PMF
160int ustcmd_destroy_trace(pid_t pid)
161{
162 int result;
ab33e65c 163
b5b073e2 164 result = ustcmd_send_cmd("trace_destroy", pid, NULL);
2a79ceeb 165 if (result != 1) {
ab33e65c
PP
166 return USTCMD_ERR_GEN;
167 }
168
169 return 0;
170}
171
172/**
173 * Starts an UST trace (and setups it) according to a PID.
174 *
175 * @param pid Traced process ID
176 * @return 0 if successful, or error USTCMD_ERR_GEN
177 */
772030fe
PMF
178int ustcmd_setup_and_start(pid_t pid)
179{
180 int result;
ab33e65c 181
08230db7 182 result = ustcmd_send_cmd("start", pid, NULL);
2a79ceeb 183 if (result != 1) {
ab33e65c
PP
184 return USTCMD_ERR_GEN;
185 }
186
187 return 0;
188}
189
62ec620f
PMF
190/**
191 * Creates an UST trace according to a PID.
192 *
193 * @param pid Traced process ID
194 * @return 0 if successful, or error USTCMD_ERR_GEN
195 */
196int ustcmd_create_trace(pid_t pid)
197{
198 int result;
199
200 result = ustcmd_send_cmd("trace_create", pid, NULL);
2a79ceeb 201 if (result != 1) {
62ec620f
PMF
202 return USTCMD_ERR_GEN;
203 }
204
205 return 0;
206}
207
ab33e65c
PP
208/**
209 * Starts an UST trace according to a PID.
210 *
211 * @param pid Traced process ID
212 * @return 0 if successful, or error USTCMD_ERR_GEN
213 */
772030fe
PMF
214int ustcmd_start_trace(pid_t pid)
215{
216 int result;
ab33e65c 217
08230db7 218 result = ustcmd_send_cmd("trace_start", pid, NULL);
2a79ceeb 219 if (result != 1) {
ab33e65c
PP
220 return USTCMD_ERR_GEN;
221 }
222
223 return 0;
224}
225
763f41e5
DS
226/**
227 * Alloc an UST trace according to a PID.
228 *
229 * @param pid Traced process ID
230 * @return 0 if successful, or error USTCMD_ERR_GEN
231 */
232int ustcmd_alloc_trace(pid_t pid)
233{
234 int result;
235
236 result = ustcmd_send_cmd("trace_alloc", pid, NULL);
2a79ceeb 237 if (result != 1) {
763f41e5
DS
238 return USTCMD_ERR_GEN;
239 }
240
241 return 0;
242}
243
ab33e65c
PP
244/**
245 * Stops an UST trace according to a PID.
246 *
247 * @param pid Traced process ID
248 * @return 0 if successful, or error USTCMD_ERR_GEN
249 */
772030fe
PMF
250int ustcmd_stop_trace(pid_t pid)
251{
252 int result;
ab33e65c 253
08230db7 254 result = ustcmd_send_cmd("trace_stop", pid, NULL);
2a79ceeb 255 if (result != 1) {
ab33e65c
PP
256 return USTCMD_ERR_GEN;
257 }
258
259 return 0;
260}
261
262/**
263 * Counts newlines ('\n') in a string.
264 *
265 * @param str String to search in
266 * @return Total newlines count
267 */
08230db7 268unsigned int ustcmd_count_nl(const char *str)
772030fe 269{
ab33e65c
PP
270 unsigned int i = 0, tot = 0;
271
272 while (str[i] != '\0') {
273 if (str[i] == '\n') {
274 ++tot;
275 }
276 ++i;
277 }
278
279 return tot;
280}
281
282/**
283 * Frees a CMSF array.
284 *
285 * @param cmsf CMSF array to free
286 * @return 0 if successful, or error USTCMD_ERR_ARG
287 */
08230db7 288int ustcmd_free_cmsf(struct marker_status *cmsf)
772030fe 289{
ab33e65c
PP
290 if (cmsf == NULL) {
291 return USTCMD_ERR_ARG;
292 }
293
294 unsigned int i = 0;
295 while (cmsf[i].channel != NULL) {
296 free(cmsf[i].channel);
297 free(cmsf[i].marker);
298 free(cmsf[i].fs);
299 ++i;
300 }
301 free(cmsf);
302
303 return 0;
304}
305
306/**
307 * Gets channel/marker/state/format string for a given PID.
308 *
309 * @param cmsf Pointer to CMSF array to be filled (callee allocates, caller
310 * frees with `ustcmd_free_cmsf')
311 * @param pid Targeted PID
2a79ceeb 312 * @return 0 if successful, or -1 on error
ab33e65c 313 */
08230db7 314int ustcmd_get_cmsf(struct marker_status **cmsf, const pid_t pid)
772030fe 315{
08230db7 316 char *big_str = NULL;
ef290fca 317 int result;
08230db7 318 struct marker_status *tmp_cmsf = NULL;
ef290fca
PMF
319 unsigned int i = 0, cmsf_ind = 0;
320
ab33e65c 321 if (cmsf == NULL) {
2a79ceeb 322 return -1;
ab33e65c 323 }
08230db7 324 result = ustcmd_send_cmd("list_markers", pid, &big_str);
2a79ceeb
PMF
325 if (result != 1) {
326 return -1;
ab33e65c
PP
327 }
328
2a79ceeb
PMF
329 if (result != 1) {
330 ERR("error while getting markers list");
331 return -1;
ab33e65c
PP
332 }
333
08230db7 334 tmp_cmsf = (struct marker_status *) malloc(sizeof(struct marker_status) *
ab33e65c
PP
335 (ustcmd_count_nl(big_str) + 1));
336 if (tmp_cmsf == NULL) {
2a79ceeb 337 return -1;
ab33e65c
PP
338 }
339
77957c95 340 /* Parse received reply string (format: "[chan]/[mark] [st] [fs]"): */
ab33e65c 341 while (big_str[i] != '\0') {
ab33e65c 342 char state;
ef290fca 343
264f6231 344 sscanf(big_str + i, "marker: %a[^/]/%a[^ ] %c %a[^\n]",
ab33e65c
PP
345 &tmp_cmsf[cmsf_ind].channel,
346 &tmp_cmsf[cmsf_ind].marker,
347 &state,
348 &tmp_cmsf[cmsf_ind].fs);
349 tmp_cmsf[cmsf_ind].state = (state == USTCMD_MS_CHR_ON ?
77957c95 350 USTCMD_MS_ON : USTCMD_MS_OFF); /* Marker state */
ab33e65c
PP
351
352 while (big_str[i] != '\n') {
77957c95 353 ++i; /* Go to next '\n' */
ab33e65c 354 }
77957c95 355 ++i; /* Skip current pointed '\n' */
ab33e65c
PP
356 ++cmsf_ind;
357 }
358 tmp_cmsf[cmsf_ind].channel = NULL;
359 tmp_cmsf[cmsf_ind].marker = NULL;
360 tmp_cmsf[cmsf_ind].fs = NULL;
361
362 *cmsf = tmp_cmsf;
363
364 free(big_str);
365 return 0;
366}
367
368/**
2a79ceeb 369 * Sends a given command to a traceable process
ab33e65c 370 *
2a79ceeb 371 * @param cmd Null-terminated command to send
ab33e65c
PP
372 * @param pid Targeted PID
373 * @param reply Pointer to string to be filled with a reply string (must
374 * be NULL if no reply is needed for the given command).
2a79ceeb 375 * @return -1 if successful, 0 on EOT, 1 on success
ab33e65c 376 */
772030fe 377
08230db7 378int ustcmd_send_cmd(const char *cmd, const pid_t pid, char **reply)
772030fe
PMF
379{
380 struct ustcomm_connection conn;
2a79ceeb 381 int retval;
ab33e65c 382
ab33e65c 383 if (ustcomm_connect_app(pid, &conn)) {
2a79ceeb
PMF
384 ERR("could not connect to PID %u", (unsigned int) pid);
385 return -1;
ab33e65c
PP
386 }
387
2a79ceeb 388 retval = ustcomm_send_request(&conn, cmd, reply);
ab33e65c 389
2a79ceeb
PMF
390 ustcomm_close_app(&conn);
391
392 return retval;
ab33e65c 393}
This page took 0.041596 seconds and 4 git commands to generate.