diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-03-06 03:25:37 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-03-06 03:25:37 +0000 |
commit | 0c883ab44675a3e4baa06d03a53f70908601cd20 (patch) | |
tree | f294a37515920b623de08dc3f064fd16f45f35c6 /util.c | |
parent | Adding upstream version 4.2+20230227. (diff) | |
download | mdadm-0c883ab44675a3e4baa06d03a53f70908601cd20.tar.xz mdadm-0c883ab44675a3e4baa06d03a53f70908601cd20.zip |
Adding upstream version 4.2+20230302.upstream/4.2+20230302
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 45 |
1 files changed, 45 insertions, 0 deletions
@@ -2401,3 +2401,48 @@ void sleep_for(unsigned int sec, long nsec, bool wake_after_interrupt) } } while (!wake_after_interrupt && errno == EINTR); } + +/* is_directory() - Checks if directory provided by path is indeed a regular directory. + * @path: directory path to be checked + * + * Doesn't accept symlinks. + * + * Return: true if is a directory, false if not + */ +bool is_directory(const char *path) +{ + struct stat st; + + if (lstat(path, &st) != 0) { + pr_err("%s: %s\n", strerror(errno), path); + return false; + } + + if (!S_ISDIR(st.st_mode)) + return false; + + return true; +} + +/* + * is_file() - Checks if file provided by path is indeed a regular file. + * @path: file path to be checked + * + * Doesn't accept symlinks. + * + * Return: true if is a file, false if not + */ +bool is_file(const char *path) +{ + struct stat st; + + if (lstat(path, &st) != 0) { + pr_err("%s: %s\n", strerror(errno), path); + return false; + } + + if (!S_ISREG(st.st_mode)) + return false; + + return true; +} |