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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * mkcramfs - make a cramfs file system
  3.  *
  4.  * Copyright (C) 1999-2001 Transmeta Corporation
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  * the Free Software Foundation; either version 2 of the License, or
  9.  * (at your option) any later version.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; if not, write to the Free Software
  18.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  19.  */
  20. #include <sys/types.h>
  21. #include <stdio.h>
  22. #include <sys/stat.h>
  23. #include <unistd.h>
  24. #include <sys/mman.h>
  25. #include <sys/fcntl.h>
  26. #include <dirent.h>
  27. #include <stdlib.h>
  28. #include <errno.h>
  29. #include <string.h>
  30. #include <assert.h>
  31. #include <getopt.h>
  32. #include <linux/cramfs_fs.h>
  33. #include <zlib.h>
  34. #define PAD_SIZE 512 /* only 0 and 512 supported by kernel */
  35. static const char *progname = "mkcramfs";
  36. /* N.B. If you change the disk format of cramfs, please update fs/cramfs/README. */
  37. /* Input status of 0 to print help and exit without an error. */
  38. static void usage(int status)
  39. {
  40. FILE *stream = status ? stderr : stdout;
  41. fprintf(stream, "usage: %s [-h] [-e edition] [-i file] [-n name] dirname outfilen"
  42. " -h         print this helpn"
  43. " -E         make all warnings errors (non-zero exit status)n"
  44. " -e edition set edition number (part of fsid)n"
  45. " -i file    insert a file image into the filesystem (requires >= 2.4.0)n"
  46. " -n name    set name of cramfs filesystemn"
  47. " -p         pad by %d bytes for boot coden"
  48. " -s         sort directory entries (old option, ignored)n"
  49. " -z         make explicit holes (requires >= 2.3.39)n"
  50. " dirname    root of the filesystem to be compressedn"
  51. " outfile    output filen", progname, PAD_SIZE);
  52. exit(status);
  53. }
  54. #define PAGE_CACHE_SIZE (4096)
  55. /* The kernel assumes PAGE_CACHE_SIZE as block size. */
  56. static unsigned int blksize = PAGE_CACHE_SIZE;
  57. static long total_blocks = 0, total_nodes = 1; /* pre-count the root node */
  58. static int image_length = 0;
  59. /*
  60.  * If opt_holes is set, then mkcramfs can create explicit holes in the
  61.  * data, which saves 26 bytes per hole (which is a lot smaller a
  62.  * saving than most most filesystems).
  63.  *
  64.  * Note that kernels up to at least 2.3.39 don't support cramfs holes,
  65.  * which is why this is turned off by default.
  66.  */
  67. static int opt_edition = 0;
  68. static int opt_errors = 0;
  69. static int opt_holes = 0;
  70. static int opt_pad = 0;
  71. static char *opt_image = NULL;
  72. static char *opt_name = NULL;
  73. static int warn_dev, warn_gid, warn_namelen, warn_skip, warn_size, warn_uid;
  74. #ifndef MIN
  75. # define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
  76. #endif
  77. /* In-core version of inode / directory entry. */
  78. struct entry {
  79. /* stats */
  80. char *name;
  81. unsigned int mode, size, uid, gid;
  82. /* FS data */
  83. void *uncompressed;
  84.         /* points to other identical file */
  85.         struct entry *same;
  86.         unsigned int offset;            /* pointer to compressed data in archive */
  87. unsigned int dir_offset; /* Where in the archive is the directory entry? */
  88. /* organization */
  89. struct entry *child; /* null for non-directories and empty directories */
  90. struct entry *next;
  91. };
  92. /*
  93.  * The longest file name component to allow for in the input directory tree.
  94.  * Ext2fs (and many others) allow up to 255 bytes.  A couple of filesystems
  95.  * allow longer (e.g. smbfs 1024), but there isn't much use in supporting
  96.  * >255-byte names in the input directory tree given that such names get
  97.  * truncated to 255 bytes when written to cramfs.
  98.  */
  99. #define MAX_INPUT_NAMELEN 255
  100. static int find_identical_file(struct entry *orig,struct entry *newfile)
  101. {
  102.         if(orig==newfile) return 1;
  103.         if(!orig) return 0;
  104.         if(orig->size==newfile->size && orig->uncompressed && !memcmp(orig->uncompressed,newfile->uncompressed,orig->size)) {
  105.                 newfile->same=orig;
  106.                 return 1;
  107.         }
  108.         return find_identical_file(orig->child,newfile) ||
  109.                    find_identical_file(orig->next,newfile);
  110. }
  111. static void eliminate_doubles(struct entry *root,struct entry *orig) {
  112.         if(orig) {
  113.                 if(orig->size && orig->uncompressed)
  114. find_identical_file(root,orig);
  115.                 eliminate_doubles(root,orig->child);
  116.                 eliminate_doubles(root,orig->next);
  117.         }
  118. }
  119. /*
  120.  * We define our own sorting function instead of using alphasort which
  121.  * uses strcoll and changes ordering based on locale information.
  122.  */
  123. static int cramsort (const void *a, const void *b)
  124. {
  125. return strcmp ((*(const struct dirent **) a)->d_name,
  126.        (*(const struct dirent **) b)->d_name);
  127. }
  128. static unsigned int parse_directory(struct entry *root_entry, const char *name, struct entry **prev, loff_t *fslen_ub)
  129. {
  130. struct dirent **dirlist;
  131. int totalsize = 0, dircount, dirindex;
  132. char *path, *endpath;
  133. size_t len = strlen(name);
  134. /* Set up the path. */
  135. /* TODO: Reuse the parent's buffer to save memcpy'ing and duplication. */
  136. path = malloc(len + 1 + MAX_INPUT_NAMELEN + 1);
  137. if (!path) {
  138. perror(NULL);
  139. exit(8);
  140. }
  141. memcpy(path, name, len);
  142. endpath = path + len;
  143. *endpath = '/';
  144. endpath++;
  145.         /* read in the directory and sort */
  146.         dircount = scandir(name, &dirlist, 0, cramsort);
  147. if (dircount < 0) {
  148. perror(name);
  149. exit(8);
  150. }
  151. /* process directory */
  152. for (dirindex = 0; dirindex < dircount; dirindex++) {
  153. struct dirent *dirent;
  154. struct entry *entry;
  155. struct stat st;
  156. int size;
  157. size_t namelen;
  158. dirent = dirlist[dirindex];
  159. /* Ignore "." and ".." - we won't be adding them to the archive */
  160. if (dirent->d_name[0] == '.') {
  161. if (dirent->d_name[1] == '')
  162. continue;
  163. if (dirent->d_name[1] == '.') {
  164. if (dirent->d_name[2] == '')
  165. continue;
  166. }
  167. }
  168. namelen = strlen(dirent->d_name);
  169. if (namelen > MAX_INPUT_NAMELEN) {
  170. fprintf(stderr,
  171. "Very long (%u bytes) filename `%s' found.n"
  172. " Please increase MAX_INPUT_NAMELEN in mkcramfs.c and recompile.  Exiting.n",
  173. namelen, dirent->d_name);
  174. exit(8);
  175. }
  176. memcpy(endpath, dirent->d_name, namelen + 1);
  177. if (lstat(path, &st) < 0) {
  178. perror(endpath);
  179. warn_skip = 1;
  180. continue;
  181. }
  182. entry = calloc(1, sizeof(struct entry));
  183. if (!entry) {
  184. perror(NULL);
  185. exit(8);
  186. }
  187. entry->name = strdup(dirent->d_name);
  188. if (!entry->name) {
  189. perror(NULL);
  190. exit(8);
  191. }
  192. if (namelen > 255) {
  193. /* Can't happen when reading from ext2fs. */
  194. /* TODO: we ought to avoid chopping in half
  195.    multi-byte UTF8 characters. */
  196. entry->name[namelen = 255] = '';
  197. warn_namelen = 1;
  198. }
  199. entry->mode = st.st_mode;
  200. entry->size = st.st_size;
  201. // entry->uid = st.st_uid;
  202. entry->uid = 0;
  203. if (entry->uid >= 1 << CRAMFS_UID_WIDTH)
  204. warn_uid = 1;
  205. // entry->gid = st.st_gid;
  206. entry->gid = 0;
  207. if (entry->gid >= 1 << CRAMFS_GID_WIDTH)
  208. /* TODO: We ought to replace with a default
  209.                            gid instead of truncating; otherwise there
  210.                            are security problems.  Maybe mode should
  211.                            be &= ~070.  Same goes for uid once Linux
  212.                            supports >16-bit uids. */
  213. warn_gid = 1;
  214. size = sizeof(struct cramfs_inode) + ((namelen + 3) & ~3);
  215. *fslen_ub += size;
  216. if (S_ISDIR(st.st_mode)) {
  217. entry->size = parse_directory(root_entry, path, &entry->child, fslen_ub);
  218. } else if (S_ISREG(st.st_mode)) {
  219. /* TODO: We ought to open files in do_compress, one
  220.    at a time, instead of amassing all these memory
  221.    maps during parse_directory (which don't get used
  222.    until do_compress anyway).  As it is, we tend to
  223.    get EMFILE errors (especially if mkcramfs is run
  224.    by non-root).
  225.    While we're at it, do analagously for symlinks
  226.    (which would just save a little memory). */
  227. int fd = open(path, O_RDONLY);
  228. if (fd < 0) {
  229. perror(path);
  230. warn_skip = 1;
  231. continue;
  232. }
  233. if (entry->size) {
  234. if ((entry->size >= 1 << CRAMFS_SIZE_WIDTH)) {
  235. warn_size = 1;
  236. entry->size = (1 << CRAMFS_SIZE_WIDTH) - 1;
  237. }
  238. entry->uncompressed = mmap(NULL, entry->size, PROT_READ, MAP_PRIVATE, fd, 0);
  239. if (-1 == (int) (long) entry->uncompressed) {
  240. perror("mmap");
  241. exit(8);
  242. }
  243. }
  244. close(fd);
  245. } else if (S_ISLNK(st.st_mode)) {
  246. entry->uncompressed = malloc(entry->size);
  247. if (!entry->uncompressed) {
  248. perror(NULL);
  249. exit(8);
  250. }
  251. if (readlink(path, entry->uncompressed, entry->size) < 0) {
  252. perror(path);
  253. warn_skip = 1;
  254. continue;
  255. }
  256. } else if (S_ISFIFO(st.st_mode) || S_ISSOCK(st.st_mode)) {
  257. /* maybe we should skip sockets */
  258. entry->size = 0;
  259. } else {
  260. entry->size = st.st_rdev;
  261. if (entry->size & -(1<<CRAMFS_SIZE_WIDTH))
  262. warn_dev = 1;
  263. }
  264. if (S_ISREG(st.st_mode) || S_ISLNK(st.st_mode)) {
  265. int blocks = ((entry->size - 1) / blksize + 1);
  266. /* block pointers & data expansion allowance + data */
  267. if(entry->size)
  268. *fslen_ub += (4+26)*blocks + entry->size + 3;
  269.                 }
  270. /* Link it into the list */
  271. *prev = entry;
  272. prev = &entry->next;
  273. totalsize += size;
  274. }
  275. free(path);
  276. free(dirlist); /* allocated by scandir() with malloc() */
  277. return totalsize;
  278. }
  279. /* Returns sizeof(struct cramfs_super), which includes the root inode. */
  280. static unsigned int write_superblock(struct entry *root, char *base, int size)
  281. {
  282. struct cramfs_super *super = (struct cramfs_super *) base;
  283. unsigned int offset = sizeof(struct cramfs_super) + image_length;
  284. if (opt_pad) {
  285. offset += opt_pad;
  286. }
  287. super->magic = CRAMFS_MAGIC;
  288. super->flags = CRAMFS_FLAG_FSID_VERSION_2 | CRAMFS_FLAG_SORTED_DIRS;
  289. if (opt_holes)
  290. super->flags |= CRAMFS_FLAG_HOLES;
  291. if (image_length > 0)
  292. super->flags |= CRAMFS_FLAG_SHIFTED_ROOT_OFFSET;
  293. super->size = size;
  294. memcpy(super->signature, CRAMFS_SIGNATURE, sizeof(super->signature));
  295. super->fsid.crc = crc32(0L, Z_NULL, 0);
  296. super->fsid.edition = opt_edition;
  297. super->fsid.blocks = total_blocks;
  298. super->fsid.files = total_nodes;
  299. memset(super->name, 0x00, sizeof(super->name));
  300. if (opt_name)
  301. strncpy(super->name, opt_name, sizeof(super->name));
  302. else
  303. strncpy(super->name, "Compressed", sizeof(super->name));
  304. super->root.mode = root->mode;
  305. super->root.uid = root->uid;
  306. super->root.gid = root->gid;
  307. super->root.size = root->size;
  308. super->root.offset = offset >> 2;
  309. return offset;
  310. }
  311. static void set_data_offset(struct entry *entry, char *base, unsigned long offset)
  312. {
  313. struct cramfs_inode *inode = (struct cramfs_inode *) (base + entry->dir_offset);
  314. #ifdef DEBUG
  315. assert ((offset & 3) == 0);
  316. #endif /* DEBUG */
  317. if (offset >= (1 << (2 + CRAMFS_OFFSET_WIDTH))) {
  318. fprintf(stderr, "filesystem too big.  Exiting.n");
  319. exit(8);
  320. }
  321. inode->offset = (offset >> 2);
  322. }
  323. /*
  324.  * We do a width-first printout of the directory
  325.  * entries, using a stack to remember the directories
  326.  * we've seen.
  327.  */
  328. #define MAXENTRIES (100)
  329. static unsigned int write_directory_structure(struct entry *entry, char *base, unsigned int offset)
  330. {
  331. int stack_entries = 0;
  332. struct entry *entry_stack[MAXENTRIES];
  333. for (;;) {
  334. int dir_start = stack_entries;
  335. while (entry) {
  336. struct cramfs_inode *inode = (struct cramfs_inode *) (base + offset);
  337. size_t len = strlen(entry->name);
  338. entry->dir_offset = offset;
  339. inode->mode = entry->mode;
  340. inode->uid = entry->uid;
  341. inode->gid = entry->gid;
  342. inode->size = entry->size;
  343. inode->offset = 0;
  344. /* Non-empty directories, regfiles and symlinks will
  345.    write over inode->offset later. */
  346. offset += sizeof(struct cramfs_inode);
  347. total_nodes++; /* another node */
  348. memcpy(base + offset, entry->name, len);
  349. /* Pad up the name to a 4-byte boundary */
  350. while (len & 3) {
  351. *(base + offset + len) = '';
  352. len++;
  353. }
  354. inode->namelen = len >> 2;
  355. offset += len;
  356. /* TODO: this may get it wrong for chars >= 0x80.
  357.    Most filesystems use UTF8 encoding for filenames,
  358.    whereas the console is a single-byte character
  359.    set like iso-latin-1. */
  360. printf("  %sn", entry->name);
  361. if (entry->child) {
  362. if (stack_entries >= MAXENTRIES) {
  363. fprintf(stderr, "Exceeded MAXENTRIES.  Raise this value in mkcramfs.c and recompile.  Exiting.n");
  364. exit(8);
  365. }
  366. entry_stack[stack_entries] = entry;
  367. stack_entries++;
  368. }
  369. entry = entry->next;
  370. }
  371. /*
  372.  * Reverse the order the stack entries pushed during
  373.                  * this directory, for a small optimization of disk
  374.                  * access in the created fs.  This change makes things
  375.                  * `ls -UR' order.
  376.  */
  377. {
  378. struct entry **lo = entry_stack + dir_start;
  379. struct entry **hi = entry_stack + stack_entries;
  380. struct entry *tmp;
  381. while (lo < --hi) {
  382. tmp = *lo;
  383. *lo++ = *hi;
  384. *hi = tmp;
  385. }
  386. }
  387. /* Pop a subdirectory entry from the stack, and recurse. */
  388. if (!stack_entries)
  389. break;
  390. stack_entries--;
  391. entry = entry_stack[stack_entries];
  392. set_data_offset(entry, base, offset);
  393. printf("'%s':n", entry->name);
  394. entry = entry->child;
  395. }
  396. return offset;
  397. }
  398. static int is_zero(char const *begin, unsigned len)
  399. {
  400. if (opt_holes)
  401. /* Returns non-zero iff the first LEN bytes from BEGIN are
  402.    all NULs. */
  403. return (len-- == 0 ||
  404. (begin[0] == '' &&
  405.  (len-- == 0 ||
  406.   (begin[1] == '' &&
  407.    (len-- == 0 ||
  408.     (begin[2] == '' &&
  409.      (len-- == 0 ||
  410.       (begin[3] == '' &&
  411.        memcmp(begin, begin + 4, len) == 0))))))));
  412. else
  413. /* Never create holes. */
  414. return 0;
  415. }
  416. /*
  417.  * One 4-byte pointer per block and then the actual blocked
  418.  * output. The first block does not need an offset pointer,
  419.  * as it will start immediately after the pointer block;
  420.  * so the i'th pointer points to the end of the i'th block
  421.  * (i.e. the start of the (i+1)'th block or past EOF).
  422.  *
  423.  * Note that size > 0, as a zero-sized file wouldn't ever
  424.  * have gotten here in the first place.
  425.  */
  426. static unsigned int do_compress(char *base, unsigned int offset, char const *name, char *uncompressed, unsigned int size)
  427. {
  428. unsigned long original_size = size;
  429. unsigned long original_offset = offset;
  430. unsigned long new_size;
  431. unsigned long blocks = (size - 1) / blksize + 1;
  432. unsigned long curr = offset + 4 * blocks;
  433. int change;
  434. total_blocks += blocks;
  435. do {
  436. unsigned long len = 2 * blksize;
  437. unsigned int input = size;
  438. if (input > blksize)
  439. input = blksize;
  440. size -= input;
  441. if (!is_zero (uncompressed, input)) {
  442. compress(base + curr, &len, uncompressed, input);
  443. curr += len;
  444. }
  445. uncompressed += input;
  446. if (len > blksize*2) {
  447. /* (I don't think this can happen with zlib.) */
  448. printf("AIEEE: block "compressed" to > 2*blocklength (%ld)n", len);
  449. exit(8);
  450. }
  451. *(u32 *) (base + offset) = curr;
  452. offset += 4;
  453. } while (size);
  454. curr = (curr + 3) & ~3;
  455. new_size = curr - original_offset;
  456. /* TODO: Arguably, original_size in these 2 lines should be
  457.    st_blocks * 512.  But if you say that then perhaps
  458.    administrative data should also be included in both. */
  459. change = new_size - original_size;
  460. printf("%6.2f%% (%+d bytes)t%sn",
  461.        (change * 100) / (double) original_size, change, name);
  462. return curr;
  463. }
  464. /*
  465.  * Traverse the entry tree, writing data for every item that has
  466.  * non-null entry->compressed (i.e. every symlink and non-empty
  467.  * regfile).
  468.  */
  469. static unsigned int write_data(struct entry *entry, char *base, unsigned int offset)
  470. {
  471. do {
  472. if (entry->uncompressed) {
  473.                         if(entry->same) {
  474.                                 set_data_offset(entry, base, entry->same->offset);
  475.                                 entry->offset=entry->same->offset;
  476.                         } else {
  477.                                 set_data_offset(entry, base, offset);
  478.                                 entry->offset=offset;
  479.                                 offset = do_compress(base, offset, entry->name, entry->uncompressed, entry->size);
  480.                         }
  481. }
  482. else if (entry->child)
  483. offset = write_data(entry->child, base, offset);
  484.                 entry=entry->next;
  485. } while (entry);
  486. return offset;
  487. }
  488. static unsigned int write_file(char *file, char *base, unsigned int offset)
  489. {
  490. int fd;
  491. char *buf;
  492. fd = open(file, O_RDONLY);
  493. if (fd < 0) {
  494. perror(file);
  495. exit(8);
  496. }
  497. buf = mmap(NULL, image_length, PROT_READ, MAP_PRIVATE, fd, 0);
  498. memcpy(base + offset, buf, image_length);
  499. munmap(buf, image_length);
  500. close (fd);
  501. /* Pad up the image_length to a 4-byte boundary */
  502. while (image_length & 3) {
  503. *(base + offset + image_length) = '';
  504. image_length++;
  505. }
  506. return (offset + image_length);
  507. }
  508. /*
  509.  * Maximum size fs you can create is roughly 256MB.  (The last file's
  510.  * data must begin within 256MB boundary but can extend beyond that.)
  511.  *
  512.  * Note that if you want it to fit in a ROM then you're limited to what the
  513.  * hardware and kernel can support (64MB?).
  514.  */
  515. #define MAXFSLEN ((((1 << CRAMFS_OFFSET_WIDTH) - 1) << 2) /* offset */ 
  516.   + (1 << CRAMFS_SIZE_WIDTH) - 1 /* filesize */ 
  517.   + (1 << CRAMFS_SIZE_WIDTH) * 4 / PAGE_CACHE_SIZE /* block pointers */ )
  518. /*
  519.  * Usage:
  520.  *
  521.  *      mkcramfs directory-name outfile
  522.  *
  523.  * where "directory-name" is simply the root of the directory
  524.  * tree that we want to generate a compressed filesystem out
  525.  * of.
  526.  */
  527. int main(int argc, char **argv)
  528. {
  529. struct stat st; /* used twice... */
  530. struct entry *root_entry;
  531. char *rom_image;
  532. ssize_t offset, written;
  533. int fd;
  534. /* initial guess (upper-bound) of required filesystem size */
  535. loff_t fslen_ub = sizeof(struct cramfs_super);
  536. char const *dirname, *outfile;
  537. u32 crc = crc32(0L, Z_NULL, 0);
  538. int c; /* for getopt */
  539. total_blocks = 0;
  540. if (argc)
  541. progname = argv[0];
  542. /* command line options */
  543. while ((c = getopt(argc, argv, "hEe:i:n:psz")) != EOF) {
  544. switch (c) {
  545. case 'h':
  546. usage(0);
  547. case 'E':
  548. opt_errors = 1;
  549. break;
  550. case 'e':
  551. opt_edition = atoi(optarg);
  552. break;
  553. case 'i':
  554. opt_image = optarg;
  555. if (lstat(opt_image, &st) < 0) {
  556. perror(opt_image);
  557. exit(16);
  558. }
  559. image_length = st.st_size; /* may be padded later */
  560. fslen_ub += (image_length + 3); /* 3 is for padding */
  561. break;
  562. case 'n':
  563. opt_name = optarg;
  564. break;
  565. case 'p':
  566. opt_pad = PAD_SIZE;
  567. fslen_ub += PAD_SIZE;
  568. break;
  569. case 's':
  570. /* old option, ignored */
  571. break;
  572. case 'z':
  573. opt_holes = 1;
  574. break;
  575. }
  576. }
  577. if ((argc - optind) != 2)
  578. usage(16);
  579. dirname = argv[optind];
  580. outfile = argv[optind + 1];
  581. if (stat(dirname, &st) < 0) {
  582. perror(dirname);
  583. exit(16);
  584. }
  585. fd = open(outfile, O_WRONLY | O_CREAT | O_TRUNC, 0666);
  586. root_entry = calloc(1, sizeof(struct entry));
  587. if (!root_entry) {
  588. perror(NULL);
  589. exit(8);
  590. }
  591. root_entry->mode = st.st_mode;
  592. root_entry->uid = st.st_uid;
  593. root_entry->gid = st.st_gid;
  594. root_entry->size = parse_directory(root_entry, dirname, &root_entry->child, &fslen_ub);
  595. /* always allocate a multiple of blksize bytes because that's
  596.            what we're going to write later on */
  597. fslen_ub = ((fslen_ub - 1) | (blksize - 1)) + 1;
  598. if (fslen_ub > MAXFSLEN) {
  599. fprintf(stderr,
  600. "warning: guestimate of required size (upper bound) is %LdMB, but maximum image size is %uMB.  We might die prematurely.n",
  601. fslen_ub >> 20,
  602. MAXFSLEN >> 20);
  603. fslen_ub = MAXFSLEN;
  604. }
  605.         /* find duplicate files. TODO: uses the most inefficient algorithm
  606.            possible. */
  607.         eliminate_doubles(root_entry,root_entry);
  608. /* TODO: Why do we use a private/anonymous mapping here
  609.            followed by a write below, instead of just a shared mapping
  610.            and a couple of ftruncate calls?  Is it just to save us
  611.            having to deal with removing the file afterwards?  If we
  612.            really need this huge anonymous mapping, we ought to mmap
  613.            in smaller chunks, so that the user doesn't need nn MB of
  614.            RAM free.  If the reason is to be able to write to
  615.            un-mmappable block devices, then we could try shared mmap
  616.            and revert to anonymous mmap if the shared mmap fails. */
  617. rom_image = mmap(NULL, fslen_ub?fslen_ub:1, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
  618. if (-1 == (int) (long) rom_image) {
  619. perror("ROM image map");
  620. exit(8);
  621. }
  622. /* Skip the first opt_pad bytes for boot loader code */
  623. offset = opt_pad;
  624. memset(rom_image, 0x00, opt_pad);
  625. /* Skip the superblock and come back to write it later. */
  626. offset += sizeof(struct cramfs_super);
  627. /* Insert a file image. */
  628. if (opt_image) {
  629. printf("Including: %sn", opt_image);
  630. offset = write_file(opt_image, rom_image, offset);
  631. }
  632. offset = write_directory_structure(root_entry->child, rom_image, offset);
  633. printf("Directory data: %d bytesn", offset);
  634. offset = write_data(root_entry, rom_image, offset);
  635. /* We always write a multiple of blksize bytes, so that
  636.            losetup works. */
  637. offset = ((offset - 1) | (blksize - 1)) + 1;
  638. printf("Everything: %d kilobytesn", offset >> 10);
  639. /* Write the superblock now that we can fill in all of the fields. */
  640. write_superblock(root_entry, rom_image+opt_pad, offset);
  641. printf("Super block: %d bytesn", sizeof(struct cramfs_super));
  642. /* Put the checksum in. */
  643. crc = crc32(crc, (rom_image+opt_pad), (offset-opt_pad));
  644. ((struct cramfs_super *) (rom_image+opt_pad))->fsid.crc = crc;
  645. printf("CRC: %xn", crc);
  646. /* Check to make sure we allocated enough space. */
  647. if (fslen_ub < offset) {
  648. fprintf(stderr, "not enough space allocated for ROM image (%Ld allocated, %d used)n",
  649. fslen_ub, offset);
  650. exit(8);
  651. }
  652. written = write(fd, rom_image, offset);
  653. if (written < 0) {
  654. perror("ROM image");
  655. exit(8);
  656. }
  657. if (offset != written) {
  658. fprintf(stderr, "ROM image write failed (%d %d)n", written, offset);
  659. exit(8);
  660. }
  661. /* (These warnings used to come at the start, but they scroll off the
  662.            screen too quickly.) */
  663. if (warn_namelen) /* (can't happen when reading from ext2fs) */
  664. fprintf(stderr, /* bytes, not chars: think UTF8. */
  665. "warning: filenames truncated to 255 bytes.n");
  666. if (warn_skip)
  667. fprintf(stderr, "warning: files were skipped due to errors.n");
  668. if (warn_size)
  669. fprintf(stderr,
  670. "warning: file sizes truncated to %luMB (minus 1 byte).n",
  671. 1L << (CRAMFS_SIZE_WIDTH - 20));
  672. if (warn_uid) /* (not possible with current Linux versions) */
  673. fprintf(stderr,
  674. "warning: uids truncated to %u bits.  (This may be a security concern.)n",
  675. CRAMFS_UID_WIDTH);
  676. if (warn_gid)
  677. fprintf(stderr,
  678. "warning: gids truncated to %u bits.  (This may be a security concern.)n",
  679. CRAMFS_GID_WIDTH);
  680. if (warn_dev)
  681. fprintf(stderr,
  682. "WARNING: device numbers truncated to %u bits.  This almost certainly meansn"
  683. "that some device files will be wrong.n",
  684. CRAMFS_OFFSET_WIDTH);
  685. if (opt_errors &&
  686.     (warn_namelen||warn_skip||warn_size||warn_uid||warn_gid||warn_dev))
  687. exit(8);
  688. return 0;
  689. }