summaryrefslogtreecommitdiff
path: root/src/volumefs.c
blob: e60aa38d316bf479d1d1c67382c32204d420979b (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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
#define FUSE_USE_VERSION 30

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

#include <fuse.h>

#include <udisks/udisks.h>

static GMainLoop *main_loop;
static GThread *sub_thread;
static UDisksClient *client;

static GHashTable *mounts;
G_LOCK_DEFINE_STATIC(mounts);

static void udisks_changed(UDisksClient *client, gpointer user_data)
{
	GDBusObjectManager *manager = udisks_client_get_object_manager(client);
	GList *objs = g_dbus_object_manager_get_objects(manager);

	G_LOCK(mounts);

	g_debug("udisks changed");

	g_hash_table_remove_all(mounts);

	for (GList *l = objs; l; l = g_list_next(l)) {
		UDisksObject *obj = UDISKS_OBJECT(l->data);
		UDisksFilesystem *filesys = udisks_object_get_filesystem(obj);
		UDisksBlock *block = udisks_object_get_block(obj);
		if (block && filesys) {
			const gchar *name = udisks_block_get_id_label(block);
			if (!name || strlen(name) == 0) {
				name = udisks_block_get_id_uuid(block);
			}

			const gchar * const * mpoints = udisks_filesystem_get_mount_points(filesys);
			const gchar * mountpoint = mpoints && mpoints[0] ? mpoints[0] : NULL;

			if (name && mountpoint) {
				g_debug("%s -> %s", name, mountpoint);
				g_hash_table_insert(mounts, g_strdup(name), g_strdup(mountpoint));
			}
		}
		if (filesys) g_object_unref(filesys);
		if (block) g_object_unref(block);
	}

	G_UNLOCK(mounts);

	g_list_free_full(objs, g_object_unref);
}

static gpointer sub_thread_main(gpointer user_data)
{
	GError *error = NULL;

	client = udisks_client_new_sync(NULL, &error);
	if (!client) {
		g_printerr("Could not connect to UDisks2 service: %s", error->message);
		g_error_free(error);
	}

	g_signal_connect(client, "changed",
	                 G_CALLBACK(udisks_changed), NULL);

	udisks_changed(client, NULL);

	g_main_loop_run(main_loop);

	return NULL;
}

static void * volumesfs_init(struct fuse_conn_info *conn)
{
	main_loop = g_main_loop_new(NULL, FALSE);

	mounts = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, g_free);

	sub_thread = g_thread_new("volumesfs-sub-thread", sub_thread_main, NULL);

	return NULL;
}

static void volumesfs_destroy(void *user_data)
{
	g_main_loop_quit(main_loop);

	g_thread_join(sub_thread);

	g_object_unref(client);
	g_hash_table_destroy(mounts);
	g_main_loop_unref(main_loop);
}

static int volumesfs_getattr(const char *path, struct stat *stbuf)
{
	if (strcmp(path, "/") == 0) {
		stbuf->st_mode = S_IFDIR | 0755;
		stbuf->st_nlink = 2;
	} else {
		G_LOCK(mounts);
		gboolean mount_exists = g_hash_table_lookup(mounts, path + 1) != NULL;
		G_UNLOCK(mounts);

		if (mount_exists) {
			stbuf->st_mode = S_IFLNK | 0444;
			stbuf->st_nlink = 1;
		} else {
			return -ENOENT;
		}
	}
	return 0;
}

static int volumesfs_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;
	}

	G_LOCK(mounts);

	(void) offset;
	(void) fi;

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

	GHashTableIter iter;
	gchar *name;
	g_hash_table_iter_init(&iter, mounts);
	while (g_hash_table_iter_next(&iter, (void**)&name, NULL)) {
		filler(buf, name, NULL, 0);
	}

	G_UNLOCK(mounts);

	return 0;
}

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

	G_LOCK(mounts);
	gboolean mount_exists;
	gchar *mountpoint = g_hash_table_lookup(mounts, path + 1);
	if (mountpoint) {
		g_strlcpy(buf, mountpoint, size);
		mount_exists = TRUE;
	} else {
		mount_exists = FALSE;
	}
	G_UNLOCK(mounts);

	if (mount_exists) {
		return 0;
	} else {
		return -ENOENT;
	}
}

static struct fuse_operations volumesfs_oper = {
	.init = volumesfs_init,
	.destroy = volumesfs_destroy,
	.getattr = volumesfs_getattr,
	.readdir = volumesfs_readdir,
	.readlink = volumesfs_readlink
};

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