summaryrefslogtreecommitdiff
path: root/src/sd-daemon.c
diff options
context:
space:
mode:
authorWilliam Douglas <william.r.douglas@gmail.com>2011-06-16 14:21:11 -0700
committerLennart Poettering <lennart@poettering.net>2011-06-20 17:54:17 +0200
commit4160ec67ba40eee5d14c5b96d37c89a3a5356f34 (patch)
tree89859eae2e7fff8f4b95d3355926a6936e47cec1 /src/sd-daemon.c
parent8003c705f2d1000abaf87ebe56f022b8324d78cc (diff)
sd-daemon: Add sd_is_special for special file descriptors
With the addition of ListenSpecial as a socket option we need the the usual sd_is_ functions for special files. This patch does that.
Diffstat (limited to 'src/sd-daemon.c')
-rw-r--r--src/sd-daemon.c36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/sd-daemon.c b/src/sd-daemon.c
index d9f23d677b..a2ec74cceb 100644
--- a/src/sd-daemon.c
+++ b/src/sd-daemon.c
@@ -169,6 +169,42 @@ _sd_hidden_ int sd_is_fifo(int fd, const char *path) {
return 1;
}
+_sd_hidden_ int sd_is_special(int fd, const char *path) {
+ struct stat st_fd;
+
+ if (fd < 0)
+ return -EINVAL;
+
+ if (fstat(fd, &st_fd) < 0)
+ return -errno;
+
+ if (!S_ISREG(st_fd.st_mode) && !S_ISCHR(st_fd.st_mode))
+ return 0;
+
+ if (path) {
+ struct stat st_path;
+
+ if (stat(path, &st_path) < 0) {
+
+ if (errno == ENOENT || errno == ENOTDIR)
+ return 0;
+
+ return -errno;
+ }
+
+ if (S_ISREG(st_fd.st_mode) && S_ISREG(st_path.st_mode))
+ return
+ st_path.st_dev == st_fd.st_dev &&
+ st_path.st_ino == st_fd.st_ino;
+ else if (S_ISCHR(st_fd.st_mode) && S_ISCHR(st_path.st_mode))
+ return st_path.st_rdev == st_fd.st_rdev;
+ else
+ return 0;
+ }
+
+ return 1;
+}
+
static int sd_is_socket_internal(int fd, int type, int listening) {
struct stat st_fd;