#!/bin/sh # WARNING: REQUIRES /bin/sh # # - must run on /bin/sh on solaris 9 # - must run on /bin/sh on AIX 6.x # # Copyright:: Copyright (c) 2010-2015 Chef Software, Inc. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # # helpers.sh ############ # This section has some helper functions to make life easier. # # Outputs: # $tmp_dir: secure-ish temp directory that can be used during installation. ############ # Check whether a command exists - returns 0 if it does, 1 if it does not exists() { if command -v $1 >/dev/null 2>&1 then return 0 else return 1 fi } # Output the instructions to report bug about this script report_bug() { echo "Version: $version" echo "" echo "Please file a Bug Report at https://github.com/chef/omnitruck/issues/new" echo "Alternatively, feel free to open a Support Ticket at https://www.chef.io/support/tickets" echo "More Chef support resources can be found at https://www.chef.io/support" echo "" echo "Please include as many details about the problem as possible i.e., how to reproduce" echo "the problem (if possible), type of the Operating System and its version, etc.," echo "and any other relevant details that might help us with troubleshooting." echo "" } checksum_mismatch() { echo "Package checksum mismatch!" report_bug exit 1 } unable_to_retrieve_package() { echo "Unable to retrieve a valid package!" report_bug echo "Metadata URL: $metadata_url" if test "x$download_url" != "x"; then echo "Download URL: $download_url" fi if test "x$stderr_results" != "x"; then echo "\nDEBUG OUTPUT FOLLOWS:\n$stderr_results" fi exit 1 } http_404_error() { echo "Omnitruck artifact does not exist for version $version on platform $platform" echo "" echo "Either this means:" echo " - We do not support $platform" echo " - We do not have an artifact for $version" echo "" echo "This is often the latter case due to running a prerelease or RC version of chef" echo "or a gem version which was only pushed to rubygems and not omnitruck." echo "" echo "You may be able to set your knife[:bootstrap_version] to the most recent stable" echo "release of Chef to fix this problem (or the most recent stable major version number)." echo "" echo "In order to test the version parameter, adventurous users may take the Metadata URL" echo "below and modify the '&v=' parameter until you successfully get a URL that" echo "does not 404 (e.g. via curl or wget). You should be able to use '&v=11' or '&v=12'" echo "succesfully." echo "" echo "If you cannot fix this problem by setting the bootstrap_version, it probably means" echo "that $platform is not supported." echo "" # deliberately do not call report_bug to suppress bug report noise. echo "Metadata URL: $metadata_url" if test "x$download_url" != "x"; then echo "Download URL: $download_url" fi if test "x$stderr_results" != "x"; then echo "\nDEBUG OUTPUT FOLLOWS:\n$stderr_results" fi exit 1 } capture_tmp_stderr() { # spool up /tmp/stderr from all the commands we called if test -f "$tmp_dir/stderr"; then output=`cat $tmp_dir/stderr` stderr_results="${stderr_results}\nSTDERR from $1:\n\n$output\n" rm $tmp_dir/stderr fi } # do_wget URL FILENAME do_wget() { echo "trying wget..." wget -O "$2" "$1" 2>$tmp_dir/stderr rc=$? # check for 404 grep "ERROR 404" $tmp_dir/stderr 2>&1 >/dev/null if test $? -eq 0; then echo "ERROR 404" http_404_error fi # check for bad return status or empty output if test $rc -ne 0 || test ! -s "$2"; then capture_tmp_stderr "wget" return 1 fi return 0 } # do_curl URL FILENAME do_curl() { echo "trying curl..." curl --retry 5 -sL -D $tmp_dir/stderr "$1" > "$2" rc=$? # check for 404 grep "404 Not Found" $tmp_dir/stderr 2>&1 >/dev/null if test $? -eq 0; then echo "ERROR 404" http_404_error fi # check for bad return status or empty output if test $rc -ne 0 || test ! -s "$2"; then capture_tmp_stderr "curl" return 1 fi return 0 } # do_fetch URL FILENAME do_fetch() { echo "trying fetch..." fetch -o "$2" "$1" 2>$tmp_dir/stderr # check for bad return status test $? -ne 0 && return 1 return 0 } # do_perl URL FILENAME do_perl() { echo "trying perl..." perl -e 'use LWP::Simple; getprint($ARGV[0]);' "$1" > "$2" 2>$tmp_dir/stderr rc=$? # check for 404 grep "404 Not Found" $tmp_dir/stderr 2>&1 >/dev/null if test $? -eq 0; then echo "ERROR 404" http_404_error fi # check for bad return status or empty output if test $rc -ne 0 || test ! -s "$2"; then capture_tmp_stderr "perl" return 1 fi return 0 } # do_python URL FILENAME do_python() { echo "trying python..." python -c "import sys,urllib2 ; sys.stdout.write(urllib2.urlopen(sys.argv[1]).read())" "$1" > "$2" 2>$tmp_dir/stderr rc=$? # check for 404 grep "HTTP Error 404" $tmp_dir/stderr 2>&1 >/dev/null if test $? -eq 0; then echo "ERROR 404" http_404_error fi # check for bad return status or empty output if test $rc -ne 0 || test ! -s "$2"; then capture_tmp_stderr "python" return 1 fi return 0 } # returns 0 if checksums match do_checksum() { if exists sha256sum; then echo "Comparing checksum with sha256sum..." checksum=`sha256sum $1 | awk '{ print $1 }'` return `test "x$checksum" = "x$2"` elif exists shasum; then echo "Comparing checksum with shasum..." checksum=`shasum -a 256 $1 | awk '{ print $1 }'` return `test "x$checksum" = "x$2"` else echo "WARNING: could not find a valid checksum program, pre-install shasum or sha256sum in your O/S image to get valdation..." return 0 fi } # do_download URL FILENAME do_download() { echo "downloading $1" echo " to file $2" url=`echo $1` if test "x$platform" = "xsolaris2"; then if test "x$platform_version" = "x5.9" -o "x$platform_version" = "x5.10"; then # solaris 9 lacks openssl, solaris 10 lacks recent enough credentials - your base O/S is completely insecure, please upgrade url=`echo $url | sed -e 's/https/http/'` fi fi # we try all of these until we get success. # perl, in particular may be present but LWP::Simple may not be installed if exists wget; then do_wget $url $2 && return 0 fi if exists curl; then do_curl $url $2 && return 0 fi if exists fetch; then do_fetch $url $2 && return 0 fi if exists perl; then do_perl $url $2 && return 0 fi if exists python; then do_python $url $2 && return 0 fi unable_to_retrieve_package } # install_file TYPE FILENAME # TYPE is "rpm", "deb", "solaris", "sh", etc. install_file() { echo "Installing $project $version" case "$1" in "rpm") if test "x$platform" = "xnexus" || test "x$platform" = "xios_xr"; then echo "installing with yum..." yum install -yv "$2" else echo "installing with rpm..." rpm -Uvh --oldpackage --replacepkgs "$2" fi ;; "deb") echo "installing with dpkg..." dpkg -i "$2" ;; "bff") echo "installing with installp..." installp -aXYgd "$2" all ;; "solaris") echo "installing with pkgadd..." echo "conflict=nocheck" > $tmp_dir/nocheck echo "action=nocheck" >> $tmp_dir/nocheck echo "mail=" >> $tmp_dir/nocheck pkgrm -a $tmp_dir/nocheck -n $project >/dev/null 2>&1 || true pkgadd -G -n -d "$2" -a $tmp_dir/nocheck $project ;; "pkg") echo "installing with installer..." cd / && /usr/sbin/installer -pkg "$2" -target / ;; "dmg") echo "installing dmg file..." hdiutil detach "/Volumes/chef_software" >/dev/null 2>&1 || true hdiutil attach "$2" -mountpoint "/Volumes/chef_software" cd / && /usr/sbin/installer -pkg `find "/Volumes/chef_software" -name \*.pkg` -target / hdiutil detach "/Volumes/chef_software" ;; "sh" ) echo "installing with sh..." sh "$2" ;; *) echo "Unknown filetype: $1" report_bug exit 1 ;; esac if test $? -ne 0; then echo "Installation failed" report_bug exit 1 fi } if test "x$TMPDIR" = "x"; then tmp="/tmp" else tmp=$TMPDIR fi # secure-ish temp dir creation without having mktemp available (DDoS-able but not expliotable) tmp_dir="$tmp/install.sh.$$" (umask 077 && mkdir $tmp_dir) || exit 1 ############ # end of helpers.sh ############