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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: piggyback.c,v 1.4 2000/12/05 00:48:57 anton Exp $
  2.    Simple utility to make a single-image install kernel with initial ramdisk
  3.    for Sparc tftpbooting without need to set up nfs.
  4.    Copyright (C) 1996 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
  5.    Pete Zaitcev <zaitcev@yahoo.com> endian fixes for cross-compiles, 2000.
  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.    You should have received a copy of the GNU General Public License
  16.    along with this program; if not, write to the Free Software
  17.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  18.    
  19. #include <stdio.h>
  20. #include <string.h>
  21. #include <ctype.h>
  22. #include <errno.h>
  23. #include <fcntl.h>
  24. #include <dirent.h>
  25. #include <unistd.h>
  26. #include <stdlib.h>
  27. #include <sys/types.h>
  28. #include <sys/stat.h>
  29. /*
  30.  * Note: run this on an a.out kernel (use elftoaout for it),
  31.  * as PROM looks for a.out image only.
  32.  */
  33. unsigned short ld2(char *p)
  34. {
  35. return (p[0] << 8) | p[1];
  36. }
  37. unsigned int ld4(char *p)
  38. {
  39. return (p[0] << 24) | (p[1] << 16) | (p[2] << 8) | p[3];
  40. }
  41. void st4(char *p, unsigned int x)
  42. {
  43. p[0] = x >> 24;
  44. p[1] = x >> 16;
  45. p[2] = x >> 8;
  46. p[3] = x;
  47. }
  48. void usage(void)
  49. {
  50. /* fs_img.gz is an image of initial ramdisk. */
  51. fprintf(stderr, "Usage: piggyback vmlinux.aout System.map fs_img.gzn");
  52. fprintf(stderr, "tKernel image will be modified in place.n");
  53. exit(1);
  54. }
  55. void die(char *str)
  56. {
  57. perror (str);
  58. exit(1);
  59. }
  60. int main(int argc,char **argv)
  61. {
  62. static char aout_magic[] = { 0x01, 0x03, 0x01, 0x07 };
  63. unsigned char buffer[1024], *q, *r;
  64. unsigned int i, j, k, start, end, offset;
  65. FILE *map;
  66. struct stat s;
  67. int image, tail;
  68. if (argc != 4) usage();
  69. start = end = 0;
  70. if (stat (argv[3], &s) < 0) die (argv[3]);
  71. map = fopen (argv[2], "r");
  72. if (!map) die(argv[2]);
  73. while (fgets (buffer, 1024, map)) {
  74. if (!strcmp (buffer + 8, " T startn") || !strcmp (buffer + 16, " T startn"))
  75. start = strtoul (buffer, NULL, 16);
  76. else if (!strcmp (buffer + 8, " A endn") || !strcmp (buffer + 16, " A endn"))
  77. end = strtoul (buffer, NULL, 16);
  78. }
  79. fclose (map);
  80. if (!start || !end) {
  81. fprintf (stderr, "Could not determine start and end from System.mapn");
  82. exit(1);
  83. }
  84. if ((image = open(argv[1],O_RDWR)) < 0) die(argv[1]);
  85. if (read(image,buffer,512) != 512) die(argv[1]);
  86. if (memcmp (buffer, "177ELF", 4) == 0) {
  87. q = buffer + ld4(buffer + 28);
  88. i = ld4(q + 4) + ld4(buffer + 24) - ld4(q + 8);
  89. if (lseek(image,i,0) < 0) die("lseek");
  90. if (read(image,buffer,512) != 512) die(argv[1]);
  91. j = 0;
  92. } else if (memcmp(buffer, aout_magic, 4) == 0) {
  93. i = j = 32;
  94. } else {
  95. fprintf (stderr, "Not ELF nor a.out. Don't blame me.n");
  96. exit(1);
  97. }
  98. k = i;
  99. i += (ld2(buffer + j + 2)<<2) - 512;
  100. if (lseek(image,i,0) < 0) die("lseek");
  101. if (read(image,buffer,1024) != 1024) die(argv[1]);
  102. for (q = buffer, r = q + 512; q < r; q += 4) {
  103. if (*q == 'H' && q[1] == 'd' && q[2] == 'r' && q[3] == 'S')
  104. break;
  105. }
  106. if (q == r) {
  107. fprintf (stderr, "Couldn't find headers signature in the kernel.n");
  108. exit(1);
  109. }
  110. offset = i + (q - buffer) + 10;
  111. if (lseek(image, offset, 0) < 0) die ("lseek");
  112. st4(buffer, 0);
  113. st4(buffer + 4, 0x01000000);
  114. st4(buffer + 8, (end + 32 + 4095) & ~4095);
  115. st4(buffer + 12, s.st_size);
  116. if (write(image,buffer+2,14) != 14) die (argv[1]);
  117. if (lseek(image, k - start + ((end + 32 + 4095) & ~4095), 0) < 0) die ("lseek");
  118. if ((tail = open(argv[3],O_RDONLY)) < 0) die(argv[3]);
  119. while ((i = read (tail,buffer,1024)) > 0)
  120. if (write(image,buffer,i) != i) die (argv[1]);
  121. if (close(image) < 0) die("close");
  122. if (close(tail) < 0) die("close");
  123.      return 0;
  124. }