linuxkm_wc_port.h 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648
  1. /* linuxkm_wc_port.h
  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. */
  21. /* included by wolfssl/wolfcrypt/wc_port.h */
  22. #ifndef LINUXKM_WC_PORT_H
  23. #define LINUXKM_WC_PORT_H
  24. #ifdef HAVE_CONFIG_H
  25. #ifndef PACKAGE_NAME
  26. #error wc_port.h included before config.h
  27. #endif
  28. /* config.h is autogenerated without gating, and is subject to repeat
  29. * inclusions, so gate it out here to keep autodetection masking
  30. * intact:
  31. */
  32. #undef HAVE_CONFIG_H
  33. #endif
  34. /* suppress inclusion of stdint-gcc.h to avoid conflicts with Linux native
  35. * include/linux/types.h:
  36. */
  37. #define _GCC_STDINT_H
  38. #define WC_PTR_TYPE uintptr_t
  39. /* needed to suppress inclusion of stdio.h in wolfssl/wolfcrypt/types.h */
  40. #define XSNPRINTF snprintf
  41. /* the rigmarole around kstrtoll() here is to accommodate its
  42. * warn-unused-result attribute.
  43. *
  44. * also needed to suppress inclusion of stdlib.h in
  45. * wolfssl/wolfcrypt/types.h.
  46. */
  47. #define XATOI(s) ({ \
  48. long long _xatoi_res = 0; \
  49. int _xatoi_ret = kstrtoll(s, 10, &_xatoi_res); \
  50. if (_xatoi_ret != 0) { \
  51. _xatoi_res = 0; \
  52. } \
  53. (int)_xatoi_res; \
  54. })
  55. #ifdef BUILDING_WOLFSSL
  56. #if defined(CONFIG_MIPS) && defined(HAVE_LINUXKM_PIE_SUPPORT)
  57. /* __ZBOOT__ disables some unhelpful macros around the mem*() funcs in
  58. * legacy arch/mips/include/asm/string.h
  59. */
  60. #define __ZBOOT__
  61. #define memcmp __builtin_memcmp
  62. #define __ARCH_MEMCMP_NO_REDIRECT
  63. #define __ARCH_MEMCPY_NO_REDIRECT
  64. #define __builtin_memcpy memcpy
  65. extern void *memcpy(void *dest, const void *src, unsigned int n);
  66. #define __ARCH_MEMCPY_NO_REDIRECT
  67. #define __builtin_memset memset
  68. extern void *memset(void *dest, int c, unsigned int n);
  69. #endif
  70. _Pragma("GCC diagnostic push");
  71. /* we include all the needed kernel headers with these masked out. else
  72. * there are profuse warnings.
  73. */
  74. _Pragma("GCC diagnostic ignored \"-Wunused-parameter\"");
  75. _Pragma("GCC diagnostic ignored \"-Wpointer-arith\"");
  76. _Pragma("GCC diagnostic ignored \"-Wshadow\"");
  77. _Pragma("GCC diagnostic ignored \"-Wnested-externs\"");
  78. _Pragma("GCC diagnostic ignored \"-Wredundant-decls\"");
  79. _Pragma("GCC diagnostic ignored \"-Wsign-compare\"");
  80. _Pragma("GCC diagnostic ignored \"-Wpointer-sign\"");
  81. _Pragma("GCC diagnostic ignored \"-Wbad-function-cast\"");
  82. _Pragma("GCC diagnostic ignored \"-Wdiscarded-qualifiers\"");
  83. _Pragma("GCC diagnostic ignored \"-Wtype-limits\"");
  84. _Pragma("GCC diagnostic ignored \"-Wswitch-enum\"");
  85. #include <linux/kconfig.h>
  86. #include <linux/kernel.h>
  87. #include <linux/version.h>
  88. #include <linux/ctype.h>
  89. #include <linux/init.h>
  90. #include <linux/module.h>
  91. #ifdef __PIE__
  92. /* without this, mm.h brings in static, but not inline, pmd_to_page(),
  93. * with direct references to global vmem variables.
  94. */
  95. #undef USE_SPLIT_PMD_PTLOCKS
  96. #define USE_SPLIT_PMD_PTLOCKS 0
  97. #endif
  98. #include <linux/mm.h>
  99. #ifndef SINGLE_THREADED
  100. #include <linux/kthread.h>
  101. #endif
  102. #include <linux/net.h>
  103. #include <linux/slab.h>
  104. #if defined(WOLFSSL_AESNI) || defined(USE_INTEL_SPEEDUP) || defined(WOLFSSL_SP_X86_64_ASM)
  105. #ifndef CONFIG_X86
  106. #error X86 SIMD extensions requested, but CONFIG_X86 is not set.
  107. #endif
  108. #define WOLFSSL_LINUXKM_SIMD
  109. #define WOLFSSL_LINUXKM_SIMD_X86
  110. #if LINUX_VERSION_CODE < KERNEL_VERSION(4, 0, 0)
  111. #include <asm/i387.h>
  112. #else
  113. #include <asm/simd.h>
  114. #endif
  115. #ifdef LINUXKM_SIMD_IRQ
  116. #if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 0, 0)
  117. #include <asm/fpu/internal.h>
  118. #endif
  119. #if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 16, 0)
  120. #error LINUXKM_SIMD_IRQ is unavailable on linux >= 5.16 (missing exports around fpregs)
  121. /*
  122. * #include <asm/fpu/sched.h>
  123. * #include <asm/fpu/signal.h>
  124. */
  125. #endif
  126. #endif
  127. #ifndef SAVE_VECTOR_REGISTERS
  128. #define SAVE_VECTOR_REGISTERS(fail_clause) { int _svr_ret = save_vector_registers_x86(); if (_svr_ret != 0) { fail_clause } }
  129. #endif
  130. #ifndef RESTORE_VECTOR_REGISTERS
  131. #define RESTORE_VECTOR_REGISTERS() restore_vector_registers_x86()
  132. #endif
  133. #elif defined(WOLFSSL_ARMASM) || defined(WOLFSSL_SP_ARM32_ASM) || \
  134. defined(WOLFSSL_SP_ARM64_ASM) || defined(WOLFSSL_SP_ARM_THUMB_ASM) ||\
  135. defined(WOLFSSL_SP_ARM_CORTEX_M_ASM)
  136. #if !defined(CONFIG_ARM) && !defined(CONFIG_ARM64)
  137. #error ARM SIMD extensions requested, but CONFIG_ARM* is not set.
  138. #endif
  139. #define WOLFSSL_LINUXKM_SIMD
  140. #define WOLFSSL_LINUXKM_SIMD_ARM
  141. #include <asm/fpsimd.h>
  142. #ifndef SAVE_VECTOR_REGISTERS
  143. #define SAVE_VECTOR_REGISTERS(fail_clause) { int _svr_ret = save_vector_registers_arm(); if (_svr_ret != 0) { fail_clause } }
  144. #endif
  145. #ifndef RESTORE_VECTOR_REGISTERS
  146. #define RESTORE_VECTOR_REGISTERS() restore_vector_registers_arm()
  147. #endif
  148. #ifdef LINUXKM_SIMD_IRQ
  149. #error LINUXKM_SIMD_IRQ is unavailable on ARM (not implemented)
  150. #endif
  151. #else
  152. #ifndef WOLFSSL_NO_ASM
  153. #define WOLFSSL_NO_ASM
  154. #endif
  155. #endif
  156. _Pragma("GCC diagnostic pop");
  157. /* the kernel uses -std=c89, but not -pedantic, and makes full use of anon
  158. * structs/unions, so we should too.
  159. */
  160. #define HAVE_ANONYMOUS_INLINE_AGGREGATES 1
  161. #define NO_THREAD_LS
  162. #define NO_ATTRIBUTE_CONSTRUCTOR
  163. /* kvmalloc()/kvfree() and friends added in linux commit a7c3e901 */
  164. #if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 12, 0)
  165. #define HAVE_KVMALLOC
  166. #endif
  167. #ifdef HAVE_FIPS
  168. extern int wolfCrypt_FIPS_first(void);
  169. extern int wolfCrypt_FIPS_last(void);
  170. #endif
  171. #if !defined(WOLFCRYPT_ONLY) && !defined(NO_CERTS)
  172. /* work around backward dependency of asn.c on ssl.c. */
  173. struct Signer;
  174. struct Signer *GetCA(void *signers, unsigned char *hash);
  175. #ifndef NO_SKID
  176. struct Signer *GetCAByName(void* signers, unsigned char *hash);
  177. #endif
  178. #endif
  179. #if defined(__PIE__) && !defined(USE_WOLFSSL_LINUXKM_PIE_REDIRECT_TABLE)
  180. #error "compiling -fPIE without PIE support."
  181. #endif
  182. #if defined(HAVE_FIPS) && !defined(HAVE_LINUXKM_PIE_SUPPORT)
  183. #error "FIPS build requires PIE support."
  184. #endif
  185. #ifdef USE_WOLFSSL_LINUXKM_PIE_REDIRECT_TABLE
  186. #ifdef CONFIG_MIPS
  187. #undef __ARCH_MEMCMP_NO_REDIRECT
  188. #undef memcmp
  189. extern int memcmp(const void *s1, const void *s2, size_t n);
  190. #endif
  191. struct wolfssl_linuxkm_pie_redirect_table {
  192. #ifndef __ARCH_MEMCMP_NO_REDIRECT
  193. typeof(memcmp) *memcmp;
  194. #endif
  195. #ifndef __ARCH_MEMCPY_NO_REDIRECT
  196. typeof(memcpy) *memcpy;
  197. #endif
  198. #ifndef __ARCH_MEMSET_NO_REDIRECT
  199. typeof(memset) *memset;
  200. #endif
  201. #ifndef __ARCH_MEMMOVE_NO_REDIRECT
  202. typeof(memmove) *memmove;
  203. #endif
  204. #ifndef __ARCH_STRCMP_NO_REDIRECT
  205. typeof(strcmp) *strcmp;
  206. #endif
  207. #ifndef __ARCH_STRNCMP_NO_REDIRECT
  208. typeof(strncmp) *strncmp;
  209. #endif
  210. #ifndef __ARCH_STRCASECMP_NO_REDIRECT
  211. typeof(strcasecmp) *strcasecmp;
  212. #endif
  213. #ifndef __ARCH_STRNCASECMP_NO_REDIRECT
  214. typeof(strncasecmp) *strncasecmp;
  215. #endif
  216. #ifndef __ARCH_STRLEN_NO_REDIRECT
  217. typeof(strlen) *strlen;
  218. #endif
  219. #ifndef __ARCH_STRSTR_NO_REDIRECT
  220. typeof(strstr) *strstr;
  221. #endif
  222. #ifndef __ARCH_STRNCPY_NO_REDIRECT
  223. typeof(strncpy) *strncpy;
  224. #endif
  225. #ifndef __ARCH_STRNCAT_NO_REDIRECT
  226. typeof(strncat) *strncat;
  227. #endif
  228. typeof(kstrtoll) *kstrtoll;
  229. #if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 15, 0)
  230. typeof(_printk) *_printk;
  231. #else
  232. typeof(printk) *printk;
  233. #endif
  234. typeof(snprintf) *snprintf;
  235. const unsigned char *_ctype;
  236. typeof(kmalloc) *kmalloc;
  237. typeof(kfree) *kfree;
  238. typeof(ksize) *ksize;
  239. typeof(krealloc) *krealloc;
  240. #ifdef HAVE_KVMALLOC
  241. typeof(kvmalloc_node) *kvmalloc_node;
  242. typeof(kvfree) *kvfree;
  243. #endif
  244. typeof(is_vmalloc_addr) *is_vmalloc_addr;
  245. typeof(kmem_cache_alloc_trace) *kmem_cache_alloc_trace;
  246. typeof(kmalloc_order_trace) *kmalloc_order_trace;
  247. typeof(get_random_bytes) *get_random_bytes;
  248. #if LINUX_VERSION_CODE < KERNEL_VERSION(4, 0, 0)
  249. typeof(getnstimeofday) *getnstimeofday;
  250. #elif LINUX_VERSION_CODE < KERNEL_VERSION(5, 0, 0)
  251. typeof(current_kernel_time64) *current_kernel_time64;
  252. #else
  253. typeof(ktime_get_coarse_real_ts64) *ktime_get_coarse_real_ts64;
  254. #endif
  255. struct task_struct *(*get_current)(void);
  256. int (*preempt_count)(void);
  257. #ifdef WOLFSSL_LINUXKM_SIMD_X86
  258. typeof(irq_fpu_usable) *irq_fpu_usable;
  259. /* kernel_fpu_begin() replaced by kernel_fpu_begin_mask() in commit e4512289,
  260. * released in kernel 5.11, backported to 5.4.93
  261. */
  262. #ifdef kernel_fpu_begin
  263. typeof(kernel_fpu_begin_mask) *kernel_fpu_begin_mask;
  264. #else
  265. typeof(kernel_fpu_begin) *kernel_fpu_begin;
  266. #endif
  267. typeof(kernel_fpu_end) *kernel_fpu_end;
  268. #ifdef LINUXKM_SIMD_IRQ
  269. #if LINUX_VERSION_CODE < KERNEL_VERSION(5, 14, 0)
  270. typeof(copy_fpregs_to_fpstate) *copy_fpregs_to_fpstate;
  271. typeof(copy_kernel_to_fpregs) *copy_kernel_to_fpregs;
  272. #elif LINUX_VERSION_CODE < KERNEL_VERSION(5, 16, 0)
  273. typeof(save_fpregs_to_fpstate) *save_fpregs_to_fpstate;
  274. typeof(__restore_fpregs_from_fpstate) *__restore_fpregs_from_fpstate;
  275. typeof(xfeatures_mask_all) *xfeatures_mask_all;
  276. /*
  277. * #else
  278. * typeof(save_fpregs_to_fpstate) *save_fpregs_to_fpstate;
  279. * typeof(restore_fpregs_from_fpstate) *restore_fpregs_from_fpstate;
  280. * typeof(fpu_kernel_cfg) *fpu_kernel_cfg;
  281. */
  282. #endif
  283. #endif
  284. typeof(cpu_number) *cpu_number;
  285. typeof(nr_cpu_ids) *nr_cpu_ids;
  286. #endif /* WOLFSSL_LINUXKM_SIMD_X86 */
  287. typeof(__mutex_init) *__mutex_init;
  288. #if LINUX_VERSION_CODE < KERNEL_VERSION(4, 0, 0)
  289. typeof(mutex_lock_nested) *mutex_lock_nested;
  290. #else
  291. typeof(mutex_lock) *mutex_lock;
  292. #endif
  293. typeof(mutex_unlock) *mutex_unlock;
  294. #if LINUX_VERSION_CODE < KERNEL_VERSION(4, 0, 0)
  295. typeof(mutex_destroy) *mutex_destroy;
  296. #endif
  297. #ifdef HAVE_FIPS
  298. typeof(wolfCrypt_FIPS_first) *wolfCrypt_FIPS_first;
  299. typeof(wolfCrypt_FIPS_last) *wolfCrypt_FIPS_last;
  300. #endif
  301. #if !defined(WOLFCRYPT_ONLY) && !defined(NO_CERTS)
  302. typeof(GetCA) *GetCA;
  303. #ifndef NO_SKID
  304. typeof(GetCAByName) *GetCAByName;
  305. #endif
  306. #endif
  307. const void *_last_slot;
  308. };
  309. extern const struct wolfssl_linuxkm_pie_redirect_table *wolfssl_linuxkm_get_pie_redirect_table(void);
  310. #ifdef __PIE__
  311. #ifndef __ARCH_MEMCMP_NO_REDIRECT
  312. #define memcmp (wolfssl_linuxkm_get_pie_redirect_table()->memcmp)
  313. #endif
  314. #ifndef __ARCH_MEMCPY_NO_REDIRECT
  315. #define memcpy (wolfssl_linuxkm_get_pie_redirect_table()->memcpy)
  316. #endif
  317. #ifndef __ARCH_MEMSET_NO_REDIRECT
  318. #define memset (wolfssl_linuxkm_get_pie_redirect_table()->memset)
  319. #endif
  320. #ifndef __ARCH_MEMMOVE_NO_REDIRECT
  321. #define memmove (wolfssl_linuxkm_get_pie_redirect_table()->memmove)
  322. #endif
  323. #ifndef __ARCH_STRCMP_NO_REDIRECT
  324. #define strcmp (wolfssl_linuxkm_get_pie_redirect_table()->strcmp)
  325. #endif
  326. #ifndef __ARCH_STRNCMP_NO_REDIRECT
  327. #define strncmp (wolfssl_linuxkm_get_pie_redirect_table()->strncmp)
  328. #endif
  329. #ifndef __ARCH_STRCASECMP_NO_REDIRECT
  330. #define strcasecmp (wolfssl_linuxkm_get_pie_redirect_table()->strcasecmp)
  331. #endif
  332. #ifndef __ARCH_STRNCASECMP_NO_REDIRECT
  333. #define strncasecmp (wolfssl_linuxkm_get_pie_redirect_table()->strncasecmp)
  334. #endif
  335. #ifndef __ARCH_STRLEN_NO_REDIRECT
  336. #define strlen (wolfssl_linuxkm_get_pie_redirect_table()->strlen)
  337. #endif
  338. #ifndef __ARCH_STRSTR_NO_REDIRECT
  339. #define strstr (wolfssl_linuxkm_get_pie_redirect_table()->strstr)
  340. #endif
  341. #ifndef __ARCH_STRNCPY_NO_REDIRECT
  342. #define strncpy (wolfssl_linuxkm_get_pie_redirect_table()->strncpy)
  343. #endif
  344. #ifndef __ARCH_STRNCAT_NO_REDIRECT
  345. #define strncat (wolfssl_linuxkm_get_pie_redirect_table()->strncat)
  346. #endif
  347. #define kstrtoll (wolfssl_linuxkm_get_pie_redirect_table()->kstrtoll)
  348. #if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 15, 0)
  349. #define _printk (wolfssl_linuxkm_get_pie_redirect_table()->_printk)
  350. #else
  351. #define printk (wolfssl_linuxkm_get_pie_redirect_table()->printk)
  352. #endif
  353. #define snprintf (wolfssl_linuxkm_get_pie_redirect_table()->snprintf)
  354. #define _ctype (wolfssl_linuxkm_get_pie_redirect_table()->_ctype)
  355. #define kmalloc (wolfssl_linuxkm_get_pie_redirect_table()->kmalloc)
  356. #define kfree (wolfssl_linuxkm_get_pie_redirect_table()->kfree)
  357. #define ksize (wolfssl_linuxkm_get_pie_redirect_table()->ksize)
  358. #define krealloc (wolfssl_linuxkm_get_pie_redirect_table()->krealloc)
  359. #define kzalloc(size, flags) kmalloc(size, (flags) | __GFP_ZERO)
  360. #ifdef HAVE_KVMALLOC
  361. #define kvmalloc_node (wolfssl_linuxkm_get_pie_redirect_table()->kvmalloc_node)
  362. #define kvfree (wolfssl_linuxkm_get_pie_redirect_table()->kvfree)
  363. #endif
  364. #define is_vmalloc_addr (wolfssl_linuxkm_get_pie_redirect_table()->is_vmalloc_addr)
  365. #define kmem_cache_alloc_trace (wolfssl_linuxkm_get_pie_redirect_table()->kmem_cache_alloc_trace)
  366. #define kmalloc_order_trace (wolfssl_linuxkm_get_pie_redirect_table()->kmalloc_order_trace)
  367. #define get_random_bytes (wolfssl_linuxkm_get_pie_redirect_table()->get_random_bytes)
  368. #if LINUX_VERSION_CODE < KERNEL_VERSION(4, 0, 0)
  369. #define getnstimeofday (wolfssl_linuxkm_get_pie_redirect_table()->getnstimeofday)
  370. #elif LINUX_VERSION_CODE < KERNEL_VERSION(5, 0, 0)
  371. #define current_kernel_time64 (wolfssl_linuxkm_get_pie_redirect_table()->current_kernel_time64)
  372. #else
  373. #define ktime_get_coarse_real_ts64 (wolfssl_linuxkm_get_pie_redirect_table()->ktime_get_coarse_real_ts64)
  374. #endif
  375. #undef get_current
  376. #define get_current (wolfssl_linuxkm_get_pie_redirect_table()->get_current)
  377. #undef preempt_count
  378. #define preempt_count (wolfssl_linuxkm_get_pie_redirect_table()->preempt_count)
  379. #ifdef WOLFSSL_LINUXKM_SIMD_X86
  380. #define irq_fpu_usable (wolfssl_linuxkm_get_pie_redirect_table()->irq_fpu_usable)
  381. #ifdef kernel_fpu_begin
  382. #define kernel_fpu_begin_mask (wolfssl_linuxkm_get_pie_redirect_table()->kernel_fpu_begin_mask)
  383. #else
  384. #define kernel_fpu_begin (wolfssl_linuxkm_get_pie_redirect_table()->kernel_fpu_begin)
  385. #endif
  386. #define kernel_fpu_end (wolfssl_linuxkm_get_pie_redirect_table()->kernel_fpu_end)
  387. #ifdef LINUXKM_SIMD_IRQ
  388. #if LINUX_VERSION_CODE < KERNEL_VERSION(5, 14, 0)
  389. #define copy_fpregs_to_fpstate (wolfssl_linuxkm_get_pie_redirect_table()->copy_fpregs_to_fpstate)
  390. #define copy_kernel_to_fpregs (wolfssl_linuxkm_get_pie_redirect_table()->copy_kernel_to_fpregs)
  391. #elif LINUX_VERSION_CODE < KERNEL_VERSION(5, 16, 0)
  392. #define save_fpregs_to_fpstate (wolfssl_linuxkm_get_pie_redirect_table()->save_fpregs_to_fpstate)
  393. #define __restore_fpregs_from_fpstate (wolfssl_linuxkm_get_pie_redirect_table()->__restore_fpregs_from_fpstate)
  394. #define xfeatures_mask_all (*(wolfssl_linuxkm_get_pie_redirect_table()->xfeatures_mask_all))
  395. /*
  396. * #else
  397. * #define save_fpregs_to_fpstate (wolfssl_linuxkm_get_pie_redirect_table()->save_fpregs_to_fpstate)
  398. * #define restore_fpregs_from_fpstate (wolfssl_linuxkm_get_pie_redirect_table()->restore_fpregs_from_fpstate)
  399. * #define fpu_kernel_cfg (*(wolfssl_linuxkm_get_pie_redirect_table()->fpu_kernel_cfg))
  400. */
  401. #endif
  402. #endif
  403. #define cpu_number (*(wolfssl_linuxkm_get_pie_redirect_table()->cpu_number))
  404. #define nr_cpu_ids (*(wolfssl_linuxkm_get_pie_redirect_table()->nr_cpu_ids))
  405. #endif
  406. #define __mutex_init (wolfssl_linuxkm_get_pie_redirect_table()->__mutex_init)
  407. #if LINUX_VERSION_CODE < KERNEL_VERSION(4, 0, 0)
  408. #define mutex_lock_nested (wolfssl_linuxkm_get_pie_redirect_table()->mutex_lock_nested)
  409. #else
  410. #define mutex_lock (wolfssl_linuxkm_get_pie_redirect_table()->mutex_lock)
  411. #endif
  412. #define mutex_unlock (wolfssl_linuxkm_get_pie_redirect_table()->mutex_unlock)
  413. #if LINUX_VERSION_CODE < KERNEL_VERSION(4, 0, 0)
  414. #define mutex_destroy (wolfssl_linuxkm_get_pie_redirect_table()->mutex_destroy)
  415. #endif
  416. /* per linux/ctype.h, tolower() and toupper() are macros bound to static inlines
  417. * that use macros that bring in the _ctype global. for __PIE__, this needs to
  418. * be masked out.
  419. */
  420. #undef tolower
  421. #undef toupper
  422. #define tolower(c) (islower(c) ? (c) : ((c) + ('a'-'A')))
  423. #define toupper(c) (isupper(c) ? (c) : ((c) - ('a'-'A')))
  424. #if !defined(WOLFCRYPT_ONLY) && !defined(NO_CERTS)
  425. #define GetCA (wolfssl_linuxkm_get_pie_redirect_table()->GetCA)
  426. #ifndef NO_SKID
  427. #define GetCAByName (wolfssl_linuxkm_get_pie_redirect_table()->GetCAByName)
  428. #endif
  429. #endif
  430. #endif /* __PIE__ */
  431. #endif /* USE_WOLFSSL_LINUXKM_PIE_REDIRECT_TABLE */
  432. #ifdef WOLFSSL_LINUXKM_SIMD
  433. #ifdef WOLFSSL_LINUXKM_SIMD_X86
  434. extern __must_check int allocate_wolfcrypt_linuxkm_fpu_states(void);
  435. extern void free_wolfcrypt_linuxkm_fpu_states(void);
  436. extern __must_check int save_vector_registers_x86(void);
  437. extern void restore_vector_registers_x86(void);
  438. #elif defined(CONFIG_ARM) || defined(CONFIG_ARM64)
  439. #error kernel module ARM SIMD is not yet tested or usable.
  440. static WARN_UNUSED_RESULT inline int save_vector_registers_arm(void)
  441. {
  442. preempt_disable();
  443. if (! may_use_simd()) {
  444. preempt_enable();
  445. return BAD_STATE_E;
  446. } else {
  447. fpsimd_preserve_current_state();
  448. return 0;
  449. }
  450. }
  451. static inline void restore_vector_registers_arm(void)
  452. {
  453. fpsimd_restore_current_state();
  454. preempt_enable();
  455. }
  456. #endif
  457. #endif /* WOLFSSL_LINUXKM_SIMD */
  458. /* remove this multifariously conflicting macro, picked up from
  459. * Linux arch/<arch>/include/asm/current.h.
  460. */
  461. #ifndef WOLFSSL_NEED_LINUX_CURRENT
  462. #undef current
  463. #endif
  464. /* prevent gcc's mm_malloc.h from being included, since it unconditionally
  465. * includes stdlib.h, which is kernel-incompatible.
  466. */
  467. #define _MM_MALLOC_H_INCLUDED
  468. #ifdef HAVE_KVMALLOC
  469. #define malloc(x) kvmalloc_node(x, GFP_KERNEL, NUMA_NO_NODE)
  470. #define free(x) kvfree(x)
  471. void *lkm_realloc(void *ptr, size_t newsize);
  472. #define realloc(x, y) lkm_realloc(x, y)
  473. #else
  474. #define malloc(x) kmalloc(x, GFP_KERNEL)
  475. #define free(x) kfree(x)
  476. #define realloc(x,y) krealloc(x, y, GFP_KERNEL)
  477. #endif
  478. /* min() and max() in linux/kernel.h over-aggressively type-check, producing
  479. * myriad spurious -Werrors throughout the codebase.
  480. */
  481. #undef min
  482. #undef max
  483. /* work around namespace conflict between wolfssl/internal.h (enum HandShakeType)
  484. * and linux/key.h (extern int()).
  485. */
  486. #define key_update wc_key_update
  487. #define lkm_printf(format, args...) printk(KERN_INFO "wolfssl: %s(): " format, __func__, ## args)
  488. #define printf(...) lkm_printf(__VA_ARGS__)
  489. #ifdef HAVE_FIPS
  490. extern void fipsEntry(void);
  491. #endif
  492. /* suppress false-positive "writing 1 byte into a region of size 0" warnings
  493. * building old kernels with new gcc:
  494. */
  495. #if LINUX_VERSION_CODE < KERNEL_VERSION(4, 0, 0)
  496. _Pragma("GCC diagnostic ignored \"-Wstringop-overflow\"");
  497. #endif
  498. /* includes are all above, with incompatible warnings masked out. */
  499. #if LINUX_VERSION_CODE < KERNEL_VERSION(5, 5, 0)
  500. typedef __kernel_time_t time_t;
  501. #else
  502. typedef __kernel_time64_t time_t;
  503. #endif
  504. extern time_t time(time_t * timer);
  505. #define XTIME time
  506. #define WOLFSSL_GMTIME
  507. #define XGMTIME(c, t) gmtime(c)
  508. #define NO_TIMEVAL 1
  509. #endif /* BUILDING_WOLFSSL */
  510. /* if BUILDING_WOLFSSL, mutex.h will have already been included recursively
  511. * above, with the bevy of warnings suppressed, and the below include will
  512. * be a redundant no-op.
  513. */
  514. #include <linux/mutex.h>
  515. typedef struct mutex wolfSSL_Mutex;
  516. #define XMALLOC(s, h, t) ({(void)(h); (void)(t); kmalloc(s, GFP_KERNEL);})
  517. #define XFREE(p, h, t) ({void* _xp; (void)(h); _xp = (p); if(_xp) kfree(_xp);})
  518. #define XREALLOC(p, n, h, t) ({(void)(h); (void)(t); krealloc((p), (n), GFP_KERNEL);})
  519. #include <linux/limits.h>
  520. /* Linux headers define these using C expressions, but we need
  521. * them to be evaluable by the preprocessor, for use in sp_int.h.
  522. */
  523. #if BITS_PER_LONG == 64
  524. _Static_assert(sizeof(ULONG_MAX) == 8,
  525. "BITS_PER_LONG is 64, but ULONG_MAX is not.");
  526. #undef UCHAR_MAX
  527. #define UCHAR_MAX 255
  528. #undef USHRT_MAX
  529. #define USHRT_MAX 65535
  530. #undef UINT_MAX
  531. #define UINT_MAX 4294967295U
  532. #undef ULONG_MAX
  533. #define ULONG_MAX 18446744073709551615UL
  534. #undef ULLONG_MAX
  535. #define ULLONG_MAX ULONG_MAX
  536. #undef INT_MAX
  537. #define INT_MAX 2147483647
  538. #undef LONG_MAX
  539. #define LONG_MAX 9223372036854775807L
  540. #undef LLONG_MAX
  541. #define LLONG_MAX LONG_MAX
  542. #elif BITS_PER_LONG == 32
  543. _Static_assert(sizeof(ULONG_MAX) == 4,
  544. "BITS_PER_LONG is 32, but ULONG_MAX is not.");
  545. #undef UCHAR_MAX
  546. #define UCHAR_MAX 255
  547. #undef USHRT_MAX
  548. #define USHRT_MAX 65535
  549. #undef UINT_MAX
  550. #define UINT_MAX 4294967295U
  551. #undef ULONG_MAX
  552. #define ULONG_MAX 4294967295UL
  553. #undef INT_MAX
  554. #define INT_MAX 2147483647
  555. #undef LONG_MAX
  556. #define LONG_MAX 2147483647L
  557. #undef ULLONG_MAX
  558. #undef LLONG_MAX
  559. #if BITS_PER_LONG_LONG == 64
  560. #define ULLONG_MAX 18446744073709551615UL
  561. #define LLONG_MAX 9223372036854775807L
  562. #else
  563. #undef NO_64BIT
  564. #define NO_64BIT
  565. #define ULLONG_MAX ULONG_MAX
  566. #define LLONG_MAX LONG_MAX
  567. #endif
  568. #else
  569. #error unexpected BITS_PER_LONG value.
  570. #endif
  571. #endif /* LINUXKM_WC_PORT_H */