Kbuild 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. # Linux kernel-native Makefile ("Kbuild") for libwolfssl.ko
  2. #
  3. # Copyright (C) 2006-2022 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. asflags-y := $(WOLFSSL_ASFLAGS) $(ASFLAGS_FPUSIMD_DISABLE)
  75. # vectorized implementations that are kernel-safe are listed here.
  76. # these are known kernel-compatible, but they still irritate objtool.
  77. $(obj)/wolfcrypt/src/aes_asm.o: asflags-y = $(WOLFSSL_ASFLAGS) $(ASFLAGS_FPU_DISABLE_SIMD_ENABLE)
  78. $(obj)/wolfcrypt/src/aes_asm.o: OBJECT_FILES_NON_STANDARD := y
  79. $(obj)/wolfcrypt/src/aes_gcm_asm.o: asflags-y = $(WOLFSSL_ASFLAGS) $(ASFLAGS_FPU_DISABLE_SIMD_ENABLE)
  80. $(obj)/wolfcrypt/src/aes_gcm_asm.o: OBJECT_FILES_NON_STANDARD := y
  81. $(obj)/wolfcrypt/src/sp_x86_64_asm.o: asflags-y = $(WOLFSSL_ASFLAGS) $(ASFLAGS_FPU_DISABLE_SIMD_ENABLE)
  82. $(obj)/wolfcrypt/src/sp_x86_64_asm.o: OBJECT_FILES_NON_STANDARD := y
  83. ifeq "$(ENABLED_LINUXKM_PIE)" "yes"
  84. rename-pie-text-and-data-sections: $(WOLFSSL_OBJ_TARGETS)
  85. ifndef NM
  86. NM := nm
  87. endif
  88. ifndef READELF
  89. READELF := readelf
  90. endif
  91. ifndef OBJCOPY
  92. OBJCOPY := objcopy
  93. endif
  94. .PHONY: rename-pie-text-and-data-sections
  95. rename-pie-text-and-data-sections:
  96. ifneq "$(quiet)" "silent_"
  97. @echo -n ' Checking wolfCrypt for unresolved symbols and forbidden relocations... '
  98. endif
  99. @cd "$(obj)" || exit $$?; \
  100. $(LD) -relocatable -o wolfcrypt_test_link.o $(WOLFCRYPT_PIE_FILES) || exit $$?; \
  101. undefined=$$($(NM) --undefined-only wolfcrypt_test_link.o) || exit $$?; \
  102. GOT_relocs=$$($(READELF) --relocs --wide wolfcrypt_test_link.o | egrep '^[^ ]+ +[^ ]+ +[^ ]*GOT[^ ]* ') || [ $$? = 1 ] || exit 2; \
  103. rm wolfcrypt_test_link.o; \
  104. if [ -n "$$undefined" ]; then \
  105. echo "wolfCrypt container has unresolved symbols:" 1>&2; \
  106. echo "$$undefined" 1>&2; \
  107. exit 1; \
  108. fi; \
  109. if [ -n "$$GOT_relocs" ]; then \
  110. echo "wolfCrypt container has GOT relocations (non-local function address used as operand?):" 1>&2; \
  111. echo "$$GOT_relocs" 1>&2; \
  112. exit 1; \
  113. fi
  114. ifneq "$(quiet)" "silent_"
  115. @echo 'OK.'
  116. endif
  117. @cd "$(obj)" || exit $$?; \
  118. for file in $(WOLFCRYPT_PIE_FILES); do \
  119. $(OBJCOPY) --rename-section .text=.text.wolfcrypt --rename-section .data=.data.wolfcrypt "$$file" || exit $$?; \
  120. done
  121. ifneq "$(quiet)" "silent_"
  122. @echo ' wolfCrypt .{text,data} sections containerized to .{text,data}.wolfcrypt'
  123. endif
  124. $(src)/linuxkm/module_exports.c: rename-pie-text-and-data-sections
  125. endif
  126. # auto-generate the exported symbol list, leveraging the WOLFSSL_API visibility tags.
  127. # exclude symbols that don't match wc_* or wolf*.
  128. $(src)/linuxkm/module_exports.c: $(src)/linuxkm/module_exports.c.template $(WOLFSSL_OBJ_TARGETS)
  129. @cp $< $@
  130. @readelf --symbols --wide $(WOLFSSL_OBJ_TARGETS) | \
  131. awk '/^ *[0-9]+: / { \
  132. if ($$8 !~ /^(wc_|wolf|WOLF|TLSX_)/){next;} \
  133. if (($$4 == "FUNC") && ($$5 == "GLOBAL") && ($$6 == "DEFAULT")) { \
  134. print "EXPORT_SYMBOL_NS_GPL(" $$8 ", WOLFSSL);"; \
  135. } \
  136. }' >> $@
  137. @echo -e '#ifndef NO_CRYPT_TEST\nEXPORT_SYMBOL_NS_GPL(wolfcrypt_test, WOLFSSL);\n#endif' >> $@
  138. clean-files := module_exports.c linuxkm src wolfcrypt/src wolfcrypt/test wolfcrypt