iso.h 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  1. /* $OpenBSD: iso.h,v 1.15 2013/05/30 17:35:01 guenther Exp $ */
  2. /* $NetBSD: iso.h,v 1.20 1997/07/07 22:45:34 cgd Exp $ */
  3. /*-
  4. * Copyright (c) 1994
  5. * The Regents of the University of California. All rights reserved.
  6. *
  7. * This code is derived from software contributed to Berkeley
  8. * by Pace Willisson (pace@blitz.com). The Rock Ridge Extension
  9. * Support code is derived from software contributed to Berkeley
  10. * by Atsushi Murai (amurai@spec.co.jp).
  11. *
  12. * Redistribution and use in source and binary forms, with or without
  13. * modification, are permitted provided that the following conditions
  14. * are met:
  15. * 1. Redistributions of source code must retain the above copyright
  16. * notice, this list of conditions and the following disclaimer.
  17. * 2. Redistributions in binary form must reproduce the above copyright
  18. * notice, this list of conditions and the following disclaimer in the
  19. * documentation and/or other materials provided with the distribution.
  20. * 3. Neither the name of the University nor the names of its contributors
  21. * may be used to endorse or promote products derived from this software
  22. * without specific prior written permission.
  23. *
  24. * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  25. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  26. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  27. * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  28. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  29. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  30. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  31. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  32. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  33. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  34. * SUCH DAMAGE.
  35. *
  36. * @(#)iso.h 8.4 (Berkeley) 12/5/94
  37. */
  38. /*
  39. * Definitions describing ISO9660 file system structure, as well as
  40. * the functions necessary to access fields of ISO9660 file system
  41. * structures.
  42. */
  43. typedef uint32_t cdino_t;
  44. #define ISODCL(from, to) (to - from + 1)
  45. struct iso_volume_descriptor {
  46. char type[ISODCL(1,1)]; /* 711 */
  47. char id[ISODCL(2,6)];
  48. char version[ISODCL(7,7)];
  49. char data[ISODCL(8,2048)];
  50. };
  51. /* volume descriptor types */
  52. #define ISO_VD_PRIMARY 1
  53. #define ISO_VD_SUPPLEMENTARY 2
  54. #define ISO_VD_END 255
  55. #define ISO_STANDARD_ID "CD001"
  56. #define ISO_ECMA_ID "CDW01"
  57. struct iso_primary_descriptor {
  58. char type [ISODCL ( 1, 1)]; /* 711 */
  59. char id [ISODCL ( 2, 6)];
  60. char version [ISODCL ( 7, 7)]; /* 711 */
  61. char unused1 [ISODCL ( 8, 8)];
  62. char system_id [ISODCL ( 9, 40)]; /* achars */
  63. char volume_id [ISODCL ( 41, 72)]; /* dchars */
  64. char unused2 [ISODCL ( 73, 80)];
  65. char volume_space_size [ISODCL ( 81, 88)]; /* 733 */
  66. char unused3 [ISODCL ( 89, 120)];
  67. char volume_set_size [ISODCL (121, 124)]; /* 723 */
  68. char volume_sequence_number [ISODCL (125, 128)]; /* 723 */
  69. char logical_block_size [ISODCL (129, 132)]; /* 723 */
  70. char path_table_size [ISODCL (133, 140)]; /* 733 */
  71. char type_l_path_table [ISODCL (141, 144)]; /* 731 */
  72. char opt_type_l_path_table [ISODCL (145, 148)]; /* 731 */
  73. char type_m_path_table [ISODCL (149, 152)]; /* 732 */
  74. char opt_type_m_path_table [ISODCL (153, 156)]; /* 732 */
  75. char root_directory_record [ISODCL (157, 190)]; /* 9.1 */
  76. char volume_set_id [ISODCL (191, 318)]; /* dchars */
  77. char publisher_id [ISODCL (319, 446)]; /* achars */
  78. char preparer_id [ISODCL (447, 574)]; /* achars */
  79. char application_id [ISODCL (575, 702)]; /* achars */
  80. char copyright_file_id [ISODCL (703, 739)]; /* 7.5 dchars */
  81. char abstract_file_id [ISODCL (740, 776)]; /* 7.5 dchars */
  82. char bibliographic_file_id [ISODCL (777, 813)]; /* 7.5 dchars */
  83. char creation_date [ISODCL (814, 830)]; /* 8.4.26.1 */
  84. char modification_date [ISODCL (831, 847)]; /* 8.4.26.1 */
  85. char expiration_date [ISODCL (848, 864)]; /* 8.4.26.1 */
  86. char effective_date [ISODCL (865, 881)]; /* 8.4.26.1 */
  87. char file_structure_version [ISODCL (882, 882)]; /* 711 */
  88. char unused4 [ISODCL (883, 883)];
  89. char application_data [ISODCL (884, 1395)];
  90. char unused5 [ISODCL (1396, 2048)];
  91. };
  92. #define ISO_DEFAULT_BLOCK_SHIFT 11
  93. #define ISO_DEFAULT_BLOCK_SIZE (1<<ISO_DEFAULT_BLOCK_SHIFT)
  94. /*
  95. * Used by Microsoft Joliet extension to ISO9660. Almost the same
  96. * as PVD, but byte position 8 is a flag, and 89-120 is for escape.
  97. */
  98. struct iso_supplementary_descriptor {
  99. char type [ISODCL ( 1, 1)]; /* 711 */
  100. char id [ISODCL ( 2, 6)];
  101. char version [ISODCL ( 7, 7)]; /* 711 */
  102. char flags [ISODCL ( 8, 8)];
  103. char system_id [ISODCL ( 9, 40)]; /* achars */
  104. char volume_id [ISODCL ( 41, 72)]; /* dchars */
  105. char unused2 [ISODCL ( 73, 80)];
  106. char volume_space_size [ISODCL ( 81, 88)]; /* 733 */
  107. char escape [ISODCL ( 89, 120)];
  108. char volume_set_size [ISODCL (121, 124)]; /* 723 */
  109. char volume_sequence_number [ISODCL (125, 128)]; /* 723 */
  110. char logical_block_size [ISODCL (129, 132)]; /* 723 */
  111. char path_table_size [ISODCL (133, 140)]; /* 733 */
  112. char type_l_path_table [ISODCL (141, 144)]; /* 731 */
  113. char opt_type_l_path_table [ISODCL (145, 148)]; /* 731 */
  114. char type_m_path_table [ISODCL (149, 152)]; /* 732 */
  115. char opt_type_m_path_table [ISODCL (153, 156)]; /* 732 */
  116. char root_directory_record [ISODCL (157, 190)]; /* 9.1 */
  117. char volume_set_id [ISODCL (191, 318)]; /* dchars */
  118. char publisher_id [ISODCL (319, 446)]; /* achars */
  119. char preparer_id [ISODCL (447, 574)]; /* achars */
  120. char application_id [ISODCL (575, 702)]; /* achars */
  121. char copyright_file_id [ISODCL (703, 739)]; /* 7.5 dchars */
  122. char abstract_file_id [ISODCL (740, 776)]; /* 7.5 dchars */
  123. char bibliographic_file_id [ISODCL (777, 813)]; /* 7.5 dchars */
  124. char creation_date [ISODCL (814, 830)]; /* 8.4.26.1 */
  125. char modification_date [ISODCL (831, 847)]; /* 8.4.26.1 */
  126. char expiration_date [ISODCL (848, 864)]; /* 8.4.26.1 */
  127. char effective_date [ISODCL (865, 881)]; /* 8.4.26.1 */
  128. char file_structure_version [ISODCL (882, 882)]; /* 711 */
  129. char unused4 [ISODCL (883, 883)];
  130. char application_data [ISODCL (884, 1395)];
  131. char unused5 [ISODCL (1396, 2048)];
  132. };
  133. struct iso_directory_record {
  134. char length [ISODCL (1, 1)]; /* 711 */
  135. char ext_attr_length [ISODCL (2, 2)]; /* 711 */
  136. u_char extent [ISODCL (3, 10)]; /* 733 */
  137. u_char size [ISODCL (11, 18)]; /* 733 */
  138. char date [ISODCL (19, 25)]; /* 7 by 711 */
  139. char flags [ISODCL (26, 26)];
  140. char file_unit_size [ISODCL (27, 27)]; /* 711 */
  141. char interleave [ISODCL (28, 28)]; /* 711 */
  142. char volume_sequence_number [ISODCL (29, 32)]; /* 723 */
  143. char name_len [ISODCL (33, 33)]; /* 711 */
  144. char name [1]; /* XXX */
  145. };
  146. /* can't take sizeof(iso_directory_record), because of possible alignment
  147. of the last entry (34 instead of 33) */
  148. #define ISO_DIRECTORY_RECORD_SIZE 33
  149. struct iso_extended_attributes {
  150. u_char owner [ISODCL (1, 4)]; /* 723 */
  151. u_char group [ISODCL (5, 8)]; /* 723 */
  152. u_char perm [ISODCL (9, 10)]; /* 9.5.3 */
  153. char ctime [ISODCL (11, 27)]; /* 8.4.26.1 */
  154. char mtime [ISODCL (28, 44)]; /* 8.4.26.1 */
  155. char xtime [ISODCL (45, 61)]; /* 8.4.26.1 */
  156. char ftime [ISODCL (62, 78)]; /* 8.4.26.1 */
  157. char recfmt [ISODCL (79, 79)]; /* 711 */
  158. char recattr [ISODCL (80, 80)]; /* 711 */
  159. u_char reclen [ISODCL (81, 84)]; /* 723 */
  160. char system_id [ISODCL (85, 116)]; /* achars */
  161. char system_use [ISODCL (117, 180)];
  162. char version [ISODCL (181, 181)]; /* 711 */
  163. char len_esc [ISODCL (182, 182)]; /* 711 */
  164. char reserved [ISODCL (183, 246)];
  165. u_char len_au [ISODCL (247, 250)]; /* 723 */
  166. };
  167. static __inline int isonum_711(u_char *) __attribute__ ((__unused__));
  168. static __inline int isonum_712(char *) __attribute__ ((__unused__));
  169. static __inline int isonum_721(u_char *) __attribute__ ((__unused__));
  170. static __inline int isonum_722(u_char *) __attribute__ ((__unused__));
  171. static __inline int isonum_723(u_char *) __attribute__ ((__unused__));
  172. static __inline int isonum_731(u_char *) __attribute__ ((__unused__));
  173. static __inline int isonum_732(u_char *) __attribute__ ((__unused__));
  174. static __inline int isonum_733(u_char *) __attribute__ ((__unused__));
  175. /* 7.1.1: unsigned char */
  176. static __inline int
  177. isonum_711(u_char *p)
  178. {
  179. return *p;
  180. }
  181. /* 7.1.2: signed(?) char */
  182. static __inline int
  183. isonum_712(char *p)
  184. {
  185. return *p;
  186. }
  187. /* 7.2.1: unsigned little-endian 16-bit value. NOT USED IN KERNEL. */
  188. static __inline int
  189. isonum_721(p)
  190. u_char *p;
  191. {
  192. #if !defined(__STRICT_ALIGNMENT) && (BYTE_ORDER == LITTLE_ENDIAN)
  193. return *(u_int16_t *)p;
  194. #else
  195. return *p|((char)p[1] << 8);
  196. #endif
  197. }
  198. /* 7.2.2: unsigned big-endian 16-bit value. NOT USED IN KERNEL. */
  199. static __inline int
  200. isonum_722(p)
  201. unsigned char *p;
  202. {
  203. #if !defined(__STRICT_ALIGNMENT) && (BYTE_ORDER == BIG_ENDIAN)
  204. return *(u_int16_t *)p;
  205. #else
  206. return ((char)*p << 8)|p[1];
  207. #endif
  208. }
  209. /* 7.2.3: unsigned both-endian (little, then big) 16-bit value */
  210. static __inline int
  211. isonum_723(u_char *p)
  212. {
  213. #if !defined(__STRICT_ALIGNMENT) && \
  214. ((BYTE_ORDER == LITTLE_ENDIAN) || (BYTE_ORDER == BIG_ENDIAN))
  215. #if BYTE_ORDER == LITTLE_ENDIAN
  216. return *(u_int16_t *)p;
  217. #else
  218. return *(u_int16_t *)(p + 2);
  219. #endif
  220. #else /* __STRICT_ALIGNMENT or weird byte order */
  221. return *p|(p[1] << 8);
  222. #endif
  223. }
  224. /* 7.3.1: unsigned little-endian 32-bit value. NOT USED IN KERNEL. */
  225. static __inline int
  226. isonum_731(p)
  227. u_char *p;
  228. {
  229. #if !defined(__STRICT_ALIGNMENT) && (BYTE_ORDER == LITTLE_ENDIAN)
  230. return *(u_int32_t *)p;
  231. #else
  232. return *p|(p[1] << 8)|(p[2] << 16)|(p[3] << 24);
  233. #endif
  234. }
  235. /* 7.3.2: unsigned big-endian 32-bit value. NOT USED IN KERNEL. */
  236. static __inline int
  237. isonum_732(p)
  238. unsigned char *p;
  239. {
  240. #if !defined(__STRICT_ALIGNMENT) && (BYTE_ORDER == BIG_ENDIAN)
  241. return *(u_int32_t *)p;
  242. #else
  243. return (*p << 24)|(p[1] << 16)|(p[2] << 8)|p[3];
  244. #endif
  245. }
  246. /* 7.3.3: unsigned both-endian (little, then big) 32-bit value */
  247. static __inline int
  248. isonum_733(u_char *p)
  249. {
  250. #if !defined(__STRICT_ALIGNMENT) && \
  251. ((BYTE_ORDER == LITTLE_ENDIAN) || (BYTE_ORDER == BIG_ENDIAN))
  252. #if BYTE_ORDER == LITTLE_ENDIAN
  253. return *(u_int32_t *)p;
  254. #else
  255. return *(u_int32_t *)(p + 4);
  256. #endif
  257. #else /* __STRICT_ALIGNMENT or weird byte order */
  258. return *p|(p[1] << 8)|(p[2] << 16)|(p[3] << 24);
  259. #endif
  260. }
  261. /*
  262. * Associated files have a leading '='.
  263. */
  264. #define ASSOCCHAR '='