shim_handle.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426
  1. /* -*- mode:c; c-file-style:"k&r"; c-basic-offset: 4; tab-width:4; indent-tabs-mode:nil; mode:auto-fill; fill-column:78; -*- */
  2. /* vim: set ts=4 sw=4 et tw=78 fo=cqt wm=0: */
  3. /* Copyright (C) 2014 OSCAR lab, Stony Brook University
  4. This file is part of Graphene Library OS.
  5. Graphene Library OS is free software: you can redistribute it and/or
  6. modify it under the terms of the GNU General Public License
  7. as published by the Free Software Foundation, either version 3 of the
  8. License, or (at your option) any later version.
  9. Graphene Library OS is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program. If not, see <http://www.gnu.org/licenses/>. */
  15. /*
  16. * shim_handle.h
  17. *
  18. * Definitions of types and functions for file/handle bookkeeping.
  19. */
  20. #ifndef _SHIM_HANDLE_H_
  21. #define _SHIM_HANDLE_H_
  22. #include <shim_types.h>
  23. #include <shim_defs.h>
  24. #include <shim_sysv.h>
  25. #include <pal.h>
  26. #include <linux_list.h>
  27. #include <linux/shm.h>
  28. #include <linux/in.h>
  29. #include <linux/in6.h>
  30. #include <linux/un.h>
  31. #include <asm/fcntl.h>
  32. /* start definition of shim handle */
  33. enum shim_handle_type {
  34. TYPE_FILE,
  35. TYPE_DEV,
  36. TYPE_PIPE,
  37. TYPE_SOCK,
  38. TYPE_DIR,
  39. TYPE_SHM,
  40. TYPE_SEM,
  41. TYPE_MSG,
  42. TYPE_FUTEX,
  43. TYPE_STR,
  44. TYPE_EPOLL,
  45. };
  46. struct shim_handle;
  47. struct shim_thread;
  48. struct shim_vma;
  49. enum shim_file_type {
  50. FILE_UNKNOWN,
  51. FILE_REGULAR,
  52. FILE_DIR,
  53. FILE_DEV,
  54. FILE_TTY,
  55. };
  56. struct shim_file_data {
  57. LOCKTYPE lock;
  58. struct shim_atomic version;
  59. bool queried;
  60. enum shim_file_type type;
  61. mode_t mode;
  62. struct shim_atomic size;
  63. struct shim_qstr host_uri;
  64. unsigned long atime;
  65. unsigned long mtime;
  66. unsigned long ctime;
  67. unsigned long nlink;
  68. };
  69. struct shim_file_handle {
  70. unsigned int version;
  71. struct shim_file_data * data;
  72. enum shim_file_type type;
  73. unsigned long size;
  74. unsigned long marker;
  75. enum { FILEBUF_MAP, FILEBUF_NONE } buf_type;
  76. unsigned long mapsize;
  77. unsigned long mapoffset;
  78. void * mapbuf;
  79. };
  80. #define FILE_HANDLE_DATA(hdl) ((hdl)->info.file.data)
  81. #define FILE_DENTRY_DATA(dent) ((struct shim_file_data *) (dent)->data)
  82. struct shim_dev_ops {
  83. /* open: provide a filename relative to the mount point and flags,
  84. modify the shim handle */
  85. int (*open) (struct shim_handle * hdl, const char * name, int flags);
  86. /* close: clean up the file state inside the handle */
  87. int (*close) (struct shim_handle * hdl);
  88. /* read: the content from the file opened as handle */
  89. int (*read) (struct shim_handle * hdl, void * buf, size_t count);
  90. /* write: the content from the file opened as handle */
  91. int (*write) (struct shim_handle * hdl, const void * buf, size_t count);
  92. /* flush: flush out user buffer */
  93. int (*flush) (struct shim_handle * hdl);
  94. /* seek: the content from the file opened as handle */
  95. int (*seek) (struct shim_handle * hdl, off_t offset, int wence);
  96. int (*truncate) (struct shim_handle * hdl, uint64_t len);
  97. int (*mode) (const char * name, mode_t * mode);
  98. /* stat, hstat: get status of the file */
  99. int (*stat) (const char * name, struct stat * buf);
  100. int (*hstat) (struct shim_handle * hdl, struct stat * buf);
  101. };
  102. struct shim_dev_handle {
  103. struct shim_dev_ops dev_ops;
  104. };
  105. struct shim_pipe_handle {
  106. #if USE_SIMPLE_PIPE == 1
  107. struct shim_handle * pair;
  108. #else
  109. IDTYPE pipeid;
  110. #endif
  111. };
  112. #define SOCK_STREAM 1
  113. #define SOCK_DGRAM 2
  114. #define SOCK_NONBLOCK 04000
  115. #define SOCK_CLOEXEC 02000000
  116. #define SOL_TCP 6
  117. #define PF_LOCAL 1
  118. #define PF_UNIX PF_LOCAL
  119. #define PF_FILE PF_LOCAL
  120. #define PF_INET 2
  121. #define PF_INET6 10
  122. #define AF_UNIX PF_UNIX
  123. #define AF_INET PF_INET
  124. #define AF_INET6 PF_INET6
  125. enum shim_sock_state {
  126. SOCK_CREATED,
  127. SOCK_BOUND,
  128. SOCK_CONNECTED,
  129. SOCK_BOUNDCONNECTED,
  130. SOCK_LISTENED,
  131. SOCK_ACCEPTED,
  132. SOCK_SHUTDOWN,
  133. };
  134. struct shim_unix_data {
  135. unsigned int pipeid;
  136. };
  137. struct shim_sock_handle {
  138. int domain;
  139. int sock_type;
  140. int protocol;
  141. int error;
  142. enum shim_sock_state sock_state;
  143. union shim_sock_addr {
  144. // INET addr
  145. struct {
  146. struct addr_inet {
  147. unsigned short port;
  148. unsigned short ext_port;
  149. union {
  150. struct in_addr v4;
  151. struct in6_addr v6;
  152. } addr;
  153. } bind, conn;
  154. } in;
  155. // UNIX addr
  156. struct addr_unix {
  157. struct shim_dentry * dentry;
  158. unsigned int pipeid;
  159. struct shim_unix_data * data;
  160. } un;
  161. } addr;
  162. struct shim_sock_option {
  163. struct shim_sock_option * next;
  164. int level;
  165. int optname;
  166. int optlen;
  167. char optval[];
  168. } * pending_options;
  169. };
  170. struct shim_dirent {
  171. struct shim_dirent * next;
  172. unsigned long ino; /* Inode number */
  173. unsigned char type;
  174. char name[]; /* File name (null-terminated) */
  175. };
  176. struct shim_dir_handle {
  177. int offset;
  178. struct shim_dentry * dotdot;
  179. struct shim_dentry * dot;
  180. struct shim_dentry ** buf;
  181. struct shim_dentry ** ptr;
  182. };
  183. struct shim_shm_handle {
  184. /* XXX: need to implement */
  185. void * __reserved;
  186. };
  187. struct msg_type;
  188. struct msg_item;
  189. struct msg_client;
  190. #define MAX_SYSV_CLIENTS 32
  191. struct shim_msg_handle {
  192. unsigned long msqkey; /* msg queue key from user */
  193. IDTYPE msqid; /* msg queue identifier */
  194. bool owned; /* owned by current process */
  195. struct shim_ipc_info * owner;
  196. LEASETYPE lease;
  197. int perm; /* access permissions */
  198. bool deleted; /* marking the queue deleted */
  199. int nmsgs; /* number of msgs */
  200. int currentsize; /* current size in bytes */
  201. struct msg_qobj * queue;
  202. int queuesize;
  203. int queueused;
  204. struct msg_qobj * freed;
  205. PAL_HANDLE event; /* event for waiting */
  206. int ntypes;
  207. int maxtypes;
  208. struct msg_type * types;
  209. struct sysv_score scores[MAX_SYSV_CLIENTS];
  210. struct list_head list;
  211. struct hlist_node key_hlist;
  212. struct hlist_node qid_hlist;
  213. };
  214. struct sem_objs;
  215. struct shim_sem_handle {
  216. unsigned long semkey;
  217. IDTYPE semid;
  218. bool owned;
  219. struct shim_ipc_info * owner;
  220. LEASETYPE lease;
  221. int perm;
  222. bool deleted;
  223. PAL_HANDLE event;
  224. int nsems;
  225. struct sem_obj * sems;
  226. int nreqs;
  227. struct sysv_score scores[MAX_SYSV_CLIENTS];
  228. struct list_head migrated;
  229. struct list_head list;
  230. struct hlist_node key_hlist;
  231. struct hlist_node sid_hlist;
  232. };
  233. struct shim_futex_handle {
  234. unsigned int * uaddr;
  235. struct list_head waiters;
  236. struct shim_vma * vma;
  237. struct list_head list;
  238. };
  239. struct shim_str_data {
  240. REFTYPE ref_count;
  241. char * str;
  242. size_t len;
  243. size_t buf_size;
  244. bool dirty;
  245. int (*update) (struct shim_handle * hdl);
  246. int (*modify) (struct shim_handle * hdl);
  247. };
  248. struct shim_str_handle {
  249. struct shim_str_data * data; /* inode is stored in dentry, too.
  250. store pointer here for efficiency */
  251. char * ptr;
  252. };
  253. struct shim_epoll_handle {
  254. int maxfds;
  255. int nfds;
  256. struct list_head fds;
  257. FDTYPE * pal_fds;
  258. PAL_HANDLE * pal_handles;
  259. int npals;
  260. int nread;
  261. int nwaiters;
  262. AEVENTTYPE event;
  263. };
  264. struct shim_mount;
  265. struct shim_qstr;
  266. struct shim_dentry;
  267. struct shim_handle {
  268. enum shim_handle_type type;
  269. REFTYPE ref_count;
  270. char fs_type[8];
  271. struct shim_mount * fs;
  272. struct shim_qstr path;
  273. struct shim_dentry * dentry;
  274. struct list_head epolls;
  275. struct shim_qstr uri; /* URI representing this handle, it is not
  276. * necessary to be set. */
  277. PAL_HANDLE pal_handle;
  278. union {
  279. struct shim_file_handle file;
  280. struct shim_dev_handle dev;
  281. struct shim_pipe_handle pipe;
  282. struct shim_sock_handle sock;
  283. struct shim_dir_handle dir;
  284. struct shim_shm_handle shm;
  285. struct shim_msg_handle msg;
  286. struct shim_sem_handle sem;
  287. struct shim_futex_handle futex;
  288. struct shim_str_handle str;
  289. struct shim_epoll_handle epoll;
  290. } info;
  291. int flags;
  292. int acc_mode;
  293. IDTYPE owner;
  294. REFTYPE opened;
  295. LOCKTYPE lock;
  296. };
  297. /* allocating / manage handle */
  298. struct shim_handle * get_new_handle (void);
  299. void flush_handle (struct shim_handle * hdl);
  300. void open_handle (struct shim_handle * hdl);
  301. void close_handle (struct shim_handle * hdl);
  302. void get_handle (struct shim_handle * hdl);
  303. void put_handle (struct shim_handle * hdl);
  304. /* file descriptor table */
  305. struct shim_fd_handle {
  306. FDTYPE vfd; /* virtual file descriptor */
  307. int flags; /* file descriptor flags, only FD_CLOEXEC */
  308. struct shim_handle * handle;
  309. };
  310. #define MAX_MAX_FDS (65536)
  311. #define DEFAULT_MAX_FDS (1024)
  312. extern unsigned int max_fds;
  313. struct shim_handle_map {
  314. /* the top of created file descriptors */
  315. FDTYPE fd_size;
  316. FDTYPE fd_top;
  317. /* refrence count and lock */
  318. REFTYPE ref_count;
  319. LOCKTYPE lock;
  320. /* An array of file descriptor belong to this mapping */
  321. struct shim_fd_handle ** map;
  322. };
  323. /* allocating file descriptors */
  324. #define FD_NULL ((FDTYPE) -1)
  325. #define HANDLE_ALLOCATED(fd_handle) ((fd_handle) && (fd_handle)->vfd != FD_NULL)
  326. struct shim_handle * __get_fd_handle (FDTYPE fd, int * flags,
  327. struct shim_handle_map * map);
  328. struct shim_handle * get_fd_handle (FDTYPE fd, int * flags,
  329. struct shim_handle_map * map);
  330. int set_new_fd_handle (struct shim_handle * hdl, int flags,
  331. struct shim_handle_map * map);
  332. int set_new_fd_handle_by_fd (FDTYPE fd, struct shim_handle * hdl,
  333. int flags, struct shim_handle_map * map);
  334. struct shim_handle *
  335. __detach_fd_handle (struct shim_fd_handle * fd, int * flags,
  336. struct shim_handle_map * map);
  337. struct shim_handle * detach_fd_handle (FDTYPE fd, int * flags,
  338. struct shim_handle_map * map);
  339. /* manage handle mapping */
  340. int dup_handle_map (struct shim_handle_map ** new_map,
  341. struct shim_handle_map * old_map);
  342. int flush_handle_map (struct shim_handle_map * map);
  343. void get_handle_map (struct shim_handle_map * map);
  344. void put_handle_map (struct shim_handle_map * map);
  345. int walk_handle_map (int (*callback) (struct shim_fd_handle *,
  346. struct shim_handle_map *, void *),
  347. struct shim_handle_map * map, void * arg);
  348. int init_handle (void);
  349. int init_important_handles (void);
  350. size_t get_file_size (struct shim_handle * file);
  351. int do_handle_read (struct shim_handle * hdl, void * buf, int count);
  352. int do_handle_write (struct shim_handle * hdl, const void * buf, int count);
  353. #endif /* _SHIM_HANDLE_H_ */