osquery-1/tools/provision.sh

297 lines
7.6 KiB
Bash
Raw Normal View History

2014-09-24 05:14:28 +00:00
#!/usr/bin/env bash
# Copyright (c) 2014-present, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
2014-12-30 22:24:49 +00:00
# LICENSE file in the root directory of this source tree. An additional grant
# of patent rights can be found in the PATENTS file in the same directory.
set -e
2016-07-31 18:32:31 +00:00
# Helpful defines for the provisioning process.
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
2014-11-13 06:33:27 +00:00
BUILD_DIR="$SCRIPT_DIR/../build"
FORMULA_DIR="$SCRIPT_DIR/provision/formula"
2016-07-31 18:32:31 +00:00
HOMEBREW_REPO="https://github.com/Homebrew/brew"
LINUXBREW_REPO="https://github.com/Linuxbrew/brew"
# Set the SHA1 commit hashes for the pinned homebrew Taps.
# Pinning allows determinism for bottle availability, expect to update often.
HOMEBREW_CORE="0e6f293450cf9b54e324e92ea0b0475fd4e0d929"
2016-07-31 18:32:31 +00:00
LINUXBREW_CORE="600e1460c79b9cf6945e87cb5374b9202db1f6a9"
HOMEBREW_DUPES="00df450f28f23aa1013564889d11440ab80b36a5"
2016-07-31 18:32:31 +00:00
LINUXBREW_DUPES="83cad3d474e6d245cd543521061bba976529e5df"
source "$SCRIPT_DIR/lib.sh"
source "$SCRIPT_DIR/provision/lib.sh"
2014-11-09 00:55:19 +00:00
function main() {
platform OS
distro $OS DISTRO
2015-05-10 00:32:24 +00:00
threads THREADS
if ! hash sudo 2>/dev/null; then
2015-10-14 23:05:12 +00:00
echo "Please install sudo in this machine"
exit 0
fi
2016-07-31 18:32:31 +00:00
# Setup the osquery dependency directory.
# One can use a non-build location using OSQUERY_DEPS=/path/to/deps
if [[ -e "$OSQUERY_DEPS" ]]; then
DEPS_DIR="$OSQUERY_DEPS"
else
DEPS_DIR="/usr/local/osquery"
fi
if [[ "$1" = "clean" ]]; then
do_sudo rm -rf "$DEPS_DIR"
return
fi
# Setup the local ./build/DISTRO cmake build directory.
2014-11-13 06:33:27 +00:00
if [[ ! -z "$SUDO_USER" ]]; then
echo "chown -h $SUDO_USER $BUILD_DIR/*"
chown -h $SUDO_USER:$SUDO_GID "$BUILD_DIR" || true
if [[ $OS = "linux" ]]; then
chown -h $SUDO_USER:$SUDO_GID "$BUILD_DIR/linux" || true
fi
chown $SUDO_USER:$SUDO_GID "$WORKING_DIR" > /dev/null 2>&1 || true
2014-11-13 06:33:27 +00:00
fi
2016-07-31 18:32:31 +00:00
# Provisioning uses either Linux or Home (OS X) brew.
if [[ $OS = "darwin" ]]; then
BREW_TYPE="darwin"
else
BREW_TYPE="linux"
fi
# Each OS/Distro may have specific provisioning needs.
# These scripts are optional and should installed the needed packages for:
# 1. A basic ruby interpreter to run brew
# 2. A GCC compiler to compile a modern glibc/GCC and legacy glibc.
# 3. Curl, git, autotools, autopoint, and gawk.
OS_SCRIPT="$SCRIPT_DIR/provision/$OS.sh"
if [[ -f "$OS_SCRIPT" ]]; then
log "found $OS provision script: $OS_SCRIPT"
source "$OS_SCRIPT"
if [[ -z "$SKIP_DISTRO_MAIN" && "$1" = "build" ]]; then
2016-07-31 18:32:31 +00:00
distro_main
fi
else
2016-07-31 18:32:31 +00:00
log "your $OS does not use a provision script"
fi
2016-07-31 18:32:31 +00:00
# The dependency directory (DEPS_DIR) will contain our legacy runtime glibc
# and various compilers/library dependencies.
if [[ ! -d "$DEPS_DIR" ]]; then
log "creating build dir: $DEPS_DIR"
do_sudo mkdir -p "$DEPS_DIR"
do_sudo chown $USER "$DEPS_DIR" > /dev/null 2>&1 || true
fi
cd "$DEPS_DIR"
# Finally run the setup of *brew, and checkout the needed Taps.
# This will install a local tap using a symbol to the formula subdir here.
export PATH="$DEPS_DIR/bin:$PATH"
setup_brew "$DEPS_DIR" "$BREW_TYPE"
if [[ "$1" = "bottle" ]]; then
brew_bottle "$2"
return
elif [[ "$1" = "install" ]]; then
local_brew_dependency "$2"
return
fi
2016-07-31 18:32:31 +00:00
if [[ ! -z "$OSQUERY_BUILD_DEPS" ]]; then
log "[notice]"
log "[notice] you are choosing to build dependencies instead of installing"
log "[notice]"
fi
log "running unified platform initialization"
2016-09-16 18:29:43 +00:00
brew_clear_cache
2016-07-31 18:32:31 +00:00
if [[ "$BREW_TYPE" = "darwin" ]]; then
platform_darwin_main
else
platform_linux_main
fi
2016-09-16 18:29:43 +00:00
brew_clear_cache
cd "$SCRIPT_DIR/../"
2014-11-16 09:31:59 +00:00
# Additional compilations may occur for Python and Ruby
export LIBRARY_PATH="$DEPS_DIR/legacy/lib:$DEPS_DIR/lib:$LIBRARY_PATH"
# Pip may have just been installed.
2016-07-31 18:32:31 +00:00
log "upgrading pip and installing python dependencies"
PIP=`which pip`
2016-07-31 18:32:31 +00:00
$PIP install --upgrade pip
# Pip may change locations after upgrade.
PIP=`which pip`
2016-07-31 18:32:31 +00:00
$PIP install -r requirements.txt
2015-04-01 08:10:28 +00:00
2016-07-31 18:32:31 +00:00
log "running auxiliary initialization"
2016-01-21 10:32:53 +00:00
initialize $OS
}
2016-07-31 18:32:31 +00:00
function platform_linux_main() {
# GCC 5x bootstrapping.
brew_tool patchelf
brew_tool zlib
brew_tool binutils
brew_tool linux-headers
2016-07-31 18:32:31 +00:00
# Build a bottle of a modern glibc.
local_brew_tool glibc
local_brew_postinstall glibc
# Build a bottle for a legacy glibc.
local_brew_tool glibc-legacy
2016-09-16 18:29:43 +00:00
local_brew_unlink glibc-legacy
local_brew_link glibc-legacy
2016-07-31 18:32:31 +00:00
local_brew_postinstall glibc-legacy
# Additional GCC 5x bootstrapping.
brew_tool gmp
brew_tool mpfr
brew_tool libmpc
brew_tool isl
2016-07-31 18:32:31 +00:00
# GCC 5x.
2016-09-16 18:29:43 +00:00
local_brew_tool gcc
# Remove gcc-postinstall when GCC is next updated.
local_brew_postinstall gcc
2016-07-31 18:32:31 +00:00
set_deps_compilers gcc
2016-09-16 18:29:43 +00:00
# Need LZMA for final builds.
local_brew_tool zlib-legacy
local_brew_tool xz
2016-07-31 18:32:31 +00:00
# GCC-compiled (C) dependencies.
brew_tool pkg-config
# Build a bottle for ncurses
local_brew_tool ncurses
# Need BZIP/Readline for final build.
local_brew_tool bzip2
brew_tool unzip
local_brew_tool readline
brew_tool sqlite
brew_tool makedepend
brew_tool libidn
2016-07-31 18:32:31 +00:00
# Build a bottle for perl and openssl.
# OpenSSL is needed for the final build.
# local_brew_tool perl -vd --without-test
brew_clean curl
2016-07-31 18:32:31 +00:00
local_brew_tool openssl
local_brew_postinstall openssl
local_brew_link openssl
2016-07-31 18:32:31 +00:00
# LLVM dependencies.
brew_tool libxml2
brew_tool libedit
brew_tool libtool
brew_tool m4
brew_tool bison
# More LLVM dependencies.
brew_tool autoconf
brew_tool automake
# Curl and Python are needed for LLVM mostly.
local_brew_tool curl
local_brew_tool python
local_brew_postinstall python
local_brew_tool cmake --without-docs
# Linux library secondary dependencies.
local_brew_tool berkeley-db
local_brew_tool popt
local_brew_tool beecrypt
2016-07-31 18:32:31 +00:00
# LLVM/Clang.
local_brew_tool llvm
2016-07-31 18:32:31 +00:00
set_deps_compilers clang
# General Linux dependencies.
local_brew_dependency util-linux
platform_posix_main
2016-07-31 18:32:31 +00:00
local_brew_tool zzuf
local_brew_tool cppcheck
local_brew_tool ccache
2016-07-31 18:32:31 +00:00
# Linux specific custom formulas.
2016-09-16 18:29:43 +00:00
local_brew_dependency libgpg-error
local_brew_dependency libdevmapper
2016-07-31 18:32:31 +00:00
local_brew_dependency libaptpkg
local_brew_dependency libiptables
local_brew_dependency libgcrypt
local_brew_dependency libcryptsetup
2016-07-31 18:32:31 +00:00
local_brew_dependency libudev
local_brew_dependency libaudit
local_brew_dependency libdpkg
local_brew_dependency librpm
2016-07-31 18:32:31 +00:00
# Restore the compilers to GCC for the remainder of provisioning.
set_deps_compilers gcc
}
function platform_darwin_main() {
brew_tool xz
brew_tool readline
brew_tool sqlite
brew_tool makedepend
brew_tool clang-format
2016-07-31 18:32:31 +00:00
local_brew_dependency openssl
local_brew_postinstall openssl
local_brew_link openssl
2016-07-31 18:32:31 +00:00
brew_tool pkg-config
brew_tool autoconf
brew_tool automake
brew_tool libtool
brew_tool bison
brew_link bison
2016-07-31 18:32:31 +00:00
local_brew_tool python
local_brew_postinstall python
local_brew_tool cmake --without-docs
platform_posix_main
2016-09-23 20:25:16 +00:00
local_brew_tool zzuf
local_brew_tool cppcheck
2016-09-24 01:01:15 +00:00
local_brew_tool ccache
}
function platform_posix_main() {
2016-07-31 18:32:31 +00:00
# List of LLVM-compiled dependencies.
local_brew_dependency linenoise-ng
2016-07-31 18:32:31 +00:00
local_brew_dependency boost
local_brew_dependency asio
local_brew_dependency cpp-netlib
local_brew_dependency google-benchmark
local_brew_dependency pcre
local_brew_dependency lz4
local_brew_dependency snappy
local_brew_dependency sleuthkit
local_brew_dependency libmagic
local_brew_dependency thrift
local_brew_dependency rocksdb
local_brew_dependency gflags
local_brew_dependency aws-sdk-cpp
local_brew_dependency yara
local_brew_dependency glog
}
check $1 "$2"
main $1 "$2"