1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
|
#!/bin/bash
#
# JBoss, Home of Professional Open Source
# Copyright 2009-11, Red Hat and individual contributors
# by the @authors tag. See the copyright.txt in the distribution for a
# full listing of individual contributors.
#
# This is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as
# published by the Free Software Foundation; either version 2.1 of
# the License, or (at your option) any later version.
#
# This software is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
# You should have received a copy of the GNU Lesser General Public
# License along with this software; if not, write to the Free
# Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
# 02110-1301 USA, or see the FSF site: http://www.fsf.org.
#
# @authors Andrew Dinn
#
# shell script which starts a java program with the byteman
# agent installed
#
# usage: bmjava [-p port] [-h host] \
# [-l rulescript | -b bootjar | -s sysjar | -nl | -nb ]* [--] javaargs
# -p use the number which follows as the port when opening the listener
# socket
#
# -h use the string which follows as the host name when opening
# the listener socket
#
# -l pass the file whose name follows this flag to the agent as
# a rule script
#
# -b pass the file whose name follows this flag to the agent as
# a jar to be added to the bootstrap classpath
#
# -s pass the file whose name follows this flag to the agent as
# a jar to be added to the system classpath
#
# -nl do not enable the agent listener (it is enabled by default)
#
# -nb do not add the byteman jar to the bootstrap classpath (it is
# added by default)
#
#
# -- optional separator to distinguish trailing arguments
#
# javaargs trailing arguments to be supplied to the java command
#
# The script employs the java command found in the current execution
# PATH. If BYTEMAN_JAVA_ARGS is set then this is inserted to the
# java command line before the -javaagent argument and before any
# arguments in javaargs.
#
usage()
{
cat <<EOF
usage: bmjava [-p port] [-h host] [-l rulescript | -b bootjar | -s sysjar | -nl | -nb | -nj ]* [--] javaargs
terms enclosed between [ ] are optional
terms separated by | are alternatives
a * means zero or more occurences
-p use the number which follows as the port when opening the
listener socket (default is 9091)
-h use the string which follows as the host name when opening
the listener socket (default is localhost)
-l pass the file whose name follows this flag to the agent as
a rule script to be loaded during startup
-b pass the file whose name follows this flag to the agent as
a jar to be added to the bootstrap classpath
-s pass the file whose name follows this flag to the agent as
a jar to be added to the system classpath
-nl do not enable the agent listener (it is enabled by default)
-nb do not add the byteman jar to the bootstrap classpath (it is
added by default)
-nj do not inject into java.lang classes (it is enabled by default)
-- optional separator to distinguish trailing arguments
javaargs trailing arguments to be supplied to the java command
The script constructs a -javaagent argument to pass to the java
command found in the current execution PATH. If BYTEMAN_JAVA_ARGS
is set then this is inserted to the java command line before
the -javaagent argument and before any arguments in javaargs.
EOF
exit
}
# use BYTEMAN_HOME to locate installed byteman release
if [ -z "$BYTEMAN_HOME" ]; then
# use the root of the path to this file to locate the byteman jar
BYTEMAN_HOME="${0%*/bin/bmjava.sh}"
# allow for rename to plain bmjava
if [ "$BYTEMAN_HOME" == "$0" ]; then
BYTEMAN_HOME="${0%*/bin/bmjava}"
fi
if [ "$BYTEMAN_HOME" == "$0" ]; then
echo "Unable to find byteman home"
exit
fi
fi
# the byteman jar shouldbe in the lib directory
if [ -r "${BYTEMAN_HOME}/lib/byteman.jar" ]; then
BYTEMAN_JAR="${BYTEMAN_HOME}/lib/byteman.jar"
else
echo "Cannot locate byteman jar"
exit
fi
AGENT_PREFIX="-javaagent:${BYTEMAN_JAR}"
AGENT_OPTS=""
# default is to use listener and add byteman jar to bootstrap classpath
LISTENER=1
BYTEMAN_BOOT_JAR=1
INJECT_JAVA_LANG=1
PORT=
HOST=
# hmm. the asm code should be bundled in the byteman jar?
#CP=${CP}:${BYTEMAN_HOME}/ext/asm-all-3.0.jar
while [ $# -ge 1 -a "${1#-*}" != "$1" ]
do
if [ "$1" == "-l" -a $# -ge 2 ]; then
if [ -r "$2" ]; then
AGENT_OPTS="${AGENT_OPTS},script:$2"
shift;
shift;
else
echo "Cannot read script $2"
exit
fi
elif [ "$1" == "-b" -a $# -ge 2 ]; then
if [ -r "$2" ]; then
AGENT_OPTS="${AGENT_OPTS},boot:$2"
shift;
shift;
else
echo "Cannot read boot jar $2"
exit
fi
elif [ "$1" == "-s" -a $# -ge 2 ]; then
if [ -r "$2" ]; then
AGENT_OPTS="${AGENT_OPTS},sys:$2"
shift;
shift;
else
echo "Cannot read system jar $2"
exit
fi
elif [ "$1" == "-p" -a $# -ge 2 ]; then
PORT=$2
shift;
shift;
elif [ "$1" == "-h" -a $# -ge 2 ]; then
HOST=$2
shift;
shift;
elif [ "$1" == "-nl" ]; then
LISTENER=0
shift;
elif [ "$1" == "-nb" ]; then
BYTEMAN_BOOT_JAR=0
shift;
elif [ "$1" == "-nj" ]; then
INJECT_JAVA_LANG=0
shift;
elif [ "$1" == "--" ]; then
shift;
break;
else
# unrecognised option -- must be start of javaargs
break
fi
done
if [ $BYTEMAN_BOOT_JAR -eq 1 ]; then
AGENT_OPTS="${AGENT_OPTS},boot:${BYTEMAN_JAR}"
fi
if [ $LISTENER -eq 1 ]; then
if [ "$PORT" != "" ]; then
AGENT_OPTS=${AGENT_OPTS},port:${PORT}
fi
if [ "$HOST" != "" ]; then
AGENT_OPTS=${AGENT_OPTS},address:${HOST}
fi
AGENT_OPTS="listener:true$AGENT_OPTS"
else
if [ "$PORT" != "" ]; then
echo "incompatible opions -p and -nl"
exit 1
fi
if [ "$HOST" != "" ]; then
AGENT_OPTS=${AGENT_OPTS},host:${HOST}
echo "incompatible opions -h and -nl"
exit 1
fi
AGENT_OPTS="listener:false$AGENT_OPTS"
fi
if [ $INJECT_JAVA_LANG -eq 1 ]; then
INJECT_JAVA_LANG_OPTS="-Dorg.jboss.byteman.transform.all"
else
INJECT_JAVA_LANG_OPTS=""
fi
AGENT_ARGUMENT=${AGENT_PREFIX}=${AGENT_OPTS}
# allow for extra java opts via setting BYTEMAN_JAVA_OPTS
exec java ${BYTEMAN_JAVA_OPTS} "${AGENT_ARGUMENT}" ${INJECT_JAVA_LANG_OPTS} $*
|