fsmagic.c 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  1. /*
  2. * Copyright (c) Ian F. Darwin 1986-1995.
  3. * Software written by Ian F. Darwin and others;
  4. * maintained 1995-present by Christos Zoulas and others.
  5. *
  6. * Redistribution and use in source and binary forms, with or without
  7. * modification, are permitted provided that the following conditions
  8. * are met:
  9. * 1. Redistributions of source code must retain the above copyright
  10. * notice immediately at the beginning of the file, without modification,
  11. * this list of conditions, and the following disclaimer.
  12. * 2. Redistributions in binary form must reproduce the above copyright
  13. * notice, this list of conditions and the following disclaimer in the
  14. * documentation and/or other materials provided with the distribution.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  17. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  18. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  19. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
  20. * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  21. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  22. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  23. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  24. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  25. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  26. * SUCH DAMAGE.
  27. */
  28. /*
  29. * fsmagic - magic based on filesystem info - directory, special files, etc.
  30. */
  31. #include "file.h"
  32. #include "magic.h"
  33. #include <string.h>
  34. #ifdef HAVE_UNISTD_H
  35. #include <unistd.h>
  36. #endif
  37. #include <stdlib.h>
  38. #include <sys/stat.h>
  39. /* Since major is a function on SVR4, we cannot use `ifndef major'. */
  40. #ifdef MAJOR_IN_MKDEV
  41. # include <sys/mkdev.h>
  42. # define HAVE_MAJOR
  43. #endif
  44. #ifdef MAJOR_IN_SYSMACROS
  45. # include <sys/sysmacros.h>
  46. # define HAVE_MAJOR
  47. #endif
  48. #ifdef major /* Might be defined in sys/types.h. */
  49. # define HAVE_MAJOR
  50. #endif
  51. #ifndef HAVE_MAJOR
  52. # define major(dev) (((dev) >> 8) & 0xff)
  53. # define minor(dev) ((dev) & 0xff)
  54. #endif
  55. #undef HAVE_MAJOR
  56. #ifndef lint
  57. FILE_RCSID("@(#)$File: fsmagic.c,v 1.47 2007/01/12 17:38:28 christos Exp $")
  58. #endif /* lint */
  59. protected int
  60. file_fsmagic(struct magic_set *ms, const char *fn, struct stat *sb)
  61. {
  62. int ret = 0;
  63. #ifdef S_IFLNK
  64. char buf[BUFSIZ+4];
  65. int nch;
  66. struct stat tstatbuf;
  67. #endif
  68. if (fn == NULL)
  69. return 0;
  70. /*
  71. * Fstat is cheaper but fails for files you don't have read perms on.
  72. * On 4.2BSD and similar systems, use lstat() to identify symlinks.
  73. */
  74. #ifdef S_IFLNK
  75. if ((ms->flags & MAGIC_SYMLINK) == 0)
  76. ret = lstat(fn, sb);
  77. else
  78. #endif
  79. ret = stat(fn, sb); /* don't merge into if; see "ret =" above */
  80. if (ret) {
  81. if (ms->flags & MAGIC_ERROR) {
  82. file_error(ms, errno, "cannot stat `%s'", fn);
  83. return -1;
  84. }
  85. if (file_printf(ms, "cannot open `%s' (%s)",
  86. fn, strerror(errno)) == -1)
  87. return -1;
  88. ms->haderr++;
  89. return -1;
  90. }
  91. if ((ms->flags & MAGIC_MIME) != 0) {
  92. if ((sb->st_mode & S_IFMT) != S_IFREG) {
  93. if (file_printf(ms, "application/x-not-regular-file")
  94. == -1)
  95. return -1;
  96. return 1;
  97. }
  98. }
  99. else {
  100. #ifdef S_ISUID
  101. if (sb->st_mode & S_ISUID)
  102. if (file_printf(ms, "setuid ") == -1)
  103. return -1;
  104. #endif
  105. #ifdef S_ISGID
  106. if (sb->st_mode & S_ISGID)
  107. if (file_printf(ms, "setgid ") == -1)
  108. return -1;
  109. #endif
  110. #ifdef S_ISVTX
  111. if (sb->st_mode & S_ISVTX)
  112. if (file_printf(ms, "sticky ") == -1)
  113. return -1;
  114. #endif
  115. }
  116. switch (sb->st_mode & S_IFMT) {
  117. case S_IFDIR:
  118. if (file_printf(ms, "directory") == -1)
  119. return -1;
  120. return 1;
  121. #ifdef S_IFCHR
  122. case S_IFCHR:
  123. /*
  124. * If -s has been specified, treat character special files
  125. * like ordinary files. Otherwise, just report that they
  126. * are block special files and go on to the next file.
  127. */
  128. if ((ms->flags & MAGIC_DEVICES) != 0)
  129. break;
  130. #ifdef HAVE_ST_RDEV
  131. # ifdef dv_unit
  132. if (file_printf(ms, "character special (%d/%d/%d)",
  133. major(sb->st_rdev), dv_unit(sb->st_rdev),
  134. dv_subunit(sb->st_rdev)) == -1)
  135. return -1;
  136. # else
  137. if (file_printf(ms, "character special (%ld/%ld)",
  138. (long) major(sb->st_rdev), (long) minor(sb->st_rdev)) == -1)
  139. return -1;
  140. # endif
  141. #else
  142. if (file_printf(ms, "character special") == -1)
  143. return -1;
  144. #endif
  145. return 1;
  146. #endif
  147. #ifdef S_IFBLK
  148. case S_IFBLK:
  149. /*
  150. * If -s has been specified, treat block special files
  151. * like ordinary files. Otherwise, just report that they
  152. * are block special files and go on to the next file.
  153. */
  154. if ((ms->flags & MAGIC_DEVICES) != 0)
  155. break;
  156. #ifdef HAVE_ST_RDEV
  157. # ifdef dv_unit
  158. if (file_printf(ms, "block special (%d/%d/%d)",
  159. major(sb->st_rdev), dv_unit(sb->st_rdev),
  160. dv_subunit(sb->st_rdev)) == -1)
  161. return -1;
  162. # else
  163. if (file_printf(ms, "block special (%ld/%ld)",
  164. (long)major(sb->st_rdev), (long)minor(sb->st_rdev)) == -1)
  165. return -1;
  166. # endif
  167. #else
  168. if (file_printf(ms, "block special") == -1)
  169. return -1;
  170. #endif
  171. return 1;
  172. #endif
  173. /* TODO add code to handle V7 MUX and Blit MUX files */
  174. #ifdef S_IFIFO
  175. case S_IFIFO:
  176. if((ms->flags & MAGIC_DEVICES) != 0)
  177. break;
  178. if (file_printf(ms, "fifo (named pipe)") == -1)
  179. return -1;
  180. return 1;
  181. #endif
  182. #ifdef S_IFDOOR
  183. case S_IFDOOR:
  184. if (file_printf(ms, "door") == -1)
  185. return -1;
  186. return 1;
  187. #endif
  188. #ifdef S_IFLNK
  189. case S_IFLNK:
  190. if ((nch = readlink(fn, buf, BUFSIZ-1)) <= 0) {
  191. if (ms->flags & MAGIC_ERROR) {
  192. file_error(ms, errno, "unreadable symlink `%s'",
  193. fn);
  194. return -1;
  195. }
  196. if (file_printf(ms,
  197. "unreadable symlink `%s' (%s)", fn,
  198. strerror(errno)) == -1)
  199. return -1;
  200. return 1;
  201. }
  202. buf[nch] = '\0'; /* readlink(2) forgets this */
  203. /* If broken symlink, say so and quit early. */
  204. if (*buf == '/') {
  205. if (stat(buf, &tstatbuf) < 0) {
  206. if (ms->flags & MAGIC_ERROR) {
  207. file_error(ms, errno,
  208. "broken symbolic link to `%s'", buf);
  209. return -1;
  210. }
  211. if (file_printf(ms, "broken symbolic link to `%s'",
  212. buf) == -1)
  213. return -1;
  214. return 1;
  215. }
  216. }
  217. else {
  218. char *tmp;
  219. char buf2[BUFSIZ+BUFSIZ+4];
  220. if ((tmp = strrchr(fn, '/')) == NULL) {
  221. tmp = buf; /* in current directory anyway */
  222. } else {
  223. if (tmp - fn + 1 > BUFSIZ) {
  224. if (ms->flags & MAGIC_ERROR) {
  225. file_error(ms, 0,
  226. "path too long: `%s'", buf);
  227. return -1;
  228. }
  229. if (file_printf(ms,
  230. "path too long: `%s'", fn) == -1)
  231. return -1;
  232. return 1;
  233. }
  234. (void)strcpy(buf2, fn); /* take dir part */
  235. buf2[tmp - fn + 1] = '\0';
  236. (void)strcat(buf2, buf); /* plus (rel) link */
  237. tmp = buf2;
  238. }
  239. if (stat(tmp, &tstatbuf) < 0) {
  240. if (ms->flags & MAGIC_ERROR) {
  241. file_error(ms, errno,
  242. "broken symbolic link to `%s'",
  243. buf);
  244. return -1;
  245. }
  246. if (file_printf(ms,
  247. "broken symbolic link to `%s'", buf) == -1)
  248. return -1;
  249. return 1;
  250. }
  251. }
  252. /* Otherwise, handle it. */
  253. if ((ms->flags & MAGIC_SYMLINK) != 0) {
  254. const char *p;
  255. ms->flags &= MAGIC_SYMLINK;
  256. p = magic_file(ms, buf);
  257. ms->flags |= MAGIC_SYMLINK;
  258. return p != NULL ? 1 : -1;
  259. } else { /* just print what it points to */
  260. if (file_printf(ms, "symbolic link to `%s'",
  261. buf) == -1)
  262. return -1;
  263. }
  264. return 1;
  265. #endif
  266. #ifdef S_IFSOCK
  267. #ifndef __COHERENT__
  268. case S_IFSOCK:
  269. if (file_printf(ms, "socket") == -1)
  270. return -1;
  271. return 1;
  272. #endif
  273. #endif
  274. case S_IFREG:
  275. break;
  276. default:
  277. file_error(ms, 0, "invalid mode 0%o", sb->st_mode);
  278. return -1;
  279. /*NOTREACHED*/
  280. }
  281. /*
  282. * regular file, check next possibility
  283. *
  284. * If stat() tells us the file has zero length, report here that
  285. * the file is empty, so we can skip all the work of opening and
  286. * reading the file.
  287. * But if the -s option has been given, we skip this optimization,
  288. * since on some systems, stat() reports zero size for raw disk
  289. * partitions. (If the block special device really has zero length,
  290. * the fact that it is empty will be detected and reported correctly
  291. * when we read the file.)
  292. */
  293. if ((ms->flags & MAGIC_DEVICES) == 0 && sb->st_size == 0) {
  294. if (file_printf(ms, (ms->flags & MAGIC_MIME) ?
  295. "application/x-empty" : "empty") == -1)
  296. return -1;
  297. return 1;
  298. }
  299. return 0;
  300. }