Linux Audio

Check our new training course

Loading...
v5.4
  1// SPDX-License-Identifier: GPL-2.0-only
  2/*
  3 * Copyright (C) 2008,2009, Steven Rostedt <srostedt@redhat.com>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  4 */
 
  5#include <dirent.h>
  6#include <mntent.h>
  7#include <stdio.h>
  8#include <stdlib.h>
  9#include <string.h>
 10#include <stdarg.h>
 11#include <sys/types.h>
 12#include <sys/stat.h>
 13#include <sys/wait.h>
 
 14#include <fcntl.h>
 15#include <unistd.h>
 
 16#include <errno.h>
 17#include <stdbool.h>
 18#include <linux/list.h>
 19#include <linux/kernel.h>
 20#include <linux/zalloc.h>
 21#include <internal/lib.h> // page_size
 22
 
 23#include "trace-event.h"
 24#include <api/fs/tracing_path.h>
 25#include "evsel.h"
 26#include "debug.h"
 27
 28#define VERSION "0.6"
 29
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 30static int output_fd;
 31
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 32
 33int bigendian(void)
 34{
 35	unsigned char str[] = { 0x1, 0x2, 0x3, 0x4, 0x0, 0x0, 0x0, 0x0};
 36	unsigned int *ptr;
 37
 38	ptr = (unsigned int *)(void *)str;
 39	return *ptr == 0x01020304;
 40}
 41
 42/* unfortunately, you can not stat debugfs or proc files for size */
 43static int record_file(const char *file, ssize_t hdr_sz)
 44{
 45	unsigned long long size = 0;
 46	char buf[BUFSIZ], *sizep;
 47	off_t hdr_pos = lseek(output_fd, 0, SEEK_CUR);
 48	int r, fd;
 49	int err = -EIO;
 50
 51	fd = open(file, O_RDONLY);
 52	if (fd < 0) {
 53		pr_debug("Can't read '%s'", file);
 54		return -errno;
 55	}
 56
 57	/* put in zeros for file size, then fill true size later */
 58	if (hdr_sz) {
 59		if (write(output_fd, &size, hdr_sz) != hdr_sz)
 60			goto out;
 61	}
 62
 63	do {
 64		r = read(fd, buf, BUFSIZ);
 65		if (r > 0) {
 66			size += r;
 67			if (write(output_fd, buf, r) != r)
 68				goto out;
 69		}
 70	} while (r > 0);
 
 71
 72	/* ugh, handle big-endian hdr_size == 4 */
 73	sizep = (char*)&size;
 74	if (bigendian())
 75		sizep += sizeof(u64) - hdr_sz;
 76
 77	if (hdr_sz && pwrite(output_fd, sizep, hdr_sz, hdr_pos) < 0) {
 78		pr_debug("writing file size failed\n");
 79		goto out;
 80	}
 81
 82	err = 0;
 83out:
 84	close(fd);
 85	return err;
 86}
 87
 88static int record_header_files(void)
 89{
 90	char *path = get_events_file("header_page");
 91	struct stat st;
 92	int err = -EIO;
 93
 94	if (!path) {
 95		pr_debug("can't get tracing/events/header_page");
 96		return -ENOMEM;
 97	}
 98
 99	if (stat(path, &st) < 0) {
100		pr_debug("can't read '%s'", path);
101		goto out;
102	}
103
104	if (write(output_fd, "header_page", 12) != 12) {
105		pr_debug("can't write header_page\n");
106		goto out;
107	}
108
109	if (record_file(path, 8) < 0) {
110		pr_debug("can't record header_page file\n");
111		goto out;
112	}
113
114	put_events_file(path);
115
116	path = get_events_file("header_event");
117	if (!path) {
118		pr_debug("can't get tracing/events/header_event");
119		err = -ENOMEM;
120		goto out;
121	}
122
123	if (stat(path, &st) < 0) {
124		pr_debug("can't read '%s'", path);
125		goto out;
126	}
127
128	if (write(output_fd, "header_event", 13) != 13) {
129		pr_debug("can't write header_event\n");
130		goto out;
131	}
132
133	if (record_file(path, 8) < 0) {
134		pr_debug("can't record header_event file\n");
135		goto out;
136	}
137
138	err = 0;
139out:
140	put_events_file(path);
141	return err;
142}
143
144static bool name_in_tp_list(char *sys, struct tracepoint_path *tps)
145{
146	while (tps) {
147		if (!strcmp(sys, tps->name))
148			return true;
149		tps = tps->next;
150	}
151
152	return false;
153}
154
155#define for_each_event(dir, dent, tps)				\
156	while ((dent = readdir(dir)))				\
157		if (dent->d_type == DT_DIR &&			\
158		    (strcmp(dent->d_name, ".")) &&		\
159		    (strcmp(dent->d_name, "..")))		\
160
161static int copy_event_system(const char *sys, struct tracepoint_path *tps)
162{
163	struct dirent *dent;
164	struct stat st;
165	char *format;
166	DIR *dir;
167	int count = 0;
168	int ret;
169	int err;
170
171	dir = opendir(sys);
172	if (!dir) {
173		pr_debug("can't read directory '%s'", sys);
174		return -errno;
175	}
176
177	for_each_event(dir, dent, tps) {
178		if (!name_in_tp_list(dent->d_name, tps))
 
 
 
179			continue;
180
181		if (asprintf(&format, "%s/%s/format", sys, dent->d_name) < 0) {
182			err = -ENOMEM;
183			goto out;
184		}
185		ret = stat(format, &st);
186		free(format);
187		if (ret < 0)
188			continue;
189		count++;
190	}
191
192	if (write(output_fd, &count, 4) != 4) {
193		err = -EIO;
194		pr_debug("can't write count\n");
195		goto out;
196	}
197
198	rewinddir(dir);
199	for_each_event(dir, dent, tps) {
200		if (!name_in_tp_list(dent->d_name, tps))
 
 
 
201			continue;
202
203		if (asprintf(&format, "%s/%s/format", sys, dent->d_name) < 0) {
204			err = -ENOMEM;
205			goto out;
206		}
207		ret = stat(format, &st);
208
209		if (ret >= 0) {
210			err = record_file(format, 8);
211			if (err) {
212				free(format);
213				goto out;
214			}
215		}
216		free(format);
217	}
218	err = 0;
219out:
220	closedir(dir);
221	return err;
222}
223
224static int record_ftrace_files(struct tracepoint_path *tps)
225{
226	char *path;
227	int ret;
228
229	path = get_events_file("ftrace");
230	if (!path) {
231		pr_debug("can't get tracing/events/ftrace");
232		return -ENOMEM;
233	}
234
235	ret = copy_event_system(path, tps);
236
237	put_tracing_file(path);
238
239	return ret;
240}
241
242static bool system_in_tp_list(char *sys, struct tracepoint_path *tps)
243{
244	while (tps) {
245		if (!strcmp(sys, tps->system))
246			return true;
247		tps = tps->next;
248	}
249
250	return false;
251}
252
253static int record_event_files(struct tracepoint_path *tps)
254{
255	struct dirent *dent;
256	struct stat st;
257	char *path;
258	char *sys;
259	DIR *dir;
260	int count = 0;
261	int ret;
262	int err;
263
264	path = get_tracing_file("events");
265	if (!path) {
266		pr_debug("can't get tracing/events");
267		return -ENOMEM;
268	}
269
270	dir = opendir(path);
271	if (!dir) {
272		err = -errno;
273		pr_debug("can't read directory '%s'", path);
274		goto out;
275	}
276
277	for_each_event(dir, dent, tps) {
278		if (strcmp(dent->d_name, "ftrace") == 0 ||
 
 
 
279		    !system_in_tp_list(dent->d_name, tps))
280			continue;
281
282		count++;
283	}
284
285	if (write(output_fd, &count, 4) != 4) {
286		err = -EIO;
287		pr_debug("can't write count\n");
288		goto out;
289	}
290
291	rewinddir(dir);
292	for_each_event(dir, dent, tps) {
293		if (strcmp(dent->d_name, "ftrace") == 0 ||
 
 
 
294		    !system_in_tp_list(dent->d_name, tps))
295			continue;
296
297		if (asprintf(&sys, "%s/%s", path, dent->d_name) < 0) {
298			err = -ENOMEM;
299			goto out;
300		}
301		ret = stat(sys, &st);
302		if (ret >= 0) {
303			ssize_t size = strlen(dent->d_name) + 1;
304
305			if (write(output_fd, dent->d_name, size) != size ||
306			    copy_event_system(sys, tps) < 0) {
307				err = -EIO;
308				free(sys);
309				goto out;
310			}
311		}
312		free(sys);
313	}
314	err = 0;
315out:
316	closedir(dir);
317	put_tracing_file(path);
318
319	return err;
320}
321
322static int record_proc_kallsyms(void)
323{
324	unsigned long long size = 0;
325	/*
326	 * Just to keep older perf.data file parsers happy, record a zero
327	 * sized kallsyms file, i.e. do the same thing that was done when
328	 * /proc/kallsyms (or something specified via --kallsyms, in a
329	 * different path) couldn't be read.
330	 */
331	return write(output_fd, &size, 4) != 4 ? -EIO : 0;
332}
333
334static int record_ftrace_printk(void)
335{
336	unsigned int size;
337	char *path;
338	struct stat st;
339	int ret, err = 0;
340
341	path = get_tracing_file("printk_formats");
342	if (!path) {
343		pr_debug("can't get tracing/printk_formats");
344		return -ENOMEM;
345	}
346
347	ret = stat(path, &st);
348	if (ret < 0) {
349		/* not found */
350		size = 0;
351		if (write(output_fd, &size, 4) != 4)
352			err = -EIO;
353		goto out;
354	}
355	err = record_file(path, 4);
356
357out:
358	put_tracing_file(path);
359	return err;
360}
361
362static int record_saved_cmdline(void)
363{
364	unsigned long long size;
365	char *path;
366	struct stat st;
367	int ret, err = 0;
368
369	path = get_tracing_file("saved_cmdlines");
370	if (!path) {
371		pr_debug("can't get tracing/saved_cmdline");
372		return -ENOMEM;
373	}
374
 
375	ret = stat(path, &st);
376	if (ret < 0) {
377		/* not found */
378		size = 0;
379		if (write(output_fd, &size, 8) != 8)
380			err = -EIO;
381		goto out;
382	}
383	err = record_file(path, 8);
384
385out:
386	put_tracing_file(path);
387	return err;
388}
389
390static void
391put_tracepoints_path(struct tracepoint_path *tps)
392{
393	while (tps) {
394		struct tracepoint_path *t = tps;
395
396		tps = tps->next;
397		zfree(&t->name);
398		zfree(&t->system);
399		free(t);
400	}
401}
402
403static struct tracepoint_path *
404get_tracepoints_path(struct list_head *pattrs)
405{
406	struct tracepoint_path path, *ppath = &path;
407	struct evsel *pos;
408	int nr_tracepoints = 0;
409
410	list_for_each_entry(pos, pattrs, core.node) {
411		if (pos->core.attr.type != PERF_TYPE_TRACEPOINT)
412			continue;
413		++nr_tracepoints;
414
415		if (pos->name) {
416			ppath->next = tracepoint_name_to_path(pos->name);
417			if (ppath->next)
418				goto next;
419
420			if (strchr(pos->name, ':') == NULL)
421				goto try_id;
422
423			goto error;
424		}
425
426try_id:
427		ppath->next = tracepoint_id_to_path(pos->core.attr.config);
428		if (!ppath->next) {
429error:
430			pr_debug("No memory to alloc tracepoints list\n");
431			put_tracepoints_path(&path);
432			return NULL;
433		}
434next:
435		ppath = ppath->next;
436	}
437
438	return nr_tracepoints > 0 ? path.next : NULL;
439}
440
441bool have_tracepoints(struct list_head *pattrs)
442{
443	struct evsel *pos;
444
445	list_for_each_entry(pos, pattrs, core.node)
446		if (pos->core.attr.type == PERF_TYPE_TRACEPOINT)
447			return true;
448
449	return false;
450}
451
452static int tracing_data_header(void)
453{
454	char buf[20];
455	ssize_t size;
 
 
 
 
 
 
 
 
456
457	/* just guessing this is someone's birthday.. ;) */
458	buf[0] = 23;
459	buf[1] = 8;
460	buf[2] = 68;
461	memcpy(buf + 3, "tracing", 7);
462
463	if (write(output_fd, buf, 10) != 10)
464		return -1;
465
466	size = strlen(VERSION) + 1;
467	if (write(output_fd, VERSION, size) != size)
468		return -1;
469
470	/* save endian */
471	if (bigendian())
472		buf[0] = 1;
473	else
474		buf[0] = 0;
475
476	if (write(output_fd, buf, 1) != 1)
477		return -1;
478
479	/* save size of long */
480	buf[0] = sizeof(long);
481	if (write(output_fd, buf, 1) != 1)
482		return -1;
483
484	/* save page_size */
485	if (write(output_fd, &page_size, 4) != 4)
486		return -1;
487
488	return 0;
489}
490
491struct tracing_data *tracing_data_get(struct list_head *pattrs,
492				      int fd, bool temp)
493{
494	struct tracepoint_path *tps;
495	struct tracing_data *tdata;
496	int err;
497
498	output_fd = fd;
499
500	tps = get_tracepoints_path(pattrs);
501	if (!tps)
502		return NULL;
503
504	tdata = malloc(sizeof(*tdata));
505	if (!tdata)
506		return NULL;
507
508	tdata->temp = temp;
509	tdata->size = 0;
510
511	if (temp) {
512		int temp_fd;
513
514		snprintf(tdata->temp_file, sizeof(tdata->temp_file),
515			 "/tmp/perf-XXXXXX");
516		if (!mkstemp(tdata->temp_file)) {
517			pr_debug("Can't make temp file");
518			free(tdata);
519			return NULL;
520		}
521
522		temp_fd = open(tdata->temp_file, O_RDWR);
523		if (temp_fd < 0) {
524			pr_debug("Can't read '%s'", tdata->temp_file);
525			free(tdata);
526			return NULL;
527		}
528
529		/*
530		 * Set the temp file the default output, so all the
531		 * tracing data are stored into it.
532		 */
533		output_fd = temp_fd;
534	}
535
536	err = tracing_data_header();
537	if (err)
538		goto out;
539	err = record_header_files();
540	if (err)
541		goto out;
542	err = record_ftrace_files(tps);
543	if (err)
544		goto out;
545	err = record_event_files(tps);
546	if (err)
547		goto out;
548	err = record_proc_kallsyms();
549	if (err)
550		goto out;
551	err = record_ftrace_printk();
552	if (err)
553		goto out;
554	err = record_saved_cmdline();
555
556out:
557	/*
558	 * All tracing data are stored by now, we can restore
559	 * the default output file in case we used temp file.
560	 */
561	if (temp) {
562		tdata->size = lseek(output_fd, 0, SEEK_CUR);
563		close(output_fd);
564		output_fd = fd;
565	}
566
567	if (err)
568		zfree(&tdata);
569
570	put_tracepoints_path(tps);
571	return tdata;
572}
573
574int tracing_data_put(struct tracing_data *tdata)
575{
 
576	int err = 0;
577
578	if (tdata->temp) {
579		err = record_file(tdata->temp_file, 0);
580		unlink(tdata->temp_file);
581	}
582
583	free(tdata);
584	return err;
585}
586
587int read_tracing_data(int fd, struct list_head *pattrs)
588{
589	int err;
590	struct tracing_data *tdata;
591
592	/*
593	 * We work over the real file, so we can write data
594	 * directly, no temp file is needed.
595	 */
596	tdata = tracing_data_get(pattrs, fd, false);
597	if (!tdata)
598		return -ENOMEM;
599
600	err = tracing_data_put(tdata);
601	return err;
602}
v3.1
 
  1/*
  2 * Copyright (C) 2008,2009, Steven Rostedt <srostedt@redhat.com>
  3 *
  4 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  5 *
  6 * This program is free software; you can redistribute it and/or modify
  7 * it under the terms of the GNU General Public License as published by
  8 * the Free Software Foundation; version 2 of the License (not later!)
  9 *
 10 * This program is distributed in the hope that it will be useful,
 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 13 * GNU General Public License for more details.
 14 *
 15 * You should have received a copy of the GNU General Public License
 16 * along with this program; if not, write to the Free Software
 17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 18 *
 19 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 20 */
 21#define _GNU_SOURCE
 22#include <dirent.h>
 23#include <mntent.h>
 24#include <stdio.h>
 25#include <stdlib.h>
 26#include <string.h>
 27#include <stdarg.h>
 28#include <sys/types.h>
 29#include <sys/stat.h>
 30#include <sys/wait.h>
 31#include <pthread.h>
 32#include <fcntl.h>
 33#include <unistd.h>
 34#include <ctype.h>
 35#include <errno.h>
 36#include <stdbool.h>
 37#include <linux/list.h>
 38#include <linux/kernel.h>
 
 
 39
 40#include "../perf.h"
 41#include "trace-event.h"
 42#include "debugfs.h"
 43#include "evsel.h"
 
 44
 45#define VERSION "0.5"
 46
 47#define _STR(x) #x
 48#define STR(x) _STR(x)
 49#define MAX_PATH 256
 50
 51#define TRACE_CTRL	"tracing_on"
 52#define TRACE		"trace"
 53#define AVAILABLE	"available_tracers"
 54#define CURRENT		"current_tracer"
 55#define ITER_CTRL	"trace_options"
 56#define MAX_LATENCY	"tracing_max_latency"
 57
 58unsigned int page_size;
 59
 60static const char *output_file = "trace.info";
 61static int output_fd;
 62
 63struct event_list {
 64	struct event_list *next;
 65	const char *event;
 66};
 67
 68struct events {
 69	struct events *sibling;
 70	struct events *children;
 71	struct events *next;
 72	char *name;
 73};
 74
 75
 76
 77static void die(const char *fmt, ...)
 78{
 79	va_list ap;
 80	int ret = errno;
 81
 82	if (errno)
 83		perror("trace-cmd");
 84	else
 85		ret = -1;
 86
 87	va_start(ap, fmt);
 88	fprintf(stderr, "  ");
 89	vfprintf(stderr, fmt, ap);
 90	va_end(ap);
 91
 92	fprintf(stderr, "\n");
 93	exit(ret);
 94}
 95
 96void *malloc_or_die(unsigned int size)
 97{
 98	void *data;
 99
100	data = malloc(size);
101	if (!data)
102		die("malloc");
103	return data;
104}
105
106static const char *find_debugfs(void)
107{
108	const char *path = debugfs_mount(NULL);
109
110	if (!path)
111		die("Your kernel not support debugfs filesystem");
112
113	return path;
114}
115
116/*
117 * Finds the path to the debugfs/tracing
118 * Allocates the string and stores it.
119 */
120static const char *find_tracing_dir(void)
121{
122	static char *tracing;
123	static int tracing_found;
124	const char *debugfs;
125
126	if (tracing_found)
127		return tracing;
128
129	debugfs = find_debugfs();
130
131	tracing = malloc_or_die(strlen(debugfs) + 9);
132
133	sprintf(tracing, "%s/tracing", debugfs);
134
135	tracing_found = 1;
136	return tracing;
137}
138
139static char *get_tracing_file(const char *name)
140{
141	const char *tracing;
142	char *file;
143
144	tracing = find_tracing_dir();
145	if (!tracing)
146		return NULL;
147
148	file = malloc_or_die(strlen(tracing) + strlen(name) + 2);
149
150	sprintf(file, "%s/%s", tracing, name);
151	return file;
152}
153
154static void put_tracing_file(char *file)
155{
156	free(file);
157}
158
159static ssize_t calc_data_size;
160
161static ssize_t write_or_die(const void *buf, size_t len)
162{
163	int ret;
164
165	if (calc_data_size) {
166		calc_data_size += len;
167		return len;
168	}
169
170	ret = write(output_fd, buf, len);
171	if (ret < 0)
172		die("writing to '%s'", output_file);
173
174	return ret;
175}
176
177int bigendian(void)
178{
179	unsigned char str[] = { 0x1, 0x2, 0x3, 0x4, 0x0, 0x0, 0x0, 0x0};
180	unsigned int *ptr;
181
182	ptr = (unsigned int *)(void *)str;
183	return *ptr == 0x01020304;
184}
185
186/* unfortunately, you can not stat debugfs or proc files for size */
187static void record_file(const char *file, size_t hdr_sz)
188{
189	unsigned long long size = 0;
190	char buf[BUFSIZ], *sizep;
191	off_t hdr_pos = lseek(output_fd, 0, SEEK_CUR);
192	int r, fd;
 
193
194	fd = open(file, O_RDONLY);
195	if (fd < 0)
196		die("Can't read '%s'", file);
 
 
197
198	/* put in zeros for file size, then fill true size later */
199	write_or_die(&size, hdr_sz);
 
 
 
200
201	do {
202		r = read(fd, buf, BUFSIZ);
203		if (r > 0) {
204			size += r;
205			write_or_die(buf, r);
 
206		}
207	} while (r > 0);
208	close(fd);
209
210	/* ugh, handle big-endian hdr_size == 4 */
211	sizep = (char*)&size;
212	if (bigendian())
213		sizep += sizeof(u64) - hdr_sz;
214
215	if (pwrite(output_fd, sizep, hdr_sz, hdr_pos) < 0)
216		die("writing to %s", output_file);
 
 
 
 
 
 
 
217}
218
219static void read_header_files(void)
220{
221	char *path;
222	struct stat st;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
223
224	path = get_tracing_file("events/header_page");
225	if (stat(path, &st) < 0)
226		die("can't read '%s'", path);
 
227
228	write_or_die("header_page", 12);
229	record_file(path, 8);
230	put_tracing_file(path);
 
231
232	path = get_tracing_file("events/header_event");
233	if (stat(path, &st) < 0)
234		die("can't read '%s'", path);
 
235
236	write_or_die("header_event", 13);
237	record_file(path, 8);
238	put_tracing_file(path);
 
239}
240
241static bool name_in_tp_list(char *sys, struct tracepoint_path *tps)
242{
243	while (tps) {
244		if (!strcmp(sys, tps->name))
245			return true;
246		tps = tps->next;
247	}
248
249	return false;
250}
251
252static void copy_event_system(const char *sys, struct tracepoint_path *tps)
 
 
 
 
 
 
253{
254	struct dirent *dent;
255	struct stat st;
256	char *format;
257	DIR *dir;
258	int count = 0;
259	int ret;
 
260
261	dir = opendir(sys);
262	if (!dir)
263		die("can't read directory '%s'", sys);
 
 
264
265	while ((dent = readdir(dir))) {
266		if (dent->d_type != DT_DIR ||
267		    strcmp(dent->d_name, ".") == 0 ||
268		    strcmp(dent->d_name, "..") == 0 ||
269		    !name_in_tp_list(dent->d_name, tps))
270			continue;
271		format = malloc_or_die(strlen(sys) + strlen(dent->d_name) + 10);
272		sprintf(format, "%s/%s/format", sys, dent->d_name);
 
 
 
273		ret = stat(format, &st);
274		free(format);
275		if (ret < 0)
276			continue;
277		count++;
278	}
279
280	write_or_die(&count, 4);
 
 
 
 
281
282	rewinddir(dir);
283	while ((dent = readdir(dir))) {
284		if (dent->d_type != DT_DIR ||
285		    strcmp(dent->d_name, ".") == 0 ||
286		    strcmp(dent->d_name, "..") == 0 ||
287		    !name_in_tp_list(dent->d_name, tps))
288			continue;
289		format = malloc_or_die(strlen(sys) + strlen(dent->d_name) + 10);
290		sprintf(format, "%s/%s/format", sys, dent->d_name);
 
 
 
291		ret = stat(format, &st);
292
293		if (ret >= 0)
294			record_file(format, 8);
295
 
 
 
 
296		free(format);
297	}
 
 
298	closedir(dir);
 
299}
300
301static void read_ftrace_files(struct tracepoint_path *tps)
302{
303	char *path;
 
304
305	path = get_tracing_file("events/ftrace");
 
 
 
 
306
307	copy_event_system(path, tps);
308
309	put_tracing_file(path);
 
 
310}
311
312static bool system_in_tp_list(char *sys, struct tracepoint_path *tps)
313{
314	while (tps) {
315		if (!strcmp(sys, tps->system))
316			return true;
317		tps = tps->next;
318	}
319
320	return false;
321}
322
323static void read_event_files(struct tracepoint_path *tps)
324{
325	struct dirent *dent;
326	struct stat st;
327	char *path;
328	char *sys;
329	DIR *dir;
330	int count = 0;
331	int ret;
 
332
333	path = get_tracing_file("events");
 
 
 
 
334
335	dir = opendir(path);
336	if (!dir)
337		die("can't read directory '%s'", path);
 
 
 
338
339	while ((dent = readdir(dir))) {
340		if (dent->d_type != DT_DIR ||
341		    strcmp(dent->d_name, ".") == 0 ||
342		    strcmp(dent->d_name, "..") == 0 ||
343		    strcmp(dent->d_name, "ftrace") == 0 ||
344		    !system_in_tp_list(dent->d_name, tps))
345			continue;
 
346		count++;
347	}
348
349	write_or_die(&count, 4);
 
 
 
 
350
351	rewinddir(dir);
352	while ((dent = readdir(dir))) {
353		if (dent->d_type != DT_DIR ||
354		    strcmp(dent->d_name, ".") == 0 ||
355		    strcmp(dent->d_name, "..") == 0 ||
356		    strcmp(dent->d_name, "ftrace") == 0 ||
357		    !system_in_tp_list(dent->d_name, tps))
358			continue;
359		sys = malloc_or_die(strlen(path) + strlen(dent->d_name) + 2);
360		sprintf(sys, "%s/%s", path, dent->d_name);
 
 
 
361		ret = stat(sys, &st);
362		if (ret >= 0) {
363			write_or_die(dent->d_name, strlen(dent->d_name) + 1);
364			copy_event_system(sys, tps);
 
 
 
 
 
 
365		}
366		free(sys);
367	}
368
 
369	closedir(dir);
370	put_tracing_file(path);
 
 
371}
372
373static void read_proc_kallsyms(void)
 
 
 
 
 
 
 
 
 
 
 
 
374{
375	unsigned int size;
376	const char *path = "/proc/kallsyms";
377	struct stat st;
378	int ret;
 
 
 
 
 
 
379
380	ret = stat(path, &st);
381	if (ret < 0) {
382		/* not found */
383		size = 0;
384		write_or_die(&size, 4);
385		return;
 
386	}
387	record_file(path, 4);
 
 
 
 
388}
389
390static void read_ftrace_printk(void)
391{
392	unsigned int size;
393	char *path;
394	struct stat st;
395	int ret;
 
 
 
 
 
 
396
397	path = get_tracing_file("printk_formats");
398	ret = stat(path, &st);
399	if (ret < 0) {
400		/* not found */
401		size = 0;
402		write_or_die(&size, 4);
 
403		goto out;
404	}
405	record_file(path, 4);
406
407out:
408	put_tracing_file(path);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
409}
410
411static struct tracepoint_path *
412get_tracepoints_path(struct list_head *pattrs)
413{
414	struct tracepoint_path path, *ppath = &path;
415	struct perf_evsel *pos;
416	int nr_tracepoints = 0;
417
418	list_for_each_entry(pos, pattrs, node) {
419		if (pos->attr.type != PERF_TYPE_TRACEPOINT)
420			continue;
421		++nr_tracepoints;
422		ppath->next = tracepoint_id_to_path(pos->attr.config);
423		if (!ppath->next)
424			die("%s\n", "No memory to alloc tracepoints list");
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
425		ppath = ppath->next;
426	}
427
428	return nr_tracepoints > 0 ? path.next : NULL;
429}
430
431bool have_tracepoints(struct list_head *pattrs)
432{
433	struct perf_evsel *pos;
434
435	list_for_each_entry(pos, pattrs, node)
436		if (pos->attr.type == PERF_TYPE_TRACEPOINT)
437			return true;
438
439	return false;
440}
441
442int read_tracing_data(int fd, struct list_head *pattrs)
443{
444	char buf[BUFSIZ];
445	struct tracepoint_path *tps = get_tracepoints_path(pattrs);
446
447	/*
448	 * What? No tracepoints? No sense writing anything here, bail out.
449	 */
450	if (tps == NULL)
451		return -1;
452
453	output_fd = fd;
454
 
455	buf[0] = 23;
456	buf[1] = 8;
457	buf[2] = 68;
458	memcpy(buf + 3, "tracing", 7);
459
460	write_or_die(buf, 10);
 
461
462	write_or_die(VERSION, strlen(VERSION) + 1);
 
 
463
464	/* save endian */
465	if (bigendian())
466		buf[0] = 1;
467	else
468		buf[0] = 0;
469
470	write_or_die(buf, 1);
 
471
472	/* save size of long */
473	buf[0] = sizeof(long);
474	write_or_die(buf, 1);
 
475
476	/* save page_size */
477	page_size = sysconf(_SC_PAGESIZE);
478	write_or_die(&page_size, 4);
 
 
 
479
480	read_header_files();
481	read_ftrace_files(tps);
482	read_event_files(tps);
483	read_proc_kallsyms();
484	read_ftrace_printk();
 
485
486	return 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
487}
488
489ssize_t read_tracing_data_size(int fd, struct list_head *pattrs)
490{
491	ssize_t size;
492	int err = 0;
493
494	calc_data_size = 1;
495	err = read_tracing_data(fd, pattrs);
496	size = calc_data_size - 1;
497	calc_data_size = 0;
 
 
 
 
 
 
 
 
 
498
499	if (err < 0)
500		return err;
 
 
 
 
 
501
502	return size;
 
503}