如何从内核源代码树中编译工具和示例? (例如bpftool,bpf样本)

时间:2019-07-31 08:55:26

标签: makefile kernel bpf

目标:编译samples/bpf,编译bpf/bpftool并使用它们。

问题::在具有内核4.18.0-25-generic的Ubuntu 18.04 bionic的VM上,我已经安装了执行apt install linux-source-4.18.0的内核src代码。 现在,我cd进入/usr/src/linux-source-4.18.0/linux-source-4.18.0/samples/bpf,运行make,结果是

make -C ../../ /usr/src/linux-source-4.18.0/linux-source-4.18.0/samples/bpf/ BPF_SAMPLES_PATH=/usr/src/linux-source-4.18.0/linux-source-4.18.0/samples/bpf
make[1]: Entering directory '/usr/src/linux-source-4.18.0/linux-source-4.18.0'
scripts/kconfig/conf  --syncconfig Kconfig
***
*** Configuration file ".config" not found!
***
*** Please run some configurator (e.g. "make oldconfig" or
*** "make menuconfig" or "make xconfig").
***
scripts/kconfig/Makefile:40: recipe for target 'syncconfig' failed
make[3]: *** [syncconfig] Error 1
Makefile:562: recipe for target 'syncconfig' failed
make[2]: *** [syncconfig] Error 2
make[1]: *** No rule to make target 'include/config/auto.conf', needed by 'include/config/kernel.release'.  Stop.
make[1]: Leaving directory '/usr/src/linux-source-4.18.0/linux-source-4.18.0'
Makefile:203: recipe for target 'all' failed
make: *** [all] Error 2

如果我cd进入../samples/bpf并且运行sudo make,则结果为

Auto-detecting system features:
...                        libbfd: [ OFF ]
...        disassembler-four-args: [ OFF ]

  CC       map_perf_ring.o
  CC       xlated_dumper.o
  CC       perf.o
  CC       cfg.o
  CC       common.o
  CC       cgroup.o
  CC       main.o
main.c:36:10: fatal error: bfd.h: No such file or directory
 #include <bfd.h>
          ^~~~~~~
compilation terminated.
Makefile:92: recipe for target 'main.o' failed
make: *** [main.o] Error 1

问题:我想念什么?在编译它们之后,如果我想编写一个程序,例如需要使用bpftool,我必须在源内核目录中编写该程序,还是可以在任何地方编写它?

1 个答案:

答案 0 :(得分:2)

构建错误

第一种情况Makefile:562: recipe for target 'syncconfig' failed)失败是因为您从Linux内核存储库的顶部运行make,并且在尝试编译示例之前,构建系统会尝试加载配置文件以供您的系统使用(但找不到)。

在尝试构建示例(make -C samples/bpf)之前,您可以从当前的内核配置中创建一个.config文件,如下所示:

$ cp /usr/src/linux-headers-$(uname -r)/.config <path to repo>/.config
$ make olddefconfig

或者甚至只是从头开始生成默认配置文件:

$ make defconfig

从顶层目录查看make help,以查看可用的制作选项。

关于找不到bfd.h

您的第二个错误是您错过了图书馆。 Ubuntu上的Libbfd随附binutils-dev,因此apt install binutils-dev应该可以解决问题。

编译程序

最后,关于您对程序进行编译的问题:

  • 您只需创建一个新示例并重用现有的Makefile,即可从内核存储库编写和构建程序。
  • 您还可以在内核树之外编写和编译程序。用于编译它们的基本clang(v4.0或更高版本,如果可能的话是v6.0或更高版本)通常看起来像这样:
$ clang -O2 -emit-llvm -c my_bpf_prog.c -o - | \
          llc -march=bpf -filetype=obj -o my_bpf_prog.o

您可以在内核树in that repository(免责声明:由我公司提供)或XDP tutorial repo中找到编译的程序示例。