Kbuild 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. # Linux kernel-native Makefile ("Kbuild") for libwolfssl.ko
  2. #
  3. # Copyright (C) 2006-2021 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. #
  21. SHELL=/bin/bash
  22. ifeq "$(WOLFSSL_OBJ_FILES)" ""
  23. $(error $$WOLFSSL_OBJ_FILES is unset.)
  24. endif
  25. ifeq "$(WOLFSSL_CFLAGS)" ""
  26. $(error $$WOLFSSL_CFLAGS is unset.)
  27. endif
  28. WOLFSSL_CFLAGS += -ffreestanding -Wframe-larger-than=$(MAX_STACK_FRAME_SIZE)
  29. ifeq "$(KERNEL_ARCH)" "x86"
  30. WOLFSSL_CFLAGS += -mpreferred-stack-boundary=4
  31. endif
  32. obj-m := libwolfssl.o
  33. WOLFSSL_OBJ_TARGETS := $(patsubst %, $(obj)/%, $(WOLFSSL_OBJ_FILES))
  34. ifeq "$(ENABLED_LINUXKM_PIE)" "yes"
  35. WOLFCRYPT_PIE_FILES := $(patsubst %, $(obj)/%, $(WOLFCRYPT_PIE_FILES))
  36. endif
  37. $(obj)/linuxkm/module_exports.o: $(WOLFSSL_OBJ_TARGETS)
  38. # this mechanism only works in kernel 5.x+ (fallback to hardcoded value)
  39. hostprogs := linuxkm/get_thread_size
  40. always-y := $(hostprogs)
  41. HOST_EXTRACFLAGS += $(NOSTDINC_FLAGS) $(LINUXINCLUDE) $(KBUILD_CFLAGS) -static -fno-omit-frame-pointer
  42. # this rule is needed to get build to succeed in 4.x (get_thread_size still doesn't get built)
  43. $(obj)/linuxkm/get_thread_size: $(src)/linuxkm/get_thread_size.c
  44. $(WOLFSSL_OBJ_TARGETS): | $(obj)/linuxkm/get_thread_size
  45. KERNEL_THREAD_STACK_SIZE=$(shell test -x $(obj)/linuxkm/get_thread_size && $(obj)/linuxkm/get_thread_size || echo 16384)
  46. MAX_STACK_FRAME_SIZE=$(shell echo $$(( $(KERNEL_THREAD_STACK_SIZE) / 4)))
  47. libwolfssl-y := $(WOLFSSL_OBJ_FILES) linuxkm/module_hooks.o linuxkm/module_exports.o
  48. WOLFSSL_CFLAGS_NO_VECTOR_INSNS := $(CFLAGS_SIMD_DISABLE) $(CFLAGS_FPU_DISABLE)
  49. ifeq "$(ENABLED_ASM)" "yes"
  50. WOLFSSL_CFLAGS_YES_VECTOR_INSNS := $(CFLAGS_SIMD_ENABLE) $(CFLAGS_FPU_DISABLE) $(CFLAGS_AUTO_VECTORIZE_DISABLE)
  51. else
  52. WOLFSSL_CFLAGS_YES_VECTOR_INSNS := $(WOLFSSL_CFLAGS_NO_VECTOR_INSNS)
  53. endif
  54. ccflags-y := $(WOLFSSL_CFLAGS) $(WOLFSSL_CFLAGS_NO_VECTOR_INSNS)
  55. $(obj)/libwolfssl.mod.o: ccflags-y :=
  56. $(obj)/wolfcrypt/test/test.o: ccflags-y += -DNO_MAIN_DRIVER
  57. $(obj)/wolfcrypt/src/aes.o: ccflags-y = $(WOLFSSL_CFLAGS) $(WOLFSSL_CFLAGS_YES_VECTOR_INSNS)
  58. ifeq "$(ENABLED_LINUXKM_PIE)" "yes"
  59. PIE_FLAGS := -fPIE -fno-stack-protector -fno-toplevel-reorder
  60. PIE_SUPPORT_FLAGS := -DUSE_WOLFSSL_LINUXKM_PIE_REDIRECT_TABLE
  61. ifeq "$(KERNEL_ARCH)" "x86"
  62. PIE_FLAGS += -mcmodel=small -mindirect-branch=keep -mfunction-return=keep
  63. endif
  64. ifeq "$(KERNEL_ARCH)" "mips"
  65. PIE_FLAGS += -mabicalls
  66. endif
  67. $(WOLFCRYPT_PIE_FILES): ccflags-y += $(PIE_SUPPORT_FLAGS) $(PIE_FLAGS)
  68. $(WOLFCRYPT_PIE_FILES): ccflags-remove-y += -pg
  69. # disabling retpoline generation leads to profuse warnings without this:
  70. $(WOLFCRYPT_PIE_FILES): OBJECT_FILES_NON_STANDARD := y
  71. $(obj)/linuxkm/module_hooks.o: ccflags-y += $(PIE_SUPPORT_FLAGS)
  72. endif
  73. asflags-y := $(WOLFSSL_ASFLAGS) $(ASFLAGS_FPUSIMD_DISABLE)
  74. # vectorized implementations that are kernel-safe are listed here.
  75. # these are known kernel-compatible, but they still irritate objtool.
  76. $(obj)/wolfcrypt/src/aes_asm.o: asflags-y = $(WOLFSSL_ASFLAGS) $(ASFLAGS_FPU_DISABLE_SIMD_ENABLE)
  77. $(obj)/wolfcrypt/src/aes_asm.o: OBJECT_FILES_NON_STANDARD := y
  78. $(obj)/wolfcrypt/src/aes_gcm_asm.o: asflags-y = $(WOLFSSL_ASFLAGS) $(ASFLAGS_FPU_DISABLE_SIMD_ENABLE)
  79. $(obj)/wolfcrypt/src/aes_gcm_asm.o: OBJECT_FILES_NON_STANDARD := y
  80. $(obj)/wolfcrypt/src/sp_x86_64_asm.o: asflags-y = $(WOLFSSL_ASFLAGS) $(ASFLAGS_FPU_DISABLE_SIMD_ENABLE)
  81. $(obj)/wolfcrypt/src/sp_x86_64_asm.o: OBJECT_FILES_NON_STANDARD := y
  82. ifeq "$(ENABLED_LINUXKM_PIE)" "yes"
  83. rename-pie-text-and-data-sections: $(WOLFSSL_OBJ_TARGETS)
  84. ifndef NM
  85. NM := nm
  86. endif
  87. ifndef READELF
  88. READELF := readelf
  89. endif
  90. ifndef OBJCOPY
  91. OBJCOPY := objcopy
  92. endif
  93. .PHONY: rename-pie-text-and-data-sections
  94. rename-pie-text-and-data-sections:
  95. ifneq "$(quiet)" "silent_"
  96. @echo -n ' Checking wolfCrypt for unresolved symbols and forbidden relocations... '
  97. endif
  98. @cd "$(obj)" || exit $$?; \
  99. $(LD) -relocatable -o wolfcrypt_test_link.o $(WOLFCRYPT_PIE_FILES) || exit $$?; \
  100. undefined=$$($(NM) --undefined-only wolfcrypt_test_link.o) || exit $$?; \
  101. GOT_relocs=$$($(READELF) --relocs --wide wolfcrypt_test_link.o | egrep '^[^ ]+ +[^ ]+ +[^ ]*GOT[^ ]* ') || [ $$? = 1 ] || exit 2; \
  102. rm wolfcrypt_test_link.o; \
  103. if [ -n "$$undefined" ]; then \
  104. echo "wolfCrypt container has unresolved symbols:" 1>&2; \
  105. echo "$$undefined" 1>&2; \
  106. exit 1; \
  107. fi; \
  108. if [ -n "$$GOT_relocs" ]; then \
  109. echo "wolfCrypt container has GOT relocations (non-local function address used as operand?):" 1>&2; \
  110. echo "$$GOT_relocs" 1>&2; \
  111. exit 1; \
  112. fi
  113. ifneq "$(quiet)" "silent_"
  114. @echo 'OK.'
  115. endif
  116. @cd "$(obj)" || exit $$?; \
  117. for file in $(WOLFCRYPT_PIE_FILES); do \
  118. $(OBJCOPY) --rename-section .text=.text.wolfcrypt --rename-section .data=.data.wolfcrypt "$$file" || exit $$?; \
  119. done
  120. ifneq "$(quiet)" "silent_"
  121. @echo ' wolfCrypt .{text,data} sections containerized to .{text,data}.wolfcrypt'
  122. endif
  123. $(src)/linuxkm/module_exports.c: rename-pie-text-and-data-sections
  124. endif
  125. # auto-generate the exported symbol list, leveraging the WOLFSSL_API visibility tags.
  126. # exclude symbols that don't match wc_* or wolf*.
  127. $(src)/linuxkm/module_exports.c: $(src)/linuxkm/module_exports.c.template $(WOLFSSL_OBJ_TARGETS)
  128. @cp $< $@
  129. @readelf --symbols --wide $(WOLFSSL_OBJ_TARGETS) | \
  130. awk '/^ *[0-9]+: / { \
  131. if ($$8 !~ /^(wc_|wolf|WOLF|TLSX_)/){next;} \
  132. if (($$4 == "FUNC") && ($$5 == "GLOBAL") && ($$6 == "DEFAULT")) { \
  133. print "EXPORT_SYMBOL_NS_GPL(" $$8 ", WOLFSSL);"; \
  134. } \
  135. }' >> $@
  136. @echo -e '#ifndef NO_CRYPT_TEST\nEXPORT_SYMBOL_NS_GPL(wolfcrypt_test, WOLFSSL);\n#endif' >> $@
  137. clean-files := module_exports.c linuxkm src wolfcrypt/src wolfcrypt/test wolfcrypt