11 static void prepare (void);
12 #define PREPARE(argc, argv) prepare ()
14 static int do_test (void);
15 #define TEST_FUNCTION do_test ()
17 #include "../test-skeleton.c"
24 size_t test_dir_len
= strlen (test_dir
);
25 static const char dir_name
[] = "/tst-mknodat.XXXXXX";
27 size_t dirbuflen
= test_dir_len
+ sizeof (dir_name
);
28 char *dirbuf
= malloc (dirbuflen
);
31 puts ("out of memory");
35 snprintf (dirbuf
, dirbuflen
, "%s%s", test_dir
, dir_name
);
36 if (mkdtemp (dirbuf
) == NULL
)
38 puts ("cannot create temporary directory");
42 add_temp_file (dirbuf
);
44 dir_fd
= open (dirbuf
, O_RDONLY
| O_DIRECTORY
);
47 puts ("cannot open directory");
56 /* fdopendir takes over the descriptor, make a copy. */
57 int dupfd
= dup (dir_fd
);
63 if (lseek (dupfd
, 0, SEEK_SET
) != 0)
65 puts ("1st lseek failed");
69 /* The directory should be empty safe the . and .. files. */
70 DIR *dir
= fdopendir (dupfd
);
73 puts ("fdopendir failed");
77 while ((d
= readdir64 (dir
)) != NULL
)
78 if (strcmp (d
->d_name
, ".") != 0 && strcmp (d
->d_name
, "..") != 0)
80 printf ("temp directory contains file \"%s\"\n", d
->d_name
);
85 /* Create a new fifo. */
86 int e
= mknodat (dir_fd
, "some-fifo", 0777 | S_IFIFO
, 0);
91 puts ("*at functions not supported");
95 puts ("fifo creation failed");
100 if (fstatat64 (dir_fd
, "some-fifo", &st1
, 0) != 0)
102 puts ("fstat64 failed");
105 if (!S_ISFIFO (st1
.st_mode
))
107 puts ("mknodat did not create a fifo");
111 dupfd
= dup (dir_fd
);
117 if (lseek (dupfd
, 0, SEEK_SET
) != 0)
119 puts ("1st lseek failed");
123 dir
= fdopendir (dupfd
);
126 puts ("2nd fdopendir failed");
129 bool has_some_fifo
= false;
130 while ((d
= readdir64 (dir
)) != NULL
)
131 if (strcmp (d
->d_name
, "some-fifo") == 0)
133 has_some_fifo
= true;
134 if (d
->d_type
!= DT_UNKNOWN
&& d
->d_type
!= DT_FIFO
)
136 puts ("d_type for some-fifo wrong");
140 else if (strcmp (d
->d_name
, ".") != 0 && strcmp (d
->d_name
, "..") != 0)
142 printf ("temp directory contains file \"%s\"\n", d
->d_name
);
149 puts ("some-fifo not in directory list");
153 if (unlinkat (dir_fd
, "some-fifo", 0) != 0)
155 puts ("unlinkat failed");