1 /* Generate checksums of executables for PCH validation
2 Copyright (C) 2005, 2007, 2009, 2010
3 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
28 fputs ("Usage: genchecksums <filename> ...\n", stderr
);
31 /* Important: BLOCKSIZE must be a multiple of 64. */
32 #define BLOCKSIZE 4096
35 dosum (struct md5_ctx
*ctx
, const char *file
)
38 char buffer
[BLOCKSIZE
+ 72];
41 f
= fopen (file
, "rb");
44 fprintf (stderr
, "opening %s: %s\n", file
, xstrerror (errno
));
48 /* Some executable formats have timestamps in the first 16 bytes, yuck. */
49 if (fseek (f
, 16, SEEK_SET
) != 0)
51 fprintf (stderr
, "seeking in %s: %s\n", file
, xstrerror (errno
));
55 /* Iterate over full file contents. */
58 /* We read the file in blocks of BLOCKSIZE bytes. One call of the
59 computation function processes the whole buffer so that with the
60 next round of the loop another block can be read. */
64 /* Read block. Take care for partial reads. */
67 n
= fread (buffer
+ sum
, 1, BLOCKSIZE
- sum
, f
);
71 while (sum
< BLOCKSIZE
&& n
!= 0);
72 if (n
== 0 && ferror (f
))
75 /* If end of file is reached, end the loop. */
79 /* Process buffer with BLOCKSIZE bytes. Note that
82 md5_process_block (buffer
, BLOCKSIZE
, ctx
);
85 /* Add the last bytes if necessary. */
87 md5_process_bytes (buffer
, sum
, ctx
);
91 fprintf (stderr
, "reading %s: %s\n", file
, xstrerror (errno
));
97 main (int argc
, char ** argv
)
100 unsigned char result
[16];
110 for (i
= 1; i
< argc
; i
++)
111 dosum (&ctx
, argv
[i
]);
112 md5_finish_ctx (&ctx
, result
);
114 puts ("#include \"config.h\"");
115 puts ("#include \"system.h\"");
116 fputs ("EXPORTED_CONST unsigned char executable_checksum[16] = { ", stdout
);
117 for (i
= 0; i
< 16; i
++)
118 printf ("0x%02x%s", result
[i
], i
== 15 ? " };\n" : ", ");