id.c 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. /*
  2. * Squashfs - a compressed read only filesystem for Linux
  3. *
  4. * Copyright (c) 2002, 2003, 2004, 2005, 2006, 2007, 2008
  5. * Phillip Lougher <phillip@squashfs.org.uk>
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License
  9. * as published by the Free Software Foundation; either version 2,
  10. * or (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  20. *
  21. * id.c
  22. */
  23. /*
  24. * This file implements code to handle uids and gids.
  25. *
  26. * For space efficiency regular files store uid and gid indexes, which are
  27. * converted to 32-bit uids/gids using an id look up table. This table is
  28. * stored compressed into metadata blocks. A second index table is used to
  29. * locate these. This second index table for speed of access (and because it
  30. * is small) is read at mount time and cached in memory.
  31. */
  32. #include <linux/fs.h>
  33. #include <linux/vfs.h>
  34. #include <linux/slab.h>
  35. #include "squashfs_fs.h"
  36. #include "squashfs_fs_sb.h"
  37. #include "squashfs.h"
  38. /*
  39. * Map uid/gid index into real 32-bit uid/gid using the id look up table
  40. */
  41. int squashfs_get_id(struct super_block *sb, unsigned int index,
  42. unsigned int *id)
  43. {
  44. struct squashfs_sb_info *msblk = sb->s_fs_info;
  45. int block = SQUASHFS_ID_BLOCK(index);
  46. int offset = SQUASHFS_ID_BLOCK_OFFSET(index);
  47. u64 start_block;
  48. __le32 disk_id;
  49. int err;
  50. if (index >= msblk->ids)
  51. return -EINVAL;
  52. start_block = le64_to_cpu(msblk->id_table[block]);
  53. err = squashfs_read_metadata(sb, &disk_id, &start_block, &offset,
  54. sizeof(disk_id));
  55. if (err < 0)
  56. return err;
  57. *id = le32_to_cpu(disk_id);
  58. return 0;
  59. }
  60. /*
  61. * Read uncompressed id lookup table indexes from disk into memory
  62. */
  63. __le64 *squashfs_read_id_index_table(struct super_block *sb,
  64. u64 id_table_start, u64 next_table, unsigned short no_ids)
  65. {
  66. unsigned int length = SQUASHFS_ID_BLOCK_BYTES(no_ids);
  67. unsigned int indexes = SQUASHFS_ID_BLOCKS(no_ids);
  68. int n;
  69. __le64 *table;
  70. u64 start, end;
  71. TRACE("In read_id_index_table, length %d\n", length);
  72. /* Sanity check values */
  73. /* there should always be at least one id */
  74. if (no_ids == 0)
  75. return ERR_PTR(-EINVAL);
  76. /*
  77. * The computed size of the index table (length bytes) should exactly
  78. * match the table start and end points
  79. */
  80. if (length != (next_table - id_table_start))
  81. return ERR_PTR(-EINVAL);
  82. table = squashfs_read_table(sb, id_table_start, length);
  83. if (IS_ERR(table))
  84. return table;
  85. /*
  86. * table[0], table[1], ... table[indexes - 1] store the locations
  87. * of the compressed id blocks. Each entry should be less than
  88. * the next (i.e. table[0] < table[1]), and the difference between them
  89. * should be SQUASHFS_METADATA_SIZE or less. table[indexes - 1]
  90. * should be less than id_table_start, and again the difference
  91. * should be SQUASHFS_METADATA_SIZE or less
  92. */
  93. for (n = 0; n < (indexes - 1); n++) {
  94. start = le64_to_cpu(table[n]);
  95. end = le64_to_cpu(table[n + 1]);
  96. if (start >= end || (end - start) >
  97. (SQUASHFS_METADATA_SIZE + SQUASHFS_BLOCK_OFFSET)) {
  98. kfree(table);
  99. return ERR_PTR(-EINVAL);
  100. }
  101. }
  102. start = le64_to_cpu(table[indexes - 1]);
  103. if (start >= id_table_start || (id_table_start - start) >
  104. (SQUASHFS_METADATA_SIZE + SQUASHFS_BLOCK_OFFSET)) {
  105. kfree(table);
  106. return ERR_PTR(-EINVAL);
  107. }
  108. return table;
  109. }