fs.c 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. /* Copyright (C) 2014 Stony Brook University
  2. This file is part of Graphene Library OS.
  3. Graphene Library OS is free software: you can redistribute it and/or
  4. modify it under the terms of the GNU Lesser General Public License
  5. as published by the Free Software Foundation, either version 3 of the
  6. License, or (at your option) any later version.
  7. Graphene Library OS is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>. */
  13. /*
  14. * fs.c
  15. *
  16. * This file contains codes for implementation of 'pipe' filesystem.
  17. */
  18. #include <asm/fcntl.h>
  19. #include <asm/mman.h>
  20. #include <asm/prctl.h>
  21. #include <asm/unistd.h>
  22. #include <errno.h>
  23. #include <linux/fcntl.h>
  24. #include <pal.h>
  25. #include <pal_debug.h>
  26. #include <pal_error.h>
  27. #include <shim_fs.h>
  28. #include <shim_handle.h>
  29. #include <shim_internal.h>
  30. #include <shim_profile.h>
  31. #include <shim_thread.h>
  32. // TODO: For some reason S_I{R,W}USR macros are missing if this file is included before our headers.
  33. // We should investigate and fix this behavior.
  34. #include <linux/stat.h>
  35. static ssize_t pipe_read(struct shim_handle* hdl, void* buf, size_t count) {
  36. if (!count)
  37. return 0;
  38. PAL_NUM bytes = DkStreamRead(hdl->pal_handle, 0, count, buf, NULL, 0);
  39. if (!bytes)
  40. return -PAL_ERRNO;
  41. assert((ssize_t)bytes > 0);
  42. return (ssize_t)bytes;
  43. }
  44. static ssize_t pipe_write(struct shim_handle* hdl, const void* buf, size_t count) {
  45. if (!count)
  46. return 0;
  47. PAL_NUM bytes = DkStreamWrite(hdl->pal_handle, 0, count, (void*)buf, NULL);
  48. if (!bytes)
  49. return -PAL_ERRNO;
  50. assert((ssize_t)bytes > 0);
  51. return (ssize_t)bytes;
  52. }
  53. static int pipe_hstat(struct shim_handle* hdl, struct stat* stat) {
  54. /* XXX: Is any of this right?
  55. * Shouldn't we be using hdl to figure something out?
  56. * if stat is NULL, should we not return -EFAULT?
  57. */
  58. __UNUSED(hdl);
  59. if (!stat)
  60. return 0;
  61. struct shim_thread* thread = get_cur_thread();
  62. stat->st_dev = (dev_t)0; /* ID of device containing file */
  63. stat->st_ino = (ino_t)0; /* inode number */
  64. stat->st_nlink = (nlink_t)0; /* number of hard links */
  65. stat->st_uid = (uid_t)thread->uid; /* user ID of owner */
  66. stat->st_gid = (gid_t)thread->gid; /* group ID of owner */
  67. stat->st_rdev = (dev_t)0; /* device ID (if special file) */
  68. stat->st_size = (off_t)0; /* total size, in bytes */
  69. stat->st_blksize = 0; /* blocksize for file system I/O */
  70. stat->st_blocks = 0; /* number of 512B blocks allocated */
  71. stat->st_atime = (time_t)0; /* access time */
  72. stat->st_mtime = (time_t)0; /* last modification */
  73. stat->st_ctime = (time_t)0; /* last status change */
  74. stat->st_mode = S_IRUSR | S_IWUSR | S_IFIFO;
  75. return 0;
  76. }
  77. static int pipe_checkout(struct shim_handle* hdl) {
  78. hdl->fs = NULL;
  79. return 0;
  80. }
  81. static off_t pipe_poll(struct shim_handle* hdl, int poll_type) {
  82. off_t ret = 0;
  83. lock(&hdl->lock);
  84. if (!hdl->pal_handle) {
  85. ret = -EBADF;
  86. goto out;
  87. }
  88. PAL_STREAM_ATTR attr;
  89. if (!DkStreamAttributesQueryByHandle(hdl->pal_handle, &attr)) {
  90. ret = -PAL_ERRNO;
  91. goto out;
  92. }
  93. if (poll_type == FS_POLL_SZ) {
  94. ret = attr.pending_size;
  95. goto out;
  96. }
  97. ret = 0;
  98. if (attr.disconnected)
  99. ret |= FS_POLL_ER;
  100. if ((poll_type & FS_POLL_RD) && attr.readable)
  101. ret |= FS_POLL_RD;
  102. if ((poll_type & FS_POLL_WR) && attr.writable)
  103. ret |= FS_POLL_WR;
  104. out:
  105. unlock(&hdl->lock);
  106. return ret;
  107. }
  108. static int pipe_setflags(struct shim_handle* hdl, int flags) {
  109. if (!hdl->pal_handle)
  110. return 0;
  111. PAL_STREAM_ATTR attr;
  112. if (!DkStreamAttributesQueryByHandle(hdl->pal_handle, &attr))
  113. return -PAL_ERRNO;
  114. if (attr.nonblocking) {
  115. if (flags & O_NONBLOCK)
  116. return 0;
  117. attr.nonblocking = PAL_FALSE;
  118. } else {
  119. if (!(flags & O_NONBLOCK))
  120. return 0;
  121. attr.nonblocking = PAL_TRUE;
  122. }
  123. if (!DkStreamAttributesSetByHandle(hdl->pal_handle, &attr))
  124. return -PAL_ERRNO;
  125. return 0;
  126. }
  127. struct shim_fs_ops pipe_fs_ops = {
  128. .read = &pipe_read,
  129. .write = &pipe_write,
  130. .hstat = &pipe_hstat,
  131. .checkout = &pipe_checkout,
  132. .poll = &pipe_poll,
  133. .setflags = &pipe_setflags,
  134. };
  135. struct shim_mount pipe_builtin_fs = {
  136. .type = "pipe",
  137. .fs_ops = &pipe_fs_ops,
  138. };