curl_gethostname.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
  9. *
  10. * This software is licensed as described in the file COPYING, which
  11. * you should have received as part of this distribution. The terms
  12. * are also available at https://curl.haxx.se/docs/copyright.html.
  13. *
  14. * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. * copies of the Software, and permit persons to whom the Software is
  16. * furnished to do so, under the terms of the COPYING file.
  17. *
  18. * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. * KIND, either express or implied.
  20. *
  21. ***************************************************************************/
  22. #include "curl_setup.h"
  23. #include "curl_gethostname.h"
  24. /*
  25. * Curl_gethostname() is a wrapper around gethostname() which allows
  26. * overriding the host name that the function would normally return.
  27. * This capability is used by the test suite to verify exact matching
  28. * of NTLM authentication, which exercises libcurl's MD4 and DES code
  29. * as well as by the SMTP module when a hostname is not provided.
  30. *
  31. * For libcurl debug enabled builds host name overriding takes place
  32. * when environment variable CURL_GETHOSTNAME is set, using the value
  33. * held by the variable to override returned host name.
  34. *
  35. * Note: The function always returns the un-qualified hostname rather
  36. * than being provider dependent.
  37. *
  38. * For libcurl shared library release builds the test suite preloads
  39. * another shared library named libhostname using the LD_PRELOAD
  40. * mechanism which intercepts, and might override, the gethostname()
  41. * function call. In this case a given platform must support the
  42. * LD_PRELOAD mechanism and additionally have environment variable
  43. * CURL_GETHOSTNAME set in order to override the returned host name.
  44. *
  45. * For libcurl static library release builds no overriding takes place.
  46. */
  47. int Curl_gethostname(char *name, GETHOSTNAME_TYPE_ARG2 namelen)
  48. {
  49. #ifndef HAVE_GETHOSTNAME
  50. /* Allow compilation and return failure when unavailable */
  51. (void) name;
  52. (void) namelen;
  53. return -1;
  54. #else
  55. int err;
  56. char *dot;
  57. #ifdef DEBUGBUILD
  58. /* Override host name when environment variable CURL_GETHOSTNAME is set */
  59. const char *force_hostname = getenv("CURL_GETHOSTNAME");
  60. if(force_hostname) {
  61. strncpy(name, force_hostname, namelen);
  62. err = 0;
  63. }
  64. else {
  65. name[0] = '\0';
  66. err = gethostname(name, namelen);
  67. }
  68. #else /* DEBUGBUILD */
  69. /* The call to system's gethostname() might get intercepted by the
  70. libhostname library when libcurl is built as a non-debug shared
  71. library when running the test suite. */
  72. name[0] = '\0';
  73. err = gethostname(name, namelen);
  74. #endif
  75. name[namelen - 1] = '\0';
  76. if(err)
  77. return err;
  78. /* Truncate domain, leave only machine name */
  79. dot = strchr(name, '.');
  80. if(dot)
  81. *dot = '\0';
  82. return 0;
  83. #endif
  84. }