home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / gzexe < prev    next >
Text File  |  2003-07-24  |  5KB  |  179 lines

  1. #!/bin/sh
  2. # gzexe: compressor for Unix executables.
  3. # Use this only for binaries that you do not use frequently.
  4. #
  5. # The compressed version is a shell script which decompresses itself after
  6. # skipping $skip lines of shell commands.  We try invoking the compressed
  7. # executable with the original name (for programs looking at their name).
  8. # We also try to retain the original file permissions on the compressed file.
  9. # For safety reasons, gzexe will not create setuid or setgid shell scripts.
  10.  
  11. # WARNING: the first line of this file must be either : or #!/bin/sh
  12. # The : is required for some old versions of csh.
  13. # On Ultrix, /bin/sh is too buggy, change the first line to: #!/bin/sh5
  14.  
  15.  
  16. # Copyright (C) 1998, 2002 Free Software Foundation
  17. # Copyright (C) 1993 Jean-loup Gailly
  18.  
  19. # This program is free software; you can redistribute it and/or modify
  20. # it under the terms of the GNU General Public License as published by
  21. # the Free Software Foundation; either version 2, or (at your option)
  22. # any later version.
  23.  
  24. # This program is distributed in the hope that it will be useful,
  25. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  26. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  27. # GNU General Public License for more details.
  28.  
  29. # You should have received a copy of the GNU General Public License
  30. # along with this program; if not, write to the Free Software
  31. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  32. # 02111-1307, USA.
  33.  
  34.  
  35. PATH="/usr/bin:$PATH"
  36. x=`basename $0`
  37. if test $# = 0; then
  38.   echo compress executables. original file foo is renamed to foo~
  39.   echo usage: ${x} [-d] files...
  40.   echo   "   -d  decompress the executables"
  41.   exit 1
  42. fi
  43.  
  44. tmp=gz$$
  45. trap "rm -f $tmp; exit 1" 1 2 3 5 10 13 15
  46.  
  47. decomp=0
  48. res=0
  49. test "$x" = "ungzexe" && decomp=1
  50. if test "x$1" = "x-d"; then
  51.   decomp=1
  52.   shift
  53. fi
  54.  
  55. echo hi > zfoo1$$
  56. echo hi > zfoo2$$
  57. if test -z "`(${CPMOD-cpmod} zfoo1$$ zfoo2$$) 2>&1`"; then
  58.   cpmod=${CPMOD-cpmod}
  59. fi
  60. rm -f zfoo[12]$$
  61.  
  62. tail=""
  63. IFS="${IFS=     }"; saveifs="$IFS"; IFS="${IFS}:"
  64. for dir in $PATH; do
  65.   test -z "$dir" && dir=.
  66.   if test -f $dir/tail; then
  67.     tail="$dir/tail"
  68.     break
  69.   fi
  70. done
  71. IFS="$saveifs"
  72. if test -z "$tail"; then
  73.   echo cannot find tail
  74.   exit 1
  75. fi
  76. case `echo foo | $tail -n +1 2>/dev/null` in
  77. foo) tail="$tail -n";;
  78. esac
  79.  
  80. for i do
  81.   if test ! -f "$i" ; then
  82.     echo ${x}: $i not a file
  83.     res=1
  84.     continue
  85.   fi
  86.   if test $decomp -eq 0; then
  87.     if sed -e 1d -e 2q "$i" | grep "^skip=[0-9]*$" >/dev/null; then
  88.       echo "${x}: $i is already gzexe'd"
  89.       continue
  90.     fi
  91.   fi
  92.   if ls -l "$i" | grep '^...[sS]' > /dev/null; then
  93.     echo "${x}: $i has setuid permission, unchanged"
  94.     continue
  95.   fi
  96.   if ls -l "$i" | grep '^......[sS]' > /dev/null; then
  97.     echo "${x}: $i has setgid permission, unchanged"
  98.     continue
  99.   fi
  100.   case "`basename $i`" in
  101.   gzip | tail | sed | chmod | ln | sleep | rm)
  102.     echo "${x}: $i would depend on itself"; continue ;;
  103.   esac
  104.   if test -z "$cpmod"; then
  105.     cp -p "$i" $tmp 2>/dev/null || cp "$i" $tmp
  106.     if test -w $tmp 2>/dev/null; then
  107.       writable=1
  108.     else
  109.       writable=0
  110.       chmod u+w $tmp 2>/dev/null
  111.     fi
  112.   fi
  113.   if test $decomp -eq 0; then
  114.     sed 1q $0 > $tmp
  115.     sed "s|^if tail|if $tail|" >> $tmp <<'EOF'
  116. skip=22
  117. set -C
  118. umask=`umask`
  119. umask 77
  120. if tail +$skip "$0" | "/usr/bin"/gzip -cd > /tmp/gztmp$$; then
  121.   umask $umask
  122.   /bin/chmod 700 /tmp/gztmp$$
  123.   prog="`echo $0 | /bin/sed 's|^.*/||'`"
  124.   if /bin/ln /tmp/gztmp$$ "/tmp/$prog" 2>/dev/null; then
  125.     trap '/bin/rm -f /tmp/gztmp$$ "/tmp/$prog"; exit $res' 0
  126.     (/bin/sleep 5; /bin/rm -f /tmp/gztmp$$ "/tmp/$prog") 2>/dev/null &
  127.     /tmp/"$prog" ${1+"$@"}; res=$?
  128.   else
  129.     trap '/bin/rm -f /tmp/gztmp$$; exit $res' 0
  130.     (/bin/sleep 5; /bin/rm -f /tmp/gztmp$$) 2>/dev/null &
  131.     /tmp/gztmp$$ ${1+"$@"}; res=$?
  132.   fi
  133. else
  134.   echo Cannot decompress $0; exit 1
  135. fi; exit $res
  136. EOF
  137.     gzip -cv9 "$i" >> $tmp || {
  138.       /bin/rm -f $tmp
  139.       echo ${x}: compression not possible for $i, file unchanged.
  140.       res=1
  141.       continue
  142.     }
  143.  
  144.   else
  145.     # decompression
  146.     skip=22
  147.     if sed -e 1d -e 2q "$i" | grep "^skip=[0-9][0-9]*$" >/dev/null; then
  148.       eval `sed -e 1d -e 2q "$i"`
  149.     fi
  150.     if tail +$skip "$i" | gzip -cd > $tmp; then
  151.       :
  152.     else
  153.       echo ${x}: $i probably not in gzexe format, file unchanged.
  154.       res=1
  155.       continue
  156.     fi
  157.   fi
  158.   rm -f "$i~"
  159.   mv "$i" "$i~" || {
  160.     echo ${x}: cannot backup $i as $i~
  161.     rm -f $tmp
  162.     res=1
  163.     continue
  164.   }
  165.   mv $tmp "$i" || cp -p $tmp "$i" 2>/dev/null || cp $tmp "$i" || {
  166.     echo ${x}: cannot create $i
  167.     rm -f $tmp
  168.     res=1
  169.     continue
  170.   }
  171.   rm -f $tmp
  172.   if test -n "$cpmod"; then
  173.     $cpmod "$i~" "$i" 2>/dev/null
  174.   elif test $writable -eq 0; then
  175.     chmod u-w $i 2>/dev/null
  176.   fi
  177. done
  178. exit $res
  179.