]> git.karo-electronics.de Git - karo-tx-linux.git/blob - tools/perf/util/util.h
2a1166f8bb378cdceaabc8ad405be3d0be6967de
[karo-tx-linux.git] / tools / perf / util / util.h
1 #ifndef GIT_COMPAT_UTIL_H
2 #define GIT_COMPAT_UTIL_H
3
4 #define _ALL_SOURCE 1
5 #define _BSD_SOURCE 1
6 /* glibc 2.20 deprecates _BSD_SOURCE in favour of _DEFAULT_SOURCE */
7 #define _DEFAULT_SOURCE 1
8 #define HAS_BOOL
9
10 #include <unistd.h>
11 #include <stdio.h>
12 #include <sys/stat.h>
13 #include <sys/statfs.h>
14 #include <fcntl.h>
15 #include <stdbool.h>
16 #include <stddef.h>
17 #include <stdlib.h>
18 #include <stdarg.h>
19 #include <string.h>
20 #include <limits.h>
21 #include <sys/param.h>
22 #include <sys/types.h>
23 #include <sys/time.h>
24 #include <time.h>
25 #include <signal.h>
26 #include <assert.h>
27 #include <utime.h>
28 #include <sys/wait.h>
29 #include <poll.h>
30 #include <sys/socket.h>
31 #include <sys/ioctl.h>
32 #include <linux/kernel.h>
33 #include <linux/types.h>
34
35 extern char buildid_dir[];
36
37 #ifdef __GNUC__
38 #define NORETURN __attribute__((__noreturn__))
39 #else
40 #define NORETURN
41 #ifndef __attribute__
42 #define __attribute__(x)
43 #endif
44 #endif
45
46 #define PERF_GTK_DSO  "libperf-gtk.so"
47
48 /* General helper functions */
49 void usage(const char *err) NORETURN;
50 void die(const char *err, ...) NORETURN __attribute__((format (printf, 1, 2)));
51 int error(const char *err, ...) __attribute__((format (printf, 1, 2)));
52 void warning(const char *err, ...) __attribute__((format (printf, 1, 2)));
53
54 void set_warning_routine(void (*routine)(const char *err, va_list params));
55
56 int prefixcmp(const char *str, const char *prefix);
57 void set_buildid_dir(const char *dir);
58
59 static inline void *zalloc(size_t size)
60 {
61         return calloc(1, size);
62 }
63
64 #define zfree(ptr) ({ free(*ptr); *ptr = NULL; })
65
66 struct dirent;
67 struct strlist;
68
69 int mkdir_p(char *path, mode_t mode);
70 int rm_rf(const char *path);
71 struct strlist *lsdir(const char *name, bool (*filter)(const char *, struct dirent *));
72 bool lsdir_no_dot_filter(const char *name, struct dirent *d);
73 int copyfile(const char *from, const char *to);
74 int copyfile_mode(const char *from, const char *to, mode_t mode);
75 int copyfile_offset(int fromfd, loff_t from_ofs, int tofd, loff_t to_ofs, u64 size);
76
77 unsigned long convert_unit(unsigned long value, char *unit);
78 ssize_t readn(int fd, void *buf, size_t n);
79 ssize_t writen(int fd, void *buf, size_t n);
80
81 struct perf_event_attr;
82
83 void event_attr_init(struct perf_event_attr *attr);
84
85 size_t hex_width(u64 v);
86 int hex2u64(const char *ptr, u64 *val);
87
88 void dump_stack(void);
89 void sighandler_dump_stack(int sig);
90
91 extern unsigned int page_size;
92 extern int cacheline_size;
93 extern int sysctl_perf_event_max_stack;
94 extern int sysctl_perf_event_max_contexts_per_stack;
95
96 struct parse_tag {
97         char tag;
98         int mult;
99 };
100
101 unsigned long parse_tag_value(const char *str, struct parse_tag *tags);
102
103 int perf_event_paranoid(void);
104
105 void mem_bswap_64(void *src, int byte_size);
106 void mem_bswap_32(void *src, int byte_size);
107
108 const char *get_filename_for_perf_kvm(void);
109 bool find_process(const char *name);
110
111 #ifdef HAVE_ZLIB_SUPPORT
112 int gzip_decompress_to_file(const char *input, int output_fd);
113 #endif
114
115 #ifdef HAVE_LZMA_SUPPORT
116 int lzma_decompress_to_file(const char *input, int output_fd);
117 #endif
118
119 int get_stack_size(const char *str, unsigned long *_size);
120
121 int fetch_kernel_version(unsigned int *puint,
122                          char *str, size_t str_sz);
123 #define KVER_VERSION(x)         (((x) >> 16) & 0xff)
124 #define KVER_PATCHLEVEL(x)      (((x) >> 8) & 0xff)
125 #define KVER_SUBLEVEL(x)        ((x) & 0xff)
126 #define KVER_FMT        "%d.%d.%d"
127 #define KVER_PARAM(x)   KVER_VERSION(x), KVER_PATCHLEVEL(x), KVER_SUBLEVEL(x)
128
129 const char *perf_tip(const char *dirpath);
130 int fetch_current_timestamp(char *buf, size_t sz);
131
132 #ifndef HAVE_SCHED_GETCPU_SUPPORT
133 int sched_getcpu(void);
134 #endif
135
136 int timestamp__scnprintf_usec(u64 timestamp, char *buf, size_t sz);
137
138 int unit_number__scnprintf(char *buf, size_t size, u64 n);
139
140 #endif /* GIT_COMPAT_UTIL_H */