1 /* 2 * Virtio 9p backend 3 * 4 * Copyright IBM, Corp. 2010 5 * 6 * Authors: 7 * Anthony Liguori <aliguori@us.ibm.com> 8 * 9 * This work is licensed under the terms of the GNU GPL, version 2. See 10 * the COPYING file in the top-level directory. 11 * 12 */ 13 14 #include "qemu/osdep.h" 15 #include <glib/gprintf.h> 16 #include "hw/virtio/virtio.h" 17 #include "qapi/error.h" 18 #include "qemu/error-report.h" 19 #include "qemu/iov.h" 20 #include "qemu/sockets.h" 21 #include "virtio-9p.h" 22 #include "fsdev/qemu-fsdev.h" 23 #include "9p-xattr.h" 24 #include "coth.h" 25 #include "trace.h" 26 #include "migration/migration.h" 27 28 int open_fd_hw; 29 int total_open_fd; 30 static int open_fd_rc; 31 32 enum { 33 Oread = 0x00, 34 Owrite = 0x01, 35 Ordwr = 0x02, 36 Oexec = 0x03, 37 Oexcl = 0x04, 38 Otrunc = 0x10, 39 Orexec = 0x20, 40 Orclose = 0x40, 41 Oappend = 0x80, 42 }; 43 44 ssize_t pdu_marshal(V9fsPDU *pdu, size_t offset, const char *fmt, ...) 45 { 46 ssize_t ret; 47 va_list ap; 48 49 va_start(ap, fmt); 50 ret = virtio_pdu_vmarshal(pdu, offset, fmt, ap); 51 va_end(ap); 52 53 return ret; 54 } 55 56 ssize_t pdu_unmarshal(V9fsPDU *pdu, size_t offset, const char *fmt, ...) 57 { 58 ssize_t ret; 59 va_list ap; 60 61 va_start(ap, fmt); 62 ret = virtio_pdu_vunmarshal(pdu, offset, fmt, ap); 63 va_end(ap); 64 65 return ret; 66 } 67 68 static void pdu_push_and_notify(V9fsPDU *pdu) 69 { 70 virtio_9p_push_and_notify(pdu); 71 } 72 73 static int omode_to_uflags(int8_t mode) 74 { 75 int ret = 0; 76 77 switch (mode & 3) { 78 case Oread: 79 ret = O_RDONLY; 80 break; 81 case Ordwr: 82 ret = O_RDWR; 83 break; 84 case Owrite: 85 ret = O_WRONLY; 86 break; 87 case Oexec: 88 ret = O_RDONLY; 89 break; 90 } 91 92 if (mode & Otrunc) { 93 ret |= O_TRUNC; 94 } 95 96 if (mode & Oappend) { 97 ret |= O_APPEND; 98 } 99 100 if (mode & Oexcl) { 101 ret |= O_EXCL; 102 } 103 104 return ret; 105 } 106 107 struct dotl_openflag_map { 108 int dotl_flag; 109 int open_flag; 110 }; 111 112 static int dotl_to_open_flags(int flags) 113 { 114 int i; 115 /* 116 * We have same bits for P9_DOTL_READONLY, P9_DOTL_WRONLY 117 * and P9_DOTL_NOACCESS 118 */ 119 int oflags = flags & O_ACCMODE; 120 121 struct dotl_openflag_map dotl_oflag_map[] = { 122 { P9_DOTL_CREATE, O_CREAT }, 123 { P9_DOTL_EXCL, O_EXCL }, 124 { P9_DOTL_NOCTTY , O_NOCTTY }, 125 { P9_DOTL_TRUNC, O_TRUNC }, 126 { P9_DOTL_APPEND, O_APPEND }, 127 { P9_DOTL_NONBLOCK, O_NONBLOCK } , 128 { P9_DOTL_DSYNC, O_DSYNC }, 129 { P9_DOTL_FASYNC, FASYNC }, 130 { P9_DOTL_DIRECT, O_DIRECT }, 131 { P9_DOTL_LARGEFILE, O_LARGEFILE }, 132 { P9_DOTL_DIRECTORY, O_DIRECTORY }, 133 { P9_DOTL_NOFOLLOW, O_NOFOLLOW }, 134 { P9_DOTL_NOATIME, O_NOATIME }, 135 { P9_DOTL_SYNC, O_SYNC }, 136 }; 137 138 for (i = 0; i < ARRAY_SIZE(dotl_oflag_map); i++) { 139 if (flags & dotl_oflag_map[i].dotl_flag) { 140 oflags |= dotl_oflag_map[i].open_flag; 141 } 142 } 143 144 return oflags; 145 } 146 147 void cred_init(FsCred *credp) 148 { 149 credp->fc_uid = -1; 150 credp->fc_gid = -1; 151 credp->fc_mode = -1; 152 credp->fc_rdev = -1; 153 } 154 155 static int get_dotl_openflags(V9fsState *s, int oflags) 156 { 157 int flags; 158 /* 159 * Filter the client open flags 160 */ 161 flags = dotl_to_open_flags(oflags); 162 flags &= ~(O_NOCTTY | O_ASYNC | O_CREAT); 163 /* 164 * Ignore direct disk access hint until the server supports it. 165 */ 166 flags &= ~O_DIRECT; 167 return flags; 168 } 169 170 void v9fs_path_init(V9fsPath *path) 171 { 172 path->data = NULL; 173 path->size = 0; 174 } 175 176 void v9fs_path_free(V9fsPath *path) 177 { 178 g_free(path->data); 179 path->data = NULL; 180 path->size = 0; 181 } 182 183 184 void GCC_FMT_ATTR(2, 3) 185 v9fs_path_sprintf(V9fsPath *path, const char *fmt, ...) 186 { 187 va_list ap; 188 189 v9fs_path_free(path); 190 191 va_start(ap, fmt); 192 /* Bump the size for including terminating NULL */ 193 path->size = g_vasprintf(&path->data, fmt, ap) + 1; 194 va_end(ap); 195 } 196 197 void v9fs_path_copy(V9fsPath *lhs, V9fsPath *rhs) 198 { 199 v9fs_path_free(lhs); 200 lhs->data = g_malloc(rhs->size); 201 memcpy(lhs->data, rhs->data, rhs->size); 202 lhs->size = rhs->size; 203 } 204 205 int v9fs_name_to_path(V9fsState *s, V9fsPath *dirpath, 206 const char *name, V9fsPath *path) 207 { 208 int err; 209 err = s->ops->name_to_path(&s->ctx, dirpath, name, path); 210 if (err < 0) { 211 err = -errno; 212 } 213 return err; 214 } 215 216 /* 217 * Return TRUE if s1 is an ancestor of s2. 218 * 219 * E.g. "a/b" is an ancestor of "a/b/c" but not of "a/bc/d". 220 * As a special case, We treat s1 as ancestor of s2 if they are same! 221 */ 222 static int v9fs_path_is_ancestor(V9fsPath *s1, V9fsPath *s2) 223 { 224 if (!strncmp(s1->data, s2->data, s1->size - 1)) { 225 if (s2->data[s1->size - 1] == '\0' || s2->data[s1->size - 1] == '/') { 226 return 1; 227 } 228 } 229 return 0; 230 } 231 232 static size_t v9fs_string_size(V9fsString *str) 233 { 234 return str->size; 235 } 236 237 /* 238 * returns 0 if fid got re-opened, 1 if not, < 0 on error */ 239 static int v9fs_reopen_fid(V9fsPDU *pdu, V9fsFidState *f) 240 { 241 int err = 1; 242 if (f->fid_type == P9_FID_FILE) { 243 if (f->fs.fd == -1) { 244 do { 245 err = v9fs_co_open(pdu, f, f->open_flags); 246 } while (err == -EINTR && !pdu->cancelled); 247 } 248 } else if (f->fid_type == P9_FID_DIR) { 249 if (f->fs.dir.stream == NULL) { 250 do { 251 err = v9fs_co_opendir(pdu, f); 252 } while (err == -EINTR && !pdu->cancelled); 253 } 254 } 255 return err; 256 } 257 258 static V9fsFidState *get_fid(V9fsPDU *pdu, int32_t fid) 259 { 260 int err; 261 V9fsFidState *f; 262 V9fsState *s = pdu->s; 263 264 for (f = s->fid_list; f; f = f->next) { 265 BUG_ON(f->clunked); 266 if (f->fid == fid) { 267 /* 268 * Update the fid ref upfront so that 269 * we don't get reclaimed when we yield 270 * in open later. 271 */ 272 f->ref++; 273 /* 274 * check whether we need to reopen the 275 * file. We might have closed the fd 276 * while trying to free up some file 277 * descriptors. 278 */ 279 err = v9fs_reopen_fid(pdu, f); 280 if (err < 0) { 281 f->ref--; 282 return NULL; 283 } 284 /* 285 * Mark the fid as referenced so that the LRU 286 * reclaim won't close the file descriptor 287 */ 288 f->flags |= FID_REFERENCED; 289 return f; 290 } 291 } 292 return NULL; 293 } 294 295 static V9fsFidState *alloc_fid(V9fsState *s, int32_t fid) 296 { 297 V9fsFidState *f; 298 299 for (f = s->fid_list; f; f = f->next) { 300 /* If fid is already there return NULL */ 301 BUG_ON(f->clunked); 302 if (f->fid == fid) { 303 return NULL; 304 } 305 } 306 f = g_malloc0(sizeof(V9fsFidState)); 307 f->fid = fid; 308 f->fid_type = P9_FID_NONE; 309 f->ref = 1; 310 /* 311 * Mark the fid as referenced so that the LRU 312 * reclaim won't close the file descriptor 313 */ 314 f->flags |= FID_REFERENCED; 315 f->next = s->fid_list; 316 s->fid_list = f; 317 318 v9fs_readdir_init(&f->fs.dir); 319 v9fs_readdir_init(&f->fs_reclaim.dir); 320 321 return f; 322 } 323 324 static int v9fs_xattr_fid_clunk(V9fsPDU *pdu, V9fsFidState *fidp) 325 { 326 int retval = 0; 327 328 if (fidp->fs.xattr.copied_len == -1) { 329 /* getxattr/listxattr fid */ 330 goto free_value; 331 } 332 /* 333 * if this is fid for setxattr. clunk should 334 * result in setxattr localcall 335 */ 336 if (fidp->fs.xattr.len != fidp->fs.xattr.copied_len) { 337 /* clunk after partial write */ 338 retval = -EINVAL; 339 goto free_out; 340 } 341 if (fidp->fs.xattr.len) { 342 retval = v9fs_co_lsetxattr(pdu, &fidp->path, &fidp->fs.xattr.name, 343 fidp->fs.xattr.value, 344 fidp->fs.xattr.len, 345 fidp->fs.xattr.flags); 346 } else { 347 retval = v9fs_co_lremovexattr(pdu, &fidp->path, &fidp->fs.xattr.name); 348 } 349 free_out: 350 v9fs_string_free(&fidp->fs.xattr.name); 351 free_value: 352 g_free(fidp->fs.xattr.value); 353 return retval; 354 } 355 356 static int free_fid(V9fsPDU *pdu, V9fsFidState *fidp) 357 { 358 int retval = 0; 359 360 if (fidp->fid_type == P9_FID_FILE) { 361 /* If we reclaimed the fd no need to close */ 362 if (fidp->fs.fd != -1) { 363 retval = v9fs_co_close(pdu, &fidp->fs); 364 } 365 } else if (fidp->fid_type == P9_FID_DIR) { 366 if (fidp->fs.dir.stream != NULL) { 367 retval = v9fs_co_closedir(pdu, &fidp->fs); 368 } 369 } else if (fidp->fid_type == P9_FID_XATTR) { 370 retval = v9fs_xattr_fid_clunk(pdu, fidp); 371 } 372 v9fs_path_free(&fidp->path); 373 g_free(fidp); 374 return retval; 375 } 376 377 static int put_fid(V9fsPDU *pdu, V9fsFidState *fidp) 378 { 379 BUG_ON(!fidp->ref); 380 fidp->ref--; 381 /* 382 * Don't free the fid if it is in reclaim list 383 */ 384 if (!fidp->ref && fidp->clunked) { 385 if (fidp->fid == pdu->s->root_fid) { 386 /* 387 * if the clunked fid is root fid then we 388 * have unmounted the fs on the client side. 389 * delete the migration blocker. Ideally, this 390 * should be hooked to transport close notification 391 */ 392 if (pdu->s->migration_blocker) { 393 migrate_del_blocker(pdu->s->migration_blocker); 394 error_free(pdu->s->migration_blocker); 395 pdu->s->migration_blocker = NULL; 396 } 397 } 398 return free_fid(pdu, fidp); 399 } 400 return 0; 401 } 402 403 static V9fsFidState *clunk_fid(V9fsState *s, int32_t fid) 404 { 405 V9fsFidState **fidpp, *fidp; 406 407 for (fidpp = &s->fid_list; *fidpp; fidpp = &(*fidpp)->next) { 408 if ((*fidpp)->fid == fid) { 409 break; 410 } 411 } 412 if (*fidpp == NULL) { 413 return NULL; 414 } 415 fidp = *fidpp; 416 *fidpp = fidp->next; 417 fidp->clunked = 1; 418 return fidp; 419 } 420 421 void v9fs_reclaim_fd(V9fsPDU *pdu) 422 { 423 int reclaim_count = 0; 424 V9fsState *s = pdu->s; 425 V9fsFidState *f, *reclaim_list = NULL; 426 427 for (f = s->fid_list; f; f = f->next) { 428 /* 429 * Unlink fids cannot be reclaimed. Check 430 * for them and skip them. Also skip fids 431 * currently being operated on. 432 */ 433 if (f->ref || f->flags & FID_NON_RECLAIMABLE) { 434 continue; 435 } 436 /* 437 * if it is a recently referenced fid 438 * we leave the fid untouched and clear the 439 * reference bit. We come back to it later 440 * in the next iteration. (a simple LRU without 441 * moving list elements around) 442 */ 443 if (f->flags & FID_REFERENCED) { 444 f->flags &= ~FID_REFERENCED; 445 continue; 446 } 447 /* 448 * Add fids to reclaim list. 449 */ 450 if (f->fid_type == P9_FID_FILE) { 451 if (f->fs.fd != -1) { 452 /* 453 * Up the reference count so that 454 * a clunk request won't free this fid 455 */ 456 f->ref++; 457 f->rclm_lst = reclaim_list; 458 reclaim_list = f; 459 f->fs_reclaim.fd = f->fs.fd; 460 f->fs.fd = -1; 461 reclaim_count++; 462 } 463 } else if (f->fid_type == P9_FID_DIR) { 464 if (f->fs.dir.stream != NULL) { 465 /* 466 * Up the reference count so that 467 * a clunk request won't free this fid 468 */ 469 f->ref++; 470 f->rclm_lst = reclaim_list; 471 reclaim_list = f; 472 f->fs_reclaim.dir.stream = f->fs.dir.stream; 473 f->fs.dir.stream = NULL; 474 reclaim_count++; 475 } 476 } 477 if (reclaim_count >= open_fd_rc) { 478 break; 479 } 480 } 481 /* 482 * Now close the fid in reclaim list. Free them if they 483 * are already clunked. 484 */ 485 while (reclaim_list) { 486 f = reclaim_list; 487 reclaim_list = f->rclm_lst; 488 if (f->fid_type == P9_FID_FILE) { 489 v9fs_co_close(pdu, &f->fs_reclaim); 490 } else if (f->fid_type == P9_FID_DIR) { 491 v9fs_co_closedir(pdu, &f->fs_reclaim); 492 } 493 f->rclm_lst = NULL; 494 /* 495 * Now drop the fid reference, free it 496 * if clunked. 497 */ 498 put_fid(pdu, f); 499 } 500 } 501 502 static int v9fs_mark_fids_unreclaim(V9fsPDU *pdu, V9fsPath *path) 503 { 504 int err; 505 V9fsState *s = pdu->s; 506 V9fsFidState *fidp, head_fid; 507 508 head_fid.next = s->fid_list; 509 for (fidp = s->fid_list; fidp; fidp = fidp->next) { 510 if (fidp->path.size != path->size) { 511 continue; 512 } 513 if (!memcmp(fidp->path.data, path->data, path->size)) { 514 /* Mark the fid non reclaimable. */ 515 fidp->flags |= FID_NON_RECLAIMABLE; 516 517 /* reopen the file/dir if already closed */ 518 err = v9fs_reopen_fid(pdu, fidp); 519 if (err < 0) { 520 return -1; 521 } 522 /* 523 * Go back to head of fid list because 524 * the list could have got updated when 525 * switched to the worker thread 526 */ 527 if (err == 0) { 528 fidp = &head_fid; 529 } 530 } 531 } 532 return 0; 533 } 534 535 static void virtfs_reset(V9fsPDU *pdu) 536 { 537 V9fsState *s = pdu->s; 538 V9fsFidState *fidp = NULL; 539 540 /* Free all fids */ 541 while (s->fid_list) { 542 fidp = s->fid_list; 543 s->fid_list = fidp->next; 544 545 if (fidp->ref) { 546 fidp->clunked = 1; 547 } else { 548 free_fid(pdu, fidp); 549 } 550 } 551 if (fidp) { 552 /* One or more unclunked fids found... */ 553 error_report("9pfs:%s: One or more uncluncked fids " 554 "found during reset", __func__); 555 } 556 } 557 558 #define P9_QID_TYPE_DIR 0x80 559 #define P9_QID_TYPE_SYMLINK 0x02 560 561 #define P9_STAT_MODE_DIR 0x80000000 562 #define P9_STAT_MODE_APPEND 0x40000000 563 #define P9_STAT_MODE_EXCL 0x20000000 564 #define P9_STAT_MODE_MOUNT 0x10000000 565 #define P9_STAT_MODE_AUTH 0x08000000 566 #define P9_STAT_MODE_TMP 0x04000000 567 #define P9_STAT_MODE_SYMLINK 0x02000000 568 #define P9_STAT_MODE_LINK 0x01000000 569 #define P9_STAT_MODE_DEVICE 0x00800000 570 #define P9_STAT_MODE_NAMED_PIPE 0x00200000 571 #define P9_STAT_MODE_SOCKET 0x00100000 572 #define P9_STAT_MODE_SETUID 0x00080000 573 #define P9_STAT_MODE_SETGID 0x00040000 574 #define P9_STAT_MODE_SETVTX 0x00010000 575 576 #define P9_STAT_MODE_TYPE_BITS (P9_STAT_MODE_DIR | \ 577 P9_STAT_MODE_SYMLINK | \ 578 P9_STAT_MODE_LINK | \ 579 P9_STAT_MODE_DEVICE | \ 580 P9_STAT_MODE_NAMED_PIPE | \ 581 P9_STAT_MODE_SOCKET) 582 583 /* This is the algorithm from ufs in spfs */ 584 static void stat_to_qid(const struct stat *stbuf, V9fsQID *qidp) 585 { 586 size_t size; 587 588 memset(&qidp->path, 0, sizeof(qidp->path)); 589 size = MIN(sizeof(stbuf->st_ino), sizeof(qidp->path)); 590 memcpy(&qidp->path, &stbuf->st_ino, size); 591 qidp->version = stbuf->st_mtime ^ (stbuf->st_size << 8); 592 qidp->type = 0; 593 if (S_ISDIR(stbuf->st_mode)) { 594 qidp->type |= P9_QID_TYPE_DIR; 595 } 596 if (S_ISLNK(stbuf->st_mode)) { 597 qidp->type |= P9_QID_TYPE_SYMLINK; 598 } 599 } 600 601 static int fid_to_qid(V9fsPDU *pdu, V9fsFidState *fidp, V9fsQID *qidp) 602 { 603 struct stat stbuf; 604 int err; 605 606 err = v9fs_co_lstat(pdu, &fidp->path, &stbuf); 607 if (err < 0) { 608 return err; 609 } 610 stat_to_qid(&stbuf, qidp); 611 return 0; 612 } 613 614 V9fsPDU *pdu_alloc(V9fsState *s) 615 { 616 V9fsPDU *pdu = NULL; 617 618 if (!QLIST_EMPTY(&s->free_list)) { 619 pdu = QLIST_FIRST(&s->free_list); 620 QLIST_REMOVE(pdu, next); 621 QLIST_INSERT_HEAD(&s->active_list, pdu, next); 622 } 623 return pdu; 624 } 625 626 void pdu_free(V9fsPDU *pdu) 627 { 628 if (pdu) { 629 V9fsState *s = pdu->s; 630 /* 631 * Cancelled pdu are added back to the freelist 632 * by flush request . 633 */ 634 if (!pdu->cancelled) { 635 QLIST_REMOVE(pdu, next); 636 QLIST_INSERT_HEAD(&s->free_list, pdu, next); 637 } 638 } 639 } 640 641 /* 642 * We don't do error checking for pdu_marshal/unmarshal here 643 * because we always expect to have enough space to encode 644 * error details 645 */ 646 static void pdu_complete(V9fsPDU *pdu, ssize_t len) 647 { 648 int8_t id = pdu->id + 1; /* Response */ 649 V9fsState *s = pdu->s; 650 651 if (len < 0) { 652 int err = -len; 653 len = 7; 654 655 if (s->proto_version != V9FS_PROTO_2000L) { 656 V9fsString str; 657 658 str.data = strerror(err); 659 str.size = strlen(str.data); 660 661 len += pdu_marshal(pdu, len, "s", &str); 662 id = P9_RERROR; 663 } 664 665 len += pdu_marshal(pdu, len, "d", err); 666 667 if (s->proto_version == V9FS_PROTO_2000L) { 668 id = P9_RLERROR; 669 } 670 trace_v9fs_rerror(pdu->tag, pdu->id, err); /* Trace ERROR */ 671 } 672 673 /* fill out the header */ 674 pdu_marshal(pdu, 0, "dbw", (int32_t)len, id, pdu->tag); 675 676 /* keep these in sync */ 677 pdu->size = len; 678 pdu->id = id; 679 680 pdu_push_and_notify(pdu); 681 682 /* Now wakeup anybody waiting in flush for this request */ 683 qemu_co_queue_next(&pdu->complete); 684 685 pdu_free(pdu); 686 } 687 688 static mode_t v9mode_to_mode(uint32_t mode, V9fsString *extension) 689 { 690 mode_t ret; 691 692 ret = mode & 0777; 693 if (mode & P9_STAT_MODE_DIR) { 694 ret |= S_IFDIR; 695 } 696 697 if (mode & P9_STAT_MODE_SYMLINK) { 698 ret |= S_IFLNK; 699 } 700 if (mode & P9_STAT_MODE_SOCKET) { 701 ret |= S_IFSOCK; 702 } 703 if (mode & P9_STAT_MODE_NAMED_PIPE) { 704 ret |= S_IFIFO; 705 } 706 if (mode & P9_STAT_MODE_DEVICE) { 707 if (extension->size && extension->data[0] == 'c') { 708 ret |= S_IFCHR; 709 } else { 710 ret |= S_IFBLK; 711 } 712 } 713 714 if (!(ret&~0777)) { 715 ret |= S_IFREG; 716 } 717 718 if (mode & P9_STAT_MODE_SETUID) { 719 ret |= S_ISUID; 720 } 721 if (mode & P9_STAT_MODE_SETGID) { 722 ret |= S_ISGID; 723 } 724 if (mode & P9_STAT_MODE_SETVTX) { 725 ret |= S_ISVTX; 726 } 727 728 return ret; 729 } 730 731 static int donttouch_stat(V9fsStat *stat) 732 { 733 if (stat->type == -1 && 734 stat->dev == -1 && 735 stat->qid.type == -1 && 736 stat->qid.version == -1 && 737 stat->qid.path == -1 && 738 stat->mode == -1 && 739 stat->atime == -1 && 740 stat->mtime == -1 && 741 stat->length == -1 && 742 !stat->name.size && 743 !stat->uid.size && 744 !stat->gid.size && 745 !stat->muid.size && 746 stat->n_uid == -1 && 747 stat->n_gid == -1 && 748 stat->n_muid == -1) { 749 return 1; 750 } 751 752 return 0; 753 } 754 755 static void v9fs_stat_init(V9fsStat *stat) 756 { 757 v9fs_string_init(&stat->name); 758 v9fs_string_init(&stat->uid); 759 v9fs_string_init(&stat->gid); 760 v9fs_string_init(&stat->muid); 761 v9fs_string_init(&stat->extension); 762 } 763 764 static void v9fs_stat_free(V9fsStat *stat) 765 { 766 v9fs_string_free(&stat->name); 767 v9fs_string_free(&stat->uid); 768 v9fs_string_free(&stat->gid); 769 v9fs_string_free(&stat->muid); 770 v9fs_string_free(&stat->extension); 771 } 772 773 static uint32_t stat_to_v9mode(const struct stat *stbuf) 774 { 775 uint32_t mode; 776 777 mode = stbuf->st_mode & 0777; 778 if (S_ISDIR(stbuf->st_mode)) { 779 mode |= P9_STAT_MODE_DIR; 780 } 781 782 if (S_ISLNK(stbuf->st_mode)) { 783 mode |= P9_STAT_MODE_SYMLINK; 784 } 785 786 if (S_ISSOCK(stbuf->st_mode)) { 787 mode |= P9_STAT_MODE_SOCKET; 788 } 789 790 if (S_ISFIFO(stbuf->st_mode)) { 791 mode |= P9_STAT_MODE_NAMED_PIPE; 792 } 793 794 if (S_ISBLK(stbuf->st_mode) || S_ISCHR(stbuf->st_mode)) { 795 mode |= P9_STAT_MODE_DEVICE; 796 } 797 798 if (stbuf->st_mode & S_ISUID) { 799 mode |= P9_STAT_MODE_SETUID; 800 } 801 802 if (stbuf->st_mode & S_ISGID) { 803 mode |= P9_STAT_MODE_SETGID; 804 } 805 806 if (stbuf->st_mode & S_ISVTX) { 807 mode |= P9_STAT_MODE_SETVTX; 808 } 809 810 return mode; 811 } 812 813 static int stat_to_v9stat(V9fsPDU *pdu, V9fsPath *name, 814 const struct stat *stbuf, 815 V9fsStat *v9stat) 816 { 817 int err; 818 const char *str; 819 820 memset(v9stat, 0, sizeof(*v9stat)); 821 822 stat_to_qid(stbuf, &v9stat->qid); 823 v9stat->mode = stat_to_v9mode(stbuf); 824 v9stat->atime = stbuf->st_atime; 825 v9stat->mtime = stbuf->st_mtime; 826 v9stat->length = stbuf->st_size; 827 828 v9fs_string_free(&v9stat->uid); 829 v9fs_string_free(&v9stat->gid); 830 v9fs_string_free(&v9stat->muid); 831 832 v9stat->n_uid = stbuf->st_uid; 833 v9stat->n_gid = stbuf->st_gid; 834 v9stat->n_muid = 0; 835 836 v9fs_string_free(&v9stat->extension); 837 838 if (v9stat->mode & P9_STAT_MODE_SYMLINK) { 839 err = v9fs_co_readlink(pdu, name, &v9stat->extension); 840 if (err < 0) { 841 return err; 842 } 843 } else if (v9stat->mode & P9_STAT_MODE_DEVICE) { 844 v9fs_string_sprintf(&v9stat->extension, "%c %u %u", 845 S_ISCHR(stbuf->st_mode) ? 'c' : 'b', 846 major(stbuf->st_rdev), minor(stbuf->st_rdev)); 847 } else if (S_ISDIR(stbuf->st_mode) || S_ISREG(stbuf->st_mode)) { 848 v9fs_string_sprintf(&v9stat->extension, "%s %lu", 849 "HARDLINKCOUNT", (unsigned long)stbuf->st_nlink); 850 } 851 852 str = strrchr(name->data, '/'); 853 if (str) { 854 str += 1; 855 } else { 856 str = name->data; 857 } 858 859 v9fs_string_sprintf(&v9stat->name, "%s", str); 860 861 v9stat->size = 61 + 862 v9fs_string_size(&v9stat->name) + 863 v9fs_string_size(&v9stat->uid) + 864 v9fs_string_size(&v9stat->gid) + 865 v9fs_string_size(&v9stat->muid) + 866 v9fs_string_size(&v9stat->extension); 867 return 0; 868 } 869 870 #define P9_STATS_MODE 0x00000001ULL 871 #define P9_STATS_NLINK 0x00000002ULL 872 #define P9_STATS_UID 0x00000004ULL 873 #define P9_STATS_GID 0x00000008ULL 874 #define P9_STATS_RDEV 0x00000010ULL 875 #define P9_STATS_ATIME 0x00000020ULL 876 #define P9_STATS_MTIME 0x00000040ULL 877 #define P9_STATS_CTIME 0x00000080ULL 878 #define P9_STATS_INO 0x00000100ULL 879 #define P9_STATS_SIZE 0x00000200ULL 880 #define P9_STATS_BLOCKS 0x00000400ULL 881 882 #define P9_STATS_BTIME 0x00000800ULL 883 #define P9_STATS_GEN 0x00001000ULL 884 #define P9_STATS_DATA_VERSION 0x00002000ULL 885 886 #define P9_STATS_BASIC 0x000007ffULL /* Mask for fields up to BLOCKS */ 887 #define P9_STATS_ALL 0x00003fffULL /* Mask for All fields above */ 888 889 890 static void stat_to_v9stat_dotl(V9fsState *s, const struct stat *stbuf, 891 V9fsStatDotl *v9lstat) 892 { 893 memset(v9lstat, 0, sizeof(*v9lstat)); 894 895 v9lstat->st_mode = stbuf->st_mode; 896 v9lstat->st_nlink = stbuf->st_nlink; 897 v9lstat->st_uid = stbuf->st_uid; 898 v9lstat->st_gid = stbuf->st_gid; 899 v9lstat->st_rdev = stbuf->st_rdev; 900 v9lstat->st_size = stbuf->st_size; 901 v9lstat->st_blksize = stbuf->st_blksize; 902 v9lstat->st_blocks = stbuf->st_blocks; 903 v9lstat->st_atime_sec = stbuf->st_atime; 904 v9lstat->st_atime_nsec = stbuf->st_atim.tv_nsec; 905 v9lstat->st_mtime_sec = stbuf->st_mtime; 906 v9lstat->st_mtime_nsec = stbuf->st_mtim.tv_nsec; 907 v9lstat->st_ctime_sec = stbuf->st_ctime; 908 v9lstat->st_ctime_nsec = stbuf->st_ctim.tv_nsec; 909 /* Currently we only support BASIC fields in stat */ 910 v9lstat->st_result_mask = P9_STATS_BASIC; 911 912 stat_to_qid(stbuf, &v9lstat->qid); 913 } 914 915 static void print_sg(struct iovec *sg, int cnt) 916 { 917 int i; 918 919 printf("sg[%d]: {", cnt); 920 for (i = 0; i < cnt; i++) { 921 if (i) { 922 printf(", "); 923 } 924 printf("(%p, %zd)", sg[i].iov_base, sg[i].iov_len); 925 } 926 printf("}\n"); 927 } 928 929 /* Will call this only for path name based fid */ 930 static void v9fs_fix_path(V9fsPath *dst, V9fsPath *src, int len) 931 { 932 V9fsPath str; 933 v9fs_path_init(&str); 934 v9fs_path_copy(&str, dst); 935 v9fs_path_sprintf(dst, "%s%s", src->data, str.data + len); 936 v9fs_path_free(&str); 937 } 938 939 static inline bool is_ro_export(FsContext *ctx) 940 { 941 return ctx->export_flags & V9FS_RDONLY; 942 } 943 944 static void v9fs_version(void *opaque) 945 { 946 ssize_t err; 947 V9fsPDU *pdu = opaque; 948 V9fsState *s = pdu->s; 949 V9fsString version; 950 size_t offset = 7; 951 952 v9fs_string_init(&version); 953 err = pdu_unmarshal(pdu, offset, "ds", &s->msize, &version); 954 if (err < 0) { 955 offset = err; 956 goto out; 957 } 958 trace_v9fs_version(pdu->tag, pdu->id, s->msize, version.data); 959 960 virtfs_reset(pdu); 961 962 if (!strcmp(version.data, "9P2000.u")) { 963 s->proto_version = V9FS_PROTO_2000U; 964 } else if (!strcmp(version.data, "9P2000.L")) { 965 s->proto_version = V9FS_PROTO_2000L; 966 } else { 967 v9fs_string_sprintf(&version, "unknown"); 968 } 969 970 err = pdu_marshal(pdu, offset, "ds", s->msize, &version); 971 if (err < 0) { 972 offset = err; 973 goto out; 974 } 975 offset += err; 976 trace_v9fs_version_return(pdu->tag, pdu->id, s->msize, version.data); 977 out: 978 pdu_complete(pdu, offset); 979 v9fs_string_free(&version); 980 } 981 982 static void v9fs_attach(void *opaque) 983 { 984 V9fsPDU *pdu = opaque; 985 V9fsState *s = pdu->s; 986 int32_t fid, afid, n_uname; 987 V9fsString uname, aname; 988 V9fsFidState *fidp; 989 size_t offset = 7; 990 V9fsQID qid; 991 ssize_t err; 992 993 v9fs_string_init(&uname); 994 v9fs_string_init(&aname); 995 err = pdu_unmarshal(pdu, offset, "ddssd", &fid, 996 &afid, &uname, &aname, &n_uname); 997 if (err < 0) { 998 goto out_nofid; 999 } 1000 trace_v9fs_attach(pdu->tag, pdu->id, fid, afid, uname.data, aname.data); 1001 1002 fidp = alloc_fid(s, fid); 1003 if (fidp == NULL) { 1004 err = -EINVAL; 1005 goto out_nofid; 1006 } 1007 fidp->uid = n_uname; 1008 err = v9fs_co_name_to_path(pdu, NULL, "/", &fidp->path); 1009 if (err < 0) { 1010 err = -EINVAL; 1011 clunk_fid(s, fid); 1012 goto out; 1013 } 1014 err = fid_to_qid(pdu, fidp, &qid); 1015 if (err < 0) { 1016 err = -EINVAL; 1017 clunk_fid(s, fid); 1018 goto out; 1019 } 1020 err = pdu_marshal(pdu, offset, "Q", &qid); 1021 if (err < 0) { 1022 clunk_fid(s, fid); 1023 goto out; 1024 } 1025 err += offset; 1026 memcpy(&s->root_qid, &qid, sizeof(qid)); 1027 trace_v9fs_attach_return(pdu->tag, pdu->id, 1028 qid.type, qid.version, qid.path); 1029 /* 1030 * disable migration if we haven't done already. 1031 * attach could get called multiple times for the same export. 1032 */ 1033 if (!s->migration_blocker) { 1034 s->root_fid = fid; 1035 error_setg(&s->migration_blocker, 1036 "Migration is disabled when VirtFS export path '%s' is mounted in the guest using mount_tag '%s'", 1037 s->ctx.fs_root ? s->ctx.fs_root : "NULL", s->tag); 1038 migrate_add_blocker(s->migration_blocker); 1039 } 1040 out: 1041 put_fid(pdu, fidp); 1042 out_nofid: 1043 pdu_complete(pdu, err); 1044 v9fs_string_free(&uname); 1045 v9fs_string_free(&aname); 1046 } 1047 1048 static void v9fs_stat(void *opaque) 1049 { 1050 int32_t fid; 1051 V9fsStat v9stat; 1052 ssize_t err = 0; 1053 size_t offset = 7; 1054 struct stat stbuf; 1055 V9fsFidState *fidp; 1056 V9fsPDU *pdu = opaque; 1057 1058 err = pdu_unmarshal(pdu, offset, "d", &fid); 1059 if (err < 0) { 1060 goto out_nofid; 1061 } 1062 trace_v9fs_stat(pdu->tag, pdu->id, fid); 1063 1064 fidp = get_fid(pdu, fid); 1065 if (fidp == NULL) { 1066 err = -ENOENT; 1067 goto out_nofid; 1068 } 1069 err = v9fs_co_lstat(pdu, &fidp->path, &stbuf); 1070 if (err < 0) { 1071 goto out; 1072 } 1073 err = stat_to_v9stat(pdu, &fidp->path, &stbuf, &v9stat); 1074 if (err < 0) { 1075 goto out; 1076 } 1077 err = pdu_marshal(pdu, offset, "wS", 0, &v9stat); 1078 if (err < 0) { 1079 v9fs_stat_free(&v9stat); 1080 goto out; 1081 } 1082 trace_v9fs_stat_return(pdu->tag, pdu->id, v9stat.mode, 1083 v9stat.atime, v9stat.mtime, v9stat.length); 1084 err += offset; 1085 v9fs_stat_free(&v9stat); 1086 out: 1087 put_fid(pdu, fidp); 1088 out_nofid: 1089 pdu_complete(pdu, err); 1090 } 1091 1092 static void v9fs_getattr(void *opaque) 1093 { 1094 int32_t fid; 1095 size_t offset = 7; 1096 ssize_t retval = 0; 1097 struct stat stbuf; 1098 V9fsFidState *fidp; 1099 uint64_t request_mask; 1100 V9fsStatDotl v9stat_dotl; 1101 V9fsPDU *pdu = opaque; 1102 V9fsState *s = pdu->s; 1103 1104 retval = pdu_unmarshal(pdu, offset, "dq", &fid, &request_mask); 1105 if (retval < 0) { 1106 goto out_nofid; 1107 } 1108 trace_v9fs_getattr(pdu->tag, pdu->id, fid, request_mask); 1109 1110 fidp = get_fid(pdu, fid); 1111 if (fidp == NULL) { 1112 retval = -ENOENT; 1113 goto out_nofid; 1114 } 1115 /* 1116 * Currently we only support BASIC fields in stat, so there is no 1117 * need to look at request_mask. 1118 */ 1119 retval = v9fs_co_lstat(pdu, &fidp->path, &stbuf); 1120 if (retval < 0) { 1121 goto out; 1122 } 1123 stat_to_v9stat_dotl(s, &stbuf, &v9stat_dotl); 1124 1125 /* fill st_gen if requested and supported by underlying fs */ 1126 if (request_mask & P9_STATS_GEN) { 1127 retval = v9fs_co_st_gen(pdu, &fidp->path, stbuf.st_mode, &v9stat_dotl); 1128 switch (retval) { 1129 case 0: 1130 /* we have valid st_gen: update result mask */ 1131 v9stat_dotl.st_result_mask |= P9_STATS_GEN; 1132 break; 1133 case -EINTR: 1134 /* request cancelled, e.g. by Tflush */ 1135 goto out; 1136 default: 1137 /* failed to get st_gen: not fatal, ignore */ 1138 break; 1139 } 1140 } 1141 retval = pdu_marshal(pdu, offset, "A", &v9stat_dotl); 1142 if (retval < 0) { 1143 goto out; 1144 } 1145 retval += offset; 1146 trace_v9fs_getattr_return(pdu->tag, pdu->id, v9stat_dotl.st_result_mask, 1147 v9stat_dotl.st_mode, v9stat_dotl.st_uid, 1148 v9stat_dotl.st_gid); 1149 out: 1150 put_fid(pdu, fidp); 1151 out_nofid: 1152 pdu_complete(pdu, retval); 1153 } 1154 1155 /* Attribute flags */ 1156 #define P9_ATTR_MODE (1 << 0) 1157 #define P9_ATTR_UID (1 << 1) 1158 #define P9_ATTR_GID (1 << 2) 1159 #define P9_ATTR_SIZE (1 << 3) 1160 #define P9_ATTR_ATIME (1 << 4) 1161 #define P9_ATTR_MTIME (1 << 5) 1162 #define P9_ATTR_CTIME (1 << 6) 1163 #define P9_ATTR_ATIME_SET (1 << 7) 1164 #define P9_ATTR_MTIME_SET (1 << 8) 1165 1166 #define P9_ATTR_MASK 127 1167 1168 static void v9fs_setattr(void *opaque) 1169 { 1170 int err = 0; 1171 int32_t fid; 1172 V9fsFidState *fidp; 1173 size_t offset = 7; 1174 V9fsIattr v9iattr; 1175 V9fsPDU *pdu = opaque; 1176 1177 err = pdu_unmarshal(pdu, offset, "dI", &fid, &v9iattr); 1178 if (err < 0) { 1179 goto out_nofid; 1180 } 1181 1182 fidp = get_fid(pdu, fid); 1183 if (fidp == NULL) { 1184 err = -EINVAL; 1185 goto out_nofid; 1186 } 1187 if (v9iattr.valid & P9_ATTR_MODE) { 1188 err = v9fs_co_chmod(pdu, &fidp->path, v9iattr.mode); 1189 if (err < 0) { 1190 goto out; 1191 } 1192 } 1193 if (v9iattr.valid & (P9_ATTR_ATIME | P9_ATTR_MTIME)) { 1194 struct timespec times[2]; 1195 if (v9iattr.valid & P9_ATTR_ATIME) { 1196 if (v9iattr.valid & P9_ATTR_ATIME_SET) { 1197 times[0].tv_sec = v9iattr.atime_sec; 1198 times[0].tv_nsec = v9iattr.atime_nsec; 1199 } else { 1200 times[0].tv_nsec = UTIME_NOW; 1201 } 1202 } else { 1203 times[0].tv_nsec = UTIME_OMIT; 1204 } 1205 if (v9iattr.valid & P9_ATTR_MTIME) { 1206 if (v9iattr.valid & P9_ATTR_MTIME_SET) { 1207 times[1].tv_sec = v9iattr.mtime_sec; 1208 times[1].tv_nsec = v9iattr.mtime_nsec; 1209 } else { 1210 times[1].tv_nsec = UTIME_NOW; 1211 } 1212 } else { 1213 times[1].tv_nsec = UTIME_OMIT; 1214 } 1215 err = v9fs_co_utimensat(pdu, &fidp->path, times); 1216 if (err < 0) { 1217 goto out; 1218 } 1219 } 1220 /* 1221 * If the only valid entry in iattr is ctime we can call 1222 * chown(-1,-1) to update the ctime of the file 1223 */ 1224 if ((v9iattr.valid & (P9_ATTR_UID | P9_ATTR_GID)) || 1225 ((v9iattr.valid & P9_ATTR_CTIME) 1226 && !((v9iattr.valid & P9_ATTR_MASK) & ~P9_ATTR_CTIME))) { 1227 if (!(v9iattr.valid & P9_ATTR_UID)) { 1228 v9iattr.uid = -1; 1229 } 1230 if (!(v9iattr.valid & P9_ATTR_GID)) { 1231 v9iattr.gid = -1; 1232 } 1233 err = v9fs_co_chown(pdu, &fidp->path, v9iattr.uid, 1234 v9iattr.gid); 1235 if (err < 0) { 1236 goto out; 1237 } 1238 } 1239 if (v9iattr.valid & (P9_ATTR_SIZE)) { 1240 err = v9fs_co_truncate(pdu, &fidp->path, v9iattr.size); 1241 if (err < 0) { 1242 goto out; 1243 } 1244 } 1245 err = offset; 1246 out: 1247 put_fid(pdu, fidp); 1248 out_nofid: 1249 pdu_complete(pdu, err); 1250 } 1251 1252 static int v9fs_walk_marshal(V9fsPDU *pdu, uint16_t nwnames, V9fsQID *qids) 1253 { 1254 int i; 1255 ssize_t err; 1256 size_t offset = 7; 1257 1258 err = pdu_marshal(pdu, offset, "w", nwnames); 1259 if (err < 0) { 1260 return err; 1261 } 1262 offset += err; 1263 for (i = 0; i < nwnames; i++) { 1264 err = pdu_marshal(pdu, offset, "Q", &qids[i]); 1265 if (err < 0) { 1266 return err; 1267 } 1268 offset += err; 1269 } 1270 return offset; 1271 } 1272 1273 static bool name_is_illegal(const char *name) 1274 { 1275 return !*name || strchr(name, '/') != NULL; 1276 } 1277 1278 static bool not_same_qid(const V9fsQID *qid1, const V9fsQID *qid2) 1279 { 1280 return 1281 qid1->type != qid2->type || 1282 qid1->version != qid2->version || 1283 qid1->path != qid2->path; 1284 } 1285 1286 static void v9fs_walk(void *opaque) 1287 { 1288 int name_idx; 1289 V9fsQID *qids = NULL; 1290 int i, err = 0; 1291 V9fsPath dpath, path; 1292 uint16_t nwnames; 1293 struct stat stbuf; 1294 size_t offset = 7; 1295 int32_t fid, newfid; 1296 V9fsString *wnames = NULL; 1297 V9fsFidState *fidp; 1298 V9fsFidState *newfidp = NULL; 1299 V9fsPDU *pdu = opaque; 1300 V9fsState *s = pdu->s; 1301 V9fsQID qid; 1302 1303 err = pdu_unmarshal(pdu, offset, "ddw", &fid, &newfid, &nwnames); 1304 if (err < 0) { 1305 pdu_complete(pdu, err); 1306 return ; 1307 } 1308 offset += err; 1309 1310 trace_v9fs_walk(pdu->tag, pdu->id, fid, newfid, nwnames); 1311 1312 if (nwnames && nwnames <= P9_MAXWELEM) { 1313 wnames = g_malloc0(sizeof(wnames[0]) * nwnames); 1314 qids = g_malloc0(sizeof(qids[0]) * nwnames); 1315 for (i = 0; i < nwnames; i++) { 1316 err = pdu_unmarshal(pdu, offset, "s", &wnames[i]); 1317 if (err < 0) { 1318 goto out_nofid; 1319 } 1320 if (name_is_illegal(wnames[i].data)) { 1321 err = -ENOENT; 1322 goto out_nofid; 1323 } 1324 offset += err; 1325 } 1326 } else if (nwnames > P9_MAXWELEM) { 1327 err = -EINVAL; 1328 goto out_nofid; 1329 } 1330 fidp = get_fid(pdu, fid); 1331 if (fidp == NULL) { 1332 err = -ENOENT; 1333 goto out_nofid; 1334 } 1335 1336 v9fs_path_init(&dpath); 1337 v9fs_path_init(&path); 1338 1339 err = fid_to_qid(pdu, fidp, &qid); 1340 if (err < 0) { 1341 goto out; 1342 } 1343 1344 /* 1345 * Both dpath and path initially poin to fidp. 1346 * Needed to handle request with nwnames == 0 1347 */ 1348 v9fs_path_copy(&dpath, &fidp->path); 1349 v9fs_path_copy(&path, &fidp->path); 1350 for (name_idx = 0; name_idx < nwnames; name_idx++) { 1351 if (not_same_qid(&pdu->s->root_qid, &qid) || 1352 strcmp("..", wnames[name_idx].data)) { 1353 err = v9fs_co_name_to_path(pdu, &dpath, wnames[name_idx].data, 1354 &path); 1355 if (err < 0) { 1356 goto out; 1357 } 1358 1359 err = v9fs_co_lstat(pdu, &path, &stbuf); 1360 if (err < 0) { 1361 goto out; 1362 } 1363 stat_to_qid(&stbuf, &qid); 1364 v9fs_path_copy(&dpath, &path); 1365 } 1366 memcpy(&qids[name_idx], &qid, sizeof(qid)); 1367 } 1368 if (fid == newfid) { 1369 BUG_ON(fidp->fid_type != P9_FID_NONE); 1370 v9fs_path_copy(&fidp->path, &path); 1371 } else { 1372 newfidp = alloc_fid(s, newfid); 1373 if (newfidp == NULL) { 1374 err = -EINVAL; 1375 goto out; 1376 } 1377 newfidp->uid = fidp->uid; 1378 v9fs_path_copy(&newfidp->path, &path); 1379 } 1380 err = v9fs_walk_marshal(pdu, nwnames, qids); 1381 trace_v9fs_walk_return(pdu->tag, pdu->id, nwnames, qids); 1382 out: 1383 put_fid(pdu, fidp); 1384 if (newfidp) { 1385 put_fid(pdu, newfidp); 1386 } 1387 v9fs_path_free(&dpath); 1388 v9fs_path_free(&path); 1389 out_nofid: 1390 pdu_complete(pdu, err); 1391 if (nwnames && nwnames <= P9_MAXWELEM) { 1392 for (name_idx = 0; name_idx < nwnames; name_idx++) { 1393 v9fs_string_free(&wnames[name_idx]); 1394 } 1395 g_free(wnames); 1396 g_free(qids); 1397 } 1398 } 1399 1400 static int32_t get_iounit(V9fsPDU *pdu, V9fsPath *path) 1401 { 1402 struct statfs stbuf; 1403 int32_t iounit = 0; 1404 V9fsState *s = pdu->s; 1405 1406 /* 1407 * iounit should be multiples of f_bsize (host filesystem block size 1408 * and as well as less than (client msize - P9_IOHDRSZ)) 1409 */ 1410 if (!v9fs_co_statfs(pdu, path, &stbuf)) { 1411 iounit = stbuf.f_bsize; 1412 iounit *= (s->msize - P9_IOHDRSZ)/stbuf.f_bsize; 1413 } 1414 if (!iounit) { 1415 iounit = s->msize - P9_IOHDRSZ; 1416 } 1417 return iounit; 1418 } 1419 1420 static void v9fs_open(void *opaque) 1421 { 1422 int flags; 1423 int32_t fid; 1424 int32_t mode; 1425 V9fsQID qid; 1426 int iounit = 0; 1427 ssize_t err = 0; 1428 size_t offset = 7; 1429 struct stat stbuf; 1430 V9fsFidState *fidp; 1431 V9fsPDU *pdu = opaque; 1432 V9fsState *s = pdu->s; 1433 1434 if (s->proto_version == V9FS_PROTO_2000L) { 1435 err = pdu_unmarshal(pdu, offset, "dd", &fid, &mode); 1436 } else { 1437 uint8_t modebyte; 1438 err = pdu_unmarshal(pdu, offset, "db", &fid, &modebyte); 1439 mode = modebyte; 1440 } 1441 if (err < 0) { 1442 goto out_nofid; 1443 } 1444 trace_v9fs_open(pdu->tag, pdu->id, fid, mode); 1445 1446 fidp = get_fid(pdu, fid); 1447 if (fidp == NULL) { 1448 err = -ENOENT; 1449 goto out_nofid; 1450 } 1451 BUG_ON(fidp->fid_type != P9_FID_NONE); 1452 1453 err = v9fs_co_lstat(pdu, &fidp->path, &stbuf); 1454 if (err < 0) { 1455 goto out; 1456 } 1457 stat_to_qid(&stbuf, &qid); 1458 if (S_ISDIR(stbuf.st_mode)) { 1459 err = v9fs_co_opendir(pdu, fidp); 1460 if (err < 0) { 1461 goto out; 1462 } 1463 fidp->fid_type = P9_FID_DIR; 1464 err = pdu_marshal(pdu, offset, "Qd", &qid, 0); 1465 if (err < 0) { 1466 goto out; 1467 } 1468 err += offset; 1469 } else { 1470 if (s->proto_version == V9FS_PROTO_2000L) { 1471 flags = get_dotl_openflags(s, mode); 1472 } else { 1473 flags = omode_to_uflags(mode); 1474 } 1475 if (is_ro_export(&s->ctx)) { 1476 if (mode & O_WRONLY || mode & O_RDWR || 1477 mode & O_APPEND || mode & O_TRUNC) { 1478 err = -EROFS; 1479 goto out; 1480 } 1481 } 1482 err = v9fs_co_open(pdu, fidp, flags); 1483 if (err < 0) { 1484 goto out; 1485 } 1486 fidp->fid_type = P9_FID_FILE; 1487 fidp->open_flags = flags; 1488 if (flags & O_EXCL) { 1489 /* 1490 * We let the host file system do O_EXCL check 1491 * We should not reclaim such fd 1492 */ 1493 fidp->flags |= FID_NON_RECLAIMABLE; 1494 } 1495 iounit = get_iounit(pdu, &fidp->path); 1496 err = pdu_marshal(pdu, offset, "Qd", &qid, iounit); 1497 if (err < 0) { 1498 goto out; 1499 } 1500 err += offset; 1501 } 1502 trace_v9fs_open_return(pdu->tag, pdu->id, 1503 qid.type, qid.version, qid.path, iounit); 1504 out: 1505 put_fid(pdu, fidp); 1506 out_nofid: 1507 pdu_complete(pdu, err); 1508 } 1509 1510 static void v9fs_lcreate(void *opaque) 1511 { 1512 int32_t dfid, flags, mode; 1513 gid_t gid; 1514 ssize_t err = 0; 1515 ssize_t offset = 7; 1516 V9fsString name; 1517 V9fsFidState *fidp; 1518 struct stat stbuf; 1519 V9fsQID qid; 1520 int32_t iounit; 1521 V9fsPDU *pdu = opaque; 1522 1523 v9fs_string_init(&name); 1524 err = pdu_unmarshal(pdu, offset, "dsddd", &dfid, 1525 &name, &flags, &mode, &gid); 1526 if (err < 0) { 1527 goto out_nofid; 1528 } 1529 trace_v9fs_lcreate(pdu->tag, pdu->id, dfid, flags, mode, gid); 1530 1531 if (name_is_illegal(name.data)) { 1532 err = -ENOENT; 1533 goto out_nofid; 1534 } 1535 1536 if (!strcmp(".", name.data) || !strcmp("..", name.data)) { 1537 err = -EEXIST; 1538 goto out_nofid; 1539 } 1540 1541 fidp = get_fid(pdu, dfid); 1542 if (fidp == NULL) { 1543 err = -ENOENT; 1544 goto out_nofid; 1545 } 1546 1547 flags = get_dotl_openflags(pdu->s, flags); 1548 err = v9fs_co_open2(pdu, fidp, &name, gid, 1549 flags | O_CREAT, mode, &stbuf); 1550 if (err < 0) { 1551 goto out; 1552 } 1553 fidp->fid_type = P9_FID_FILE; 1554 fidp->open_flags = flags; 1555 if (flags & O_EXCL) { 1556 /* 1557 * We let the host file system do O_EXCL check 1558 * We should not reclaim such fd 1559 */ 1560 fidp->flags |= FID_NON_RECLAIMABLE; 1561 } 1562 iounit = get_iounit(pdu, &fidp->path); 1563 stat_to_qid(&stbuf, &qid); 1564 err = pdu_marshal(pdu, offset, "Qd", &qid, iounit); 1565 if (err < 0) { 1566 goto out; 1567 } 1568 err += offset; 1569 trace_v9fs_lcreate_return(pdu->tag, pdu->id, 1570 qid.type, qid.version, qid.path, iounit); 1571 out: 1572 put_fid(pdu, fidp); 1573 out_nofid: 1574 pdu_complete(pdu, err); 1575 v9fs_string_free(&name); 1576 } 1577 1578 static void v9fs_fsync(void *opaque) 1579 { 1580 int err; 1581 int32_t fid; 1582 int datasync; 1583 size_t offset = 7; 1584 V9fsFidState *fidp; 1585 V9fsPDU *pdu = opaque; 1586 1587 err = pdu_unmarshal(pdu, offset, "dd", &fid, &datasync); 1588 if (err < 0) { 1589 goto out_nofid; 1590 } 1591 trace_v9fs_fsync(pdu->tag, pdu->id, fid, datasync); 1592 1593 fidp = get_fid(pdu, fid); 1594 if (fidp == NULL) { 1595 err = -ENOENT; 1596 goto out_nofid; 1597 } 1598 err = v9fs_co_fsync(pdu, fidp, datasync); 1599 if (!err) { 1600 err = offset; 1601 } 1602 put_fid(pdu, fidp); 1603 out_nofid: 1604 pdu_complete(pdu, err); 1605 } 1606 1607 static void v9fs_clunk(void *opaque) 1608 { 1609 int err; 1610 int32_t fid; 1611 size_t offset = 7; 1612 V9fsFidState *fidp; 1613 V9fsPDU *pdu = opaque; 1614 V9fsState *s = pdu->s; 1615 1616 err = pdu_unmarshal(pdu, offset, "d", &fid); 1617 if (err < 0) { 1618 goto out_nofid; 1619 } 1620 trace_v9fs_clunk(pdu->tag, pdu->id, fid); 1621 1622 fidp = clunk_fid(s, fid); 1623 if (fidp == NULL) { 1624 err = -ENOENT; 1625 goto out_nofid; 1626 } 1627 /* 1628 * Bump the ref so that put_fid will 1629 * free the fid. 1630 */ 1631 fidp->ref++; 1632 err = put_fid(pdu, fidp); 1633 if (!err) { 1634 err = offset; 1635 } 1636 out_nofid: 1637 pdu_complete(pdu, err); 1638 } 1639 1640 static int v9fs_xattr_read(V9fsState *s, V9fsPDU *pdu, V9fsFidState *fidp, 1641 uint64_t off, uint32_t max_count) 1642 { 1643 ssize_t err; 1644 size_t offset = 7; 1645 int read_count; 1646 int64_t xattr_len; 1647 V9fsVirtioState *v = container_of(s, V9fsVirtioState, state); 1648 VirtQueueElement *elem = v->elems[pdu->idx]; 1649 1650 xattr_len = fidp->fs.xattr.len; 1651 read_count = xattr_len - off; 1652 if (read_count > max_count) { 1653 read_count = max_count; 1654 } else if (read_count < 0) { 1655 /* 1656 * read beyond XATTR value 1657 */ 1658 read_count = 0; 1659 } 1660 err = pdu_marshal(pdu, offset, "d", read_count); 1661 if (err < 0) { 1662 return err; 1663 } 1664 offset += err; 1665 1666 err = v9fs_pack(elem->in_sg, elem->in_num, offset, 1667 ((char *)fidp->fs.xattr.value) + off, 1668 read_count); 1669 if (err < 0) { 1670 return err; 1671 } 1672 offset += err; 1673 return offset; 1674 } 1675 1676 static int v9fs_do_readdir_with_stat(V9fsPDU *pdu, 1677 V9fsFidState *fidp, uint32_t max_count) 1678 { 1679 V9fsPath path; 1680 V9fsStat v9stat; 1681 int len, err = 0; 1682 int32_t count = 0; 1683 struct stat stbuf; 1684 off_t saved_dir_pos; 1685 struct dirent *dent; 1686 1687 /* save the directory position */ 1688 saved_dir_pos = v9fs_co_telldir(pdu, fidp); 1689 if (saved_dir_pos < 0) { 1690 return saved_dir_pos; 1691 } 1692 1693 while (1) { 1694 v9fs_path_init(&path); 1695 1696 v9fs_readdir_lock(&fidp->fs.dir); 1697 1698 err = v9fs_co_readdir(pdu, fidp, &dent); 1699 if (err || !dent) { 1700 break; 1701 } 1702 err = v9fs_co_name_to_path(pdu, &fidp->path, dent->d_name, &path); 1703 if (err < 0) { 1704 break; 1705 } 1706 err = v9fs_co_lstat(pdu, &path, &stbuf); 1707 if (err < 0) { 1708 break; 1709 } 1710 err = stat_to_v9stat(pdu, &path, &stbuf, &v9stat); 1711 if (err < 0) { 1712 break; 1713 } 1714 /* 11 = 7 + 4 (7 = start offset, 4 = space for storing count) */ 1715 len = pdu_marshal(pdu, 11 + count, "S", &v9stat); 1716 1717 v9fs_readdir_unlock(&fidp->fs.dir); 1718 1719 if ((len != (v9stat.size + 2)) || ((count + len) > max_count)) { 1720 /* Ran out of buffer. Set dir back to old position and return */ 1721 v9fs_co_seekdir(pdu, fidp, saved_dir_pos); 1722 v9fs_stat_free(&v9stat); 1723 v9fs_path_free(&path); 1724 return count; 1725 } 1726 count += len; 1727 v9fs_stat_free(&v9stat); 1728 v9fs_path_free(&path); 1729 saved_dir_pos = dent->d_off; 1730 } 1731 1732 v9fs_readdir_unlock(&fidp->fs.dir); 1733 1734 v9fs_path_free(&path); 1735 if (err < 0) { 1736 return err; 1737 } 1738 return count; 1739 } 1740 1741 /* 1742 * Create a QEMUIOVector for a sub-region of PDU iovecs 1743 * 1744 * @qiov: uninitialized QEMUIOVector 1745 * @skip: number of bytes to skip from beginning of PDU 1746 * @size: number of bytes to include 1747 * @is_write: true - write, false - read 1748 * 1749 * The resulting QEMUIOVector has heap-allocated iovecs and must be cleaned up 1750 * with qemu_iovec_destroy(). 1751 */ 1752 static void v9fs_init_qiov_from_pdu(QEMUIOVector *qiov, V9fsPDU *pdu, 1753 size_t skip, size_t size, 1754 bool is_write) 1755 { 1756 QEMUIOVector elem; 1757 struct iovec *iov; 1758 unsigned int niov; 1759 1760 virtio_init_iov_from_pdu(pdu, &iov, &niov, is_write); 1761 1762 qemu_iovec_init_external(&elem, iov, niov); 1763 qemu_iovec_init(qiov, niov); 1764 qemu_iovec_concat(qiov, &elem, skip, size); 1765 } 1766 1767 static void v9fs_read(void *opaque) 1768 { 1769 int32_t fid; 1770 uint64_t off; 1771 ssize_t err = 0; 1772 int32_t count = 0; 1773 size_t offset = 7; 1774 uint32_t max_count; 1775 V9fsFidState *fidp; 1776 V9fsPDU *pdu = opaque; 1777 V9fsState *s = pdu->s; 1778 1779 err = pdu_unmarshal(pdu, offset, "dqd", &fid, &off, &max_count); 1780 if (err < 0) { 1781 goto out_nofid; 1782 } 1783 trace_v9fs_read(pdu->tag, pdu->id, fid, off, max_count); 1784 1785 fidp = get_fid(pdu, fid); 1786 if (fidp == NULL) { 1787 err = -EINVAL; 1788 goto out_nofid; 1789 } 1790 if (fidp->fid_type == P9_FID_DIR) { 1791 1792 if (off == 0) { 1793 v9fs_co_rewinddir(pdu, fidp); 1794 } 1795 count = v9fs_do_readdir_with_stat(pdu, fidp, max_count); 1796 if (count < 0) { 1797 err = count; 1798 goto out; 1799 } 1800 err = pdu_marshal(pdu, offset, "d", count); 1801 if (err < 0) { 1802 goto out; 1803 } 1804 err += offset + count; 1805 } else if (fidp->fid_type == P9_FID_FILE) { 1806 QEMUIOVector qiov_full; 1807 QEMUIOVector qiov; 1808 int32_t len; 1809 1810 v9fs_init_qiov_from_pdu(&qiov_full, pdu, offset + 4, max_count, false); 1811 qemu_iovec_init(&qiov, qiov_full.niov); 1812 do { 1813 qemu_iovec_reset(&qiov); 1814 qemu_iovec_concat(&qiov, &qiov_full, count, qiov_full.size - count); 1815 if (0) { 1816 print_sg(qiov.iov, qiov.niov); 1817 } 1818 /* Loop in case of EINTR */ 1819 do { 1820 len = v9fs_co_preadv(pdu, fidp, qiov.iov, qiov.niov, off); 1821 if (len >= 0) { 1822 off += len; 1823 count += len; 1824 } 1825 } while (len == -EINTR && !pdu->cancelled); 1826 if (len < 0) { 1827 /* IO error return the error */ 1828 err = len; 1829 goto out; 1830 } 1831 } while (count < max_count && len > 0); 1832 err = pdu_marshal(pdu, offset, "d", count); 1833 if (err < 0) { 1834 goto out; 1835 } 1836 err += offset + count; 1837 qemu_iovec_destroy(&qiov); 1838 qemu_iovec_destroy(&qiov_full); 1839 } else if (fidp->fid_type == P9_FID_XATTR) { 1840 err = v9fs_xattr_read(s, pdu, fidp, off, max_count); 1841 } else { 1842 err = -EINVAL; 1843 } 1844 trace_v9fs_read_return(pdu->tag, pdu->id, count, err); 1845 out: 1846 put_fid(pdu, fidp); 1847 out_nofid: 1848 pdu_complete(pdu, err); 1849 } 1850 1851 static size_t v9fs_readdir_data_size(V9fsString *name) 1852 { 1853 /* 1854 * Size of each dirent on the wire: size of qid (13) + size of offset (8) 1855 * size of type (1) + size of name.size (2) + strlen(name.data) 1856 */ 1857 return 24 + v9fs_string_size(name); 1858 } 1859 1860 static int v9fs_do_readdir(V9fsPDU *pdu, 1861 V9fsFidState *fidp, int32_t max_count) 1862 { 1863 size_t size; 1864 V9fsQID qid; 1865 V9fsString name; 1866 int len, err = 0; 1867 int32_t count = 0; 1868 off_t saved_dir_pos; 1869 struct dirent *dent; 1870 1871 /* save the directory position */ 1872 saved_dir_pos = v9fs_co_telldir(pdu, fidp); 1873 if (saved_dir_pos < 0) { 1874 return saved_dir_pos; 1875 } 1876 1877 while (1) { 1878 v9fs_readdir_lock(&fidp->fs.dir); 1879 1880 err = v9fs_co_readdir(pdu, fidp, &dent); 1881 if (err || !dent) { 1882 break; 1883 } 1884 v9fs_string_init(&name); 1885 v9fs_string_sprintf(&name, "%s", dent->d_name); 1886 if ((count + v9fs_readdir_data_size(&name)) > max_count) { 1887 v9fs_readdir_unlock(&fidp->fs.dir); 1888 1889 /* Ran out of buffer. Set dir back to old position and return */ 1890 v9fs_co_seekdir(pdu, fidp, saved_dir_pos); 1891 v9fs_string_free(&name); 1892 return count; 1893 } 1894 /* 1895 * Fill up just the path field of qid because the client uses 1896 * only that. To fill the entire qid structure we will have 1897 * to stat each dirent found, which is expensive 1898 */ 1899 size = MIN(sizeof(dent->d_ino), sizeof(qid.path)); 1900 memcpy(&qid.path, &dent->d_ino, size); 1901 /* Fill the other fields with dummy values */ 1902 qid.type = 0; 1903 qid.version = 0; 1904 1905 /* 11 = 7 + 4 (7 = start offset, 4 = space for storing count) */ 1906 len = pdu_marshal(pdu, 11 + count, "Qqbs", 1907 &qid, dent->d_off, 1908 dent->d_type, &name); 1909 1910 v9fs_readdir_unlock(&fidp->fs.dir); 1911 1912 if (len < 0) { 1913 v9fs_co_seekdir(pdu, fidp, saved_dir_pos); 1914 v9fs_string_free(&name); 1915 return len; 1916 } 1917 count += len; 1918 v9fs_string_free(&name); 1919 saved_dir_pos = dent->d_off; 1920 } 1921 1922 v9fs_readdir_unlock(&fidp->fs.dir); 1923 1924 if (err < 0) { 1925 return err; 1926 } 1927 return count; 1928 } 1929 1930 static void v9fs_readdir(void *opaque) 1931 { 1932 int32_t fid; 1933 V9fsFidState *fidp; 1934 ssize_t retval = 0; 1935 size_t offset = 7; 1936 uint64_t initial_offset; 1937 int32_t count; 1938 uint32_t max_count; 1939 V9fsPDU *pdu = opaque; 1940 1941 retval = pdu_unmarshal(pdu, offset, "dqd", &fid, 1942 &initial_offset, &max_count); 1943 if (retval < 0) { 1944 goto out_nofid; 1945 } 1946 trace_v9fs_readdir(pdu->tag, pdu->id, fid, initial_offset, max_count); 1947 1948 fidp = get_fid(pdu, fid); 1949 if (fidp == NULL) { 1950 retval = -EINVAL; 1951 goto out_nofid; 1952 } 1953 if (!fidp->fs.dir.stream) { 1954 retval = -EINVAL; 1955 goto out; 1956 } 1957 if (initial_offset == 0) { 1958 v9fs_co_rewinddir(pdu, fidp); 1959 } else { 1960 v9fs_co_seekdir(pdu, fidp, initial_offset); 1961 } 1962 count = v9fs_do_readdir(pdu, fidp, max_count); 1963 if (count < 0) { 1964 retval = count; 1965 goto out; 1966 } 1967 retval = pdu_marshal(pdu, offset, "d", count); 1968 if (retval < 0) { 1969 goto out; 1970 } 1971 retval += count + offset; 1972 trace_v9fs_readdir_return(pdu->tag, pdu->id, count, retval); 1973 out: 1974 put_fid(pdu, fidp); 1975 out_nofid: 1976 pdu_complete(pdu, retval); 1977 } 1978 1979 static int v9fs_xattr_write(V9fsState *s, V9fsPDU *pdu, V9fsFidState *fidp, 1980 uint64_t off, uint32_t count, 1981 struct iovec *sg, int cnt) 1982 { 1983 int i, to_copy; 1984 ssize_t err = 0; 1985 int write_count; 1986 int64_t xattr_len; 1987 size_t offset = 7; 1988 1989 1990 xattr_len = fidp->fs.xattr.len; 1991 write_count = xattr_len - off; 1992 if (write_count > count) { 1993 write_count = count; 1994 } else if (write_count < 0) { 1995 /* 1996 * write beyond XATTR value len specified in 1997 * xattrcreate 1998 */ 1999 err = -ENOSPC; 2000 goto out; 2001 } 2002 err = pdu_marshal(pdu, offset, "d", write_count); 2003 if (err < 0) { 2004 return err; 2005 } 2006 err += offset; 2007 fidp->fs.xattr.copied_len += write_count; 2008 /* 2009 * Now copy the content from sg list 2010 */ 2011 for (i = 0; i < cnt; i++) { 2012 if (write_count > sg[i].iov_len) { 2013 to_copy = sg[i].iov_len; 2014 } else { 2015 to_copy = write_count; 2016 } 2017 memcpy((char *)fidp->fs.xattr.value + off, sg[i].iov_base, to_copy); 2018 /* updating vs->off since we are not using below */ 2019 off += to_copy; 2020 write_count -= to_copy; 2021 } 2022 out: 2023 return err; 2024 } 2025 2026 static void v9fs_write(void *opaque) 2027 { 2028 ssize_t err; 2029 int32_t fid; 2030 uint64_t off; 2031 uint32_t count; 2032 int32_t len = 0; 2033 int32_t total = 0; 2034 size_t offset = 7; 2035 V9fsFidState *fidp; 2036 V9fsPDU *pdu = opaque; 2037 V9fsState *s = pdu->s; 2038 QEMUIOVector qiov_full; 2039 QEMUIOVector qiov; 2040 2041 err = pdu_unmarshal(pdu, offset, "dqd", &fid, &off, &count); 2042 if (err < 0) { 2043 pdu_complete(pdu, err); 2044 return; 2045 } 2046 offset += err; 2047 v9fs_init_qiov_from_pdu(&qiov_full, pdu, offset, count, true); 2048 trace_v9fs_write(pdu->tag, pdu->id, fid, off, count, qiov_full.niov); 2049 2050 fidp = get_fid(pdu, fid); 2051 if (fidp == NULL) { 2052 err = -EINVAL; 2053 goto out_nofid; 2054 } 2055 if (fidp->fid_type == P9_FID_FILE) { 2056 if (fidp->fs.fd == -1) { 2057 err = -EINVAL; 2058 goto out; 2059 } 2060 } else if (fidp->fid_type == P9_FID_XATTR) { 2061 /* 2062 * setxattr operation 2063 */ 2064 err = v9fs_xattr_write(s, pdu, fidp, off, count, 2065 qiov_full.iov, qiov_full.niov); 2066 goto out; 2067 } else { 2068 err = -EINVAL; 2069 goto out; 2070 } 2071 qemu_iovec_init(&qiov, qiov_full.niov); 2072 do { 2073 qemu_iovec_reset(&qiov); 2074 qemu_iovec_concat(&qiov, &qiov_full, total, qiov_full.size - total); 2075 if (0) { 2076 print_sg(qiov.iov, qiov.niov); 2077 } 2078 /* Loop in case of EINTR */ 2079 do { 2080 len = v9fs_co_pwritev(pdu, fidp, qiov.iov, qiov.niov, off); 2081 if (len >= 0) { 2082 off += len; 2083 total += len; 2084 } 2085 } while (len == -EINTR && !pdu->cancelled); 2086 if (len < 0) { 2087 /* IO error return the error */ 2088 err = len; 2089 goto out_qiov; 2090 } 2091 } while (total < count && len > 0); 2092 2093 offset = 7; 2094 err = pdu_marshal(pdu, offset, "d", total); 2095 if (err < 0) { 2096 goto out; 2097 } 2098 err += offset; 2099 trace_v9fs_write_return(pdu->tag, pdu->id, total, err); 2100 out_qiov: 2101 qemu_iovec_destroy(&qiov); 2102 out: 2103 put_fid(pdu, fidp); 2104 out_nofid: 2105 qemu_iovec_destroy(&qiov_full); 2106 pdu_complete(pdu, err); 2107 } 2108 2109 static void v9fs_create(void *opaque) 2110 { 2111 int32_t fid; 2112 int err = 0; 2113 size_t offset = 7; 2114 V9fsFidState *fidp; 2115 V9fsQID qid; 2116 int32_t perm; 2117 int8_t mode; 2118 V9fsPath path; 2119 struct stat stbuf; 2120 V9fsString name; 2121 V9fsString extension; 2122 int iounit; 2123 V9fsPDU *pdu = opaque; 2124 2125 v9fs_path_init(&path); 2126 v9fs_string_init(&name); 2127 v9fs_string_init(&extension); 2128 err = pdu_unmarshal(pdu, offset, "dsdbs", &fid, &name, 2129 &perm, &mode, &extension); 2130 if (err < 0) { 2131 goto out_nofid; 2132 } 2133 trace_v9fs_create(pdu->tag, pdu->id, fid, name.data, perm, mode); 2134 2135 if (name_is_illegal(name.data)) { 2136 err = -ENOENT; 2137 goto out_nofid; 2138 } 2139 2140 if (!strcmp(".", name.data) || !strcmp("..", name.data)) { 2141 err = -EEXIST; 2142 goto out_nofid; 2143 } 2144 2145 fidp = get_fid(pdu, fid); 2146 if (fidp == NULL) { 2147 err = -EINVAL; 2148 goto out_nofid; 2149 } 2150 if (perm & P9_STAT_MODE_DIR) { 2151 err = v9fs_co_mkdir(pdu, fidp, &name, perm & 0777, 2152 fidp->uid, -1, &stbuf); 2153 if (err < 0) { 2154 goto out; 2155 } 2156 err = v9fs_co_name_to_path(pdu, &fidp->path, name.data, &path); 2157 if (err < 0) { 2158 goto out; 2159 } 2160 v9fs_path_copy(&fidp->path, &path); 2161 err = v9fs_co_opendir(pdu, fidp); 2162 if (err < 0) { 2163 goto out; 2164 } 2165 fidp->fid_type = P9_FID_DIR; 2166 } else if (perm & P9_STAT_MODE_SYMLINK) { 2167 err = v9fs_co_symlink(pdu, fidp, &name, 2168 extension.data, -1 , &stbuf); 2169 if (err < 0) { 2170 goto out; 2171 } 2172 err = v9fs_co_name_to_path(pdu, &fidp->path, name.data, &path); 2173 if (err < 0) { 2174 goto out; 2175 } 2176 v9fs_path_copy(&fidp->path, &path); 2177 } else if (perm & P9_STAT_MODE_LINK) { 2178 int32_t ofid = atoi(extension.data); 2179 V9fsFidState *ofidp = get_fid(pdu, ofid); 2180 if (ofidp == NULL) { 2181 err = -EINVAL; 2182 goto out; 2183 } 2184 err = v9fs_co_link(pdu, ofidp, fidp, &name); 2185 put_fid(pdu, ofidp); 2186 if (err < 0) { 2187 goto out; 2188 } 2189 err = v9fs_co_name_to_path(pdu, &fidp->path, name.data, &path); 2190 if (err < 0) { 2191 fidp->fid_type = P9_FID_NONE; 2192 goto out; 2193 } 2194 v9fs_path_copy(&fidp->path, &path); 2195 err = v9fs_co_lstat(pdu, &fidp->path, &stbuf); 2196 if (err < 0) { 2197 fidp->fid_type = P9_FID_NONE; 2198 goto out; 2199 } 2200 } else if (perm & P9_STAT_MODE_DEVICE) { 2201 char ctype; 2202 uint32_t major, minor; 2203 mode_t nmode = 0; 2204 2205 if (sscanf(extension.data, "%c %u %u", &ctype, &major, &minor) != 3) { 2206 err = -errno; 2207 goto out; 2208 } 2209 2210 switch (ctype) { 2211 case 'c': 2212 nmode = S_IFCHR; 2213 break; 2214 case 'b': 2215 nmode = S_IFBLK; 2216 break; 2217 default: 2218 err = -EIO; 2219 goto out; 2220 } 2221 2222 nmode |= perm & 0777; 2223 err = v9fs_co_mknod(pdu, fidp, &name, fidp->uid, -1, 2224 makedev(major, minor), nmode, &stbuf); 2225 if (err < 0) { 2226 goto out; 2227 } 2228 err = v9fs_co_name_to_path(pdu, &fidp->path, name.data, &path); 2229 if (err < 0) { 2230 goto out; 2231 } 2232 v9fs_path_copy(&fidp->path, &path); 2233 } else if (perm & P9_STAT_MODE_NAMED_PIPE) { 2234 err = v9fs_co_mknod(pdu, fidp, &name, fidp->uid, -1, 2235 0, S_IFIFO | (perm & 0777), &stbuf); 2236 if (err < 0) { 2237 goto out; 2238 } 2239 err = v9fs_co_name_to_path(pdu, &fidp->path, name.data, &path); 2240 if (err < 0) { 2241 goto out; 2242 } 2243 v9fs_path_copy(&fidp->path, &path); 2244 } else if (perm & P9_STAT_MODE_SOCKET) { 2245 err = v9fs_co_mknod(pdu, fidp, &name, fidp->uid, -1, 2246 0, S_IFSOCK | (perm & 0777), &stbuf); 2247 if (err < 0) { 2248 goto out; 2249 } 2250 err = v9fs_co_name_to_path(pdu, &fidp->path, name.data, &path); 2251 if (err < 0) { 2252 goto out; 2253 } 2254 v9fs_path_copy(&fidp->path, &path); 2255 } else { 2256 err = v9fs_co_open2(pdu, fidp, &name, -1, 2257 omode_to_uflags(mode)|O_CREAT, perm, &stbuf); 2258 if (err < 0) { 2259 goto out; 2260 } 2261 fidp->fid_type = P9_FID_FILE; 2262 fidp->open_flags = omode_to_uflags(mode); 2263 if (fidp->open_flags & O_EXCL) { 2264 /* 2265 * We let the host file system do O_EXCL check 2266 * We should not reclaim such fd 2267 */ 2268 fidp->flags |= FID_NON_RECLAIMABLE; 2269 } 2270 } 2271 iounit = get_iounit(pdu, &fidp->path); 2272 stat_to_qid(&stbuf, &qid); 2273 err = pdu_marshal(pdu, offset, "Qd", &qid, iounit); 2274 if (err < 0) { 2275 goto out; 2276 } 2277 err += offset; 2278 trace_v9fs_create_return(pdu->tag, pdu->id, 2279 qid.type, qid.version, qid.path, iounit); 2280 out: 2281 put_fid(pdu, fidp); 2282 out_nofid: 2283 pdu_complete(pdu, err); 2284 v9fs_string_free(&name); 2285 v9fs_string_free(&extension); 2286 v9fs_path_free(&path); 2287 } 2288 2289 static void v9fs_symlink(void *opaque) 2290 { 2291 V9fsPDU *pdu = opaque; 2292 V9fsString name; 2293 V9fsString symname; 2294 V9fsFidState *dfidp; 2295 V9fsQID qid; 2296 struct stat stbuf; 2297 int32_t dfid; 2298 int err = 0; 2299 gid_t gid; 2300 size_t offset = 7; 2301 2302 v9fs_string_init(&name); 2303 v9fs_string_init(&symname); 2304 err = pdu_unmarshal(pdu, offset, "dssd", &dfid, &name, &symname, &gid); 2305 if (err < 0) { 2306 goto out_nofid; 2307 } 2308 trace_v9fs_symlink(pdu->tag, pdu->id, dfid, name.data, symname.data, gid); 2309 2310 if (name_is_illegal(name.data)) { 2311 err = -ENOENT; 2312 goto out_nofid; 2313 } 2314 2315 if (!strcmp(".", name.data) || !strcmp("..", name.data)) { 2316 err = -EEXIST; 2317 goto out_nofid; 2318 } 2319 2320 dfidp = get_fid(pdu, dfid); 2321 if (dfidp == NULL) { 2322 err = -EINVAL; 2323 goto out_nofid; 2324 } 2325 err = v9fs_co_symlink(pdu, dfidp, &name, symname.data, gid, &stbuf); 2326 if (err < 0) { 2327 goto out; 2328 } 2329 stat_to_qid(&stbuf, &qid); 2330 err = pdu_marshal(pdu, offset, "Q", &qid); 2331 if (err < 0) { 2332 goto out; 2333 } 2334 err += offset; 2335 trace_v9fs_symlink_return(pdu->tag, pdu->id, 2336 qid.type, qid.version, qid.path); 2337 out: 2338 put_fid(pdu, dfidp); 2339 out_nofid: 2340 pdu_complete(pdu, err); 2341 v9fs_string_free(&name); 2342 v9fs_string_free(&symname); 2343 } 2344 2345 static void v9fs_flush(void *opaque) 2346 { 2347 ssize_t err; 2348 int16_t tag; 2349 size_t offset = 7; 2350 V9fsPDU *cancel_pdu; 2351 V9fsPDU *pdu = opaque; 2352 V9fsState *s = pdu->s; 2353 2354 err = pdu_unmarshal(pdu, offset, "w", &tag); 2355 if (err < 0) { 2356 pdu_complete(pdu, err); 2357 return; 2358 } 2359 trace_v9fs_flush(pdu->tag, pdu->id, tag); 2360 2361 QLIST_FOREACH(cancel_pdu, &s->active_list, next) { 2362 if (cancel_pdu->tag == tag) { 2363 break; 2364 } 2365 } 2366 if (cancel_pdu) { 2367 cancel_pdu->cancelled = 1; 2368 /* 2369 * Wait for pdu to complete. 2370 */ 2371 qemu_co_queue_wait(&cancel_pdu->complete); 2372 cancel_pdu->cancelled = 0; 2373 pdu_free(cancel_pdu); 2374 } 2375 pdu_complete(pdu, 7); 2376 } 2377 2378 static void v9fs_link(void *opaque) 2379 { 2380 V9fsPDU *pdu = opaque; 2381 int32_t dfid, oldfid; 2382 V9fsFidState *dfidp, *oldfidp; 2383 V9fsString name; 2384 size_t offset = 7; 2385 int err = 0; 2386 2387 v9fs_string_init(&name); 2388 err = pdu_unmarshal(pdu, offset, "dds", &dfid, &oldfid, &name); 2389 if (err < 0) { 2390 goto out_nofid; 2391 } 2392 trace_v9fs_link(pdu->tag, pdu->id, dfid, oldfid, name.data); 2393 2394 if (name_is_illegal(name.data)) { 2395 err = -ENOENT; 2396 goto out_nofid; 2397 } 2398 2399 if (!strcmp(".", name.data) || !strcmp("..", name.data)) { 2400 err = -EEXIST; 2401 goto out_nofid; 2402 } 2403 2404 dfidp = get_fid(pdu, dfid); 2405 if (dfidp == NULL) { 2406 err = -ENOENT; 2407 goto out_nofid; 2408 } 2409 2410 oldfidp = get_fid(pdu, oldfid); 2411 if (oldfidp == NULL) { 2412 err = -ENOENT; 2413 goto out; 2414 } 2415 err = v9fs_co_link(pdu, oldfidp, dfidp, &name); 2416 if (!err) { 2417 err = offset; 2418 } 2419 out: 2420 put_fid(pdu, dfidp); 2421 out_nofid: 2422 v9fs_string_free(&name); 2423 pdu_complete(pdu, err); 2424 } 2425 2426 /* Only works with path name based fid */ 2427 static void v9fs_remove(void *opaque) 2428 { 2429 int32_t fid; 2430 int err = 0; 2431 size_t offset = 7; 2432 V9fsFidState *fidp; 2433 V9fsPDU *pdu = opaque; 2434 2435 err = pdu_unmarshal(pdu, offset, "d", &fid); 2436 if (err < 0) { 2437 goto out_nofid; 2438 } 2439 trace_v9fs_remove(pdu->tag, pdu->id, fid); 2440 2441 fidp = get_fid(pdu, fid); 2442 if (fidp == NULL) { 2443 err = -EINVAL; 2444 goto out_nofid; 2445 } 2446 /* if fs driver is not path based, return EOPNOTSUPP */ 2447 if (!(pdu->s->ctx.export_flags & V9FS_PATHNAME_FSCONTEXT)) { 2448 err = -EOPNOTSUPP; 2449 goto out_err; 2450 } 2451 /* 2452 * IF the file is unlinked, we cannot reopen 2453 * the file later. So don't reclaim fd 2454 */ 2455 err = v9fs_mark_fids_unreclaim(pdu, &fidp->path); 2456 if (err < 0) { 2457 goto out_err; 2458 } 2459 err = v9fs_co_remove(pdu, &fidp->path); 2460 if (!err) { 2461 err = offset; 2462 } 2463 out_err: 2464 /* For TREMOVE we need to clunk the fid even on failed remove */ 2465 clunk_fid(pdu->s, fidp->fid); 2466 put_fid(pdu, fidp); 2467 out_nofid: 2468 pdu_complete(pdu, err); 2469 } 2470 2471 static void v9fs_unlinkat(void *opaque) 2472 { 2473 int err = 0; 2474 V9fsString name; 2475 int32_t dfid, flags; 2476 size_t offset = 7; 2477 V9fsPath path; 2478 V9fsFidState *dfidp; 2479 V9fsPDU *pdu = opaque; 2480 2481 v9fs_string_init(&name); 2482 err = pdu_unmarshal(pdu, offset, "dsd", &dfid, &name, &flags); 2483 if (err < 0) { 2484 goto out_nofid; 2485 } 2486 2487 if (name_is_illegal(name.data)) { 2488 err = -ENOENT; 2489 goto out_nofid; 2490 } 2491 2492 if (!strcmp(".", name.data)) { 2493 err = -EINVAL; 2494 goto out_nofid; 2495 } 2496 2497 if (!strcmp("..", name.data)) { 2498 err = -ENOTEMPTY; 2499 goto out_nofid; 2500 } 2501 2502 dfidp = get_fid(pdu, dfid); 2503 if (dfidp == NULL) { 2504 err = -EINVAL; 2505 goto out_nofid; 2506 } 2507 /* 2508 * IF the file is unlinked, we cannot reopen 2509 * the file later. So don't reclaim fd 2510 */ 2511 v9fs_path_init(&path); 2512 err = v9fs_co_name_to_path(pdu, &dfidp->path, name.data, &path); 2513 if (err < 0) { 2514 goto out_err; 2515 } 2516 err = v9fs_mark_fids_unreclaim(pdu, &path); 2517 if (err < 0) { 2518 goto out_err; 2519 } 2520 err = v9fs_co_unlinkat(pdu, &dfidp->path, &name, flags); 2521 if (!err) { 2522 err = offset; 2523 } 2524 out_err: 2525 put_fid(pdu, dfidp); 2526 v9fs_path_free(&path); 2527 out_nofid: 2528 pdu_complete(pdu, err); 2529 v9fs_string_free(&name); 2530 } 2531 2532 2533 /* Only works with path name based fid */ 2534 static int v9fs_complete_rename(V9fsPDU *pdu, V9fsFidState *fidp, 2535 int32_t newdirfid, V9fsString *name) 2536 { 2537 char *end; 2538 int err = 0; 2539 V9fsPath new_path; 2540 V9fsFidState *tfidp; 2541 V9fsState *s = pdu->s; 2542 V9fsFidState *dirfidp = NULL; 2543 char *old_name, *new_name; 2544 2545 v9fs_path_init(&new_path); 2546 if (newdirfid != -1) { 2547 dirfidp = get_fid(pdu, newdirfid); 2548 if (dirfidp == NULL) { 2549 err = -ENOENT; 2550 goto out_nofid; 2551 } 2552 BUG_ON(dirfidp->fid_type != P9_FID_NONE); 2553 v9fs_co_name_to_path(pdu, &dirfidp->path, name->data, &new_path); 2554 } else { 2555 old_name = fidp->path.data; 2556 end = strrchr(old_name, '/'); 2557 if (end) { 2558 end++; 2559 } else { 2560 end = old_name; 2561 } 2562 new_name = g_malloc0(end - old_name + name->size + 1); 2563 strncat(new_name, old_name, end - old_name); 2564 strncat(new_name + (end - old_name), name->data, name->size); 2565 v9fs_co_name_to_path(pdu, NULL, new_name, &new_path); 2566 g_free(new_name); 2567 } 2568 err = v9fs_co_rename(pdu, &fidp->path, &new_path); 2569 if (err < 0) { 2570 goto out; 2571 } 2572 /* 2573 * Fixup fid's pointing to the old name to 2574 * start pointing to the new name 2575 */ 2576 for (tfidp = s->fid_list; tfidp; tfidp = tfidp->next) { 2577 if (v9fs_path_is_ancestor(&fidp->path, &tfidp->path)) { 2578 /* replace the name */ 2579 v9fs_fix_path(&tfidp->path, &new_path, strlen(fidp->path.data)); 2580 } 2581 } 2582 out: 2583 if (dirfidp) { 2584 put_fid(pdu, dirfidp); 2585 } 2586 v9fs_path_free(&new_path); 2587 out_nofid: 2588 return err; 2589 } 2590 2591 /* Only works with path name based fid */ 2592 static void v9fs_rename(void *opaque) 2593 { 2594 int32_t fid; 2595 ssize_t err = 0; 2596 size_t offset = 7; 2597 V9fsString name; 2598 int32_t newdirfid; 2599 V9fsFidState *fidp; 2600 V9fsPDU *pdu = opaque; 2601 V9fsState *s = pdu->s; 2602 2603 v9fs_string_init(&name); 2604 err = pdu_unmarshal(pdu, offset, "dds", &fid, &newdirfid, &name); 2605 if (err < 0) { 2606 goto out_nofid; 2607 } 2608 2609 if (name_is_illegal(name.data)) { 2610 err = -ENOENT; 2611 goto out_nofid; 2612 } 2613 2614 if (!strcmp(".", name.data) || !strcmp("..", name.data)) { 2615 err = -EISDIR; 2616 goto out_nofid; 2617 } 2618 2619 fidp = get_fid(pdu, fid); 2620 if (fidp == NULL) { 2621 err = -ENOENT; 2622 goto out_nofid; 2623 } 2624 BUG_ON(fidp->fid_type != P9_FID_NONE); 2625 /* if fs driver is not path based, return EOPNOTSUPP */ 2626 if (!(pdu->s->ctx.export_flags & V9FS_PATHNAME_FSCONTEXT)) { 2627 err = -EOPNOTSUPP; 2628 goto out; 2629 } 2630 v9fs_path_write_lock(s); 2631 err = v9fs_complete_rename(pdu, fidp, newdirfid, &name); 2632 v9fs_path_unlock(s); 2633 if (!err) { 2634 err = offset; 2635 } 2636 out: 2637 put_fid(pdu, fidp); 2638 out_nofid: 2639 pdu_complete(pdu, err); 2640 v9fs_string_free(&name); 2641 } 2642 2643 static void v9fs_fix_fid_paths(V9fsPDU *pdu, V9fsPath *olddir, 2644 V9fsString *old_name, V9fsPath *newdir, 2645 V9fsString *new_name) 2646 { 2647 V9fsFidState *tfidp; 2648 V9fsPath oldpath, newpath; 2649 V9fsState *s = pdu->s; 2650 2651 2652 v9fs_path_init(&oldpath); 2653 v9fs_path_init(&newpath); 2654 v9fs_co_name_to_path(pdu, olddir, old_name->data, &oldpath); 2655 v9fs_co_name_to_path(pdu, newdir, new_name->data, &newpath); 2656 2657 /* 2658 * Fixup fid's pointing to the old name to 2659 * start pointing to the new name 2660 */ 2661 for (tfidp = s->fid_list; tfidp; tfidp = tfidp->next) { 2662 if (v9fs_path_is_ancestor(&oldpath, &tfidp->path)) { 2663 /* replace the name */ 2664 v9fs_fix_path(&tfidp->path, &newpath, strlen(oldpath.data)); 2665 } 2666 } 2667 v9fs_path_free(&oldpath); 2668 v9fs_path_free(&newpath); 2669 } 2670 2671 static int v9fs_complete_renameat(V9fsPDU *pdu, int32_t olddirfid, 2672 V9fsString *old_name, int32_t newdirfid, 2673 V9fsString *new_name) 2674 { 2675 int err = 0; 2676 V9fsState *s = pdu->s; 2677 V9fsFidState *newdirfidp = NULL, *olddirfidp = NULL; 2678 2679 olddirfidp = get_fid(pdu, olddirfid); 2680 if (olddirfidp == NULL) { 2681 err = -ENOENT; 2682 goto out; 2683 } 2684 if (newdirfid != -1) { 2685 newdirfidp = get_fid(pdu, newdirfid); 2686 if (newdirfidp == NULL) { 2687 err = -ENOENT; 2688 goto out; 2689 } 2690 } else { 2691 newdirfidp = get_fid(pdu, olddirfid); 2692 } 2693 2694 err = v9fs_co_renameat(pdu, &olddirfidp->path, old_name, 2695 &newdirfidp->path, new_name); 2696 if (err < 0) { 2697 goto out; 2698 } 2699 if (s->ctx.export_flags & V9FS_PATHNAME_FSCONTEXT) { 2700 /* Only for path based fid we need to do the below fixup */ 2701 v9fs_fix_fid_paths(pdu, &olddirfidp->path, old_name, 2702 &newdirfidp->path, new_name); 2703 } 2704 out: 2705 if (olddirfidp) { 2706 put_fid(pdu, olddirfidp); 2707 } 2708 if (newdirfidp) { 2709 put_fid(pdu, newdirfidp); 2710 } 2711 return err; 2712 } 2713 2714 static void v9fs_renameat(void *opaque) 2715 { 2716 ssize_t err = 0; 2717 size_t offset = 7; 2718 V9fsPDU *pdu = opaque; 2719 V9fsState *s = pdu->s; 2720 int32_t olddirfid, newdirfid; 2721 V9fsString old_name, new_name; 2722 2723 v9fs_string_init(&old_name); 2724 v9fs_string_init(&new_name); 2725 err = pdu_unmarshal(pdu, offset, "dsds", &olddirfid, 2726 &old_name, &newdirfid, &new_name); 2727 if (err < 0) { 2728 goto out_err; 2729 } 2730 2731 if (name_is_illegal(old_name.data) || name_is_illegal(new_name.data)) { 2732 err = -ENOENT; 2733 goto out_err; 2734 } 2735 2736 if (!strcmp(".", old_name.data) || !strcmp("..", old_name.data) || 2737 !strcmp(".", new_name.data) || !strcmp("..", new_name.data)) { 2738 err = -EISDIR; 2739 goto out_err; 2740 } 2741 2742 v9fs_path_write_lock(s); 2743 err = v9fs_complete_renameat(pdu, olddirfid, 2744 &old_name, newdirfid, &new_name); 2745 v9fs_path_unlock(s); 2746 if (!err) { 2747 err = offset; 2748 } 2749 2750 out_err: 2751 pdu_complete(pdu, err); 2752 v9fs_string_free(&old_name); 2753 v9fs_string_free(&new_name); 2754 } 2755 2756 static void v9fs_wstat(void *opaque) 2757 { 2758 int32_t fid; 2759 int err = 0; 2760 int16_t unused; 2761 V9fsStat v9stat; 2762 size_t offset = 7; 2763 struct stat stbuf; 2764 V9fsFidState *fidp; 2765 V9fsPDU *pdu = opaque; 2766 2767 v9fs_stat_init(&v9stat); 2768 err = pdu_unmarshal(pdu, offset, "dwS", &fid, &unused, &v9stat); 2769 if (err < 0) { 2770 goto out_nofid; 2771 } 2772 trace_v9fs_wstat(pdu->tag, pdu->id, fid, 2773 v9stat.mode, v9stat.atime, v9stat.mtime); 2774 2775 fidp = get_fid(pdu, fid); 2776 if (fidp == NULL) { 2777 err = -EINVAL; 2778 goto out_nofid; 2779 } 2780 /* do we need to sync the file? */ 2781 if (donttouch_stat(&v9stat)) { 2782 err = v9fs_co_fsync(pdu, fidp, 0); 2783 goto out; 2784 } 2785 if (v9stat.mode != -1) { 2786 uint32_t v9_mode; 2787 err = v9fs_co_lstat(pdu, &fidp->path, &stbuf); 2788 if (err < 0) { 2789 goto out; 2790 } 2791 v9_mode = stat_to_v9mode(&stbuf); 2792 if ((v9stat.mode & P9_STAT_MODE_TYPE_BITS) != 2793 (v9_mode & P9_STAT_MODE_TYPE_BITS)) { 2794 /* Attempting to change the type */ 2795 err = -EIO; 2796 goto out; 2797 } 2798 err = v9fs_co_chmod(pdu, &fidp->path, 2799 v9mode_to_mode(v9stat.mode, 2800 &v9stat.extension)); 2801 if (err < 0) { 2802 goto out; 2803 } 2804 } 2805 if (v9stat.mtime != -1 || v9stat.atime != -1) { 2806 struct timespec times[2]; 2807 if (v9stat.atime != -1) { 2808 times[0].tv_sec = v9stat.atime; 2809 times[0].tv_nsec = 0; 2810 } else { 2811 times[0].tv_nsec = UTIME_OMIT; 2812 } 2813 if (v9stat.mtime != -1) { 2814 times[1].tv_sec = v9stat.mtime; 2815 times[1].tv_nsec = 0; 2816 } else { 2817 times[1].tv_nsec = UTIME_OMIT; 2818 } 2819 err = v9fs_co_utimensat(pdu, &fidp->path, times); 2820 if (err < 0) { 2821 goto out; 2822 } 2823 } 2824 if (v9stat.n_gid != -1 || v9stat.n_uid != -1) { 2825 err = v9fs_co_chown(pdu, &fidp->path, v9stat.n_uid, v9stat.n_gid); 2826 if (err < 0) { 2827 goto out; 2828 } 2829 } 2830 if (v9stat.name.size != 0) { 2831 err = v9fs_complete_rename(pdu, fidp, -1, &v9stat.name); 2832 if (err < 0) { 2833 goto out; 2834 } 2835 } 2836 if (v9stat.length != -1) { 2837 err = v9fs_co_truncate(pdu, &fidp->path, v9stat.length); 2838 if (err < 0) { 2839 goto out; 2840 } 2841 } 2842 err = offset; 2843 out: 2844 put_fid(pdu, fidp); 2845 out_nofid: 2846 v9fs_stat_free(&v9stat); 2847 pdu_complete(pdu, err); 2848 } 2849 2850 static int v9fs_fill_statfs(V9fsState *s, V9fsPDU *pdu, struct statfs *stbuf) 2851 { 2852 uint32_t f_type; 2853 uint32_t f_bsize; 2854 uint64_t f_blocks; 2855 uint64_t f_bfree; 2856 uint64_t f_bavail; 2857 uint64_t f_files; 2858 uint64_t f_ffree; 2859 uint64_t fsid_val; 2860 uint32_t f_namelen; 2861 size_t offset = 7; 2862 int32_t bsize_factor; 2863 2864 /* 2865 * compute bsize factor based on host file system block size 2866 * and client msize 2867 */ 2868 bsize_factor = (s->msize - P9_IOHDRSZ)/stbuf->f_bsize; 2869 if (!bsize_factor) { 2870 bsize_factor = 1; 2871 } 2872 f_type = stbuf->f_type; 2873 f_bsize = stbuf->f_bsize; 2874 f_bsize *= bsize_factor; 2875 /* 2876 * f_bsize is adjusted(multiplied) by bsize factor, so we need to 2877 * adjust(divide) the number of blocks, free blocks and available 2878 * blocks by bsize factor 2879 */ 2880 f_blocks = stbuf->f_blocks/bsize_factor; 2881 f_bfree = stbuf->f_bfree/bsize_factor; 2882 f_bavail = stbuf->f_bavail/bsize_factor; 2883 f_files = stbuf->f_files; 2884 f_ffree = stbuf->f_ffree; 2885 fsid_val = (unsigned int) stbuf->f_fsid.__val[0] | 2886 (unsigned long long)stbuf->f_fsid.__val[1] << 32; 2887 f_namelen = stbuf->f_namelen; 2888 2889 return pdu_marshal(pdu, offset, "ddqqqqqqd", 2890 f_type, f_bsize, f_blocks, f_bfree, 2891 f_bavail, f_files, f_ffree, 2892 fsid_val, f_namelen); 2893 } 2894 2895 static void v9fs_statfs(void *opaque) 2896 { 2897 int32_t fid; 2898 ssize_t retval = 0; 2899 size_t offset = 7; 2900 V9fsFidState *fidp; 2901 struct statfs stbuf; 2902 V9fsPDU *pdu = opaque; 2903 V9fsState *s = pdu->s; 2904 2905 retval = pdu_unmarshal(pdu, offset, "d", &fid); 2906 if (retval < 0) { 2907 goto out_nofid; 2908 } 2909 fidp = get_fid(pdu, fid); 2910 if (fidp == NULL) { 2911 retval = -ENOENT; 2912 goto out_nofid; 2913 } 2914 retval = v9fs_co_statfs(pdu, &fidp->path, &stbuf); 2915 if (retval < 0) { 2916 goto out; 2917 } 2918 retval = v9fs_fill_statfs(s, pdu, &stbuf); 2919 if (retval < 0) { 2920 goto out; 2921 } 2922 retval += offset; 2923 out: 2924 put_fid(pdu, fidp); 2925 out_nofid: 2926 pdu_complete(pdu, retval); 2927 } 2928 2929 static void v9fs_mknod(void *opaque) 2930 { 2931 2932 int mode; 2933 gid_t gid; 2934 int32_t fid; 2935 V9fsQID qid; 2936 int err = 0; 2937 int major, minor; 2938 size_t offset = 7; 2939 V9fsString name; 2940 struct stat stbuf; 2941 V9fsFidState *fidp; 2942 V9fsPDU *pdu = opaque; 2943 2944 v9fs_string_init(&name); 2945 err = pdu_unmarshal(pdu, offset, "dsdddd", &fid, &name, &mode, 2946 &major, &minor, &gid); 2947 if (err < 0) { 2948 goto out_nofid; 2949 } 2950 trace_v9fs_mknod(pdu->tag, pdu->id, fid, mode, major, minor); 2951 2952 if (name_is_illegal(name.data)) { 2953 err = -ENOENT; 2954 goto out_nofid; 2955 } 2956 2957 if (!strcmp(".", name.data) || !strcmp("..", name.data)) { 2958 err = -EEXIST; 2959 goto out_nofid; 2960 } 2961 2962 fidp = get_fid(pdu, fid); 2963 if (fidp == NULL) { 2964 err = -ENOENT; 2965 goto out_nofid; 2966 } 2967 err = v9fs_co_mknod(pdu, fidp, &name, fidp->uid, gid, 2968 makedev(major, minor), mode, &stbuf); 2969 if (err < 0) { 2970 goto out; 2971 } 2972 stat_to_qid(&stbuf, &qid); 2973 err = pdu_marshal(pdu, offset, "Q", &qid); 2974 if (err < 0) { 2975 goto out; 2976 } 2977 err += offset; 2978 trace_v9fs_mknod_return(pdu->tag, pdu->id, 2979 qid.type, qid.version, qid.path); 2980 out: 2981 put_fid(pdu, fidp); 2982 out_nofid: 2983 pdu_complete(pdu, err); 2984 v9fs_string_free(&name); 2985 } 2986 2987 /* 2988 * Implement posix byte range locking code 2989 * Server side handling of locking code is very simple, because 9p server in 2990 * QEMU can handle only one client. And most of the lock handling 2991 * (like conflict, merging) etc is done by the VFS layer itself, so no need to 2992 * do any thing in * qemu 9p server side lock code path. 2993 * So when a TLOCK request comes, always return success 2994 */ 2995 static void v9fs_lock(void *opaque) 2996 { 2997 int8_t status; 2998 V9fsFlock flock; 2999 size_t offset = 7; 3000 struct stat stbuf; 3001 V9fsFidState *fidp; 3002 int32_t fid, err = 0; 3003 V9fsPDU *pdu = opaque; 3004 3005 status = P9_LOCK_ERROR; 3006 v9fs_string_init(&flock.client_id); 3007 err = pdu_unmarshal(pdu, offset, "dbdqqds", &fid, &flock.type, 3008 &flock.flags, &flock.start, &flock.length, 3009 &flock.proc_id, &flock.client_id); 3010 if (err < 0) { 3011 goto out_nofid; 3012 } 3013 trace_v9fs_lock(pdu->tag, pdu->id, fid, 3014 flock.type, flock.start, flock.length); 3015 3016 3017 /* We support only block flag now (that too ignored currently) */ 3018 if (flock.flags & ~P9_LOCK_FLAGS_BLOCK) { 3019 err = -EINVAL; 3020 goto out_nofid; 3021 } 3022 fidp = get_fid(pdu, fid); 3023 if (fidp == NULL) { 3024 err = -ENOENT; 3025 goto out_nofid; 3026 } 3027 err = v9fs_co_fstat(pdu, fidp, &stbuf); 3028 if (err < 0) { 3029 goto out; 3030 } 3031 status = P9_LOCK_SUCCESS; 3032 out: 3033 put_fid(pdu, fidp); 3034 out_nofid: 3035 err = pdu_marshal(pdu, offset, "b", status); 3036 if (err > 0) { 3037 err += offset; 3038 } 3039 trace_v9fs_lock_return(pdu->tag, pdu->id, status); 3040 pdu_complete(pdu, err); 3041 v9fs_string_free(&flock.client_id); 3042 } 3043 3044 /* 3045 * When a TGETLOCK request comes, always return success because all lock 3046 * handling is done by client's VFS layer. 3047 */ 3048 static void v9fs_getlock(void *opaque) 3049 { 3050 size_t offset = 7; 3051 struct stat stbuf; 3052 V9fsFidState *fidp; 3053 V9fsGetlock glock; 3054 int32_t fid, err = 0; 3055 V9fsPDU *pdu = opaque; 3056 3057 v9fs_string_init(&glock.client_id); 3058 err = pdu_unmarshal(pdu, offset, "dbqqds", &fid, &glock.type, 3059 &glock.start, &glock.length, &glock.proc_id, 3060 &glock.client_id); 3061 if (err < 0) { 3062 goto out_nofid; 3063 } 3064 trace_v9fs_getlock(pdu->tag, pdu->id, fid, 3065 glock.type, glock.start, glock.length); 3066 3067 fidp = get_fid(pdu, fid); 3068 if (fidp == NULL) { 3069 err = -ENOENT; 3070 goto out_nofid; 3071 } 3072 err = v9fs_co_fstat(pdu, fidp, &stbuf); 3073 if (err < 0) { 3074 goto out; 3075 } 3076 glock.type = P9_LOCK_TYPE_UNLCK; 3077 err = pdu_marshal(pdu, offset, "bqqds", glock.type, 3078 glock.start, glock.length, glock.proc_id, 3079 &glock.client_id); 3080 if (err < 0) { 3081 goto out; 3082 } 3083 err += offset; 3084 trace_v9fs_getlock_return(pdu->tag, pdu->id, glock.type, glock.start, 3085 glock.length, glock.proc_id); 3086 out: 3087 put_fid(pdu, fidp); 3088 out_nofid: 3089 pdu_complete(pdu, err); 3090 v9fs_string_free(&glock.client_id); 3091 } 3092 3093 static void v9fs_mkdir(void *opaque) 3094 { 3095 V9fsPDU *pdu = opaque; 3096 size_t offset = 7; 3097 int32_t fid; 3098 struct stat stbuf; 3099 V9fsQID qid; 3100 V9fsString name; 3101 V9fsFidState *fidp; 3102 gid_t gid; 3103 int mode; 3104 int err = 0; 3105 3106 v9fs_string_init(&name); 3107 err = pdu_unmarshal(pdu, offset, "dsdd", &fid, &name, &mode, &gid); 3108 if (err < 0) { 3109 goto out_nofid; 3110 } 3111 trace_v9fs_mkdir(pdu->tag, pdu->id, fid, name.data, mode, gid); 3112 3113 if (name_is_illegal(name.data)) { 3114 err = -ENOENT; 3115 goto out_nofid; 3116 } 3117 3118 if (!strcmp(".", name.data) || !strcmp("..", name.data)) { 3119 err = -EEXIST; 3120 goto out_nofid; 3121 } 3122 3123 fidp = get_fid(pdu, fid); 3124 if (fidp == NULL) { 3125 err = -ENOENT; 3126 goto out_nofid; 3127 } 3128 err = v9fs_co_mkdir(pdu, fidp, &name, mode, fidp->uid, gid, &stbuf); 3129 if (err < 0) { 3130 goto out; 3131 } 3132 stat_to_qid(&stbuf, &qid); 3133 err = pdu_marshal(pdu, offset, "Q", &qid); 3134 if (err < 0) { 3135 goto out; 3136 } 3137 err += offset; 3138 trace_v9fs_mkdir_return(pdu->tag, pdu->id, 3139 qid.type, qid.version, qid.path, err); 3140 out: 3141 put_fid(pdu, fidp); 3142 out_nofid: 3143 pdu_complete(pdu, err); 3144 v9fs_string_free(&name); 3145 } 3146 3147 static void v9fs_xattrwalk(void *opaque) 3148 { 3149 int64_t size; 3150 V9fsString name; 3151 ssize_t err = 0; 3152 size_t offset = 7; 3153 int32_t fid, newfid; 3154 V9fsFidState *file_fidp; 3155 V9fsFidState *xattr_fidp = NULL; 3156 V9fsPDU *pdu = opaque; 3157 V9fsState *s = pdu->s; 3158 3159 v9fs_string_init(&name); 3160 err = pdu_unmarshal(pdu, offset, "dds", &fid, &newfid, &name); 3161 if (err < 0) { 3162 goto out_nofid; 3163 } 3164 trace_v9fs_xattrwalk(pdu->tag, pdu->id, fid, newfid, name.data); 3165 3166 file_fidp = get_fid(pdu, fid); 3167 if (file_fidp == NULL) { 3168 err = -ENOENT; 3169 goto out_nofid; 3170 } 3171 xattr_fidp = alloc_fid(s, newfid); 3172 if (xattr_fidp == NULL) { 3173 err = -EINVAL; 3174 goto out; 3175 } 3176 v9fs_path_copy(&xattr_fidp->path, &file_fidp->path); 3177 if (name.data == NULL) { 3178 /* 3179 * listxattr request. Get the size first 3180 */ 3181 size = v9fs_co_llistxattr(pdu, &xattr_fidp->path, NULL, 0); 3182 if (size < 0) { 3183 err = size; 3184 clunk_fid(s, xattr_fidp->fid); 3185 goto out; 3186 } 3187 /* 3188 * Read the xattr value 3189 */ 3190 xattr_fidp->fs.xattr.len = size; 3191 xattr_fidp->fid_type = P9_FID_XATTR; 3192 xattr_fidp->fs.xattr.copied_len = -1; 3193 if (size) { 3194 xattr_fidp->fs.xattr.value = g_malloc(size); 3195 err = v9fs_co_llistxattr(pdu, &xattr_fidp->path, 3196 xattr_fidp->fs.xattr.value, 3197 xattr_fidp->fs.xattr.len); 3198 if (err < 0) { 3199 clunk_fid(s, xattr_fidp->fid); 3200 goto out; 3201 } 3202 } 3203 err = pdu_marshal(pdu, offset, "q", size); 3204 if (err < 0) { 3205 goto out; 3206 } 3207 err += offset; 3208 } else { 3209 /* 3210 * specific xattr fid. We check for xattr 3211 * presence also collect the xattr size 3212 */ 3213 size = v9fs_co_lgetxattr(pdu, &xattr_fidp->path, 3214 &name, NULL, 0); 3215 if (size < 0) { 3216 err = size; 3217 clunk_fid(s, xattr_fidp->fid); 3218 goto out; 3219 } 3220 /* 3221 * Read the xattr value 3222 */ 3223 xattr_fidp->fs.xattr.len = size; 3224 xattr_fidp->fid_type = P9_FID_XATTR; 3225 xattr_fidp->fs.xattr.copied_len = -1; 3226 if (size) { 3227 xattr_fidp->fs.xattr.value = g_malloc(size); 3228 err = v9fs_co_lgetxattr(pdu, &xattr_fidp->path, 3229 &name, xattr_fidp->fs.xattr.value, 3230 xattr_fidp->fs.xattr.len); 3231 if (err < 0) { 3232 clunk_fid(s, xattr_fidp->fid); 3233 goto out; 3234 } 3235 } 3236 err = pdu_marshal(pdu, offset, "q", size); 3237 if (err < 0) { 3238 goto out; 3239 } 3240 err += offset; 3241 } 3242 trace_v9fs_xattrwalk_return(pdu->tag, pdu->id, size); 3243 out: 3244 put_fid(pdu, file_fidp); 3245 if (xattr_fidp) { 3246 put_fid(pdu, xattr_fidp); 3247 } 3248 out_nofid: 3249 pdu_complete(pdu, err); 3250 v9fs_string_free(&name); 3251 } 3252 3253 static void v9fs_xattrcreate(void *opaque) 3254 { 3255 int flags; 3256 int32_t fid; 3257 int64_t size; 3258 ssize_t err = 0; 3259 V9fsString name; 3260 size_t offset = 7; 3261 V9fsFidState *file_fidp; 3262 V9fsFidState *xattr_fidp; 3263 V9fsPDU *pdu = opaque; 3264 3265 v9fs_string_init(&name); 3266 err = pdu_unmarshal(pdu, offset, "dsqd", &fid, &name, &size, &flags); 3267 if (err < 0) { 3268 goto out_nofid; 3269 } 3270 trace_v9fs_xattrcreate(pdu->tag, pdu->id, fid, name.data, size, flags); 3271 3272 file_fidp = get_fid(pdu, fid); 3273 if (file_fidp == NULL) { 3274 err = -EINVAL; 3275 goto out_nofid; 3276 } 3277 /* Make the file fid point to xattr */ 3278 xattr_fidp = file_fidp; 3279 xattr_fidp->fid_type = P9_FID_XATTR; 3280 xattr_fidp->fs.xattr.copied_len = 0; 3281 xattr_fidp->fs.xattr.len = size; 3282 xattr_fidp->fs.xattr.flags = flags; 3283 v9fs_string_init(&xattr_fidp->fs.xattr.name); 3284 v9fs_string_copy(&xattr_fidp->fs.xattr.name, &name); 3285 xattr_fidp->fs.xattr.value = g_malloc(size); 3286 err = offset; 3287 put_fid(pdu, file_fidp); 3288 out_nofid: 3289 pdu_complete(pdu, err); 3290 v9fs_string_free(&name); 3291 } 3292 3293 static void v9fs_readlink(void *opaque) 3294 { 3295 V9fsPDU *pdu = opaque; 3296 size_t offset = 7; 3297 V9fsString target; 3298 int32_t fid; 3299 int err = 0; 3300 V9fsFidState *fidp; 3301 3302 err = pdu_unmarshal(pdu, offset, "d", &fid); 3303 if (err < 0) { 3304 goto out_nofid; 3305 } 3306 trace_v9fs_readlink(pdu->tag, pdu->id, fid); 3307 fidp = get_fid(pdu, fid); 3308 if (fidp == NULL) { 3309 err = -ENOENT; 3310 goto out_nofid; 3311 } 3312 3313 v9fs_string_init(&target); 3314 err = v9fs_co_readlink(pdu, &fidp->path, &target); 3315 if (err < 0) { 3316 goto out; 3317 } 3318 err = pdu_marshal(pdu, offset, "s", &target); 3319 if (err < 0) { 3320 v9fs_string_free(&target); 3321 goto out; 3322 } 3323 err += offset; 3324 trace_v9fs_readlink_return(pdu->tag, pdu->id, target.data); 3325 v9fs_string_free(&target); 3326 out: 3327 put_fid(pdu, fidp); 3328 out_nofid: 3329 pdu_complete(pdu, err); 3330 } 3331 3332 static CoroutineEntry *pdu_co_handlers[] = { 3333 [P9_TREADDIR] = v9fs_readdir, 3334 [P9_TSTATFS] = v9fs_statfs, 3335 [P9_TGETATTR] = v9fs_getattr, 3336 [P9_TSETATTR] = v9fs_setattr, 3337 [P9_TXATTRWALK] = v9fs_xattrwalk, 3338 [P9_TXATTRCREATE] = v9fs_xattrcreate, 3339 [P9_TMKNOD] = v9fs_mknod, 3340 [P9_TRENAME] = v9fs_rename, 3341 [P9_TLOCK] = v9fs_lock, 3342 [P9_TGETLOCK] = v9fs_getlock, 3343 [P9_TRENAMEAT] = v9fs_renameat, 3344 [P9_TREADLINK] = v9fs_readlink, 3345 [P9_TUNLINKAT] = v9fs_unlinkat, 3346 [P9_TMKDIR] = v9fs_mkdir, 3347 [P9_TVERSION] = v9fs_version, 3348 [P9_TLOPEN] = v9fs_open, 3349 [P9_TATTACH] = v9fs_attach, 3350 [P9_TSTAT] = v9fs_stat, 3351 [P9_TWALK] = v9fs_walk, 3352 [P9_TCLUNK] = v9fs_clunk, 3353 [P9_TFSYNC] = v9fs_fsync, 3354 [P9_TOPEN] = v9fs_open, 3355 [P9_TREAD] = v9fs_read, 3356 #if 0 3357 [P9_TAUTH] = v9fs_auth, 3358 #endif 3359 [P9_TFLUSH] = v9fs_flush, 3360 [P9_TLINK] = v9fs_link, 3361 [P9_TSYMLINK] = v9fs_symlink, 3362 [P9_TCREATE] = v9fs_create, 3363 [P9_TLCREATE] = v9fs_lcreate, 3364 [P9_TWRITE] = v9fs_write, 3365 [P9_TWSTAT] = v9fs_wstat, 3366 [P9_TREMOVE] = v9fs_remove, 3367 }; 3368 3369 static void v9fs_op_not_supp(void *opaque) 3370 { 3371 V9fsPDU *pdu = opaque; 3372 pdu_complete(pdu, -EOPNOTSUPP); 3373 } 3374 3375 static void v9fs_fs_ro(void *opaque) 3376 { 3377 V9fsPDU *pdu = opaque; 3378 pdu_complete(pdu, -EROFS); 3379 } 3380 3381 static inline bool is_read_only_op(V9fsPDU *pdu) 3382 { 3383 switch (pdu->id) { 3384 case P9_TREADDIR: 3385 case P9_TSTATFS: 3386 case P9_TGETATTR: 3387 case P9_TXATTRWALK: 3388 case P9_TLOCK: 3389 case P9_TGETLOCK: 3390 case P9_TREADLINK: 3391 case P9_TVERSION: 3392 case P9_TLOPEN: 3393 case P9_TATTACH: 3394 case P9_TSTAT: 3395 case P9_TWALK: 3396 case P9_TCLUNK: 3397 case P9_TFSYNC: 3398 case P9_TOPEN: 3399 case P9_TREAD: 3400 case P9_TAUTH: 3401 case P9_TFLUSH: 3402 return 1; 3403 default: 3404 return 0; 3405 } 3406 } 3407 3408 void pdu_submit(V9fsPDU *pdu) 3409 { 3410 Coroutine *co; 3411 CoroutineEntry *handler; 3412 V9fsState *s = pdu->s; 3413 3414 if (pdu->id >= ARRAY_SIZE(pdu_co_handlers) || 3415 (pdu_co_handlers[pdu->id] == NULL)) { 3416 handler = v9fs_op_not_supp; 3417 } else { 3418 handler = pdu_co_handlers[pdu->id]; 3419 } 3420 3421 if (is_ro_export(&s->ctx) && !is_read_only_op(pdu)) { 3422 handler = v9fs_fs_ro; 3423 } 3424 co = qemu_coroutine_create(handler, pdu); 3425 qemu_coroutine_enter(co); 3426 } 3427 3428 /* Returns 0 on success, 1 on failure. */ 3429 int v9fs_device_realize_common(V9fsState *s, Error **errp) 3430 { 3431 V9fsVirtioState *v = container_of(s, V9fsVirtioState, state); 3432 int i, len; 3433 struct stat stat; 3434 FsDriverEntry *fse; 3435 V9fsPath path; 3436 int rc = 1; 3437 3438 /* initialize pdu allocator */ 3439 QLIST_INIT(&s->free_list); 3440 QLIST_INIT(&s->active_list); 3441 for (i = 0; i < (MAX_REQ - 1); i++) { 3442 QLIST_INSERT_HEAD(&s->free_list, &v->pdus[i], next); 3443 v->pdus[i].s = s; 3444 v->pdus[i].idx = i; 3445 } 3446 3447 v9fs_path_init(&path); 3448 3449 fse = get_fsdev_fsentry(s->fsconf.fsdev_id); 3450 3451 if (!fse) { 3452 /* We don't have a fsdev identified by fsdev_id */ 3453 error_setg(errp, "9pfs device couldn't find fsdev with the " 3454 "id = %s", 3455 s->fsconf.fsdev_id ? s->fsconf.fsdev_id : "NULL"); 3456 goto out; 3457 } 3458 3459 if (!s->fsconf.tag) { 3460 /* we haven't specified a mount_tag */ 3461 error_setg(errp, "fsdev with id %s needs mount_tag arguments", 3462 s->fsconf.fsdev_id); 3463 goto out; 3464 } 3465 3466 s->ctx.export_flags = fse->export_flags; 3467 s->ctx.fs_root = g_strdup(fse->path); 3468 s->ctx.exops.get_st_gen = NULL; 3469 len = strlen(s->fsconf.tag); 3470 if (len > MAX_TAG_LEN - 1) { 3471 error_setg(errp, "mount tag '%s' (%d bytes) is longer than " 3472 "maximum (%d bytes)", s->fsconf.tag, len, MAX_TAG_LEN - 1); 3473 goto out; 3474 } 3475 3476 s->tag = g_strdup(s->fsconf.tag); 3477 s->ctx.uid = -1; 3478 3479 s->ops = fse->ops; 3480 3481 s->fid_list = NULL; 3482 qemu_co_rwlock_init(&s->rename_lock); 3483 3484 if (s->ops->init(&s->ctx) < 0) { 3485 error_setg(errp, "9pfs Failed to initialize fs-driver with id:%s" 3486 " and export path:%s", s->fsconf.fsdev_id, s->ctx.fs_root); 3487 goto out; 3488 } 3489 3490 /* 3491 * Check details of export path, We need to use fs driver 3492 * call back to do that. Since we are in the init path, we don't 3493 * use co-routines here. 3494 */ 3495 if (s->ops->name_to_path(&s->ctx, NULL, "/", &path) < 0) { 3496 error_setg(errp, 3497 "error in converting name to path %s", strerror(errno)); 3498 goto out; 3499 } 3500 if (s->ops->lstat(&s->ctx, &path, &stat)) { 3501 error_setg(errp, "share path %s does not exist", fse->path); 3502 goto out; 3503 } else if (!S_ISDIR(stat.st_mode)) { 3504 error_setg(errp, "share path %s is not a directory", fse->path); 3505 goto out; 3506 } 3507 v9fs_path_free(&path); 3508 3509 rc = 0; 3510 out: 3511 if (rc) { 3512 g_free(s->ctx.fs_root); 3513 g_free(s->tag); 3514 v9fs_path_free(&path); 3515 } 3516 return rc; 3517 } 3518 3519 void v9fs_device_unrealize_common(V9fsState *s, Error **errp) 3520 { 3521 g_free(s->ctx.fs_root); 3522 g_free(s->tag); 3523 } 3524 3525 static void __attribute__((__constructor__)) v9fs_set_fd_limit(void) 3526 { 3527 struct rlimit rlim; 3528 if (getrlimit(RLIMIT_NOFILE, &rlim) < 0) { 3529 error_report("Failed to get the resource limit"); 3530 exit(1); 3531 } 3532 open_fd_hw = rlim.rlim_cur - MIN(400, rlim.rlim_cur/3); 3533 open_fd_rc = rlim.rlim_cur/2; 3534 } 3535