nfs_adapter.c 74.8 KB
Newer Older
W
wangchenyang 已提交
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
/****************************************************************************
 * fs/nfs/nfs_vfsops.c
 *
 *   Copyright (C) 2012-2013, 2015, 2017-2018 Gregory Nutt. All rights reserved.
 *   Copyright (C) 2012 Jose Pablo Rojas Vargas. All rights reserved.
 *   Author: Jose Pablo Rojas Vargas <jrojas@nx-engineering.com>
 *           Gregory Nutt <gnutt@nuttx.org>
 *
 * Leveraged from OpenBSD:
 *
 *   Copyright (c) 1989, 1993, 1995
 *   The Regents of the University of California.  All rights reserved.
 *
 * This code is derived from software contributed to Berkeley by
 * Rick Macklem at The University of Guelph.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. Neither the name of the University nor the names of its contributors
 *    may be used to endorse or promote products derived from this software
 *    without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 *
 ****************************************************************************/

/****************************************************************************
 * Included Files
 ****************************************************************************/

#include <sys/mount.h>
#include <sys/socket.h>
#include <sys/statfs.h>
#include <sys/stat.h>
#include <stdlib.h>
#include <string.h>
#include <fcntl.h>
#include <semaphore.h>
#include <assert.h>
#include <errno.h>
#include <debug.h>
#include <pthread.h>
#include <unistd.h>
#include "lwip/opt.h"
#include "lwip/sockets.h"
#include "vfs_config.h"
#include "dirent.h"
#include "fs/fs.h"
#include "fs/dirent_fs.h"
#include "nfs.h"
#include "nfs_node.h"
#include "xdr_subs.h"
#include "los_tables.h"
#include "fs/vnode.h"
#include "los_vm_filemap.h"
#include "user_copy.h"

/****************************************************************************
 * Pre-processor Definitions
 ****************************************************************************/
/****************************************************************************
 * Public Data
 ****************************************************************************/

uint32_t nfs_true;
uint32_t nfs_false;
uint32_t nfs_xdrneg1;
NFSMOUNT_HOOK g_NFSMOUNT_HOOK = (NFSMOUNT_HOOK)(UINTPTR)NULL;

#ifdef CONFIG_NFS_STATISTICS
struct nfsstats nfsstats;
#endif

野生毛霉君 已提交
91 92
#define USE_GUARDED_CREATE 1

W
wangchenyang 已提交
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
#ifdef LOSCFG_FS_NFS
/****************************************************************************
 * Private Type Definitions
 ****************************************************************************/

#define NFS_DIR_ENTRY_MALLOC(entry)                                           \
  do                                                                          \
    {                                                                         \
      entry = (struct entry3 *)malloc(sizeof(struct entry3));                 \
      if (entry == NULL)                                                      \
        {                                                                     \
          fvdbg("malloc failed\n");                                           \
          error = ENOMEM;                                                     \
          goto errout_with_memory;                                            \
        }                                                                     \
      (void)memset_s(entry, sizeof(struct entry3), 0, sizeof(struct entry3)); \
    }                                                                         \
  while (0)

#define NFS_DIR_ENTRY_FREE(entry)  \
  do                               \
    {                              \
      free(entry->contents);       \
      entry->contents = NULL;      \
      free(entry);                 \
      entry = NULL;                \
    }                              \
  while (0)

#define FILENAME_MAX_LEN 50
struct MountOps nfs_mount_operations;
struct VnodeOps nfs_vops;
struct file_operations_vfs nfs_fops;
struct nfs_statinfo_s
{
  uint16_t ns_mode;    /* File access mode */
  uint8_t  ns_type;    /* File type */
  uint64_t ns_size;    /* File size */
  time_t   ns_atime;   /* Time of last access */
  time_t   ns_mtime;   /* Time of last modification */
  time_t   ns_ctime;   /* Time of last status change */
};
extern void nfs_stat_common(struct nfs_statinfo_s *info, struct stat *buf);

static mode_t type_to_mode(int type, mode_t permission)
{
  switch (type)
    {
    case VNODE_TYPE_DIR:
      return permission | S_IFDIR;
    case VNODE_TYPE_REG:
      return permission | S_IFREG;
    case VNODE_TYPE_BLK:
      return permission | S_IFBLK;
    case VNODE_TYPE_CHR:
      return permission | S_IFCHR;
    case VNODE_TYPE_FIFO:
      return permission | S_IFIFO;
    default:
      break;
    }
  return permission;
}

static int nfs_2_vfs(int result)
{
  int status;

  if ((result < NFS_OK) || (result > NFSERR_NOTEMPTY))
    {
      return result;
    }

  /* Nfs errno to Libc errno */
  switch (result)
    {
    case NFSERR_NAMETOL:
      status = ENAMETOOLONG;
      break;
    case NFSERR_NOTEMPTY:
      status = ENOTEMPTY;
      break;
    default:
      status = result;
      break;
    }

  return status;
}

/****************************************************************************
 * Name: nfs_fileupdate
 *
 * Description:
 *   This is to update the file attributes like size, type. This sends a LOOKUP msg of nfs
 *   to get latest file attributes.
 *
 * Returned Value:
 *   0 on success; a positive errno value on failure.
 *
 ****************************************************************************/
static int nfs_fileupdate(struct nfsmount *nmp, char *filename,
    struct file_handle *parent_fhandle, struct nfsnode *np)
{
  struct file_handle fhandle;
  int                error;
  struct nfs_fattr   fattr;

  /* Find the NFS node associate with the path */

  fhandle.length = parent_fhandle->length;
  (void)memcpy_s(&(fhandle.handle), fhandle.length, &(parent_fhandle->handle), parent_fhandle->length);
  error = nfs_lookup(nmp, filename, &fhandle, &fattr, NULL);

  if (error != OK)
    {
      PRINTK("ERROR: nfs_lookup failed returned: %d\n", error);
      return error;
    }

  /* Update the file handle */

  error = memcpy_s(&(np->n_fhandle), NFSX_V3FHMAX, &(fhandle.handle), fhandle.length);
  if (error != EOK)
    {
      return ENOBUFS;
    }

  np->n_fhsize = fhandle.length;

  /* Save the file attributes */

  nfs_attrupdate(np, &fattr);

  return OK;
}

int vfs_nfs_reclaim(struct Vnode *node)
{
M
mucor 已提交
232 233 234 235
  struct nfsnode  *prev = NULL;
  struct nfsnode  *curr = NULL;
  struct nfsmount *nmp = NULL;
  struct nfsnode  *np = NULL;
W
wangchenyang 已提交
236 237 238 239
  if (node->data == NULL)
    {
      return OK;
    }
M
mucor 已提交
240 241 242
  nmp = (struct nfsmount *)(node->originMount->data);
  nfs_mux_take(nmp);
  np = (struct nfsnode*)(node->data);
W
wangchenyang 已提交
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
  int ret;

  if (np->n_crefs > 1)
    {
      np->n_crefs--;
      ret = OK;
    }

  /* There are no more references to the file structure.  Now we need to
   * free up all resources associated with the open file.
   *
   * First, find our file structure in the list of file structures
   * containted in the mount structure.
   */

  else
    {
      /* Assume file structure will not be found.  This should never happen. */

      ret = -EINVAL;

      for (prev = NULL, curr = nmp->nm_head;
          curr;
          prev = curr, curr = curr->n_next)
        {
          /* Check if this node is ours */

          if (np == curr)
            {
              /* Yes.. remove it from the list of file structures */

              if (prev)
                {
                  /* Remove from mid-list */

                  prev->n_next = np->n_next;
                }
              else
                {
                  /* Remove from the head of the list */

                  nmp->nm_head = np->n_next;
                }

              /* Then deallocate the file structure and return success */

              free(np->n_name);
              free(np);
              ret = OK;
              break;
            }
        }
    }

M
mucor 已提交
297
  nfs_mux_release(nmp);
W
wangchenyang 已提交
298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851
  return ret;
}

static int vfs_nfs_stat_internal(struct nfsmount *nmp, struct nfsnode *nfs_node)
{
  int ret;
  struct timespec ts;
  struct rpc_call_fs attr_call;
  struct rpc_reply_getattr attr_reply;
  attr_call.fs.fsroot.length = txdr_unsigned(nfs_node->n_fhsize);
  memcpy_s(&(attr_call.fs.fsroot.handle), sizeof(nfsfh_t), &(nfs_node->n_fhandle), sizeof(nfsfh_t));
  ret = nfs_request(nmp, NFSPROC_GETATTR, &attr_call,
      sizeof(struct file_handle), &attr_reply,
      sizeof(struct rpc_reply_getattr));
  if (ret != OK)
    {
      return ret;
    }
  /* Extract the file mode, file type, and file size. */

  nfs_node->n_mode  = fxdr_unsigned(uint16_t, attr_reply.attr.fa_mode);
  nfs_node->n_type  = fxdr_unsigned(uint8_t, attr_reply.attr.fa_type);
  nfs_node->n_size  = fxdr_hyper(&attr_reply.attr.fa_size);

  /* Extract time values as type time_t in units of seconds */

  fxdr_nfsv3time(&attr_reply.attr.fa_mtime, &ts);
  nfs_node->n_mtime = ts.tv_sec;

  fxdr_nfsv3time(&attr_reply.attr.fa_atime, &ts);
  nfs_node->n_atime = ts.tv_sec;

  fxdr_nfsv3time(&attr_reply.attr.fa_ctime, &ts);
  nfs_node->n_ctime = ts.tv_sec;

  return OK;
}

/****************************************************************************
 * Name: nfs_decode_args
 *
 * Returned Value:
 *   None
 *
 ****************************************************************************/

static void nfs_decode_args(struct nfs_mount_parameters *nprmt,
                            struct nfs_args *argp)
{
  int maxio;

  /* Get the selected timeout value */

  if ((argp->flags & NFSMNT_TIMEO) != 0 && argp->timeo > 0)
    {
      uint32_t tmp = ((uint32_t)argp->timeo * NFS_HZ + 5) / 10;
      if (tmp < NFS_MINTIMEO)
        {
          tmp = NFS_MINTIMEO;
        }
      else if (tmp > NFS_MAXTIMEO)
        {
          tmp = NFS_MAXTIMEO;
        }

      nprmt->timeo = tmp;
    }

  /* Get the selected retransmission count */

  if ((argp->flags & NFSMNT_RETRANS) != 0 && argp->retrans > 1)
    {
      if  (argp->retrans < NFS_MAXREXMIT)
        {
          nprmt->retry = argp->retrans;
        }
      else
        {
          nprmt->retry = NFS_MAXREXMIT;
        }
    }

  if ((argp->flags & NFSMNT_SOFT) == 0)
    {
      nprmt->retry = NFS_MAXREXMIT + 1;  /* Past clip limit */
    }

  /* Get the maximum amount of data that can be transferred in one packet */

  if ((argp->sotype == SOCK_DGRAM) != 0)
    {
      maxio = NFS_MAXDGRAMDATA;
    }
  else
    {
      ferr("ERROR: Only SOCK_DRAM is supported\n");
      maxio = NFS_MAXDATA;
    }

  /* Get the maximum amount of data that can be transferred in one write transfer */

  if ((argp->flags & NFSMNT_WSIZE) != 0 && argp->wsize > 0)
    {
      nprmt->wsize = argp->wsize;

      /* Round down to multiple of blocksize */

      nprmt->wsize &= ~(NFS_FABLKSIZE - 1);
      if (nprmt->wsize <= 0)
        {
          nprmt->wsize = NFS_FABLKSIZE;
        }
    }

  if (nprmt->wsize > maxio)
    {
      nprmt->wsize = maxio;
    }

  if (nprmt->wsize > MAXBSIZE)
    {
      nprmt->wsize = MAXBSIZE;
    }

  /* Get the maximum amount of data that can be transferred in one read transfer */

  if ((argp->flags & NFSMNT_RSIZE) != 0 && argp->rsize > 0)
    {
      nprmt->rsize = argp->rsize;

      /* Round down to multiple of blocksize */

      nprmt->rsize &= ~(NFS_FABLKSIZE - 1);
      if (nprmt->rsize <= 0)
        {
          nprmt->rsize = NFS_FABLKSIZE;
        }
    }

  if (nprmt->rsize > maxio)
    {
      nprmt->rsize = maxio;
    }

  if (nprmt->rsize > MAXBSIZE)
    {
      nprmt->rsize = MAXBSIZE;
    }

  /* Get the maximum amount of data that can be transferred in directory transfer */

  if ((argp->flags & NFSMNT_READDIRSIZE) != 0 && argp->readdirsize > 0)
    {
      nprmt->readdirsize = argp->readdirsize;

      /* Round down to multiple of blocksize */

      nprmt->readdirsize &= ~(NFS_DIRBLKSIZ - 1);
      if (nprmt->readdirsize < NFS_DIRBLKSIZ)
        {
          nprmt->readdirsize = NFS_DIRBLKSIZ;
        }
    }
  else if (argp->flags & NFSMNT_RSIZE)
    {
      nprmt->readdirsize = nprmt->rsize;
    }

  if (nprmt->readdirsize > maxio)
    {
      nprmt->readdirsize = maxio;
    }
}

/****************************************************************************
 * Name: nfs_bind
 *
 * Description:
 *  This implements a portion of the mount operation. This function allocates
 *  and initializes the mountpoint private data and gets mount information
 *  from the NFS server.  The final binding of the private data (containing
 *  NFS server mount information) to the  mountpoint is performed by mount().
 *
 * Returned Value:
 *   0 on success; a negated errno value on failure.
 *
 ****************************************************************************/

int nfs_bind(struct Vnode *blkdriver, const void *data,
                    void **handle, const char *relpath)
{
  struct nfs_args        *argp = (struct nfs_args *)data;
  struct nfsmount        *nmp = NULL;
  struct rpcclnt             *rpc = NULL;
  struct rpc_call_fs          getattr;
  struct rpc_reply_getattr    resok;
  struct nfs_mount_parameters nprmt;
  uint32_t                    buflen;
  uint32_t                    pathlen;
  uint32_t                    tmp;
  int                         error = 0;
  pthread_mutexattr_t attr;

  DEBUGASSERT(data && handle);

  /* Set default values of the parameters.  These may be overridden by
   * settings in the argp->flags.
   */

  nprmt.timeo       = NFS_TIMEO;
  nprmt.retry       = NFS_RETRANS;
  nprmt.wsize       = NFS_WSIZE;
  nprmt.rsize       = NFS_RSIZE;
  nprmt.readdirsize = NFS_READDIRSIZE;

  nfs_decode_args(&nprmt, argp);

  /* Determine the size of a buffer that will hold one RPC data transfer.
   * First, get the maximum size of a read and a write transfer.
   */

  pathlen = strlen(argp->path);
  if (pathlen >= NFS_MOUNT_PATH_MAX_SIZE) {
      return -ENAMETOOLONG;
  }

  buflen = SIZEOF_rpc_call_write(nprmt.wsize);
  tmp    = SIZEOF_rpc_reply_read(nprmt.rsize);

  /* The buffer size will be the maximum of those two sizes */

  if (tmp > buflen)
    {
      buflen = tmp;
    }

  /* But don't let the buffer size exceed the MSS of the socket type.
   *
   * In the case where there are multiple network devices with different
   * link layer protocols, each network device may support a different
   * UDP MSS value.  Here we arbitrarily select the minimum MSS for
   * that case.
   */

  /* Create an instance of the mountpt state structure */

  nmp = (struct nfsmount *)malloc(SIZEOF_nfsmount(buflen));
  if (!nmp)
    {
      ferr("ERROR: Failed to allocate mountpoint structure\n");
      return -ENOMEM;
    }

  (void)memset_s(nmp, SIZEOF_nfsmount(buflen), 0, SIZEOF_nfsmount(buflen));

  /* Save the allocated I/O buffer size */

  nmp->nm_buflen = (uint16_t)buflen;

  nmp->nm_so = -1;

  /* Initialize the allocated mountpt state structure. */

  (void)pthread_mutexattr_init(&attr);
  (void)pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
  error = pthread_mutex_init(&nmp->nm_mux, &attr);
  if (error)
    {
      return -error;
    }

  /* Initialize NFS */

  nfs_true = txdr_unsigned(TRUE);
  nfs_false = txdr_unsigned(FALSE);
  nfs_xdrneg1 = txdr_unsigned(-1);

  rpcclnt_init();

  /* Set initial values of other fields */

  nmp->nm_timeo       = nprmt.timeo;
  nmp->nm_retry       = nprmt.retry;
  nmp->nm_wsize       = nprmt.wsize;
  nmp->nm_rsize       = nprmt.rsize;
  nmp->nm_readdirsize = nprmt.readdirsize;
  nmp->nm_fhsize      = NFSX_V3FHMAX;

  (void)strncpy_s(nmp->nm_path, sizeof(nmp->nm_path), argp->path, pathlen);
  (void)memcpy_s(&nmp->nm_nam, sizeof(struct sockaddr), &argp->addr, argp->addrlen);

  /* Set up the sockets and per-host congestion */

  nmp->nm_sotype  = argp->sotype;

  if (nmp->nm_sotype == SOCK_DGRAM || nmp->nm_sotype == SOCK_STREAM)
    {
      /* Connection-less... connect now */

      /* Create an instance of the rpc state structure */

      rpc = (struct rpcclnt *)malloc(sizeof(struct rpcclnt));
      if (!rpc)
        {
          ferr("ERROR: Failed to allocate rpc structure\n");
          error = ENOMEM;
          goto bad;
        }

      (void)memset_s(rpc, sizeof(struct rpcclnt), 0, sizeof(struct rpcclnt));

      finfo("Connecting\n");

      /* Translate nfsmnt flags -> rpcclnt flags */

      rpc->rc_path       = nmp->nm_path;
      rpc->rc_name       = &nmp->nm_nam;
      rpc->rc_sotype     = nmp->nm_sotype;
      rpc->rc_retry      = nmp->nm_retry;
      rpc->rc_so         = -1;

      nmp->nm_rpcclnt    = rpc;

      error = rpcclnt_connect(nmp->nm_rpcclnt);
      if (error != OK)
        {
          PRINTK("ERROR: nfs_connect failed: %d\n", error);
          goto bad;
        }
    }

  nmp->nm_mounted        = true;
  nmp->nm_so             = nmp->nm_rpcclnt->rc_so;
  nmp->nm_head           = NULL;
  nmp->nm_dir            = NULL;
  nmp->nm_fhsize         = nmp->nm_rpcclnt->rc_fhsize;
  (void)memcpy_s(&nmp->nm_fh, sizeof(nfsfh_t), &nmp->nm_rpcclnt->rc_fh, sizeof(nfsfh_t));

  /* Get the file attributes */

  getattr.fs.fsroot.length = txdr_unsigned(nmp->nm_fhsize);
  (void)memcpy_s(&getattr.fs.fsroot.handle, sizeof(nfsfh_t), &nmp->nm_fh, sizeof(nfsfh_t));

  error = nfs_request(nmp, NFSPROC_GETATTR,
                      (void *)&getattr, /* sizeof(struct FS3args) */
                      (sizeof(getattr.fs.fsroot.length) + nmp->nm_fhsize),
                      (void *)&resok, sizeof(struct rpc_reply_getattr));
  if (error)
    {
      ferr("ERROR: nfs_request failed: %d\n", error);
      goto bad;
    }

  /* Save the file attributes */

  (void)memcpy_s(&nmp->nm_fattr, sizeof(struct nfs_fattr), &resok.attr, sizeof(struct nfs_fattr));

  /* Mounted! */

  *handle = (void *)nmp;

  finfo("Successfully mounted\n");
  return OK;

bad:
  if (nmp)
    {
      /* Disconnect from the server */

      if (nmp->nm_rpcclnt)
        {
          rpcclnt_disconnect(nmp->nm_rpcclnt);
          free(nmp->nm_rpcclnt);
          nmp->nm_rpcclnt = NULL;
        }

      /* Free connection-related resources */

      (void)pthread_mutex_destroy(&nmp->nm_mux);

      free(nmp);
      nmp = NULL;
    }

  return -error; /*lint !e438*/
}


static enum VnodeType filetype_to_vnodetype(uint32_t filetype)
{
  if (filetype < 0 || filetype > 7)
    {
      return VNODE_TYPE_UNKNOWN;
    }

  enum VnodeType transfer_table[8] =
    {
      VNODE_TYPE_UNKNOWN,
      VNODE_TYPE_REG,
      VNODE_TYPE_DIR,
      VNODE_TYPE_BLK,
      VNODE_TYPE_CHR,
      VNODE_TYPE_LNK,
      VNODE_TYPE_UNKNOWN,
      VNODE_TYPE_FIFO
    };

  return transfer_table[filetype];
}

int nfs_mount(const char *server_ip_and_path, const char *mount_path,
              unsigned int uid, unsigned int gid)
{
  struct nfs_args         nfs_args = {0};
  char                    *server_ip_addr = NULL;
  char                    *server_nfs_path = NULL;
  int                     found_colon = 0;
  unsigned int            pos;
  int                     ret = -1;
  struct sockaddr_in      *nfs_srv_addr = NULL;
  size_t len;

  rpcclnt_setuidgid(uid, gid);

  len = strlen(server_ip_and_path);
  for (pos = 0; pos < len; pos++)
    {
      if (*(server_ip_and_path + pos) == ':')
        {
          found_colon = 1;
          break;
        }
    }

  if (!found_colon)
    {
      set_errno(ENOENT);
      goto nfs_mount_out;
    }

  server_ip_addr = (char *)malloc(pos + 1);
  if (server_ip_addr == NULL)
    {
      PRINTK("malloc failure\n");
      set_errno(ENOMEM);
      goto nfs_mount_out;
    }

  ret = strncpy_s(server_ip_addr, pos + 1, server_ip_and_path, pos);
  if (ret != EOK)
    {
      set_errno(ENOBUFS);
      goto nfs_free_node_out;
    }
  *(server_ip_addr + pos) = '\0';
  server_nfs_path = (char *)(server_ip_and_path + pos + 1);

  (void)memset_s(&nfs_args, sizeof(nfs_args), 0, sizeof(nfs_args));

  if (g_NFSMOUNT_HOOK != NULL)
    {
      g_NFSMOUNT_HOOK(&nfs_args);
    }

  nfs_args.path = server_nfs_path; /* server nfs dir */

  nfs_srv_addr = (struct sockaddr_in *)&nfs_args.addr;
  nfs_srv_addr->sin_family = AF_INET;
  ret = inet_pton(AF_INET, server_ip_addr, &nfs_srv_addr->sin_addr.s_addr);
  if (ret != 1)
    {
      ret = -1;
      set_errno(ECONNREFUSED);
      goto nfs_free_node_out;
    }
  nfs_srv_addr->sin_port = htons(PMAPPORT);

  nfs_args.addrlen = sizeof(nfs_args.addr);
#if (NFS_PROTO_TYPE == NFS_IPPROTO_TCP)
  nfs_args.sotype = SOCK_STREAM;
#elif (NFS_PROTO_TYPE == NFS_IPPROTO_UDP)
  nfs_args.sotype = SOCK_DGRAM;
#endif

  PRINTK("Mount nfs on %s:%s, uid:%d, gid:%d\n", server_ip_addr, server_nfs_path, uid, gid);
  ret = mount((const char *)NULL, mount_path, "nfs", 0, &nfs_args);

nfs_free_node_out:
  free(server_ip_addr);

nfs_mount_out:
  if (ret)
    {
      perror("mount nfs error");
      return -1;
    }
  PRINTK("Mount nfs finished.\n");
  return 0;
}

int vfs_nfs_mount(struct Mount *mnt, struct Vnode *device, const void *data)
{
  struct nfsmount *nmp = NULL;
  struct Vnode *vp = NULL;

  int ret = VnodeAlloc(&nfs_vops, &vp);
  if (ret != OK)
    {
      return -EADDRNOTAVAIL;
    }

  struct nfsnode *root = zalloc(sizeof(struct nfsnode));
  if (root == NULL)
    {
      (void)VnodeFree(vp);
      return -EADDRNOTAVAIL;
    }

  ret = nfs_bind(NULL, data, (void **)(&nmp), NULL);
  if (ret != OK || nmp == NULL)
    {
      (void)VnodeFree(vp);
      free(root);
      return -EAGAIN;
    }
  vp->originMount = mnt;
  vp->fop = &nfs_fops;
  vp->data = root;
  root->n_fhsize = nmp->nm_fhsize;
  (void)memcpy_s(&(root->n_fhandle), root->n_fhsize, &(nmp->nm_fh), nmp->nm_fhsize);
  mnt->vnodeCovered = vp;
  mnt->data = nmp;

  ret = vfs_nfs_stat_internal(nmp, root);
  if (ret == OK)
    {
      vp->type = root->n_type;
    }
  nmp->nm_permission = mnt->vnodeBeCovered->mode & 0777;
  nmp->nm_gid = mnt->vnodeBeCovered->gid;
  nmp->nm_uid = mnt->vnodeBeCovered->uid;
  vp->mode = type_to_mode(vp->type, nmp->nm_permission);
  vp->gid = nmp->nm_gid;
  vp->uid = nmp->nm_uid;
  return OK;
}

int vfs_nfs_lookup(struct Vnode *parent, const char *path, int len, struct Vnode **vpp)
{
  int ret;
  struct nfs_fattr obj_attributes;
  struct nfsmount *nmp;
  char filename[len + 1];
  struct file_handle fhandle;
M
mucor 已提交
852 853 854 855 856
  struct nfsnode *parent_nfs_node = NULL;
  struct nfsnode *nfs_node = NULL;
  nmp = (struct nfsmount *)(parent->originMount->data);
  nfs_mux_take(nmp);
  parent_nfs_node = (struct nfsnode *)parent->data;
W
wangchenyang 已提交
857
  fhandle.length = parent_nfs_node->n_fhsize;
M
mucor 已提交
858 859 860
  (void)memcpy_s(&(fhandle.handle), fhandle.length, &(parent_nfs_node->n_fhandle), parent_nfs_node->n_fhsize);
  filename[len] = '\0';
  (void)memcpy_s(filename, (len + 1), path, len);
W
wangchenyang 已提交
861 862 863 864

  ret = nfs_lookup(nmp, filename, &fhandle, &obj_attributes, NULL);
  if (ret != OK)
    {
M
mucor 已提交
865
      nfs_mux_release(nmp);
W
wangchenyang 已提交
866 867 868 869 870 871 872
      return -ENOENT;
    }

  /* Initialize the file private data.
   *
   * Copy the file handle.
   */
M
mucor 已提交
873
  nfs_node = zalloc(sizeof(struct nfsnode));
W
wangchenyang 已提交
874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890
  nfs_node->n_fhsize = (uint8_t)fhandle.length;
  memcpy_s(&(nfs_node->n_fhandle), nfs_node->n_fhsize, &(fhandle.handle), fhandle.length);
  nfs_node->n_name = zalloc(sizeof(filename));
  memcpy_s(nfs_node->n_name, (len + 1), filename, sizeof(filename));

  /* Save the file attributes */
  nfs_attrupdate(nfs_node, &obj_attributes);

  (void)VnodeAlloc(&nfs_vops, vpp);
  (*vpp)->parent = parent;
  (*vpp)->fop = &nfs_fops;
  (*vpp)->originMount = parent->originMount;
  (*vpp)->data = nfs_node;
  (*vpp)->type = filetype_to_vnodetype(nfs_node->n_type);
  (*vpp)->mode = type_to_mode((*vpp)->type, nmp->nm_permission);
  (*vpp)->gid = nmp->nm_gid;
  (*vpp)->uid = nmp->nm_uid;
M
mucor 已提交
891
  nfs_mux_release(nmp);
W
wangchenyang 已提交
892 893 894 895 896
  return OK;
}

int vfs_nfs_stat(struct Vnode *node, struct stat *buf)
{
M
mucor 已提交
897 898 899 900
  struct nfsnode *nfs_node = NULL;
  struct nfsmount *nmp = (struct nfsmount *)(node->originMount->data);
  nfs_mux_take(nmp);
  nfs_node = (struct nfsnode *)node->data;
W
wangchenyang 已提交
901 902 903 904 905 906 907 908 909
  buf->st_mode = node->mode;
  buf->st_gid = node->gid;
  buf->st_uid = node->uid;
  buf->st_size    = (off_t)nfs_node->n_size;
  buf->st_blksize = 0;
  buf->st_blocks  = 0;
  buf->st_mtime   = nfs_node->n_mtime;
  buf->st_atime   = nfs_node->n_atime;
  buf->st_ctime   = nfs_node->n_ctime;
M
mucor 已提交
910
  nfs_mux_release(nmp);
W
wangchenyang 已提交
911 912 913 914 915 916 917
  return OK;
}

int vfs_nfs_opendir(struct Vnode *node, struct fs_dirent_s *dir)
{
  int ret;
  struct nfsdir_s *nfs_dir = NULL;
M
mucor 已提交
918
  struct nfsnode *nfs_node = NULL;
W
wangchenyang 已提交
919 920 921 922 923
  struct nfsmount *nmp = (struct nfsmount *)(node->originMount->data);
  if (node->type != VNODE_TYPE_DIR) {
      return -ENOTDIR;
  }
  nfs_mux_take(nmp);
M
mucor 已提交
924
  nfs_node = (struct nfsnode *)node->data;
W
wangchenyang 已提交
925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001
  ret = nfs_checkmount(nmp);
  if (ret != OK) {
      ret = -ret;
      PRINTK("ERROR: nfs_checkmount failed: %d\n", ret);
      goto errout_with_mutex;
  }
  nfs_dir = (struct nfsdir_s *)malloc(sizeof(struct nfsdir_s));
  if (!nfs_dir) {
      ret = -ENOMEM;
      goto errout_with_mutex;
  }
  nfs_dir->nfs_fhsize = nfs_node->n_fhsize;
  nfs_dir->nfs_cookie[0] = 0;
  nfs_dir->nfs_cookie[1] = 0;
  (void)memcpy_s(nfs_dir->nfs_fhandle, DIRENT_NFS_MAXHANDLE, &(nfs_node->n_fhandle), DIRENT_NFS_MAXHANDLE);
  dir->u.fs_dir = (fs_dir_s)nfs_dir;
  ret = OK;

  nfs_dir->nfs_next = nmp->nm_dir;
  nmp->nm_dir = nfs_dir;
  nfs_dir->nfs_dir = dir;
  nfs_dir->nfs_entries = NULL;

errout_with_mutex:
  nfs_mux_release(nmp);
  return ret;
}

int vfs_nfs_readdir(struct Vnode *node, struct fs_dirent_s *dir)
{
  struct nfsmount *nmp;
  struct file_handle fhandle;
  struct nfs_fattr obj_attributes;
  struct nfsdir_s *nfs_dir = NULL;
  struct entry3   *entry = NULL;
  struct entry3   *entry_pos = NULL;

  /* Use 2 cookies */

  uint32_t cookies[2];
  uint32_t tmp;
  uint32_t *ptr = NULL;
  size_t d_name_size;
  int reqlen;
  int error = 0;
  int i = 0;

  /* Sanity checks */

  /* Recover our private data from the vnode instance */

  nmp = (struct nfsmount *)(node->originMount->data);

  /* Make sure that the mount is still healthy */

  nfs_mux_take(nmp);
  error = nfs_checkmount(nmp);
  if (error != OK)
    {
      PRINTK("ERROR: nfs_checkmount failed: %d\n", error);
      goto errout_with_mutex;
    }

  /* Request a block directory entries, copying directory information from
   * the dirent structure.
   */
  nfs_dir = (struct nfsdir_s *)dir->u.fs_dir;
  cookies[0] = 0;
  cookies[1] = 0;

  if (nfs_dir && nfs_dir->nfs_entries && (nfs_dir->nfs_entries->file_id[0] == (uint32_t)EOF))
    {
      error = ENOENT;
      free(nfs_dir->nfs_entries);
      nfs_dir->nfs_entries = NULL;
      goto errout_with_mutex;
    }
M
mucor 已提交
1002
  while (i < dir->read_cnt)
W
wangchenyang 已提交
1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305
    {
      if (!nfs_dir->nfs_entries)
        {
          entry_pos = nfs_dir->nfs_entries;
          do
            {
              ptr     = (uint32_t *)&nmp->nm_msgbuffer.readdir.readdir;
              reqlen  = 0;

              /* Copy the variable length, directory file handle */

              *ptr++  = txdr_unsigned((uint32_t)nfs_dir->nfs_fhsize);
              reqlen += sizeof(uint32_t);

              (void)memcpy_s(ptr, nfs_dir->nfs_fhsize, nfs_dir->nfs_fhandle, nfs_dir->nfs_fhsize);
              reqlen += (int)nfs_dir->nfs_fhsize;
              ptr    += uint32_increment((int)nfs_dir->nfs_fhsize);

              /* Cookie and cookie verifier */

              ptr[0] = cookies[0];
              ptr[1] = cookies[1];
              ptr    += 2;
              reqlen += 2 * sizeof(uint32_t);

              (void)memcpy_s(ptr, DIRENT_NFS_VERFLEN, nfs_dir->nfs_verifier, DIRENT_NFS_VERFLEN);
              ptr    += uint32_increment(DIRENT_NFS_VERFLEN);
              reqlen += DIRENT_NFS_VERFLEN;

              /* Number of directory entries (We currently only process one entry at a time) */

              *ptr    = txdr_unsigned((uint32_t)nmp->nm_readdirsize);
              reqlen += sizeof(uint32_t);

              /* And read the directory */

              nfs_statistics(NFSPROC_READDIR);
              error = nfs_request(nmp, NFSPROC_READDIR,
                                  (void *)&nmp->nm_msgbuffer.readdir, reqlen,
                                  (void *)nmp->nm_iobuffer, nmp->nm_buflen);

              if (error != OK)
                {
                  PRINTK("ERROR: nfs_request failed: %d\n", error);
                  goto errout_with_mutex;
                }

              /* A new group of entries was successfully read.  Process the
               * information contained in the response header.  This information
               * includes:
               *
               * 1) Attributes follow indication - 4 bytes
               * 2) Directory attributes         - sizeof(struct nfs_fattr)
               * 3) Cookie verifier              - NFSX_V3COOKIEVERF bytes
               * 4) Values follows indication    - 4 bytes
               */

              ptr = (uint32_t *)&((struct rpc_reply_readdir *)nmp->nm_iobuffer)->readdir;

              /* Check if attributes follow, if 0 so Skip over the attributes */

              tmp = *ptr++;
              if (tmp != 0)
                {
                  /* Attributes are not currently used */

                  ptr += uint32_increment(sizeof(struct nfs_fattr));
                }

              /* Save the verification cookie */

              (void)memcpy_s(nfs_dir->nfs_verifier, DIRENT_NFS_VERFLEN, ptr, DIRENT_NFS_VERFLEN);
              ptr += uint32_increment(DIRENT_NFS_VERFLEN);

              /* Check if values follow.  If no values follow, then the EOF indication
               * will appear next.
               */

              tmp = *ptr++;
              if (tmp == 0)
                {
                  /* No values follow, then the reply should consist only of a 4-byte
                   * end-of-directory indication.
                   */

                  tmp = *ptr++;
                  if (tmp != 0)
                    {
                      error = ENOENT;
                    }

                  /* What would it mean if there were not data and we not at the end of
                   * file?
                   */

                  else
                    {
                      error = EAGAIN;
                    }
                  goto errout_with_mutex;
                }

              /* If we are not at the end of the directory listing, then a set of entries
               * will follow the header.  Each entry is of the form:
               *
               *    File ID (8 bytes)
               *    Name length (4 bytes)
               *    Name string (varaiable size but in multiples of 4 bytes)
               *    Cookie (8 bytes)
               *    next entry (4 bytes)
               */

               do
                {
                  NFS_DIR_ENTRY_MALLOC(entry);

                  /* There is an entry. Skip over the file ID and point to the length */

                  entry->file_id[0] = *ptr++;
                  entry->file_id[1] = *ptr++; /*lint !e662 !e661*/

                  /* Get the length and point to the name */

                  tmp    = *ptr++; /*lint !e662 !e661*/
                  entry->name_len = fxdr_unsigned(uint32_t, tmp);
                  entry->contents = (uint8_t *)malloc(entry->name_len + 1);
                  if (!entry->contents)
                    {
                      free(entry);
                      entry = NULL;
                      goto errout_with_memory;
                    }
                  (void)memset_s(entry->contents, entry->name_len + 1, 0, entry->name_len + 1);

                  error = strncpy_s((char *)entry->contents, entry->name_len + 1, (const char *)ptr, entry->name_len);
                  if (error != EOK)
                    {
                      free(entry->contents);
                      entry->contents = NULL;
                      free(entry);
                      entry = NULL;
                      error = ENOBUFS;
                      goto errout_with_memory;
                    }
                  /* Increment the pointer past the name (allowing for padding). ptr
                   * now points to the cookie.
                   */

                  ptr += uint32_increment(entry->name_len);

                  /* Save the cookie and increment the pointer to the next entry */

                  entry->cookie[0] = *ptr++;
                  entry->cookie[1] = *ptr++;

                  /* Get the file attributes associated with this name and return
                   * the file type.
                   */

                  if (strcmp((char *)entry->contents, ".") == 0 || strcmp((char *)entry->contents, "..") == 0)
                    {
                      NFS_DIR_ENTRY_FREE(entry);
                      continue;
                    }

                  if (!nfs_dir->nfs_entries)
                    {
                      entry_pos = entry;
                      nfs_dir->nfs_entries = entry;
                    }
                  else
                    {
                      entry_pos->next = entry;
                      entry_pos = entry;
                    }
                }
              while (*ptr++);
              if (entry_pos)
                {
                  cookies[0] = entry_pos->cookie[0];
                  cookies[1] = entry_pos->cookie[1];
                }
            }
          while (!(*ptr));

          if (!nfs_dir->nfs_entries)
            {
              error = ENOENT;
              goto errout_with_mutex;
            }

          NFS_DIR_ENTRY_MALLOC(entry);

          /* There is an entry. Skip over the file ID and point to the length */

          entry->file_id[0] = (uint32_t)EOF;
          if (!entry_pos)
            {
              error = ENOENT;
              NFS_DIR_ENTRY_FREE(entry);
              goto errout_with_mutex;
            }
          entry_pos->next = entry;
          entry_pos = entry;
        }

      entry_pos = nfs_dir->nfs_entries;
      if (nfs_dir->nfs_entries->file_id[0] == (uint32_t)EOF)
        {
          error = ENOENT;
          goto errout_with_mutex;
        }

      d_name_size = sizeof(dir->fd_dir[i].d_name);
      error = memcpy_s(dir->fd_dir[i].d_name, d_name_size, (const char *)entry_pos->contents, (size_t)entry_pos->name_len);
      if (error != EOK)
        {
          error = ENOBUFS;
          goto errout_with_memory;
        }
      if (entry_pos->name_len >= d_name_size)
        {
          dir->fd_dir[i].d_name[d_name_size - 1] = '\0';
        }
      else
        {
          dir->fd_dir[i].d_name[entry_pos->name_len] = '\0';
        }

      nfs_dir->nfs_entries = entry_pos->next;
      NFS_DIR_ENTRY_FREE(entry_pos);

      fhandle.length = (uint32_t)nfs_dir->nfs_fhsize;
      (void)memcpy_s(&fhandle.handle, DIRENT_NFS_MAXHANDLE, nfs_dir->nfs_fhandle, DIRENT_NFS_MAXHANDLE);

      error = nfs_lookup(nmp, dir->fd_dir[i].d_name, &fhandle, &obj_attributes, NULL);
      if (error != OK)
      {
        PRINTK("ERROR: nfs_lookup failed: %d\n", error);
        goto errout_with_memory;
      }

      /* Set the dirent file type */

      tmp = fxdr_unsigned(uint32_t, obj_attributes.fa_type);
      switch (tmp)
        {
        default:
        case NFNON:        /* Unknown type */
        case NFSOCK:       /* Socket */
        case NFLNK:        /* Symbolic link */
          break;

        case NFREG:        /* Regular file */
          dir->fd_dir[i].d_type = DT_REG;
          break;

        case NFDIR:        /* Directory */
          dir->fd_dir[i].d_type = DT_DIR;
          break;

        case NFBLK:        /* Block special device file */
          dir->fd_dir[i].d_type = DT_BLK;
          break;

        case NFFIFO:       /* Named FIFO */
        case NFCHR:        /* Character special device file */
          dir->fd_dir[i].d_type = DT_CHR;
          break;
        }
      dir->fd_position++;
      dir->fd_dir[i].d_off = dir->fd_position;
      dir->fd_dir[i].d_reclen = (uint16_t)sizeof(struct dirent);
      i++;
    }
  nfs_mux_release(nmp);
  return i;

errout_with_memory:
  for (entry_pos = nfs_dir->nfs_entries; entry_pos != NULL; entry_pos = nfs_dir->nfs_entries)
    {
      nfs_dir->nfs_entries = entry_pos->next;
      NFS_DIR_ENTRY_FREE(entry_pos);
    }
errout_with_mutex:
  nfs_mux_release(nmp);
  if (error == ENOENT && i > 0)
    {
      return i;
    }
  return -error;
}
extern int nfs_getfilename(char *dstpath, unsigned int dstpathLen, const char *srcpath, unsigned int maxlen);
extern int nfs_rename(struct Vnode *mountpt, const char *oldrelpath, const char *newrelpath);
int vfs_nfs_rename(struct Vnode *from_vnode, struct Vnode *to_parent,
                   const char *from_name, const char *to_name)
{
  int error;
  int reqlen;
  int namelen;
  uint32_t *ptr = NULL;
  struct Vnode *to_vnode = NULL;
  struct Vnode *from_parent = from_vnode->parent;
M
mucor 已提交
1306 1307
  struct nfsnode *from_node = NULL;
  struct nfsnode *to_node = NULL;
W
wangchenyang 已提交
1308 1309 1310 1311 1312 1313 1314 1315 1316
  struct nfsmount *nmp = (struct nfsmount *)(to_parent->originMount->data);

  nfs_mux_take(nmp);
  error = nfs_checkmount(nmp);
  if (error != OK)
    {
      PRINTK("ERROR: nfs_checkmount failed: %d\n", error);
      goto errout_with_mutex;
    }
M
mucor 已提交
1317 1318 1319 1320

  from_node = (struct nfsnode *)from_parent->data;
  to_node = (struct nfsnode *)to_parent->data;

W
wangchenyang 已提交
1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395
  ptr    = (uint32_t *)&nmp->nm_msgbuffer.renamef.rename;
  reqlen = 0;

  /* Copy the variable length, 'from' directory file handle */

  *ptr++  = txdr_unsigned(from_node->n_fhsize);
  reqlen += sizeof(uint32_t);

  (void)memcpy_s(ptr, from_node->n_fhsize, &from_node->n_fhandle, from_node->n_fhsize);
  reqlen += (int)from_node->n_fhsize;
  ptr    += uint32_increment(from_node->n_fhsize);

  /* Copy the variable-length 'from' object name */

  namelen = strlen(from_name);

  *ptr++  = txdr_unsigned(namelen);
  reqlen += sizeof(uint32_t);

  (void)memcpy_s(ptr, namelen, from_name, namelen);
  reqlen += uint32_alignup(namelen);
  ptr    += uint32_increment(namelen);

  /* Copy the variable length, 'to' directory file handle */

  *ptr++  = txdr_unsigned(to_node->n_fhsize);
  reqlen += sizeof(uint32_t);

  (void)memcpy_s(ptr, to_node->n_fhsize, &to_node->n_fhandle, to_node->n_fhsize);
  ptr    += uint32_increment(to_node->n_fhsize);
  reqlen += (int)to_node->n_fhsize;

  /* Copy the variable-length 'to' object name */

  namelen = strlen(to_name);

  *ptr++  = txdr_unsigned(namelen);
  reqlen += sizeof(uint32_t);

  (void)memcpy_s(ptr, namelen, to_name, namelen);
  reqlen += uint32_alignup(namelen);

  /* Perform the RENAME RPC */

  nfs_statistics(NFSPROC_RENAME);
  error = nfs_request(nmp, NFSPROC_RENAME,
      (void *)&nmp->nm_msgbuffer.renamef, reqlen,
      (void *)nmp->nm_iobuffer, nmp->nm_buflen);
  if (error != OK)
    {
      PRINTK("ERROR: nfs_request returned: %d\n", error);
      goto errout_with_mutex;
    }

  error = vfs_nfs_lookup(to_parent, to_name, strlen(to_name), &to_vnode);
  if (error != OK)
    {
      error = -error;
      PRINTK("ERROR: nfs_rename not finish\n");
      goto errout_with_mutex;
    }
  vfs_nfs_reclaim(from_vnode);
  from_vnode->data = to_vnode->data;
  from_vnode->parent = to_parent;
  to_vnode->data = NULL;
  VnodeFree(to_vnode);

errout_with_mutex:
  nfs_mux_release(nmp);
  return -error;
}

int vfs_nfs_mkdir(struct Vnode *parent, const char *dirname, mode_t mode, struct Vnode **vpp)
{
  struct nfsmount *nmp = (struct nfsmount *)(parent->originMount->data);
M
mucor 已提交
1396
  struct nfsnode *parent_nfs_node = NULL;
W
wangchenyang 已提交
1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419
  struct nfs_fattr obj_attributes;
  struct nfsnode *target_node = NULL;
  struct file_handle fhandle;
  uint32_t          *ptr = NULL;
  uint32_t               tmp;
  int                    namelen;
  int                    reqlen;
  int                    error;

  /* Sanity checks */

  DEBUGASSERT(mountpt && mountpt->i_private);

  /* Check if the mount is still healthy */

  nfs_mux_take(nmp);
  error = nfs_checkmount(nmp);
  if (error != OK)
    {
      PRINTK("ERROR: nfs_checkmount: %d\n", error);
      goto errout_with_mutex;
    }

M
mucor 已提交
1420 1421
  parent_nfs_node = (struct nfsnode *)parent->data;

W
wangchenyang 已提交
1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559
  /* Format the MKDIR call message arguments */

  ptr    = (uint32_t *)&nmp->nm_msgbuffer.mkdir.mkdir;
  reqlen = 0;

  /* Copy the variable length, directory file handle */

  *ptr++  = txdr_unsigned(parent_nfs_node->n_fhsize);
  reqlen += sizeof(uint32_t);

  memcpy_s(ptr, parent_nfs_node->n_fhsize, &(parent_nfs_node->n_fhandle), parent_nfs_node->n_fhsize);
  ptr    += uint32_increment(parent_nfs_node->n_fhsize);
  reqlen += (int)parent_nfs_node->n_fhsize;

  /* Copy the variable-length directory name */

  namelen = strlen(dirname);

  *ptr++  = txdr_unsigned(namelen);
  reqlen += sizeof(uint32_t);

  (void)memcpy_s(ptr, namelen, dirname, namelen);
  ptr    += uint32_increment(namelen);
  reqlen += uint32_alignup(namelen);

  /* Set the mode.  NOTE: Here we depend on the fact that the NuttX and NFS
   * bit settings are the same (at least for the bits of interest).
   */

  *ptr++  = nfs_true; /* True: mode value follows */
  reqlen += sizeof(uint32_t);

  if (!mode)
    {
      mode = (NFSMODE_IXOTH | NFSMODE_IROTH |
              NFSMODE_IXGRP | NFSMODE_IRGRP |
              NFSMODE_IXUSR | NFSMODE_IWUSR | NFSMODE_IRUSR);
    }
  tmp = mode & (NFSMODE_IXOTH | NFSMODE_IWOTH | NFSMODE_IROTH |
                NFSMODE_IXGRP | NFSMODE_IWGRP | NFSMODE_IRGRP |
                NFSMODE_IXUSR | NFSMODE_IWUSR | NFSMODE_IRUSR);
  *ptr++  = txdr_unsigned(tmp);
  reqlen += sizeof(uint32_t);

  /* Set the user ID to zero */

  *ptr++  = nfs_true;             /* True: Uid value follows */
  *ptr++  = 0;                    /* UID = 0 (nobody) */
  reqlen += 2*sizeof(uint32_t);

  /* Set the group ID to one */

  *ptr++  = nfs_true;            /* True: Gid value follows */
  *ptr++  = htonl(1);            /* GID = 1 (nogroup) */
  reqlen += 2*sizeof(uint32_t);

  /* No size */

  *ptr++  = nfs_false; /* False: No size value follows */
  reqlen += sizeof(uint32_t);

  /* Don't change times */

  *ptr++  = htonl(NFSV3SATTRTIME_DONTCHANGE); /* Don't change atime */
  *ptr++  = htonl(NFSV3SATTRTIME_DONTCHANGE); /* Don't change mtime */
  reqlen += 2*sizeof(uint32_t);

  /* Perform the MKDIR RPC */

  nfs_statistics(NFSPROC_MKDIR);
  error = nfs_request(nmp, NFSPROC_MKDIR,
      (void *)&nmp->nm_msgbuffer.mkdir, reqlen,
      (void *)nmp->nm_iobuffer, nmp->nm_buflen);
  if (error)
    {
      PRINTK("ERROR: nfs_request failed: %d\n", error);
      goto errout_with_mutex;
    }

  fhandle.length = parent_nfs_node->n_fhsize;
  memcpy_s(&(fhandle.handle), DIRENT_NFS_MAXHANDLE, &(parent_nfs_node->n_fhandle), fhandle.length);
  error = nfs_lookup(nmp, dirname, &fhandle, &obj_attributes, NULL);
  if (error)
    {
      error = ENOENT;
      goto errout_with_mutex;
    }

  /* Initialize the file private data.
   *
   * Copy the file handle.
   */
  target_node = zalloc(sizeof(struct nfsnode));
  target_node->n_fhsize = (uint8_t)fhandle.length;
  memcpy_s(&(target_node->n_fhandle), target_node->n_fhsize, &(fhandle.handle), fhandle.length);
  target_node->n_name = zalloc(sizeof (dirname));
  memcpy_s(target_node->n_name, sizeof(dirname), dirname, sizeof (dirname));

  /* Save the file attributes */
  nfs_attrupdate(target_node, &obj_attributes);
  (void)VnodeAlloc(&nfs_vops, vpp);
  (*vpp)->parent = parent;
  (*vpp)->fop = &nfs_fops;
  (*vpp)->originMount = parent->originMount;
  (*vpp)->data = target_node;
  (*vpp)->type = filetype_to_vnodetype(target_node->n_type);
  (*vpp)->mode = type_to_mode((*vpp)->type, nmp->nm_permission);
  (*vpp)->gid = nmp->nm_gid;
  (*vpp)->uid = nmp->nm_uid;

errout_with_mutex:
  nfs_mux_release(nmp);
  return -error;
}

int vfs_nfs_write(struct file *filep, const char *buffer, size_t buflen)
{
  struct nfsmount       *nmp;
  struct nfsnode        *np;
  loff_t                f_pos;
  size_t                writesize;
  size_t                bufsize;
  size_t                byteswritten;
  size_t                reqlen;
  uint32_t              *ptr = NULL;
  uint32_t              tmp;
  int                   committed = NFSV3WRITE_UNSTABLE;
  int                   error;
  char                  *temp_buffer = NULL;
  struct file_handle    parent_fhandle;

  struct Vnode *node = filep->f_vnode;
  nmp = (struct nfsmount *)(node->originMount->data);
  DEBUGASSERT(nmp != NULL);

  /* Make sure that the mount is still healthy */

  nfs_mux_take(nmp);
M
mucor 已提交
1560
  np  = (struct nfsnode *)node->data;
W
wangchenyang 已提交
1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758
  error = nfs_checkmount(nmp);
  if (error != OK)
    {
      PRINTK("ERROR: nfs_checkmount failed: %d\n", error);
      goto errout_with_mutex;
    }

  parent_fhandle.length = ((struct nfsnode *)node->parent->data)->n_fhsize;
  memcpy_s(&(parent_fhandle.handle), parent_fhandle.length,
      &(((struct nfsnode *)node->parent->data)->n_fhandle),
      ((struct nfsnode *)node->parent->data)->n_fhsize);

  if (filep->f_oflags & O_APPEND)
    {
      if (nfs_fileupdate(nmp, np->n_name, &parent_fhandle, np) == OK)
        {
          f_pos = np->n_size;
        }
      else
        {
          error = EAGAIN;
          goto errout_with_mutex;
        }
    }
  else
    {
      f_pos = filep->f_pos;
    }

  /* Check if the file size would exceed the range of off_t */

  if (np->n_size + buflen < np->n_size)
    {
      error = EFBIG;
      goto errout_with_mutex;
    }

  /* Allocate memory for data */

  bufsize = (buflen < nmp->nm_wsize) ? buflen : nmp->nm_wsize;
  temp_buffer = malloc(bufsize);
  if (temp_buffer == NULL)
    {
      error = ENOMEM;
      goto errout_with_mutex;
    }

  /* Now loop until we send the entire user buffer */

  writesize = 0;
  for (byteswritten = 0; byteswritten < buflen; )
    {
      /* Make sure that the attempted write size does not exceed the RPC
       * maximum.
       */

      writesize = buflen - byteswritten;
      if (writesize > nmp->nm_wsize)
        {
          writesize = nmp->nm_wsize;
        }

      /* Make sure that the attempted read size does not exceed the IO
       * buffer size.
       */

      bufsize = SIZEOF_rpc_call_write(writesize);
      if (bufsize > nmp->nm_buflen)
        {
          writesize -= (bufsize - nmp->nm_buflen);
        }

      /* Copy a chunk of the user data into the temporary buffer */

      if (LOS_CopyToKernel(temp_buffer, writesize, buffer, writesize) != 0)
        {
          error = EINVAL;
          goto errout_with_memfree;
        }

      /* Initialize the request.  Here we need an offset pointer to the write
       * arguments, skipping over the RPC header.  Write is unique among the
       * RPC calls in that the entry RPC calls messasge lies in the I/O buffer
       */

      ptr     = (uint32_t *)&((struct rpc_call_write *)
          nmp->nm_iobuffer)->write;
      reqlen  = 0;

      /* Copy the variable length, file handle */

      *ptr++  = txdr_unsigned((uint32_t)np->n_fhsize);
      reqlen += sizeof(uint32_t);

      (void)memcpy_s(ptr, np->n_fhsize, &np->n_fhandle, np->n_fhsize);
      reqlen += (int)np->n_fhsize;
      ptr    += uint32_increment((int)np->n_fhsize);

      /* Copy the file offset */

      txdr_hyper((uint64_t)f_pos, ptr);
      ptr    += 2;
      reqlen += 2*sizeof(uint32_t);

      /* Copy the count and stable values */

      *ptr++  = txdr_unsigned(writesize);
      *ptr++  = txdr_unsigned((uint32_t)committed);
      reqlen += 2*sizeof(uint32_t);

      /* Copy a chunk of the user data into the I/O buffer from temporary buffer */

      *ptr++  = txdr_unsigned(writesize);
      reqlen += sizeof(uint32_t);
      error = memcpy_s(ptr, writesize, temp_buffer, writesize);
      if (error != EOK)
        {
          error = ENOBUFS;
          goto errout_with_memfree;
        }
      reqlen += uint32_alignup(writesize);

      /* Perform the write */

      nfs_statistics(NFSPROC_WRITE);
      error = nfs_request(nmp, NFSPROC_WRITE,
          (void *)nmp->nm_iobuffer, reqlen,
          (void *)&nmp->nm_msgbuffer.write,
          sizeof(struct rpc_reply_write));
      if (error)
        {
          goto errout_with_memfree;
        }

      /* Get a pointer to the WRITE reply data */

      ptr = (uint32_t *)&nmp->nm_msgbuffer.write.write;

      /* Parse file_wcc.  First, check if WCC attributes follow. */

      tmp = *ptr++;
      if (tmp != 0)
        {
          /* Yes.. WCC attributes follow.  But we just skip over them. */

          ptr += uint32_increment(sizeof(struct wcc_attr));
        }

      /* Check if normal file attributes follow */

      tmp = *ptr++;
      if (tmp != 0)
        {
          /* Yes.. Update the cached file status in the file structure. */

          nfs_attrupdate(np, (struct nfs_fattr *)ptr);
          ptr += uint32_increment(sizeof(struct nfs_fattr));
        }

      /* Get the count of bytes actually written */

      tmp = fxdr_unsigned(uint32_t, *ptr);
      ptr++;

      if (tmp < 1 || tmp > writesize)
        {
          error = EIO;
          goto errout_with_memfree;
        }

      writesize = tmp;
      f_pos += writesize;
      filep->f_pos = f_pos;
      np->n_fpos = f_pos;

      /* Update the read state data */

      if (filep->f_pos > (loff_t)np->n_size)
        {
          np->n_size = f_pos;
        }
      byteswritten += writesize;
      buffer       += writesize;
  }

  free(temp_buffer);
  nfs_mux_release(nmp);
  return byteswritten;
errout_with_memfree:
  free(temp_buffer);
errout_with_mutex:
  nfs_mux_release(nmp);
  return -error;
}

off_t vfs_nfs_seek(struct file *filep, off_t offset, int whence)
{
  struct Vnode *node = filep->f_vnode;
M
mucor 已提交
1759
  struct nfsnode  *np = NULL;
W
wangchenyang 已提交
1760 1761 1762 1763 1764 1765 1766
  struct nfsmount *nmp = (struct nfsmount *)(node->originMount->data);
  int                        error;
  off_t                      position;

  /* Make sure that the mount is still healthy */

  nfs_mux_take(nmp);
M
mucor 已提交
1767
  np = (struct nfsnode *)node->data;
W
wangchenyang 已提交
1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845
  error = nfs_checkmount(nmp);
  if (error != OK)
    {
      PRINTK("nfs_checkmount failed: %d\n", error);
      goto errout_with_mutex;
    }


  switch (whence)
    {
    case SEEK_SET: /* The offset is set to offset bytes. */
      position = offset;
      break;

    case SEEK_CUR: /* The offset is set to its current location plus offset bytes. */
      position = offset + filep->f_pos;
      break;

    case SEEK_END: /* The offset is set to the size of the file plus offset bytes. */
      position = offset + np->n_size;
      break;

    default:
      error = EINVAL;
      goto errout_with_mutex;
    }

  /* Attempts to set the position beyound the end of file will
   * work if the file is open for write access.
   */

  if ((position > (off_t)np->n_size) && ((np->n_oflags & O_WRONLY) == 0) &&
      ((np->n_oflags & O_RDWR) == 0))
  {
      position = np->n_size;
  }

  /* position less than 0 should be reset to 0 */

  if (position < 0)
  {
      position = 0;
  }

  np->n_fpos = (loff_t)position;
  filep->f_pos = np->n_fpos;
  if (position > (off_t)np->n_size)
  {
      np->n_size = (loff_t)position;
  }
  nfs_mux_release(nmp);
  return (off_t)filep->f_pos;

errout_with_mutex:
  nfs_mux_release(nmp);
  return -error;
}

ssize_t vfs_nfs_read(struct file *filep, char *buffer, size_t buflen)
{
  struct nfsnode            *np;
  struct rpc_reply_read     *read_response = NULL;
  size_t                     readsize;
  size_t                     tmp;
  size_t                     bytesread;
  size_t                     reqlen;
  uint32_t                  *ptr = NULL;
  int                        error = 0;
  struct file_handle         parent_fhandle;

  struct Vnode *node = filep->f_vnode;
  struct nfsmount *nmp = (struct nfsmount *)(node->originMount->data);

  DEBUGASSERT(nmp != NULL);

  /* Make sure that the mount is still healthy */

  nfs_mux_take(nmp);
M
mucor 已提交
1846
  np  = (struct nfsnode *)node->data;
W
wangchenyang 已提交
1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161
  error = nfs_checkmount(nmp);
  if (error != OK)
    {
      PRINTK("ERROR: nfs_checkmount failed: %d\n", error);
      goto errout_with_mutex;
    }


  parent_fhandle.length = ((struct nfsnode *)node->parent->data)->n_fhsize;
  memcpy_s(&(parent_fhandle.handle), parent_fhandle.length,
      &(((struct nfsnode *)node->parent->data)->n_fhandle),
      ((struct nfsnode *)node->parent->data)->n_fhsize);
  error = nfs_fileupdate(nmp, np->n_name, &parent_fhandle, np);
  if (error != OK)
    {
      PRINTK("nfs_fileupdate failed: %d\n", error);
      goto errout_with_mutex;
    }

  /* Get the number of bytes left in the file and truncate read count so that
   * it does not exceed the number of bytes left in the file.
   */

  tmp = np->n_size - filep->f_pos;
  if (buflen > tmp)
    {
      buflen = tmp;
    }

  /* Now loop until we fill the user buffer (or hit the end of the file) */

  for (bytesread = 0; bytesread < buflen; )
    {
      /* Make sure that the attempted read size does not exceed the RPC maximum */

      readsize = buflen - bytesread;
      if (readsize > nmp->nm_rsize)
        {
          readsize = nmp->nm_rsize;
        }

      /* Make sure that the attempted read size does not exceed the IO buffer size */

      tmp = SIZEOF_rpc_reply_read(readsize);
      if (tmp > nmp->nm_buflen)
        {
          readsize -= (tmp - nmp->nm_buflen);
        }

      /* Initialize the request */

      ptr     = (uint32_t *)&nmp->nm_msgbuffer.read.read;
      reqlen  = 0;

      /* Copy the variable length, file handle */

      *ptr++  = txdr_unsigned((uint32_t)np->n_fhsize);
      reqlen += sizeof(uint32_t);

      memcpy_s(ptr, np->n_fhsize, &np->n_fhandle, np->n_fhsize);
      reqlen += (int)np->n_fhsize;
      ptr    += uint32_increment((int)np->n_fhsize);

      /* Copy the file offset */

      txdr_hyper((uint64_t)filep->f_pos, ptr);
      ptr += 2;
      reqlen += 2*sizeof(uint32_t);

      /* Set the readsize */

      *ptr = txdr_unsigned(readsize);
      reqlen += sizeof(uint32_t);

      /* Perform the read */

      nfs_statistics(NFSPROC_READ);
      error = nfs_request(nmp, NFSPROC_READ,
          (void *)&nmp->nm_msgbuffer.read, reqlen,
          (void *)nmp->nm_iobuffer, nmp->nm_buflen);
      if (error)
        {
          PRINTK("ERROR: nfs_request failed: %d\n", error);
          goto errout_with_mutex;
        }

      /* The read was successful.  Get a pointer to the beginning of the NFS
       * response data.
       */

      read_response = (struct rpc_reply_read *)nmp->nm_iobuffer;
      readsize = fxdr_unsigned(uint32_t, read_response->read.hdr.count);

      /* Copy the read data into the user buffer */

      if (LOS_CopyFromKernel(buffer, buflen, (const void *)read_response->read.data, readsize) != 0)
        {
          error = EINVAL;
          goto errout_with_mutex;
        }

      /* Update the read state data */

      filep->f_pos += readsize;
      np->n_fpos   += readsize;
      bytesread    += readsize;
      buffer       += readsize;

      /* Check if we hit the end of file */

      if (read_response->read.hdr.eof != 0)
        {
          break;
        }
    }

  nfs_mux_release(nmp);
  return bytesread;

errout_with_mutex:
  nfs_mux_release(nmp);
  return -error;
}

int vfs_nfs_create(struct Vnode *parent, const char *filename, int mode, struct Vnode **vpp)
{
  uint32_t           *ptr = NULL;
  uint32_t            tmp;
  int                 namelen;
  int                 reqlen;
  int                 error;
  struct nfsnode *parent_nfs_node = (struct nfsnode *)parent->data;
  struct nfsmount *nmp = (struct nfsmount *)(parent->originMount->data);
  struct nfsnode *np = zalloc(sizeof(struct nfsnode));
  nfs_mux_take(nmp);
  error = nfs_checkmount(nmp);
  if (error != OK)
    {
      PRINTK("ERROR: nfs_checkmount failed: %d\n", error);
      goto errout_with_mutex;
    }
  ptr    = (uint32_t *)&nmp->nm_msgbuffer.create.create;
  reqlen = 0;

  /* Copy the variable length, directory file handle */

  *ptr++  = txdr_unsigned(parent_nfs_node->n_fhsize);
  reqlen += sizeof(uint32_t);

  (void)memcpy_s(ptr, parent_nfs_node->n_fhsize, &parent_nfs_node->n_fhandle, parent_nfs_node->n_fhsize);
  reqlen += (int)parent_nfs_node->n_fhsize;
  ptr    += uint32_increment(parent_nfs_node->n_fhsize);

  /* Copy the variable-length file name */

  namelen = strlen(filename);

  *ptr++  = txdr_unsigned(namelen);
  reqlen += sizeof(uint32_t);

  (void)memcpy_s(ptr, namelen, filename, namelen);
  ptr    += uint32_increment(namelen);
  reqlen += uint32_alignup(namelen);

  /* Set the creation mode */

#ifdef USE_GUARDED_CREATE
  *ptr++  = htonl(NFSV3CREATE_GUARDED);
#else
  *ptr++  = htonl(NFSV3CREATE_EXCLUSIVE);
#endif

  reqlen += sizeof(uint32_t);

  /* Mode information is not provided if EXCLUSIVE creation is used.
   * in this case, we must call SETATTR after successfully creating
   * the file.
   */

  /* Set the mode.  NOTE: Here we depend on the fact that the NuttX and NFS
   * bit settings are the same (at least for the bits of interest).
   */

  *ptr++  = nfs_true; /* True: mode value follows */
  reqlen += sizeof(uint32_t);

  tmp = mode & (NFSMODE_IWOTH | NFSMODE_IROTH | NFSMODE_IWGRP |
      NFSMODE_IRGRP | NFSMODE_IWUSR | NFSMODE_IRUSR);
  *ptr++  = txdr_unsigned(tmp);
  reqlen += sizeof(uint32_t);

  /* Set the user ID to zero */

  *ptr++  = nfs_true;             /* True: Uid value follows */
  *ptr++  = 0;                    /* UID = 0 (nobody) */
  reqlen += 2*sizeof(uint32_t);

  /* Set the group ID to one */

  *ptr++  = nfs_true;            /* True: Gid value follows */
  *ptr++  = htonl(1);            /* GID = 1 (nogroup) */
  reqlen += 2*sizeof(uint32_t);

  /* Set the size to zero */

  *ptr++  = nfs_true;            /* True: Size value follows */
  *ptr++  = 0;                   /* Size = 0 */
  *ptr++  = 0;
  reqlen += 3*sizeof(uint32_t);

  /* Don't change times */

  *ptr++  = htonl(NFSV3SATTRTIME_DONTCHANGE); /* Don't change atime */
  *ptr++  = htonl(NFSV3SATTRTIME_DONTCHANGE); /* Don't change mtime */
  reqlen += 2*sizeof(uint32_t);

  /* Send the NFS request.  Note there is special logic here to handle version 3
   * exclusive open semantics.
   */

  do
    {
      nfs_statistics(NFSPROC_CREATE);
      error = nfs_request(nmp, NFSPROC_CREATE,
          (void *)&nmp->nm_msgbuffer.create, reqlen,
          (void *)nmp->nm_iobuffer, nmp->nm_buflen);
    }
  while (0);

  /* Check for success */

  if (error == OK)
    {
      /* Parse the returned data */

      ptr = (uint32_t *)&((struct rpc_reply_create *)
          nmp->nm_iobuffer)->create;

      /* Save the file handle in the file data structure */

      tmp = *ptr++;  /* handle_follows */
      if (!tmp)
        {
          PRINTK("ERROR: no file handle follows\n");
          error = EINVAL;
          goto errout_with_mutex;
        }

      tmp = *ptr++;
      tmp = fxdr_unsigned(uint32_t, tmp);
      DEBUGASSERT(tmp <= NFSX_V3FHMAX);

      np->n_fhsize      = (uint8_t)tmp;
      (void)memcpy_s(&np->n_fhandle, tmp, ptr, tmp);
      ptr += uint32_increment(tmp);

      /* Save the attributes in the file data structure */

      tmp = *ptr;  /* handle_follows */
      if (!tmp)
        {
          PRINTK("WARNING: no file attributes\n");
        }
      else
        {
          /* Initialize the file attributes */

          nfs_attrupdate(np, (struct nfs_fattr *)ptr);
        }

      /* Any following dir_wcc data is ignored for now */
      np->n_crefs = 1;

      /* Attach the private data to the struct file instance */

      /* Then insert the new instance at the head of the list in the mountpoint
       * tructure. It needs to be there (1) to handle error conditions that effect
       * all files, and (2) to inform the umount logic that we are busy.  We
       * cannot unmount the file system if this list is not empty!
       */

      np->n_next   = nmp->nm_head;
      nmp->nm_head = np;

      np->n_flags |= (NFSNODE_OPEN | NFSNODE_MODIFIED);
      np->n_name = zalloc(namelen + 1);
      memcpy_s(np->n_name, (namelen + 1), filename, (namelen + 1));

      (void)VnodeAlloc(&nfs_vops, vpp);
      (*vpp)->parent = parent;
      (*vpp)->fop = &nfs_fops;
      (*vpp)->originMount = parent->originMount;
      (*vpp)->data = np;
      (*vpp)->type = filetype_to_vnodetype(np->n_type);
      (*vpp)->mode = type_to_mode((*vpp)->type, nmp->nm_permission);
      (*vpp)->gid = nmp->nm_gid;
      (*vpp)->uid = nmp->nm_uid;

    }

  nfs_mux_release(nmp);
  return OK;

  errout_with_mutex:
    if (np)
      {
        free(np);
      }
  nfs_mux_release(nmp);
  return -error;
}

int vfs_nfs_unlink(struct Vnode *parent, struct Vnode *target, char *filename)
{
  struct nfsmount *nmp = (struct nfsmount *)(parent->originMount->data);
M
mucor 已提交
2162 2163
  struct nfsnode  *parent_node = NULL;
  struct nfsnode  *target_node = NULL;
W
wangchenyang 已提交
2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176
  int reqlen;
  int namelen;
  uint32_t *ptr = NULL;
  int error;

  nfs_mux_take(nmp);
  error = nfs_checkmount(nmp);
  if (error != OK)
    {
      PRINTK("ERROR: nfs_checkmount failed: %d\n", error);
      goto errout_with_mutex;
    }

M
mucor 已提交
2177 2178 2179
  parent_node = (struct nfsnode*)(parent->data);
  target_node = (struct nfsnode*)(target->data);

W
wangchenyang 已提交
2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225
  if (target_node->n_type == NFDIR)
    {
      PRINTK("ERROR: try to remove a directory\n");
      error = EISDIR;
      goto errout_with_mutex;
    }

  /* Create the REMOVE RPC call arguments */

  ptr    = (uint32_t *)&nmp->nm_msgbuffer.removef.remove;
  reqlen = 0;

  /* Copy the variable length, directory file handle */

  *ptr++  = txdr_unsigned(parent_node->n_fhsize);
  reqlen += sizeof(uint32_t);

  (void)memcpy_s(ptr, parent_node->n_fhsize, &parent_node->n_fhandle, parent_node->n_fhsize);
  reqlen += (int)parent_node->n_fhsize;
  ptr    += uint32_increment(parent_node->n_fhsize);

  /* Copy the variable-length file name */

  namelen = strlen(filename);

  *ptr++  = txdr_unsigned(namelen);
  reqlen += sizeof(uint32_t);

  (void)memcpy_s(ptr, namelen, filename, namelen);
  reqlen += uint32_alignup(namelen);

  /* Perform the REMOVE RPC call */

  nfs_statistics(NFSPROC_REMOVE);
  error = nfs_request(nmp, NFSPROC_REMOVE,
      (void *)&nmp->nm_msgbuffer.removef, reqlen,
      (void *)nmp->nm_iobuffer, nmp->nm_buflen);

errout_with_mutex:
  nfs_mux_release(nmp);
  return -error;
}

int vfs_nfs_rmdir(struct Vnode *parent, struct Vnode *target, char *dirname)
{
  struct nfsmount *nmp = (struct nfsmount *)(parent->originMount->data);
M
mucor 已提交
2226 2227
  struct nfsnode  *parent_node = NULL;
  struct nfsnode  *target_node = NULL;
W
wangchenyang 已提交
2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244
  int reqlen;
  int namelen;
  uint32_t *ptr = NULL;
  int error;
  if (target_node->n_type != NFDIR)
    {
      PRINTK("ERROR: try to remove a non-dir\n");
      return -ENOTDIR;
    }

  nfs_mux_take(nmp);
  error = nfs_checkmount(nmp);
  if (error != OK)
    {
      PRINTK("ERROR: nfs_checkmount failed: %d\n", error);
      goto errout_with_mutex;
    }
M
mucor 已提交
2245 2246 2247

  parent_node = (struct nfsnode*)(parent->data);
  target_node = (struct nfsnode*)(target->data);
W
wangchenyang 已提交
2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286
  /* Set up the RMDIR call message arguments */

  ptr    = (uint32_t *)&nmp->nm_msgbuffer.rmdir.rmdir;
  reqlen = 0;

  /* Copy the variable length, directory file handle */

  *ptr++  = txdr_unsigned(parent_node->n_fhsize);
  reqlen += sizeof(uint32_t);

  (void)memcpy_s(ptr, parent_node->n_fhsize, &parent_node->n_fhandle, parent_node->n_fhsize);
  reqlen += (int)parent_node->n_fhsize;
  ptr    += uint32_increment(parent_node->n_fhsize);

  /* Copy the variable-length directory name */

  namelen = strlen(dirname);

  *ptr++  = txdr_unsigned(namelen);
  reqlen += sizeof(uint32_t);

  (void)memcpy_s(ptr, namelen, dirname, namelen);
  reqlen += uint32_alignup(namelen);

  /* Perform the RMDIR RPC */

  nfs_statistics(NFSPROC_RMDIR);
  error = nfs_request(nmp, NFSPROC_RMDIR,
      (void *)&nmp->nm_msgbuffer.rmdir, reqlen,
      (void *)nmp->nm_iobuffer, nmp->nm_buflen);

errout_with_mutex:
  nfs_mux_release(nmp);
  return -nfs_2_vfs(error);
}


int vfs_nfs_close(struct Vnode *node)
{
M
mucor 已提交
2287 2288 2289 2290
  struct nfsmount *nmp = (struct nfsmount *)(node->originMount->data);
  struct nfsnode  *np = NULL;
  nfs_mux_take(nmp);
  np = (struct nfsnode*)(node->data);
W
wangchenyang 已提交
2291 2292 2293 2294 2295 2296 2297 2298
  /* Decrement the reference count.  If the reference count would not
   * decrement to zero, then that is all we have to do.
   */

  if (np->n_crefs > 1)
    {
      np->n_crefs--;
    }
M
mucor 已提交
2299
  nfs_mux_release(nmp);
W
wangchenyang 已提交
2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577
  return OK;
}

int vfs_nfs_close_file(struct file *filep)
{
  struct Vnode *node = (struct Vnode *)filep->f_vnode;
  return vfs_nfs_close(node);
}

int vfs_nfs_closedir(struct Vnode *node, struct fs_dirent_s *dir)
{
  struct nfsmount *nmp = (struct nfsmount *)(node->originMount->data);
  struct nfsdir_s  *prev = NULL;
  struct nfsdir_s  *curr = NULL;
  struct nfsdir_s      *nfs_dir;
  struct entry3        *entry_pos = NULL;
  int                  ret;

  /* Sanity checks */
  nfs_dir = (struct nfsdir_s *)(dir->u.fs_dir);

  DEBUGASSERT(nmp != NULL);

  /* Get exclusive access to the mount structure. */
  nfs_mux_take(nmp);


  for (entry_pos = nfs_dir->nfs_entries; entry_pos != NULL; entry_pos = nfs_dir->nfs_entries)
    {
      nfs_dir->nfs_entries = entry_pos->next;
      NFS_DIR_ENTRY_FREE(entry_pos);
    }

  /* Assume file structure will not be found.  This should never happen. */

  ret = EINVAL;

  for (prev = (struct nfsdir_s  *)NULL, curr = nmp->nm_dir;
      curr;
      prev = curr, curr = curr->nfs_next)
    {
      /* Check if this node is ours */

      if (nfs_dir == curr)
        {
          /* Yes.. remove it from the list of file structures */

          if (prev)
            {
              /* Remove from mid-list */

              prev->nfs_next = nfs_dir->nfs_next;
            }
          else
            {
              /* Remove from the head of the list */

              nmp->nm_dir= nfs_dir->nfs_next;
            }

          /* Then deallocate the file structure and return success */

          free(nfs_dir);
          nfs_dir = NULL;
          ret = OK;
          break;
        }
    }
  nfs_mux_release(nmp);

  return -ret; /*lint !e438*/
}

/****************************************************************************
 * Name: nfs_fsinfo
 *
 * Description:
 *   Return information about root directory.
 *
 * Returned Value:
 *   0 on success; positive errno value on failure
 *
 * Assumptions:
 *   The caller has exclusive access to the NFS mount structure
 *
 ****************************************************************************/

int nfs_fsinfo(struct nfsmount *nmp)
{
  struct rpc_call_fs fsinfo;
  struct rpc_reply_fsinfo fsp;
  struct nfs_fsinfo *rep_info = NULL;
  uint32_t pref;
  uint32_t max;
  int error = 0;

  fsinfo.fs.fsroot.length = txdr_unsigned(nmp->nm_fhsize);
  fsinfo.fs.fsroot.handle = nmp->nm_fh;

  /* Request FSINFO from the server */

  nfs_statistics(NFSPROC_FSINFO);
  error = nfs_request(nmp, NFSPROC_FSINFO,
                      (void *)&fsinfo, sizeof(struct FS3args),
                      (void *)&fsp, sizeof(struct rpc_reply_fsinfo));
  if (error)
    {
      return error;
    }

  if (txdr_unsigned(fsp.fsinfo.obj_attributes.obj_attribute_follow) == 1)
    {
      rep_info = (struct nfs_fsinfo *)&fsp.fsinfo.fs_rtmax;
    }
  else
    {
      rep_info = (struct nfs_fsinfo *)((void *)(&fsp.fsinfo.obj_attributes.attributes));
    }

  /* Save the root file system attributes */
  pref = fxdr_unsigned(uint32_t, rep_info->fs_wtpref);
  if (pref < nmp->nm_wsize)
    {
      nmp->nm_wsize = (pref + NFS_FABLKSIZE - 1) & ~(NFS_FABLKSIZE - 1);
    }

  max = fxdr_unsigned(uint32_t, rep_info->fs_wtmax);
  if (max < nmp->nm_wsize)
    {
      nmp->nm_wsize = max & ~(NFS_FABLKSIZE - 1);
      if (nmp->nm_wsize == 0)
        {
          nmp->nm_wsize = max;
        }
    }

  pref = fxdr_unsigned(uint32_t, rep_info->fs_rtpref);
  if (pref < nmp->nm_rsize)
    {
      nmp->nm_rsize = (pref + NFS_FABLKSIZE - 1) & ~(NFS_FABLKSIZE - 1);
    }

  max = fxdr_unsigned(uint32_t, rep_info->fs_rtmax);
  if (max < nmp->nm_rsize)
    {
      nmp->nm_rsize = max & ~(NFS_FABLKSIZE - 1);
      if (nmp->nm_rsize == 0)
        {
          nmp->nm_rsize = max;
        }
    }

  pref = fxdr_unsigned(uint32_t, rep_info->fs_dtpref);
  if (pref < nmp->nm_readdirsize)
    {
      nmp->nm_readdirsize = (pref + NFS_DIRBLKSIZ - 1) & ~(NFS_DIRBLKSIZ - 1);
    }

  if (max < nmp->nm_readdirsize)
    {
      nmp->nm_readdirsize = max & ~(NFS_DIRBLKSIZ - 1);
      if (nmp->nm_readdirsize == 0)
        {
          nmp->nm_readdirsize = max;
        }
    }

  return OK;
}

int vfs_nfs_statfs(struct Mount *mountpt, struct statfs *sbp)
{
  struct nfsmount *nmp;
  struct rpc_call_fs *fsstat = NULL;
  struct rpc_reply_fsstat *sfp = NULL;
  struct nfs_statfs_ctx  *stfp = NULL;
  int error = 0;
  uint64_t tquad;

  /* Get the mountpoint private data from the vnode structure */

  nmp = (struct nfsmount *)mountpt->data;

  /* Check if the mount is still healthy */

  nfs_mux_take(nmp);
  error = nfs_checkmount(nmp);
  if (error != OK)
    {
      PRINTK("ERROR: nfs_checkmount failed: %d\n", error);
      goto errout_with_mutex;
    }

  /* Fill in the statfs info */

  sbp->f_type = NFS_SUPER_MAGIC;

  error = nfs_fsinfo(nmp);
  if (error)
    {
      PRINTK("ERROR: nfs_fsinfo failed: %d\n", error);
      goto errout_with_mutex;
    }

  fsstat = &nmp->nm_msgbuffer.fsstat;
  fsstat->fs.fsroot.length = txdr_unsigned(nmp->nm_fhsize);
  (void)memcpy_s(&fsstat->fs.fsroot.handle, sizeof(nfsfh_t), &nmp->nm_fh, sizeof(nfsfh_t));

  nfs_statistics(NFSPROC_FSSTAT);
  error = nfs_request(nmp, NFSPROC_FSSTAT,
                      (void *)fsstat, sizeof(struct FS3args),
                      (void *)nmp->nm_iobuffer, nmp->nm_buflen);
  if (error)
    {
      goto errout_with_mutex;
    }

  sfp                   = (struct rpc_reply_fsstat *)nmp->nm_iobuffer;
  if (txdr_unsigned(sfp->fsstat.attributes_follow) == 1)
    {
      stfp = (struct nfs_statfs_ctx *)&sfp->fsstat.sf_tbytes;
    }
  else
    {
      stfp = (struct nfs_statfs_ctx *)&sfp->fsstat.obj_attributes;
    }

  sbp->f_bsize          = NFS_FABLKSIZE;
  tquad                 = fxdr_hyper(&stfp->sf_tbytes); /*lint !e571*/
  sbp->f_blocks         = tquad / (uint64_t) NFS_FABLKSIZE;
  tquad                 = fxdr_hyper(&stfp->sf_fbytes); /*lint !e571*/
  sbp->f_bfree          = tquad / (uint64_t) NFS_FABLKSIZE;
  tquad                 = fxdr_hyper(&stfp->sf_abytes); /*lint !e571*/
  sbp->f_bavail         = tquad / (uint64_t) NFS_FABLKSIZE;
  tquad                 = fxdr_hyper(&stfp->sf_tfiles); /*lint !e571*/
  sbp->f_files          = tquad;
  tquad                 = fxdr_hyper(&stfp->sf_ffiles); /*lint !e571*/
  sbp->f_ffree          = tquad;
  sbp->f_namelen        = NAME_MAX;
  sbp->f_flags          = mountpt->mountFlags;

errout_with_mutex:
  nfs_mux_release(nmp);
  return -error;
}

static int vfs_nfs_rewinddir(struct Vnode *node, struct fs_dirent_s *dir)
{
  struct nfsdir_s *nfs_dir = NULL;
  struct entry3   *entry_pos = NULL;

  struct nfsmount *nmp = (struct nfsmount *)(node->originMount->data);
  nfs_mux_take(nmp);
  /* Reset the NFS-specific portions of dirent structure, retaining only the
   * file handle.
   */

  nfs_dir = (struct nfsdir_s *)dir->u.fs_dir;
  (void)memset_s(nfs_dir->nfs_verifier, DIRENT_NFS_VERFLEN, 0, DIRENT_NFS_VERFLEN);
  nfs_dir->nfs_cookie[0] = 0;
  nfs_dir->nfs_cookie[1] = 0;
  for (entry_pos = nfs_dir->nfs_entries; entry_pos != NULL; entry_pos = nfs_dir->nfs_entries)
    {
      nfs_dir->nfs_entries = entry_pos->next;
      NFS_DIR_ENTRY_FREE(entry_pos);
    }
  free(nfs_dir->nfs_entries);
  nfs_dir->nfs_entries = NULL;
  nfs_mux_release(nmp);
  return OK;
}

int vfs_nfs_truncate(struct Vnode *node, off_t length)
{
  uint32_t *ptr;
  int reqlen;
  int error;

M
mucor 已提交
2578 2579 2580 2581 2582 2583
  struct nfsmount *nmp = NULL;
  struct nfsnode  *np = NULL;

  nmp = (struct nfsmount *)(node->originMount->data);
  nfs_mux_take(nmp);
  np = (struct nfsnode*)(node->data);
W
wangchenyang 已提交
2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619

  /* Create the SETATTR RPC call arguments */

  ptr    = (uint32_t *)&nmp->nm_msgbuffer.setattr.setattr;
  reqlen = 0;

  /* Copy the variable length, directory file handle */

  *ptr++  = txdr_unsigned(np->n_fhsize);
  reqlen += sizeof(uint32_t);

  (void)memcpy_s(ptr, np->n_fhsize, &np->n_fhandle, np->n_fhsize);
  reqlen += (int)np->n_fhsize;
  ptr    += uint32_increment(np->n_fhsize);

  /* Copy the variable-length attributes */

  *ptr++  = nfs_false;                        /* Don't change mode */
  *ptr++  = nfs_false;                        /* Don't change uid */
  *ptr++  = nfs_false;                        /* Don't change gid */
  *ptr++  = nfs_true;                         /* Use the following size */
  *ptr++  = length;                           /* Truncate to the specified length */
  *ptr++  = 0;
  *ptr++  = htonl(NFSV3SATTRTIME_TOSERVER);   /* Use the server's time */
  *ptr++  = htonl(NFSV3SATTRTIME_TOSERVER);   /* Use the server's time */
  *ptr++  = nfs_false;                        /* No guard value */
  reqlen += 9 * sizeof(uint32_t);

  /* Perform the SETATTR RPC */

  nfs_statistics(NFSPROC_SETATTR);
  error = nfs_request(nmp, NFSPROC_SETATTR,
                      (void *)&nmp->nm_msgbuffer.setattr, reqlen,
                      (void *)nmp->nm_iobuffer, nmp->nm_buflen);
  if (error != OK)
    {
M
mucor 已提交
2620
      nfs_mux_release(nmp);
W
wangchenyang 已提交
2621 2622 2623 2624 2625 2626 2627
      PRINTK("ERROR: nfs_request failed: %d\n", error);
      return -error;
    }

  /* Indicate that the file now has zero length */

  np->n_size = length;
M
mucor 已提交
2628
  nfs_mux_release(nmp);
W
wangchenyang 已提交
2629 2630
  return OK;
}
野生毛霉君 已提交
2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690

static int vfs_nfs_unmount(struct Mount *mnt, struct Vnode **blkDriver)
{
  (void)blkDriver;
  struct nfsmount *nmp = (struct nfsmount *)mnt->data;
  int error;

  DEBUGASSERT(nmp);

  /* Get exclusive access to the mount structure */

  nfs_mux_take(nmp);

  /* Are there any open files?  We can tell if there are open files by looking
   * at the list of file structures in the mount structure.  If this list
   * not empty, then there are open files and we cannot unmount now (or a
   * crash is sure to follow).
   */

  if (nmp->nm_head != NULL || nmp->nm_dir != NULL)
    {
      ferr("ERROR;  There are open files: %p or directories: %p\n", nmp->nm_head, nmp->nm_dir);

      /* This implementation currently only supports unmounting if there are
       * no open file references.
       */

      error = EBUSY;
      goto errout_with_mutex;
    }

  /* No open file... Umount the file system. */

  error = rpcclnt_umount(nmp->nm_rpcclnt);
  if (error)
    {
      ferr("ERROR: rpcclnt_umount failed: %d\n", error);
      goto errout_with_mutex;
    }

  /* Disconnect from the server */

  rpcclnt_disconnect(nmp->nm_rpcclnt);

  /* And free any allocated resources */

  nfs_mux_release(nmp);
  (void)pthread_mutex_destroy(&nmp->nm_mux);
  free(nmp->nm_rpcclnt);
  nmp->nm_rpcclnt = NULL;
  free(nmp);
  nmp = NULL;

  return -error;

errout_with_mutex:
  nfs_mux_release(nmp);
  return -error;
}

W
wangchenyang 已提交
2691 2692 2693
struct MountOps nfs_mount_operations =
{
  .Mount = vfs_nfs_mount,
野生毛霉君 已提交
2694
  .Unmount = vfs_nfs_unmount,
W
wangchenyang 已提交
2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725
  .Statfs= vfs_nfs_statfs,
};

struct VnodeOps nfs_vops =
{
  .Lookup = vfs_nfs_lookup,
  .Getattr = vfs_nfs_stat,
  .Opendir = vfs_nfs_opendir,
  .Readdir = vfs_nfs_readdir,
  .Rename = vfs_nfs_rename,
  .Mkdir = vfs_nfs_mkdir,
  .Create = vfs_nfs_create,
  .Unlink =  vfs_nfs_unlink,
  .Rmdir = vfs_nfs_rmdir,
  .Reclaim = vfs_nfs_reclaim,
  .Closedir = vfs_nfs_closedir,
  .Close = vfs_nfs_close,
  .Rewinddir = vfs_nfs_rewinddir,
  .Truncate = vfs_nfs_truncate,
};

struct file_operations_vfs nfs_fops =
{
  .seek = vfs_nfs_seek,
  .write = vfs_nfs_write,
  .read = vfs_nfs_read,
  .mmap = OsVfsFileMmap,
  .close = vfs_nfs_close_file,
};
FSMAP_ENTRY(nfs_fsmap, "nfs", nfs_mount_operations, FALSE, FALSE);
#endif