trace: add trace bufsize configuration parameter
[dpdk.git] / lib / librte_eal / common / eal_common_trace_utils.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(C) 2020 Marvell International Ltd.
3  */
4
5 #include <fnmatch.h>
6 #include <pwd.h>
7 #include <sys/stat.h>
8 #include <time.h>
9
10 #include <rte_common.h>
11 #include <rte_errno.h>
12 #include <rte_string_fns.h>
13
14 #include "eal_filesystem.h"
15 #include "eal_trace.h"
16
17 const char *
18 trace_mode_to_string(enum rte_trace_mode mode)
19 {
20         switch (mode) {
21         case RTE_TRACE_MODE_OVERWRITE: return "overwrite";
22         case RTE_TRACE_MODE_DISCARD: return "discard";
23         default: return "unknown";
24         }
25 }
26
27 const char *
28 trace_area_to_string(enum trace_area_e area)
29 {
30         switch (area) {
31         case TRACE_AREA_HEAP: return "heap";
32         case TRACE_AREA_HUGEPAGE: return "hugepage";
33         default: return "unknown";
34         }
35 }
36
37 static bool
38 trace_entry_compare(const char *name)
39 {
40         struct trace_point_head *tp_list = trace_list_head_get();
41         struct trace_point *tp;
42         int count = 0;
43
44         STAILQ_FOREACH(tp, tp_list, next) {
45                 if (strncmp(tp->name, name, TRACE_POINT_NAME_SIZE) == 0)
46                         count++;
47                 if (count > 1) {
48                         trace_err("found duplicate entry %s", name);
49                         rte_errno = EEXIST;
50                         return true;
51                 }
52         }
53         return false;
54 }
55
56 bool
57 trace_has_duplicate_entry(void)
58 {
59         struct trace_point_head *tp_list = trace_list_head_get();
60         struct trace_point *tp;
61
62         /* Is duplicate trace name registered */
63         STAILQ_FOREACH(tp, tp_list, next)
64                 if (trace_entry_compare(tp->name))
65                         return true;
66
67         return false;
68 }
69
70 void
71 trace_uuid_generate(void)
72 {
73         struct trace_point_head *tp_list = trace_list_head_get();
74         struct trace *trace = trace_obj_get();
75         struct trace_point *tp;
76         uint64_t sz_total = 0;
77
78         /* Go over the registered trace points to get total size of events */
79         STAILQ_FOREACH(tp, tp_list, next) {
80                 const uint16_t sz = *tp->handle & __RTE_TRACE_FIELD_SIZE_MASK;
81                 sz_total += sz;
82         }
83
84         rte_uuid_t uuid = RTE_UUID_INIT(sz_total, trace->nb_trace_points,
85                 0x4370, 0x8f50, 0x222ddd514176ULL);
86         rte_uuid_copy(trace->uuid, uuid);
87 }
88
89 static int
90 trace_session_name_generate(char *trace_dir)
91 {
92         struct tm *tm_result;
93         time_t tm;
94         int rc;
95
96         tm = time(NULL);
97         if ((int)tm == -1)
98                 goto fail;
99
100         tm_result = localtime(&tm);
101         if (tm_result == NULL)
102                 goto fail;
103
104         rc = rte_strscpy(trace_dir, eal_get_hugefile_prefix(),
105                         TRACE_PREFIX_LEN);
106         if (rc == -E2BIG)
107                 rc = TRACE_PREFIX_LEN;
108         trace_dir[rc++] = '-';
109
110         rc = strftime(trace_dir + rc, TRACE_DIR_STR_LEN - rc,
111                         "%Y-%m-%d-%p-%I-%M-%S", tm_result);
112         if (rc == 0)
113                 goto fail;
114
115         return rc;
116 fail:
117         rte_errno = errno;
118         return -rte_errno;
119 }
120
121 static int
122 trace_dir_update(const char *str)
123 {
124         struct trace *trace = trace_obj_get();
125         int rc, remaining;
126
127         remaining = sizeof(trace->dir) - trace->dir_offset;
128         rc = rte_strscpy(&trace->dir[0] + trace->dir_offset, str, remaining);
129         if (rc < 0)
130                 goto fail;
131
132         trace->dir_offset += rc;
133 fail:
134         return rc;
135 }
136
137 int
138 eal_trace_args_save(const char *optarg)
139 {
140         struct trace *trace = trace_obj_get();
141         char *trace_args;
142         uint8_t nb_args;
143
144         nb_args = trace->args.nb_args;
145
146         if (nb_args >= TRACE_MAX_ARGS) {
147                 trace_err("ignoring trace %s as limit exceeds", optarg);
148                 return 0;
149         }
150
151         trace_args = calloc(1, (strlen(optarg) + 1));
152         if (trace_args == NULL) {
153                 trace_err("fail to allocate memory for %s", optarg);
154                 return -ENOMEM;
155         }
156
157         memcpy(trace_args, optarg, strlen(optarg));
158         trace->args.args[nb_args++] = trace_args;
159         trace->args.nb_args = nb_args;
160         return 0;
161 }
162
163 void
164 eal_trace_args_free(void)
165 {
166         struct trace *trace = trace_obj_get();
167         int i;
168
169         for (i = 0; i < trace->args.nb_args; i++) {
170                 if (trace->args.args[i]) {
171                         free((void *)trace->args.args[i]);
172                         trace->args.args[i] = NULL;
173                 }
174         }
175 }
176
177 int
178 trace_args_apply(const char *arg)
179 {
180         char *str;
181
182         str = strdup(arg);
183         if (str == NULL)
184                 return -1;
185
186         if (rte_trace_regexp(str, true) < 0) {
187                 trace_err("cannot enable trace for %s", str);
188                 free(str);
189                 return -1;
190         }
191
192         free(str);
193         return 0;
194 }
195
196 int
197 eal_trace_bufsz_args_save(char const *optarg)
198 {
199         struct trace *trace = trace_obj_get();
200         uint64_t bufsz;
201
202         if (optarg == NULL) {
203                 trace_err("no optarg is passed");
204                 return -EINVAL;
205         }
206
207         bufsz = rte_str_to_size(optarg);
208         if (bufsz == 0) {
209                 trace_err("buffer size cannot be zero");
210                 return -EINVAL;
211         }
212
213         trace->buff_len = bufsz;
214         return 0;
215 }
216
217 void
218 trace_bufsz_args_apply(void)
219 {
220         struct trace *trace = trace_obj_get();
221
222         if (trace->buff_len == 0)
223                 trace->buff_len = 1024 * 1024; /* 1MB */
224 }
225
226 int
227 eal_trace_dir_args_save(char const *optarg)
228 {
229         struct trace *trace = trace_obj_get();
230         uint32_t size = sizeof(trace->dir);
231         char *dir_path = NULL;
232         int rc;
233
234         if (optarg == NULL) {
235                 trace_err("no optarg is passed");
236                 return -EINVAL;
237         }
238
239         if (strlen(optarg) >= size) {
240                 trace_err("input string is too big");
241                 return -ENAMETOOLONG;
242         }
243
244         dir_path = (char *)calloc(1, size);
245         if (dir_path == NULL) {
246                 trace_err("fail to allocate memory");
247                 return -ENOMEM;
248         }
249
250         sprintf(dir_path, "%s/", optarg);
251         rc = trace_dir_update(dir_path);
252
253         free(dir_path);
254         return rc;
255 }
256
257 int
258 trace_epoch_time_save(void)
259 {
260         struct trace *trace = trace_obj_get();
261         struct timespec epoch = { 0, 0 };
262         uint64_t avg, start, end;
263
264         start = rte_get_tsc_cycles();
265         if (clock_gettime(CLOCK_REALTIME, &epoch) < 0) {
266                 trace_err("failed to get the epoch time");
267                 return -1;
268         }
269         end = rte_get_tsc_cycles();
270         avg = (start + end) >> 1;
271
272         trace->epoch_sec = (uint64_t) epoch.tv_sec;
273         trace->epoch_nsec = (uint64_t) epoch.tv_nsec;
274         trace->uptime_ticks = avg;
275
276         return 0;
277 }
278
279 static int
280 trace_dir_default_path_get(char *dir_path)
281 {
282         struct trace *trace = trace_obj_get();
283         uint32_t size = sizeof(trace->dir);
284         struct passwd *pwd;
285         char *home_dir;
286
287         /* First check for shell environment variable */
288         home_dir = getenv("HOME");
289         if (home_dir == NULL) {
290                 /* Fallback to password file entry */
291                 pwd = getpwuid(getuid());
292                 if (pwd == NULL)
293                         return -EINVAL;
294
295                 home_dir = pwd->pw_dir;
296         }
297
298         /* Append dpdk-traces to directory */
299         if (snprintf(dir_path, size, "%s/dpdk-traces/", home_dir) < 0)
300                 return -ENAMETOOLONG;
301
302         return 0;
303 }
304
305 int
306 trace_mkdir(void)
307 {
308         struct trace *trace = trace_obj_get();
309         char session[TRACE_DIR_STR_LEN];
310         char *dir_path;
311         int rc;
312
313         if (!trace->dir_offset) {
314                 dir_path = calloc(1, sizeof(trace->dir));
315                 if (dir_path == NULL) {
316                         trace_err("fail to allocate memory");
317                         return -ENOMEM;
318                 }
319
320                 rc = trace_dir_default_path_get(dir_path);
321                 if (rc < 0) {
322                         trace_err("fail to get default path");
323                         free(dir_path);
324                         return rc;
325                 }
326
327                 rc = trace_dir_update(dir_path);
328                 free(dir_path);
329                 if (rc < 0)
330                         return rc;
331         }
332
333         /* Create the path if it t exist, no "mkdir -p" available here */
334         rc = mkdir(trace->dir, 0700);
335         if (rc < 0 && errno != EEXIST) {
336                 trace_err("mkdir %s failed [%s]", trace->dir, strerror(errno));
337                 rte_errno = errno;
338                 return -rte_errno;
339         }
340
341         rc = trace_session_name_generate(session);
342         if (rc < 0)
343                 return rc;
344         rc = trace_dir_update(session);
345         if (rc < 0)
346                 return rc;
347
348         rc = mkdir(trace->dir, 0700);
349         if (rc < 0) {
350                 trace_err("mkdir %s failed [%s]", trace->dir, strerror(errno));
351                 rte_errno = errno;
352                 return -rte_errno;
353         }
354
355         RTE_LOG(INFO, EAL, "Trace dir: %s\n", trace->dir);
356         return 0;
357 }
358
359 static int
360 trace_meta_save(struct trace *trace)
361 {
362         char file_name[PATH_MAX];
363         FILE *f;
364         int rc;
365
366         rc = snprintf(file_name, PATH_MAX, "%s/metadata", trace->dir);
367         if (rc < 0)
368                 return rc;
369
370         f = fopen(file_name, "w");
371         if (f == NULL)
372                 return -errno;
373
374         rc = rte_trace_metadata_dump(f);
375
376         if (fclose(f))
377                 rc = -errno;
378
379         return rc;
380 }
381
382
383 static inline int
384 trace_file_sz(struct __rte_trace_header *hdr)
385 {
386         return sizeof(struct __rte_trace_stream_header) + hdr->offset;
387 }
388
389 static int
390 trace_mem_save(struct trace *trace, struct __rte_trace_header *hdr,
391                 uint32_t cnt)
392 {
393         char file_name[PATH_MAX];
394         FILE *f;
395         int rc;
396
397         rc = snprintf(file_name, PATH_MAX, "%s/channel0_%d", trace->dir, cnt);
398         if (rc < 0)
399                 return rc;
400
401         f = fopen(file_name, "w");
402         if (f == NULL)
403                 return -errno;
404
405         rc = fwrite(&hdr->stream_header, trace_file_sz(hdr), 1, f);
406         rc = (rc == 1) ?  0 : -EACCES;
407
408         if (fclose(f))
409                 rc = -errno;
410
411         return rc;
412 }
413
414 int
415 rte_trace_save(void)
416 {
417         struct trace *trace = trace_obj_get();
418         struct __rte_trace_header *header;
419         uint32_t count;
420         int rc = 0;
421
422         if (trace->nb_trace_mem_list == 0)
423                 return rc;
424
425         rc = trace_meta_save(trace);
426         if (rc)
427                 return rc;
428
429         rte_spinlock_lock(&trace->lock);
430         for (count = 0; count < trace->nb_trace_mem_list; count++) {
431                 header = trace->lcore_meta[count].mem;
432                 rc =  trace_mem_save(trace, header, count);
433                 if (rc)
434                         break;
435         }
436         rte_spinlock_unlock(&trace->lock);
437         return rc;
438 }