選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

strerror.c 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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. * @v mask Mask of bits that we care about
  25. * @ret errortab Error description, or NULL
  26. */
  27. static struct errortab * find_error ( int errno, int mask ) {
  28. struct errortab *errortab;
  29. for_each_table_entry ( errortab, ERRORTAB ) {
  30. if ( ( ( errortab->errno ^ errno ) & mask ) == 0 )
  31. return errortab;
  32. }
  33. return NULL;
  34. }
  35. /**
  36. * Find closest error description
  37. *
  38. * @v errno Error number
  39. * @ret errortab Error description, or NULL
  40. *
  41. *
  42. */
  43. static struct errortab * find_closest_error ( int errno ) {
  44. struct errortab *errortab;
  45. /* First, look for an exact match */
  46. if ( ( errortab = find_error ( errno, 0x7fffffff ) ) != NULL )
  47. return errortab;
  48. /* Second, try masking off the gPXE-specific bit and seeing if
  49. * we have an entry for the generic POSIX error message.
  50. */
  51. if ( ( errortab = find_error ( errno, 0x4f0000ff ) ) != NULL )
  52. return errortab;
  53. return NULL;
  54. }
  55. /**
  56. * Retrieve string representation of error number.
  57. *
  58. * @v errno/rc Error number or return status code
  59. * @ret strerror Pointer to error text
  60. *
  61. * If the error is not found in the linked-in error tables, generates
  62. * a generic "Error 0x<errno>" message.
  63. *
  64. * The pointer returned by strerror() is valid only until the next
  65. * call to strerror().
  66. *
  67. */
  68. const char * strerror ( int errno ) {
  69. static char errbuf[64];
  70. struct errortab *errortab;
  71. /* Allow for strerror(rc) as well as strerror(errno) */
  72. if ( errno < 0 )
  73. errno = -errno;
  74. /* Find the error description, if one exists */
  75. errortab = find_closest_error ( errno );
  76. /* Construct the error message */
  77. if ( errortab ) {
  78. snprintf ( errbuf, sizeof ( errbuf ), "%s (%#08x)",
  79. errortab->text, errno );
  80. } else {
  81. snprintf ( errbuf, sizeof ( errbuf ), "Error %#08x", errno );
  82. }
  83. return errbuf;
  84. }
  85. /* Do not include ERRFILE portion in the numbers in the error table */
  86. #undef ERRFILE
  87. #define ERRFILE 0
  88. /** The most common errors */
  89. struct errortab common_errors[] __errortab = {
  90. { 0, "No error" },
  91. { EACCES, "Permission denied" },
  92. { ECANCELED, "Operation cancelled" },
  93. { ECONNRESET, "Connection reset" },
  94. { EINVAL, "Invalid argument" },
  95. { EIO, "Input/output error" },
  96. { ENETUNREACH, "Network unreachable" },
  97. { ENODEV, "No such device" },
  98. { ENOENT, "File not found" },
  99. { ENOEXEC, "Not an executable image" },
  100. { ENOMEM, "Out of memory" },
  101. { ENOSPC, "No space left on device" },
  102. { ENOTCONN, "Not connected" },
  103. { ENOTSUP, "Not supported" },
  104. { EPERM, "Operation not permitted" },
  105. { ERANGE, "Out of range" },
  106. { ETIMEDOUT, "Connection timed out" },
  107. };