]> git.karo-electronics.de Git - karo-tx-linux.git/blob - tools/perf/util/util.h
d79f3c23dd0209b9e9563ba4c6120d2e1a1ebad4
[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 #ifdef __GLIBC_PREREQ
60 #if __GLIBC_PREREQ(2, 1)
61 #define HAVE_STRCHRNUL
62 #endif
63 #endif
64
65 #ifndef HAVE_STRCHRNUL
66 #define strchrnul gitstrchrnul
67 static inline char *gitstrchrnul(const char *s, int c)
68 {
69         while (*s && *s != c)
70                 s++;
71         return (char *)s;
72 }
73 #endif
74
75 static inline void *zalloc(size_t size)
76 {
77         return calloc(1, size);
78 }
79
80 #define zfree(ptr) ({ free(*ptr); *ptr = NULL; })
81
82 struct dirent;
83 struct strlist;
84
85 int mkdir_p(char *path, mode_t mode);
86 int rm_rf(const char *path);
87 struct strlist *lsdir(const char *name, bool (*filter)(const char *, struct dirent *));
88 bool lsdir_no_dot_filter(const char *name, struct dirent *d);
89 int copyfile(const char *from, const char *to);
90 int copyfile_mode(const char *from, const char *to, mode_t mode);
91 int copyfile_offset(int fromfd, loff_t from_ofs, int tofd, loff_t to_ofs, u64 size);
92
93 unsigned long convert_unit(unsigned long value, char *unit);
94 ssize_t readn(int fd, void *buf, size_t n);
95 ssize_t writen(int fd, void *buf, size_t n);
96
97 struct perf_event_attr;
98
99 void event_attr_init(struct perf_event_attr *attr);
100
101 size_t hex_width(u64 v);
102 int hex2u64(const char *ptr, u64 *val);
103
104 void dump_stack(void);
105 void sighandler_dump_stack(int sig);
106
107 extern unsigned int page_size;
108 extern int cacheline_size;
109 extern int sysctl_perf_event_max_stack;
110 extern int sysctl_perf_event_max_contexts_per_stack;
111
112 struct parse_tag {
113         char tag;
114         int mult;
115 };
116
117 unsigned long parse_tag_value(const char *str, struct parse_tag *tags);
118
119 int perf_event_paranoid(void);
120
121 void mem_bswap_64(void *src, int byte_size);
122 void mem_bswap_32(void *src, int byte_size);
123
124 const char *get_filename_for_perf_kvm(void);
125 bool find_process(const char *name);
126
127 #ifdef HAVE_ZLIB_SUPPORT
128 int gzip_decompress_to_file(const char *input, int output_fd);
129 #endif
130
131 #ifdef HAVE_LZMA_SUPPORT
132 int lzma_decompress_to_file(const char *input, int output_fd);
133 #endif
134
135 int get_stack_size(const char *str, unsigned long *_size);
136
137 int fetch_kernel_version(unsigned int *puint,
138                          char *str, size_t str_sz);
139 #define KVER_VERSION(x)         (((x) >> 16) & 0xff)
140 #define KVER_PATCHLEVEL(x)      (((x) >> 8) & 0xff)
141 #define KVER_SUBLEVEL(x)        ((x) & 0xff)
142 #define KVER_FMT        "%d.%d.%d"
143 #define KVER_PARAM(x)   KVER_VERSION(x), KVER_PATCHLEVEL(x), KVER_SUBLEVEL(x)
144
145 const char *perf_tip(const char *dirpath);
146 int fetch_current_timestamp(char *buf, size_t sz);
147
148 #ifndef HAVE_SCHED_GETCPU_SUPPORT
149 int sched_getcpu(void);
150 #endif
151
152 int timestamp__scnprintf_usec(u64 timestamp, char *buf, size_t sz);
153
154 int unit_number__scnprintf(char *buf, size_t size, u64 n);
155
156 #endif /* GIT_COMPAT_UTIL_H */