linuxkm_wc_port.h 26 KB

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