[PATCH] fuse: no backgrounding on interrupt
[deliverable/linux.git] / Documentation / filesystems / fuse.txt
CommitLineData
334f485d
MS
1Definitions
2~~~~~~~~~~~
3
4Userspace filesystem:
5
6 A filesystem in which data and metadata are provided by an ordinary
7 userspace process. The filesystem can be accessed normally through
8 the kernel interface.
9
10Filesystem daemon:
11
12 The process(es) providing the data and metadata of the filesystem.
13
14Non-privileged mount (or user mount):
15
16 A userspace filesystem mounted by a non-privileged (non-root) user.
17 The filesystem daemon is running with the privileges of the mounting
18 user. NOTE: this is not the same as mounts allowed with the "user"
19 option in /etc/fstab, which is not discussed here.
20
21Mount owner:
22
23 The user who does the mounting.
24
25User:
26
27 The user who is performing filesystem operations.
28
29What is FUSE?
30~~~~~~~~~~~~~
31
32FUSE is a userspace filesystem framework. It consists of a kernel
33module (fuse.ko), a userspace library (libfuse.*) and a mount utility
34(fusermount).
35
36One of the most important features of FUSE is allowing secure,
37non-privileged mounts. This opens up new possibilities for the use of
38filesystems. A good example is sshfs: a secure network filesystem
39using the sftp protocol.
40
41The userspace library and utilities are available from the FUSE
42homepage:
43
44 http://fuse.sourceforge.net/
45
46Mount options
47~~~~~~~~~~~~~
48
49'fd=N'
50
51 The file descriptor to use for communication between the userspace
52 filesystem and the kernel. The file descriptor must have been
53 obtained by opening the FUSE device ('/dev/fuse').
54
55'rootmode=M'
56
57 The file mode of the filesystem's root in octal representation.
58
59'user_id=N'
60
61 The numeric user id of the mount owner.
62
63'group_id=N'
64
65 The numeric group id of the mount owner.
66
67'default_permissions'
68
69 By default FUSE doesn't check file access permissions, the
70 filesystem is free to implement it's access policy or leave it to
71 the underlying file access mechanism (e.g. in case of network
72 filesystems). This option enables permission checking, restricting
73 access based on file mode. This is option is usually useful
74 together with the 'allow_other' mount option.
75
76'allow_other'
77
78 This option overrides the security measure restricting file access
79 to the user mounting the filesystem. This option is by default only
80 allowed to root, but this restriction can be removed with a
81 (userspace) configuration option.
82
334f485d
MS
83'max_read=N'
84
85 With this option the maximum size of read operations can be set.
86 The default is infinite. Note that the size of read requests is
87 limited anyway to 32 pages (which is 128kbyte on i386).
88
bacac382
MS
89Sysfs
90~~~~~
91
92FUSE sets up the following hierarchy in sysfs:
93
94 /sys/fs/fuse/connections/N/
95
96where N is an increasing number allocated to each new connection.
97
98For each connection the following attributes are defined:
99
100 'waiting'
101
102 The number of requests which are waiting to be transfered to
103 userspace or being processed by the filesystem daemon. If there is
104 no filesystem activity and 'waiting' is non-zero, then the
105 filesystem is hung or deadlocked.
106
107 'abort'
108
109 Writing anything into this file will abort the filesystem
110 connection. This means that all waiting requests will be aborted an
111 error returned for all aborted and new requests.
112
113Only a privileged user may read or write these attributes.
114
115Aborting a filesystem connection
116~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
117
118It is possible to get into certain situations where the filesystem is
119not responding. Reasons for this may be:
120
121 a) Broken userspace filesystem implementation
122
123 b) Network connection down
124
125 c) Accidental deadlock
126
127 d) Malicious deadlock
128
129(For more on c) and d) see later sections)
130
131In either of these cases it may be useful to abort the connection to
132the filesystem. There are several ways to do this:
133
134 - Kill the filesystem daemon. Works in case of a) and b)
135
136 - Kill the filesystem daemon and all users of the filesystem. Works
137 in all cases except some malicious deadlocks
138
139 - Use forced umount (umount -f). Works in all cases but only if
140 filesystem is still attached (it hasn't been lazy unmounted)
141
142 - Abort filesystem through the sysfs interface. Most powerful
143 method, always works.
144
334f485d
MS
145How do non-privileged mounts work?
146~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
147
148Since the mount() system call is a privileged operation, a helper
149program (fusermount) is needed, which is installed setuid root.
150
151The implication of providing non-privileged mounts is that the mount
152owner must not be able to use this capability to compromise the
153system. Obvious requirements arising from this are:
154
155 A) mount owner should not be able to get elevated privileges with the
156 help of the mounted filesystem
157
158 B) mount owner should not get illegitimate access to information from
159 other users' and the super user's processes
160
161 C) mount owner should not be able to induce undesired behavior in
162 other users' or the super user's processes
163
164How are requirements fulfilled?
165~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
166
167 A) The mount owner could gain elevated privileges by either:
168
169 1) creating a filesystem containing a device file, then opening
170 this device
171
172 2) creating a filesystem containing a suid or sgid application,
173 then executing this application
174
175 The solution is not to allow opening device files and ignore
176 setuid and setgid bits when executing programs. To ensure this
177 fusermount always adds "nosuid" and "nodev" to the mount options
178 for non-privileged mounts.
179
180 B) If another user is accessing files or directories in the
181 filesystem, the filesystem daemon serving requests can record the
182 exact sequence and timing of operations performed. This
183 information is otherwise inaccessible to the mount owner, so this
184 counts as an information leak.
185
186 The solution to this problem will be presented in point 2) of C).
187
188 C) There are several ways in which the mount owner can induce
189 undesired behavior in other users' processes, such as:
190
191 1) mounting a filesystem over a file or directory which the mount
192 owner could otherwise not be able to modify (or could only
193 make limited modifications).
194
195 This is solved in fusermount, by checking the access
196 permissions on the mountpoint and only allowing the mount if
197 the mount owner can do unlimited modification (has write
198 access to the mountpoint, and mountpoint is not a "sticky"
199 directory)
200
201 2) Even if 1) is solved the mount owner can change the behavior
202 of other users' processes.
203
204 i) It can slow down or indefinitely delay the execution of a
205 filesystem operation creating a DoS against the user or the
206 whole system. For example a suid application locking a
207 system file, and then accessing a file on the mount owner's
208 filesystem could be stopped, and thus causing the system
209 file to be locked forever.
210
211 ii) It can present files or directories of unlimited length, or
212 directory structures of unlimited depth, possibly causing a
213 system process to eat up diskspace, memory or other
214 resources, again causing DoS.
215
216 The solution to this as well as B) is not to allow processes
217 to access the filesystem, which could otherwise not be
218 monitored or manipulated by the mount owner. Since if the
219 mount owner can ptrace a process, it can do all of the above
220 without using a FUSE mount, the same criteria as used in
221 ptrace can be used to check if a process is allowed to access
222 the filesystem or not.
223
224 Note that the ptrace check is not strictly necessary to
225 prevent B/2/i, it is enough to check if mount owner has enough
226 privilege to send signal to the process accessing the
227 filesystem, since SIGSTOP can be used to get a similar effect.
228
229I think these limitations are unacceptable?
230~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
231
232If a sysadmin trusts the users enough, or can ensure through other
233measures, that system processes will never enter non-privileged
234mounts, it can relax the last limitation with a "user_allow_other"
235config option. If this config option is set, the mounting user can
236add the "allow_other" mount option which disables the check for other
237users' processes.
238
239Kernel - userspace interface
240~~~~~~~~~~~~~~~~~~~~~~~~~~~~
241
242The following diagram shows how a filesystem operation (in this
243example unlink) is performed in FUSE.
244
245NOTE: everything in this description is greatly simplified
246
247 | "rm /mnt/fuse/file" | FUSE filesystem daemon
248 | |
249 | | >sys_read()
250 | | >fuse_dev_read()
251 | | >request_wait()
252 | | [sleep on fc->waitq]
253 | |
254 | >sys_unlink() |
255 | >fuse_unlink() |
256 | [get request from |
257 | fc->unused_list] |
258 | >request_send() |
259 | [queue req on fc->pending] |
260 | [wake up fc->waitq] | [woken up]
261 | >request_wait_answer() |
262 | [sleep on req->waitq] |
263 | | <request_wait()
264 | | [remove req from fc->pending]
265 | | [copy req to read buffer]
266 | | [add req to fc->processing]
267 | | <fuse_dev_read()
268 | | <sys_read()
269 | |
270 | | [perform unlink]
271 | |
272 | | >sys_write()
273 | | >fuse_dev_write()
274 | | [look up req in fc->processing]
275 | | [remove from fc->processing]
276 | | [copy write buffer to req]
277 | [woken up] | [wake up req->waitq]
278 | | <fuse_dev_write()
279 | | <sys_write()
280 | <request_wait_answer() |
281 | <request_send() |
282 | [add request to |
283 | fc->unused_list] |
284 | <fuse_unlink() |
285 | <sys_unlink() |
286
287There are a couple of ways in which to deadlock a FUSE filesystem.
288Since we are talking about unprivileged userspace programs,
289something must be done about these.
290
291Scenario 1 - Simple deadlock
292-----------------------------
293
294 | "rm /mnt/fuse/file" | FUSE filesystem daemon
295 | |
296 | >sys_unlink("/mnt/fuse/file") |
297 | [acquire inode semaphore |
298 | for "file"] |
299 | >fuse_unlink() |
300 | [sleep on req->waitq] |
301 | | <sys_read()
302 | | >sys_unlink("/mnt/fuse/file")
303 | | [acquire inode semaphore
304 | | for "file"]
305 | | *DEADLOCK*
306
51eb01e7 307The solution for this is to allow the filesystem to be aborted.
334f485d
MS
308
309Scenario 2 - Tricky deadlock
310----------------------------
311
312This one needs a carefully crafted filesystem. It's a variation on
313the above, only the call back to the filesystem is not explicit,
314but is caused by a pagefault.
315
316 | Kamikaze filesystem thread 1 | Kamikaze filesystem thread 2
317 | |
318 | [fd = open("/mnt/fuse/file")] | [request served normally]
319 | [mmap fd to 'addr'] |
320 | [close fd] | [FLUSH triggers 'magic' flag]
321 | [read a byte from addr] |
322 | >do_page_fault() |
323 | [find or create page] |
324 | [lock page] |
325 | >fuse_readpage() |
326 | [queue READ request] |
327 | [sleep on req->waitq] |
328 | | [read request to buffer]
329 | | [create reply header before addr]
330 | | >sys_write(addr - headerlength)
331 | | >fuse_dev_write()
332 | | [look up req in fc->processing]
333 | | [remove from fc->processing]
334 | | [copy write buffer to req]
335 | | >do_page_fault()
336 | | [find or create page]
337 | | [lock page]
338 | | * DEADLOCK *
339
51eb01e7 340Solution is basically the same as above.
334f485d
MS
341
342An additional problem is that while the write buffer is being
343copied to the request, the request must not be interrupted. This
344is because the destination address of the copy may not be valid
345after the request is interrupted.
346
51eb01e7
MS
347This is solved with doing the copy atomically, and allowing abort
348while the page(s) belonging to the write buffer are faulted with
349get_user_pages(). The 'req->locked' flag indicates when the copy is
350taking place, and abort is delayed until this flag is unset.
This page took 0.101483 seconds and 5 git commands to generate.