scripts/functions
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon Jan 12 18:54:34 2009 +0000 (2009-01-12)
changeset 1134 becbbc7f5b72
parent 1131 b62d14d45fc4
child 1138 ae135a73e338
permissions -rw-r--r--
Don't print anything about LAN mirror if it is not used.
Don't re-compute a variable that has already been computed.

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