tst-nss-files-hosts-long.c 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /* Test getent doesn't fail with long /etc/hosts lines (Bug 21915).
  2. Copyright (C) 2019-2026 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public License as
  6. published by the Free Software Foundation; either version 2.1 of the
  7. License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; see the file COPYING.LIB. If
  14. not, see <https://www.gnu.org/licenses/>. */
  15. /* This test runs getent twice to parse a /etc/hosts with a very
  16. long line. Prior to fixing this parser this would crash getent. */
  17. #include <stdlib.h>
  18. #include <nss.h>
  19. #include <support/check.h>
  20. static int
  21. do_test (void)
  22. {
  23. int ret;
  24. /* Run getent to fetch the IPv4 address for host test4. This forces
  25. /etc/hosts to be parsed. Use --no-addrconfig to return addresses
  26. even in an IPv6-only environment. */
  27. ret = system("getent --no-addrconfig ahostsv4 test4");
  28. if (ret != 0)
  29. FAIL_EXIT1("ahostsv4 failed");
  30. /* Likewise for IPv6. */
  31. ret = system("getent --no-addrconfig ahostsv6 test6");
  32. if (ret != 0)
  33. FAIL_EXIT1("ahostsv6 failed");
  34. exit (0);
  35. }
  36. #include <support/test-driver.c>