Commit | Line | Data |
---|---|---|
c39c72ee | 1 | /* Copyright (C) 2009 Pierre-Marc Fournier |
0c89df6c | 2 | * Copyright (C) 2011 Ericsson AB, Nils Carlson <nils.carlson@ericsson.com> |
c39c72ee PMF |
3 | * |
4 | * This library is free software; you can redistribute it and/or | |
5 | * modify it under the terms of the GNU Lesser General Public | |
6 | * License as published by the Free Software Foundation; either | |
7 | * version 2.1 of the License, or (at your option) any later version. | |
8 | * | |
9 | * This library 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 GNU | |
12 | * Lesser General Public License for more details. | |
13 | * | |
14 | * You should have received a copy of the GNU Lesser General Public | |
15 | * License along with this library; if not, write to the Free Software | |
16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
17 | */ | |
18 | ||
872037bb PMF |
19 | #define _GNU_SOURCE |
20 | #include <stdio.h> | |
fbd8191b PMF |
21 | #include <unistd.h> |
22 | #include <getopt.h> | |
23 | #include <stdlib.h> | |
fbd8191b | 24 | #include <fcntl.h> |
fbd8191b | 25 | |
2298f329 | 26 | #include "ust/ustctl.h" |
2028e7fd | 27 | #include "usterr.h" |
0c89df6c NC |
28 | #include "cli.h" |
29 | #include "scanning_functions.h" | |
ae937656 | 30 | |
0c89df6c | 31 | void usage(const char *process_name) |
fd2fb4f9 | 32 | { |
0c89df6c NC |
33 | fprintf(stderr, "Usage: %s COMMAND [ARGS]...\n", process_name); |
34 | fprintf(stderr, | |
35 | "Control tracing within a process that supports UST,\n" | |
36 | " the Userspace Tracing libary\n" | |
37 | "Options:\n" | |
38 | " -h[<cmd>], --help[=<cmd>] " | |
39 | "help, for a command if provided\n" | |
40 | " -l, --list " | |
41 | "short list of commands\n" | |
42 | " -e, --extended-list " | |
43 | "extented list of commands with help\n" | |
44 | "Commands:\n"); | |
45 | list_cli_cmds(CLI_DESCRIPTIVE_LIST); | |
fd2fb4f9 PMF |
46 | } |
47 | ||
af00fb1c JW |
48 | /* |
49 | * Provide backward compatibility for scripts that make use of the | |
50 | * --commands in ustctl version <= 0.11 | |
51 | */ | |
52 | enum command { | |
53 | CREATE_TRACE=1000, | |
54 | ALLOC_TRACE, | |
55 | START_TRACE, | |
56 | STOP_TRACE, | |
57 | DESTROY_TRACE, | |
58 | LIST_MARKERS, | |
59 | LIST_TRACE_EVENTS, | |
60 | ENABLE_MARKER, | |
61 | DISABLE_MARKER, | |
62 | }; | |
63 | ||
0c89df6c | 64 | struct option options[] = |
fbd8191b | 65 | { |
af00fb1c JW |
66 | { "create-trace", 0, 0, CREATE_TRACE }, |
67 | { "alloc-trace", 0, 0, ALLOC_TRACE }, | |
68 | { "start-trace", 0, 0, START_TRACE }, | |
69 | { "stop-trace", 0, 0, STOP_TRACE }, | |
70 | { "destroy-trace", 0, 0, DESTROY_TRACE }, | |
71 | { "list-markers", 0, 0, LIST_MARKERS }, | |
72 | { "list-trace-events", 0, 0, LIST_TRACE_EVENTS}, | |
73 | { "enable-marker", 0, 0, ENABLE_MARKER }, | |
74 | { "disable-marker", 0, 0, DISABLE_MARKER }, | |
0c89df6c NC |
75 | {"help", 2, NULL, 'h'}, |
76 | {"list", 0, NULL, 'l'}, | |
77 | {"extended-list", 0, NULL, 'e'}, | |
78 | {NULL, 0, NULL, 0}, | |
79 | }; | |
52c51a47 | 80 | |
0c89df6c NC |
81 | int main(int argc, char *argv[]) |
82 | { | |
83 | struct cli_cmd *cli_cmd; | |
af00fb1c | 84 | char **args = argv; |
0c89df6c | 85 | int opt; |
af00fb1c | 86 | int i; |
52c51a47 | 87 | |
0c89df6c NC |
88 | if(argc <= 1) { |
89 | fprintf(stderr, "No operation specified.\n"); | |
90 | usage(argv[0]); | |
91 | exit(EXIT_FAILURE); | |
92 | } | |
52c51a47 | 93 | |
0c89df6c NC |
94 | while ((opt = getopt_long(argc, argv, "+h::le", |
95 | options, NULL)) != -1) { | |
96 | switch (opt) { | |
97 | case 'h': | |
98 | if (!optarg) { | |
99 | usage(argv[0]); | |
100 | } else { | |
101 | if (cli_print_help(optarg)) { | |
102 | fprintf(stderr, "No such command %s\n", | |
103 | optarg); | |
104 | } | |
105 | } | |
106 | exit(EXIT_FAILURE); | |
52c51a47 | 107 | break; |
0c89df6c NC |
108 | case 'l': |
109 | list_cli_cmds(CLI_SIMPLE_LIST); | |
110 | exit(EXIT_FAILURE); | |
52c51a47 | 111 | break; |
0c89df6c NC |
112 | case 'e': |
113 | list_cli_cmds(CLI_EXTENDED_LIST); | |
114 | exit(EXIT_FAILURE); | |
af00fb1c JW |
115 | case LIST_MARKERS: |
116 | case LIST_TRACE_EVENTS: | |
117 | case CREATE_TRACE: | |
118 | case ALLOC_TRACE: | |
119 | case START_TRACE: | |
120 | case STOP_TRACE: | |
121 | case DESTROY_TRACE: | |
122 | case ENABLE_MARKER: | |
123 | case DISABLE_MARKER: | |
68d96813 | 124 | args = (char **)malloc(sizeof(char *) * (argc + 3)); |
af00fb1c JW |
125 | optind--; |
126 | args[optind] = strdup(&argv[optind][2]); | |
127 | for (i = optind + 1; i < argc; i++) { | |
128 | args[i] = argv[i]; | |
129 | } | |
130 | if (opt >= CREATE_TRACE && opt <= DESTROY_TRACE) { | |
131 | args[argc] = strdup("auto"); | |
132 | argc++; | |
133 | } | |
134 | if (opt >= ENABLE_MARKER && opt <= DISABLE_MARKER) { | |
135 | args[argc] = args[argc - 2]; | |
136 | args[argc - 2] = args[argc - 1]; | |
137 | args[argc - 1] = strdup("auto"); | |
138 | argc++; | |
139 | } | |
140 | args[argc] = NULL; | |
141 | goto do_cli; | |
0c89df6c NC |
142 | default: |
143 | fprintf(stderr, "Unknown option\n"); | |
ae937656 | 144 | break; |
fbd8191b PMF |
145 | } |
146 | } | |
147 | ||
af00fb1c JW |
148 | do_cli: |
149 | cli_cmd = find_cli_cmd(args[optind]); | |
0c89df6c NC |
150 | if (!cli_cmd) { |
151 | fprintf(stderr, "No such command %s\n", | |
af00fb1c | 152 | args[optind]); |
0c89df6c | 153 | exit(EXIT_FAILURE); |
fbd8191b PMF |
154 | } |
155 | ||
af00fb1c | 156 | cli_dispatch_cmd(cli_cmd, argc - optind, &args[optind]); |
0c89df6c | 157 | |
52c51a47 PMF |
158 | return 0; |
159 | } | |
fbd8191b | 160 | |
0c89df6c | 161 | static int list_trace_events(int argc, char *argv[]) |
72098143 | 162 | { |
0c89df6c | 163 | struct trace_event_status *tes = NULL; |
8b26d56b | 164 | int i, sock; |
72098143 | 165 | |
8b26d56b | 166 | sock = parse_and_connect_pid(argv[1]); |
72098143 | 167 | |
8b26d56b | 168 | if (ustctl_get_tes(sock, &tes)) { |
0c89df6c | 169 | ERR("error while trying to list " |
8b26d56b NC |
170 | "trace_events for PID %s\n", |
171 | argv[1]); | |
72098143 | 172 | return -1; |
72098143 | 173 | } |
0c89df6c NC |
174 | i = 0; |
175 | for (i = 0; tes[i].name; i++) { | |
8b26d56b NC |
176 | printf("{PID: %s, trace_event: %s}\n", |
177 | argv[1], | |
0c89df6c NC |
178 | tes[i].name); |
179 | } | |
2298f329 | 180 | ustctl_free_tes(tes); |
0c89df6c NC |
181 | |
182 | return 0; | |
72098143 NC |
183 | } |
184 | ||
0c89df6c | 185 | static int set_sock_path(int argc, char *argv[]) |
72098143 | 186 | { |
8b26d56b | 187 | int sock; |
72098143 | 188 | |
8b26d56b | 189 | sock = parse_and_connect_pid(argv[1]); |
72098143 | 190 | |
8b26d56b NC |
191 | if (ustctl_set_sock_path(sock, argv[2])) { |
192 | ERR("error while trying to set sock path for PID %s\n", argv[1]); | |
72098143 NC |
193 | return -1; |
194 | } | |
72098143 | 195 | |
0c89df6c NC |
196 | return 0; |
197 | } | |
d89b8191 | 198 | |
0c89df6c | 199 | static int get_sock_path(int argc, char *argv[]) |
fbd8191b | 200 | { |
8b26d56b | 201 | int sock; |
0c89df6c | 202 | char *sock_path; |
fbd8191b | 203 | |
8b26d56b | 204 | sock = parse_and_connect_pid(argv[1]); |
fbd8191b | 205 | |
8b26d56b NC |
206 | if (ustctl_get_sock_path(sock, &sock_path)) { |
207 | ERR("error while trying to get sock path for PID %s\n", argv[1]); | |
0c89df6c | 208 | return -1; |
ae937656 | 209 | } |
0c89df6c NC |
210 | printf("The socket path is %s\n", sock_path); |
211 | free(sock_path); | |
fbd8191b | 212 | |
0c89df6c | 213 | return 0; |
fbd8191b | 214 | } |
ae937656 | 215 | |
0c89df6c NC |
216 | struct cli_cmd __cli_cmds general_cmds[] = { |
217 | { | |
218 | .name = "list-trace-events", | |
219 | .description = "List trace-events for a given pid", | |
220 | .help_text = "list-trace-events <pid>\n" | |
221 | "List the trace-events in a process\n", | |
222 | .function = list_trace_events, | |
223 | .desired_args = 1, | |
224 | .desired_args_op = CLI_EQ, | |
225 | }, | |
226 | { | |
227 | .name = "set-sock-path", | |
228 | .description = "Set the path to the consumer daemon socket", | |
229 | .help_text = "set-sock-path <pid> <sock-path>\n" | |
230 | "Set the path to the consumer daemon socket\n", | |
231 | .function = set_sock_path, | |
232 | .desired_args = 2, | |
233 | .desired_args_op = CLI_EQ, | |
234 | }, | |
235 | { | |
236 | .name = "get-sock-path", | |
237 | .description = "Get the path to the consumer daemon socket", | |
238 | .help_text = "get-sock-path <pid>\n" | |
239 | "Get the path to the consumer daemon socket\n", | |
240 | .function = get_sock_path, | |
241 | .desired_args = 1, | |
242 | .desired_args_op = CLI_EQ, | |
243 | }, | |
244 | }; |