1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310
|
// build/run probes
// Copyright (C) 2005-2025 Red Hat Inc.
//
// This file is part of systemtap, and is free software. You can
// redistribute it and/or modify it under the terms of the GNU General
// Public License (GPL); either version 2, or (at your option) any
// later version.
#include "config.h"
#include "buildrun.h"
#include "session.h"
#include "staputil.h"
#include "hash.h"
#include "translate.h"
#include <cstdlib>
#include <fstream>
#include <sstream>
#include <thread>
extern "C" {
#include <signal.h>
#include <sys/wait.h>
#include <pwd.h>
#include <grp.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include <sys/resource.h>
}
#define PATH_ALLOWED_CHARS "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+,-./_"
using namespace std;
/* Adjust and run make_cmd to build a kernel module. */
static int
run_make_cmd(systemtap_session& s, vector<string>& make_cmd,
bool null_out=false, bool null_err=false)
{
assert_no_interrupts();
// PR14168: we used to unsetenv values here; instead do it via
// env(1) in make_any_make_cmd().
// Disable ccache to avoid saving files that will never be reused.
// (ccache is useless to us, because our compiler commands always
// include the randomized tmpdir path.)
// It's not critical if this fails, so the return is ignored.
(void) setenv("CCACHE_DISABLE", "1", 0);
if (s.verbose > 2)
make_cmd.push_back("V=1");
else if (s.verbose > 1)
make_cmd.push_back("--no-print-directory");
else
{
make_cmd.push_back("-s");
make_cmd.push_back("--no-print-directory");
}
// Exploit SMP parallelism, if available.
long smp = thread::hardware_concurrency();
if (smp <= 0) smp = 1;
// PR16276: but only if we're not running severely nproc-rlimited
struct rlimit rlim;
int rlimit_rc = getrlimit(RLIMIT_NPROC, &rlim);
const unsigned int severely_limited = smp*30; // WAG at number of gcc+make etc. nested processes
bool nproc_limited = (rlimit_rc == 0 && (rlim.rlim_max <= severely_limited ||
rlim.rlim_cur <= severely_limited));
if (smp >= 1 && !nproc_limited)
make_cmd.push_back("-j" + lex_cast(smp+1));
if (strverscmp (s.kernel_base_release.c_str(), "2.6.29") < 0)
{
// Older kernels, before linux commit #fd54f502841c1, include
// gratuitous "echo"s in their Makefile. We need to suppress
// that with this bluntness.
null_out = true;
}
int rc = stap_system (s.verbose, "kbuild", make_cmd, null_out, null_err);
if (rc != 0)
s.set_try_server ();
return rc;
}
static vector<string>
make_any_make_cmd(systemtap_session& s, const string& dir, const string& target)
{
string newpath("PATH=/usr/bin:/bin");
const char *oldpath = getenv("PATH");
if (oldpath != NULL)
{
newpath += ':';
newpath += oldpath;
}
vector<string> make_cmd
{
// PR14168: sanitize environment variables for kbuild invocation
"env", "-uARCH", "-uKBUILD_EXTMOD", "-uCROSS_COMPILE", "-uKBUILD_IMAGE",
"-uKCONFIG_CONFIG", "-uINSTALL_PATH", "-uLD_LIBRARY_PATH", newpath,
"make", "-C", s.kernel_build_tree,
"M=" + dir, // need make-quoting?
target,
// PR13847: suppress debuginfo creation by default
"CONFIG_DEBUG_INFO=",
// linux 5.11 wants btf but no, baby, no
"CONFIG_DEBUG_INFO_BTF_MODULES=",
// PR30716: work around objtool stac/clac warning
"CONFIG_HAVE_UACCESS_VALIDATION=",
// RHBZ1321628: suppress stack validation; expected to be temporary
// "CONFIG_STACK_VALIDATION=",
// PR28140 ... as of kernel 5.14-rc*, this is actively
// dangerous, because it skips the full objtool processing
// chain, and the resulting tracepoint call sites in the ko are
// not properly instrumented. See also Linux commit
// ab3257042c2.
};
// PR10280: suppress symbol versioning to restrict to exact kernel version
//
// XXX (PR24720): this was reported to cause problems on a PPC machine,
// and I've spotted kernel commits (43e24e82f35) which vary the vermagic
// string for PPC. Still, a standard PPC configuration tested fine, so
// I'm cautiously re-enabling this.
if (s.guru_mode)
make_cmd.push_back("CONFIG_MODVERSIONS=");
// Note: can re-enable from command line with "-B CONFIG_MODVERSIONS=y".
// Add architecture, except for old powerpc (RHBZ669082)
if (s.architecture != "powerpc" ||
(strverscmp (s.kernel_base_release.c_str(), "2.6.15") >= 0))
make_cmd.push_back("ARCH=" + s.architecture); // need make-quoting?
// PR29837: Suppress the kernel version warning
make_cmd.push_back("CC_VERSION_TEXT=foo");
make_cmd.push_back("CONFIG_CC_VERSION_TEXT=foo");
// Add any custom kbuild flags
make_cmd.insert(make_cmd.end(), s.kbuildflags.begin(), s.kbuildflags.end());
return make_cmd;
}
static vector<string>
make_make_cmd(systemtap_session& s, const string& dir)
{
vector<string> mc = make_any_make_cmd(s, dir, "modules");
return mc;
}
static vector<string>
make_make_objs_cmd(systemtap_session& s, const string& dir)
{
// Kbuild uses these rules to build external modules:
//
// module-dirs := $(addprefix _module_,$(KBUILD_EXTMOD))
// modules: $(module-dirs)
// @$(kecho) ' Building modules, stage 2.';
// $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost
//
// So if we're only interested in the stage 1 objects, we can
// cheat and make only the $(module-dirs) part.
//
// ... at least, before kernel commit c99f3918cf.
if (strverscmp (s.kernel_base_release.c_str(), "5.4") < 0)
return make_any_make_cmd(s, dir, "_module_" + dir);
else
return make_any_make_cmd(s, dir, "modules"); // just build the lot
}
static void
output_autoconf(systemtap_session& s, ofstream& o,
vector<string>& autoconf_c_files,
const char *autoconf_c, const char *deftrue,
const char *deffalse)
{
autoconf_c_files.push_back (autoconf_c);
o << endl << "$(obj)/" << autoconf_c << ".h:" << endl;
o << "\t";
if (s.verbose < 4)
o << "@";
o << "if $(CHECK_BUILD) $(SYSTEMTAP_RUNTIME)/linux/" << autoconf_c;
if (s.verbose < 5)
o << " > /dev/null 2>&1";
o << "; then ";
if (deftrue)
o << "echo \"#define " << deftrue << " 1\"";
if (deffalse)
o << "; else echo \"#define " << deffalse << " 1\"";
o << "; fi >> $@" << endl;
}
void output_exportconf(systemtap_session& s, ofstream& o, const char *symbol,
const char *deftrue)
{
if (s.kernel_exports.find(symbol) != s.kernel_exports.end())
o << "#define " << deftrue << " 1" << endl;
}
void output_dual_exportconf(systemtap_session& s, ofstream& o,
const char *symbol1, const char *symbol2,
const char *deftrue)
{
if (s.kernel_exports.find(symbol1) != s.kernel_exports.end()
&& s.kernel_exports.find(symbol2) != s.kernel_exports.end())
o << "#define " << deftrue << " 1" << endl;
}
void output_either_exportconf(systemtap_session& s, ofstream& o,
const char *symbol1, const char *symbol2,
const char *deftrue)
{
if (s.kernel_exports.find(symbol1) != s.kernel_exports.end()
|| s.kernel_exports.find(symbol2) != s.kernel_exports.end())
o << "#define " << deftrue << " 1" << endl;
}
static int
compile_dyninst (systemtap_session& s)
{
const string module = s.tmpdir + "/" + s.module_filename();
vector<string> cmd
{
"gcc", "--std=gnu99", s.translated_source, s.symbols_source, "-o", module,
"-fvisibility=hidden", "-O2", "-I" + s.runtime_path, "-D__DYNINST__",
"-Wall", "-Werror", "-Wno-unused", "-Wno-strict-aliasing",
"-Wno-pointer-to-int-cast", "-Wno-int-to-pointer-cast",
"-Wno-pragmas", "-Wno-pointer-sign", "-Wno-format",
"-pthread", "-lrt", "-ldw", "-fPIC", "-shared",
};
// BZ855981/948279. Since dyninst/runtime.h includes __sync_* calls,
// the compiler may generate different code for it depending on -march.
// For example, if the default is i386, we may get references to auxiliary
// functions like __sync_add_and_fetch_4, which appear to be defined
// nowhere. We hack around this problem thusly:
if (s.architecture == "i386")
cmd.push_back("-march=i586");
for (size_t i = 0; i < s.c_macros.size(); ++i)
cmd.push_back("-D" + s.c_macros[i]);
if (s.verbose > 3)
cmd.insert(cmd.end(), { "-ftime-report", "-Q" });
// Add any custom kbuild flags
cmd.insert(cmd.end(), s.kbuildflags.begin(), s.kbuildflags.end());
int rc = stap_system (s.verbose, cmd);
if (rc)
s.set_try_server ();
return rc;
}
int
compile_pass (systemtap_session& s)
{
if (s.runtime_usermode_p())
return compile_dyninst (s);
int rc = uprobes_pass (s);
if (rc)
{
s.set_try_server ();
return rc;
}
// fill in a quick Makefile
string makefile_nm = s.tmpdir + "/Makefile";
ofstream o (makefile_nm.c_str());
string stap_export_basenm = "stapconf_export.h";
string stap_export_nm = s.tmpdir + "/" + stap_export_basenm;
ofstream o2 (stap_export_nm.c_str());
// Create makefile
// Clever hacks copied from vmware modules
string superverbose;
if (s.verbose > 3)
superverbose = "set -x;";
string redirecterrors = "> /dev/null 2>&1";
if (s.verbose > 6)
redirecterrors = "";
// Support O= (or KBUILD_OUTPUT) option
// but flags= filter was removed from kernel scripts/Kbuild.include mid-2019
o << "_KBUILD_CFLAGS := $(call flags,KBUILD_CFLAGS) $(KBUILD_CFLAGS)" << endl;
// Support deprecation of $(EXTRA_CFLAGS); replacement flag available since 3.18ish.
// See linux kernel commits f77bf01425b119 and e966ad0edd005
string extra_cflags = "EXTRA_CFLAGS";
if (strverscmp (s.kernel_base_release.c_str(), "6.15") >= 0)
extra_cflags = "ccflags-y";
o << "stap_check_gcc = $(shell " << superverbose
<< " if $(CC) $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; then "
<< "echo \"$(1)\"; else echo \"$(2)\"; fi)" << endl;
o << "CHECK_BUILD := $(CC) -DMODULE $(NOSTDINC_FLAGS) $(KBUILD_CPPFLAGS) $(CPPFLAGS) "
<< "$(LINUXINCLUDE) $(_KBUILD_CFLAGS) $(CFLAGS_KERNEL) $(" << extra_cflags << ") "
<< "$(CFLAGS) -DKBUILD_BASENAME=\\\"" << s.module_name << "\\\" "
<< "-Wmissing-prototypes " // GCC14 prep, PR31288
<< "-Werror" << " -S -o /dev/null -xc " << endl;
o << "stap_check_build = $(shell " << superverbose << " if $(CHECK_BUILD) $(1) "
<< redirecterrors << " ; then echo \"$(2)\"; else echo \"$(3)\"; fi)" << endl;
o << "SYSTEMTAP_RUNTIME = \"" << s.runtime_path << "\"" << endl;
// "autoconf" options go here
// RHBZ 543529: early rhel6 kernels' module-signing kbuild logic breaks out-of-tree modules
o << "CONFIG_MODULE_SIG := n" << endl;
string module_cflags = extra_cflags;
o << module_cflags << " :=" << endl;
// XXX: This gruesome hack is needed on some kernels built with separate O=directory,
// where files like 2.6.27 x86's asm/mach-*/mach_mpspec.h are not found on the cpp path.
// This could be a bug in arch/x86/Makefile that names
// mflags-y += -Iinclude/asm-x86/mach-default
// but that path does not exist in an O= build tree.
o << module_cflags << " += -Iinclude2/asm/mach-default" << endl;
o << module_cflags << " += -I" + s.kernel_build_tree << endl;
if (s.kernel_source_tree != "")
o << module_cflags << " += -I" + s.kernel_source_tree << endl;
for (unsigned i = 0; i < s.kernel_extra_cflags.size(); i++)
o << module_cflags << " += " + s.kernel_extra_cflags[i] << endl;
// NB: don't try
// o << module_cflags << " += -Iusr/include" << endl;
// since such headers are cleansed of _KERNEL_ pieces that we need
o << module_cflags << " += -Wmissing-prototypes" << endl; // GCC14 prep, PR31288
o << "STAPCONF_HEADER := " << "$(obj)/" << s.stapconf_name << endl;
// PR32607 check if the stapconf_HASH file is already present, i.e. reused from the cache.
// If os, then we don't need to emit any of the autoc
vector<string> cs; // to hold autoconf C file names
output_autoconf(s, o, cs, "autoconf-nsset-complete.c", "STAPCONF_NSSET_COMPLETE", NULL);
output_autoconf(s, o, cs, "autoconf-d-real-inode.c", "STAPCONF_D_REAL_INODE", NULL);
output_autoconf(s, o, cs, "autoconf-hrtimer-rel.c", "STAPCONF_HRTIMER_REL", NULL);
output_exportconf(s, o2, "hrtimer_get_res", "STAPCONF_HRTIMER_GET_RES");
output_autoconf(s, o, cs, "autoconf-generated-compile.c", "STAPCONF_GENERATED_COMPILE", NULL);
output_autoconf(s, o, cs, "autoconf-hrtimer-getset-expires.c", "STAPCONF_HRTIMER_GETSET_EXPIRES", NULL);
output_autoconf(s, o, cs, "autoconf-inode-private.c", "STAPCONF_INODE_PRIVATE", NULL);
output_autoconf(s, o, cs, "autoconf-inode-rwsem.c", "STAPCONF_INODE_RWSEM", NULL);
output_autoconf(s, o, cs, "autoconf-constant-tsc.c", "STAPCONF_CONSTANT_TSC", NULL);
output_autoconf(s, o, cs, "autoconf-ktime-get-real.c", "STAPCONF_KTIME_GET_REAL", NULL);
output_exportconf(s, o2, "ktime_get_real_fast_ns", "STAPCONF_KTIME_GET_REAL_FAST_NS");
output_autoconf(s, o, cs, "autoconf-x86-uniregs.c", "STAPCONF_X86_UNIREGS", NULL);
output_autoconf(s, o, cs, "autoconf-nameidata.c", "STAPCONF_NAMEIDATA_CLEANUP", NULL);
output_dual_exportconf(s, o2, "unregister_kprobes", "unregister_kretprobes", "STAPCONF_UNREGISTER_KPROBES");
output_autoconf(s, o, cs, "autoconf-kprobe-symbol-name.c", "STAPCONF_KPROBE_SYMBOL_NAME", NULL);
output_autoconf(s, o, cs, "autoconf-real-parent.c", "STAPCONF_REAL_PARENT", NULL);
output_autoconf(s, o, cs, "autoconf-uaccess.c", "STAPCONF_LINUX_UACCESS_H", NULL);
output_autoconf(s, o, cs, "autoconf-oneachcpu-retry.c", "STAPCONF_ONEACHCPU_RETRY", NULL);
output_autoconf(s, o, cs, "autoconf-dpath-path.c", "STAPCONF_DPATH_PATH", NULL);
output_exportconf(s, o2, "synchronize_kernel", "STAPCONF_SYNCHRONIZE_KERNEL");
output_exportconf(s, o2, "synchronize_rcu", "STAPCONF_SYNCHRONIZE_RCU");
output_exportconf(s, o2, "synchronize_sched", "STAPCONF_SYNCHRONIZE_SCHED");
output_autoconf(s, o, cs, "autoconf-task-uid.c", "STAPCONF_TASK_UID", NULL);
output_autoconf(s, o, cs, "autoconf-from_kuid_munged.c", "STAPCONF_FROM_KUID_MUNGED", NULL);
output_exportconf(s, o2, "get_mm_exe_file", "STAPCONF_GET_MM_EXE_FILE_EXPORTED");
output_dual_exportconf(s, o2, "alloc_vm_area", "free_vm_area", "STAPCONF_VM_AREA");
output_autoconf(s, o, cs, "autoconf-procfs-owner.c", "STAPCONF_PROCFS_OWNER", NULL);
output_autoconf(s, o, cs, "autoconf-alloc-percpu-align.c", "STAPCONF_ALLOC_PERCPU_ALIGN", NULL);
output_autoconf(s, o, cs, "autoconf-set_fs.c", "STAPCONF_SET_FS", NULL);
output_autoconf(s, o, cs, "autoconf-x86-fs.c", "STAPCONF_X86_FS", NULL);
output_autoconf(s, o, cs, "autoconf-x86-xfs.c", "STAPCONF_X86_XFS", NULL);
output_autoconf(s, o, cs, "autoconf-x86-gs.c", "STAPCONF_X86_GS", NULL);
output_autoconf(s, o, cs, "autoconf-grsecurity.c", "STAPCONF_GRSECURITY", NULL);
output_autoconf(s, o, cs, "autoconf-trace-printk.c", "STAPCONF_TRACE_PRINTK", NULL);
output_autoconf(s, o, cs, "autoconf-regset.c", "STAPCONF_REGSET", NULL);
output_autoconf(s, o, cs, "autoconf-hlist-4args.c", "STAPCONF_HLIST_4ARGS", NULL);
output_autoconf(s, o, cs, "autoconf-get-kretprobe.c", "STAPCONF_GET_KRETPROBE", NULL);
output_exportconf(s, o2, "tsc_khz", "STAPCONF_TSC_KHZ");
output_exportconf(s, o2, "cpu_khz", "STAPCONF_CPU_KHZ");
output_exportconf(s, o2, "__module_text_address", "STAPCONF_MODULE_TEXT_ADDRESS");
output_exportconf(s, o2, "add_timer_on", "STAPCONF_ADD_TIMER_ON");
output_autoconf(s, o, cs, "autoconf-514-panic.c", "STAPCONF_514_PANIC", NULL);
output_autoconf(s, o, cs, "autoconf-task_work_cancel_func.c", "STAPCONF_TASK_WORK_CANCEL_FUNC", NULL);
output_autoconf(s, o, cs, "autoconf-pr32194-uprobe-register-unregister.c", "STAPCONF_PR32194_UPROBE_REGISTER_UNREGISTER", NULL);
output_autoconf(s, o, cs, "autoconf-uprobes-cb-data.c", "STAPCONF_UPROBES_CB_DATA", NULL);
output_dual_exportconf(s, o2, "probe_kernel_read", "probe_kernel_write", "STAPCONF_PROBE_KERNEL");
output_autoconf(s, o, cs, "autoconf-hw_breakpoint_context.c",
"STAPCONF_HW_BREAKPOINT_CONTEXT", NULL);
output_exportconf(s, o2, "save_stack_trace_regs", "STAPCONF_SAVE_STACK_TRACE_REGS_EXPORTED");
output_autoconf(s, o, cs, "autoconf-stacktrace_h.c",
"STAPCONF_STACKTRACE_H", NULL);
output_autoconf(s, o, cs, "autoconf-save-stack-trace.c",
"STAPCONF_KERNEL_STACKTRACE", NULL);
output_autoconf(s, o, cs, "autoconf-save-stack-trace-no-bp.c",
"STAPCONF_KERNEL_STACKTRACE_NO_BP", NULL);
output_autoconf(s, o, cs, "autoconf-unwind-stack-trace.c",
"STAPCONF_KERNEL_UNWIND_STACK", NULL);
output_autoconf(s, o, cs, "autoconf-asm-syscall.c",
"STAPCONF_ASM_SYSCALL_H", NULL);
output_autoconf(s, o, cs, "autoconf-syscall_get_args_3args.c",
"STAPCONF_SYSCALL_GET_ARGS_3ARGS", NULL);
output_autoconf(s, o, cs, "autoconf-ring_buffer-flags.c", "STAPCONF_RING_BUFFER_FLAGS", NULL);
output_autoconf(s, o, cs, "autoconf-ring_buffer_lost_events.c", "STAPCONF_RING_BUFFER_LOST_EVENTS", NULL);
output_autoconf(s, o, cs, "autoconf-ring_buffer_read_prepare.c", "STAPCONF_RING_BUFFER_READ_PREPARE", NULL);
output_exportconf(s, o2, "kallsyms_on_each_symbol", "STAPCONF_KALLSYMS_ON_EACH_SYMBOL_EXPORTED");
output_autoconf(s, o, cs, "autoconf-walk-stack.c", "STAPCONF_WALK_STACK", NULL);
output_autoconf(s, o, cs, "autoconf-stacktrace_ops-warning.c",
"STAPCONF_STACKTRACE_OPS_WARNING", NULL);
output_autoconf(s, o, cs, "autoconf-stacktrace_ops-int-address.c",
"STAPCONF_STACKTRACE_OPS_INT_ADDRESS", NULL);
output_autoconf(s, o, cs, "autoconf-mm-context-vdso.c", "STAPCONF_MM_CONTEXT_VDSO", NULL);
output_autoconf(s, o, cs, "autoconf-mm-context-vdso-base.c", "STAPCONF_MM_CONTEXT_VDSO_BASE", NULL);
output_autoconf(s, o, cs, "autoconf-genhd.c", "STAPCONF_GENHD_H", NULL);
output_autoconf(s, o, cs, "autoconf-blk-types.c", "STAPCONF_BLK_TYPES", NULL);
output_autoconf(s, o, cs, "autoconf-perf-structpid.c", "STAPCONF_PERF_STRUCTPID", NULL);
output_autoconf(s, o, cs, "perf_event_counter_context.c",
"STAPCONF_PERF_COUNTER_CONTEXT", NULL);
output_autoconf(s, o, cs, "perf_probe_handler_nmi.c",
"STAPCONF_PERF_HANDLER_NMI", NULL);
output_exportconf(s, o2, "path_lookup", "STAPCONF_PATH_LOOKUP");
output_exportconf(s, o2, "kern_path_parent", "STAPCONF_KERN_PATH_PARENT");
output_exportconf(s, o2, "vfs_path_lookup", "STAPCONF_VFS_PATH_LOOKUP");
output_exportconf(s, o2, "kern_path", "STAPCONF_KERN_PATH");
output_exportconf(s, o2, "proc_create_data", "STAPCONF_PROC_CREATE_DATA");
output_autoconf(s, o, cs, "autoconf-proc_ops.c", "STAPCONF_PROC_OPS", NULL);
output_exportconf(s, o2, "PDE_DATA", "STAPCONF_PDE_DATA");
output_autoconf(s, o, cs, "autoconf-pde_data.c", "STAPCONF_PDE_DATA2", NULL);
output_autoconf(s, o, cs, "autoconf-module-sect-attrs.c", "STAPCONF_MODULE_SECT_ATTRS", NULL);
output_autoconf(s, o, cs, "autoconf-kernel_read-new-args.c", "STAPCONF_KERNEL_READ_NEW_ARGS", NULL);
output_autoconf(s, o, cs, "autoconf-utrace-via-tracepoints.c", "STAPCONF_UTRACE_VIA_TRACEPOINTS", NULL);
output_autoconf(s, o, cs, "autoconf-utrace-via-tracepoints2.c", "STAPCONF_UTRACE_VIA_TRACEPOINTS2", NULL);
output_autoconf(s, o, cs, "autoconf-task_work-struct.c", "STAPCONF_TASK_WORK_STRUCT", NULL);
output_autoconf(s, o, cs, "autoconf-twa_resume.c", "STAPCONF_TWA_RESUME", NULL);
output_autoconf(s, o, cs, "autoconf-vm-area-pte.c", "STAPCONF_VM_AREA_PTE", NULL);
output_autoconf(s, o, cs, "autoconf-relay-umode_t.c", "STAPCONF_RELAY_UMODE_T", NULL);
output_autoconf(s, o, cs, "autoconf-relay_buf-per_cpu_ptr.c", "STAPCONF_RELAY_BUF_PER_CPU_PTR", NULL);
output_autoconf(s, o, cs, "autoconf-fs_supers-hlist.c", "STAPCONF_FS_SUPERS_HLIST", NULL);
output_autoconf(s, o, cs, "autoconf-compat_sigaction.c", "STAPCONF_COMPAT_SIGACTION", NULL);
output_autoconf(s, o, cs, "autoconf-netfilter.c", "STAPCONF_NETFILTER_V313", NULL);
output_autoconf(s, o, cs, "autoconf-netfilter-313b.c", "STAPCONF_NETFILTER_V313B", NULL);
output_autoconf(s, o, cs, "autoconf-netfilter-4_1.c", "STAPCONF_NETFILTER_V41", NULL);
output_autoconf(s, o, cs, "autoconf-netfilter-4_4.c", "STAPCONF_NETFILTER_V44", NULL);
output_autoconf(s, o, cs, "autoconf-smpcall-5args.c", "STAPCONF_SMPCALL_5ARGS", NULL);
output_autoconf(s, o, cs, "autoconf-smpcall-4args.c", "STAPCONF_SMPCALL_4ARGS", NULL);
output_autoconf(s, o, cs, "autoconf-access_ok_2args.c", "STAPCONF_ACCESS_OK_2ARGS", NULL);
output_autoconf(s, o, cs, "autoconf-uapi-mount.c", "STAPCONF_UAPI_LINUX_MOUNT_H", NULL);
output_autoconf(s, o, cs, "autoconf-time32.c", "STAPCONF_TIME32_H", NULL);
output_autoconf(s, o, cs, "autoconf-time32-old.c", "STAPCONF_TIME32_OLD_H", NULL);
output_autoconf(s, o, cs, "autoconf-compat-utimbuf.c", "STAPCONF_COMPAT_UTIMBUF", NULL);
output_exportconf(s, o2, "lookup_noperm", "STAPCONF_LOOKUP_NOPERM");
// used by tapset/timestamp_monotonic.stp
output_autoconf(s, o, cs, "autoconf-cpu-clock.c", "STAPCONF_CPU_CLOCK", NULL);
output_autoconf(s, o, cs, "autoconf-local-clock.c", "STAPCONF_LOCAL_CLOCK", NULL);
// used by tapset/linux/proc_mem.stp
output_autoconf(s, o, cs, "autoconf-mm-shmempages.c", "STAPCONF_MM_SHMEMPAGES", NULL);
// used by userland memory reads
output_autoconf(s, o, cs, "autoconf-nmi-uaccess-okay.c", "STAPCONF_NMI_UACCESS_OKAY", NULL);
output_autoconf(s, o, cs, "autoconf-asm-access-ok.c", "STAPCONF_ASM_ACCESS_OK", NULL);
output_autoconf(s, o, cs, "autoconf-user-access-begin-2-args.c", "STAPCONF_USER_ACCESS_BEGIN_2_ARGS", NULL);
output_autoconf(s, o, cs, "autoconf-user-access-begin-3-args.c", "STAPCONF_USER_ACCESS_BEGIN_3_ARGS", NULL);
output_autoconf(s, o, cs, "autoconf-user-access-end.c", "STAPCONF_USER_ACCESS_END", NULL);
output_autoconf(s, o, cs, "autoconf-asm-tlbflush-h.c", "STAPCONF_ASM_TLBFLUSH_H", NULL);
// used by runtime/uprobe-inode.c
output_either_exportconf(s, o2, "uprobe_register", "register_uprobe",
"STAPCONF_UPROBE_REGISTER_EXPORTED");
output_either_exportconf(s, o2, "uprobe_unregister", "unregister_uprobe",
"STAPCONF_UPROBE_UNREGISTER_EXPORTED");
output_autoconf(s, o, cs, "autoconf-old-inode-uprobes.c", "STAPCONF_OLD_INODE_UPROBES", NULL);
output_autoconf(s, o, cs, "autoconf-inode-uretprobes.c", "STAPCONF_INODE_URETPROBES", NULL);
// used by tapsets.cxx inode uprobe generated code
output_exportconf(s, o2, "uprobe_get_swbp_addr", "STAPCONF_UPROBE_GET_SWBP_ADDR_EXPORTED");
// used by runtime/loc2c-runtime.h
output_exportconf(s, o2, "task_user_regset_view", "STAPCONF_TASK_USER_REGSET_VIEW_EXPORTED");
// used by runtime/stp_utrace.c
output_exportconf(s, o2, "task_work_add", "STAPCONF_TASK_WORK_ADD_EXPORTED");
output_exportconf(s, o2, "task_work_cancel", "STAPCONF_TASK_WORK_CANCEL_EXPORTED");
output_exportconf(s, o2, "wake_up_state", "STAPCONF_WAKE_UP_STATE_EXPORTED");
output_exportconf(s, o2, "try_to_wake_up", "STAPCONF_TRY_TO_WAKE_UP_EXPORTED");
output_exportconf(s, o2, "signal_wake_up_state", "STAPCONF_SIGNAL_WAKE_UP_STATE_EXPORTED");
output_exportconf(s, o2, "signal_wake_up", "STAPCONF_SIGNAL_WAKE_UP_EXPORTED");
output_exportconf(s, o2, "__lock_task_sighand", "STAPCONF___LOCK_TASK_SIGHAND_EXPORTED");
output_autoconf(s, o, cs, "autoconf-pagefault_disable.c", "STAPCONF_PAGEFAULT_DISABLE", NULL);
output_exportconf(s, o2, "kallsyms_lookup_name", "STAPCONF_KALLSYMS_LOOKUP_NAME_EXPORTED");
output_autoconf(s, o, cs, "autoconf-kallsyms_6_3.c", "STAPCONF_KALLSYMS_6_3", NULL);
output_autoconf(s, o, cs, "autoconf-kallsyms_6_4.c", "STAPCONF_KALLSYMS_6_4", NULL);
output_autoconf(s, o, cs, "autoconf-uidgid.c", "STAPCONF_LINUX_UIDGID_H", NULL);
output_exportconf(s, o2, "sigset_from_compat", "STAPCONF_SIGSET_FROM_COMPAT_EXPORTED");
// RHBZ1233912 - s390 temporary workaround for non-atomic udelay()
output_exportconf(s, o2, "udelay_simple", "STAPCONF_UDELAY_SIMPLE_EXPORTED");
output_autoconf(s, o, cs, "autoconf-udelay_simple.c", "STAPCONF_UDELAY_SIMPLE",
NULL);
// RHBZ1788662 - need rcu_is_watching()
output_autoconf(s, o, cs, "autoconf-rcu_is_watching.c", "STAPCONF_RCU_IS_WATCHING", NULL);
output_autoconf(s, o, cs, "autoconf-tracepoint-has-data.c", "STAPCONF_TRACEPOINT_HAS_DATA", NULL);
output_autoconf(s, o, cs, "autoconf-tracepoint-strings.c", "STAPCONF_TRACEPOINT_STRINGS", NULL);
output_autoconf(s, o, cs, "autoconf-timerfd.c", "STAPCONF_TIMERFD_H", NULL);
output_autoconf(s, o, cs, "autoconf-module_layout.c",
"STAPCONF_MODULE_LAYOUT", NULL);
output_autoconf(s, o, cs, "autoconf-module_memory.c",
"STAPCONF_MODULE_MEMORY", NULL);
output_autoconf(s, o, cs, "autoconf-mod_kallsyms.c",
"STAPCONF_MOD_KALLSYMS", NULL);
output_exportconf(s, o2, "get_user_pages_remote", "STAPCONF_GET_USER_PAGES_REMOTE");
output_autoconf(s, o, cs, "autoconf-get_user_pages_remote-flags.c",
"STAPCONF_GET_USER_PAGES_REMOTE_FLAGS", NULL);
output_autoconf(s, o, cs, "autoconf-get_user_pages_remote-flags_locked.c",
"STAPCONF_GET_USER_PAGES_REMOTE_FLAGS_LOCKED", NULL);
output_autoconf(s, o, cs, "autoconf-get_user_pages_remote-notask_struct.c",
"STAPCONF_GET_USER_PAGES_REMOTE_NOTASK_STRUCT", NULL);
output_autoconf(s, o, cs, "autoconf-get_user_pages-flags.c",
"STAPCONF_GET_USER_PAGES_FLAGS", NULL);
output_autoconf(s, o, cs, "autoconf-get_user_pages-notask_struct.c",
"STAPCONF_GET_USER_PAGES_NOTASK_STRUCT", NULL);
output_autoconf(s, o, cs, "autoconf-get_user_page_vma_remote.c",
"STAPCONF_GET_USER_PAGE_VMA_REMOTE", NULL);
output_autoconf(s, o, cs, "autoconf-bio-bi_opf.c", "STAPCONF_BIO_BI_OPF", NULL);
output_autoconf(s, o, cs, "autoconf-linux-sched_headers.c",
"STAPCONF_LINUX_SCHED_HEADERS", NULL);
output_autoconf(s, o, cs, "autoconf-stack-trace-save-regs.c",
"STAPCONF_STACK_TRACE_SAVE_REGS", NULL);
output_autoconf(s, o, cs, "autoconf-mmap_lock.c",
"STAPCONF_MMAP_LOCK", NULL);
output_autoconf(s, o, cs, "autoconf-atomic_fetch_add_unless.c",
"STAPCONF_ATOMIC_FETCH_ADD_UNLESS", NULL);
output_autoconf(s, o, cs, "autoconf-lockdown-debugfs.c", "STAPCONF_LOCKDOWN_DEBUGFS", NULL);
output_autoconf(s, o, cs, "autoconf-lockdown-kernel.c", "STAPCONF_LOCKDOWN_KERNEL", NULL);
output_autoconf(s, o, cs, "autoconf-hlist_add_tail_rcu.c",
"STAPCONF_HLIST_ADD_TAIL_RCU", NULL);
output_autoconf(s, o, cs, "autoconf-files_lookup_fd_raw.c",
"STAPCONF_FILES_LOOKUP_FD_RAW", NULL);
output_autoconf(s, o, cs, "autoconf-task-state.c", "STAPCONF_TASK_STATE", NULL);
output_autoconf(s, o, cs, "autoconf-linux-unaligned-h.c", "STAPCONF_LINUX_UNALIGNED_H", NULL);
output_autoconf(s, o, cs, "autoconf-hrtimer_init.c", "STAPCONF_HRTIMER_INIT", NULL);
output_autoconf(s, o, cs, "autoconf-del_timer_sync.c", "STAPCONF_DEL_TIMER_SYNC", NULL);
// used by runtime/linux/netfilter.c
output_exportconf(s, o2, "nf_register_hook", "STAPCONF_NF_REGISTER_HOOK");
// runtime/linux/kprobes.c
output_exportconf(s, o2, "module_mutex", "STAPCONF_MODULE_MUTEX");
// used by tapset/linux/ioblock.stp
output_exportconf(s, o2, "disk_get_part", "STAPCONF_DISK_GET_PART");
o2.close ();
// PR32607: check if the stapconf_HASH file is already present,
// i.e. reused from the cache, and emplaced by
// get_stapconf_from_cache(). If so, then we don't need to emit the
// autoconf dependency list here at all, thus the thing won't
// attempt to trigger repeated tests from the autoconf* deps listed
// above.
string stapconf_dest_path = s.tmpdir + "/" + s.stapconf_name;
ifstream flub (stapconf_dest_path);
if (flub.good()) {
// already computed
} else {
// PR32458 (!) Build the combined conf header as an ordinary
// dependency of the module.o file. Don't invoke a sub-$(MAKE) with
// crude command line parsing.
o << "$(STAPCONF_HEADER): " << "$(obj)/" << stap_export_basenm;
for (unsigned i=0; i<cs.size(); i++)
o << " " << "$(obj)/" << cs[i] << ".h";
o << endl;
o << "\t";
if (s.verbose < 4)
o << "@";
o << "cat $^ > $(STAPCONF_HEADER)" << endl;
}
o << "$(obj)/" << s.module_name <<".o : $(STAPCONF_HEADER)" << endl;
o << module_cflags << " += -include $(STAPCONF_HEADER)" << endl;
for (unsigned i=0; i<s.c_macros.size(); i++)
o << extra_cflags << " += -D " << lex_cast_qstring(s.c_macros[i]) << endl; // XXX right quoting?
if (s.verbose > 3)
o << extra_cflags << " += -ftime-report -Q" << endl;
// XXX: unfortunately, -save-temps can't work since linux kbuild cwd
// is not writable.
//
// if (s.keep_tmpdir)
// o << "CFLAGS += -fverbose-asm -save-temps" << endl;
// Kernels can be compiled with CONFIG_CC_OPTIMIZE_FOR_SIZE to select
// -Os, otherwise -O2 is the default.
o << extra_cflags << " += -freorder-blocks" << endl; // improve on -Os
// Generate eh_frame for self-backtracing
// FIXME Work around the issue with riscv kernel modules not being
// loadable with asynchronous unwind tables due to R_RISCV_32_PCREL
// relocations.
//
// Also: PR30396, -fcf-protection=branch & objtool --ibt on linux 6.3 causes
// eh_frame bad-reloc warnings from kbuild.
//
if (s.architecture != "riscv" && s.kernel_config["CONFIG_CC_HAS_IBT"] != "y")
o << extra_cflags << " += -fasynchronous-unwind-tables" << endl;
// We used to allow the user to override default optimization when so
// requested by adding a -O[0123s] so they could determine the
// time/space/speed tradeoffs themselves, but we cannot guantantee that
// the (un)optimized code actually compiles and/or generates functional
// code, so we had to remove it.
// o << extra_cflags << " += " << s.gcc_flags << endl; // Add -O[0123s]
// o << "CFLAGS += -fno-unit-at-a-time" << endl;
// gcc 5.0.0-0.13.fc23 ipa-icf seems to consume gigacpu on stap-generated code
o << extra_cflags << " += $(call cc-option,-fno-ipa-icf)" << endl;
// Assumes linux 2.6 kbuild
o << extra_cflags << " += -Wno-unused " << "-Werror" << endl;
#if CHECK_POINTER_ARITH_PR5947
o << extra_cflags << " += -Wpointer-arith" << endl;
#endif
// Accept extra diagnostic-suppression pragmas etc.
o << extra_cflags << " += -Wno-pragmas" << endl;
// Suppress gcc12 diagnostic bug in kernel-devel for 5.16ish
o << extra_cflags << " += $(call cc-option,-Wno-infinite-recursion)" << endl;
// Suppress gcc12 diagnostic about STAP_KPROBE_PROBE_STR_* null checks
o << extra_cflags << " += -Wno-address" << endl;
// PR25845: Recent gcc (seen on 9.3.1) warns fairly common 32-bit pointer-conversions:
o << extra_cflags << " += $(call cc-option,-Wno-pointer-to-int-cast)" << endl;
o << extra_cflags << " += $(call cc-option,-Wno-int-to-pointer-cast)" << endl;
// TODO: Some tests also suffer from -Werror=overflow. That seems like a warning requiring a tiny bit more care.
// If we've got a reasonable runtime path from the user, we'll just
// do '-IDIR'. If there are any sneaky/odd characters in it, we'll
// have to quote it, like '-I"DIR"'.
if (s.runtime_path.find_first_not_of(PATH_ALLOWED_CHARS, 0) == string::npos)
o << extra_cflags << " += -I" << s.runtime_path << endl;
else
{
s.print_warning("quoting runtime path in the module Makefile.");
o << extra_cflags << " += -I\"" << s.runtime_path << "\"" << endl;
}
// XXX: this may help ppc toc overflow
// o << "CFLAGS := $(subst -Os,-O2,$(CFLAGS)) -fminimal-toc" << endl;
o << "obj-m := " << s.module_name << ".o" << endl;
// print out all the auxiliary source (->object) file names
o << s.module_name << "-y := ";
for (unsigned i=0; i<s.auxiliary_outputs.size(); i++)
{
if (s.auxiliary_outputs[i]->trailer_p) continue;
string srcname = s.auxiliary_outputs[i]->filename;
assert (srcname != "" && srcname.rfind('/') != string::npos);
string objname = srcname.substr(srcname.rfind('/')+1); // basename
assert (objname != "" && objname[objname.size()-1] == 'c');
objname[objname.size()-1] = 'o'; // now objname
o << " " + objname;
}
// and once again, for the translated_source file. It can't simply
// be named MODULENAME.c, since kbuild doesn't allow a foo.ko file
// consisting of multiple .o's to have foo.o/foo.c as a source.
// (It uses ld -r -o foo.o EACH.o EACH.o).
{
string srcname = s.translated_source;
assert (srcname != "" && srcname.rfind('/') != string::npos);
string objname = srcname.substr(srcname.rfind('/')+1); // basename
assert (objname != "" && objname[objname.size()-1] == 'c');
objname[objname.size()-1] = 'o'; // now objname
o << " " + objname;
}
// and once again, for the trailer type auxiliary outputs.
for (unsigned i=0; i<s.auxiliary_outputs.size(); i++)
{
if (! s.auxiliary_outputs[i]->trailer_p) continue;
string srcname = s.auxiliary_outputs[i]->filename;
assert (srcname != "" && srcname.rfind('/') != string::npos);
string objname = srcname.substr(srcname.rfind('/')+1); // basename
assert (objname != "" && objname[objname.size()-1] == 'c');
objname[objname.size()-1] = 'o'; // now objname
o << " " + objname;
}
o << " stap_symbols.o" << endl;
o << "$(obj)/stap_symbols.o: $(STAPCONF_HEADER)" << endl;
// add all stapconf dependencies
string translated = s.translated_source;
translated = translated.substr(translated.rfind('/')+1); // basename
translated[translated.size()-1] = 'o';
o << "$(obj)/" << translated << ": $(STAPCONF_HEADER)" << endl;
translated[translated.size()-1] = 'i';
o << "$(obj)/" << translated << ": $(STAPCONF_HEADER)" << endl;
for (unsigned i=0; i<s.auxiliary_outputs.size(); i++) {
translated = s.auxiliary_outputs[i]->filename;
translated = translated.substr(translated.rfind('/')+1); // basename
translated[translated.size()-1] = 'o';
o << "$(obj)/" << translated << ": $(STAPCONF_HEADER)" << endl;
}
o.close ();
// Generate module directory pathname and make sure it exists.
string module_dir = s.kernel_build_tree;
string module_dir_makefile = module_dir + "/Makefile";
struct stat st;
rc = stat(module_dir_makefile.c_str(), &st);
if (rc != 0)
{
clog << _F("Checking \" %s \" failed with error: %s\nEnsure kernel development headers & makefiles are installed.",
module_dir_makefile.c_str(), strerror(errno)) << endl;
s.set_try_server ();
return rc;
}
// Run make
vector<string> make_cmd = make_make_cmd(s, s.tmpdir);
if (false && s.keep_tmpdir) // PR32458: kbuild 6.13+ can't abide multiple make targets
{
string E_source = s.translated_source.substr(s.translated_source.find_last_of("/")+1);
E_source.at(E_source.length() - 1) = 'i'; // overwrite the last character
make_cmd.push_back(E_source);
}
rc = run_make_cmd(s, make_cmd);
if (rc)
s.set_try_server ();
return rc;
}
/*
* If uprobes was built as part of the kernel build (either built-in
* or as a module), the uprobes exports should show up. This is to be
* as distinct from the stap-built uprobes.ko from the runtime.
*/
static bool
kernel_built_uprobes (systemtap_session& s)
{
if (s.runtime_usermode_p())
return true; // sort of, via dyninst
// see also tapsets.cxx:kernel_supports_inode_uprobes()
return ((s.kernel_config["CONFIG_ARCH_SUPPORTS_UPROBES"] == "y" && s.kernel_config["CONFIG_UPROBES"] == "y") ||
(s.kernel_exports.find("unregister_uprobe") != s.kernel_exports.end()));
}
static int
make_uprobes (systemtap_session& s)
{
if (s.verbose > 1)
clog << _("Pass 4, preamble: (re)building SystemTap's version of uprobes.")
<< endl;
// create a subdirectory for the uprobes module
string dir(s.tmpdir + "/uprobes");
if (create_dir(dir.c_str()) != 0)
{
s.print_warning("failed to create directory for build uprobes.");
s.set_try_server ();
return 1;
}
// create a simple Makefile
string makefile(dir + "/Makefile");
ofstream omf(makefile.c_str());
omf << "obj-m := uprobes.o" << endl;
// RHBZ 655231: later rhel6 kernels' module-signing kbuild logic breaks out-of-tree modules
omf << "CONFIG_MODULE_SIG := n" << endl;
omf.close();
// create a simple #include-chained source file
string runtimesourcefile(s.runtime_path + "/linux/uprobes/uprobes.c");
string sourcefile(dir + "/uprobes.c");
ofstream osrc(sourcefile.c_str());
osrc << "#include \"" << runtimesourcefile << "\"" << endl;
// pass --modinfo k=v to uprobes build too
for (unsigned i = 0; i < s.modinfos.size(); i++)
{
const string& mi = s.modinfos[i];
size_t loc = mi.find('=');
string tag = mi.substr (0, loc);
string value = mi.substr (loc+1);
osrc << "MODULE_INFO(" << tag << "," << lex_cast_qstring(value) << ");" << endl;
}
osrc.close();
// make the module
vector<string> make_cmd = make_make_cmd(s, dir);
int rc = run_make_cmd(s, make_cmd);
if (!rc && !copy_file(dir + "/Module.symvers",
s.tmpdir + "/Module.symvers"))
rc = -1;
if (s.verbose > 1)
clog << _("uprobes rebuild exit code: ") << rc << endl;
if (rc)
s.set_try_server ();
else
s.uprobes_path = dir + "/uprobes.ko";
return rc;
}
static bool
get_cached_uprobes(systemtap_session& s)
{
s.uprobes_hash = s.use_cache ? find_uprobes_hash(s) : "";
if (!s.uprobes_hash.empty())
{
// NB: We always put uprobes.ko in its own directory, especially so
// stap-serverd can more easily locate it.
string dir(s.tmpdir + "/uprobes");
if (create_dir(dir.c_str()) != 0)
return false;
string cacheko = s.uprobes_hash + ".ko";
string tmpko = dir + "/uprobes.ko";
// The symvers file still needs to go in the script module's directory.
string cachesyms = s.uprobes_hash + ".symvers";
string tmpsyms = s.tmpdir + "/Module.symvers";
if (get_file_size(cacheko) > 0 && copy_file(cacheko, tmpko) &&
get_file_size(cachesyms) > 0 && copy_file(cachesyms, tmpsyms))
{
s.uprobes_path = tmpko;
return true;
}
}
return false;
}
static void
set_cached_uprobes(systemtap_session& s)
{
if (s.use_cache && !s.uprobes_hash.empty())
{
string cacheko = s.uprobes_hash + ".ko";
string tmpko = s.tmpdir + "/uprobes/uprobes.ko";
copy_file(tmpko, cacheko);
string cachesyms = s.uprobes_hash + ".symvers";
string tmpsyms = s.tmpdir + "/uprobes/Module.symvers";
copy_file(tmpsyms, cachesyms);
}
}
int
uprobes_pass (systemtap_session& s)
{
if (!s.need_uprobes || kernel_built_uprobes(s))
return 0;
/*
* We need to use the version of uprobes that comes with SystemTap. Try to
* get it from the cache first. If not found, build it and try to save it to
* the cache for future reuse.
*/
int rc = 0;
if (!get_cached_uprobes(s))
{
rc = make_uprobes(s);
if (!rc)
set_cached_uprobes(s);
}
if (rc)
s.set_try_server ();
return rc;
}
static vector<string>
make_dyninst_run_command (systemtap_session& s, const string& remotedir,
const string&)
{
vector<string> cmd { getenv("SYSTEMTAP_STAPDYN") ?: BINDIR "/stapdyn" };
// use slightly less verbosity
if (s.verbose > 0)
cmd.insert(cmd.end(), s.verbose - 1, "-v");
if (s.suppress_warnings)
cmd.push_back("-w");
if (!s.cmd.empty())
cmd.insert(cmd.end(), { "-c", s.cmd });
if (s.target_pid)
cmd.insert(cmd.end(), { "-x", lex_cast(s.target_pid) });
if (!s.output_file.empty())
cmd.insert(cmd.end(), { "-o", s.output_file });
if (s.color_mode != s.color_auto)
{
auto mode = s.color_mode == s.color_always ? "always" : "never";
cmd.insert(cmd.end(), { "-C", mode });
}
cmd.push_back((remotedir.empty() ? s.tmpdir : remotedir)
+ "/" + s.module_filename());
// add module arguments
cmd.insert(cmd.end(), s.globalopts.begin(), s.globalopts.end());
return cmd;
}
static vector<string>
make_kernel_run_command (systemtap_session& s, const string& remotedir,
const string& version)
{
// for now, just spawn staprun
vector<string> cmd { getenv("SYSTEMTAP_STAPRUN") ?: BINDIR "/staprun" };
// use slightly less verbosity
if (s.verbose > 0)
cmd.insert(cmd.end(), s.verbose - 1, "-v");
if (s.suppress_warnings)
cmd.push_back("-w");
if (!s.output_file.empty())
cmd.insert(cmd.end(), { "-o", s.output_file });
if (!s.cmd.empty())
cmd.insert(cmd.end(), { "-c", s.cmd });
if (s.target_pid)
cmd.insert(cmd.end(), { "-t", lex_cast(s.target_pid) });
if (s.target_namespaces_pid)
cmd.insert(cmd.end(), { "-N", lex_cast(s.target_namespaces_pid) });
if (s.buffer_size)
cmd.insert(cmd.end(), { "-b", lex_cast(s.buffer_size) });
if (s.read_stdin)
cmd.insert(cmd.end(), "-i");
if (s.need_uprobes && !kernel_built_uprobes(s))
{
string opt_u = "-u";
if (!s.uprobes_path.empty() &&
strverscmp("1.4", version.c_str()) <= 0)
{
if (remotedir.empty())
opt_u.append(s.uprobes_path);
else
opt_u.append(remotedir + "/" + basename(s.uprobes_path.c_str()));
}
cmd.push_back(opt_u);
}
if (s.load_only)
cmd.push_back(s.output_file.empty() ? "-L" : "-D");
// Note that if this system requires signed modules, we can't rename
// it after it has been signed.
if (!s.modname_given && (strverscmp("1.6", version.c_str()) <= 0)
&& s.mok_fingerprints.empty())
cmd.push_back("-R");
if (!s.size_option.empty())
cmd.insert(cmd.end(), { "-S", s.size_option });
if (s.color_mode != s.color_auto)
{
auto mode = s.color_mode == s.color_always ? "always" : "never";
cmd.insert(cmd.end(), { "-C", mode });
}
if (s.monitor)
cmd.insert(cmd.end(), { "-M", lex_cast(s.monitor_interval) });
cmd.push_back((remotedir.empty() ? s.tmpdir : remotedir)
+ "/" + s.module_filename());
// add module arguments
cmd.insert(cmd.end(), s.globalopts.begin(), s.globalopts.end());
return cmd;
}
static vector<string>
make_bpf_run_command (systemtap_session& s, const string& remotedir,
const string&)
{
vector<string> cmd;
cmd.push_back(getenv("SYSTEMTAP_STAPBPF") ?: BINDIR "/stapbpf");
for (unsigned i=1; i<s.verbose; i++)
cmd.push_back("-v");
if (s.suppress_warnings)
cmd.push_back("-w");
if (!s.cmd.empty())
cmd.insert(cmd.end(), { "-c", s.cmd });
if (s.target_pid)
cmd.insert(cmd.end(), { "-x", lex_cast(s.target_pid) });
if (!s.output_file.empty())
{
cmd.push_back("-o");
cmd.push_back(s.output_file);
}
cmd.push_back((remotedir.empty() ? s.tmpdir : remotedir)
+ "/" + s.module_filename());
// FIXME add module arguments
// ??? Maybe insert these via BEGIN probe.
// cmd.insert(cmd.end(), s.globalopts.begin(), s.globalopts.end());
return cmd;
}
vector<string>
make_run_command (systemtap_session& s, const string& remotedir,
const string& version)
{
switch (s.runtime_mode)
{
case systemtap_session::kernel_runtime:
return make_kernel_run_command (s, remotedir, version);
case systemtap_session::dyninst_runtime:
return make_dyninst_run_command(s, remotedir, version);
case systemtap_session::bpf_runtime:
return make_bpf_run_command(s, remotedir, version);
default:
abort();
}
}
// Build tiny kernel modules to query tracepoints.
// Given a (header-file -> test-contents) map, compile them ASAP, and return
// a (header-file -> obj-filename) map.
map<string,string>
make_tracequeries(systemtap_session& s, const map<string,string>& contents)
{
static unsigned tick = 0;
string basename("tracequery_kmod_" + lex_cast(++tick));
map<string,string> objs;
// create a subdirectory for the module
string dir(s.tmpdir + "/" + basename);
if (create_dir(dir.c_str()) != 0)
{
s.print_warning("failed to create directory for querying tracepoints.");
s.set_try_server ();
return objs;
}
// Support deprecation of $(EXTRA_CFLAGS); replacement flag available since 3.18ish.
// See linux kernel commits f77bf01425b119 and e966ad0edd005
string extra_cflags = "EXTRA_CFLAGS";
if (strverscmp (s.kernel_base_release.c_str(), "6.15") >= 0)
extra_cflags = "ccflags-y";
// create a simple Makefile
string makefile(dir + "/Makefile");
ofstream omf(makefile.c_str());
// force debuginfo generation, and relax implicit functions
omf << extra_cflags << " := -g -Wno-implicit-function-declaration " << "-Werror" << endl;
// RHBZ 655231: later rhel6 kernels' module-signing kbuild logic breaks out-of-tree modules
omf << "CONFIG_MODULE_SIG := n" << endl;
// PR23488: need to override this kconfig, else we get no useful struct decls
omf << "CONFIG_DEBUG_INFO_REDUCED := " << endl;
// objtool is slow and uses a lot of memory, skip it since these modules aren't loaded
omf << "CONFIG_STACK_VALIDATION := " << endl;
// PR18389: disable GCC's Identical Code Folding, since the stubs may look identical
omf << extra_cflags << " += $(call cc-option,-fno-ipa-icf)" << endl;
omf << extra_cflags << " += -I" + s.kernel_build_tree << endl;
if (s.kernel_source_tree != "")
omf << extra_cflags << " += -I" + s.kernel_source_tree << endl;
for (unsigned i = 0; i < s.kernel_extra_cflags.size(); i++)
omf << extra_cflags << " += " + s.kernel_extra_cflags[i] << endl;
omf << "obj-m := " << endl;
// write out each header-specific source file into a separate file
for (map<string,string>::const_iterator it = contents.begin(); it != contents.end(); it++)
{
string sbasename = basename + "_" + lex_cast(++tick); // suffixed
// write out source code
string srcname = dir + "/" + sbasename + ".c";
string src = it->second;
ofstream osrc(srcname.c_str());
osrc << src;
osrc.close();
if (s.verbose > 2)
clog << _F("Processing tracepoint header %s with query %s",
it->first.c_str(), srcname.c_str())
<< endl;
// arrange to build it
omf << "obj-m += " + sbasename + ".o" << endl; // NB: without <dir> prefix
objs[it->first] = dir + "/" + sbasename + ".o";
}
omf.close();
// make the module
vector<string> make_cmd = make_make_objs_cmd(s, dir);
make_cmd.push_back ("-i"); // ignore errors, give rc 0 even in case of tracepoint header nits
bool quiet = (s.verbose < 4);
int rc = run_make_cmd(s, make_cmd, quiet, quiet);
if (rc)
s.set_try_server ();
// Sometimes we fail a tracequery due to PR9993 / PR11649 type
// kernel trace header problems. In this case, due to PR12729, we
// used to get a lovely "Warning: make exited with status: 2" but no
// other useful diagnostic. -vvvv would let a user see what's up,
// but the user can't fix the problem even with that.
return objs;
}
// Build a tiny kernel module to query type information
static int
make_typequery_kmod(systemtap_session& s, const vector<string>& headers, string& name)
{
static unsigned tick = 0;
string basename("typequery_kmod_" + lex_cast(++tick));
// create a subdirectory for the module
string dir(s.tmpdir + "/" + basename);
if (create_dir(dir.c_str()) != 0)
{
s.print_warning("failed to create directory for querying types.");
s.set_try_server ();
return 1;
}
name = dir + "/" + basename + ".ko";
// Support deprecation of $(EXTRA_CFLAGS); replacement flag available since 3.18ish.
// See linux kernel commits f77bf01425b119 and e966ad0edd005
string extra_cflags = "EXTRA_CFLAGS";
if (strverscmp (s.kernel_base_release.c_str(), "6.15") >= 0)
extra_cflags = "ccflags-y";
// create a simple Makefile
string makefile(dir + "/Makefile");
ofstream omf(makefile.c_str());
omf << extra_cflags << " := -g -fno-eliminate-unused-debug-types" << endl;
// RHBZ 655231: later rhel6 kernels' module-signing kbuild logic breaks out-of-tree modules
omf << "CONFIG_MODULE_SIG := n" << endl;
// PR23488: need to override this kconfig, else we get no useful struct decls
omf << "CONFIG_DEBUG_INFO_REDUCED := " << endl;
// objtool is slow and uses a lot of memory, skip it since these modules aren't loaded
omf << "CONFIG_STACK_VALIDATION := " << endl;
// NB: We use -include instead of #include because that gives us more power.
// Using #include searches relative to the source's path, which in this case
// is /tmp/..., so that's not helpful. Using -include will search relative
// to the cwd, which will be the kernel build root. This means if you have a
// full kernel build tree, it's possible to get at types that aren't in the
// normal include path, e.g.:
// @cast(foo, "bsd_acct_struct", "kernel<kernel/acct.c>")->...
omf << "CFLAGS_" << basename << ".o :=";
for (size_t i = 0; i < headers.size(); ++i)
omf << " -include " << lex_cast_qstring(headers[i]); // XXX right quoting?
omf << endl;
omf << "obj-m := " + basename + ".o" << endl;
omf.close();
// create our -nearly- empty source file
string source(dir + "/" + basename + ".c");
ofstream osrc(source.c_str());
// this is mandated by linux kbuild as of 5.11+
osrc << "#include <linux/module.h>" << endl;
osrc << "MODULE_LICENSE(\"GPL\");" << endl;
osrc << "MODULE_DESCRIPTION(\"" << basename << "\");" << endl;
osrc.close();
// make the module
vector<string> make_cmd = make_make_cmd(s, dir);
bool quiet = (s.verbose < 4);
int rc = run_make_cmd(s, make_cmd, quiet, false /* stderr should be quiet PR27658 */);
if (rc)
s.set_try_server ();
return rc;
}
// Build a tiny user module to query type information
static int
make_typequery_umod(systemtap_session& s, const vector<string>& headers, string& name)
{
static unsigned tick = 0;
name = s.tmpdir + "/typequery_umod_" + lex_cast(++tick) + ".so";
// make the module
//
// NB: As with kmod, using -include makes relative paths more useful. The
// cwd in this case will be the cwd of stap itself though, which may be
// trickier to deal with. It might be better to "cd `dirname $script`"
// first...
// s.runtime_path allows finding linux/stp_tls.h
vector<string> cmd
{
"gcc", "-shared", "-g", "-I", s.runtime_path, "-fno-eliminate-unused-debug-types",
"-xc", "/dev/null", "-o", name,
};
for (size_t i = 0; i < headers.size(); ++i)
cmd.insert(cmd.end(), { "-include", headers[i] });
bool quiet = (s.verbose < 4);
int rc = stap_system (s.verbose, cmd, quiet, false /* stderr should be quiet PR27658 */);
if (rc)
s.set_try_server ();
return rc;
}
int
make_typequery(systemtap_session& s, string& module)
{
// check our memoized cache first
if (s.typequery_memo.find(module) != s.typequery_memo.end())
{
module = s.typequery_memo.at(module);
return 0;
}
int rc;
string new_module;
vector<string> headers;
bool kernel = startswith(module, "kernel");
for (size_t end, i = kernel ? 6 : 0; i < module.size(); i = end + 1)
{
if (module[i] != '<')
return -1;
end = module.find('>', ++i);
if (end == string::npos)
return -1;
string header = module.substr(i, end - i);
vector<string> matches;
if (regexp_match(header, "^[a-zA-Z0-9/_.+-]+$", matches))
s.print_warning("skipping malformed @cast header \""+ header + "\"");
else
headers.push_back(header);
}
if (headers.empty())
return -1;
if (kernel)
rc = make_typequery_kmod(s, headers, new_module);
else
rc = make_typequery_umod(s, headers, new_module);
// memoize the result --- even if it failed (rc != 0), so as to avoid
// repeated attempts to rebuild the same thing
s.typequery_memo[module] = new_module;
if (!rc)
module = new_module;
return rc;
}
/* vim: set sw=2 ts=8 cino=>4,n-2,{2,^-2,t0,(0,u0,w1,M1 : */
|