Commit | Line | Data |
---|---|---|
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" | |
29 | ||
08230db7 | 30 | pid_t *ustcmd_get_online_pids(void) |
772030fe | 31 | { |
08230db7 PMF |
32 | struct dirent *dirent; |
33 | DIR *dir; | |
ef290fca | 34 | unsigned int ret_size = 1 * sizeof(pid_t), i = 0; |
ab33e65c PP |
35 | |
36 | dir = opendir(SOCK_DIR); | |
37 | if (!dir) { | |
38 | return NULL; | |
39 | } | |
40 | ||
08230db7 | 41 | pid_t *ret = (pid_t *) malloc(ret_size); |
ab33e65c | 42 | |
772030fe | 43 | while ((dirent = readdir(dir))) { |
ab33e65c PP |
44 | if (!strcmp(dirent->d_name, ".") || |
45 | !strcmp(dirent->d_name, "..")) { | |
46 | ||
47 | continue; | |
48 | } | |
49 | ||
50 | if (dirent->d_type != DT_DIR && | |
51 | !!strcmp(dirent->d_name, "ustd")) { | |
52 | ||
08230db7 | 53 | sscanf(dirent->d_name, "%u", (unsigned int *) &ret[i]); |
ab33e65c PP |
54 | if (pid_is_online(ret[i])) { |
55 | ret_size += sizeof(pid_t); | |
08230db7 | 56 | ret = (pid_t *) realloc(ret, ret_size); |
ab33e65c PP |
57 | ++i; |
58 | } | |
59 | } | |
60 | } | |
61 | ||
77957c95 | 62 | ret[i] = 0; /* Array end */ |
ab33e65c | 63 | |
08230db7 PMF |
64 | if (ret[0] == 0) { |
65 | /* No PID at all */ | |
ab33e65c PP |
66 | free(ret); |
67 | return NULL; | |
68 | } | |
69 | ||
70 | closedir(dir); | |
71 | return ret; | |
72 | } | |
73 | ||
74 | /** | |
75 | * Sets marker state (USTCMD_MS_ON or USTCMD_MS_OFF). | |
76 | * | |
77 | * @param mn Marker name | |
78 | * @param state Marker's new state | |
79 | * @param pid Traced process ID | |
80 | * @return 0 if successful, or errors {USTCMD_ERR_GEN, USTCMD_ERR_ARG} | |
81 | */ | |
08230db7 | 82 | int ustcmd_set_marker_state(const char *mn, int state, pid_t pid) |
ef290fca | 83 | { |
08230db7 PMF |
84 | char *cmd_str [] = {"disable_marker", "enable_marker"}; |
85 | char *cmd; | |
ef290fca PMF |
86 | int result; |
87 | ||
ab33e65c PP |
88 | if (mn == NULL) { |
89 | return USTCMD_ERR_ARG; | |
90 | } | |
91 | ||
ab33e65c PP |
92 | asprintf(&cmd, "%s %s", cmd_str[state], mn); |
93 | ||
08230db7 | 94 | result = ustcmd_send_cmd(cmd, pid, NULL); |
ef290fca | 95 | if (result) { |
ab33e65c PP |
96 | free(cmd); |
97 | return USTCMD_ERR_GEN; | |
98 | } | |
99 | ||
100 | free(cmd); | |
101 | return 0; | |
102 | } | |
103 | ||
104 | /** | |
105 | * Destroys an UST trace according to a PID. | |
106 | * | |
107 | * @param pid Traced process ID | |
108 | * @return 0 if successful, or error USTCMD_ERR_GEN | |
109 | */ | |
772030fe PMF |
110 | int ustcmd_destroy_trace(pid_t pid) |
111 | { | |
112 | int result; | |
ab33e65c | 113 | |
08230db7 | 114 | result = ustcmd_send_cmd("destroy", pid, NULL); |
772030fe | 115 | if (result) { |
ab33e65c PP |
116 | return USTCMD_ERR_GEN; |
117 | } | |
118 | ||
119 | return 0; | |
120 | } | |
121 | ||
122 | /** | |
123 | * Starts an UST trace (and setups it) according to a PID. | |
124 | * | |
125 | * @param pid Traced process ID | |
126 | * @return 0 if successful, or error USTCMD_ERR_GEN | |
127 | */ | |
772030fe PMF |
128 | int ustcmd_setup_and_start(pid_t pid) |
129 | { | |
130 | int result; | |
ab33e65c | 131 | |
08230db7 | 132 | result = ustcmd_send_cmd("start", pid, NULL); |
772030fe | 133 | if (result) { |
ab33e65c PP |
134 | return USTCMD_ERR_GEN; |
135 | } | |
136 | ||
137 | return 0; | |
138 | } | |
139 | ||
140 | /** | |
141 | * Starts an UST trace according to a PID. | |
142 | * | |
143 | * @param pid Traced process ID | |
144 | * @return 0 if successful, or error USTCMD_ERR_GEN | |
145 | */ | |
772030fe PMF |
146 | int ustcmd_start_trace(pid_t pid) |
147 | { | |
148 | int result; | |
ab33e65c | 149 | |
08230db7 | 150 | result = ustcmd_send_cmd("trace_start", pid, NULL); |
772030fe | 151 | if (result) { |
ab33e65c PP |
152 | return USTCMD_ERR_GEN; |
153 | } | |
154 | ||
155 | return 0; | |
156 | } | |
157 | ||
158 | /** | |
159 | * Stops an UST trace according to a PID. | |
160 | * | |
161 | * @param pid Traced process ID | |
162 | * @return 0 if successful, or error USTCMD_ERR_GEN | |
163 | */ | |
772030fe PMF |
164 | int ustcmd_stop_trace(pid_t pid) |
165 | { | |
166 | int result; | |
ab33e65c | 167 | |
08230db7 | 168 | result = ustcmd_send_cmd("trace_stop", pid, NULL); |
772030fe | 169 | if (result) { |
ab33e65c PP |
170 | return USTCMD_ERR_GEN; |
171 | } | |
172 | ||
173 | return 0; | |
174 | } | |
175 | ||
176 | /** | |
177 | * Counts newlines ('\n') in a string. | |
178 | * | |
179 | * @param str String to search in | |
180 | * @return Total newlines count | |
181 | */ | |
08230db7 | 182 | unsigned int ustcmd_count_nl(const char *str) |
772030fe | 183 | { |
ab33e65c PP |
184 | unsigned int i = 0, tot = 0; |
185 | ||
186 | while (str[i] != '\0') { | |
187 | if (str[i] == '\n') { | |
188 | ++tot; | |
189 | } | |
190 | ++i; | |
191 | } | |
192 | ||
193 | return tot; | |
194 | } | |
195 | ||
196 | /** | |
197 | * Frees a CMSF array. | |
198 | * | |
199 | * @param cmsf CMSF array to free | |
200 | * @return 0 if successful, or error USTCMD_ERR_ARG | |
201 | */ | |
08230db7 | 202 | int ustcmd_free_cmsf(struct marker_status *cmsf) |
772030fe | 203 | { |
ab33e65c PP |
204 | if (cmsf == NULL) { |
205 | return USTCMD_ERR_ARG; | |
206 | } | |
207 | ||
208 | unsigned int i = 0; | |
209 | while (cmsf[i].channel != NULL) { | |
210 | free(cmsf[i].channel); | |
211 | free(cmsf[i].marker); | |
212 | free(cmsf[i].fs); | |
213 | ++i; | |
214 | } | |
215 | free(cmsf); | |
216 | ||
217 | return 0; | |
218 | } | |
219 | ||
220 | /** | |
221 | * Gets channel/marker/state/format string for a given PID. | |
222 | * | |
223 | * @param cmsf Pointer to CMSF array to be filled (callee allocates, caller | |
224 | * frees with `ustcmd_free_cmsf') | |
225 | * @param pid Targeted PID | |
226 | * @return 0 if successful, or errors {USTCMD_ERR_ARG, USTCMD_ERR_GEN} | |
227 | */ | |
08230db7 | 228 | int ustcmd_get_cmsf(struct marker_status **cmsf, const pid_t pid) |
772030fe | 229 | { |
08230db7 | 230 | char *big_str = NULL; |
ef290fca | 231 | int result; |
08230db7 | 232 | struct marker_status *tmp_cmsf = NULL; |
ef290fca PMF |
233 | unsigned int i = 0, cmsf_ind = 0; |
234 | ||
ab33e65c PP |
235 | if (cmsf == NULL) { |
236 | return USTCMD_ERR_ARG; | |
237 | } | |
08230db7 | 238 | result = ustcmd_send_cmd("list_markers", pid, &big_str); |
ef290fca | 239 | if (result) { |
ab33e65c PP |
240 | return USTCMD_ERR_GEN; |
241 | } | |
242 | ||
243 | if (big_str == NULL) { | |
244 | fprintf(stderr, "ustcmd: error while getting markers list\n"); | |
245 | return USTCMD_ERR_GEN; | |
246 | } | |
247 | ||
08230db7 | 248 | tmp_cmsf = (struct marker_status *) malloc(sizeof(struct marker_status) * |
ab33e65c PP |
249 | (ustcmd_count_nl(big_str) + 1)); |
250 | if (tmp_cmsf == NULL) { | |
251 | return USTCMD_ERR_GEN; | |
252 | } | |
253 | ||
77957c95 | 254 | /* Parse received reply string (format: "[chan]/[mark] [st] [fs]"): */ |
ab33e65c | 255 | while (big_str[i] != '\0') { |
ab33e65c | 256 | char state; |
ef290fca | 257 | |
ab33e65c PP |
258 | sscanf(big_str + i, "%a[^/]/%a[^ ] %c %a[^\n]", |
259 | &tmp_cmsf[cmsf_ind].channel, | |
260 | &tmp_cmsf[cmsf_ind].marker, | |
261 | &state, | |
262 | &tmp_cmsf[cmsf_ind].fs); | |
263 | tmp_cmsf[cmsf_ind].state = (state == USTCMD_MS_CHR_ON ? | |
77957c95 | 264 | USTCMD_MS_ON : USTCMD_MS_OFF); /* Marker state */ |
ab33e65c PP |
265 | |
266 | while (big_str[i] != '\n') { | |
77957c95 | 267 | ++i; /* Go to next '\n' */ |
ab33e65c | 268 | } |
77957c95 | 269 | ++i; /* Skip current pointed '\n' */ |
ab33e65c PP |
270 | ++cmsf_ind; |
271 | } | |
272 | tmp_cmsf[cmsf_ind].channel = NULL; | |
273 | tmp_cmsf[cmsf_ind].marker = NULL; | |
274 | tmp_cmsf[cmsf_ind].fs = NULL; | |
275 | ||
276 | *cmsf = tmp_cmsf; | |
277 | ||
278 | free(big_str); | |
279 | return 0; | |
280 | } | |
281 | ||
282 | /** | |
283 | * Shoots a given command using ustcomm. | |
284 | * | |
285 | * @param cmd Null-terminated command to shoot | |
286 | * @param pid Targeted PID | |
287 | * @param reply Pointer to string to be filled with a reply string (must | |
288 | * be NULL if no reply is needed for the given command). | |
289 | * @return 0 if successful, or errors {USTCMD_ERR_ARG, USTCMD_ERR_CONN} | |
290 | */ | |
772030fe | 291 | |
08230db7 | 292 | int ustcmd_send_cmd(const char *cmd, const pid_t pid, char **reply) |
772030fe PMF |
293 | { |
294 | struct ustcomm_connection conn; | |
295 | ||
ab33e65c PP |
296 | if (cmd == NULL) { |
297 | return USTCMD_ERR_ARG; | |
298 | } | |
299 | ||
ab33e65c | 300 | if (ustcomm_connect_app(pid, &conn)) { |
08230db7 | 301 | fprintf(stderr, "ustcmd_send_cmd: could not connect to PID %u\n", |
ab33e65c PP |
302 | (unsigned int) pid); |
303 | return USTCMD_ERR_CONN; | |
304 | } | |
305 | ||
306 | ustcomm_send_request(&conn, cmd, reply); | |
307 | ||
308 | return 0; | |
309 | } |