fs.c 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  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. #define __KERNEL__
  19. #include <asm/fcntl.h>
  20. #include <asm/mman.h>
  21. #include <asm/prctl.h>
  22. #include <asm/unistd.h>
  23. #include <errno.h>
  24. #include <linux/fcntl.h>
  25. #include <linux/stat.h>
  26. #include <pal.h>
  27. #include <pal_debug.h>
  28. #include <pal_error.h>
  29. #include <shim_fs.h>
  30. #include <shim_handle.h>
  31. #include <shim_internal.h>
  32. #include <shim_profile.h>
  33. #include <shim_thread.h>
  34. static ssize_t pipe_read(struct shim_handle* hdl, void* buf, size_t count) {
  35. PAL_NUM bytes = DkStreamRead(hdl->pal_handle, 0, count, buf, NULL, 0);
  36. if (bytes == PAL_STREAM_ERROR)
  37. return -PAL_ERRNO;
  38. return (ssize_t)bytes;
  39. }
  40. static ssize_t pipe_write(struct shim_handle* hdl, const void* buf, size_t count) {
  41. PAL_NUM bytes = DkStreamWrite(hdl->pal_handle, 0, count, (void*)buf, NULL);
  42. if (bytes == PAL_STREAM_ERROR)
  43. return -PAL_ERRNO;
  44. return (ssize_t)bytes;
  45. }
  46. static int pipe_hstat(struct shim_handle* hdl, struct stat* stat) {
  47. /* XXX: Is any of this right?
  48. * Shouldn't we be using hdl to figure something out?
  49. * if stat is NULL, should we not return -EFAULT?
  50. */
  51. __UNUSED(hdl);
  52. if (!stat)
  53. return 0;
  54. struct shim_thread* thread = get_cur_thread();
  55. stat->st_dev = (dev_t)0; /* ID of device containing file */
  56. stat->st_ino = (ino_t)0; /* inode number */
  57. stat->st_nlink = (nlink_t)0; /* number of hard links */
  58. stat->st_uid = (uid_t)thread->uid; /* user ID of owner */
  59. stat->st_gid = (gid_t)thread->gid; /* group ID of owner */
  60. stat->st_rdev = (dev_t)0; /* device ID (if special file) */
  61. stat->st_size = (off_t)0; /* total size, in bytes */
  62. stat->st_blksize = 0; /* blocksize for file system I/O */
  63. stat->st_blocks = 0; /* number of 512B blocks allocated */
  64. stat->st_atime = (time_t)0; /* access time */
  65. stat->st_mtime = (time_t)0; /* last modification */
  66. stat->st_ctime = (time_t)0; /* last status change */
  67. stat->st_mode = S_IRUSR | S_IWUSR | S_IFIFO;
  68. return 0;
  69. }
  70. static int pipe_checkout(struct shim_handle* hdl) {
  71. hdl->fs = NULL;
  72. return 0;
  73. }
  74. static off_t pipe_poll(struct shim_handle* hdl, int poll_type) {
  75. off_t ret = 0;
  76. lock(&hdl->lock);
  77. if (!hdl->pal_handle) {
  78. ret = -EBADF;
  79. goto out;
  80. }
  81. PAL_STREAM_ATTR attr;
  82. if (!DkStreamAttributesQueryByHandle(hdl->pal_handle, &attr)) {
  83. ret = -PAL_ERRNO;
  84. goto out;
  85. }
  86. if (poll_type == FS_POLL_SZ) {
  87. ret = attr.pending_size;
  88. goto out;
  89. }
  90. ret = 0;
  91. if (attr.disconnected)
  92. ret |= FS_POLL_ER;
  93. if ((poll_type & FS_POLL_RD) && attr.readable)
  94. ret |= FS_POLL_RD;
  95. if ((poll_type & FS_POLL_WR) && attr.writable)
  96. ret |= FS_POLL_WR;
  97. out:
  98. unlock(&hdl->lock);
  99. return ret;
  100. }
  101. static int pipe_setflags(struct shim_handle* hdl, int flags) {
  102. if (!hdl->pal_handle)
  103. return 0;
  104. PAL_STREAM_ATTR attr;
  105. if (!DkStreamAttributesQueryByHandle(hdl->pal_handle, &attr))
  106. return -PAL_ERRNO;
  107. if (attr.nonblocking) {
  108. if (flags & O_NONBLOCK)
  109. return 0;
  110. attr.nonblocking = PAL_FALSE;
  111. } else {
  112. if (!(flags & O_NONBLOCK))
  113. return 0;
  114. attr.nonblocking = PAL_TRUE;
  115. }
  116. if (!DkStreamAttributesSetByHandle(hdl->pal_handle, &attr))
  117. return -PAL_ERRNO;
  118. return 0;
  119. }
  120. struct shim_fs_ops pipe_fs_ops = {
  121. .read = &pipe_read,
  122. .write = &pipe_write,
  123. .hstat = &pipe_hstat,
  124. .checkout = &pipe_checkout,
  125. .poll = &pipe_poll,
  126. .setflags = &pipe_setflags,
  127. };
  128. struct shim_mount pipe_builtin_fs = {
  129. .type = URI_TYPE_PIPE,
  130. .fs_ops = &pipe_fs_ops,
  131. };