errno.py 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. #!/usr/bin/env python3
  2. #
  3. # Copyright (c) 2021 Nordic Semiconductor NA
  4. #
  5. # SPDX-License-Identifier: Apache-2.0
  6. """Check minimal libc error numbers against newlib.
  7. This script loads the errno.h included in Zephyr's minimal libc and checks its
  8. contents against the SDK's newlib errno.h. This is done to ensure that both C
  9. libraries are aligned at all times.
  10. """
  11. import os
  12. from pathlib import Path
  13. import re
  14. import sys
  15. def parse_errno(path):
  16. with open(path, 'r') as f:
  17. r = re.compile(r'^\s*#define\s+([A-Z]+)\s+([0-9]+)')
  18. errnos = []
  19. for line in f:
  20. m = r.match(line)
  21. if m:
  22. errnos.append(m.groups())
  23. return errnos
  24. def main():
  25. minimal = Path("lib/libc/minimal/include/errno.h")
  26. newlib = Path("arm-zephyr-eabi/arm-zephyr-eabi/include/sys/errno.h")
  27. try:
  28. minimal = os.environ['ZEPHYR_BASE'] / minimal
  29. newlib = os.environ['ZEPHYR_SDK_INSTALL_DIR'] / newlib
  30. except KeyError as e:
  31. print(f'Environment variable missing: {e}', file=sys.stderr)
  32. sys.exit(1)
  33. minimal = parse_errno(minimal)
  34. newlib = parse_errno(newlib)
  35. for e in minimal:
  36. if e[0] not in [x[0] for x in newlib] or e[1] != next(
  37. filter(lambda _e: _e[0] == e[0], newlib))[1]:
  38. print('Invalid entry in errno.h:', file=sys.stderr)
  39. print(f'{e[0]} (with value {e[1]})', file=sys.stderr)
  40. sys.exit(1)
  41. print('errno.h validated correctly')
  42. if __name__ == "__main__":
  43. main()