scripts/functions
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Thu Aug 07 13:35:11 2008 +0000 (2008-08-07)
changeset 764 ff368787f62b
parent 738 e8c68d0d1a0c
child 767 fe5e42bf7bbc
permissions -rw-r--r--
When reporting bugs, TO is ymorin, CC is crossgcc ML, not the other way around.

/trunk/README | 4 2 2 0 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
     1 # This file contains some usefull common functions
     2 # Copyright 2007 Yann E. MORIN
     3 # Licensed under the GPL v2. See COPYING in the root of this package
     4 
     5 # Prepare the fault handler
     6 CT_OnError() {
     7     ret=$?
     8     # Bail out early in subshell, the upper level shell will act accordingly.
     9     [ ${BASH_SUBSHELL} -eq 0 ] || exit $ret
    10     CT_DoLog ERROR "Build failed in step '${CT_STEP_MESSAGE[${CT_STEP_COUNT}]}'"
    11     for((step=(CT_STEP_COUNT-1); step>1; step--)); do
    12         CT_DoLog ERROR "      called in step '${CT_STEP_MESSAGE[${step}]}'"
    13     done
    14     CT_DoLog ERROR "Error happened in '${BASH_SOURCE[1]}' in function '${FUNCNAME[1]}' (line unknown, sorry)"
    15     for((depth=2; ${BASH_LINENO[$((${depth}-1))]}>0; depth++)); do
    16         CT_DoLog ERROR "      called from '${BASH_SOURCE[${depth}]}' at line # ${BASH_LINENO[${depth}-1]} in function '${FUNCNAME[${depth}]}'"
    17     done
    18     [ "${CT_LOG_TO_FILE}" = "y" ] && CT_DoLog ERROR "Look at '${CT_LOG_FILE}' for more info on this error."
    19     CT_STEP_COUNT=1
    20     CT_DoEnd ERROR
    21     exit $ret
    22 }
    23 
    24 # Install the fault handler
    25 trap CT_OnError ERR
    26 
    27 # Inherit the fault handler in subshells and functions
    28 set -E
    29 
    30 # Make pipes fail on the _first_ failed command
    31 # Not supported on bash < 3.x, but we need it, so drop the obsoleting bash-2.x
    32 set -o pipefail
    33 
    34 # Don't hash commands' locations, and search every time it is requested.
    35 # This is slow, but needed because of the static/shared core gcc which shall
    36 # always match to shared if it exists, and only fallback to static if the
    37 # shared is not found
    38 set +o hashall
    39 
    40 # Log policy:
    41 #  - first of all, save stdout so we can see the live logs: fd #6
    42 exec 6>&1
    43 #  - then point stdout to the log file (temporary for now)
    44 tmp_log_file="${CT_TOP_DIR}/log.$$"
    45 exec >>"${tmp_log_file}"
    46 
    47 # The different log levels:
    48 CT_LOG_LEVEL_ERROR=0
    49 CT_LOG_LEVEL_WARN=1
    50 CT_LOG_LEVEL_INFO=2
    51 CT_LOG_LEVEL_EXTRA=3
    52 CT_LOG_LEVEL_DEBUG=4
    53 CT_LOG_LEVEL_ALL=5
    54 
    55 # A function to log what is happening
    56 # Different log level are available:
    57 #   - ERROR:   A serious, fatal error occurred
    58 #   - WARN:    A non fatal, non serious error occurred, take your responsbility with the generated build
    59 #   - INFO:    Informational messages
    60 #   - EXTRA:   Extra informational messages
    61 #   - DEBUG:   Debug messages
    62 #   - ALL:     Component's build messages
    63 # Usage: CT_DoLog <level> [message]
    64 # If message is empty, then stdin will be logged.
    65 CT_DoLog() {
    66     local max_level LEVEL level cur_l cur_L
    67     local l
    68     eval max_level="\${CT_LOG_LEVEL_${CT_LOG_LEVEL_MAX}}"
    69     # Set the maximum log level to DEBUG if we have none
    70     [ -z "${max_level}" ] && max_level=${CT_LOG_LEVEL_DEBUG}
    71 
    72     LEVEL="$1"; shift
    73     eval level="\${CT_LOG_LEVEL_${LEVEL}}"
    74 
    75     if [ $# -eq 0 ]; then
    76         cat -
    77     else
    78         echo "${@}"
    79     fi |( IFS="\n" # We want the full lines, even leading spaces
    80           _prog_bar_cpt=0
    81           _prog_bar[0]='/'
    82           _prog_bar[1]='-'
    83           _prog_bar[2]='\'
    84           _prog_bar[3]='|'
    85           indent=$((2*CT_STEP_COUNT))
    86           while read line; do
    87               case "${CT_LOG_SEE_TOOLS_WARN},${line}" in
    88                 y,*"warning:"*)         cur_L=WARN; cur_l=${CT_LOG_LEVEL_WARN};;
    89                 y,*"WARNING:"*)         cur_L=WARN; cur_l=${CT_LOG_LEVEL_WARN};;
    90                 *"error:"*)             cur_L=ERROR; cur_l=${CT_LOG_LEVEL_ERROR};;
    91                 *"make["?*"]:"*"Stop.") cur_L=ERROR; cur_l=${CT_LOG_LEVEL_ERROR};;
    92                 *)                      cur_L="${LEVEL}"; cur_l="${level}";;
    93               esac
    94               # There will always be a log file (stdout, fd #1), be it /dev/null
    95               printf "[%-5s]%*s%s%s\n" "${cur_L}" "${indent}" " " "${line}"
    96               if [ ${cur_l} -le ${max_level} ]; then
    97                   # Only print to console (fd #6) if log level is high enough.
    98                   printf "\r[%-5s]%*s%s%s\n" "${cur_L}" "${indent}" " " "${line}" >&6
    99               fi
   100               if [ "${CT_LOG_PROGRESS_BAR}" = "y" ]; then
   101                   printf "\r[%02d:%02d] %s " $((SECONDS/60)) $((SECONDS%60)) "${_prog_bar[$((_prog_bar_cpt/10))]}" >&6
   102                   _prog_bar_cpt=$(((_prog_bar_cpt+1)%40))
   103               fi
   104           done
   105         )
   106 
   107     return 0
   108 }
   109 
   110 # Execute an action, and log its messages
   111 # Usage: CT_DoExecLog <level> <[VAR=val...] command [parameters...]>
   112 CT_DoExecLog() {
   113     local level="$1"
   114     shift
   115     CT_DoLog DEBUG "==> Executing: '${@}'"
   116     "${@}" 2>&1 |CT_DoLog "${level}"
   117 }
   118 
   119 # Tail message to be logged whatever happens
   120 # Usage: CT_DoEnd <level>
   121 CT_DoEnd()
   122 {
   123     local level="$1"
   124     CT_STOP_DATE=$(CT_DoDate +%s%N)
   125     CT_STOP_DATE_HUMAN=$(CT_DoDate +%Y%m%d.%H%M%S)
   126     if [ "${level}" != "ERROR" ]; then
   127         CT_DoLog "${level:-INFO}" "Build completed at ${CT_STOP_DATE_HUMAN}"
   128     fi
   129     elapsed=$((CT_STOP_DATE-CT_STAR_DATE))
   130     elapsed_min=$((elapsed/(60*1000*1000*1000)))
   131     elapsed_sec=$(printf "%02d" $(((elapsed%(60*1000*1000*1000))/(1000*1000*1000))))
   132     elapsed_csec=$(printf "%02d" $(((elapsed%(1000*1000*1000))/(10*1000*1000))))
   133     CT_DoLog ${level:-INFO} "(elapsed: ${elapsed_min}:${elapsed_sec}.${elapsed_csec})"
   134 }
   135 
   136 # Abort the execution with an error message
   137 # Usage: CT_Abort <message>
   138 CT_Abort() {
   139     CT_DoLog ERROR "$1"
   140     exit 1
   141 }
   142 
   143 # Test a condition, and print a message if satisfied
   144 # Usage: CT_Test <message> <tests>
   145 CT_Test() {
   146     local ret
   147     local m="$1"
   148     shift
   149     test "$@" && CT_DoLog WARN "$m"
   150     return 0
   151 }
   152 
   153 # Test a condition, and abort with an error message if satisfied
   154 # Usage: CT_TestAndAbort <message> <tests>
   155 CT_TestAndAbort() {
   156     local m="$1"
   157     shift
   158     test "$@" && CT_Abort "$m"
   159     return 0
   160 }
   161 
   162 # Test a condition, and abort with an error message if not satisfied
   163 # Usage: CT_TestAndAbort <message> <tests>
   164 CT_TestOrAbort() {
   165     local m="$1"
   166     shift
   167     test "$@" || CT_Abort "$m"
   168     return 0
   169 }
   170 
   171 # Test the presence of a tool, or abort if not found
   172 # Usage: CT_HasOrAbort <tool>
   173 CT_HasOrAbort() {
   174     CT_TestAndAbort "'${1}' not found and needed for successful toolchain build." -z ""$(CT_Which "${1}")
   175     return 0
   176 }
   177 
   178 # Search a program: wrap "which" for those system where
   179 # "which" verbosely says there is no match (Mdk are such
   180 # suckers...)
   181 # Usage: CT_Which <filename>
   182 CT_Which() {
   183   which "$1" 2>/dev/null || true
   184 }
   185 
   186 # Get current date with nanosecond precision
   187 # On those system not supporting nanosecond precision, faked with rounding down
   188 # to the highest entire second
   189 # Usage: CT_DoDate <fmt>
   190 CT_DoDate() {
   191     date "$1" |sed -r -e 's/%N$/000000000/;'
   192 }
   193 
   194 CT_STEP_COUNT=1
   195 CT_STEP_MESSAGE[${CT_STEP_COUNT}]="<none>"
   196 # Memorise a step being done so that any error is caught
   197 # Usage: CT_DoStep <loglevel> <message>
   198 CT_DoStep() {
   199     local start=$(CT_DoDate +%s%N)
   200     CT_DoLog "$1" "================================================================="
   201     CT_DoLog "$1" "$2"
   202     CT_STEP_COUNT=$((CT_STEP_COUNT+1))
   203     CT_STEP_LEVEL[${CT_STEP_COUNT}]="$1"; shift
   204     CT_STEP_START[${CT_STEP_COUNT}]="${start}"
   205     CT_STEP_MESSAGE[${CT_STEP_COUNT}]="$1"
   206     return 0
   207 }
   208 
   209 # End the step just being done
   210 # Usage: CT_EndStep
   211 CT_EndStep() {
   212     local stop=$(CT_DoDate +%s%N)
   213     local duration=$(printf "%032d" $((stop-${CT_STEP_START[${CT_STEP_COUNT}]})) |sed -r -e 's/([[:digit:]]{2})[[:digit:]]{7}$/\.\1/; s/^0+//; s/^\./0\./;')
   214     local elapsed=$(printf "%02d:%02d" $((SECONDS/60)) $((SECONDS%60)))
   215     local level="${CT_STEP_LEVEL[${CT_STEP_COUNT}]}"
   216     local message="${CT_STEP_MESSAGE[${CT_STEP_COUNT}]}"
   217     CT_STEP_COUNT=$((CT_STEP_COUNT-1))
   218     CT_DoLog "${level}" "${message}: done in ${duration}s (at ${elapsed})"
   219     return 0
   220 }
   221 
   222 # Pushes into a directory, and pops back
   223 CT_Pushd() {
   224     pushd "$1" >/dev/null 2>&1
   225 }
   226 CT_Popd() {
   227     popd >/dev/null 2>&1
   228 }
   229 
   230 # Makes a path absolute
   231 # Usage: CT_MakeAbsolutePath path
   232 CT_MakeAbsolutePath() {
   233     # Try to cd in that directory
   234     if [ -d "$1" ]; then
   235         CT_Pushd "$1"
   236         pwd
   237         CT_Popd
   238     else
   239         # No such directory, fail back to guessing
   240         case "$1" in
   241             /*)  echo "$1";;
   242             *)   echo "$(pwd)/$1";;
   243         esac
   244     fi
   245     
   246     return 0
   247 }
   248 
   249 # Creates a temporary directory
   250 # $1: variable to assign to
   251 # Usage: CT_MktempDir foo
   252 CT_MktempDir() {
   253     # Some mktemp do not allow more than 6 Xs
   254     eval "$1"=$(mktemp -q -d "${CT_BUILD_DIR}/.XXXXXX")
   255     CT_TestOrAbort "Could not make temporary directory" -n "${!1}" -a -d "${!1}"
   256 }
   257 
   258 # Echoes the specified string on stdout until the pipe breaks.
   259 # Doesn't fail
   260 # $1: string to echo
   261 # Usage: CT_DoYes "" |make oldconfig
   262 CT_DoYes() {
   263     yes "$1" || true
   264 }
   265 
   266 # Get the file name extension of a component
   267 # Usage: CT_GetFileExtension <component_name-component_version> [extension]
   268 # If found, echoes the extension to stdout
   269 # If not found, echoes nothing on stdout.
   270 CT_GetFileExtension() {
   271     local ext
   272     local file="$1"
   273     shift
   274     local first_ext="$1"
   275 
   276     CT_Pushd "${CT_TARBALLS_DIR}"
   277     # we need to also check for an empty extension for those very
   278     # peculiar components that don't have one (such as sstrip from
   279     # buildroot).
   280     for ext in ${first_ext} .tar.gz .tar.bz2 .tgz .tar ''; do
   281         if [ -f "${file}${ext}" ]; then
   282             echo "${ext}"
   283             break
   284         fi
   285     done
   286     CT_Popd
   287 
   288     return 0
   289 }
   290 
   291 # Set environment for proxy access
   292 # Usage: CT_DoSetProxy <proxy_type>
   293 # where proxy_type is one of 'none', 'http', 'sockssys', 'socks4' or 'socks5'
   294 CT_DoSetProxy() {
   295     case "${CT_PROXY_TYPE}" in
   296         http)
   297             http_proxy="http://"
   298             case  "${CT_PROXY_USER}:${CT_PROXY_PASS}" in
   299                 :)      ;;
   300                 :*)     http_proxy="${http_proxy}:${CT_PROXY_PASS}@";;
   301                 *:)     http_proxy="${http_proxy}${CT_PROXY_USER}@";;
   302                 *:*)    http_proxy="${http_proxy}${CT_PROXY_USER}:${CT_PROXY_PASS}@";;
   303             esac
   304             export http_proxy="${http_proxy}${CT_PROXY_HOST}:${CT_PROXY_PORT}/"
   305             export https_proxy="${http_proxy}"
   306             export ftp_proxy="${http_proxy}"
   307             CT_DoLog DEBUG "http_proxy='${http_proxy}'"
   308             ;;
   309         sockssys)
   310             # Force not using HTTP proxy
   311             unset http_proxy ftp_proxy https_proxy
   312             CT_HasOrAbort tsocks
   313             . tsocks -on
   314             ;;
   315         socks*)
   316             # Force not using HTTP proxy
   317             unset http_proxy ftp_proxy https_proxy
   318             # Remove any lingering config file from any previous run
   319             rm -f "${CT_BUILD_DIR}/tsocks.conf"
   320             # Find all interfaces and build locally accessible networks
   321             server_ip=$(ping -c 1 -W 2 "${CT_PROXY_HOST}" |head -n 1 |sed -r -e 's/^[^\(]+\(([^\)]+)\).*$/\1/;' || true)
   322             CT_TestOrAbort "SOCKS proxy '${CT_PROXY_HOST}' has no IP." -n "${server_ip}"
   323             /sbin/ifconfig |awk -v server_ip="${server_ip}" '
   324                 BEGIN {
   325                     split( server_ip, tmp, "\\." );
   326                     server_ip_num = tmp[1] * 2^24 + tmp[2] * 2^16 + tmp[3] * 2^8 + tmp[4] * 2^0;
   327                     pairs = 0;
   328                 }
   329 
   330                 $0 ~ /^[[:space:]]*inet addr:/ {
   331                     split( $2, tmp, ":|\\." );
   332                     if( ( tmp[2] == 127 ) && ( tmp[3] == 0 ) && ( tmp[4] == 0 ) && ( tmp[5] == 1 ) ) {
   333                         /* Skip 127.0.0.1, it'\''s taken care of by tsocks itself */
   334                         next;
   335                     }
   336                     ip_num = tmp[2] * 2^24 + tmp[3] * 2^16 + tmp[4] * 2 ^8 + tmp[5] * 2^0;
   337                     i = 32;
   338                     do {
   339                         i--;
   340                         mask = 2^32 - 2^i;
   341                     } while( (i!=0) && ( and( server_ip_num, mask ) == and( ip_num, mask ) ) );
   342                     mask = and( 0xFFFFFFFF, lshift( mask, 1 ) );
   343                     if( (i!=0) && (mask!=0) ) {
   344                         masked_ip = and( ip_num, mask );
   345                         for( i=0; i<pairs; i++ ) {
   346                             if( ( masked_ip == ips[i] ) && ( mask == masks[i] ) ) {
   347                                 next;
   348                             }
   349                         }
   350                         ips[pairs] = masked_ip;
   351                         masks[pairs] = mask;
   352                         pairs++;
   353                         printf( "local = %d.%d.%d.%d/%d.%d.%d.%d\n",
   354                                 and( 0xFF, masked_ip / 2^24 ),
   355                                 and( 0xFF, masked_ip / 2^16 ),
   356                                 and( 0xFF, masked_ip / 2^8 ),
   357                                 and( 0xFF, masked_ip / 2^0 ),
   358                                 and( 0xFF, mask / 2^24 ),
   359                                 and( 0xFF, mask / 2^16 ),
   360                                 and( 0xFF, mask / 2^8 ),
   361                                 and( 0xFF, mask / 2^0 ) );
   362                     }
   363                 }
   364             ' >"${CT_BUILD_DIR}/tsocks.conf"
   365             ( echo "server = ${server_ip}";
   366               echo "server_port = ${CT_PROXY_PORT}";
   367               [ -n "${CT_PROXY_USER}"   ] && echo "default_user=${CT_PROXY_USER}";
   368               [ -n "${CT_PROXY_PASS}" ] && echo "default_pass=${CT_PROXY_PASS}";
   369             ) >>"${CT_BUILD_DIR}/tsocks.conf"
   370             case "${CT_PROXY_TYPE/socks}" in
   371                 4|5) proxy_type="${CT_PROXY_TYPE/socks}";;
   372                 auto)
   373                     reply=$(inspectsocks "${server_ip}" "${CT_PROXY_PORT}" 2>&1 || true)
   374                     case "${reply}" in
   375                         *"server is a version 4 socks server") proxy_type=4;;
   376                         *"server is a version 5 socks server") proxy_type=5;;
   377                         *) CT_Abort "Unable to determine SOCKS proxy type for '${CT_PROXY_HOST}:${CT_PROXY_PORT}'"
   378                     esac
   379                     ;;
   380             esac
   381             echo "server_type = ${proxy_type}" >> "${CT_BUILD_DIR}/tsocks.conf"
   382             CT_HasOrAbort tsocks
   383             # If tsocks was found, then validateconf is present (distributed with tsocks).
   384             CT_DoExecLog DEBUG validateconf -f "${CT_BUILD_DIR}/tsocks.conf"
   385             export TSOCKS_CONF_FILE="${CT_BUILD_DIR}/tsocks.conf"
   386             . tsocks -on
   387             ;;
   388     esac
   389 }
   390 
   391 # Download an URL using wget
   392 # Usage: CT_DoGetFileWget <URL>
   393 CT_DoGetFileWget() {
   394     # Need to return true because it is legitimate to not find the tarball at
   395     # some of the provided URLs (think about snapshots, different layouts for
   396     # different gcc versions, etc...)
   397     # Some (very old!) FTP server might not support the passive mode, thus
   398     # retry without
   399     # With automated download as we are doing, it can be very dangerous to use
   400     # -c to continue the downloads. It's far better to simply overwrite the
   401     # destination file
   402     # Some company networks have firewalls to connect to the internet, but it's
   403     # not easy to detect them, and wget does not timeout by default  while
   404     # connecting, so force a global ${CT_CONNECT_TIMEOUT}-second timeout.
   405     wget -T ${CT_CONNECT_TIMEOUT} -nc --progress=dot:binary --tries=3 --passive-ftp "$1"    \
   406     || wget -T ${CT_CONNECT_TIMEOUT} -nc --progress=dot:binary --tries=3 "$1"               \
   407     || true
   408 }
   409 
   410 # Download an URL using curl
   411 # Usage: CT_DoGetFileCurl <URL>
   412 CT_DoGetFileCurl() {
   413     # Note: comments about wget method (above) are also valid here
   414     # Plus: no good progress indicator is available with curl,
   415     #       so output is consigned to oblivion
   416     curl --ftp-pasv -O --retry 3 "$1" --connect-timeout ${CT_CONNECT_TIMEOUT} >/dev/null    \
   417     || curl -O --retry 3 "$1" --connect-timeout ${CT_CONNECT_TIMEOUT} >/dev/null            \
   418     || true
   419 }
   420 
   421 _wget=$(CT_Which wget)
   422 _curl=$(CT_Which curl)
   423 # Wrapper function to call one of curl or wget
   424 # Usage: CT_DoGetFile <URL>
   425 CT_DoGetFile() {
   426     case "${_wget},${_curl}" in
   427         ,)  CT_DoError "Could find neither wget nor curl";;
   428         ,*) CT_DoGetFileCurl "$1" 2>&1 |CT_DoLog ALL;;
   429         *)  CT_DoGetFileWget "$1" 2>&1 |CT_DoLog ALL;;
   430     esac
   431 }
   432 
   433 # Download the file from one of the URLs passed as argument
   434 # Usage: CT_GetFile <filename> [extension] <url> [url ...]
   435 CT_GetFile() {
   436     local ext
   437     local url
   438     local file="$1"
   439     local first_ext=""
   440     shift
   441     # If next argument starts with a dot, then this is not an URL,
   442     # and we can consider that it is a preferred extension.
   443     case "$1" in
   444         .*) first_ext="$1"
   445             shift
   446             ;;
   447     esac
   448 
   449     # Do we already have it?
   450     ext=$(CT_GetFileExtension "${file}" ${first_ext})
   451     if [ -n "${ext}" ]; then
   452         CT_DoLog DEBUG "Already have '${file}'"
   453         return 0
   454     fi
   455 
   456     # Try to retrieve the file
   457     CT_Pushd "${CT_TARBALLS_DIR}"
   458 
   459     if [ -n "${CT_LOCAL_TARBALLS_DIR}" ]; then
   460         CT_DoLog DEBUG "Trying to retrieve an already downloaded copy of '${file}'"
   461         # We'd rather have a bzip2'ed tarball, then gzipped tarball, plain tarball,
   462         # or, as a failover, a file without extension.
   463         # Try local copy first, if it exists
   464         for ext in ${first_ext} .tar.bz2 .tar.gz .tgz .tar ''; do
   465             CT_DoLog DEBUG "Trying '${CT_LOCAL_TARBALLS_DIR}/${file}${ext}'"
   466             if [ -r "${CT_LOCAL_TARBALLS_DIR}/${file}${ext}" -a \
   467                  "${CT_FORCE_DOWNLOAD}" != "y" ]; then
   468                 CT_DoLog EXTRA "Got '${file}' from local storage"
   469                 ln -sv "${CT_LOCAL_TARBALLS_DIR}/${file}${ext}" "${file}${ext}" |CT_DoLog ALL
   470                 return 0
   471             fi
   472         done
   473     fi
   474 
   475     # Not found locally, try from the network
   476 
   477     # Start with LAN mirror
   478     if [ "${CT_USE_LAN_MIRROR}" = "y" ]; then
   479         CT_DoSetProxy ${CT_LAN_MIRROR_USE_PROXY:+${CT_PROXY_TYPE}}
   480         CT_DoLog DEBUG "Trying to retrieve a copy of '${file}' from LAN mirror '${CT_LAN_MIRROR_HOSTNAME}'"
   481         CT_TestOrAbort "Please set the LAN mirror hostname" -n "${CT_LAN_MIRROR_HOSTNAME}"
   482         CT_TestOrAbort "Please tell me where to find tarballs on the LAN mirror '${CT_LAN_MIRROR_HOSTNAME}'" -n "${CT_LAN_MIRROR_BASE}"
   483         for ext in ${first_ext} .tar.bz2 .tar.gz .tgz .tar ''; do
   484             # Please note: we just have the file's basename in a single piece.
   485             # So we have to just try and split it back into name and version... :-(
   486             for url in "${CT_LAN_MIRROR_SCHEME}://${CT_LAN_MIRROR_HOSTNAME}/${CT_LAN_MIRROR_BASE}/${file%-*}"  \
   487                        "${CT_LAN_MIRROR_SCHEME}://${CT_LAN_MIRROR_HOSTNAME}/${CT_LAN_MIRROR_BASE}";            \
   488             do
   489                 CT_DoLog DEBUG "Trying '${url}/${file}${ext}'"
   490                 CT_DoGetFile "${url}/${file}${ext}"
   491                 if [ -f "${file}${ext}" ]; then
   492                     if [ "${CT_SAVE_TARBALLS}" = "y" ]; then
   493                         # No need to test if the file already exists because
   494                         # it does NOT. If it did exist, we'd have been stopped
   495                         # above, when looking for local copies.
   496                         CT_DoLog EXTRA "Saving '${file}' to local storage"
   497                         mv "${file}${ext}" "${CT_LOCAL_TARBALLS_DIR}" |CT_DoLog ALL
   498                         ln -sv "${CT_LOCAL_TARBALLS_DIR}/${file}${ext}" "${file}${ext}" |CT_DoLog ALL
   499                     fi
   500                     CT_DoLog EXTRA "Got '${file}' from the LAN mirror"
   501                     return 0
   502                 fi
   503             done
   504         done
   505     fi
   506 
   507     # OK, available neither localy, nor from the LAN mirror (if any).
   508     CT_DoSetProxy ${CT_PROXY_TYPE}
   509     for ext in ${first_ext} .tar.bz2 .tar.gz .tgz .tar ''; do
   510         # Try all urls in turn
   511         for url in "$@"; do
   512             CT_DoLog DEBUG "Trying '${url}/${file}${ext}'"
   513             CT_DoGetFile "${url}/${file}${ext}"
   514             if [ -f "${file}${ext}" ]; then
   515                 if [ "${CT_SAVE_TARBALLS}" = "y" ]; then
   516                     # No need to test if the file already exists because
   517                     # it does NOT. If it did exist, we'd have been stopped
   518                     # above, when looking for local copies.
   519                     CT_DoLog EXTRA "Saving '${file}' to local storage"
   520                     mv "${file}${ext}" "${CT_LOCAL_TARBALLS_DIR}" |CT_DoLog ALL
   521                     ln -sv "${CT_LOCAL_TARBALLS_DIR}/${file}${ext}" "${file}${ext}" |CT_DoLog ALL
   522                 fi
   523                 CT_DoLog EXTRA "Got '${file}' from the Internet"
   524                 return 0
   525             fi
   526         done
   527     done
   528     CT_Popd
   529 
   530     CT_Abort "Could not retrieve '${file}'."
   531 }
   532 
   533 # Extract a tarball and patch the resulting sources if necessary.
   534 # Some tarballs need to be extracted in specific places. Eg.: glibc addons
   535 # must be extracted in the glibc directory; uCLibc locales must be extracted
   536 # in the extra/locale sub-directory of uClibc.
   537 CT_ExtractAndPatch() {
   538     local file="$1"
   539     local base_file=$(echo "${file}" |cut -d - -f 1)
   540     local ver_file=$(echo "${file}" |cut -d - -f 2-)
   541     local official_patch_dir
   542     local custom_patch_dir
   543     local libc_addon
   544     local ext=$(CT_GetFileExtension "${file}")
   545     CT_TestAndAbort "'${file}' not found in '${CT_TARBALLS_DIR}'" -z "${ext}"
   546     local full_file="${CT_TARBALLS_DIR}/${file}${ext}"
   547 
   548     CT_Pushd "${CT_SRC_DIR}"
   549 
   550     # Add-ons need a little love, really.
   551     case "${file}" in
   552         glibc-[a-z]*-*)
   553             CT_TestAndAbort "Trying to extract the C-library addon/locales '${file}' when C-library not yet extracted" ! -d "${CT_LIBC_FILE}"
   554             cd "${CT_LIBC_FILE}"
   555             libc_addon=y
   556             [ -f ".${file}.extracted" ] && return 0
   557             touch ".${file}.extracted"
   558             ;;
   559         uClibc-locale-*)
   560             CT_TestAndAbort "Trying to extract the C-library addon/locales '${file}' when C-library not yet extracted" ! -d "${CT_LIBC_FILE}"
   561             cd "${CT_LIBC_FILE}/extra/locale"
   562             libc_addon=y
   563             [ -f ".${file}.extracted" ] && return 0
   564             touch ".${file}.extracted"
   565             ;;
   566     esac
   567 
   568     # If the directory exists, then consider extraction and patching done
   569     if [ -d "${file}" ]; then
   570         CT_DoLog DEBUG "Already extracted '${file}'"
   571         return 0
   572     fi
   573 
   574     CT_DoLog EXTRA "Extracting '${file}'"
   575     case "${ext}" in
   576         .tar.bz2)     tar xvjf "${full_file}" |CT_DoLog ALL;;
   577         .tar.gz|.tgz) tar xvzf "${full_file}" |CT_DoLog ALL;;
   578         .tar)         tar xvf  "${full_file}" |CT_DoLog ALL;;
   579         *)            CT_Abort "Don't know how to handle '${file}': unknown extension" ;;
   580     esac
   581 
   582     # Snapshots might not have the version number in the extracted directory
   583     # name. This is also the case for some (odd) packages, such as D.U.M.A.
   584     # Overcome this issue by symlink'ing the directory.
   585     if [ ! -d "${file}" -a "${libc_addon}" != "y" ]; then
   586         case "${ext}" in
   587             .tar.bz2)     base=$(tar tjf "${full_file}" |head -n 1 |cut -d / -f 1 || true);;
   588             .tar.gz|.tgz) base=$(tar tzf "${full_file}" |head -n 1 |cut -d / -f 1 || true);;
   589             .tar)         base=$(tar tf  "${full_file}" |head -n 1 |cut -d / -f 1 || true);;
   590         esac
   591         CT_TestOrAbort "There was a problem when extracting '${file}'" -d "${base}" -o "${base}" != "${file}"
   592         ln -s "${base}" "${file}"
   593     fi
   594 
   595     # Kludge: outside this function, we wouldn't know if we had just extracted
   596     # a libc addon, or a plain package. Apply patches now.
   597     CT_DoLog EXTRA "Patching '${file}'"
   598 
   599     if [ "${libc_addon}" = "y" ]; then
   600         # Some addon tarballs directly contain the correct addon directory,
   601         # while others have the addon directory named after the tarball.
   602         # Fix that by always using the short name (eg: linuxthreads, ports, etc...)
   603         addon_short_name=$(echo "${file}" |sed -r -e 's/^[^-]+-//; s/-[^-]+$//;')
   604         [ -d "${addon_short_name}" ] || ln -s "${file}" "${addon_short_name}"
   605         # If libc addon, we're already in the correct place
   606     else
   607         cd "${file}"
   608     fi
   609 
   610     official_patch_dir=
   611     custom_patch_dir=
   612     [ "${CUSTOM_PATCH_ONLY}" = "y" ] || official_patch_dir="${CT_LIB_DIR}/patches/${base_file}/${ver_file}"
   613     [ "${CT_CUSTOM_PATCH}" = "y" ] && custom_patch_dir="${CT_CUSTOM_PATCH_DIR}/${base_file}/${ver_file}"
   614     for patch_dir in "${official_patch_dir}" "${custom_patch_dir}"; do
   615         if [ -n "${patch_dir}" -a -d "${patch_dir}" ]; then
   616             for p in "${patch_dir}"/*.patch; do
   617                 if [ -f "${p}" ]; then
   618                     CT_DoLog DEBUG "Applying patch '${p}'"
   619                     patch -g0 -F1 -p1 -f <"${p}" |CT_DoLog ALL
   620                     CT_TestAndAbort "Failed while applying patch file '${p}'" ${PIPESTATUS[0]} -ne 0
   621                 fi
   622             done
   623         fi
   624     done
   625 
   626     if [ "${CT_OVERIDE_CONFIG_GUESS_SUB}" = "y" ]; then
   627         CT_DoLog ALL "Overiding config.guess and config.sub"
   628         for cfg in config_guess config_sub; do
   629             eval ${cfg}="${CT_LIB_DIR}/tools/${cfg/_/.}"
   630             [ -e "${CT_TOP_DIR}/tools/${cfg/_/.}" ] && eval ${cfg}="${CT_TOP_DIR}/tools/${cfg/_/.}"
   631             find . -type f -name "${cfg/_/.}" -exec cp -v "${!cfg}" {} \; |CT_DoLog ALL
   632         done
   633     fi
   634 
   635     CT_Popd
   636 }
   637 
   638 # Two wrappers to call config.(guess|sub) either from CT_TOP_DIR or CT_LIB_DIR.
   639 # Those from CT_TOP_DIR, if they exist, will be be more recent than those from CT_LIB_DIR.
   640 CT_DoConfigGuess() {
   641     if [ -x "${CT_TOP_DIR}/tools/config.guess" ]; then
   642         "${CT_TOP_DIR}/tools/config.guess"
   643     else
   644         "${CT_LIB_DIR}/tools/config.guess"
   645     fi
   646 }
   647 
   648 CT_DoConfigSub() {
   649     if [ -x "${CT_TOP_DIR}/tools/config.sub" ]; then
   650         "${CT_TOP_DIR}/tools/config.sub" "$@"
   651     else
   652         "${CT_LIB_DIR}/tools/config.sub" "$@"
   653     fi
   654 }
   655 
   656 # Compute the target tuple from what is provided by the user
   657 # Usage: CT_DoBuildTargetTuple
   658 # In fact this function takes the environment variables to build the target
   659 # tuple. It is needed both by the normal build sequence, as well as the
   660 # sample saving sequence.
   661 CT_DoBuildTargetTuple() {
   662     # Set the endianness suffix, and the default endianness gcc option
   663     case "${CT_ARCH_BE},${CT_ARCH_LE}" in
   664         y,) target_endian_eb=eb
   665             target_endian_el=
   666             CT_ARCH_ENDIAN_CFLAG="-mbig-endian"
   667             CT_ARCH_ENDIAN_LDFLAG="-EB"
   668             ;;
   669         ,y) target_endian_eb=
   670             target_endian_el=el
   671             CT_ARCH_ENDIAN_CFLAG="-mlittle-endian"
   672             CT_ARCH_ENDIAN_LDFLAG="-EL"
   673             ;;
   674     esac
   675 
   676     # Set defaults for the system part of the tuple. Can be overriden
   677     # by architecture-specific values.
   678     case "${CT_LIBC}" in
   679         glibc)  CT_TARGET_SYS=gnu;;
   680         uClibc) CT_TARGET_SYS=uclibc;;
   681     esac
   682 
   683     # Transform the ARCH into a kernel-understandable ARCH
   684     CT_KERNEL_ARCH="${CT_ARCH}"
   685 
   686     # Set the default values for ARCH, ABI, CPU, TUNE, FPU and FLOAT
   687     unset CT_ARCH_ARCH_CFLAG CT_ARCH_ABI_CFLAG CT_ARCH_CPU_CFLAG CT_ARCH_TUNE_CFLAG CT_ARCH_FPU_CFLAG CT_ARCH_FLOAT_CFLAG
   688     unset CT_ARCH_WITH_ARCH CT_ARCH_WITH_ABI CT_ARCH_WITH_CPU CT_ARCH_WITH_TUNE CT_ARCH_WITH_FPU CT_ARCH_WITH_FLOAT
   689     [ "${CT_ARCH_ARCH}"     ] && { CT_ARCH_ARCH_CFLAG="-march=${CT_ARCH_ARCH}";  CT_ARCH_WITH_ARCH="--with-arch=${CT_ARCH_ARCH}"; }
   690     [ "${CT_ARCH_ABI}"      ] && { CT_ARCH_ABI_CFLAG="-mabi=${CT_ARCH_ABI}";     CT_ARCH_WITH_ABI="--with-abi=${CT_ARCH_ABI}";    }
   691     [ "${CT_ARCH_CPU}"      ] && { CT_ARCH_CPU_CFLAG="-mcpu=${CT_ARCH_CPU}";     CT_ARCH_WITH_CPU="--with-cpu=${CT_ARCH_CPU}";    }
   692     [ "${CT_ARCH_TUNE}"     ] && { CT_ARCH_TUNE_CFLAG="-mtune=${CT_ARCH_TUNE}";  CT_ARCH_WITH_TUNE="--with-tune=${CT_ARCH_TUNE}"; }
   693     [ "${CT_ARCH_FPU}"      ] && { CT_ARCH_FPU_CFLAG="-mfpu=${CT_ARCH_FPU}";     CT_ARCH_WITH_FPU="--with-fpu=${CT_ARCH_FPU}";    }
   694     [ "${CT_ARCH_FLOAT_SW}" ] && { CT_ARCH_FLOAT_CFLAG="-msoft-float";           CT_ARCH_WITH_FLOAT="--with-float=soft";          }
   695 
   696     # Call the architecture specific settings
   697     CT_DoArchValues
   698 
   699     # Finish the target tuple construction
   700     case "${CT_KERNEL}" in
   701         linux*)  CT_TARGET_KERNEL=linux;;
   702     esac
   703     CT_TARGET=$(CT_DoConfigSub "${CT_TARGET_ARCH}-${CT_TARGET_VENDOR:-unknown}-${CT_TARGET_KERNEL}-${CT_TARGET_SYS}")
   704 
   705     # Prepare the target CFLAGS
   706     CT_ARCH_TARGET_CFLAGS="${CT_ARCH_ENDIAN_CFLAG}"
   707     CT_ARCH_TARGET_CFLAGS="${CT_ARCH_TARGET_CFLAGS} ${CT_ARCH_ARCH_CFLAG}"
   708     CT_ARCH_TARGET_CFLAGS="${CT_ARCH_TARGET_CFLAGS} ${CT_ARCH_ABI_CFLAG}"
   709     CT_ARCH_TARGET_CFLAGS="${CT_ARCH_TARGET_CFLAGS} ${CT_ARCH_CPU_CFLAG}"
   710     CT_ARCH_TARGET_CFLAGS="${CT_ARCH_TARGET_CFLAGS} ${CT_ARCH_TUNE_CFLAG}"
   711     CT_ARCH_TARGET_CFLAGS="${CT_ARCH_TARGET_CFLAGS} ${CT_ARCH_FPU_CFLAG}"
   712     CT_ARCH_TARGET_CFLAGS="${CT_ARCH_TARGET_CFLAGS} ${CT_ARCH_FLOAT_CFLAG}"
   713 
   714     # Now on for the target LDFLAGS
   715     CT_ARCH_TARGET_LDFLAGS="${CT_ARCH_ENDIAN_LDFLAG}"
   716 }
   717 
   718 # This function does pause the build until the user strikes "Return"
   719 # Usage: CT_DoPause [optional_message]
   720 CT_DoPause() {
   721     local foo
   722     local message="${1:-Pausing for your pleasure}"
   723     CT_DoLog INFO "${message}"
   724     read -p "Press 'Enter' to continue, or Ctrl-C to stop..." foo >&6
   725     return 0
   726 }
   727 
   728 # This function saves the state of the toolchain to be able to restart
   729 # at any one point
   730 # Usage: CT_DoSaveState <next_step_name>
   731 CT_DoSaveState() {
   732 	[ "${CT_DEBUG_CT_SAVE_STEPS}" = "y" ] || return 0
   733     local state_name="$1"
   734     local state_dir="${CT_STATE_DIR}/${state_name}"
   735 
   736     CT_DoLog DEBUG "Saving state to restart at step '${state_name}'..."
   737     rm -rf "${state_dir}"
   738     mkdir -p "${state_dir}"
   739 
   740     case "${CT_DEBUG_CT_SAVE_STEPS_GZIP}" in
   741         y)  tar_opt=z; tar_ext=.gz;;
   742         *)  tar_opt=;  tar_ext=;;
   743     esac
   744 
   745     CT_DoLog DEBUG "  Saving environment and aliases"
   746     # We must omit shell functions, and some specific bash variables
   747     # that break when restoring the environment, later. We could do
   748     # all the processing in the awk script, but a sed is easier...
   749     set |awk '
   750              BEGIN { _p = 1; }
   751              $0~/^[^ ]+ \(\)/ { _p = 0; }
   752              _p == 1
   753              $0 == "}" { _p = 1; }
   754              ' |sed -r -e '/^BASH_(ARGC|ARGV|LINENO|SOURCE|VERSINFO)=/d;
   755                            /^(UID|EUID)=/d;
   756                            /^(FUNCNAME|GROUPS|PPID|SHELLOPTS)=/d;' >"${state_dir}/env.sh"
   757 
   758     CT_DoLog DEBUG "  Saving CT_CC_CORE_STATIC_PREFIX_DIR='${CT_CC_CORE_STATIC_PREFIX_DIR}'"
   759     CT_Pushd "${CT_CC_CORE_STATIC_PREFIX_DIR}"
   760     tar cv${tar_opt}f "${state_dir}/cc_core_static_prefix_dir.tar${tar_ext}" . |CT_DoLog DEBUG
   761     CT_Popd
   762 
   763     CT_DoLog DEBUG "  Saving CT_CC_CORE_SHARED_PREFIX_DIR='${CT_CC_CORE_SHARED_PREFIX_DIR}'"
   764     CT_Pushd "${CT_CC_CORE_SHARED_PREFIX_DIR}"
   765     tar cv${tar_opt}f "${state_dir}/cc_core_shared_prefix_dir.tar${tar_ext}" . |CT_DoLog DEBUG
   766     CT_Popd
   767 
   768     CT_DoLog DEBUG "  Saving CT_PREFIX_DIR='${CT_PREFIX_DIR}'"
   769     CT_Pushd "${CT_PREFIX_DIR}"
   770     tar cv${tar_opt}f "${state_dir}/prefix_dir.tar${tar_ext}" --exclude '*.log' . |CT_DoLog DEBUG
   771     CT_Popd
   772 
   773     if [ "${CT_LOG_TO_FILE}" = "y" ]; then
   774         CT_DoLog DEBUG "  Saving log file"
   775         exec >/dev/null
   776         case "${CT_DEBUG_CT_SAVE_STEPS_GZIP}" in
   777             y)  gzip -3 -c "${CT_LOG_FILE}"  >"${state_dir}/log.gz";;
   778             *)  cat "${CT_LOG_FILE}" >"${state_dir}/log";;
   779         esac
   780         exec >>"${CT_LOG_FILE}"
   781     fi
   782 }
   783 
   784 # This function restores a previously saved state
   785 # Usage: CT_DoLoadState <state_name>
   786 CT_DoLoadState(){
   787     local state_name="$1"
   788     local state_dir="${CT_STATE_DIR}/${state_name}"
   789     local old_RESTART="${CT_RESTART}"
   790     local old_STOP="${CT_STOP}"
   791 
   792     CT_TestOrAbort "The previous build did not reach the point where it could be restarted at '${CT_RESTART}'" -d "${state_dir}"
   793 
   794     # We need to do something special with the log file!
   795     if [ "${CT_LOG_TO_FILE}" = "y" ]; then
   796         exec >"${state_dir}/tail.log"
   797     fi
   798     CT_DoLog INFO "Restoring state at step '${state_name}', as requested."
   799 
   800     case "${CT_DEBUG_CT_SAVE_STEPS_GZIP}" in
   801         y)  tar_opt=z; tar_ext=.gz;;
   802         *)  tar_opt=;  tar_ext=;;
   803     esac
   804 
   805     CT_DoLog DEBUG "  Removing previous build directories"
   806     chmod -R u+rwX "${CT_PREFIX_DIR}" "${CT_CC_CORE_SHARED_PREFIX_DIR}" "${CT_CC_CORE_STATIC_PREFIX_DIR}"
   807     rm -rf         "${CT_PREFIX_DIR}" "${CT_CC_CORE_SHARED_PREFIX_DIR}" "${CT_CC_CORE_STATIC_PREFIX_DIR}"
   808     mkdir -p       "${CT_PREFIX_DIR}" "${CT_CC_CORE_SHARED_PREFIX_DIR}" "${CT_CC_CORE_STATIC_PREFIX_DIR}"
   809 
   810     CT_DoLog DEBUG "  Restoring CT_PREFIX_DIR='${CT_PREFIX_DIR}'"
   811     CT_Pushd "${CT_PREFIX_DIR}"
   812     tar xv${tar_opt}f "${state_dir}/prefix_dir.tar${tar_ext}" |CT_DoLog DEBUG
   813     CT_Popd
   814 
   815     CT_DoLog DEBUG "  Restoring CT_CC_CORE_SHARED_PREFIX_DIR='${CT_CC_CORE_SHARED_PREFIX_DIR}'"
   816     CT_Pushd "${CT_CC_CORE_SHARED_PREFIX_DIR}"
   817     tar xv${tar_opt}f "${state_dir}/cc_core_shared_prefix_dir.tar${tar_ext}" |CT_DoLog DEBUG
   818     CT_Popd
   819 
   820     CT_DoLog DEBUG "  Restoring CT_CC_CORE_STATIC_PREFIX_DIR='${CT_CC_CORE_STATIC_PREFIX_DIR}'"
   821     CT_Pushd "${CT_CC_CORE_STATIC_PREFIX_DIR}"
   822     tar xv${tar_opt}f "${state_dir}/cc_core_static_prefix_dir.tar${tar_ext}" |CT_DoLog DEBUG
   823     CT_Popd
   824 
   825     # Restore the environment, discarding any error message
   826     # (for example, read-only bash internals)
   827     CT_DoLog DEBUG "  Restoring environment"
   828     . "${state_dir}/env.sh" >/dev/null 2>&1 || true
   829 
   830     # Restore the new RESTART and STOP steps
   831     CT_RESTART="${old_RESTART}"
   832     CT_STOP="${old_STOP}"
   833     unset old_stop old_restart
   834 
   835     if [ "${CT_LOG_TO_FILE}" = "y" ]; then
   836         CT_DoLog DEBUG "  Restoring log file"
   837         exec >/dev/null
   838         case "${CT_DEBUG_CT_SAVE_STEPS_GZIP}" in
   839             y)  zcat "${state_dir}/log.gz" >"${CT_LOG_FILE}";;
   840             *)  cat "${state_dir}/log" >"${CT_LOG_FILE}";;
   841         esac
   842         cat "${state_dir}/tail.log" >>"${CT_LOG_FILE}"
   843         exec >>"${CT_LOG_FILE}"
   844         rm -f "${state_dir}/tail.log"
   845     fi
   846 }