libfuse/test/readdir_inode.c
Jean-Pierre André bdd2d4110f
Fix returning d_ino and d_type by readdir(3) in non-plus mode
When not using the readdir_plus mode, the d_type was not returned,
and the use_ino flag was not used for returning d_ino.

This patch fixes the returned values for d_ino and d_type by readdir(3)

The test for the returned value of d_ino has been adjusted to also
take the d_type into consideration and to check the returned values in
both basic readdir and readdir_plus modes. This is done by executing
the passthrough test twice.

Co-authored-by: Jean-Pierre André <jpandre@users.sourceforge.net>
2021-03-18 09:52:30 +00:00

58 lines
1.6 KiB
C

/*
* Prints each directory entry, its inode and d_type as returned by 'readdir'.
* Skips '.' and '..' because readdir is not required to return them and
* some of our examples don't. However if they are returned, their d_type
* should be valid.
*/
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <dirent.h>
#include <errno.h>
int main(int argc, char* argv[])
{
DIR* dirp;
struct dirent* dent;
if (argc != 2) {
fprintf(stderr, "Usage: readdir_inode dir\n");
return 1;
}
dirp = opendir(argv[1]);
if (dirp == NULL) {
perror("failed to open directory");
return 2;
}
errno = 0;
dent = readdir(dirp);
while (dent != NULL) {
if (strcmp(dent->d_name, ".") != 0 && strcmp(dent->d_name, "..") != 0) {
printf("%llu %d %s\n", (unsigned long long)dent->d_ino,
(int)dent->d_type, dent->d_name);
if ((long long)dent->d_ino < 0)
fprintf(stderr,"%s : bad d_ino %llu\n",
dent->d_name, (unsigned long long)dent->d_ino);
if ((dent->d_type < 1) || (dent->d_type > 15))
fprintf(stderr,"%s : bad d_type %d\n",
dent->d_name, (int)dent->d_type);
} else {
if (dent->d_type != DT_DIR)
fprintf(stderr,"%s : bad d_type %d\n",
dent->d_name, (int)dent->d_type);
}
dent = readdir(dirp);
}
if (errno != 0) {
perror("failed to read directory entry");
return 3;
}
closedir(dirp);
return 0;
}