fs_procfsversion.c 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  1. /****************************************************************************
  2. * fs/procfs/fs_procfsversion.c
  3. *
  4. * Copyright (C) 2018-2019 Gregory Nutt. All rights reserved.
  5. * Author: Gregory Nutt <gnutt@nuttx.org>
  6. *
  7. * Redistribution and use in source and binary forms, with or without
  8. * modification, are permitted provided that the following conditions
  9. * are met:
  10. *
  11. * 1. Redistributions of source code must retain the above copyright
  12. * notice, this list of conditions and the following disclaimer.
  13. * 2. Redistributions in binary form must reproduce the above copyright
  14. * notice, this list of conditions and the following disclaimer in
  15. * the documentation and/or other materials provided with the
  16. * distribution.
  17. * 3. Neither the name NuttX nor the names of its contributors may be
  18. * used to endorse or promote products derived from this software
  19. * without specific prior written permission.
  20. *
  21. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  22. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  23. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  24. * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  25. * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  26. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  27. * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
  28. * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
  29. * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  30. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
  31. * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  32. * POSSIBILITY OF SUCH DAMAGE.
  33. *
  34. ****************************************************************************/
  35. /****************************************************************************
  36. * Included Files
  37. ****************************************************************************/
  38. #include <nuttx/config.h>
  39. #include <sys/types.h>
  40. #include <sys/stat.h>
  41. #include <sys/utsname.h>
  42. #include <stdint.h>
  43. #include <stdbool.h>
  44. #include <stdio.h>
  45. #include <stdlib.h>
  46. #include <string.h>
  47. #include <fcntl.h>
  48. #include <assert.h>
  49. #include <errno.h>
  50. #include <debug.h>
  51. #include <nuttx/kmalloc.h>
  52. #include <nuttx/version.h>
  53. #include <nuttx/fs/fs.h>
  54. #include <nuttx/fs/procfs.h>
  55. #if !defined(CONFIG_DISABLE_MOUNTPOINT) && defined(CONFIG_FS_PROCFS)
  56. #ifndef CONFIG_FS_PROCFS_EXCLUDE_PROCESS
  57. /****************************************************************************
  58. * Pre-processor Definitions
  59. ****************************************************************************/
  60. /* Determines the size of an intermediate buffer that must be large enough
  61. * to handle the longest line generated by this logic.
  62. */
  63. #define VERSION_LINELEN 128
  64. /****************************************************************************
  65. * Private Types
  66. ****************************************************************************/
  67. /* This structure describes one open "file" */
  68. struct version_file_s
  69. {
  70. struct procfs_file_s base; /* Base open file structure */
  71. unsigned int linesize; /* Number of valid characters in line[] */
  72. char line[VERSION_LINELEN]; /* Pre-allocated buffer for formatted lines */
  73. };
  74. /****************************************************************************
  75. * Private Function Prototypes
  76. ****************************************************************************/
  77. /* File system methods */
  78. static int version_open(FAR struct file *filep, FAR const char *relpath,
  79. int oflags, mode_t mode);
  80. static int version_close(FAR struct file *filep);
  81. static ssize_t version_read(FAR struct file *filep, FAR char *buffer,
  82. size_t buflen);
  83. static int version_dup(FAR const struct file *oldp,
  84. FAR struct file *newp);
  85. static int version_stat(FAR const char *relpath, FAR struct stat *buf);
  86. /****************************************************************************
  87. * Public Data
  88. ****************************************************************************/
  89. /* See fs_mount.c -- this structure is explicitly externed there.
  90. * We use the old-fashioned kind of initializers so that this will compile
  91. * with any compiler.
  92. */
  93. const struct procfs_operations version_operations =
  94. {
  95. version_open, /* open */
  96. version_close, /* close */
  97. version_read, /* read */
  98. NULL, /* write */
  99. version_dup, /* dup */
  100. NULL, /* opendir */
  101. NULL, /* closedir */
  102. NULL, /* readdir */
  103. NULL, /* rewinddir */
  104. version_stat /* stat */
  105. };
  106. /****************************************************************************
  107. * Private Functions
  108. ****************************************************************************/
  109. /****************************************************************************
  110. * Name: version_open
  111. ****************************************************************************/
  112. static int version_open(FAR struct file *filep, FAR const char *relpath,
  113. int oflags, mode_t mode)
  114. {
  115. FAR struct version_file_s *attr;
  116. finfo("Open '%s'\n", relpath);
  117. /* PROCFS is read-only. Any attempt to open with any kind of write
  118. * access is not permitted.
  119. *
  120. * REVISIT: Write-able proc files could be quite useful.
  121. */
  122. if ((oflags & O_WRONLY) != 0 || (oflags & O_RDONLY) == 0)
  123. {
  124. ferr("ERROR: Only O_RDONLY supported\n");
  125. return -EACCES;
  126. }
  127. /* "version" is the only acceptable value for the relpath */
  128. if (strcmp(relpath, "version") != 0)
  129. {
  130. ferr("ERROR: relpath is '%s'\n", relpath);
  131. return -ENOENT;
  132. }
  133. /* Allocate a container to hold the file attributes */
  134. attr = (FAR struct version_file_s *)
  135. kmm_zalloc(sizeof(struct version_file_s));
  136. if (attr == NULL)
  137. {
  138. ferr("ERROR: Failed to allocate file attributes\n");
  139. return -ENOMEM;
  140. }
  141. /* Save the attributes as the open-specific state in filep->f_priv */
  142. filep->f_priv = (FAR void *)attr;
  143. return OK;
  144. }
  145. /****************************************************************************
  146. * Name: version_close
  147. ****************************************************************************/
  148. static int version_close(FAR struct file *filep)
  149. {
  150. FAR struct version_file_s *attr;
  151. /* Recover our private data from the struct file instance */
  152. attr = (FAR struct version_file_s *)filep->f_priv;
  153. DEBUGASSERT(attr);
  154. /* Release the file attributes structure */
  155. kmm_free(attr);
  156. filep->f_priv = NULL;
  157. return OK;
  158. }
  159. /****************************************************************************
  160. * Name: version_read
  161. ****************************************************************************/
  162. static ssize_t version_read(FAR struct file *filep, FAR char *buffer,
  163. size_t buflen)
  164. {
  165. FAR struct version_file_s *attr;
  166. struct utsname name;
  167. size_t linesize;
  168. off_t offset;
  169. ssize_t ret;
  170. finfo("buffer=%p buflen=%d\n", buffer, (int)buflen);
  171. /* Recover our private data from the struct file instance */
  172. attr = (FAR struct version_file_s *)filep->f_priv;
  173. DEBUGASSERT(attr);
  174. if (filep->f_pos == 0)
  175. {
  176. uname(&name);
  177. linesize = snprintf(attr->line, VERSION_LINELEN, "%s version %s %s\n",
  178. name.sysname, name.release, name.version);
  179. /* Save the linesize in case we are re-entered with f_pos > 0 */
  180. attr->linesize = linesize;
  181. }
  182. offset = filep->f_pos;
  183. ret = procfs_memcpy(attr->line, attr->linesize, buffer, buflen, &offset);
  184. /* Update the file offset */
  185. if (ret > 0)
  186. {
  187. filep->f_pos += ret;
  188. }
  189. return ret;
  190. }
  191. /****************************************************************************
  192. * Name: version_dup
  193. *
  194. * Description:
  195. * Duplicate open file data in the new file structure.
  196. *
  197. ****************************************************************************/
  198. static int version_dup(FAR const struct file *oldp, FAR struct file *newp)
  199. {
  200. FAR struct version_file_s *oldattr;
  201. FAR struct version_file_s *newattr;
  202. finfo("Dup %p->%p\n", oldp, newp);
  203. /* Recover our private data from the old struct file instance */
  204. oldattr = (FAR struct version_file_s *)oldp->f_priv;
  205. DEBUGASSERT(oldattr);
  206. /* Allocate a new container to hold the task and attribute selection */
  207. newattr = (FAR struct version_file_s *)
  208. kmm_malloc(sizeof(struct version_file_s));
  209. if (!newattr)
  210. {
  211. ferr("ERROR: Failed to allocate file attributes\n");
  212. return -ENOMEM;
  213. }
  214. /* The copy the file attributes from the old attributes to the new */
  215. memcpy(newattr, oldattr, sizeof(struct version_file_s));
  216. /* Save the new attributes in the new file structure */
  217. newp->f_priv = (FAR void *)newattr;
  218. return OK;
  219. }
  220. /****************************************************************************
  221. * Name: version_stat
  222. *
  223. * Description: Return information about a file or directory
  224. *
  225. ****************************************************************************/
  226. static int version_stat(FAR const char *relpath, FAR struct stat *buf)
  227. {
  228. /* "version" is the only acceptable value for the relpath */
  229. if (strcmp(relpath, "version") != 0)
  230. {
  231. ferr("ERROR: relpath is '%s'\n", relpath);
  232. return -ENOENT;
  233. }
  234. /* "version" is the name for a read-only file */
  235. memset(buf, 0, sizeof(struct stat));
  236. buf->st_mode = S_IFREG | S_IROTH | S_IRGRP | S_IRUSR;
  237. return OK;
  238. }
  239. /****************************************************************************
  240. * Public Functions
  241. ****************************************************************************/
  242. #endif /* CONFIG_FS_PROCFS_EXCLUDE_PROCESS */
  243. #endif /* !CONFIG_DISABLE_MOUNTPOINT && CONFIG_FS_PROCFS */