realpath.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. /* ----------------------------------------------------------------------- *
  2. *
  3. * Copyright 2016 The NASM Authors - All Rights Reserved
  4. * See the file AUTHORS included with the NASM distribution for
  5. * the specific copyright holders.
  6. *
  7. * Redistribution and use in source and binary forms, with or without
  8. * modification, are permitted provided that the following
  9. * conditions are met:
  10. *
  11. * * Redistributions of source code must retain the above copyright
  12. * notice, this list of conditions and the following disclaimer.
  13. * * Redistributions in binary form must reproduce the above
  14. * copyright notice, this list of conditions and the following
  15. * disclaimer in the documentation and/or other materials provided
  16. * with the distribution.
  17. *
  18. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
  19. * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
  20. * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  21. * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  22. * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
  23. * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  24. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  25. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  26. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  27. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  28. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  29. * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
  30. * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  31. *
  32. * ----------------------------------------------------------------------- */
  33. /*
  34. * realpath.c As system-independent as possible implementation of realpath()
  35. */
  36. #include "compiler.h"
  37. #include <stdlib.h>
  38. #include <errno.h>
  39. #include <limits.h>
  40. #ifdef HAVE_UNISTD_H
  41. # include <unistd.h>
  42. #endif
  43. #ifdef HAVE_SYS_PARAM_H
  44. # include <sys/param.h>
  45. #endif
  46. #include "nasmlib.h"
  47. #ifdef HAVE_CANONICALIZE_FILE_NAME
  48. /*
  49. * GNU-specific, but avoids the realpath(..., NULL)
  50. * portability problem if it exists.
  51. */
  52. char *nasm_realpath(const char *rel_path)
  53. {
  54. char *rp = canonicalize_file_name(rel_path);
  55. return rp ? rp : nasm_strdup(rel_path);
  56. }
  57. #elif defined(HAVE_REALPATH)
  58. /*
  59. * POSIX.1-2008 defines realpath(..., NULL); POSIX.1-2001 doesn't guarantee
  60. * that a NULL second argument is supported.
  61. */
  62. char *nasm_realpath(const char *rel_path)
  63. {
  64. char *rp;
  65. rp = realpath(rel_path, NULL);
  66. /* Not all implemetations of realpath() support a NULL second argument */
  67. if (!rp && errno == EINVAL) {
  68. long path_max = -1;
  69. char *rp;
  70. #if defined(HAVE_PATHCONF) && defined(_PC_PATH_MAX)
  71. path_max = pathconf(rel_path, _PC_PATH_MAX); /* POSIX */
  72. #endif
  73. if (path_max < 0) {
  74. #ifdef PATH_MAX
  75. path_max = PATH_MAX; /* SUSv2 */
  76. #elif defined(MAXPATHLEN)
  77. path_max = MAXPATHLEN; /* Solaris */
  78. #else
  79. path_max = 65536; /* Crazily high, we hope */
  80. #endif
  81. }
  82. rp = nasm_malloc(path_max);
  83. if (!realpath(rel_path, rp)) {
  84. nasm_free(rp);
  85. rp = NULL;
  86. } else {
  87. /* On some systems, pathconf() can return a very large value */
  88. rp[path_max - 1] = '\0'; /* Just in case overrun is possible */
  89. rp = nasm_realloc(rp, strlen(rp) + 1);
  90. }
  91. }
  92. return rp ? rp : nasm_strdup(rel_path);
  93. }
  94. #elif defined(HAVE__FULLPATH)
  95. /*
  96. * win32/win64 API
  97. */
  98. char *nasm_realpath(const char *rel_path)
  99. {
  100. char *rp = _fullpath(NULL, rel_path, 0);
  101. return rp ? rp : nasm_strdup(rel_path);
  102. }
  103. #else
  104. /*
  105. * There is nothing we know how to do here, so hope it just works anyway.
  106. */
  107. char *nasm_realpath(const char *rel_path)
  108. {
  109. return nasm_strdup(rel_path);
  110. }
  111. #endif