about summary refs log tree commit diff
path: root/io/tst-ftw-bz28126.c
blob: d3c484f418514d8e48cafcffe70a74f17f122aa2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/* Check if internal buffer reallocation work for large paths (BZ #28126)
   Copyright (C) 2021-2024 Free Software Foundation, Inc.
   This file is part of the GNU C Library.

   The GNU C Library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 2.1 of the License, or (at your option) any later version.

   The GNU C Library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General Public
   License along with the GNU C Library; if not, see
   <https://www.gnu.org/licenses/>.  */

#include <errno.h>
#include <ftw.h>
#include <limits.h>
#include <string.h>
#include <stdlib.h>
#include <support/check.h>
#include <support/support.h>
#include <support/temp_file.h>
#include <support/xunistd.h>
#include <stdio.h>

static int
my_func (const char *file, const struct stat *sb, int flag)
{
  return 0;
}

static const char folder[NAME_MAX] = { [0 ... 253] = 'a', [254] = '\0' };

#define NSUBFOLDERS 16
static int nsubfolders;

static void
do_cleanup (void)
{
  xchdir ("..");
  for (int i = 0; i < nsubfolders; i++)
    {
      remove (folder);
      xchdir ("..");
    }
  remove (folder);
}
#define CLEANUP_HANDLER do_cleanup

static void
check_mkdir (const char *path)
{
  int r = mkdir (path, 0777);
  /* Some filesystem such as overlayfs does not support larger path required
     to trigger the internal buffer reallocation.  */
  if (r != 0)
    {
      if (errno == ENAMETOOLONG)
	FAIL_UNSUPPORTED ("the filesystem does not support the required"
			  "large path");
      else
	FAIL_EXIT1 ("mkdir (\"%s\", 0%o): %m", folder, 0777);
    }
}

static int
do_test (void)
{
  char *tempdir = support_create_temp_directory ("tst-bz28126");

  /* Create path with various subfolders to force an internal buffer
     reallocation within ntfw.  */
  char *path = xasprintf ("%s/%s", tempdir, folder);
  check_mkdir (path);
  xchdir (path);
  free (path);
  for (int i = 0; i < NSUBFOLDERS - 1; i++)
    {
      check_mkdir (folder);
      xchdir (folder);
      nsubfolders++;
    }

  TEST_COMPARE (ftw (tempdir, my_func, 20), 0);

  free (tempdir);

  do_cleanup ();

  return 0;
}

#include <support/test-driver.c>