Kbuild 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. # Linux kernel-native Makefile ("Kbuild") for libwolfssl.ko
  2. #
  3. # Copyright (C) 2006-2023 wolfSSL Inc.
  4. #
  5. # This file is part of wolfSSL.
  6. #
  7. # wolfSSL is free software; you can redistribute it and/or modify
  8. # it under the terms of the GNU General Public License as published by
  9. # the Free Software Foundation; either version 2 of the License, or
  10. # (at your option) any later version.
  11. #
  12. # wolfSSL is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. # GNU General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU General Public License
  18. # along with this program; if not, write to the Free Software
  19. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
  20. SHELL=/bin/bash
  21. ifeq "$(WOLFSSL_OBJ_FILES)" ""
  22. $(error $$WOLFSSL_OBJ_FILES is unset.)
  23. endif
  24. ifeq "$(WOLFSSL_CFLAGS)" ""
  25. $(error $$WOLFSSL_CFLAGS is unset.)
  26. endif
  27. WOLFSSL_CFLAGS += -ffreestanding -Wframe-larger-than=$(MAX_STACK_FRAME_SIZE) -isystem $(shell $(CC) -print-file-name=include)
  28. ifeq "$(KERNEL_ARCH)" "x86"
  29. WOLFSSL_CFLAGS += -mpreferred-stack-boundary=4
  30. endif
  31. obj-m := libwolfssl.o
  32. WOLFSSL_OBJ_TARGETS := $(patsubst %, $(obj)/%, $(WOLFSSL_OBJ_FILES))
  33. ifeq "$(ENABLED_LINUXKM_PIE)" "yes"
  34. WOLFCRYPT_PIE_FILES := $(patsubst %, $(obj)/%, $(WOLFCRYPT_PIE_FILES))
  35. endif
  36. $(obj)/linuxkm/module_exports.o: $(WOLFSSL_OBJ_TARGETS)
  37. # this mechanism only works in kernel 5.x+ (fallback to hardcoded value)
  38. hostprogs := linuxkm/get_thread_size
  39. always-y := $(hostprogs)
  40. # "-mindirect-branch=keep -mfunction-return=keep" to avoid "undefined reference
  41. # to `__x86_return_thunk'" on CONFIG_RETHUNK kernels (5.19.0-rc7)
  42. HOST_EXTRACFLAGS += $(NOSTDINC_FLAGS) $(LINUXINCLUDE) $(KBUILD_CFLAGS) -static -fno-omit-frame-pointer -mindirect-branch=keep -mfunction-return=keep
  43. # this rule is needed to get build to succeed in 4.x (get_thread_size still doesn't get built)
  44. $(obj)/linuxkm/get_thread_size: $(src)/linuxkm/get_thread_size.c
  45. $(WOLFSSL_OBJ_TARGETS): | $(obj)/linuxkm/get_thread_size
  46. KERNEL_THREAD_STACK_SIZE=$(shell test -x $(obj)/linuxkm/get_thread_size && $(obj)/linuxkm/get_thread_size || echo 16384)
  47. MAX_STACK_FRAME_SIZE=$(shell echo $$(( $(KERNEL_THREAD_STACK_SIZE) / 4)))
  48. libwolfssl-y := $(WOLFSSL_OBJ_FILES) linuxkm/module_hooks.o linuxkm/module_exports.o
  49. WOLFSSL_CFLAGS_NO_VECTOR_INSNS := $(CFLAGS_SIMD_DISABLE) $(CFLAGS_FPU_DISABLE)
  50. ifeq "$(ENABLED_ASM)" "yes"
  51. WOLFSSL_CFLAGS_YES_VECTOR_INSNS := $(CFLAGS_SIMD_ENABLE) $(CFLAGS_FPU_DISABLE) $(CFLAGS_AUTO_VECTORIZE_DISABLE)
  52. else
  53. WOLFSSL_CFLAGS_YES_VECTOR_INSNS := $(WOLFSSL_CFLAGS_NO_VECTOR_INSNS)
  54. endif
  55. ccflags-y := $(WOLFSSL_CFLAGS) $(WOLFSSL_CFLAGS_NO_VECTOR_INSNS)
  56. $(obj)/libwolfssl.mod.o: ccflags-y :=
  57. $(obj)/wolfcrypt/test/test.o: ccflags-y += -DNO_MAIN_DRIVER
  58. $(obj)/wolfcrypt/src/aes.o: ccflags-y = $(WOLFSSL_CFLAGS) $(WOLFSSL_CFLAGS_YES_VECTOR_INSNS)
  59. ifeq "$(ENABLED_LINUXKM_PIE)" "yes"
  60. PIE_FLAGS := -fPIE -fno-stack-protector -fno-toplevel-reorder
  61. PIE_SUPPORT_FLAGS := -DUSE_WOLFSSL_LINUXKM_PIE_REDIRECT_TABLE
  62. ifeq "$(KERNEL_ARCH)" "x86"
  63. PIE_FLAGS += -mcmodel=small -mindirect-branch=keep -mfunction-return=keep
  64. endif
  65. ifeq "$(KERNEL_ARCH)" "mips"
  66. PIE_FLAGS += -mabicalls
  67. endif
  68. $(WOLFCRYPT_PIE_FILES): ccflags-y += $(PIE_SUPPORT_FLAGS) $(PIE_FLAGS)
  69. $(WOLFCRYPT_PIE_FILES): ccflags-remove-y += -pg
  70. # disabling retpoline generation leads to profuse warnings without this:
  71. $(WOLFCRYPT_PIE_FILES): OBJECT_FILES_NON_STANDARD := y
  72. $(obj)/linuxkm/module_hooks.o: ccflags-y += $(PIE_SUPPORT_FLAGS)
  73. endif
  74. ifeq "$(ENABLED_LINUXKM_BENCHMARKS)" "yes"
  75. $(obj)/linuxkm/module_hooks.o: ccflags-y = $(WOLFSSL_CFLAGS) $(CFLAGS_FPU_ENABLE) $(CFLAGS_SIMD_ENABLE) $(PIE_SUPPORT_FLAGS)
  76. $(obj)/linuxkm/module_hooks.o: asflags-y = $(WOLFSSL_ASFLAGS) $(ASFLAGS_FPU_ENABLE_SIMD_DISABLE)
  77. endif
  78. asflags-y := $(WOLFSSL_ASFLAGS) $(ASFLAGS_FPUSIMD_DISABLE)
  79. # vectorized implementations that are kernel-safe are listed here.
  80. # these are known kernel-compatible, but they still irritate objtool.
  81. $(obj)/wolfcrypt/src/aes_asm.o: asflags-y = $(WOLFSSL_ASFLAGS) $(ASFLAGS_FPU_DISABLE_SIMD_ENABLE)
  82. $(obj)/wolfcrypt/src/aes_asm.o: OBJECT_FILES_NON_STANDARD := y
  83. $(obj)/wolfcrypt/src/aes_gcm_asm.o: asflags-y = $(WOLFSSL_ASFLAGS) $(ASFLAGS_FPU_DISABLE_SIMD_ENABLE)
  84. $(obj)/wolfcrypt/src/aes_gcm_asm.o: OBJECT_FILES_NON_STANDARD := y
  85. $(obj)/wolfcrypt/src/aes_xts_asm.o: asflags-y = $(WOLFSSL_ASFLAGS) $(ASFLAGS_FPU_DISABLE_SIMD_ENABLE)
  86. $(obj)/wolfcrypt/src/aes_xts_asm.o: OBJECT_FILES_NON_STANDARD := y
  87. $(obj)/wolfcrypt/src/sp_x86_64_asm.o: asflags-y = $(WOLFSSL_ASFLAGS) $(ASFLAGS_FPU_DISABLE_SIMD_ENABLE)
  88. $(obj)/wolfcrypt/src/sp_x86_64_asm.o: OBJECT_FILES_NON_STANDARD := y
  89. ifeq "$(ENABLED_LINUXKM_PIE)" "yes"
  90. rename-pie-text-and-data-sections: $(WOLFSSL_OBJ_TARGETS)
  91. ifndef NM
  92. NM := nm
  93. endif
  94. ifndef READELF
  95. READELF := readelf
  96. endif
  97. ifndef OBJCOPY
  98. OBJCOPY := objcopy
  99. endif
  100. .PHONY: rename-pie-text-and-data-sections
  101. rename-pie-text-and-data-sections:
  102. ifneq "$(quiet)" "silent_"
  103. @echo -n ' Checking wolfCrypt for unresolved symbols and forbidden relocations... '
  104. endif
  105. @cd "$(obj)" || exit $$?; \
  106. $(LD) -relocatable -o wolfcrypt_test_link.o $(WOLFCRYPT_PIE_FILES) || exit $$?; \
  107. undefined=$$($(NM) --undefined-only wolfcrypt_test_link.o) || exit $$?; \
  108. GOT_relocs=$$($(READELF) --relocs --wide wolfcrypt_test_link.o | egrep '^[^ ]+ +[^ ]+ +[^ ]*GOT[^ ]* ') || [ $$? = 1 ] || exit 2; \
  109. rm wolfcrypt_test_link.o; \
  110. if [ -n "$$undefined" ]; then \
  111. echo "wolfCrypt container has unresolved symbols:" 1>&2; \
  112. echo "$$undefined" 1>&2; \
  113. exit 1; \
  114. fi; \
  115. if [ -n "$$GOT_relocs" ]; then \
  116. echo "wolfCrypt container has GOT relocations (non-local function address used as operand?):" 1>&2; \
  117. echo "$$GOT_relocs" 1>&2; \
  118. exit 1; \
  119. fi
  120. ifneq "$(quiet)" "silent_"
  121. @echo 'OK.'
  122. endif
  123. @cd "$(obj)" || exit $$?; \
  124. for file in $(WOLFCRYPT_PIE_FILES); do \
  125. $(OBJCOPY) --rename-section .text=.text.wolfcrypt --rename-section .data=.data.wolfcrypt "$$file" || exit $$?; \
  126. done
  127. ifneq "$(quiet)" "silent_"
  128. @echo ' wolfCrypt .{text,data} sections containerized to .{text,data}.wolfcrypt'
  129. endif
  130. $(src)/linuxkm/module_exports.c: rename-pie-text-and-data-sections
  131. endif
  132. # auto-generate the exported symbol list, leveraging the WOLFSSL_API visibility tags.
  133. # exclude symbols that don't match wc_* or wolf*.
  134. $(src)/linuxkm/module_exports.c: $(src)/linuxkm/module_exports.c.template $(WOLFSSL_OBJ_TARGETS)
  135. @cp $< $@
  136. @readelf --symbols --wide $(WOLFSSL_OBJ_TARGETS) | \
  137. awk '/^ *[0-9]+: / { \
  138. if ($$8 !~ /^(wc_|wolf|WOLF|TLSX_)/){next;} \
  139. if (($$4 == "FUNC") && ($$5 == "GLOBAL") && ($$6 == "DEFAULT")) { \
  140. print "EXPORT_SYMBOL_NS_GPL(" $$8 ", WOLFSSL);"; \
  141. } \
  142. }' >> $@
  143. @echo -e '#ifndef NO_CRYPT_TEST\nEXPORT_SYMBOL_NS_GPL(wolfcrypt_test, WOLFSSL);\n#endif' >> $@
  144. clean-files := module_exports.c linuxkm src wolfcrypt/src wolfcrypt/test wolfcrypt