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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: piggyback.c,v 1.2 2000/09/19 14:34:39 anton Exp $
  2.    Simple utility to make a single-image install kernel with initial ramdisk
  3.    for Sparc64 tftpbooting without need to set up nfs.
  4.    
  5.    Copyright (C) 1997 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
  6.    
  7.    This program is free software; you can redistribute it and/or modify
  8.    it under the terms of the GNU General Public License as published by
  9.    the Free Software Foundation; either version 2 of the License, or
  10.    (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.    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., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.    
  20. #include <stdio.h>
  21. #include <string.h>
  22. #include <ctype.h>
  23. #include <errno.h>
  24. #include <fcntl.h>
  25. #include <dirent.h>
  26. #include <unistd.h>
  27. #include <stdlib.h>
  28. #include <sys/types.h>
  29. #include <sys/stat.h>
  30. /* Note: run this on an a.out kernel (use elftoaout for it), as PROM looks for a.out image onlly
  31.    usage: piggyback vmlinux System.map tail, where tail is gzipped fs of the initial ramdisk */
  32. void die(char *str)
  33. {
  34. perror (str);
  35. exit(1);
  36. }
  37. int main(int argc,char **argv)
  38. {
  39. char buffer [1024], *q, *r;
  40. unsigned int i, j, k, start, end, offset;
  41. FILE *map;
  42. struct stat s;
  43. int image, tail;
  44. if (stat (argv[3], &s) < 0) die (argv[3]);
  45. map = fopen (argv[2], "r");
  46. if (!map) die(argv[2]);
  47. while (fgets (buffer, 1024, map)) {
  48. if (!strcmp (buffer + 19, "_startn"))
  49. start = strtoul (buffer + 8, NULL, 16);
  50. else if (!strcmp (buffer + 19, "_endn"))
  51. end = strtoul (buffer + 8, NULL, 16);
  52. }
  53. fclose (map);
  54. if ((image = open(argv[1],O_RDWR)) < 0) die(argv[1]);
  55. if (read(image,buffer,512) != 512) die(argv[1]);
  56. if (!memcmp (buffer, "177ELF", 4)) {
  57. unsigned int *p = (unsigned int *)(buffer + *(unsigned int *)(buffer + 28));
  58. i = p[1] + *(unsigned int *)(buffer + 24) - p[2];
  59. if (lseek(image,i,0) < 0) die("lseek");
  60. if (read(image,buffer,512) != 512) die(argv[1]);
  61. j = 0;
  62. } else if (*(unsigned int *)buffer == 0x01030107) {
  63. i = j = 32;
  64. } else {
  65. fprintf (stderr, "Not ELF nor a.out. Don't blame me.n");
  66. exit(1);
  67. }
  68. k = i;
  69. if (j == 32 && buffer[40] == 'H' && buffer[41] == 'd' && buffer[42] == 'r' && buffer[43] == 'S') {
  70. offset = 40 + 10;
  71. } else {
  72. i += ((*(unsigned short *)(buffer + j + 2))<<2) - 512;
  73. if (lseek(image,i,0) < 0) die("lseek");
  74. if (read(image,buffer,1024) != 1024) die(argv[1]);
  75. for (q = buffer, r = q + 512; q < r; q += 4) {
  76. if (*q == 'H' && q[1] == 'd' && q[2] == 'r' && q[3] == 'S')
  77. break;
  78. }
  79. if (q == r) {
  80. fprintf (stderr, "Couldn't find headers signature in the kernel.n");
  81. exit(1);
  82. }
  83. offset = i + (q - buffer) + 10;
  84. }
  85. if (lseek(image, offset, 0) < 0) die ("lseek");
  86. *(unsigned *)buffer = 0;
  87. *(unsigned *)(buffer + 4) = 0x01000000;
  88. *(unsigned *)(buffer + 8) = ((end + 32 + 8191) & ~8191);
  89. *(unsigned *)(buffer + 12) = s.st_size;
  90. if (write(image,buffer+2,14) != 14) die (argv[1]);
  91. if (lseek(image, 4, 0) < 0) die ("lseek");
  92. *(unsigned *)buffer = ((end + 32 + 8191) & ~8191) - (start & ~0x3fffffUL) + s.st_size;
  93. *(unsigned *)(buffer + 4) = 0;
  94. *(unsigned *)(buffer + 8) = 0;
  95. if (write(image,buffer,12) != 12) die (argv[1]);
  96. if (lseek(image, k - start + ((end + 32 + 8191) & ~8191), 0) < 0) die ("lseek");
  97. if ((tail = open(argv[3],O_RDONLY)) < 0) die(argv[3]);
  98. while ((i = read (tail,buffer,1024)) > 0)
  99. if (write(image,buffer,i) != i) die (argv[1]);
  100. if (close(image) < 0) die("close");
  101. if (close(tail) < 0) die("close");
  102.      return 0;
  103. }