summaryrefslogtreecommitdiff
path: root/src/userfs.c
blob: bb76ed17d4640c33db71505d419145368a430851 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#define FUSE_USE_VERSION 30

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>

#include <pwd.h>

#include <fuse.h>

static int usersfs_getattr(const char *path, struct stat *stbuf)
{
	if (strcmp(path, "/") == 0) {
		stbuf->st_mode = S_IFDIR | 0755;
		stbuf->st_nlink = 2;
	} else {
		struct passwd *pwent = getpwnam(path + 1);
		if (pwent && pwent->pw_dir) {
			stbuf->st_mode = S_IFLNK | 0444;
			stbuf->st_nlink = 1;
		} else {
			return -ENOENT;
		}
	}
	return 0;
}

static int usersfs_readdir(const char *path, void *buf, fuse_fill_dir_t filler,
                            off_t offset, struct fuse_file_info *fi)
{
	if (strcmp(path, "/") != 0) {
		return -ENOENT;
	}

	(void) offset;
	(void) fi;

	filler(buf, ".", NULL, 0);
	filler(buf, "..", NULL, 0);

	struct passwd *pwent;
	setpwent();
	while ((pwent = getpwent())) {
		if ((pwent->pw_uid == 0 || pwent->pw_uid >= 1000) && pwent->pw_name && pwent->pw_dir) {
			filler(buf, pwent->pw_name, NULL, 0);
		}
	}
	setpwent();

	return 0;
}

static int usersfs_readlink(const char *path, char *buf, size_t size)
{
	if (strcmp(path, "/") == 0) {
		return -EINVAL;
	}

	struct passwd *pwent = getpwnam(path + 1);
	if (pwent && pwent->pw_dir) {
		strcpy(buf, pwent->pw_dir);
		return 0;
	} else {
		return -ENOENT;
	}
}

static struct fuse_operations usersfs_oper = {
	.getattr = usersfs_getattr,
	.readdir = usersfs_readdir,
	.readlink = usersfs_readlink
};

int main(int argc, char *argv[])
{
	return fuse_main(argc, argv, &usersfs_oper, NULL);
}