linuxkm_wc_port.h 26 KB

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