1 /* ldbuildid.c - Build Id support routines
2 Copyright (C) 2013-2019 Free Software Foundation, Inc.
4 This file is part of the GNU Binutils.
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 3 of the License, or
9 (at your option) any later version.
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.
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., 51 Franklin Street - Fifth Floor, Boston,
19 MA 02110-1301, USA. */
23 #include "safe-ctype.h"
26 #include "ldbuildid.h"
32 #define streq(a,b) strcmp ((a), (b)) == 0
33 #define strneq(a,b,n) strncmp ((a), (b), (n)) == 0
36 validate_build_id_style (const char *style)
38 if ((streq (style, "md5")) || (streq (style, "sha1"))
39 || (streq (style, "uuid")) || (strneq (style, "0x", 2)))
46 compute_build_id_size (const char *style)
48 if (streq (style, "md5") || streq (style, "uuid"))
51 if (streq (style, "sha1"))
54 if (strneq (style, "0x", 2))
56 bfd_size_type size = 0;
57 /* ID is in string form (hex). Count the bytes. */
58 const char *id = style + 2;
62 if (ISXDIGIT (id[0]) && ISXDIGIT (id[1]))
67 else if (*id == '-' || *id == ':')
74 } while (*id != '\0');
82 read_hex (const char xdigit)
88 return xdigit - 'A' + 0xa;
91 return xdigit - 'a' + 0xa;
98 generate_build_id (bfd *abfd,
100 checksum_fn checksum_contents,
101 unsigned char *id_bits,
102 int size ATTRIBUTE_UNUSED)
104 if (streq (style, "md5"))
109 if (!(*checksum_contents) (abfd, (sum_fn) &md5_process_bytes, &ctx))
111 md5_finish_ctx (&ctx, id_bits);
113 else if (streq (style, "sha1"))
117 sha1_init_ctx (&ctx);
118 if (!(*checksum_contents) (abfd, (sum_fn) &sha1_process_bytes, &ctx))
120 sha1_finish_ctx (&ctx, id_bits);
122 else if (streq (style, "uuid"))
126 int fd = open ("/dev/urandom", O_RDONLY);
130 n = read (fd, id_bits, size);
134 #else /* __MINGW32__ */
135 typedef RPC_STATUS (RPC_ENTRY * UuidCreateFn) (UUID *);
137 UuidCreateFn uuid_create = 0;
138 HMODULE rpc_library = LoadLibrary ("rpcrt4.dll");
142 uuid_create = (UuidCreateFn) GetProcAddress (rpc_library, "UuidCreate");
145 FreeLibrary (rpc_library);
149 if (uuid_create (&uuid) != RPC_S_OK)
151 FreeLibrary (rpc_library);
154 FreeLibrary (rpc_library);
155 memcpy (id_bits, &uuid,
156 (size_t) size < sizeof (UUID) ? (size_t) size : sizeof (UUID));
157 #endif /* __MINGW32__ */
159 else if (strneq (style, "0x", 2))
161 /* ID is in string form (hex). Convert to bits. */
162 const char *id = style + 2;
167 if (ISXDIGIT (id[0]) && ISXDIGIT (id[1]))
169 id_bits[n] = read_hex (*id++) << 4;
170 id_bits[n++] |= read_hex (*id++);
172 else if (*id == '-' || *id == ':')
175 abort (); /* Should have been validated earlier. */
180 abort (); /* Should have been validated earlier. */