misc.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:11k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * misc.c
  3.  *
  4.  * PURPOSE
  5.  * Miscellaneous routines for the OSTA-UDF(tm) filesystem.
  6.  *
  7.  * CONTACTS
  8.  * E-mail regarding any portion of the Linux UDF file system should be
  9.  * directed to the development team mailing list (run by majordomo):
  10.  * linux_udf@hpesjro.fc.hp.com
  11.  *
  12.  * COPYRIGHT
  13.  * This file is distributed under the terms of the GNU General Public
  14.  * License (GPL). Copies of the GPL can be obtained from:
  15.  * ftp://prep.ai.mit.edu/pub/gnu/GPL
  16.  * Each contributing author retains all rights to their own work.
  17.  *
  18.  *  (C) 1998 Dave Boynton
  19.  *  (C) 1998-2000 Ben Fennema
  20.  *  (C) 1999-2000 Stelias Computing Inc
  21.  *
  22.  * HISTORY
  23.  *
  24.  *  04/19/99 blf  partial support for reading/writing specific EA's
  25.  */
  26. #include "udfdecl.h"
  27. #if defined(__linux__) && defined(__KERNEL__)
  28. #include "udf_sb.h"
  29. #include "udf_i.h"
  30. #include <linux/fs.h>
  31. #include <linux/string.h>
  32. #include <linux/udf_fs.h>
  33. #else
  34. #include <sys/types.h>
  35. #include <stdio.h>
  36. #include <unistd.h>
  37. #include <string.h>
  38. int udf_blocksize=0;
  39. int udf_errno=0;
  40. void 
  41. udf_setblocksize(int size)
  42. {
  43. udf_blocksize=size;
  44. }
  45. #endif
  46. Uint32
  47. udf64_low32(Uint64 indat)
  48. {
  49. return indat & 0x00000000FFFFFFFFULL;
  50. }
  51. Uint32
  52. udf64_high32(Uint64 indat)
  53. {
  54. return indat >> 32;
  55. }
  56. #if defined(__linux__) && defined(__KERNEL__)
  57. extern struct buffer_head *
  58. udf_tgetblk(struct super_block *sb, int block)
  59. {
  60. if (UDF_QUERY_FLAG(sb, UDF_FLAG_VARCONV))
  61. return sb_getblk(sb, udf_fixed_to_variable(block));
  62. else
  63. return sb_getblk(sb, block);
  64. }
  65. extern struct buffer_head *
  66. udf_tread(struct super_block *sb, int block)
  67. {
  68. if (UDF_QUERY_FLAG(sb, UDF_FLAG_VARCONV))
  69. return sb_bread(sb, udf_fixed_to_variable(block));
  70. else
  71. return sb_bread(sb, block);
  72. }
  73. extern struct GenericAttrFormat *
  74. udf_add_extendedattr(struct inode * inode, Uint32 size, Uint32 type,
  75. Uint8 loc, struct buffer_head **bh)
  76. {
  77. Uint8 *ea = NULL, *ad = NULL;
  78. long_ad eaicb;
  79. int offset;
  80. *bh = udf_tread(inode->i_sb, inode->i_ino);
  81. if (UDF_I_EXTENDED_FE(inode) == 0)
  82. {
  83. struct FileEntry *fe;
  84. fe = (struct FileEntry *)(*bh)->b_data;
  85. eaicb = lela_to_cpu(fe->extendedAttrICB);
  86. offset = sizeof(struct FileEntry);
  87. }
  88. else
  89. {
  90. struct ExtendedFileEntry *efe;
  91. efe = (struct ExtendedFileEntry *)(*bh)->b_data;
  92. eaicb = lela_to_cpu(efe->extendedAttrICB);
  93. offset = sizeof(struct ExtendedFileEntry);
  94. }
  95. ea = &(*bh)->b_data[offset];
  96. if (UDF_I_LENEATTR(inode))
  97. offset += UDF_I_LENEATTR(inode);
  98. else
  99. size += sizeof(struct ExtendedAttrHeaderDesc);
  100. ad = &(*bh)->b_data[offset];
  101. if (UDF_I_LENALLOC(inode))
  102. offset += UDF_I_LENALLOC(inode);
  103. offset = inode->i_sb->s_blocksize - offset;
  104. /* TODO - Check for FreeEASpace */
  105. if (loc & 0x01 && offset >= size)
  106. {
  107. struct ExtendedAttrHeaderDesc *eahd;
  108. eahd = (struct ExtendedAttrHeaderDesc *)ea;
  109. if (UDF_I_LENALLOC(inode))
  110. {
  111. memmove(&ad[size], ad, UDF_I_LENALLOC(inode));
  112. }
  113. if (UDF_I_LENEATTR(inode))
  114. {
  115. /* check checksum/crc */
  116. if (le16_to_cpu(eahd->descTag.tagIdent) != TID_EXTENDED_ATTRE_HEADER_DESC ||
  117. le32_to_cpu(eahd->descTag.tagLocation) != UDF_I_LOCATION(inode).logicalBlockNum)
  118. {
  119. udf_release_data(*bh);
  120. return NULL;
  121. }
  122. }
  123. else
  124. {
  125. size -= sizeof(struct ExtendedAttrHeaderDesc);
  126. UDF_I_LENEATTR(inode) += sizeof(struct ExtendedAttrHeaderDesc);
  127. eahd->descTag.tagIdent = cpu_to_le16(TID_EXTENDED_ATTRE_HEADER_DESC);
  128. eahd->descTag.descVersion = cpu_to_le16(2);
  129. eahd->descTag.tagSerialNum = cpu_to_le16(1);
  130. eahd->descTag.tagLocation = cpu_to_le32(UDF_I_LOCATION(inode).logicalBlockNum);
  131. eahd->impAttrLocation = cpu_to_le32(0xFFFFFFFF);
  132. eahd->appAttrLocation = cpu_to_le32(0xFFFFFFFF);
  133. }
  134. offset = UDF_I_LENEATTR(inode);
  135. if (type < 2048)
  136. {
  137. if (le32_to_cpu(eahd->appAttrLocation) < UDF_I_LENEATTR(inode))
  138. {
  139. Uint32 aal = le32_to_cpu(eahd->appAttrLocation);
  140. memmove(&ea[offset - aal + size],
  141. &ea[aal], offset - aal);
  142. offset -= aal;
  143. eahd->appAttrLocation = cpu_to_le32(aal + size);
  144. }
  145. if (le32_to_cpu(eahd->impAttrLocation) < UDF_I_LENEATTR(inode))
  146. {
  147. Uint32 ial = le32_to_cpu(eahd->impAttrLocation);
  148. memmove(&ea[offset - ial + size],
  149. &ea[ial], offset - ial);
  150. offset -= ial;
  151. eahd->impAttrLocation = cpu_to_le32(ial + size);
  152. }
  153. }
  154. else if (type < 65536)
  155. {
  156. if (le32_to_cpu(eahd->appAttrLocation) < UDF_I_LENEATTR(inode))
  157. {
  158. Uint32 aal = le32_to_cpu(eahd->appAttrLocation);
  159. memmove(&ea[offset - aal + size],
  160. &ea[aal], offset - aal);
  161. offset -= aal;
  162. eahd->appAttrLocation = cpu_to_le32(aal + size);
  163. }
  164. }
  165. /* rewrite CRC + checksum of eahd */
  166. UDF_I_LENEATTR(inode) += size;
  167. return (struct GenericAttrFormat *)&ea[offset];
  168. }
  169. if (loc & 0x02)
  170. {
  171. }
  172. udf_release_data(*bh);
  173. return NULL;
  174. }
  175. extern struct GenericAttrFormat *
  176. udf_get_extendedattr(struct inode * inode, Uint32 type, Uint8 subtype,
  177. struct buffer_head **bh)
  178. {
  179. struct GenericAttrFormat *gaf;
  180. Uint8 *ea = NULL;
  181. long_ad eaicb;
  182. Uint32 offset;
  183. *bh = udf_tread(inode->i_sb, inode->i_ino);
  184. if (UDF_I_EXTENDED_FE(inode) == 0)
  185. {
  186. struct FileEntry *fe;
  187. fe = (struct FileEntry *)(*bh)->b_data;
  188. eaicb = lela_to_cpu(fe->extendedAttrICB);
  189. if (UDF_I_LENEATTR(inode))
  190. ea = fe->extendedAttr;
  191. }
  192. else
  193. {
  194. struct ExtendedFileEntry *efe;
  195. efe = (struct ExtendedFileEntry *)(*bh)->b_data;
  196. eaicb = lela_to_cpu(efe->extendedAttrICB);
  197. if (UDF_I_LENEATTR(inode))
  198. ea = efe->extendedAttr;
  199. }
  200. if (UDF_I_LENEATTR(inode))
  201. {
  202. struct ExtendedAttrHeaderDesc *eahd;
  203. eahd = (struct ExtendedAttrHeaderDesc *)ea;
  204. /* check checksum/crc */
  205. if (le16_to_cpu(eahd->descTag.tagIdent) != TID_EXTENDED_ATTRE_HEADER_DESC ||
  206. le32_to_cpu(eahd->descTag.tagLocation) != UDF_I_LOCATION(inode).logicalBlockNum)
  207. {
  208. udf_release_data(*bh);
  209. return NULL;
  210. }
  211. if (type < 2048)
  212. offset = sizeof(struct ExtendedAttrHeaderDesc);
  213. else if (type < 65536)
  214. offset = le32_to_cpu(eahd->impAttrLocation);
  215. else
  216. offset = le32_to_cpu(eahd->appAttrLocation);
  217. while (offset < UDF_I_LENEATTR(inode))
  218. {
  219. gaf = (struct GenericAttrFormat *)&ea[offset];
  220. if (le32_to_cpu(gaf->attrType) == type && gaf->attrSubtype == subtype)
  221. return gaf;
  222. else
  223. offset += le32_to_cpu(gaf->attrLength);
  224. }
  225. }
  226. udf_release_data(*bh);
  227. if (eaicb.extLength)
  228. {
  229. /* TODO */
  230. }
  231. return NULL;
  232. }
  233. extern struct buffer_head *
  234. udf_read_untagged(struct super_block *sb, Uint32 block, Uint32 offset)
  235. {
  236. struct buffer_head *bh = NULL;
  237. /* Read the block */
  238. bh = udf_tread(sb, block+offset);
  239. if (!bh)
  240. {
  241. printk(KERN_ERR "udf: udf_read_untagged(%p,%d,%d) failedn",
  242. sb, block, offset);
  243. return NULL;
  244. }
  245. return bh;
  246. }
  247. /*
  248.  * udf_read_tagged
  249.  *
  250.  * PURPOSE
  251.  * Read the first block of a tagged descriptor.
  252.  *
  253.  * HISTORY
  254.  * July 1, 1997 - Andrew E. Mileski
  255.  * Written, tested, and released.
  256.  */
  257. extern struct buffer_head *
  258. udf_read_tagged(struct super_block *sb, Uint32 block, Uint32 location, Uint16 *ident)
  259. {
  260. tag *tag_p;
  261. struct buffer_head *bh = NULL;
  262. register Uint8 checksum;
  263. register int i;
  264. /* Read the block */
  265. if (block == 0xFFFFFFFF)
  266. return NULL;
  267. bh = udf_tread(sb, block);
  268. if (!bh)
  269. {
  270. udf_debug("block=%d, location=%d: read failedn", block, location);
  271. return NULL;
  272. }
  273. tag_p = (tag *)(bh->b_data);
  274. *ident = le16_to_cpu(tag_p->tagIdent);
  275. if ( location != le32_to_cpu(tag_p->tagLocation) )
  276. {
  277. udf_debug("location mismatch block %u, tag %u != %un",
  278. block, le32_to_cpu(tag_p->tagLocation), location);
  279. goto error_out;
  280. }
  281. /* Verify the tag checksum */
  282. checksum = 0U;
  283. for (i = 0; i < 4; i++)
  284. checksum += (Uint8)(bh->b_data[i]);
  285. for (i = 5; i < 16; i++)
  286. checksum += (Uint8)(bh->b_data[i]);
  287. if (checksum != tag_p->tagChecksum) {
  288. printk(KERN_ERR "udf: tag checksum failed block %dn", block);
  289. goto error_out;
  290. }
  291. /* Verify the tag version */
  292. if (le16_to_cpu(tag_p->descVersion) != 0x0002U &&
  293. le16_to_cpu(tag_p->descVersion) != 0x0003U)
  294. {
  295. udf_debug("tag version 0x%04x != 0x0002 || 0x0003 block %dn",
  296. le16_to_cpu(tag_p->descVersion), block);
  297. goto error_out;
  298. }
  299. /* Verify the descriptor CRC */
  300. if (le16_to_cpu(tag_p->descCRCLength) + sizeof(tag) > sb->s_blocksize ||
  301. le16_to_cpu(tag_p->descCRC) == udf_crc(bh->b_data + sizeof(tag),
  302. le16_to_cpu(tag_p->descCRCLength), 0))
  303. {
  304. return bh;
  305. }
  306. udf_debug("Crc failure block %d: crc = %d, crclen = %dn",
  307. block, le16_to_cpu(tag_p->descCRC), le16_to_cpu(tag_p->descCRCLength));
  308. error_out:
  309. brelse(bh);
  310. return NULL;
  311. }
  312. extern struct buffer_head *
  313. udf_read_ptagged(struct super_block *sb, lb_addr loc, Uint32 offset, Uint16 *ident)
  314. {
  315. return udf_read_tagged(sb, udf_get_lb_pblock(sb, loc, offset),
  316. loc.logicalBlockNum + offset, ident);
  317. }
  318. void udf_release_data(struct buffer_head *bh)
  319. {
  320. if (bh)
  321. brelse(bh);
  322. }
  323. #endif
  324. void udf_update_tag(char *data, int length)
  325. {
  326. tag *tptr = (tag *)data;
  327. int i;
  328. length -= sizeof(tag);
  329. tptr->tagChecksum = 0;
  330. tptr->descCRCLength = le16_to_cpu(length);
  331. tptr->descCRC = le16_to_cpu(udf_crc(data + sizeof(tag), length, 0));
  332. for (i=0; i<16; i++)
  333. if (i != 4)
  334. tptr->tagChecksum += (Uint8)(data[i]);
  335. }
  336. void udf_new_tag(char *data, Uint16 ident, Uint16 version, Uint16 snum,
  337. Uint32 loc, int length)
  338. {
  339. tag *tptr = (tag *)data;
  340. tptr->tagIdent = le16_to_cpu(ident);
  341. tptr->descVersion = le16_to_cpu(version);
  342. tptr->tagSerialNum = le16_to_cpu(snum);
  343. tptr->tagLocation = le32_to_cpu(loc);
  344. udf_update_tag(data, length);
  345. }
  346. #ifndef __KERNEL__
  347. /*
  348.  * udf_read_tagged_data
  349.  *
  350.  * PURPOSE
  351.  * Read the first block of a tagged descriptor.
  352.  * Usable from user-land.
  353.  *
  354.  * HISTORY
  355.  *   10/4/98 dgb: written
  356.  */
  357. int
  358. udf_read_tagged_data(char *buffer, int size, int fd, int block, int offset)
  359. {
  360. tag *tag_p;
  361. register Uint8 checksum;
  362. register int i;
  363. unsigned long offs;
  364. if (!buffer)
  365. {
  366. udf_errno = 1;
  367. return -1;
  368. }
  369. if ( !udf_blocksize )
  370. {
  371. udf_errno = 2;
  372. return -1;
  373. }
  374. if ( size < udf_blocksize )
  375. {
  376. udf_errno = 3;
  377. return -1;
  378. }
  379. udf_errno = 0;
  380. offs = (long)block * udf_blocksize;
  381. if ( lseek(fd, offs, SEEK_SET) != offs )
  382. {
  383. udf_errno = 4;
  384. return -1;
  385. }
  386. i = read(fd, buffer, udf_blocksize);
  387. if ( i < udf_blocksize )
  388. {
  389. udf_errno = 5;
  390. return -1;
  391. }
  392. tag_p = (tag *)(buffer);
  393. /* Verify the tag location */
  394. if ((block-offset) != tag_p->tagLocation)
  395. {
  396. #ifdef __KERNEL__
  397. printk(KERN_ERR "udf: location mismatch block %d, tag %dn",
  398. block, tag_p->tagLocation);
  399. #else
  400. udf_errno = 6;
  401. #endif
  402. goto error_out;
  403. }
  404. /* Verify the tag checksum */
  405. checksum = 0U;
  406. for (i = 0; i < 4; i++)
  407. checksum += (Uint8)(buffer[i]);
  408. for (i = 5; i < 16; i++)
  409. checksum += (Uint8)(buffer[i]);
  410. if (checksum != tag_p->tagChecksum)
  411. {
  412. #ifdef __KERNEL__
  413. printk(KERN_ERR "udf: tag checksum failedn");
  414. #else
  415. udf_errno = 7;
  416. #endif
  417. goto error_out;
  418. }
  419. /* Verify the tag version */
  420. if (tag_p->descVersion != 0x0002U)
  421. {
  422. #ifdef __KERNEL__
  423. printk(KERN_ERR "udf: tag version 0x%04x != 0x0002Un",
  424. tag_p->descVersion);
  425. #else
  426. udf_errno = 8;
  427. #endif
  428. goto error_out;
  429. }
  430. /* Verify the descriptor CRC */
  431. if (tag_p->descCRC == udf_crc(buffer + 16, tag_p->descCRCLength, 0))
  432. {
  433. udf_errno = 0;
  434. return 0;
  435. }
  436. #ifdef __KERNEL__
  437. printk(KERN_ERR "udf: crc failure in udf_read_taggedn");
  438. #else
  439. udf_errno = 9;
  440. #endif
  441. error_out:
  442. return -1;
  443. }
  444. #endif