10 static void prepare (void);
11 #define PREPARE(argc, argv) prepare ()
13 static int do_test (void);
14 #define TEST_FUNCTION do_test ()
16 #include "../test-skeleton.c"
23 size_t test_dir_len
= strlen (test_dir
);
24 static const char dir_name
[] = "/tst-symlinkat.XXXXXX";
26 size_t dirbuflen
= test_dir_len
+ sizeof (dir_name
);
27 char *dirbuf
= malloc (dirbuflen
);
30 puts ("out of memory");
34 snprintf (dirbuf
, dirbuflen
, "%s%s", test_dir
, dir_name
);
35 if (mkdtemp (dirbuf
) == NULL
)
37 puts ("cannot create temporary directory");
41 add_temp_file (dirbuf
);
43 dir_fd
= open (dirbuf
, O_RDONLY
| O_DIRECTORY
);
46 puts ("cannot open directory");
55 /* fdopendir takes over the descriptor, make a copy. */
56 int dupfd
= dup (dir_fd
);
62 if (lseek (dupfd
, 0, SEEK_SET
) != 0)
64 puts ("1st lseek failed");
68 /* The directory should be empty safe the . and .. files. */
69 DIR *dir
= fdopendir (dupfd
);
72 puts ("fdopendir failed");
76 while ((d
= readdir64 (dir
)) != NULL
)
77 if (strcmp (d
->d_name
, ".") != 0 && strcmp (d
->d_name
, "..") != 0)
79 printf ("temp directory contains file \"%s\"\n", d
->d_name
);
84 static const char symlinkcontent
[] = "some-file";
85 if (symlinkat (symlinkcontent
, dir_fd
, "another-file") != 0)
87 puts ("symlinkat failed");
92 if (fstatat64 (dir_fd
, "another-file", &st2
, AT_SYMLINK_NOFOLLOW
) != 0)
94 puts ("fstatat64 failed");
97 if (!S_ISLNK (st2
.st_mode
))
99 puts ("2nd fstatat64 does not show file is a symlink");
103 if (fstatat64 (dir_fd
, symlinkcontent
, &st2
, AT_SYMLINK_NOFOLLOW
) == 0)
105 puts ("2nd fstatat64 succeeded");
110 int n
= readlinkat (dir_fd
, "another-file", buf
, sizeof (buf
));
113 puts ("readlinkat failed");
116 if (n
!= sizeof (symlinkcontent
) - 1)
118 printf ("readlinkat returned %d, expected %zu\n",
119 n
, sizeof (symlinkcontent
) - 1);
122 if (strncmp (buf
, symlinkcontent
, n
) != 0)
124 puts ("readlinkat retrieved wrong link content");
128 if (unlinkat (dir_fd
, "another-file", 0) != 0)
130 puts ("unlinkat failed");