Makefile 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. # kbuild trick to avoid linker error. Can be omitted if a module is built.
  2. obj- := dummy.o
  3. # List of programs to build
  4. hostprogs-y := test_lru_dist
  5. hostprogs-y += sock_example
  6. hostprogs-y += fds_example
  7. hostprogs-y += sockex1
  8. hostprogs-y += sockex2
  9. hostprogs-y += sockex3
  10. hostprogs-y += tracex1
  11. hostprogs-y += tracex2
  12. hostprogs-y += tracex3
  13. hostprogs-y += tracex4
  14. hostprogs-y += tracex5
  15. hostprogs-y += tracex6
  16. hostprogs-y += test_probe_write_user
  17. hostprogs-y += trace_output
  18. hostprogs-y += lathist
  19. hostprogs-y += offwaketime
  20. hostprogs-y += spintest
  21. hostprogs-y += map_perf_test
  22. hostprogs-y += test_overhead
  23. hostprogs-y += test_cgrp2_array_pin
  24. hostprogs-y += test_cgrp2_attach
  25. hostprogs-y += test_cgrp2_attach2
  26. hostprogs-y += test_cgrp2_sock
  27. hostprogs-y += test_cgrp2_sock2
  28. hostprogs-y += xdp1
  29. hostprogs-y += xdp2
  30. hostprogs-y += test_current_task_under_cgroup
  31. hostprogs-y += trace_event
  32. hostprogs-y += sampleip
  33. hostprogs-y += tc_l2_redirect
  34. hostprogs-y += lwt_len_hist
  35. hostprogs-y += xdp_tx_iptunnel
  36. # Libbpf dependencies
  37. LIBBPF := ../../tools/lib/bpf/bpf.o
  38. test_lru_dist-objs := test_lru_dist.o $(LIBBPF)
  39. sock_example-objs := sock_example.o $(LIBBPF)
  40. fds_example-objs := bpf_load.o $(LIBBPF) fds_example.o
  41. sockex1-objs := bpf_load.o $(LIBBPF) sockex1_user.o
  42. sockex2-objs := bpf_load.o $(LIBBPF) sockex2_user.o
  43. sockex3-objs := bpf_load.o $(LIBBPF) sockex3_user.o
  44. tracex1-objs := bpf_load.o $(LIBBPF) tracex1_user.o
  45. tracex2-objs := bpf_load.o $(LIBBPF) tracex2_user.o
  46. tracex3-objs := bpf_load.o $(LIBBPF) tracex3_user.o
  47. tracex4-objs := bpf_load.o $(LIBBPF) tracex4_user.o
  48. tracex5-objs := bpf_load.o $(LIBBPF) tracex5_user.o
  49. tracex6-objs := bpf_load.o $(LIBBPF) tracex6_user.o
  50. test_probe_write_user-objs := bpf_load.o $(LIBBPF) test_probe_write_user_user.o
  51. trace_output-objs := bpf_load.o $(LIBBPF) trace_output_user.o
  52. lathist-objs := bpf_load.o $(LIBBPF) lathist_user.o
  53. offwaketime-objs := bpf_load.o $(LIBBPF) offwaketime_user.o
  54. spintest-objs := bpf_load.o $(LIBBPF) spintest_user.o
  55. map_perf_test-objs := bpf_load.o $(LIBBPF) map_perf_test_user.o
  56. test_overhead-objs := bpf_load.o $(LIBBPF) test_overhead_user.o
  57. test_cgrp2_array_pin-objs := $(LIBBPF) test_cgrp2_array_pin.o
  58. test_cgrp2_attach-objs := $(LIBBPF) test_cgrp2_attach.o
  59. test_cgrp2_attach2-objs := $(LIBBPF) test_cgrp2_attach2.o cgroup_helpers.o
  60. test_cgrp2_sock-objs := $(LIBBPF) test_cgrp2_sock.o
  61. test_cgrp2_sock2-objs := bpf_load.o $(LIBBPF) test_cgrp2_sock2.o
  62. xdp1-objs := bpf_load.o $(LIBBPF) xdp1_user.o
  63. # reuse xdp1 source intentionally
  64. xdp2-objs := bpf_load.o $(LIBBPF) xdp1_user.o
  65. test_current_task_under_cgroup-objs := bpf_load.o $(LIBBPF) cgroup_helpers.o \
  66. test_current_task_under_cgroup_user.o
  67. trace_event-objs := bpf_load.o $(LIBBPF) trace_event_user.o
  68. sampleip-objs := bpf_load.o $(LIBBPF) sampleip_user.o
  69. tc_l2_redirect-objs := bpf_load.o $(LIBBPF) tc_l2_redirect_user.o
  70. lwt_len_hist-objs := bpf_load.o $(LIBBPF) lwt_len_hist_user.o
  71. xdp_tx_iptunnel-objs := bpf_load.o $(LIBBPF) xdp_tx_iptunnel_user.o
  72. # Tell kbuild to always build the programs
  73. always := $(hostprogs-y)
  74. always += sockex1_kern.o
  75. always += sockex2_kern.o
  76. always += sockex3_kern.o
  77. always += tracex1_kern.o
  78. always += tracex2_kern.o
  79. always += tracex3_kern.o
  80. always += tracex4_kern.o
  81. always += tracex5_kern.o
  82. always += tracex6_kern.o
  83. always += sock_flags_kern.o
  84. always += test_probe_write_user_kern.o
  85. always += trace_output_kern.o
  86. always += tcbpf1_kern.o
  87. always += tcbpf2_kern.o
  88. always += tc_l2_redirect_kern.o
  89. always += lathist_kern.o
  90. always += offwaketime_kern.o
  91. always += spintest_kern.o
  92. always += map_perf_test_kern.o
  93. always += test_overhead_tp_kern.o
  94. always += test_overhead_kprobe_kern.o
  95. always += parse_varlen.o parse_simple.o parse_ldabs.o
  96. always += test_cgrp2_tc_kern.o
  97. always += xdp1_kern.o
  98. always += xdp2_kern.o
  99. always += test_current_task_under_cgroup_kern.o
  100. always += trace_event_kern.o
  101. always += sampleip_kern.o
  102. always += lwt_len_hist_kern.o
  103. always += xdp_tx_iptunnel_kern.o
  104. HOSTCFLAGS += -I$(objtree)/usr/include
  105. HOSTCFLAGS += -I$(srctree)/tools/lib/
  106. HOSTCFLAGS += -I$(srctree)/tools/testing/selftests/bpf/
  107. HOSTCFLAGS += -I$(srctree)/tools/lib/ -I$(srctree)/tools/include
  108. HOSTCFLAGS += -I$(srctree)/tools/perf
  109. HOSTCFLAGS_bpf_load.o += -I$(objtree)/usr/include -Wno-unused-variable
  110. HOSTLOADLIBES_fds_example += -lelf
  111. HOSTLOADLIBES_sockex1 += -lelf
  112. HOSTLOADLIBES_sockex2 += -lelf
  113. HOSTLOADLIBES_sockex3 += -lelf
  114. HOSTLOADLIBES_tracex1 += -lelf
  115. HOSTLOADLIBES_tracex2 += -lelf
  116. HOSTLOADLIBES_tracex3 += -lelf
  117. HOSTLOADLIBES_tracex4 += -lelf -lrt
  118. HOSTLOADLIBES_tracex5 += -lelf
  119. HOSTLOADLIBES_tracex6 += -lelf
  120. HOSTLOADLIBES_test_cgrp2_sock2 += -lelf
  121. HOSTLOADLIBES_test_probe_write_user += -lelf
  122. HOSTLOADLIBES_trace_output += -lelf -lrt
  123. HOSTLOADLIBES_lathist += -lelf
  124. HOSTLOADLIBES_offwaketime += -lelf
  125. HOSTLOADLIBES_spintest += -lelf
  126. HOSTLOADLIBES_map_perf_test += -lelf -lrt
  127. HOSTLOADLIBES_test_overhead += -lelf -lrt
  128. HOSTLOADLIBES_xdp1 += -lelf
  129. HOSTLOADLIBES_xdp2 += -lelf
  130. HOSTLOADLIBES_test_current_task_under_cgroup += -lelf
  131. HOSTLOADLIBES_trace_event += -lelf
  132. HOSTLOADLIBES_sampleip += -lelf
  133. HOSTLOADLIBES_tc_l2_redirect += -l elf
  134. HOSTLOADLIBES_lwt_len_hist += -l elf
  135. HOSTLOADLIBES_xdp_tx_iptunnel += -lelf
  136. # Allows pointing LLC/CLANG to a LLVM backend with bpf support, redefine on cmdline:
  137. # make samples/bpf/ LLC=~/git/llvm/build/bin/llc CLANG=~/git/llvm/build/bin/clang
  138. LLC ?= llc
  139. CLANG ?= clang
  140. # Trick to allow make to be run from this directory
  141. all:
  142. $(MAKE) -C ../../ $(CURDIR)/
  143. clean:
  144. $(MAKE) -C ../../ M=$(CURDIR) clean
  145. @rm -f *~
  146. # Verify LLVM compiler tools are available and bpf target is supported by llc
  147. .PHONY: verify_cmds verify_target_bpf $(CLANG) $(LLC)
  148. verify_cmds: $(CLANG) $(LLC)
  149. @for TOOL in $^ ; do \
  150. if ! (which -- "$${TOOL}" > /dev/null 2>&1); then \
  151. echo "*** ERROR: Cannot find LLVM tool $${TOOL}" ;\
  152. exit 1; \
  153. else true; fi; \
  154. done
  155. verify_target_bpf: verify_cmds
  156. @if ! (${LLC} -march=bpf -mattr=help > /dev/null 2>&1); then \
  157. echo "*** ERROR: LLVM (${LLC}) does not support 'bpf' target" ;\
  158. echo " NOTICE: LLVM version >= 3.7.1 required" ;\
  159. exit 2; \
  160. else true; fi
  161. $(src)/*.c: verify_target_bpf
  162. # asm/sysreg.h - inline assembly used by it is incompatible with llvm.
  163. # But, there is no easy way to fix it, so just exclude it since it is
  164. # useless for BPF samples.
  165. $(obj)/%.o: $(src)/%.c
  166. $(CLANG) $(NOSTDINC_FLAGS) $(LINUXINCLUDE) $(EXTRA_CFLAGS) \
  167. -D__KERNEL__ -D__ASM_SYSREG_H -Wno-unused-value -Wno-pointer-sign \
  168. -Wno-compare-distinct-pointer-types \
  169. -Wno-gnu-variable-sized-type-not-at-end \
  170. -Wno-address-of-packed-member -Wno-tautological-compare \
  171. -O2 -emit-llvm -c $< -o -| $(LLC) -march=bpf -filetype=obj -o $@