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
|
/*
* I/O methods for fuse devices.
*/
#include "config.h"
#include <sys/types.h>
#include <sys/module.h>
#include <sys/systm.h>
#include <sys/errno.h>
#include <sys/param.h>
#include <sys/kernel.h>
#include <sys/conf.h>
#include <sys/uio.h>
#include <sys/malloc.h>
#include <sys/queue.h>
#include <sys/lock.h>
#include <sys/sx.h>
#include <sys/mutex.h>
#include <sys/proc.h>
#include <sys/mount.h>
#include <sys/stat.h>
#include <sys/fcntl.h>
#include <sys/sysctl.h>
#include <sys/poll.h>
#include <sys/selinfo.h>
#include "fuse.h"
#include "fuse_session.h"
static __inline int fuse_ohead_audit(struct fuse_out_header *ohead,
struct uio *uio);
static d_open_t fusedev_open;
static d_close_t fusedev_close;
static d_poll_t fusedev_poll;
static d_read_t fusedev_read;
static d_write_t fusedev_write;
#ifdef USE_OLD_CLONEHANDLER_API
void fusedev_clone(void *arg, char *name, int namelen, struct cdev **dev);
#else
void fusedev_clone(void *arg, struct ucred *cred, char *name,
int namelen, struct cdev **dev);
#endif
static struct cdevsw fuse_cdevsw = {
.d_open = fusedev_open,
.d_close = fusedev_close,
.d_name = "fuse",
.d_poll = fusedev_poll,
.d_read = fusedev_read,
.d_write = fusedev_write,
.d_version = D_VERSION,
#ifndef D_NEEDMINOR
#define D_NEEDMINOR 0
#endif
#if ! DO_GIANT_MANUALLY
.d_flags = D_NEEDMINOR|D_NEEDGIANT,
#else
.d_flags = D_NEEDMINOR,
#endif
};
/*
* This struct is not public, but we are eager to use it,
* so we have to put its def here.
*/
struct clonedevs {
LIST_HEAD(,cdev) head;
};
struct clonedevs *fuseclones;
/****************************
*
* >>> Fuse device op defs
*
****************************/
/*
* Resources are set up on a per-open basis
*/
static int
fusedev_open(struct cdev *dev, int oflags, int devtype, struct thread *td)
{
struct fuse_data *fdata;
/*
* We need to ensure data consistency on the main entry points
* of the module (so that we won't race with module unloading).
* I don't see a better way of doing this than using Giant.
* The lightest reliance on Giant is realized by the
* DO_GIANT_MANUALLY == USE_FUSE_LOCK == 1 combination.
*
* Then the device will operate D_NEEDGIANT-less, and the only
* point where Giant is used (apart from the obligatory places
* like module (un)load, (un)mount, etc.) is at the beginning
* of the device open routine, where destructive racing is
* prevented.
*/
#if DO_GIANT_MANUALLY
mtx_lock(&Giant);
#endif
if (fuse_useco < 0) {
/* Module unload is going on */
#if DO_GIANT_MANUALLY
mtx_unlock(&Giant);
#endif
DEBUG2G("caught in the middle of unload\n");
return (ENOENT);
}
#if DO_GIANT_MANUALLY && USE_FUSE_LOCK
fuse_useco++;
mtx_unlock(&Giant);
#endif
if (dev->si_usecount > 1)
goto busy;
DEBUG2G("device %p\n", dev);
fdata = fdata_alloc(dev, td->td_ucred);
FUSE_LOCK;
if (fusedev_get_data(dev)) {
FUSE_UNLOCK;
fdata_destroy(fdata);
goto busy;
} else {
#if ! (DO_GIANT_MANUALLY && USE_FUSE_LOCK)
fuse_useco++;
#endif
fdata->dataflag |= FSESS_OPENED;
dev->si_drv1 = fdata;
}
FUSE_UNLOCK;
#if DO_GIANT_MANUALLY && ! USE_FUSE_LOCK
mtx_unlock(&Giant);
#endif
DEBUG("Opened device \"fuse\" (that of minor %d) successfully on thread %d.\n", minor(dev), td->td_tid);
return(0);
busy:
#if DO_GIANT_MANUALLY
#if USE_FUSE_LOCK
fuse_useco--;
#else
mtx_unlock(&Giant);
#endif
#endif
return (EBUSY);
}
static int
fusedev_close(struct cdev *dev, int fflag, int devtype, struct thread *td)
{
struct fuse_data *data;
#if DO_GIANT_MANUALLY && ! USE_FUSE_LOCK
mtx_lock(&Giant);
#endif
FUSE_LOCK;
data = fusedev_get_data(dev);
if (! data)
panic("no fuse data upon fuse device close");
KASSERT(data->dataflag | FSESS_OPENED,
("fuse device is already closed upon close"));
fdata_kick_set(data);
data->dataflag &= ~FSESS_OPENED;
mtx_lock(&data->aw_mtx);
/* wakup poll()ers */
selwakeuppri(&data->ks_rsel, PZERO + 1);
DEBUG2G("mntco %d\n", data->mntco);
if (data->mntco > 0) {
struct fuse_ticket *tick;
/* Don't let syscall handlers wait in vain */
while ((tick = fuse_aw_pop(data))) {
mtx_lock(&tick->tk_aw_mtx);
fticket_set_answered(tick);
tick->tk_aw_errno = ENOTCONN;
wakeup(tick);
mtx_unlock(&tick->tk_aw_mtx);
}
mtx_unlock(&data->aw_mtx);
FUSE_UNLOCK;
goto out;
}
dev->si_drv1 = NULL;
FUSE_UNLOCK;
fdata_destroy(data);
out:
#if DO_GIANT_MANUALLY && ! USE_FUSE_LOCK
mtx_unlock(&Giant);
#endif
fuse_useco--;
DEBUG("Closing device \"fuse\" (that of minor %d) on thread %d.\n", minor(dev), td->td_tid);
return(0);
}
int
fusedev_poll(struct cdev *dev, int events, struct thread *td)
{
struct fuse_data *data;
int revents = 0;
data = fusedev_get_data(dev);
if (events & (POLLIN | POLLRDNORM)) {
mtx_lock(&data->ms_mtx);
if (fdata_kick_get(data) || STAILQ_FIRST(&data->ms_head))
revents |= events & (POLLIN | POLLRDNORM);
else
selrecord(td, &data->ks_rsel);
mtx_unlock(&data->ms_mtx);
}
if (events & (POLLOUT | POLLWRNORM)) {
revents |= events & (POLLOUT | POLLWRNORM);
}
return (revents);
}
/*
* fusedev_read hangs on the queue of VFS messages.
* When it's notified that there is a new one, it picks that and
* passes up to the daemon
*/
int
fusedev_read(struct cdev *dev, struct uio *uio, int ioflag)
{
int err = 0;
struct fuse_data *data;
struct fuse_ticket *tick;
void *buf[] = { NULL, NULL, NULL };
int buflen[3];
int i;
data = fusedev_get_data(dev);
DEBUG_MSG("fuse device being read on thread %d\n", uio->uio_td->td_tid);
mtx_lock(&data->ms_mtx);
again:
if (fdata_kick_get(data)) {
DEBUG2G("we know early on that reader should be kicked so we don't wait for news\n");
mtx_unlock(&data->ms_mtx);
return (ENODEV);
}
if ( ! (tick = fuse_ms_pop(data))) {
/* check if we may block */
if (ioflag & O_NONBLOCK) {
/* get outa here soon */
mtx_unlock(&data->ms_mtx);
return (EAGAIN);
}
else {
err = msleep(data, &data->ms_mtx, PCATCH, "fu_msg", 0);
if (err != 0) {
mtx_unlock(&data->ms_mtx);
return (fdata_kick_get(data) ? ENODEV : err);
}
tick = fuse_ms_pop(data);
}
}
if (! tick) {
/*
* We can get here if fuse daemon suddenly terminates,
* eg, by being hit by a SIGKILL
* -- and some other cases, too, tho not totally clear, when
* (cv_signal/wakeup_one signals the whole process ?)
*/
DEBUG("no message on thread #%d\n", uio->uio_td->td_tid);
goto again;
}
mtx_unlock(&data->ms_mtx);
if (fdata_kick_get(data)) {
/*
* somebody somewhere -- eg., umount routine --
* wants this liaison finished off
*/
DEBUG2G("reader is to be sacked\n");
if (tick) {
DEBUG2G("weird -- \"kick\" is set tho there is message\n");
fuse_ticket_drop_notowned(tick);
}
return (ENODEV); /* This should make the daemon get off of us */
}
DEBUG("message got on thread #%d\n", uio->uio_td->td_tid);
KASSERT(tick->tk_ms_bufdata || tick->tk_ms_bufsize == 0,
("non-null buf pointer with positive size"));
switch (tick->tk_ms_type) {
case FT_M_FIOV:
buf[0] = tick->tk_ms_fiov.base;
buflen[0] = tick->tk_ms_fiov.len;
break;
case FT_M_BUF:
buf[0] = tick->tk_ms_fiov.base;
buflen[0] = tick->tk_ms_fiov.len;
buf[1] = tick->tk_ms_bufdata;
buflen[1] = tick->tk_ms_bufsize;
break;
default:
panic("unknown message type for fuse_ticket %p", tick);
}
for (i = 0; buf[i]; i++) {
/*
* Why not ban mercilessly stupid daemons who can't keep up
* with us? (There is no much use of a partial read here...)
*/
/*
* XXX note that in such cases Linux FUSE throws EIO at the
* syscall invoker and stands back to the message queue. The
* rationale should be made clear (and possibly adopt that
* behaviour). Keeping the current scheme at least makes
* fallacy as loud as possible...
*/
if (uio->uio_resid < buflen[i]) {
fdata_kick_set(data);
DEBUG2G("daemon is stupid, kick it off...\n");
err = ENODEV;
break;
}
err = uiomove(buf[i], buflen[i], uio);
if (err)
break;
}
/*
* fusedev_read will drop "not owned" tickets
* (used when the one who inserted the message thinks the daemon
* won't aswer)
*/
fuse_ticket_drop_notowned(tick);
return (err);
}
static __inline int
fuse_ohead_audit(struct fuse_out_header *ohead, struct uio *uio)
{
DEBUG_MSG("Out header -- len: %i, error: %i, unique: %llu; iovecs: %d\n",
ohead->len, ohead->error, (unsigned long long)ohead->unique,
uio->uio_iovcnt);
if (uio->uio_resid + sizeof(struct fuse_out_header) != ohead->len) {
DEBUG_MSG("Format error: body size differs from size claimed by header\n");
return (EINVAL);
}
if (uio->uio_resid && ohead->error) {
DEBUG_MSG("Format error: non zero error but message had a body\n");
return (EINVAL);
}
/* Sanitize the linuxism of negative errnos */
ohead->error = -(ohead->error);
return (0);
}
/*
* fusedev_write first reads the header sent by the daemon.
* If that's OK, looks up ticket/callback node by the unique id seen in header.
* If the callback node contains a handler function, the uio is passed over
* that.
*/
static int
fusedev_write(struct cdev *dev, struct uio *uio, int ioflag)
{
#if _DEBUG_MSG
static int counter=0;
#endif
struct fuse_out_header ohead;
int err = 0;
struct fuse_data *data;
struct fuse_ticket *tick, *x_tick;
int found = 0;
DEBUG_MSG("Fuse write -- No: %d, resid: %d, iovcnt: %d, thread: %d\n",
++counter, uio->uio_resid, uio->uio_iovcnt, uio->uio_td->td_tid);
data = fusedev_get_data(dev);
if (uio->uio_resid < sizeof(struct fuse_out_header)) {
DEBUG_MSG("got less than a header!\n");
fdata_kick_set(data);
return (EINVAL);
}
if ((err = uiomove(&ohead, sizeof(struct fuse_out_header), uio)) != 0)
return (err);
/*
* We check header information (which is redundant) and compare it with
* what we see. If we see some inconsistency we discard the whole
* answer and proceed on as if it had never existed. In particular, no
* pretender will be woken up, regardless the "unique" value in the
* header.
*/
if ((err = fuse_ohead_audit(&ohead, uio))) {
fdata_kick_set(data);
return (err);
}
/* Pass stuff over to callback if there is one installed */
/* Looking for ticket with the unique id of header */
mtx_lock(&data->aw_mtx);
TAILQ_FOREACH_SAFE(tick, &data->aw_head, tk_aw_link,
x_tick) {
DEBUG_MSG("bumped into callback #%llu\n",
(unsigned long long)tick->tk_unique);
if (tick->tk_unique == ohead.unique) {
found = 1;
fuse_aw_remove(tick);
break;
}
}
mtx_unlock(&data->aw_mtx);
if (found) {
if (tick->tk_aw_handler) {
/* We found a callback with proper handler.
* In this case the out header will be 0wnd by
* the callback, so the fun of freeing that is
* left for her.
* (Then, by all chance, she'll just get that's done
* via ticket_drop(), so no manual mucking around...)
*/
memcpy(&tick->tk_aw_ohead, &ohead, sizeof(ohead));
err = tick->tk_aw_handler(tick, uio);
DEBUG_MSG("stuff been passed over to a callback\n");
} else {
/* pretender doesn't wanna do anything with answer */
DEBUG_MSG("stuff devalidated, so we drop it\n");
fuse_ticket_drop(tick);
return (err);
}
} else {
/* no callback at all! */
/*
* this is BAD:
* + if unique id was generated by fuse userspace,
* that's way too bogus. Userspace should only
* pass unique ids back and forth.
* + else we generated the unique id by
* fuse_ticket_fetch() somewhere in the foggy past.
* Now that ticket is either
* + dropped, which means it could have been
* reused by now, and then this answer we work
* with would be misdelivered (it's
* just luck that it's not the case now)
* + not dropped, which means it's either
* + lost: will be kept on busy list for
* the whole lifetime
* + someone will drop it randomly without
* any event based triggering (this
* would be the place for such a thing),
* which is just nonsense.
*/
DEBUG_MSG("erhm, no handler for this response\n");
fdata_kick_set(data);
return (EINVAL);
}
return (err);
}
/*
* Modeled after tunclone() of net/if_tun.c ...
* boosted with a hack so that devices can be reused.
*/
#ifdef USE_OLD_CLONEHANDLER_API
void
fusedev_clone(void *arg, char *name, int namelen, struct cdev **dev)
#else
void
fusedev_clone(void *arg, struct ucred *cred, char *name, int namelen,
struct cdev **dev)
#endif
{
/*
* Why cloning? We do need per-open info, but we could as well put our
* hands on the file struct assigned to an open by implementing
* d_fdopen instead of d_open.
*
* From that on, the usual way to per-open (that is, file aware)
* I/O would be pushing our preferred set of ops into the f_op
* field of that file at open time. But that wouldn't work in
* FreeBSD, as the devfs open routine (which is the one who calls
* the device's d_(fd)open) overwrites that f_op with its own
* file ops mercilessly.
*
* Yet... even if we could get devfs to keep our file ops intact,
* I'd still say cloning is better. It makes fuse daemons' identity
* explicit and globally visible to userspace, and we are not forced
* to get the mount done by the daemon itself like in linux (where
* I/O is file aware by default). (The possibilities of getting the
* daemon do the mount or getting the mount util spawn the daemon
* are still open, of course; I guess I will go for the latter
* appcocroach.)
*/
int i, unit;
if (*dev != NULL)
return;
if (strcmp(name, "fuse") == 0) {
struct cdev *xdev;
unit = -1;
/*
* Before falling back to the standard routine, we try
* to find an existing free device by ourselves, so that
* it will be reused instead of having the clone machinery
* dummily spawn a new one.
*/
dev_lock();
LIST_FOREACH(xdev, &fuseclones->head, si_clone) {
KASSERT(xdev->si_flags & SI_CLONELIST,
("Dev %p(%s) should be on clonelist", xdev, xdev->si_name));
if (! xdev->si_drv1) {
unit = dev2unit(xdev);
break;
}
}
dev_unlock();
} else if (dev_stdclone(name, NULL, "fuse", &unit) != 1) {
return;
}
/* find any existing device, or allocate new unit number */
i = clone_create(&fuseclones, &fuse_cdevsw, &unit, dev, 0);
if (i) {
*dev = make_dev(&fuse_cdevsw,
#if __FreeBSD_version < 800062
unit2minor(unit),
#else /* __FreeBSD_version >= 800062 */
unit,
#endif /* __FreeBSD_version < 800062 */
UID_ROOT, GID_OPERATOR,
S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP,
"fuse%d", unit);
if (*dev == NULL)
return;
}
KASSERT(*dev, ("no device after apparently successful cloning"));
dev_ref(*dev);
(*dev)->si_drv1 = NULL;
(*dev)->si_flags |= SI_CHEAPCLONE;
DEBUG("clone done: %d\n",unit);
}
|