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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
|
/* $OpenBSD: fuse_device.c,v 1.8 2013/10/07 18:15:21 syl Exp $ */
/*
* Copyright (c) 2012-2013 Sylvestre Gallon <ccna.syl@gmail.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <sys/param.h>
#include <sys/fcntl.h>
#include <sys/ioctl.h>
#include <sys/malloc.h>
#include <sys/poll.h>
#include <sys/statvfs.h>
#include <sys/vnode.h>
#include <sys/fusebuf.h>
#include "fusefs_node.h"
#include "fusefs.h"
#ifdef FUSE_DEBUG
#define DPRINTF(fmt, arg...) printf("%s: " fmt, "fuse", ##arg)
#else
#define DPRINTF(fmt, arg...)
#endif
SIMPLEQ_HEAD(fusebuf_head, fusebuf);
struct fuse_d {
struct fusefs_mnt *fd_fmp;
int fd_unit;
/*fusebufs queues*/
struct fusebuf_head fd_fbufs_in;
struct fusebuf_head fd_fbufs_wait;
/* kq fields */
struct selinfo fd_rsel;
LIST_ENTRY(fuse_d) fd_list;
};
int stat_fbufs_in = 0;
int stat_fbufs_wait = 0;
int stat_opened_fusedev = 0;
LIST_HEAD(, fuse_d) fuse_d_list;
struct fuse_d *fuse_create(int);
struct fuse_d *fuse_lookup(int);
void fuse_destroy(dev_t dev, struct fuse_d *fd);
void fuseattach(int);
int fuseopen(dev_t, int, int, struct proc *);
int fuseclose(dev_t, int, int, struct proc *);
int fuseioctl(dev_t, u_long, caddr_t, int, struct proc *);
int fuseread(dev_t, struct uio *, int);
int fusewrite(dev_t, struct uio *, int);
int fusepoll(dev_t, int, struct proc *);
int fusekqfilter(dev_t dev, struct knote *kn);
int filt_fuse_read(struct knote *, long);
void filt_fuse_rdetach(struct knote *);
const static struct filterops fuse_rd_filtops = {
1,
NULL,
filt_fuse_rdetach,
filt_fuse_read
};
const static struct filterops fuse_seltrue_filtops = {
1,
NULL,
filt_fuse_rdetach,
filt_seltrue
};
#ifdef FUSE_DEBUG
static void
fuse_dump_buff(char *buff, int len)
{
char text[17];
int i;
bzero(text, 17);
for (i = 0; i < len; i++) {
if (i != 0 && (i % 16) == 0) {
printf(": %s\n", text);
bzero(text, 17);
}
printf("%.2x ", buff[i] & 0xff);
if (buff[i] > ' ' && buff[i] < '~')
text[i%16] = buff[i] & 0xff;
else
text[i%16] = '.';
}
if ((i % 16) != 0)
while ((i % 16) != 0) {
printf(" ");
i++;
}
printf(": %s\n", text);
}
#endif
struct fuse_d *
fuse_lookup(int unit)
{
struct fuse_d *fd;
LIST_FOREACH(fd, &fuse_d_list, fd_list)
if (fd->fd_unit == unit)
return (fd);
return (NULL);
}
struct fuse_d *
fuse_create(int unit)
{
struct fuse_d *fd;
if ((fd = fuse_lookup(unit)) != NULL)
return (NULL);
fd = malloc(sizeof(*fd), M_DEVBUF, M_WAITOK | M_ZERO);
fd->fd_unit = unit;
SIMPLEQ_INIT(&fd->fd_fbufs_in);
SIMPLEQ_INIT(&fd->fd_fbufs_wait);
LIST_INSERT_HEAD(&fuse_d_list, fd, fd_list);
return (fd);
}
void
fuse_destroy(dev_t dev, struct fuse_d *fd)
{
LIST_REMOVE(fd, fd_list);
fuse_device_cleanup(dev, NULL);
free(fd, M_DEVBUF);
}
/*
* if fbuf == NULL cleanup all msgs else remove fbuf from
* sc_fbufs_in and sc_fbufs_wait.
*/
void
fuse_device_cleanup(dev_t dev, struct fusebuf *fbuf)
{
struct fuse_d *fd;
struct fusebuf *f;
fd = fuse_lookup(minor(dev));
if (fd == NULL)
return;
fd->fd_fmp = NULL;
/* clear FIFO IN*/
while ((f = SIMPLEQ_FIRST(&fd->fd_fbufs_in))) {
if (fbuf == f || fbuf == NULL) {
DPRINTF("cleanup unprocessed msg in sc_fbufs_in\n");
SIMPLEQ_REMOVE_HEAD(&fd->fd_fbufs_in, fb_next);
stat_fbufs_in--;
if (fbuf == NULL)
fb_delete(f);
}
}
/* clear FIFO WAIT*/
while ((f = SIMPLEQ_FIRST(&fd->fd_fbufs_wait))) {
if (fbuf == f || fbuf == NULL) {
DPRINTF("umount unprocessed msg in sc_fbufs_wait\n");
SIMPLEQ_REMOVE_HEAD(&fd->fd_fbufs_wait, fb_next);
stat_fbufs_wait--;
if (fbuf == NULL)
fb_delete(f);
}
}
}
void
fuse_device_queue_fbuf(dev_t dev, struct fusebuf *fbuf)
{
struct fuse_d *fd;
fd = fuse_lookup(minor(dev));
if (fd == NULL)
return;
SIMPLEQ_INSERT_TAIL(&fd->fd_fbufs_in, fbuf, fb_next);
stat_fbufs_in++;
selwakeup(&fd->fd_rsel);
}
void
fuse_device_set_fmp(struct fusefs_mnt *fmp)
{
struct fuse_d *fd;
fd = fuse_lookup(minor(fmp->dev));
if (fd == NULL)
return;
fd->fd_fmp = fmp;
}
void
fuseattach(int num)
{
LIST_INIT(&fuse_d_list);
}
int
fuseopen(dev_t dev, int flags, int fmt, struct proc * p)
{
struct fuse_d *fd;
if (flags & O_EXCL)
return (EBUSY); /* No exclusive opens */
if ((fd = fuse_create(minor(dev))) == NULL)
return (EBUSY);
stat_opened_fusedev++;
return (0);
}
int
fuseclose(dev_t dev, int flags, int fmt, struct proc *p)
{
struct fuse_d *fd;
fd = fuse_lookup(minor(dev));
if (fd == NULL)
return (EINVAL);
if (fd->fd_fmp) {
printf("libfuse close the device without umount\n");
fd->fd_fmp->sess_init = 0;
fd->fd_fmp = NULL;
}
fuse_destroy(dev, fd);
stat_opened_fusedev--;
return (0);
}
/*
* FIOCGETFBDAT Get fusebuf datas from kernel to user
* FIOCSETFBDAT Set fusebuf datas from user to kernel
*/
int
fuseioctl(dev_t dev, u_long cmd, caddr_t addr, int flags, struct proc *p)
{
struct fb_ioctl_xch *ioexch;
struct fusebuf *lastfbuf;
struct fusebuf *fbuf;
struct fuse_d *fd;
int error = 0;
fd = fuse_lookup(minor(dev));
switch (cmd) {
case FIOCGETFBDAT:
ioexch = (struct fb_ioctl_xch *)addr;
/* Looking for uuid in fd_fbufs_in */
SIMPLEQ_FOREACH(fbuf, &fd->fd_fbufs_in, fb_next) {
if (fbuf->fb_uuid == ioexch->fbxch_uuid)
break;
lastfbuf = fbuf;
}
if (fbuf == NULL) {
printf("fuse: Cannot find fusebuf\n");
return (EINVAL);
}
/* Remove the fbuf from fd_fbufs_in */
if (fbuf == SIMPLEQ_FIRST(&fd->fd_fbufs_in))
SIMPLEQ_REMOVE_HEAD(&fd->fd_fbufs_in, fb_next);
else
SIMPLEQ_REMOVE_AFTER(&fd->fd_fbufs_in, lastfbuf,
fb_next);
stat_fbufs_in--;
/* Do not handle fbufs with bad len */
if (fbuf->fb_len != ioexch->fbxch_len) {
printf("fuse: Bad fusebuf len\n");
return (EINVAL);
}
/* Update the userland fbuf */
error = copyout(fbuf->fb_dat, ioexch->fbxch_data,
ioexch->fbxch_len);
if (error) {
printf("fuse: cannot copyout\n");
return (error);
}
#ifdef FUSE_DEBUG
fuse_dump_buff(ioexch->fbxch_data, ioexch->fbxch_len);
#endif
/* Adding fbuf in fd_fbufs_wait */
free(fbuf->fb_dat, M_FUSEFS);
SIMPLEQ_INSERT_TAIL(&fd->fd_fbufs_wait, fbuf, fb_next);
stat_fbufs_wait++;
break;
case FIOCSETFBDAT:
DPRINTF("SET BUFFER\n");
ioexch = (struct fb_ioctl_xch *)addr;
/* looking for uuid in fd_fbufs_wait */
SIMPLEQ_FOREACH(fbuf, &fd->fd_fbufs_wait, fb_next) {
if (fbuf->fb_uuid == ioexch->fbxch_uuid)
break;
lastfbuf = fbuf;
}
if (fbuf == NULL) {
printf("fuse: Cannot find fusebuf\n");
return (EINVAL);
}
/* Do not handle fbufs with bad len */
if (fbuf->fb_len != ioexch->fbxch_len) {
printf("fuse: Bad fusebuf size\n");
return (EINVAL);
}
/* fetching data from userland */
fbuf->fb_dat = malloc(ioexch->fbxch_len, M_FUSEFS,
M_WAITOK | M_ZERO);
error = copyin(ioexch->fbxch_data, fbuf->fb_dat,
ioexch->fbxch_len);
if (error) {
printf("fuse: Cannot copyin\n");
free(fbuf->fb_dat, M_FUSEFS);
return (error);
}
#ifdef FUSE_DEBUG
fuse_dump_buff(fbuf->fb_dat, fbuf->fb_len);
#endif
/* Remove fbuf from fd_fbufs_wait */
if (fbuf == SIMPLEQ_FIRST(&fd->fd_fbufs_wait))
SIMPLEQ_REMOVE_HEAD(&fd->fd_fbufs_wait, fb_next);
else
SIMPLEQ_REMOVE_AFTER(&fd->fd_fbufs_wait, lastfbuf,
fb_next);
stat_fbufs_wait--;
wakeup(fbuf);
break;
default:
error = EINVAL;
}
return (error);
}
int
fuseread(dev_t dev, struct uio *uio, int ioflag)
{
struct fuse_d *fd;
struct fusebuf *fbuf;
struct fb_hdr hdr;
void *tmpaddr;
int error = 0;
fd = fuse_lookup(minor(dev));
if (fd == NULL)
return (ENXIO);
if (SIMPLEQ_EMPTY(&fd->fd_fbufs_in)) {
if (ioflag & O_NONBLOCK)
return (EAGAIN);
goto end;
}
fbuf = SIMPLEQ_FIRST(&fd->fd_fbufs_in);
/* We get the whole fusebuf or nothing */
if (uio->uio_resid != FUSEBUFSIZE)
return (EINVAL);
/* Do not send kernel pointers */
memcpy(&hdr.fh_next, &fbuf->fb_next, sizeof(fbuf->fb_next));
bzero(&fbuf->fb_next, sizeof(fbuf->fb_next));
tmpaddr = fbuf->fb_dat;
fbuf->fb_dat = NULL;
error = uiomove(fbuf, FUSEBUFSIZE, uio);
if (error)
goto end;
#ifdef FUSE_DEBUG
fuse_dump_buff((char *)fbuf, FUSEBUFSIZE);
#endif
/* Restore kernel pointers */
memcpy(&fbuf->fb_next, &hdr.fh_next, sizeof(fbuf->fb_next));
fbuf->fb_dat = tmpaddr;
/* Remove the fbuf if it does not contains data */
if (fbuf->fb_len == 0) {
SIMPLEQ_REMOVE_HEAD(&fd->fd_fbufs_in, fb_next);
stat_fbufs_in--;
SIMPLEQ_INSERT_TAIL(&fd->fd_fbufs_wait, fbuf, fb_next);
stat_fbufs_wait++;
}
end:
return (error);
}
int
fusewrite(dev_t dev, struct uio *uio, int ioflag)
{
struct fusebuf *lastfbuf;
struct fuse_d *fd;
struct fusebuf *fbuf;
struct fb_hdr hdr;
int error = 0;
fd = fuse_lookup(minor(dev));
if (fd == NULL)
return (ENXIO);
/* We get the whole fusebuf or nothing */
if (uio->uio_resid != FUSEBUFSIZE)
return (EINVAL);
if ((error = uiomove(&hdr, sizeof(hdr), uio)) != 0)
return (error);
/* looking for uuid in fd_fbufs_wait */
SIMPLEQ_FOREACH(fbuf, &fd->fd_fbufs_wait, fb_next) {
if (fbuf->fb_uuid == hdr.fh_uuid)
break;
lastfbuf = fbuf;
}
if (fbuf == NULL)
return (EINVAL);
/* Update fb_hdr */
fbuf->fb_len = hdr.fh_len;
fbuf->fb_err = hdr.fh_err;
fbuf->fb_ino = hdr.fh_ino;
/* Check for corrupted fbufs */
if ((fbuf->fb_len && fbuf->fb_err) ||
SIMPLEQ_EMPTY(&fd->fd_fbufs_wait)) {
printf("corrupted fuse header or queue empty\n");
error = EINVAL;
goto end;
}
/* Get the missing datas from the fbuf */
error = uiomove(&fbuf->FD, uio->uio_resid, uio);
if (error)
return error;
fbuf->fb_dat = NULL;
#ifdef FUSE_DEBUG
fuse_dump_buff((char *)fbuf, FUSEBUFSIZE);
#endif
switch (fbuf->fb_type) {
case FBT_INIT:
fd->fd_fmp->sess_init = 1;
break ;
case FBT_DESTROY:
fd->fd_fmp = NULL;
break ;
}
end:
/* Remove the fbuf if it does not contains data */
if (fbuf->fb_len == 0) {
if (fbuf == SIMPLEQ_FIRST(&fd->fd_fbufs_wait))
SIMPLEQ_REMOVE_HEAD(&fd->fd_fbufs_wait, fb_next);
else
SIMPLEQ_REMOVE_AFTER(&fd->fd_fbufs_wait, lastfbuf,
fb_next);
stat_fbufs_wait--;
if (fbuf->fb_type == FBT_INIT)
fb_delete(fbuf);
else
wakeup(fbuf);
}
return (error);
}
int
fusepoll(dev_t dev, int events, struct proc *p)
{
struct fuse_d *fd;
int revents = 0;
fd = fuse_lookup(minor(dev));
if (fd == NULL)
return (EINVAL);
if (events & (POLLIN | POLLRDNORM))
if (!SIMPLEQ_EMPTY(&fd->fd_fbufs_in))
revents |= events & (POLLIN | POLLRDNORM);
if (events & (POLLOUT | POLLWRNORM))
revents |= events & (POLLOUT | POLLWRNORM);
if (revents == 0)
if (events & (POLLIN | POLLRDNORM))
selrecord(p, &fd->fd_rsel);
return (revents);
}
int
fusekqfilter(dev_t dev, struct knote *kn)
{
struct fuse_d *fd;
struct klist *klist;
fd = fuse_lookup(minor(dev));
if (fd == NULL)
return (EINVAL);
switch (kn->kn_filter) {
case EVFILT_READ:
klist = &fd->fd_rsel.si_note;
kn->kn_fop = &fuse_rd_filtops;
break;
case EVFILT_WRITE:
klist = &fd->fd_rsel.si_note;
kn->kn_fop = &fuse_seltrue_filtops;
break;
default:
return (EINVAL);
}
kn->kn_hook = fd;
SLIST_INSERT_HEAD(klist, kn, kn_selnext);
return (0);
}
void
filt_fuse_rdetach(struct knote *kn)
{
struct fuse_d *fd = kn->kn_hook;
struct klist *klist = &fd->fd_rsel.si_note;
SLIST_REMOVE(klist, kn, knote, kn_selnext);
}
int
filt_fuse_read(struct knote *kn, long hint)
{
struct fuse_d *fd = kn->kn_hook;
int event = 0;
if (!SIMPLEQ_EMPTY(&fd->fd_fbufs_in))
event = 1;
return (event);
}
|