summaryrefslogtreecommitdiff
path: root/scripts/image_signing/ensure_not_ASAN.sh
blob: 16cc88cd98e70bc73473bbac4b53ceab2a412cf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/bin/bash

# Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

# Abort on error.
set -e

# Load common constants and variables.
. "$(dirname "$0")/common.sh"

usage() {
    echo "Usage $PROG image"
}

main() {
    if [ $# -ne 1 ]; then
        usage
        exit 1
    fi

    local image="$1"

    local loopdev=$(loopback_partscan "${image}")
    local rootfs=$(make_temp_dir)
    mount_loop_image_partition_ro "${loopdev}" 3 "${rootfs}"

    # This mirrors the check performed in the platform_ToolchainOptions
    # autotest.
    if readelf -s "$rootfs/opt/google/chrome/chrome" | \
       grep -q __asan_init; then
        exit 1
    fi
}
main "$@"