Wang Nan | aa61fd0 | 2015-07-21 11:13:34 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2015, Wang Nan <wangnan0@huawei.com> |
| 3 | * Copyright (C) 2015, Huawei Inc. |
| 4 | */ |
| 5 | |
| 6 | #include <stdio.h> |
Wang Nan | d325d78 | 2015-07-14 06:40:02 +0000 | [diff] [blame^] | 7 | #include <sys/utsname.h> |
Wang Nan | aa61fd0 | 2015-07-21 11:13:34 +0000 | [diff] [blame] | 8 | #include "util.h" |
| 9 | #include "debug.h" |
| 10 | #include "llvm-utils.h" |
| 11 | #include "cache.h" |
| 12 | |
| 13 | #define CLANG_BPF_CMD_DEFAULT_TEMPLATE \ |
| 14 | "$CLANG_EXEC -D__KERNEL__ $CLANG_OPTIONS " \ |
| 15 | "$KERNEL_INC_OPTIONS -Wno-unused-value " \ |
| 16 | "-Wno-pointer-sign -working-directory " \ |
| 17 | "$WORKING_DIR -c \"$CLANG_SOURCE\" -target bpf -O2 -o -" |
| 18 | |
| 19 | struct llvm_param llvm_param = { |
| 20 | .clang_path = "clang", |
| 21 | .clang_bpf_cmd_template = CLANG_BPF_CMD_DEFAULT_TEMPLATE, |
| 22 | .clang_opt = NULL, |
| 23 | .kbuild_dir = NULL, |
| 24 | .kbuild_opts = NULL, |
| 25 | }; |
| 26 | |
| 27 | int perf_llvm_config(const char *var, const char *value) |
| 28 | { |
| 29 | if (prefixcmp(var, "llvm.")) |
| 30 | return 0; |
| 31 | var += sizeof("llvm.") - 1; |
| 32 | |
| 33 | if (!strcmp(var, "clang-path")) |
| 34 | llvm_param.clang_path = strdup(value); |
| 35 | else if (!strcmp(var, "clang-bpf-cmd-template")) |
| 36 | llvm_param.clang_bpf_cmd_template = strdup(value); |
| 37 | else if (!strcmp(var, "clang-opt")) |
| 38 | llvm_param.clang_opt = strdup(value); |
| 39 | else if (!strcmp(var, "kbuild-dir")) |
| 40 | llvm_param.kbuild_dir = strdup(value); |
| 41 | else if (!strcmp(var, "kbuild-opts")) |
| 42 | llvm_param.kbuild_opts = strdup(value); |
| 43 | else |
| 44 | return -1; |
| 45 | return 0; |
| 46 | } |
Wang Nan | 4cea3a9 | 2015-06-11 10:31:09 +0000 | [diff] [blame] | 47 | |
| 48 | static int |
| 49 | search_program(const char *def, const char *name, |
| 50 | char *output) |
| 51 | { |
| 52 | char *env, *path, *tmp = NULL; |
| 53 | char buf[PATH_MAX]; |
| 54 | int ret; |
| 55 | |
| 56 | output[0] = '\0'; |
| 57 | if (def && def[0] != '\0') { |
| 58 | if (def[0] == '/') { |
| 59 | if (access(def, F_OK) == 0) { |
| 60 | strlcpy(output, def, PATH_MAX); |
| 61 | return 0; |
| 62 | } |
| 63 | } else if (def[0] != '\0') |
| 64 | name = def; |
| 65 | } |
| 66 | |
| 67 | env = getenv("PATH"); |
| 68 | if (!env) |
| 69 | return -1; |
| 70 | env = strdup(env); |
| 71 | if (!env) |
| 72 | return -1; |
| 73 | |
| 74 | ret = -ENOENT; |
| 75 | path = strtok_r(env, ":", &tmp); |
| 76 | while (path) { |
| 77 | scnprintf(buf, sizeof(buf), "%s/%s", path, name); |
| 78 | if (access(buf, F_OK) == 0) { |
| 79 | strlcpy(output, buf, PATH_MAX); |
| 80 | ret = 0; |
| 81 | break; |
| 82 | } |
| 83 | path = strtok_r(NULL, ":", &tmp); |
| 84 | } |
| 85 | |
| 86 | free(env); |
| 87 | return ret; |
| 88 | } |
| 89 | |
| 90 | #define READ_SIZE 4096 |
| 91 | static int |
| 92 | read_from_pipe(const char *cmd, void **p_buf, size_t *p_read_sz) |
| 93 | { |
| 94 | int err = 0; |
| 95 | void *buf = NULL; |
| 96 | FILE *file = NULL; |
| 97 | size_t read_sz = 0, buf_sz = 0; |
| 98 | |
| 99 | file = popen(cmd, "r"); |
| 100 | if (!file) { |
| 101 | pr_err("ERROR: unable to popen cmd: %s\n", |
| 102 | strerror(errno)); |
| 103 | return -EINVAL; |
| 104 | } |
| 105 | |
| 106 | while (!feof(file) && !ferror(file)) { |
| 107 | /* |
| 108 | * Make buf_sz always have obe byte extra space so we |
| 109 | * can put '\0' there. |
| 110 | */ |
| 111 | if (buf_sz - read_sz < READ_SIZE + 1) { |
| 112 | void *new_buf; |
| 113 | |
| 114 | buf_sz = read_sz + READ_SIZE + 1; |
| 115 | new_buf = realloc(buf, buf_sz); |
| 116 | |
| 117 | if (!new_buf) { |
| 118 | pr_err("ERROR: failed to realloc memory\n"); |
| 119 | err = -ENOMEM; |
| 120 | goto errout; |
| 121 | } |
| 122 | |
| 123 | buf = new_buf; |
| 124 | } |
| 125 | read_sz += fread(buf + read_sz, 1, READ_SIZE, file); |
| 126 | } |
| 127 | |
| 128 | if (buf_sz - read_sz < 1) { |
| 129 | pr_err("ERROR: internal error\n"); |
| 130 | err = -EINVAL; |
| 131 | goto errout; |
| 132 | } |
| 133 | |
| 134 | if (ferror(file)) { |
| 135 | pr_err("ERROR: error occurred when reading from pipe: %s\n", |
| 136 | strerror(errno)); |
| 137 | err = -EIO; |
| 138 | goto errout; |
| 139 | } |
| 140 | |
| 141 | err = WEXITSTATUS(pclose(file)); |
| 142 | file = NULL; |
| 143 | if (err) { |
| 144 | err = -EINVAL; |
| 145 | goto errout; |
| 146 | } |
| 147 | |
| 148 | /* |
| 149 | * If buf is string, give it terminal '\0' to make our life |
| 150 | * easier. If buf is not string, that '\0' is out of space |
| 151 | * indicated by read_sz so caller won't even notice it. |
| 152 | */ |
| 153 | ((char *)buf)[read_sz] = '\0'; |
| 154 | |
| 155 | if (!p_buf) |
| 156 | free(buf); |
| 157 | else |
| 158 | *p_buf = buf; |
| 159 | |
| 160 | if (p_read_sz) |
| 161 | *p_read_sz = read_sz; |
| 162 | return 0; |
| 163 | |
| 164 | errout: |
| 165 | if (file) |
| 166 | pclose(file); |
| 167 | free(buf); |
| 168 | if (p_buf) |
| 169 | *p_buf = NULL; |
| 170 | if (p_read_sz) |
| 171 | *p_read_sz = 0; |
| 172 | return err; |
| 173 | } |
| 174 | |
| 175 | static inline void |
| 176 | force_set_env(const char *var, const char *value) |
| 177 | { |
| 178 | if (value) { |
| 179 | setenv(var, value, 1); |
| 180 | pr_debug("set env: %s=%s\n", var, value); |
| 181 | } else { |
| 182 | unsetenv(var); |
| 183 | pr_debug("unset env: %s\n", var); |
| 184 | } |
| 185 | } |
| 186 | |
| 187 | static void |
| 188 | version_notice(void) |
| 189 | { |
| 190 | pr_err( |
| 191 | " \tLLVM 3.7 or newer is required. Which can be found from http://llvm.org\n" |
| 192 | " \tYou may want to try git trunk:\n" |
| 193 | " \t\tgit clone http://llvm.org/git/llvm.git\n" |
| 194 | " \t\t and\n" |
| 195 | " \t\tgit clone http://llvm.org/git/clang.git\n\n" |
| 196 | " \tOr fetch the latest clang/llvm 3.7 from pre-built llvm packages for\n" |
| 197 | " \tdebian/ubuntu:\n" |
| 198 | " \t\thttp://llvm.org/apt\n\n" |
| 199 | " \tIf you are using old version of clang, change 'clang-bpf-cmd-template'\n" |
| 200 | " \toption in [llvm] section of ~/.perfconfig to:\n\n" |
| 201 | " \t \"$CLANG_EXEC $CLANG_OPTIONS $KERNEL_INC_OPTIONS \\\n" |
| 202 | " \t -working-directory $WORKING_DIR -c $CLANG_SOURCE \\\n" |
| 203 | " \t -emit-llvm -o - | /path/to/llc -march=bpf -filetype=obj -o -\"\n" |
| 204 | " \t(Replace /path/to/llc with path to your llc)\n\n" |
| 205 | ); |
| 206 | } |
| 207 | |
Wang Nan | d325d78 | 2015-07-14 06:40:02 +0000 | [diff] [blame^] | 208 | static int detect_kbuild_dir(char **kbuild_dir) |
| 209 | { |
| 210 | const char *test_dir = llvm_param.kbuild_dir; |
| 211 | const char *prefix_dir = ""; |
| 212 | const char *suffix_dir = ""; |
| 213 | |
| 214 | char *autoconf_path; |
| 215 | struct utsname utsname; |
| 216 | |
| 217 | int err; |
| 218 | |
| 219 | if (!test_dir) { |
| 220 | err = uname(&utsname); |
| 221 | if (err) { |
| 222 | pr_warning("uname failed: %s\n", strerror(errno)); |
| 223 | return -EINVAL; |
| 224 | } |
| 225 | |
| 226 | test_dir = utsname.release; |
| 227 | prefix_dir = "/lib/modules/"; |
| 228 | suffix_dir = "/build"; |
| 229 | } |
| 230 | |
| 231 | err = asprintf(&autoconf_path, "%s%s%s/include/generated/autoconf.h", |
| 232 | prefix_dir, test_dir, suffix_dir); |
| 233 | if (err < 0) |
| 234 | return -ENOMEM; |
| 235 | |
| 236 | if (access(autoconf_path, R_OK) == 0) { |
| 237 | free(autoconf_path); |
| 238 | |
| 239 | err = asprintf(kbuild_dir, "%s%s%s", prefix_dir, test_dir, |
| 240 | suffix_dir); |
| 241 | if (err < 0) |
| 242 | return -ENOMEM; |
| 243 | return 0; |
| 244 | } |
| 245 | free(autoconf_path); |
| 246 | return -ENOENT; |
| 247 | } |
| 248 | |
| 249 | static inline void |
| 250 | get_kbuild_opts(char **kbuild_dir) |
| 251 | { |
| 252 | int err; |
| 253 | |
| 254 | if (!kbuild_dir) |
| 255 | return; |
| 256 | |
| 257 | *kbuild_dir = NULL; |
| 258 | |
| 259 | if (llvm_param.kbuild_dir && !llvm_param.kbuild_dir[0]) { |
| 260 | pr_debug("[llvm.kbuild-dir] is set to \"\" deliberately.\n"); |
| 261 | pr_debug("Skip kbuild options detection.\n"); |
| 262 | return; |
| 263 | } |
| 264 | |
| 265 | err = detect_kbuild_dir(kbuild_dir); |
| 266 | if (err) { |
| 267 | pr_warning( |
| 268 | "WARNING:\tunable to get correct kernel building directory.\n" |
| 269 | "Hint:\tSet correct kbuild directory using 'kbuild-dir' option in [llvm]\n" |
| 270 | " \tsection of ~/.perfconfig or set it to \"\" to suppress kbuild\n" |
| 271 | " \tdetection.\n\n"); |
| 272 | return; |
| 273 | } |
| 274 | } |
| 275 | |
Wang Nan | 4cea3a9 | 2015-06-11 10:31:09 +0000 | [diff] [blame] | 276 | int llvm__compile_bpf(const char *path, void **p_obj_buf, |
| 277 | size_t *p_obj_buf_sz) |
| 278 | { |
| 279 | int err; |
| 280 | char clang_path[PATH_MAX]; |
| 281 | const char *clang_opt = llvm_param.clang_opt; |
| 282 | const char *template = llvm_param.clang_bpf_cmd_template; |
Wang Nan | d325d78 | 2015-07-14 06:40:02 +0000 | [diff] [blame^] | 283 | char *kbuild_dir = NULL; |
Wang Nan | 4cea3a9 | 2015-06-11 10:31:09 +0000 | [diff] [blame] | 284 | void *obj_buf = NULL; |
| 285 | size_t obj_buf_sz; |
| 286 | |
| 287 | if (!template) |
| 288 | template = CLANG_BPF_CMD_DEFAULT_TEMPLATE; |
| 289 | |
| 290 | err = search_program(llvm_param.clang_path, |
| 291 | "clang", clang_path); |
| 292 | if (err) { |
| 293 | pr_err( |
| 294 | "ERROR:\tunable to find clang.\n" |
| 295 | "Hint:\tTry to install latest clang/llvm to support BPF. Check your $PATH\n" |
| 296 | " \tand 'clang-path' option in [llvm] section of ~/.perfconfig.\n"); |
| 297 | version_notice(); |
| 298 | return -ENOENT; |
| 299 | } |
| 300 | |
Wang Nan | d325d78 | 2015-07-14 06:40:02 +0000 | [diff] [blame^] | 301 | /* |
| 302 | * This is an optional work. Even it fail we can continue our |
| 303 | * work. Needn't to check error return. |
| 304 | */ |
| 305 | get_kbuild_opts(&kbuild_dir); |
| 306 | |
Wang Nan | 4cea3a9 | 2015-06-11 10:31:09 +0000 | [diff] [blame] | 307 | force_set_env("CLANG_EXEC", clang_path); |
| 308 | force_set_env("CLANG_OPTIONS", clang_opt); |
| 309 | force_set_env("KERNEL_INC_OPTIONS", NULL); |
Wang Nan | d325d78 | 2015-07-14 06:40:02 +0000 | [diff] [blame^] | 310 | force_set_env("WORKING_DIR", kbuild_dir ? : "."); |
Wang Nan | 4cea3a9 | 2015-06-11 10:31:09 +0000 | [diff] [blame] | 311 | |
| 312 | /* |
| 313 | * Since we may reset clang's working dir, path of source file |
| 314 | * should be transferred into absolute path, except we want |
| 315 | * stdin to be source file (testing). |
| 316 | */ |
| 317 | force_set_env("CLANG_SOURCE", |
| 318 | (path[0] == '-') ? path : |
| 319 | make_nonrelative_path(path)); |
| 320 | |
| 321 | pr_debug("llvm compiling command template: %s\n", template); |
| 322 | err = read_from_pipe(template, &obj_buf, &obj_buf_sz); |
| 323 | if (err) { |
| 324 | pr_err("ERROR:\tunable to compile %s\n", path); |
| 325 | pr_err("Hint:\tCheck error message shown above.\n"); |
| 326 | pr_err("Hint:\tYou can also pre-compile it into .o using:\n"); |
| 327 | pr_err(" \t\tclang -target bpf -O2 -c %s\n", path); |
| 328 | pr_err(" \twith proper -I and -D options.\n"); |
| 329 | goto errout; |
| 330 | } |
| 331 | |
Wang Nan | d325d78 | 2015-07-14 06:40:02 +0000 | [diff] [blame^] | 332 | free(kbuild_dir); |
Wang Nan | 4cea3a9 | 2015-06-11 10:31:09 +0000 | [diff] [blame] | 333 | if (!p_obj_buf) |
| 334 | free(obj_buf); |
| 335 | else |
| 336 | *p_obj_buf = obj_buf; |
| 337 | |
| 338 | if (p_obj_buf_sz) |
| 339 | *p_obj_buf_sz = obj_buf_sz; |
| 340 | return 0; |
| 341 | errout: |
Wang Nan | d325d78 | 2015-07-14 06:40:02 +0000 | [diff] [blame^] | 342 | free(kbuild_dir); |
Wang Nan | 4cea3a9 | 2015-06-11 10:31:09 +0000 | [diff] [blame] | 343 | free(obj_buf); |
| 344 | if (p_obj_buf) |
| 345 | *p_obj_buf = NULL; |
| 346 | if (p_obj_buf_sz) |
| 347 | *p_obj_buf_sz = 0; |
| 348 | return err; |
| 349 | } |