libc-hooks.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /*
  2. * Copyright (c) 2018, Intel Corporation.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_SYS_LIBC_HOOKS_H_
  7. #define ZEPHYR_INCLUDE_SYS_LIBC_HOOKS_H_
  8. #include <toolchain.h>
  9. #include <stdio.h>
  10. #include <stddef.h>
  11. /*
  12. * Private header for specifying accessory functions to the C library internals
  13. * that need to call into the kernel as system calls
  14. */
  15. #if defined(CONFIG_NEWLIB_LIBC) || defined(CONFIG_ARCMWDT_LIBC)
  16. /* syscall generation ignores preprocessor, ensure this is defined to ensure
  17. * we don't have compile errors
  18. */
  19. #define _MLIBC_RESTRICT
  20. __syscall int zephyr_read_stdin(char *buf, int nbytes);
  21. __syscall int zephyr_write_stdout(const void *buf, int nbytes);
  22. #else
  23. /* Minimal libc */
  24. __syscall int zephyr_fputc(int c, FILE * stream);
  25. __syscall size_t zephyr_fwrite(const void *_MLIBC_RESTRICT ptr, size_t size,
  26. size_t nitems, FILE *_MLIBC_RESTRICT stream);
  27. #endif /* CONFIG_NEWLIB_LIBC */
  28. #ifdef CONFIG_USERSPACE
  29. #if defined(CONFIG_NEWLIB_LIBC)
  30. /* If we are using newlib, the heap arena is in one of two areas:
  31. * - If we have an MPU that requires power of two alignment, the heap bounds
  32. * must be specified in Kconfig via CONFIG_NEWLIB_LIBC_ALIGNED_HEAP_SIZE.
  33. * - Otherwise, the heap arena on most arches starts at a suitably
  34. * aligned base addreess after the `_end` linker symbol, through to the end
  35. * of system RAM.
  36. */
  37. #if (!defined(CONFIG_MPU_REQUIRES_POWER_OF_TWO_ALIGNMENT) || \
  38. (defined(CONFIG_MPU_REQUIRES_POWER_OF_TWO_ALIGNMENT) && \
  39. CONFIG_NEWLIB_LIBC_ALIGNED_HEAP_SIZE))
  40. #define Z_MALLOC_PARTITION_EXISTS 1
  41. extern struct k_mem_partition z_malloc_partition;
  42. #endif
  43. #elif defined(CONFIG_MINIMAL_LIBC)
  44. #if (CONFIG_MINIMAL_LIBC_MALLOC_ARENA_SIZE > 0)
  45. /* Minimal libc by default has no malloc arena, its size must be set in
  46. * Kconfig via CONFIG_MINIMAL_LIBC_MALLOC_ARENA_SIZE
  47. */
  48. #define Z_MALLOC_PARTITION_EXISTS 1
  49. #endif /* CONFIG_MINIMAL_LIBC_MALLOC_ARENA_SIZE > 0 */
  50. #endif /* CONFIG_MINIMAL_LIBC */
  51. #ifdef Z_MALLOC_PARTITION_EXISTS
  52. /* Memory partition containing the libc malloc arena. Configuration controls
  53. * whether this is available, and an arena size may need to be set.
  54. */
  55. extern struct k_mem_partition z_malloc_partition;
  56. #endif
  57. #if defined(CONFIG_NEWLIB_LIBC) || defined(CONFIG_STACK_CANARIES) || \
  58. defined(CONFIG_NEED_LIBC_MEM_PARTITION)
  59. /* - All newlib globals will be placed into z_libc_partition.
  60. * - Minimal C library globals, if any, will be placed into
  61. * z_libc_partition.
  62. * - Stack canary globals will be placed into z_libc_partition since
  63. * it is not worth placing in its own partition.
  64. * - Some architectures may place the global pointer to the thread local
  65. * storage in z_libc_partition since it is not worth placing in its
  66. * own partition.
  67. */
  68. #define Z_LIBC_PARTITION_EXISTS 1
  69. /* C library globals, except the malloc arena */
  70. extern struct k_mem_partition z_libc_partition;
  71. #endif
  72. #endif /* CONFIG_USERSPACE */
  73. #include <syscalls/libc-hooks.h>
  74. #endif /* ZEPHYR_INCLUDE_SYS_LIBC_HOOKS_H_ */