You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

strerror.c 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. #include <errno.h>
  2. #include <string.h>
  3. #include <stdio.h>
  4. #include <gpxe/errortab.h>
  5. /** @file
  6. *
  7. * Error descriptions.
  8. *
  9. * The error numbers used by Etherboot are a superset of those defined
  10. * by the PXE specification version 2.1. See errno.h for a listing of
  11. * the error values.
  12. *
  13. * To save space in ROM images, error string tables are optional. Use
  14. * the ERRORMSG_XXX options in config.h to select which error string
  15. * tables you want to include. If an error string table is omitted,
  16. * strerror() will simply return the text "Error 0x<errno>".
  17. *
  18. */
  19. FILE_LICENCE ( GPL2_OR_LATER );
  20. /**
  21. * Find error description
  22. *
  23. * @v errno Error number
  24. * @ret errortab Error description, or NULL
  25. */
  26. static struct errortab * find_error ( int errno ) {
  27. struct errortab *errortab;
  28. for_each_table_entry ( errortab, ERRORTAB ) {
  29. if ( errortab->errno == errno )
  30. return errortab;
  31. }
  32. return NULL;
  33. }
  34. /**
  35. * Find closest error description
  36. *
  37. * @v errno Error number
  38. * @ret errortab Error description, or NULL
  39. *
  40. *
  41. */
  42. static struct errortab * find_closest_error ( int errno ) {
  43. struct errortab *errortab;
  44. /* First, look for an exact match */
  45. if ( ( errortab = find_error ( errno ) ) != NULL )
  46. return errortab;
  47. /* Second, try masking off the gPXE-specific bit and seeing if
  48. * we have an entry for the generic POSIX error message.
  49. */
  50. if ( ( errortab = find_error ( errno & 0x7f0000ff ) ) != NULL )
  51. return errortab;
  52. return NULL;
  53. }
  54. /**
  55. * Retrieve string representation of error number.
  56. *
  57. * @v errno/rc Error number or return status code
  58. * @ret strerror Pointer to error text
  59. *
  60. * If the error is not found in the linked-in error tables, generates
  61. * a generic "Error 0x<errno>" message.
  62. *
  63. * The pointer returned by strerror() is valid only until the next
  64. * call to strerror().
  65. *
  66. */
  67. const char * strerror ( int errno ) {
  68. static char errbuf[64];
  69. struct errortab *errortab;
  70. /* Allow for strerror(rc) as well as strerror(errno) */
  71. if ( errno < 0 )
  72. errno = -errno;
  73. /* Find the error description, if one exists */
  74. errortab = find_closest_error ( errno );
  75. /* Construct the error message */
  76. if ( errortab ) {
  77. snprintf ( errbuf, sizeof ( errbuf ), "%s (%#08x)",
  78. errortab->text, errno );
  79. } else {
  80. snprintf ( errbuf, sizeof ( errbuf ), "Error %#08x", errno );
  81. }
  82. return errbuf;
  83. }
  84. /* Do not include ERRFILE portion in the numbers in the error table */
  85. #undef ERRFILE
  86. #define ERRFILE 0
  87. /** The most common errors */
  88. struct errortab common_errors[] __errortab = {
  89. { 0, "No error" },
  90. { EACCES, "Permission denied" },
  91. { ECANCELED, "Operation cancelled" },
  92. { ECONNRESET, "Connection reset" },
  93. { EINVAL, "Invalid argument" },
  94. { EIO, "Input/output error" },
  95. { ENETUNREACH, "Network unreachable" },
  96. { ENODEV, "No such device" },
  97. { ENOENT, "File not found" },
  98. { ENOEXEC, "Not an executable image" },
  99. { ENOMEM, "Out of memory" },
  100. { ENOSPC, "No space left on device" },
  101. { ENOTCONN, "Not connected" },
  102. { ENOTSUP, "Not supported" },
  103. { EPERM, "Operation not permitted" },
  104. { ERANGE, "Out of range" },
  105. { ETIMEDOUT, "Connection timed out" },
  106. };