fs.c 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382
  1. /*
  2. * Copyright (c) 2018 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <errno.h>
  7. #include <kernel.h>
  8. #include <limits.h>
  9. #include <posix/unistd.h>
  10. #include <posix/dirent.h>
  11. #include <string.h>
  12. #include <sys/fdtable.h>
  13. #include <sys/stat.h>
  14. #include <fcntl.h>
  15. #include <fs/fs.h>
  16. BUILD_ASSERT(PATH_MAX >= MAX_FILE_NAME, "PATH_MAX is less than MAX_FILE_NAME");
  17. struct posix_fs_desc {
  18. union {
  19. struct fs_file_t file;
  20. struct fs_dir_t dir;
  21. };
  22. bool is_dir;
  23. bool used;
  24. };
  25. static struct posix_fs_desc desc_array[CONFIG_POSIX_MAX_OPEN_FILES];
  26. static struct fs_dirent fdirent;
  27. static struct dirent pdirent;
  28. static struct fd_op_vtable fs_fd_op_vtable;
  29. static struct posix_fs_desc *posix_fs_alloc_obj(bool is_dir)
  30. {
  31. int i;
  32. struct posix_fs_desc *ptr = NULL;
  33. unsigned int key = irq_lock();
  34. for (i = 0; i < CONFIG_POSIX_MAX_OPEN_FILES; i++) {
  35. if (desc_array[i].used == false) {
  36. ptr = &desc_array[i];
  37. ptr->used = true;
  38. ptr->is_dir = is_dir;
  39. break;
  40. }
  41. }
  42. irq_unlock(key);
  43. return ptr;
  44. }
  45. static inline void posix_fs_free_obj(struct posix_fs_desc *ptr)
  46. {
  47. ptr->used = false;
  48. }
  49. static int posix_mode_to_zephyr(int mf)
  50. {
  51. int mode = (mf & O_CREAT) ? FS_O_CREATE : 0;
  52. mode |= (mf & O_APPEND) ? FS_O_APPEND : 0;
  53. switch (mf & O_ACCMODE) {
  54. case O_RDONLY:
  55. mode |= FS_O_READ;
  56. break;
  57. case O_WRONLY:
  58. mode |= FS_O_WRITE;
  59. break;
  60. case O_RDWR:
  61. mode |= FS_O_RDWR;
  62. break;
  63. default:
  64. break;
  65. }
  66. return mode;
  67. }
  68. /**
  69. * @brief Open a file.
  70. *
  71. * See IEEE 1003.1
  72. */
  73. int open(const char *name, int flags, ...)
  74. {
  75. int rc, fd;
  76. struct posix_fs_desc *ptr = NULL;
  77. int zmode = posix_mode_to_zephyr(flags);
  78. if (zmode < 0) {
  79. return zmode;
  80. }
  81. fd = z_reserve_fd();
  82. if (fd < 0) {
  83. return -1;
  84. }
  85. ptr = posix_fs_alloc_obj(false);
  86. if (ptr == NULL) {
  87. z_free_fd(fd);
  88. errno = EMFILE;
  89. return -1;
  90. }
  91. fs_file_t_init(&ptr->file);
  92. rc = fs_open(&ptr->file, name, zmode);
  93. if (rc < 0) {
  94. posix_fs_free_obj(ptr);
  95. z_free_fd(fd);
  96. errno = -rc;
  97. return -1;
  98. }
  99. z_finalize_fd(fd, ptr, &fs_fd_op_vtable);
  100. return fd;
  101. }
  102. FUNC_ALIAS(open, _open, int);
  103. static int fs_close_vmeth(void *obj)
  104. {
  105. struct posix_fs_desc *ptr = obj;
  106. int rc;
  107. rc = fs_close(&ptr->file);
  108. posix_fs_free_obj(ptr);
  109. return rc;
  110. }
  111. static int fs_ioctl_vmeth(void *obj, unsigned int request, va_list args)
  112. {
  113. int rc = 0;
  114. struct posix_fs_desc *ptr = obj;
  115. switch (request) {
  116. case ZFD_IOCTL_LSEEK: {
  117. off_t offset;
  118. int whence;
  119. offset = va_arg(args, off_t);
  120. whence = va_arg(args, int);
  121. rc = fs_seek(&ptr->file, offset, whence);
  122. if (rc == 0) {
  123. rc = fs_tell(&ptr->file);
  124. }
  125. break;
  126. }
  127. default:
  128. errno = EOPNOTSUPP;
  129. return -1;
  130. }
  131. if (rc < 0) {
  132. errno = -rc;
  133. return -1;
  134. }
  135. return rc;
  136. }
  137. /**
  138. * @brief Write to a file.
  139. *
  140. * See IEEE 1003.1
  141. */
  142. static ssize_t fs_write_vmeth(void *obj, const void *buffer, size_t count)
  143. {
  144. ssize_t rc;
  145. struct posix_fs_desc *ptr = obj;
  146. rc = fs_write(&ptr->file, buffer, count);
  147. if (rc < 0) {
  148. errno = -rc;
  149. return -1;
  150. }
  151. return rc;
  152. }
  153. /**
  154. * @brief Read from a file.
  155. *
  156. * See IEEE 1003.1
  157. */
  158. static ssize_t fs_read_vmeth(void *obj, void *buffer, size_t count)
  159. {
  160. ssize_t rc;
  161. struct posix_fs_desc *ptr = obj;
  162. rc = fs_read(&ptr->file, buffer, count);
  163. if (rc < 0) {
  164. errno = -rc;
  165. return -1;
  166. }
  167. return rc;
  168. }
  169. static struct fd_op_vtable fs_fd_op_vtable = {
  170. .read = fs_read_vmeth,
  171. .write = fs_write_vmeth,
  172. .close = fs_close_vmeth,
  173. .ioctl = fs_ioctl_vmeth,
  174. };
  175. /**
  176. * @brief Open a directory stream.
  177. *
  178. * See IEEE 1003.1
  179. */
  180. DIR *opendir(const char *dirname)
  181. {
  182. int rc;
  183. struct posix_fs_desc *ptr;
  184. ptr = posix_fs_alloc_obj(true);
  185. if (ptr == NULL) {
  186. errno = EMFILE;
  187. return NULL;
  188. }
  189. fs_dir_t_init(&ptr->dir);
  190. rc = fs_opendir(&ptr->dir, dirname);
  191. if (rc < 0) {
  192. posix_fs_free_obj(ptr);
  193. errno = -rc;
  194. return NULL;
  195. }
  196. return ptr;
  197. }
  198. /**
  199. * @brief Close a directory stream.
  200. *
  201. * See IEEE 1003.1
  202. */
  203. int closedir(DIR *dirp)
  204. {
  205. int rc;
  206. struct posix_fs_desc *ptr = dirp;
  207. if (dirp == NULL) {
  208. errno = EBADF;
  209. return -1;
  210. }
  211. rc = fs_closedir(&ptr->dir);
  212. posix_fs_free_obj(ptr);
  213. if (rc < 0) {
  214. errno = -rc;
  215. return -1;
  216. }
  217. return 0;
  218. }
  219. /**
  220. * @brief Read a directory.
  221. *
  222. * See IEEE 1003.1
  223. */
  224. struct dirent *readdir(DIR *dirp)
  225. {
  226. int rc;
  227. struct posix_fs_desc *ptr = dirp;
  228. if (dirp == NULL) {
  229. errno = EBADF;
  230. return NULL;
  231. }
  232. rc = fs_readdir(&ptr->dir, &fdirent);
  233. if (rc < 0) {
  234. errno = -rc;
  235. return NULL;
  236. }
  237. rc = strlen(fdirent.name);
  238. rc = (rc < MAX_FILE_NAME) ? rc : (MAX_FILE_NAME - 1);
  239. (void)memcpy(pdirent.d_name, fdirent.name, rc);
  240. /* Make sure the name is NULL terminated */
  241. pdirent.d_name[rc] = '\0';
  242. return &pdirent;
  243. }
  244. /**
  245. * @brief Rename a file.
  246. *
  247. * See IEEE 1003.1
  248. */
  249. int rename(const char *old, const char *new)
  250. {
  251. int rc;
  252. rc = fs_rename(old, new);
  253. if (rc < 0) {
  254. errno = -rc;
  255. return -1;
  256. }
  257. return 0;
  258. }
  259. /**
  260. * @brief Remove a directory entry.
  261. *
  262. * See IEEE 1003.1
  263. */
  264. int unlink(const char *path)
  265. {
  266. int rc;
  267. rc = fs_unlink(path);
  268. if (rc < 0) {
  269. errno = -rc;
  270. return -1;
  271. }
  272. return 0;
  273. }
  274. /**
  275. * @brief Get file status.
  276. *
  277. * See IEEE 1003.1
  278. */
  279. int stat(const char *path, struct stat *buf)
  280. {
  281. int rc;
  282. struct fs_statvfs stat;
  283. if (buf == NULL) {
  284. errno = EBADF;
  285. return -1;
  286. }
  287. rc = fs_statvfs(path, &stat);
  288. if (rc < 0) {
  289. errno = -rc;
  290. return -1;
  291. }
  292. buf->st_size = stat.f_bsize * stat.f_blocks;
  293. buf->st_blksize = stat.f_bsize;
  294. buf->st_blocks = stat.f_blocks;
  295. return 0;
  296. }
  297. /**
  298. * @brief Make a directory.
  299. *
  300. * See IEEE 1003.1
  301. */
  302. int mkdir(const char *path, mode_t mode)
  303. {
  304. int rc;
  305. ARG_UNUSED(mode);
  306. rc = fs_mkdir(path);
  307. if (rc < 0) {
  308. errno = -rc;
  309. return -1;
  310. }
  311. return 0;
  312. }