forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bazel: rewrite MD5 .note.gnu.build-id with truncated git SHA1.
This is a workaround for bazelbuild/bazel#2805. Small reorganization of version_generated.cc rules, since we rely on them here and this can also assist with the Google import of Envoy and its versioning scheme. Also added docs on build types and how to do release builds.
- Loading branch information
Showing
9 changed files
with
204 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +0,0 @@ | ||
package(default_visibility = ["//visibility:public"]) | ||
|
||
load("//bazel:envoy_build_system.bzl", "envoy_cc_library") | ||
|
||
genrule( | ||
name = "envoy_version", | ||
srcs = glob([".git/**"]), | ||
outs = ["version_generated.cc"], | ||
cmd = "touch $@ && $(location tools/gen_git_sha.sh) $$(dirname $(location tools/gen_git_sha.sh)) $@", | ||
local = 1, | ||
tools = ["tools/gen_git_sha.sh"], | ||
) | ||
|
||
envoy_cc_library( | ||
name = "version_generated", | ||
srcs = ["version_generated.cc"], | ||
deps = ["//source/common/common:version_includes"], | ||
) | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package(default_visibility = ["//visibility:public"]) | ||
|
||
load("//bazel:envoy_build_system.bzl", "envoy_cc_library") | ||
|
||
genrule( | ||
name = "envoy_version", | ||
srcs = glob([".git/**"]), | ||
outs = ["version_generated.cc"], | ||
cmd = "touch $@ && $(location //tools:gen_git_sha.sh) " + | ||
"$$(dirname $(location //tools:gen_git_sha.sh)) $@", | ||
local = 1, | ||
tools = ["//tools:gen_git_sha.sh"], | ||
) | ||
|
||
envoy_cc_library( | ||
name = "version_generated", | ||
srcs = ["version_generated.cc"], | ||
deps = ["//source/common/common:version_includes"], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package(default_visibility = ["//visibility:public"]) | ||
|
||
exports_files([ | ||
"gen_git_sha.sh", | ||
"git_sha_rewriter.py", | ||
]) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
#!/usr/bin/env python | ||
|
||
# This tool takes an ELF binary that has been built with -Wl,--build-id=md5' | ||
# '-Wl,--hash-style=gnu (as done by Bazel prior to | ||
# https://github.com/bazelbuild/bazel/commit/724706ba4836c3366fc85b40ed50ccf92f4c3882, | ||
# versions prior to 0.5), and replaces the MD5 compiler hash with a truncated | ||
# git SHA1 hash found in Envoy's version_generated.cc. | ||
# | ||
# This is useful to folks who want the build commit in the .note.gnu.build-id | ||
# section rather than the compiler hash of inputs. Please note that the hash is | ||
# a 16 byte truncated git SHA1, rather than a complete 20 byte git SHA1. | ||
# This is a workaround to https://github.com/bazelbuild/bazel/issues/2805. | ||
|
||
import binascii | ||
import re | ||
import subprocess as sp | ||
import sys | ||
|
||
# This is what the part of .note.gnu.build-id prior to the MD5 hash looks like. | ||
EXPECTED_BUILD_ID_NOTE_PREFIX = [ | ||
# The "name" of the note is 4 bytes long. | ||
0x04, | ||
0x00, | ||
0x00, | ||
0x00, | ||
# The "description" of the note is 16 bytes. | ||
0x10, | ||
0x00, | ||
0x00, | ||
0x00, | ||
# The "type" of the note. | ||
0x03, | ||
0x00, | ||
0x00, | ||
0x00, | ||
# 'G', 'N', 'U', '\0' (name) | ||
0x47, | ||
0x4e, | ||
0x55, | ||
0x00, | ||
] | ||
# We're expecting an MD5 hash, 16 bytes. | ||
MD5_HASH_LEN = 16 | ||
EXPECTED_BUILD_ID_NOTE_LENGTH = len(EXPECTED_BUILD_ID_NOTE_PREFIX) + MD5_HASH_LEN | ||
|
||
|
||
class RewriterException(Exception): | ||
pass | ||
|
||
|
||
# Extract MD5 hash hex string from version_generated.cc. | ||
def ExtractGitSha(path): | ||
with open(path, 'r') as f: | ||
contents = f.read() | ||
sr = re.search('GIT_SHA\("(\w+)"', contents, flags=re.MULTILINE) | ||
if not sr: | ||
raise RewriterException('Bad version_generated.cc: %s' % contents) | ||
return sr.group(1) | ||
|
||
|
||
# Scrape the offset of .note.gnu.build-id via readelf from the binary. Also | ||
# verify the note section is what we expect. | ||
def ExtractBuildIdNoteOffset(path): | ||
try: | ||
readelf_output = sp.check_output('readelf -SW %s' % path, shell=True) | ||
# Sanity check the ordering of fields from readelf. | ||
if not re.search('Name\s+Type\s+Address\s+Off\s+Size\s', readelf_output): | ||
raise RewriterException('Invalid readelf output: %s' % readelf_output) | ||
sr = re.search('.note.gnu.build-id\s+NOTE\s+\w+\s+(\w+)\s(\w+)\s', | ||
readelf_output) | ||
if not sr: | ||
raise RewriterException( | ||
'Unable to parse .note.gnu.build-id note: %s' % readelf_output) | ||
raw_note_offset, raw_note_size = sr.groups() | ||
if long(raw_note_size, 16) != EXPECTED_BUILD_ID_NOTE_LENGTH: | ||
raise RewriterException( | ||
'Incorrect .note.gnu.build-id note size: %s' % readelf_output) | ||
note_offset = long(raw_note_offset, 16) | ||
with open(path, 'rb') as f: | ||
f.seek(note_offset) | ||
note_prefix = [ord(b) for b in f.read(len(EXPECTED_BUILD_ID_NOTE_PREFIX))] | ||
if note_prefix != EXPECTED_BUILD_ID_NOTE_PREFIX: | ||
raise RewriterException( | ||
'Unexpected .note.gnu.build-id prefix in %s: %s' % (path, | ||
note_prefix)) | ||
return note_offset | ||
except sp.CalledProcessError as e: | ||
raise RewriterException('%s %s' % (e, readelf_output.output)) | ||
|
||
|
||
# Inplace binary rewriting of the 16 byte .note.gnu.build-id description with | ||
# the truncated hash. | ||
def RewriteBinary(path, offset, git5_sha1): | ||
truncated_hash = git5_sha1[:2 * MD5_HASH_LEN] | ||
print 'Writing %s truncated to %s at offset 0x%x in %s' % (git5_sha1, | ||
truncated_hash, | ||
offset, path) | ||
with open(path, 'r+b') as f: | ||
f.seek(offset + len(EXPECTED_BUILD_ID_NOTE_PREFIX)) | ||
f.write(binascii.unhexlify(truncated_hash)) | ||
|
||
|
||
if __name__ == '__main__': | ||
if len(sys.argv) != 3: | ||
print('Usage: %s <path to version_generated.cc <Envoy binary path> ' % | ||
sys.argv[0]) | ||
sys.exit(1) | ||
version_generated = ExtractGitSha(sys.argv[1]) | ||
envoy_bin_path = sys.argv[2] | ||
build_id_note_offset = ExtractBuildIdNoteOffset(envoy_bin_path) | ||
RewriteBinary(envoy_bin_path, build_id_note_offset, version_generated) |