jdk/test/sun/management/jmxremote/bootstrap/GeneratePropertyPassword.sh
author ohair
Tue, 28 Dec 2010 15:53:50 -0800
changeset 7668 d4a77089c587
parent 5506 202f599c92aa
child 11988 eeee0e3f1e91
permissions -rw-r--r--
6962318: Update copyright year Reviewed-by: xdono
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
#
7668
d4a77089c587 6962318: Update copyright year
ohair
parents: 5506
diff changeset
     2
# Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
# published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
# This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
# version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
# accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
# You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
# 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
#
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4659
diff changeset
    19
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4659
diff changeset
    20
# or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4659
diff changeset
    21
# questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
# Utility Shell Script for generating .properties files or .password files
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
# or .access files from a list of input .in files.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
# Source in this GeneratePropertyPassword.sh and call the function
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
# generatePropertyPasswordFiles. 
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
# Call restoreFilePermissions to restore file permissions after the test completes
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
OS=`uname -s`
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
UMASK=`umask`
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
case $OS in
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
SunOS | Linux)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
    PATHSEP=":"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
    FILESEP="/"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
    DFILESEP=$FILESEP
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
    TMP_FILE=${TESTCLASSES}${FILESEP}${TESTCLASS}.sed.tmpfile
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
cat <<EOF > ${TMP_FILE}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
s^@TEST-SRC@/^${TESTCLASSES}${DFILESEP}^g
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
EOF
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
    ;;
4659
3ef31fe2879b 6911131: Test does not work with CYGWIN: sun/management/jmxremote/bootstrap/RmiSslNoKeyStoreTest.sh
ohair
parents: 2
diff changeset
    48
Windows_95 | Windows_98 | Windows_NT | Windows_ME | CYGWIN*)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    PATHSEP=";"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
    FILESEP="\\"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    DFILESEP=$FILESEP$FILESEP
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
    TMP_FILE=${TESTCLASSES}${FILESEP}${TESTCLASS}.sed.tmpfile
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
cat <<EOF > ${TMP_FILE}0
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
s^@TEST-SRC@/^${TESTCLASSES}${DFILESEP}^g
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
EOF
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    # Need to put double backslash in the .properties files
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    cat ${TMP_FILE}0 | sed -e 's^\\\\^ZZZZ^g' | \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
        sed -e 's^\\^ZZZZ^g' | \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
        sed -e 's^ZZZZ^\\\\\\\\^g' > ${TMP_FILE}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    if [ "$OS" = "Windows_NT" ]; then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
	USER=`id -u -n`
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
	CACLS="$SystemRoot/system32/cacls.exe"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
	REVOKEALL="${TESTSRC}/../../windows/revokeall.exe"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
	if [ ! -f "$REVOKEALL" ] ; then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
	    echo "$REVOKEALL missing"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
	    exit 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
        fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    ;;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
*)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    echo "Unrecognized system!"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    exit 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    ;;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
esac
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
generatePropertyPasswordFiles() 
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
   for f in $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
   do
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        echo processing $f
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
	suffix=`basename $f .in`
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
   	f2="${TESTCLASSES}${FILESEP}${suffix}"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
	if [ -f "$f2" ] ; then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
	    rm -f $f2 || echo WARNING: $f2 already exits - unable to remove old copy
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
	fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
	echo creating $f2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        sed -f $TMP_FILE $f > $f2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
 	if [ "$OS" = "Windows_NT" ]; then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
	    chown $USER $f2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
	    # Grant this user full access
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
	    echo Y|$CACLS $f2 \/E \/G $USER:F
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
  	    # Revoke everyone else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
	    $REVOKEALL $f2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
	    # Display ACLs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
	    $CACLS $f2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
	    chmod 600 $f2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
   done
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
restoreFilePermissions() 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    for f in $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    do
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
      	suffix=`basename $f .in`
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
	f2="${TESTCLASSES}${FILESEP}${suffix}"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
	if [ "$OS" = "Windows_NT" ]; then
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
	    # Grant everyone full control
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
	    $CACLS $f2 \/E \/G Everyone:F
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
	else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
	    chmod 777 $f2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
        fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    done
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125