HDFS-2210. Remove hdfsproxy. Contributed by Eli Collins
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1151592 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5dbd26f2c7
commit
c4f7d2f015
|
@ -9,6 +9,8 @@ Trunk (unreleased changes)
|
|||
|
||||
HDFS-1536. Improve HDFS WebUI. (hairong)
|
||||
|
||||
HDFS-2210. Remove hdfsproxy. (eli)
|
||||
|
||||
NEW FEATURES
|
||||
|
||||
HDFS-1359. Add BlockPoolID to Block. (suresh)
|
||||
|
|
|
@ -1397,7 +1397,6 @@
|
|||
<exclude name="src/c++/libhdfs/install-sh" />
|
||||
<exclude name="src/c++/libhdfs/ltmain.sh" />
|
||||
<exclude name="src/c++/libhdfs/missing" />
|
||||
<exclude name="src/contrib/hdfsproxy/src/test/resources/" />
|
||||
<exclude name="src/test/checkstyle-noframes-sorted.xsl" />
|
||||
<exclude name="src/test/checkstyle.xml" />
|
||||
<exclude name="src/test/findbugsExcludeFile.xml" />
|
||||
|
|
|
@ -48,12 +48,6 @@
|
|||
<subant target="test">
|
||||
<fileset dir="." includes="fuse-dfs/build.xml"/>
|
||||
</subant>
|
||||
|
||||
<!-- hdfsproxy tests failing due to HDFS-1666
|
||||
<subant target="test">
|
||||
<fileset dir="." includes="hdfsproxy/build.xml"/>
|
||||
</subant>
|
||||
-->
|
||||
</target>
|
||||
|
||||
|
||||
|
|
|
@ -1,47 +0,0 @@
|
|||
#
|
||||
# Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
# contributor license agreements. See the NOTICE file distributed with
|
||||
# this work for additional information regarding copyright ownership.
|
||||
# The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
# (the "License"); you may not use this file except in compliance with
|
||||
# the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
|
||||
HDFS Proxy is a proxy server through which a hadoop client (through HSFTP) or a standard
|
||||
HTTPS client (wget, curl, etc) can talk to a hadoop server and more importantly pull data
|
||||
from the sever. It put an access control layer in front of hadoop namenode server and extends
|
||||
its functionalities to allow hadoop cross-version data transfer.
|
||||
|
||||
HDFSPROXY can be configured/started via either Jetty or Tomcat with different supporting features.
|
||||
|
||||
A) With Jetty-based Installation, supporting features include:
|
||||
> Single Hadoop source cluster data transfer
|
||||
> Single Hadoop version data transfer
|
||||
> Authenticate users via user SSL certificates with ProxyFilter installed
|
||||
> Enforce access control based on configuration files.
|
||||
|
||||
B) With Tomcat-based Installation, supporting features include:
|
||||
> Multiple Hadoop source cluster data transfer
|
||||
> Multiple Hadoop version data transfer
|
||||
> Authenticate users via user SSL certificates with ProxyFilter installed
|
||||
> Authentication and authorization via LDAP with LdapIpDirFilter installed
|
||||
> Access control based on configuration files if ProxyFilter is installed.
|
||||
> Access control based on LDAP entries if LdapIpDirFilter is installed.
|
||||
> Standard HTTPS Get Support for file transfer
|
||||
|
||||
The detailed configuration/set-up guide is in the Forrest
|
||||
documentation, which can be found at $HADOOP_PREFIX/docs. In order to build the
|
||||
documentation on your own from source please use the following command in
|
||||
the downloaded source folder:
|
||||
|
||||
ant docs -Dforrest.home=path to forrest -Djava5.home= path to jdk5.
|
||||
|
||||
The documentation so built would be under $HADOOP_PREFIX/build/docs
|
|
@ -1,170 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
# contributor license agreements. See the NOTICE file distributed with
|
||||
# this work for additional information regarding copyright ownership.
|
||||
# The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
# (the "License"); you may not use this file except in compliance with
|
||||
# the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
|
||||
# The HdfsProxy command script
|
||||
#
|
||||
# Environment Variables
|
||||
#
|
||||
# JAVA_HOME The java implementation to use. Overrides JAVA_HOME.
|
||||
#
|
||||
# HDFSPROXY_CLASSPATH Extra Java CLASSPATH entries.
|
||||
#
|
||||
# HDFSPROXY_HEAPSIZE The maximum amount of heap to use, in MB.
|
||||
# Default is 1000.
|
||||
#
|
||||
# HDFSPROXY_OPTS Extra Java runtime options.
|
||||
#
|
||||
# HDFSPROXY_NAMENODE_OPTS These options are added to HDFSPROXY_OPTS
|
||||
# HDFSPROXY_CLIENT_OPTS when the respective command is run.
|
||||
# HDFSPROXY_{COMMAND}_OPTS etc HDFSPROXY_JT_OPTS applies to JobTracker
|
||||
# for e.g. HDFSPROXY_CLIENT_OPTS applies to
|
||||
# more than one command (fs, dfs, fsck,
|
||||
# dfsadmin etc)
|
||||
#
|
||||
# HDFSPROXY_CONF_DIR Alternate conf dir. Default is ${HDFSPROXY_HOME}/conf.
|
||||
#
|
||||
# HDFSPROXY_ROOT_LOGGER The root appender. Default is INFO,console
|
||||
#
|
||||
|
||||
bin=`dirname "$0"`
|
||||
bin=`cd "$bin"; pwd`
|
||||
|
||||
. "$bin"/hdfsproxy-config.sh
|
||||
|
||||
cygwin=false
|
||||
case "`uname`" in
|
||||
CYGWIN*) cygwin=true;;
|
||||
esac
|
||||
|
||||
if [ -f "${HDFSPROXY_CONF_DIR}/hdfsproxy-env.sh" ]; then
|
||||
. "${HDFSPROXY_CONF_DIR}/hdfsproxy-env.sh"
|
||||
fi
|
||||
|
||||
# some Java parameters
|
||||
if [ "$JAVA_HOME" != "" ]; then
|
||||
#echo "run java in $JAVA_HOME"
|
||||
JAVA_HOME=$JAVA_HOME
|
||||
fi
|
||||
|
||||
if [ "$JAVA_HOME" = "" ]; then
|
||||
echo "Error: JAVA_HOME is not set."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
JAVA=$JAVA_HOME/bin/java
|
||||
JAVA_HEAP_MAX=-Xmx1000m
|
||||
|
||||
# check envvars which might override default args
|
||||
if [ "$HDFSPROXY_HEAPSIZE" != "" ]; then
|
||||
#echo "run with heapsize $HDFSPROXY_HEAPSIZE"
|
||||
JAVA_HEAP_MAX="-Xmx""$HDFSPROXY_HEAPSIZE""m"
|
||||
#echo $JAVA_HEAP_MAX
|
||||
fi
|
||||
|
||||
# CLASSPATH initially contains $HDFSPROXY_CONF_DIR
|
||||
CLASSPATH="${HDFSPROXY_CONF_DIR}"
|
||||
CLASSPATH=${CLASSPATH}:$JAVA_HOME/lib/tools.jar
|
||||
|
||||
# for developers, add HdfsProxy classes to CLASSPATH
|
||||
if [ -d "$HDFSPROXY_HOME/build/classes" ]; then
|
||||
CLASSPATH=${CLASSPATH}:$HDFSPROXY_HOME/build/classes
|
||||
fi
|
||||
if [ -d "$HDFSPROXY_HOME/build/web/webapps" ]; then
|
||||
CLASSPATH=${CLASSPATH}:$HDFSPROXY_HOME/build/web
|
||||
fi
|
||||
if [ -d "$HDFSPROXY_HOME/build/test/hdfs/classes" ]; then
|
||||
CLASSPATH=${CLASSPATH}:$HDFSPROXY_HOME/build/test/hdfs/classes
|
||||
fi
|
||||
|
||||
# so that filenames w/ spaces are handled correctly in loops below
|
||||
IFS=
|
||||
|
||||
# for releases, add hdfsproxy jar & webapps to CLASSPATH
|
||||
if [ -d "$HDFSPROXY_HOME/webapps" ]; then
|
||||
CLASSPATH=${CLASSPATH}:$HDFSPROXY_HOME
|
||||
fi
|
||||
for f in $HDFSPROXY_HOME/hdfsproxy-*.jar; do
|
||||
CLASSPATH=${CLASSPATH}:$f;
|
||||
done
|
||||
|
||||
# add libs to CLASSPATH
|
||||
if [ -d "$HDFSPROXY_HOME/lib" ]; then
|
||||
for f in $HDFSPROXY_HOME/lib/*.jar; do
|
||||
CLASSPATH=${CLASSPATH}:$f;
|
||||
done
|
||||
fi
|
||||
|
||||
if [ -d "$HDFSPROXY_HOME/../../" ]; then
|
||||
for f in $HDFSPROXY_HOME/../../*.jar; do
|
||||
CLASSPATH=${CLASSPATH}:$f;
|
||||
done
|
||||
fi
|
||||
if [ -d "$HDFSPROXY_HOME/../../lib" ]; then
|
||||
for f in $HDFSPROXY_HOME/../../lib/*.jar; do
|
||||
CLASSPATH=${CLASSPATH}:$f;
|
||||
done
|
||||
fi
|
||||
if [ -d "$HDFSPROXY_HOME/../../lib/jsp-2.1" ]; then
|
||||
for f in $HDFSPROXY_HOME/../../lib/jsp-2.1/*.jar; do
|
||||
CLASSPATH=${CLASSPATH}:$f;
|
||||
done
|
||||
fi
|
||||
|
||||
|
||||
# add user-specified CLASSPATH last
|
||||
if [ "$HDFSPROXY_CLASSPATH" != "" ]; then
|
||||
CLASSPATH=${CLASSPATH}:${HDFSPROXY_CLASSPATH}
|
||||
fi
|
||||
|
||||
# default log directory & file
|
||||
if [ "$HDFSPROXY_LOG_DIR" = "" ]; then
|
||||
HDFSPROXY_LOG_DIR="$HDFSPROXY_HOME/logs"
|
||||
fi
|
||||
if [ "$HDFSPROXY_LOGFILE" = "" ]; then
|
||||
HDFSPROXY_LOGFILE='hdfsproxy.log'
|
||||
fi
|
||||
|
||||
# restore ordinary behaviour
|
||||
unset IFS
|
||||
|
||||
# figure out which class to run
|
||||
CLASS='org.apache.hadoop.hdfsproxy.HdfsProxy'
|
||||
|
||||
# cygwin path translation
|
||||
if $cygwin; then
|
||||
CLASSPATH=`cygpath -p -w "$CLASSPATH"`
|
||||
HDFSPROXY_HOME=`cygpath -d "$HDFSPROXY_HOME"`
|
||||
HDFSPROXY_LOG_DIR=`cygpath -d "$HDFSPROXY_LOG_DIR"`
|
||||
fi
|
||||
|
||||
# cygwin path translation
|
||||
if $cygwin; then
|
||||
JAVA_LIBRARY_PATH=`cygpath -p "$JAVA_LIBRARY_PATH"`
|
||||
fi
|
||||
|
||||
HDFSPROXY_OPTS="$HDFSPROXY_OPTS -Dhdfsproxy.log.dir=$HDFSPROXY_LOG_DIR"
|
||||
HDFSPROXY_OPTS="$HDFSPROXY_OPTS -Dhdfsproxy.log.file=$HDFSPROXY_LOGFILE"
|
||||
HDFSPROXY_OPTS="$HDFSPROXY_OPTS -Dhdfsproxy.home.dir=$HDFSPROXY_HOME"
|
||||
HDFSPROXY_OPTS="$HDFSPROXY_OPTS -Dhdfsproxy.id.str=$HDFSPROXY_IDENT_STRING"
|
||||
HDFSPROXY_OPTS="$HDFSPROXY_OPTS -Dhdfsproxy.root.logger=${HDFSPROXY_ROOT_LOGGER:-INFO,console}"
|
||||
if [ "x$JAVA_LIBRARY_PATH" != "x" ]; then
|
||||
HDFSPROXY_OPTS="$HDFSPROXY_OPTS -Djava.library.path=$JAVA_LIBRARY_PATH"
|
||||
fi
|
||||
|
||||
# run it
|
||||
exec "$JAVA" $JAVA_HEAP_MAX $HDFSPROXY_OPTS -classpath "$CLASSPATH" $CLASS "$@"
|
|
@ -1,67 +0,0 @@
|
|||
# Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
# contributor license agreements. See the NOTICE file distributed with
|
||||
# this work for additional information regarding copyright ownership.
|
||||
# The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
# (the "License"); you may not use this file except in compliance with
|
||||
# the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
# included in all the hadoop scripts with source command
|
||||
# should not be executable directly
|
||||
# also should not be passed any arguments, since we need original $*
|
||||
|
||||
# resolve links - $0 may be a softlink
|
||||
|
||||
this="$0"
|
||||
while [ -h "$this" ]; do
|
||||
ls=`ls -ld "$this"`
|
||||
link=`expr "$ls" : '.*-> \(.*\)$'`
|
||||
if expr "$link" : '.*/.*' > /dev/null; then
|
||||
this="$link"
|
||||
else
|
||||
this=`dirname "$this"`/"$link"
|
||||
fi
|
||||
done
|
||||
|
||||
# convert relative path to absolute path
|
||||
bin=`dirname "$this"`
|
||||
script=`basename "$this"`
|
||||
bin=`cd "$bin"; pwd`
|
||||
this="$bin/$script"
|
||||
|
||||
# the root of the HdfsProxy installation
|
||||
export HDFSPROXY_HOME=`dirname "$this"`/..
|
||||
|
||||
#check to see if the conf dir is given as an optional argument
|
||||
if [ $# -gt 1 ]
|
||||
then
|
||||
if [ "--config" = "$1" ]
|
||||
then
|
||||
shift
|
||||
confdir=$1
|
||||
shift
|
||||
HDFSPROXY_CONF_DIR=$confdir
|
||||
fi
|
||||
fi
|
||||
|
||||
# Allow alternate conf dir location.
|
||||
HDFSPROXY_CONF_DIR="${HDFSPROXY_CONF_DIR:-$HDFSPROXY_HOME/conf}"
|
||||
|
||||
#check to see it is specified whether to use the slaves file
|
||||
if [ $# -gt 1 ]
|
||||
then
|
||||
if [ "--hosts" = "$1" ]
|
||||
then
|
||||
shift
|
||||
slavesfile=$1
|
||||
shift
|
||||
export HDFSPROXY_SLAVES="${HDFSPROXY_CONF_DIR}/$slavesfile"
|
||||
fi
|
||||
fi
|
|
@ -1,141 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
# contributor license agreements. See the NOTICE file distributed with
|
||||
# this work for additional information regarding copyright ownership.
|
||||
# The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
# (the "License"); you may not use this file except in compliance with
|
||||
# the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
|
||||
# Runs a HdfsProxy as a daemon.
|
||||
#
|
||||
# Environment Variables
|
||||
#
|
||||
# HDFSPROXY_CONF_DIR Alternate conf dir. Default is ${HDFSPROXY_HOME}/conf.
|
||||
# HDFSPROXY_LOG_DIR Where log files are stored. PWD by default.
|
||||
# HDFSPROXY_MASTER host:path where hdfsproxy code should be rsync'd from
|
||||
# HDFSPROXY_PID_DIR The pid files are stored. /tmp by default.
|
||||
# HDFSPROXY_IDENT_STRING A string representing this instance of hdfsproxy. $USER by default
|
||||
# HDFSPROXY_NICENESS The scheduling priority for daemons. Defaults to 0.
|
||||
##
|
||||
|
||||
usage="Usage: hdfsproxy-daemon.sh [--config <conf-dir>] [--hosts hostlistfile] (start|stop) "
|
||||
|
||||
# if no args specified, show usage
|
||||
if [ $# -le 1 ]; then
|
||||
echo $usage
|
||||
exit 1
|
||||
fi
|
||||
|
||||
bin=`dirname "$0"`
|
||||
bin=`cd "$bin"; pwd`
|
||||
|
||||
. "$bin"/hdfsproxy-config.sh
|
||||
|
||||
# get arguments
|
||||
startStop=$1
|
||||
shift
|
||||
|
||||
hdfsproxy_rotate_log ()
|
||||
{
|
||||
log=$1;
|
||||
num=5;
|
||||
if [ -n "$2" ]; then
|
||||
num=$2
|
||||
fi
|
||||
if [ -f "$log" ]; then # rotate logs
|
||||
while [ $num -gt 1 ]; do
|
||||
prev=`expr $num - 1`
|
||||
[ -f "$log.$prev" ] && mv "$log.$prev" "$log.$num"
|
||||
num=$prev
|
||||
done
|
||||
mv "$log" "$log.$num";
|
||||
fi
|
||||
}
|
||||
|
||||
if [ -f "${HDFSPROXY_CONF_DIR}/hdfsproxy-env.sh" ]; then
|
||||
. "${HDFSPROXY_CONF_DIR}/hdfsproxy-env.sh"
|
||||
fi
|
||||
|
||||
# get log directory
|
||||
if [ "$HDFSPROXY_LOG_DIR" = "" ]; then
|
||||
export HDFSPROXY_LOG_DIR="$HDFSPROXY_HOME/logs"
|
||||
fi
|
||||
mkdir -p "$HDFSPROXY_LOG_DIR"
|
||||
|
||||
if [ "$HDFSPROXY_PID_DIR" = "" ]; then
|
||||
HDFSPROXY_PID_DIR=/tmp
|
||||
fi
|
||||
|
||||
if [ "$HDFSPROXY_IDENT_STRING" = "" ]; then
|
||||
export HDFSPROXY_IDENT_STRING="$USER"
|
||||
fi
|
||||
|
||||
# some variables
|
||||
export HDFSPROXY_LOGFILE=hdfsproxy-$HDFSPROXY_IDENT_STRING-$HOSTNAME.log
|
||||
export HDFSPROXY_ROOT_LOGGER="INFO,DRFA"
|
||||
log=$HDFSPROXY_LOG_DIR/hdfsproxy-$HDFSPROXY_IDENT_STRING-$HOSTNAME.out
|
||||
pid=$HDFSPROXY_PID_DIR/hdfsproxy-$HDFSPROXY_IDENT_STRING.pid
|
||||
|
||||
# Set default scheduling priority
|
||||
if [ "$HDFSPROXY_NICENESS" = "" ]; then
|
||||
export HDFSPROXY_NICENESS=0
|
||||
fi
|
||||
|
||||
case $startStop in
|
||||
|
||||
(start)
|
||||
|
||||
mkdir -p "$HDFSPROXY_PID_DIR"
|
||||
|
||||
if [ -f $pid ]; then
|
||||
if kill -0 `cat $pid` > /dev/null 2>&1; then
|
||||
echo hdfsproxy running as process `cat $pid`. Stop it first.
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ "$HDFSPROXY_MASTER" != "" ]; then
|
||||
echo rsync from $HDFSPROXY_MASTER
|
||||
rsync -a -e ssh --delete --exclude=.svn --exclude='logs/*' --exclude='contrib/hod/logs/*' $HDFSPROXY_MASTER/ "$HDFSPROXY_HOME"
|
||||
fi
|
||||
|
||||
hdfsproxy_rotate_log $log
|
||||
echo starting hdfsproxy, logging to $log
|
||||
cd "$HDFSPROXY_HOME"
|
||||
nohup nice -n $HDFSPROXY_NICENESS "$HDFSPROXY_HOME"/bin/hdfsproxy --config $HDFSPROXY_CONF_DIR "$@" > "$log" 2>&1 < /dev/null &
|
||||
echo $! > $pid
|
||||
sleep 1; head "$log"
|
||||
;;
|
||||
|
||||
(stop)
|
||||
|
||||
if [ -f $pid ]; then
|
||||
if kill -0 `cat $pid` > /dev/null 2>&1; then
|
||||
echo stopping hdfsproxy
|
||||
kill `cat $pid`
|
||||
else
|
||||
echo no hdfsproxy to stop
|
||||
fi
|
||||
else
|
||||
echo no hdfsproxy to stop
|
||||
fi
|
||||
;;
|
||||
|
||||
(*)
|
||||
echo $usage
|
||||
exit 1
|
||||
;;
|
||||
|
||||
esac
|
||||
|
||||
|
|
@ -1,34 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
# contributor license agreements. See the NOTICE file distributed with
|
||||
# this work for additional information regarding copyright ownership.
|
||||
# The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
# (the "License"); you may not use this file except in compliance with
|
||||
# the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
|
||||
# Run a HdfsProxy command on all slave hosts.
|
||||
|
||||
usage="Usage: hdfsproxy-daemons.sh [--config confdir] [--hosts hostlistfile] [start|stop] "
|
||||
|
||||
# if no args specified, show usage
|
||||
if [ $# -le 1 ]; then
|
||||
echo $usage
|
||||
exit 1
|
||||
fi
|
||||
|
||||
bin=`dirname "$0"`
|
||||
bin=`cd "$bin"; pwd`
|
||||
|
||||
. $bin/hdfsproxy-config.sh
|
||||
|
||||
exec "$bin/hdfsproxy-slaves.sh" --config $HDFSPROXY_CONF_DIR cd "$HDFSPROXY_HOME" \; "$bin/hdfsproxy-daemon.sh" --config $HDFSPROXY_CONF_DIR "$@"
|
|
@ -1,68 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
# contributor license agreements. See the NOTICE file distributed with
|
||||
# this work for additional information regarding copyright ownership.
|
||||
# The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
# (the "License"); you may not use this file except in compliance with
|
||||
# the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
|
||||
# Run a shell command on all slave hosts.
|
||||
#
|
||||
# Environment Variables
|
||||
#
|
||||
# HDFSPROXY_SLAVES File naming remote hosts.
|
||||
# Default is ${HDFSPROXY_CONF_DIR}/hdfsproxy-hosts.
|
||||
# HDFSPROXY_CONF_DIR Alternate conf dir. Default is ${HDFSPROXY_HOME}/conf.
|
||||
# HDFSPROXY_SLAVE_SLEEP Seconds to sleep between spawning remote commands.
|
||||
# HDFSPROXY_SSH_OPTS Options passed to ssh when running remote commands.
|
||||
##
|
||||
|
||||
usage="Usage: hdfsproxy-slaves.sh [--config confdir] command..."
|
||||
|
||||
# if no args specified, show usage
|
||||
if [ $# -le 0 ]; then
|
||||
echo $usage
|
||||
exit 1
|
||||
fi
|
||||
|
||||
bin=`dirname "$0"`
|
||||
bin=`cd "$bin"; pwd`
|
||||
|
||||
. "$bin"/hdfsproxy-config.sh
|
||||
|
||||
# If the slaves file is specified in the command line,
|
||||
# then it takes precedence over the definition in
|
||||
# hdfsproxy-env.sh. Save it here.
|
||||
HOSTLIST=$HDFSPROXY_SLAVES
|
||||
|
||||
if [ -f "${HDFSPROXY_CONF_DIR}/hdfsproxy-env.sh" ]; then
|
||||
. "${HDFSPROXY_CONF_DIR}/hdfsproxy-env.sh"
|
||||
fi
|
||||
|
||||
if [ "$HOSTLIST" = "" ]; then
|
||||
if [ "$HDFSPROXY_SLAVES" = "" ]; then
|
||||
export HOSTLIST="${HDFSPROXY_CONF_DIR}/hdfsproxy-hosts"
|
||||
else
|
||||
export HOSTLIST="${HDFSPROXY_SLAVES}"
|
||||
fi
|
||||
fi
|
||||
|
||||
for slave in `cat "$HOSTLIST"`; do
|
||||
ssh $HDFSPROXY_SSH_OPTS $slave $"${@// /\\ }" \
|
||||
2>&1 | sed "s/^/$slave: /" &
|
||||
if [ "$HDFSPROXY_SLAVE_SLEEP" != "" ]; then
|
||||
sleep $HDFSPROXY_SLAVE_SLEEP
|
||||
fi
|
||||
done
|
||||
|
||||
wait
|
|
@ -1,92 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
# contributor license agreements. See the NOTICE file distributed with
|
||||
# this work for additional information regarding copyright ownership.
|
||||
# The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
# (the "License"); you may not use this file except in compliance with
|
||||
# the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
|
||||
# Runs a HdfsProxy as a daemon.
|
||||
#
|
||||
# Environment Variables
|
||||
#
|
||||
# HDFSPROXY_CONF_DIR Alternate conf dir. Default is ${HDFSPROXY_HOME}/conf.
|
||||
# HDFSPROXY_MASTER host:path where hdfsproxy code should be rsync'd from
|
||||
# HDFSPROXY_PID_DIR The pid files are stored. /tmp by default.
|
||||
# HDFSPROXY_IDENT_STRING A string representing this instance of hdfsproxy. $USER by default
|
||||
# HDFSPROXY_NICENESS The scheduling priority for daemons. Defaults to 0.
|
||||
# TOMCAT_HOME_DIR tomcat home directory.
|
||||
##
|
||||
|
||||
usage="Usage: hdfsproxy-tomcat-server.sh [--config <conf-dir>] [--hosts hostlistfile] (start|stop) "
|
||||
|
||||
# if no args specified, show usage
|
||||
if [ $# -le 1 ]; then
|
||||
echo $usage
|
||||
exit 1
|
||||
fi
|
||||
|
||||
bin=`dirname "$0"`
|
||||
bin=`cd "$bin"; pwd`
|
||||
|
||||
. "$bin"/hdfsproxy-config.sh
|
||||
|
||||
# get arguments
|
||||
startStop=$1
|
||||
shift
|
||||
|
||||
|
||||
if [ -f "${HDFSPROXY_CONF_DIR}/hdfsproxy-env.sh" ]; then
|
||||
. "${HDFSPROXY_CONF_DIR}/hdfsproxy-env.sh"
|
||||
fi
|
||||
|
||||
|
||||
if [ "$HDFSPROXY_IDENT_STRING" = "" ]; then
|
||||
export HDFSPROXY_IDENT_STRING="$USER"
|
||||
fi
|
||||
|
||||
|
||||
# Set default scheduling priority
|
||||
if [ "$HDFSPROXY_NICENESS" = "" ]; then
|
||||
export HDFSPROXY_NICENESS=0
|
||||
fi
|
||||
|
||||
case $startStop in
|
||||
|
||||
(start)
|
||||
if [ "$HDFSPROXY_MASTER" != "" ]; then
|
||||
echo rsync from $HDFSPROXY_MASTER
|
||||
rsync -a -e ssh --delete --exclude=.svn --exclude='logs/*' --exclude='contrib/hod/logs/*' $HDFSPROXY_MASTER/ "$HDFSPROXY_HOME"
|
||||
fi
|
||||
|
||||
echo starting hdfsproxy tomcat server
|
||||
cd "$HDFSPROXY_HOME"
|
||||
nohup nice -n $HDFSPROXY_NICENESS "$TOMCAT_HOME_DIR"/bin/startup.sh >& /dev/null &
|
||||
sleep 1
|
||||
;;
|
||||
|
||||
(stop)
|
||||
|
||||
echo stopping hdfsproxy tomcat server
|
||||
cd "$HDFSPROXY_HOME"
|
||||
nohup nice -n $HDFSPROXY_NICENESS "$TOMCAT_HOME_DIR"/bin/shutdown.sh >& /dev/null &
|
||||
;;
|
||||
|
||||
(*)
|
||||
echo $usage
|
||||
exit 1
|
||||
;;
|
||||
|
||||
esac
|
||||
|
||||
|
|
@ -1,34 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
# contributor license agreements. See the NOTICE file distributed with
|
||||
# this work for additional information regarding copyright ownership.
|
||||
# The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
# (the "License"); you may not use this file except in compliance with
|
||||
# the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
|
||||
# Run a HdfsProxy command on all slave hosts.
|
||||
|
||||
usage="Usage: hdfsproxy-tomcat-servers.sh [--config confdir] [--hosts hostlistfile] [start|stop] "
|
||||
|
||||
# if no args specified, show usage
|
||||
if [ $# -le 1 ]; then
|
||||
echo $usage
|
||||
exit 1
|
||||
fi
|
||||
|
||||
bin=`dirname "$0"`
|
||||
bin=`cd "$bin"; pwd`
|
||||
|
||||
. $bin/hdfsproxy-config.sh
|
||||
|
||||
exec "$bin/hdfsproxy-tomcat-slaves.sh" --config $HDFSPROXY_CONF_DIR cd "$HDFSPROXY_HOME" \; "$bin/hdfsproxy-tomcat-server.sh" --config $HDFSPROXY_CONF_DIR "$@"
|
|
@ -1,68 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
# contributor license agreements. See the NOTICE file distributed with
|
||||
# this work for additional information regarding copyright ownership.
|
||||
# The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
# (the "License"); you may not use this file except in compliance with
|
||||
# the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
|
||||
# Run a shell command on all slave hosts.
|
||||
#
|
||||
# Environment Variables
|
||||
#
|
||||
# HDFSPROXY_SLAVES File naming remote hosts.
|
||||
# Default is ${HDFSPROXY_CONF_DIR}/hdfsproxy-hosts.
|
||||
# HDFSPROXY_CONF_DIR Alternate conf dir. Default is ${HDFSPROXY_HOME}/conf.
|
||||
# HDFSPROXY_SLAVE_SLEEP Seconds to sleep between spawning remote commands.
|
||||
# HDFSPROXY_SSH_OPTS Options passed to ssh when running remote commands.
|
||||
##
|
||||
|
||||
usage="Usage: hdfsproxy-tomcat-slaves.sh [--config confdir] command..."
|
||||
|
||||
# if no args specified, show usage
|
||||
if [ $# -le 0 ]; then
|
||||
echo $usage
|
||||
exit 1
|
||||
fi
|
||||
|
||||
bin=`dirname "$0"`
|
||||
bin=`cd "$bin"; pwd`
|
||||
|
||||
. "$bin"/hdfsproxy-config.sh
|
||||
|
||||
# If the slaves file is specified in the command line,
|
||||
# then it takes precedence over the definition in
|
||||
# hdfsproxy-env.sh. Save it here.
|
||||
HOSTLIST=$HDFSPROXY_SLAVES
|
||||
|
||||
if [ -f "${HDFSPROXY_CONF_DIR}/hdfsproxy-env.sh" ]; then
|
||||
. "${HDFSPROXY_CONF_DIR}/hdfsproxy-env.sh"
|
||||
fi
|
||||
|
||||
if [ "$HOSTLIST" = "" ]; then
|
||||
if [ "$HDFSPROXY_SLAVES" = "" ]; then
|
||||
export HOSTLIST="${HDFSPROXY_CONF_DIR}/hdfsproxy-hosts"
|
||||
else
|
||||
export HOSTLIST="${HDFSPROXY_SLAVES}"
|
||||
fi
|
||||
fi
|
||||
|
||||
for slave in `cat "$HOSTLIST"`; do
|
||||
ssh $HDFSPROXY_SSH_OPTS $slave $"${@// /\\ }" \
|
||||
2>&1 | sed "s/^/$slave: /" &
|
||||
if [ "$HDFSPROXY_SLAVE_SLEEP" != "" ]; then
|
||||
sleep $HDFSPROXY_SLAVE_SLEEP
|
||||
fi
|
||||
done
|
||||
|
||||
wait
|
|
@ -1,152 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
# contributor license agreements. See the NOTICE file distributed with
|
||||
# this work for additional information regarding copyright ownership.
|
||||
# The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
# (the "License"); you may not use this file except in compliance with
|
||||
# the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
|
||||
# The Proxy command utility script
|
||||
#
|
||||
# Environment Variables
|
||||
#
|
||||
# JAVA_HOME The java implementation to use. Overrides JAVA_HOME.
|
||||
#
|
||||
# HDFSPROXY_CLASSPATH Extra Java CLASSPATH entries.
|
||||
#
|
||||
# HDFSPROXY_HEAPSIZE The maximum amount of heap to use, in MB.
|
||||
# Default is 1000.
|
||||
#
|
||||
# HDFSPROXY_OPTS Extra Java runtime options.
|
||||
#
|
||||
# HDFSPROXY_NAMENODE_OPTS These options are added to HDFSPROXY_OPTS
|
||||
# HDFSPROXY_CLIENT_OPTS when the respective command is run.
|
||||
# HDFSPROXY_{COMMAND}_OPTS etc HDFSPROXY_JT_OPTS applies to JobTracker
|
||||
# for e.g. HDFSPROXY_CLIENT_OPTS applies to
|
||||
# more than one command (fs, dfs, fsck,
|
||||
# dfsadmin etc)
|
||||
#
|
||||
# HDFSPROXY_CONF_DIR Alternate conf dir. Default is ${HDFSPROXY_HOME}/conf.
|
||||
#
|
||||
# HDFSPROXY_ROOT_LOGGER The root appender. Default is INFO,console
|
||||
#
|
||||
|
||||
bin=`dirname "$0"`
|
||||
bin=`cd "$bin"; pwd`
|
||||
|
||||
. "$bin"/hdfsproxy-config.sh
|
||||
|
||||
cygwin=false
|
||||
case "`uname`" in
|
||||
CYGWIN*) cygwin=true;;
|
||||
esac
|
||||
|
||||
if [ -f "${HDFSPROXY_CONF_DIR}/hdfsproxy-env.sh" ]; then
|
||||
. "${HDFSPROXY_CONF_DIR}/hdfsproxy-env.sh"
|
||||
fi
|
||||
|
||||
# some Java parameters
|
||||
if [ "$JAVA_HOME" != "" ]; then
|
||||
#echo "run java in $JAVA_HOME"
|
||||
JAVA_HOME=$JAVA_HOME
|
||||
fi
|
||||
|
||||
if [ "$JAVA_HOME" = "" ]; then
|
||||
echo "Error: JAVA_HOME is not set."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
JAVA=$JAVA_HOME/bin/java
|
||||
JAVA_HEAP_MAX=-Xmx1000m
|
||||
|
||||
# check envvars which might override default args
|
||||
if [ "$HDFSPROXY_HEAPSIZE" != "" ]; then
|
||||
#echo "run with heapsize $HDFSPROXY_HEAPSIZE"
|
||||
JAVA_HEAP_MAX="-Xmx""$HDFSPROXY_HEAPSIZE""m"
|
||||
#echo $JAVA_HEAP_MAX
|
||||
fi
|
||||
|
||||
# CLASSPATH initially contains $HDFSPROXY_CONF_DIR
|
||||
CLASSPATH="${HADOOP_CONF_DIR}"
|
||||
CLASSPATH="${CLASSPATH}:${HDFSPROXY_CONF_DIR}"
|
||||
CLASSPATH=${CLASSPATH}:$JAVA_HOME/lib/tools.jar
|
||||
|
||||
# for developers, add HdfsProxy classes to CLASSPATH
|
||||
if [ -d "$HDFSPROXY_HOME/build/classes" ]; then
|
||||
CLASSPATH=${CLASSPATH}:$HDFSPROXY_HOME/build/classes
|
||||
fi
|
||||
if [ -d "$HDFSPROXY_HOME/build/web/webapps" ]; then
|
||||
CLASSPATH=${CLASSPATH}:$HDFSPROXY_HOME/build/web
|
||||
fi
|
||||
if [ -d "$HDFSPROXY_HOME/build/test/hdfs/classes" ]; then
|
||||
CLASSPATH=${CLASSPATH}:$HDFSPROXY_HOME/build/test/hdfs/classes
|
||||
fi
|
||||
|
||||
# so that filenames w/ spaces are handled correctly in loops below
|
||||
IFS=
|
||||
|
||||
# for releases, add hdfsproxy jar & webapps to CLASSPATH
|
||||
if [ -d "$HDFSPROXY_HOME/webapps" ]; then
|
||||
CLASSPATH=${CLASSPATH}:$HDFSPROXY_HOME
|
||||
fi
|
||||
for f in $HDFSPROXY_HOME/hdfsproxy-*.jar; do
|
||||
CLASSPATH=${CLASSPATH}:$f;
|
||||
done
|
||||
|
||||
# add libs to CLASSPATH
|
||||
for f in $HDFSPROXY_HOME/lib/*.jar; do
|
||||
CLASSPATH=${CLASSPATH}:$f;
|
||||
done
|
||||
|
||||
# add user-specified CLASSPATH last
|
||||
if [ "$HDFSPROXY_CLASSPATH" != "" ]; then
|
||||
CLASSPATH=${CLASSPATH}:${HDFSPROXY_CLASSPATH}
|
||||
fi
|
||||
|
||||
# default log directory & file
|
||||
if [ "$HDFSPROXY_LOG_DIR" = "" ]; then
|
||||
HDFSPROXY_LOG_DIR="$HDFSPROXY_HOME/logs"
|
||||
fi
|
||||
if [ "$HDFSPROXY_LOGFILE" = "" ]; then
|
||||
HDFSPROXY_LOGFILE='proxy-util.log'
|
||||
fi
|
||||
|
||||
# restore ordinary behaviour
|
||||
unset IFS
|
||||
|
||||
# figure out which class to run
|
||||
CLASS='org.apache.hadoop.hdfsproxy.ProxyUtil'
|
||||
|
||||
# cygwin path translation
|
||||
if $cygwin; then
|
||||
CLASSPATH=`cygpath -p -w "$CLASSPATH"`
|
||||
HDFSPROXY_HOME=`cygpath -d "$HDFSPROXY_HOME"`
|
||||
HDFSPROXY_LOG_DIR=`cygpath -d "$HDFSPROXY_LOG_DIR"`
|
||||
fi
|
||||
|
||||
# cygwin path translation
|
||||
if $cygwin; then
|
||||
JAVA_LIBRARY_PATH=`cygpath -p "$JAVA_LIBRARY_PATH"`
|
||||
fi
|
||||
|
||||
HDFSPROXY_OPTS="$HDFSPROXY_OPTS -Dhdfsproxy.log.dir=$HDFSPROXY_LOG_DIR"
|
||||
HDFSPROXY_OPTS="$HDFSPROXY_OPTS -Dhdfsproxy.log.file=$HDFSPROXY_LOGFILE"
|
||||
HDFSPROXY_OPTS="$HDFSPROXY_OPTS -Dhdfsproxy.home.dir=$HDFSPROXY_HOME"
|
||||
HDFSPROXY_OPTS="$HDFSPROXY_OPTS -Dhdfsproxy.id.str=$HDFSPROXY_IDENT_STRING"
|
||||
HDFSPROXY_OPTS="$HDFSPROXY_OPTS -Dhdfsproxy.root.logger=${HDFSPROXY_ROOT_LOGGER:-INFO,console}"
|
||||
if [ "x$JAVA_LIBRARY_PATH" != "x" ]; then
|
||||
HDFSPROXY_OPTS="$HDFSPROXY_OPTS -Djava.library.path=$JAVA_LIBRARY_PATH"
|
||||
fi
|
||||
|
||||
# run it
|
||||
exec "$JAVA" $JAVA_HEAP_MAX $HDFSPROXY_OPTS -classpath "$CLASSPATH" $CLASS "$@"
|
|
@ -1,36 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
# contributor license agreements. See the NOTICE file distributed with
|
||||
# this work for additional information regarding copyright ownership.
|
||||
# The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
# (the "License"); you may not use this file except in compliance with
|
||||
# the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
|
||||
# Start hdfsproxy tomcat servers.
|
||||
# Run this on master node.
|
||||
|
||||
usage="Usage: start-hdfsproxy-tomcat.sh"
|
||||
|
||||
bin=`dirname "$0"`
|
||||
bin=`cd "$bin"; pwd`
|
||||
|
||||
. "$bin"/hdfsproxy-config.sh
|
||||
|
||||
# get arguments
|
||||
if [ $# -ge 1 ]; then
|
||||
echo $usage
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# start hdfsproxy tomcat servers
|
||||
"$bin"/hdfsproxy-tomcat-servers.sh --config $HDFSPROXY_CONF_DIR --hosts hdfsproxy-hosts start
|
|
@ -1,37 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
# contributor license agreements. See the NOTICE file distributed with
|
||||
# this work for additional information regarding copyright ownership.
|
||||
# The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
# (the "License"); you may not use this file except in compliance with
|
||||
# the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
|
||||
# Start hdfsproxy daemons.
|
||||
# Run this on master node.
|
||||
|
||||
usage="Usage: start-hdfsproxy.sh"
|
||||
|
||||
bin=`dirname "$0"`
|
||||
bin=`cd "$bin"; pwd`
|
||||
|
||||
. "$bin"/hdfsproxy-config.sh
|
||||
|
||||
# get arguments
|
||||
if [ $# -ge 1 ]; then
|
||||
echo $usage
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# start hdfsproxy daemons
|
||||
# "$bin"/hdfsproxy-daemon.sh --config $HDFSPROXY_CONF_DIR start
|
||||
"$bin"/hdfsproxy-daemons.sh --config $HDFSPROXY_CONF_DIR --hosts hdfsproxy-hosts start
|
|
@ -1,28 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
# contributor license agreements. See the NOTICE file distributed with
|
||||
# this work for additional information regarding copyright ownership.
|
||||
# The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
# (the "License"); you may not use this file except in compliance with
|
||||
# the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
|
||||
# Stop hdfsproxy tomcat servers. Run this on master node.
|
||||
|
||||
bin=`dirname "$0"`
|
||||
bin=`cd "$bin"; pwd`
|
||||
|
||||
. "$bin"/hdfsproxy-config.sh
|
||||
|
||||
# "$bin"/hdfsproxy-daemon.sh --config $HDFSPROXY_CONF_DIR stop
|
||||
"$bin"/hdfsproxy-tomcat-servers.sh --config $HDFSPROXY_CONF_DIR --hosts hdfsproxy-hosts stop
|
||||
|
|
@ -1,28 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
# contributor license agreements. See the NOTICE file distributed with
|
||||
# this work for additional information regarding copyright ownership.
|
||||
# The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
# (the "License"); you may not use this file except in compliance with
|
||||
# the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
|
||||
# Stop hdfsproxy daemons. Run this on master node.
|
||||
|
||||
bin=`dirname "$0"`
|
||||
bin=`cd "$bin"; pwd`
|
||||
|
||||
. "$bin"/hdfsproxy-config.sh
|
||||
|
||||
# "$bin"/hdfsproxy-daemon.sh --config $HDFSPROXY_CONF_DIR stop
|
||||
"$bin"/hdfsproxy-daemons.sh --config $HDFSPROXY_CONF_DIR --hosts hdfsproxy-hosts stop
|
||||
|
|
@ -1,492 +0,0 @@
|
|||
<?xml version="1.0" ?>
|
||||
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
contributor license agreements. See the NOTICE file distributed with
|
||||
this work for additional information regarding copyright ownership.
|
||||
The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
(the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<project name="hdfsproxy" default="jar" xmlns:ivy="antlib:org.apache.ivy.ant">
|
||||
<property name="hdfsproxyVersion" value="2.0"/>
|
||||
<property name="final.name" value="${ant.project.name}-${hdfsproxyVersion}"/>
|
||||
<property name="javac.debug" value="on"/>
|
||||
<property name="javac.optimize" value="on"/>
|
||||
<import file="../build-contrib.xml"/>
|
||||
|
||||
<property name="bin.dir" value="${basedir}/bin"/>
|
||||
<property name="lib.dir" value="${basedir}/lib"/>
|
||||
<property name="hadoop.jars.dir" value="${basedir}/hadoopjars"/>
|
||||
|
||||
<property name="docs.dir" value="${basedir}/docs"/>
|
||||
<property name="test.build.dir" value="${build.dir}/test"/>
|
||||
<property name="test.build.classes" value="${test.build.dir}/classes"/>
|
||||
<property name="src.test.resources" value="${basedir}/src/test/resources"/>
|
||||
<property name="ssl.keystore.proxy" value="${src.test.resources}/ssl-keys/proxy.keystore"/>
|
||||
<property name="ssl.keystore.client" value="${src.test.resources}/ssl-keys/client.keystore"/>
|
||||
<property name="ssl.client.cert" value="${src.test.resources}/ssl-keys/test.crt"/>
|
||||
<property name="proxy.conf.test" value="${src.test.resources}/proxy-config"/>
|
||||
<property name="tomcat.conf.test" value="${src.test.resources}/tomcat-config"/>
|
||||
<property name="target.dir" value="${build.dir}/target"/>
|
||||
<property name="logs.dir" value="${target.dir}/logs"/>
|
||||
<property name="reports.dir" value="${target.dir}/reports"/>
|
||||
<property name="tomcatconfig.dir" value="${target.dir}/tomcat-config"/>
|
||||
<property name="tomcat.container.id" value="tomcat5x"/>
|
||||
<property name="cargo.logging" value="high"/>
|
||||
<property name="cactus.formatter.type" value="xml"/>
|
||||
<property name="cactus.warfile.name" value="test"/>
|
||||
|
||||
<available file="${hadoop.root}/build/classes" type="dir" property="test.available"/>
|
||||
<property environment="env"/>
|
||||
<!-- check if environment has been set -->
|
||||
<condition property="proxy.conf.dir" value="${env.HDFSPROXY_CONF_DIR}" else="${basedir}/conf">
|
||||
<and>
|
||||
<isset property="env.HDFSPROXY_CONF_DIR"/>
|
||||
<available file="${env.HDFSPROXY_CONF_DIR}/hdfsproxy-default.xml"/>
|
||||
</and>
|
||||
</condition>
|
||||
|
||||
<condition property="startCactus">
|
||||
<and>
|
||||
<or>
|
||||
<equals arg1="${testcase}" arg2="TestProxyFilter" />
|
||||
<equals arg1="${testcase}" arg2="TestAuthorizationFilter" />
|
||||
<equals arg1="${testcase}" arg2="TestLdapIpDirFilter" />
|
||||
<equals arg1="${testcase}" arg2="TestProxyUtil" />
|
||||
<equals arg1="${testcase}" arg2="TestProxyForwardServlet" />
|
||||
<not>
|
||||
<isset property="testcase"/>
|
||||
</not>
|
||||
</or>
|
||||
<isset property="test.available"/>
|
||||
</and>
|
||||
</condition>
|
||||
|
||||
<condition property="useClover">
|
||||
<and>
|
||||
<isset property="clover.home"/>
|
||||
<available file="${clover.home}/lib/clover.jar"/>
|
||||
</and>
|
||||
</condition>
|
||||
|
||||
<property name="ivy.settings.file" location="${hadoop.root}/ivy/ivysettings.xml"/>
|
||||
|
||||
<target name="ivy-init" depends="ivy-init-antlib">
|
||||
<ivy:settings id="${ant.project.name}.ivy.settings"/>
|
||||
</target>
|
||||
|
||||
<!-- Define the Cactus tasks -->
|
||||
<target name="load-tasks" depends="ivy-retrieve-common">
|
||||
<taskdef resource="cactus.tasks"
|
||||
classpathref="cactus.classpath">
|
||||
</taskdef>
|
||||
</target>
|
||||
|
||||
|
||||
<target name="jar" depends="compile" description="Create jar">
|
||||
<echo>
|
||||
Building the .jar files.
|
||||
</echo>
|
||||
<jar jarfile="${build.dir}/${final.name}.jar" basedir="${build.classes}" includes="org/apache/hadoop/hdfsproxy/**/*.class" >
|
||||
<manifest>
|
||||
<section name="org/apache/hadoop/hdfsproxy">
|
||||
<attribute name="Implementation-Title" value="HdfsProxy"/>
|
||||
<attribute name="Implementation-Version" value="${hdfsproxyVersion}"/>
|
||||
<attribute name="Implementation-Vendor" value="Apache"/>
|
||||
</section>
|
||||
</manifest>
|
||||
</jar>
|
||||
</target>
|
||||
|
||||
|
||||
<!-- ================================================================== -->
|
||||
<!-- Make war file -->
|
||||
<!-- ================================================================== -->
|
||||
|
||||
<target name="war" depends="compile" description="Create war">
|
||||
<echo>
|
||||
Building the .war file
|
||||
</echo>
|
||||
<war destfile="${build.dir}/${final.name}.war" webxml="${basedir}/conf/tomcat-web.xml">
|
||||
<lib dir="${common.ivy.lib.dir}">
|
||||
<include name="commons-logging-${commons-logging.version}.jar"/>
|
||||
<include name="junit-${junit.version}.jar"/>
|
||||
<include name="log4j-${log4j.version}.jar"/>
|
||||
<include name="slf4j-api-${slf4j-api.version}.jar"/>
|
||||
<include name="slf4j-log4j12-${slf4j-log4j12.version}.jar"/>
|
||||
<include name="xmlenc-${xmlenc.version}.jar"/>
|
||||
<include name="core-${core.vesion}.jar"/>
|
||||
<include name="hadoop-common-${hadoop-common.version}.jar"/>
|
||||
</lib>
|
||||
<classes dir="${proxy.conf.dir}">
|
||||
<include name="hdfsproxy-default.xml"/>
|
||||
<include name="user-certs.xml"/>
|
||||
<include name="user-permissions.xml"/>
|
||||
</classes>
|
||||
<classes dir="${build.classes}"/>
|
||||
<classes dir="${hadoop.root}/build/classes"/>
|
||||
</war>
|
||||
</target>
|
||||
|
||||
<target name="forward" depends="compile" description="Create forward war">
|
||||
<echo>
|
||||
Building the forward war file
|
||||
</echo>
|
||||
<war destfile="${build.dir}/${final.name}-forward.war" webxml="${basedir}/conf/tomcat-forward-web.xml">
|
||||
<lib dir="${common.ivy.lib.dir}">
|
||||
<include name="commons-logging-${commons-logging.version}.jar"/>
|
||||
<include name="junit-${junit.version}.jar"/>
|
||||
<include name="log4j-${log4j.version}.jar"/>
|
||||
<include name="slf4j-api-${slf4j-api.version}.jar"/>
|
||||
<include name="slf4j-log4j12-${slf4j-log4j12.version}.jar"/>
|
||||
<include name="xmlenc-${xmlenc.version}.jar"/>
|
||||
<include name="core-${core.vesion}.jar"/>
|
||||
</lib>
|
||||
<lib dir="${hadoop.root}/lib">
|
||||
<include name="hadoop-common-${hadoop-common.version}.jar"/>
|
||||
</lib>
|
||||
<classes dir="${proxy.conf.dir}">
|
||||
<include name="hdfsproxy-default.xml"/>
|
||||
<include name="hdfsproxy-site.xml"/>
|
||||
<include name="user-certs.xml"/>
|
||||
<include name="user-permissions.xml"/>
|
||||
</classes>
|
||||
<classes dir="${build.classes}"/>
|
||||
<classes dir="${hadoop.root}/build/classes"/>
|
||||
</war>
|
||||
</target>
|
||||
|
||||
<target name="testwar" depends="compile" description="Create testing war">
|
||||
<echo>
|
||||
Building the testing .war file
|
||||
</echo>
|
||||
<war destfile="${build.dir}/${final.name}-test.war" webxml="${src.test.resources}/tomcat-web.xml">
|
||||
<lib dir="${common.ivy.lib.dir}">
|
||||
<include name="commons-logging-${commons-logging.version}.jar"/>
|
||||
<include name="junit-${junit.version}.jar"/>
|
||||
<include name="log4j-${log4j.version}.jar"/>
|
||||
<include name="slf4j-api-${slf4j-api.version}.jar"/>
|
||||
<include name="slf4j-log4j12-${slf4j-log4j12.version}.jar"/>
|
||||
<include name="xmlenc-${xmlenc.version}.jar"/>
|
||||
<include name="core-${core.vesion}.jar"/>
|
||||
<include name="hadoop-common-${hadoop-common.version}.jar"/>
|
||||
</lib>
|
||||
<classes dir="${proxy.conf.test}" excludes="**/*.template **/*.sh"/>
|
||||
<classes dir="${build.classes}"/>
|
||||
<classes dir="${hadoop.root}/build/classes"/>
|
||||
</war>
|
||||
</target>
|
||||
|
||||
<target name="cactifywar" depends="testwar,load-tasks,cactifywar-pure,cactifywar-clover" description="To include clover coverage test use -Dclover.home ..."/>
|
||||
|
||||
<target name="cactifywar-pure" depends="testwar,load-tasks" unless="useClover">
|
||||
<mkdir dir="${target.dir}" />
|
||||
<echo> no clover found ...</echo>
|
||||
<cactifywar srcfile="${build.dir}/${final.name}-test.war"
|
||||
destfile="${target.dir}/${cactus.warfile.name}.war"
|
||||
mergewebxml="${src.test.resources}/cactus-web.xml">
|
||||
<servletredirector/>
|
||||
<servletredirector name="ServletRedirectorSecure"
|
||||
mapping="/ServletRedirectorSecure" roles="test"/>
|
||||
<filterredirector mapping="/test/filterRedirector.jsp"/>
|
||||
<classes dir="${test.build.dir}"/>
|
||||
</cactifywar>
|
||||
</target>
|
||||
|
||||
<target name="cactifywar-clover" depends="testwar,load-tasks" if="useClover">
|
||||
<mkdir dir="${target.dir}" />
|
||||
<echo> Including clover.jar in the war file ...</echo>
|
||||
<cactifywar srcfile="${build.dir}/${final.name}-test.war"
|
||||
destfile="${target.dir}/${cactus.warfile.name}.war"
|
||||
mergewebxml="${src.test.resources}/cactus-web.xml">
|
||||
<servletredirector/>
|
||||
<servletredirector name="ServletRedirectorSecure"
|
||||
mapping="/ServletRedirectorSecure" roles="test"/>
|
||||
<filterredirector mapping="/test/filterRedirector.jsp"/>
|
||||
<classes dir="${test.build.dir}"/>
|
||||
<lib dir="${clover.home}/lib">
|
||||
<include name="clover.jar"/>
|
||||
</lib>
|
||||
</cactifywar>
|
||||
</target>
|
||||
|
||||
<target name="test" depends="compile,compile-test,test-junit,test-cactus" description="Automated Test Framework" if="test.available"/>
|
||||
|
||||
<target name="test-junit" depends="compile,compile-test" if="test.available">
|
||||
<junit fork="yes" printsummary="yes" errorProperty="tests.failed" failureProperty="tests.failed">
|
||||
<classpath refid="test.classpath"/>
|
||||
<sysproperty key="test.build.data" value="${build.test}/data"/>
|
||||
<sysproperty key="build.test" value="${build.test}"/>
|
||||
<sysproperty key="user.dir" value="${build.test}/data"/>
|
||||
<sysproperty key="fs.default.name" value="${fs.default.name}"/>
|
||||
<sysproperty key="hadoop.test.localoutputfile" value="${hadoop.test.localoutputfile}"/>
|
||||
<sysproperty key="hadoop.log.dir" value="${hadoop.log.dir}"/>
|
||||
<sysproperty key="test.src.dir" value="${test.src.dir}"/>
|
||||
<sysproperty key="javax.net.ssl.trustStore" value="${ssl.keystore.proxy}"/>
|
||||
<sysproperty key="javax.net.ssl.trustStorePassword" value="changeme"/>
|
||||
<sysproperty key="javax.net.ssl.keyStore.proxy" value="${ssl.keystore.proxy}"/>
|
||||
<sysproperty key="javax.net.ssl.keyStore" value="${ssl.keystore.client}"/>
|
||||
<sysproperty key="javax.net.ssl.keyStorePassword" value="changeme"/>
|
||||
<sysproperty key="javax.net.ssl.keyPassword" value="changeme"/>
|
||||
<sysproperty key="javax.net.ssl.clientCert" value="${ssl.client.cert}"/>
|
||||
<formatter type="plain" />
|
||||
<batchtest todir="${test.build.dir}" unless="testcase">
|
||||
<fileset dir="${src.test}">
|
||||
<include name="**/TestHdfsProxy.java"/>
|
||||
<include name="**/TestProxyUgiManager.java"/>
|
||||
</fileset>
|
||||
</batchtest>
|
||||
<batchtest todir="${test.build.dir}" if="testcase">
|
||||
<fileset dir="${src.test}">
|
||||
<include name="**/${testcase}.java"/>
|
||||
<exclude name="**/TestProxyFilter.java"/>
|
||||
<exclude name="**/TestAuthorizationFilter.java"/>
|
||||
<exclude name="**/TestLdapIpDirFilter.java"/>
|
||||
<exclude name="**/TestProxyUtil.java"/>
|
||||
<exclude name="**/TestProxyForwardServlet.java"/>
|
||||
</fileset>
|
||||
</batchtest>
|
||||
</junit>
|
||||
<fail if="tests.failed">Tests failed!</fail>
|
||||
</target>
|
||||
|
||||
|
||||
<target name="test-cactus" depends="compile,compile-test,cactifywar" if="startCactus">
|
||||
<exec executable="${env.JAVA_HOME}/bin/java" outputproperty="cargo.servlet.admin.port">
|
||||
<arg line="-cp ${build.test} org.apache.hadoop.hdfsproxy.FindFreePort -random"/>
|
||||
</exec>
|
||||
<exec executable="${env.JAVA_HOME}/bin/java" outputproperty="cargo.servlet.http.port">
|
||||
<arg line="-cp ${build.test} org.apache.hadoop.hdfsproxy.FindFreePort ${cargo.servlet.admin.port}"/>
|
||||
</exec>
|
||||
<exec executable="${env.JAVA_HOME}/bin/java" outputproperty="cargo.servlet.https.port">
|
||||
<arg line="-cp ${build.test} org.apache.hadoop.hdfsproxy.FindFreePort ${cargo.servlet.http.port}"/>
|
||||
</exec>
|
||||
|
||||
<echo> Free Ports: startup-${cargo.servlet.admin.port} / http-${cargo.servlet.http.port} / https-${cargo.servlet.https.port}</echo>
|
||||
<echo>Please take a deep breath while Cargo gets the Tomcat for running the servlet tests...</echo>
|
||||
|
||||
<mkdir dir="${tomcatconfig.dir}" />
|
||||
<mkdir dir="${tomcatconfig.dir}/conf" />
|
||||
<mkdir dir="${tomcatconfig.dir}/webapps" />
|
||||
<mkdir dir="${tomcatconfig.dir}/temp" />
|
||||
<mkdir dir="${logs.dir}" />
|
||||
<mkdir dir="${reports.dir}" />
|
||||
<copy file="${tomcat.conf.test}/server.xml" tofile="${tomcatconfig.dir}/conf/server.xml" overwrite="true">
|
||||
<filterset>
|
||||
<filter token="ADMIN.PORT" value="${cargo.servlet.admin.port}"/>
|
||||
<filter token="HTTP.PORT" value="${cargo.servlet.http.port}"/>
|
||||
<filter token="HTTPS.PORT" value="${cargo.servlet.https.port}"/>
|
||||
</filterset>
|
||||
</copy>
|
||||
<copy file="${tomcat.conf.test}/web.xml" tofile="${tomcatconfig.dir}/conf/web.xml"/>
|
||||
<copy file="${tomcat.conf.test}/tomcat-users.xml" tofile="${tomcatconfig.dir}/conf/tomcat-users.xml"/>
|
||||
|
||||
<cactus warfile="${target.dir}/${cactus.warfile.name}.war" fork="yes" haltonfailure="no" printsummary="yes" failureproperty="tests.failed">
|
||||
<classpath>
|
||||
<path refid="cactus.classpath"/>
|
||||
<pathelement location="${build.classes}"/>
|
||||
<pathelement location="${src.test.resources}"/>
|
||||
<pathelement location="${src.test.resources}/proxy-config"/>
|
||||
</classpath>
|
||||
<containerset>
|
||||
<cargo containerId="${tomcat.container.id}" timeout="30000" output="${logs.dir}/output.log" log="${logs.dir}/cargo.log">
|
||||
<zipUrlInstaller
|
||||
installUrl="http://archive.apache.org/dist/tomcat/tomcat-6/v6.0.24/bin/apache-tomcat-6.0.24.zip"
|
||||
installDir="${target.dir}/${tomcat.container.id}"/>
|
||||
<configuration type="existing" home="${tomcatconfig.dir}">
|
||||
<property name="cargo.servlet.port" value="${cargo.servlet.http.port}"/>
|
||||
<property name="cargo.logging" value="${cargo.logging}"/>
|
||||
<property name="cactus.toDir" value="${build.test}"/>
|
||||
<deployable type="war" file="${target.dir}/${cactus.warfile.name}.war"/>
|
||||
</configuration>
|
||||
</cargo>
|
||||
</containerset>
|
||||
<sysproperty key="test.build.data" value="${build.test}/data"/>
|
||||
<sysproperty key="build.test" value="${build.test}"/>
|
||||
<sysproperty key="build.target" value="${target.dir}"/>
|
||||
<sysproperty key="javax.net.ssl.trustStore" value="${ssl.keystore.proxy}"/>
|
||||
<sysproperty key="javax.net.ssl.trustStorePassword" value="changeme"/>
|
||||
<sysproperty key="javax.net.ssl.keyStore.proxy" value="${ssl.keystore.proxy}"/>
|
||||
<sysproperty key="javax.net.ssl.keyStore" value="${ssl.keystore.client}"/>
|
||||
<sysproperty key="javax.net.ssl.keyStorePassword" value="changeme"/>
|
||||
<sysproperty key="javax.net.ssl.keyPassword" value="changeme"/>
|
||||
<sysproperty key="javax.net.ssl.clientCert" value="${ssl.client.cert}"/>
|
||||
<sysproperty key="test.proxy.conf.dir" value="${proxy.conf.test}"/>
|
||||
<sysproperty key="test.proxy.https.port" value="${cargo.servlet.https.port}"/>
|
||||
|
||||
<formatter type="${cactus.formatter.type}"/>
|
||||
<batchtest todir="${reports.dir}" unless="testcase">
|
||||
<fileset dir="${src.test}">
|
||||
<include name="**/Test*.java"/>
|
||||
<exclude name="**/TestHdfsProxy.java"/>
|
||||
<exclude name="**/TestProxyUgiManager.java"/>
|
||||
</fileset>
|
||||
</batchtest>
|
||||
<batchtest todir="${reports.dir}" if="testcase">
|
||||
<fileset dir="${src.test}">
|
||||
<include name="**/${testcase}.java"/>
|
||||
<exclude name="**/TestHdfsProxy.java"/>
|
||||
<exclude name="**/TestProxyUgiManager.java"/>
|
||||
</fileset>
|
||||
</batchtest>
|
||||
</cactus>
|
||||
<fail if="tests.failed">Tests failed!</fail>
|
||||
</target>
|
||||
<!-- ====================================================== -->
|
||||
<!-- Macro definitions -->
|
||||
<!-- ====================================================== -->
|
||||
<macrodef name="macro_tar" description="Worker Macro for tar">
|
||||
<attribute name="param.destfile"/>
|
||||
<element name="param.listofitems"/>
|
||||
<sequential>
|
||||
<tar compression="gzip" longfile="gnu"
|
||||
destfile="@{param.destfile}">
|
||||
<param.listofitems/>
|
||||
</tar>
|
||||
</sequential>
|
||||
</macrodef>
|
||||
|
||||
<!-- ================================================================== -->
|
||||
<!-- D I S T R I B U T I O N -->
|
||||
<!-- ================================================================== -->
|
||||
<!-- -->
|
||||
<!-- ================================================================== -->
|
||||
<target name="local-package" depends="jar,war" description="Package in local build directory">
|
||||
<mkdir dir="${build.dir}/${final.name}"/>
|
||||
<mkdir dir="${build.dir}/${final.name}/logs"/>
|
||||
<copy todir="${build.dir}/${final.name}" includeEmptyDirs="false">
|
||||
<fileset dir="${build.dir}">
|
||||
<include name="*.jar" />
|
||||
<include name="*.war" />
|
||||
</fileset>
|
||||
</copy>
|
||||
<copy todir="${build.dir}/${final.name}/lib" includeEmptyDirs="false">
|
||||
<fileset dir="${common.ivy.lib.dir}">
|
||||
<include name="commons-logging-${commons-logging.version}.jar"/>
|
||||
<include name="commons-logging-api-${commons-logging-api.version}.jar"/>
|
||||
<include name="junit-${junit.version}.jar"/>
|
||||
<include name="log4j-${log4j.version}.jar"/>
|
||||
<include name="slf4j-api-${slf4j-api.version}.jar"/>
|
||||
<include name="slf4j-log4j12-${slf4j-log4j12.version}.jar"/>
|
||||
<include name="xmlenc-${xmlenc.version}.jar"/>
|
||||
<include name="jetty-util-${jetty-util.version}.jar"/>
|
||||
<include name="jetty-${jetty.version}.jar"/>
|
||||
<include name="servlet-api-2.5-${servlet-api-2.5.version}.jar"/>
|
||||
<include name="core-${core.vesion}.jar"/>
|
||||
<!-- </fileset>
|
||||
<fileset dir="${hadoop.root}/lib/jsp-${jsp.version}"> -->
|
||||
<include name="jsp-${jsp.version}-${jetty.version}.jar"/>
|
||||
<include name="jsp-api-${jsp.version}-${jetty.version}.jar"/>
|
||||
</fileset>
|
||||
</copy>
|
||||
|
||||
<copy todir="${build.dir}/${final.name}/lib" includeEmptyDirs="false">
|
||||
<fileset dir="${hadoop.root}/build">
|
||||
<include name="*-core.jar"/>
|
||||
<include name="*-tools.jar"/>
|
||||
</fileset>
|
||||
</copy>
|
||||
|
||||
<copy todir="${build.dir}/${final.name}/bin">
|
||||
<fileset dir="${bin.dir}"/>
|
||||
</copy>
|
||||
|
||||
|
||||
<copy todir="${build.dir}/${final.name}/conf">
|
||||
<fileset dir="${proxy.conf.dir}"/>
|
||||
</copy>
|
||||
|
||||
|
||||
<copy todir="${build.dir}/${final.name}">
|
||||
<fileset dir="${basedir}">
|
||||
<include name="README" />
|
||||
<include name="build.xml" />
|
||||
<include name="*.txt" />
|
||||
</fileset>
|
||||
</copy>
|
||||
|
||||
<copy todir="${build.dir}/${final.name}/src" includeEmptyDirs="true">
|
||||
<fileset dir="${src.dir}" excludes="**/*.template **/docs/build/**/*"/>
|
||||
</copy>
|
||||
|
||||
<chmod perm="ugo+x" type="file" parallel="false">
|
||||
<fileset dir="${build.dir}/${final.name}/bin"/>
|
||||
</chmod>
|
||||
|
||||
</target>
|
||||
<target name="package" depends="local-package" description="Build distribution">
|
||||
<mkdir dir="${dist.dir}/contrib/${name}"/>
|
||||
<copy todir="${dist.dir}/contrib/${name}">
|
||||
<fileset dir="${build.dir}/${final.name}">
|
||||
<exclude name="**/lib/**" />
|
||||
<exclude name="**/src/**" />
|
||||
<exclude name="*.war" />
|
||||
</fileset>
|
||||
</copy>
|
||||
<chmod dir="${dist.dir}/contrib/${name}/bin" perm="a+x" includes="*"/>
|
||||
</target>
|
||||
|
||||
<!-- ================================================================== -->
|
||||
<!-- Make release tarball -->
|
||||
<!-- ================================================================== -->
|
||||
<target name="tar" depends="local-package,war" description="Make release tarball">
|
||||
<macro_tar param.destfile="${build.dir}/${final.name}.tar.gz">
|
||||
<param.listofitems>
|
||||
<tarfileset dir="${build.dir}" mode="664">
|
||||
<exclude name="${final.name}/bin/*" />
|
||||
<include name="${final.name}/**" />
|
||||
</tarfileset>
|
||||
<tarfileset dir="${build.dir}" mode="755">
|
||||
<include name="${final.name}/bin/*" />
|
||||
</tarfileset>
|
||||
</param.listofitems>
|
||||
</macro_tar>
|
||||
</target>
|
||||
|
||||
<target name="binary" depends="local-package,war" description="Make tarball without source and documentation">
|
||||
<macro_tar param.destfile="${build.dir}/${final.name}-bin.tar.gz">
|
||||
<param.listofitems>
|
||||
<tarfileset dir="${build.dir}" mode="664">
|
||||
<exclude name="${final.name}/bin/*" />
|
||||
<exclude name="${final.name}/src/**" />
|
||||
<exclude name="${final.name}/docs/**" />
|
||||
<include name="${final.name}/**" />
|
||||
</tarfileset>
|
||||
<tarfileset dir="${build.dir}" mode="755">
|
||||
<include name="${final.name}/bin/*" />
|
||||
</tarfileset>
|
||||
</param.listofitems>
|
||||
</macro_tar>
|
||||
</target>
|
||||
|
||||
|
||||
<!-- the unit test classpath -->
|
||||
<path id="test.classpath">
|
||||
<pathelement location="${proxy.conf.test}" />
|
||||
<pathelement location="${test.build.dir}" />
|
||||
<pathelement location="${hadoop.root}/build/test/hdfs/classes"/>
|
||||
<!--<pathelement location="${hadoop.root}/src/contrib/test"/>-->
|
||||
<pathelement location="${hadoop.root}/conf"/>
|
||||
<pathelement location="${hadoop.root}/build"/>
|
||||
<pathelement location="${hadoop.root}/build/classes"/>
|
||||
<pathelement location="${hadoop.root}/build/tools"/>
|
||||
<pathelement location="${build.examples}"/>
|
||||
<pathelement path="${clover.jar}"/>
|
||||
<path refid="contrib-classpath"/>
|
||||
</path>
|
||||
|
||||
<path id="cactus.classpath">
|
||||
<path refid="test.classpath"/>
|
||||
</path>
|
||||
|
||||
</project>
|
|
@ -1,24 +0,0 @@
|
|||
<?xml version="1.0"?>
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
||||
<xsl:output method="html"/>
|
||||
<xsl:template match="configuration">
|
||||
<html>
|
||||
<body>
|
||||
<table border="1">
|
||||
<tr>
|
||||
<td>name</td>
|
||||
<td>value</td>
|
||||
<td>description</td>
|
||||
</tr>
|
||||
<xsl:for-each select="property">
|
||||
<tr>
|
||||
<td><a name="{name}"><xsl:value-of select="name"/></a></td>
|
||||
<td><xsl:value-of select="value"/></td>
|
||||
<td><xsl:value-of select="description"/></td>
|
||||
</tr>
|
||||
</xsl:for-each>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
</xsl:template>
|
||||
</xsl:stylesheet>
|
|
@ -1,128 +0,0 @@
|
|||
<?xml version="1.0"?>
|
||||
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
|
||||
|
||||
<!-- Put hdfsproxy specific properties in this file. -->
|
||||
|
||||
<configuration>
|
||||
|
||||
<property>
|
||||
<name>hdfsproxy.https.address</name>
|
||||
<value>0.0.0.0:8443</value>
|
||||
<description>the SSL port that hdfsproxy listens on
|
||||
</description>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>hdfsproxy.hosts</name>
|
||||
<value>hdfsproxy-hosts</value>
|
||||
<description>location of hdfsproxy-hosts file
|
||||
</description>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>hdfsproxy.dfs.namenode.address</name>
|
||||
<value>localhost:54321</value>
|
||||
<description>namenode address of the HDFS cluster being proxied
|
||||
</description>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>hdfsproxy.https.server.keystore.resource</name>
|
||||
<value>ssl-server.xml</value>
|
||||
<description>location of the resource from which ssl server keystore
|
||||
information will be extracted
|
||||
</description>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>hdfsproxy.user.permissions.file.location</name>
|
||||
<value>user-permissions.xml</value>
|
||||
<description>location of the user permissions file
|
||||
</description>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>hdfsproxy.user.certs.file.location</name>
|
||||
<value>user-certs.xml</value>
|
||||
<description>location of the user certs file
|
||||
</description>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>hdfsproxy.ugi.cache.ugi.lifetime</name>
|
||||
<value>15</value>
|
||||
<description> The lifetime (in minutes) of a cached ugi
|
||||
</description>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>hdfsproxy.ldap.initial.context.factory</name>
|
||||
<value>com.sun.jndi.ldap.LdapCtxFactory</value>
|
||||
<description> ldap initial context factory
|
||||
</description>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>hdfsproxy.ldap.provider.url</name>
|
||||
<value>ldap://localhost:389</value>
|
||||
<description> ldap server address
|
||||
</description>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>hdfsproxy.ldap.role.base</name>
|
||||
<value>ou=proxyroles,dc=mycompany,dc=com</value>
|
||||
<description> ldap role base
|
||||
</description>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>fs.default.name</name>
|
||||
<!-- cluster variant -->
|
||||
<value>hdfs://localhost:54321</value>
|
||||
<description>The name of the default file system. Either the
|
||||
literal string "local" or a host:port for NDFS.</description>
|
||||
<final>true</final>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>dfs.blocksize</name>
|
||||
<value>134217728</value>
|
||||
<description>The default block size for new files.</description>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>io.file.buffer.size</name>
|
||||
<value>131072</value>
|
||||
<description>The size of buffer for use in sequence files.
|
||||
The size of this buffer should probably be a multiple of hardware
|
||||
page size (4096 on Intel x86), and it determines how much data is
|
||||
buffered during read and write operations.</description>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>hdfsproxy.kerberos.principal</name>
|
||||
<value>user@REALM</value>
|
||||
<description> kerberos principal to be used by hdfsproxy </description>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>hdfsproxy.kerberos.keytab</name>
|
||||
<value>proxy.prod.headless.keytab</value>
|
||||
<description> kerberos keytab to be used by hdfsproxy </description>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>hdfsproxy.kerberos.default.realm</name>
|
||||
<value>/instance@REALM</value>
|
||||
<description> kerberos default realm appended to non-qualified userIds </description>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>dfs.namenode.kerberos.principal</name>
|
||||
<value>hdfs@REALM</value>
|
||||
<description> Namenode user name key. </description>
|
||||
</property>
|
||||
|
||||
</configuration>
|
||||
|
|
@ -1,44 +0,0 @@
|
|||
# Set HdfsProxy-specific environment variables here.
|
||||
|
||||
# The only required environment variable is JAVA_HOME. All others are
|
||||
# optional. When running a distributed configuration it is best to
|
||||
# set JAVA_HOME in this file, so that it is correctly defined on
|
||||
# remote nodes.
|
||||
|
||||
# The java implementation to use. Required.
|
||||
# export JAVA_HOME=/usr/lib/j2sdk1.5-sun
|
||||
|
||||
# Extra Java CLASSPATH elements. Optional.
|
||||
# export HDFSPROXY_CLASSPATH=
|
||||
|
||||
# The maximum amount of heap to use, in MB. Default is 1000.
|
||||
# export HDFSPROXY_HEAPSIZE=2000
|
||||
|
||||
# Extra Java runtime options. Empty by default.
|
||||
# export HDFSPROXY_OPTS=
|
||||
|
||||
# Extra ssh options. Empty by default.
|
||||
# export HDFSPROXY_SSH_OPTS="-o ConnectTimeout=1 -o SendEnv=HDFSPROXY_CONF_DIR"
|
||||
|
||||
# Where log files are stored. $HDFSPROXY_HOME/logs by default.
|
||||
# export HDFSPROXY_LOG_DIR=${HDFSPROXY_HOME}/logs
|
||||
|
||||
# File naming remote slave hosts. $HDFSPROXY_HOME/conf/slaves by default.
|
||||
# export HDFSPROXY_SLAVES=${HDFSPROXY_HOME}/conf/slaves
|
||||
|
||||
# host:path where hdfsproxy code should be rsync'd from. Unset by default.
|
||||
# export HDFSPROXY_MASTER=master:/home/$USER/src/hdfsproxy
|
||||
|
||||
# Seconds to sleep between slave commands. Unset by default. This
|
||||
# can be useful in large clusters, where, e.g., slave rsyncs can
|
||||
# otherwise arrive faster than the master can service them.
|
||||
# export HDFSPROXY_SLAVE_SLEEP=0.1
|
||||
|
||||
# The directory where pid files are stored. /tmp by default.
|
||||
# export HDFSPROXY_PID_DIR=/var/hdfsproxy/pids
|
||||
|
||||
# A string representing this instance of hdfsproxy. $USER by default.
|
||||
# export HDFSPROXY_IDENT_STRING=$USER
|
||||
|
||||
# The scheduling priority for daemon processes. See 'man nice'.
|
||||
# export HDFSPROXY_NICENESS=10
|
|
@ -1,44 +0,0 @@
|
|||
# Set HdfsProxy-specific environment variables here.
|
||||
|
||||
# The only required environment variable is JAVA_HOME. All others are
|
||||
# optional. When running a distributed configuration it is best to
|
||||
# set JAVA_HOME in this file, so that it is correctly defined on
|
||||
# remote nodes.
|
||||
|
||||
# The java implementation to use. Required.
|
||||
# export JAVA_HOME=/usr/lib/j2sdk1.5-sun
|
||||
|
||||
# Extra Java CLASSPATH elements. Optional.
|
||||
# export HDFSPROXY_CLASSPATH=
|
||||
|
||||
# The maximum amount of heap to use, in MB. Default is 1000.
|
||||
# export HDFSPROXY_HEAPSIZE=2000
|
||||
|
||||
# Extra Java runtime options. Empty by default.
|
||||
# export HDFSPROXY_OPTS=
|
||||
|
||||
# Extra ssh options. Empty by default.
|
||||
# export HDFSPROXY_SSH_OPTS="-o ConnectTimeout=1 -o SendEnv=HDFSPROXY_CONF_DIR"
|
||||
|
||||
# Where log files are stored. $HDFSPROXY_HOME/logs by default.
|
||||
# export HDFSPROXY_LOG_DIR=${HDFSPROXY_HOME}/logs
|
||||
|
||||
# File naming remote slave hosts. $HDFSPROXY_HOME/conf/slaves by default.
|
||||
# export HDFSPROXY_SLAVES=${HDFSPROXY_HOME}/conf/slaves
|
||||
|
||||
# host:path where hdfsproxy code should be rsync'd from. Unset by default.
|
||||
# export HDFSPROXY_MASTER=master:/home/$USER/src/hdfsproxy
|
||||
|
||||
# Seconds to sleep between slave commands. Unset by default. This
|
||||
# can be useful in large clusters, where, e.g., slave rsyncs can
|
||||
# otherwise arrive faster than the master can service them.
|
||||
# export HDFSPROXY_SLAVE_SLEEP=0.1
|
||||
|
||||
# The directory where pid files are stored. /tmp by default.
|
||||
# export HDFSPROXY_PID_DIR=/var/hdfsproxy/pids
|
||||
|
||||
# A string representing this instance of hdfsproxy. $USER by default.
|
||||
# export HDFSPROXY_IDENT_STRING=$USER
|
||||
|
||||
# The scheduling priority for daemon processes. See 'man nice'.
|
||||
# export HDFSPROXY_NICENESS=10
|
|
@ -1 +0,0 @@
|
|||
localhost
|
|
@ -1,61 +0,0 @@
|
|||
# Define some default values that can be overridden by system properties
|
||||
hdfsproxy.root.logger=INFO,console
|
||||
hdfsproxy.log.dir=.
|
||||
hdfsproxy.log.file=hdfsproxy.log
|
||||
|
||||
# Define the root logger to the system property "hdfsproxy.root.logger".
|
||||
log4j.rootLogger=${hdfsproxy.root.logger}
|
||||
|
||||
# Logging Threshold
|
||||
log4j.threshhold=ALL
|
||||
|
||||
#
|
||||
# Daily Rolling File Appender
|
||||
#
|
||||
|
||||
log4j.appender.DRFA=org.apache.log4j.DailyRollingFileAppender
|
||||
log4j.appender.DRFA.File=${hdfsproxy.log.dir}/${hdfsproxy.log.file}
|
||||
|
||||
# Rollver at midnight
|
||||
log4j.appender.DRFA.DatePattern=.yyyy-MM-dd
|
||||
|
||||
# 30-day backup
|
||||
#log4j.appender.DRFA.MaxBackupIndex=30
|
||||
log4j.appender.DRFA.layout=org.apache.log4j.PatternLayout
|
||||
|
||||
# Pattern format: Date LogLevel LoggerName LogMessage
|
||||
log4j.appender.DRFA.layout.ConversionPattern=%d{ISO8601} %p %c: %m%n
|
||||
# Debugging Pattern format
|
||||
#log4j.appender.DRFA.layout.ConversionPattern=%d{ISO8601} %-5p %c{2} (%F:%M(%L)) - %m%n
|
||||
|
||||
|
||||
#
|
||||
# console
|
||||
# Add "console" to rootlogger above if you want to use this
|
||||
#
|
||||
|
||||
log4j.appender.console=org.apache.log4j.ConsoleAppender
|
||||
log4j.appender.console.target=System.err
|
||||
log4j.appender.console.layout=org.apache.log4j.PatternLayout
|
||||
log4j.appender.console.layout.ConversionPattern=%d{yy/MM/dd HH:mm:ss} %p %c{2}: %m%n
|
||||
|
||||
#
|
||||
# Rolling File Appender
|
||||
#
|
||||
|
||||
#log4j.appender.RFA=org.apache.log4j.RollingFileAppender
|
||||
#log4j.appender.RFA.File=${hdfsproxy.log.dir}/${hdfsproxy.log.file}
|
||||
|
||||
# Logfile size and and 30-day backups
|
||||
#log4j.appender.RFA.MaxFileSize=1MB
|
||||
#log4j.appender.RFA.MaxBackupIndex=30
|
||||
|
||||
#log4j.appender.RFA.layout=org.apache.log4j.PatternLayout
|
||||
#log4j.appender.RFA.layout.ConversionPattern=%d{ISO8601} %-5p %c{2} - %m%n
|
||||
#log4j.appender.RFA.layout.ConversionPattern=%d{ISO8601} %-5p %c{2} (%F:%M(%L)) - %m%n
|
||||
|
||||
# Custom Logging levels
|
||||
|
||||
#log4j.logger.org.apache.hadoop.hdfsproxy.HttpsProxy=DEBUG
|
||||
#log4j.logger.org.apache.hadoop.hdfsproxy.ProxyFilter=DEBUG
|
||||
|
|
@ -1,48 +0,0 @@
|
|||
<?xml version="1.0"?>
|
||||
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
|
||||
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
contributor license agreements. See the NOTICE file distributed with
|
||||
this work for additional information regarding copyright ownership.
|
||||
The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
(the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<configuration>
|
||||
|
||||
<property>
|
||||
<name>ssl.server.truststore.location</name>
|
||||
<value>${javax.net.ssl.keyStore.proxy}</value>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>ssl.server.truststore.password</name>
|
||||
<value>changeme</value>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>ssl.server.keystore.location</name>
|
||||
<value>${javax.net.ssl.keyStore.proxy}</value>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>ssl.server.keystore.password</name>
|
||||
<value>changeme</value>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>ssl.server.keystore.keypassword</name>
|
||||
<value>changeme</value>
|
||||
</property>
|
||||
|
||||
</configuration>
|
|
@ -1,109 +0,0 @@
|
|||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
contributor license agreements. See the NOTICE file distributed with
|
||||
this work for additional information regarding copyright ownership.
|
||||
The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
(the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<!DOCTYPE web-app
|
||||
PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
|
||||
"http://java.sun.com/dtd/web-app_2_3.dtd">
|
||||
|
||||
<web-app>
|
||||
|
||||
|
||||
<!-- General description of your web application -->
|
||||
|
||||
<display-name>HDFS Proxy</display-name>
|
||||
<description>
|
||||
get data from grid forward war
|
||||
</description>
|
||||
|
||||
<context-param>
|
||||
<param-name>webmaster</param-name>
|
||||
<param-value>zhiyong1@yahoo-inc.com</param-value>
|
||||
<description>
|
||||
The EMAIL address of the administrator to whom questions
|
||||
and comments about this application should be addressed.
|
||||
</description>
|
||||
</context-param>
|
||||
|
||||
<filter>
|
||||
<filter-name>ldapIpDirFilter</filter-name>
|
||||
<filter-class>org.apache.hadoop.hdfsproxy.LdapIpDirFilter</filter-class>
|
||||
</filter>
|
||||
|
||||
<filter-mapping>
|
||||
<filter-name>ldapIpDirFilter</filter-name>
|
||||
<url-pattern>/*</url-pattern>
|
||||
</filter-mapping>
|
||||
|
||||
|
||||
|
||||
|
||||
<servlet>
|
||||
<servlet-name>proxyForward</servlet-name>
|
||||
<description>forward data access to specifc servlets</description>
|
||||
<servlet-class>org.apache.hadoop.hdfsproxy.ProxyForwardServlet</servlet-class>
|
||||
</servlet>
|
||||
|
||||
<servlet-mapping>
|
||||
<servlet-name>proxyForward</servlet-name>
|
||||
<url-pattern>/listPaths/*</url-pattern>
|
||||
</servlet-mapping>
|
||||
<servlet-mapping>
|
||||
<servlet-name>proxyForward</servlet-name>
|
||||
<url-pattern>/data/*</url-pattern>
|
||||
</servlet-mapping>
|
||||
<servlet-mapping>
|
||||
<servlet-name>proxyForward</servlet-name>
|
||||
<url-pattern>/streamFile/*</url-pattern>
|
||||
</servlet-mapping>
|
||||
|
||||
<servlet>
|
||||
<servlet-name>fileForward</servlet-name>
|
||||
<description>forward file data access to streamFile</description>
|
||||
<servlet-class>org.apache.hadoop.hdfsproxy.ProxyFileForward</servlet-class>
|
||||
</servlet>
|
||||
|
||||
<servlet-mapping>
|
||||
<servlet-name>fileForward</servlet-name>
|
||||
<url-pattern>/file/*</url-pattern>
|
||||
</servlet-mapping>
|
||||
|
||||
|
||||
|
||||
<welcome-file-list>
|
||||
<welcome-file>index.html</welcome-file>
|
||||
</welcome-file-list>
|
||||
|
||||
<!-- Define the default session timeout for your application,
|
||||
in minutes. From a servlet or JSP page, you can modify
|
||||
the timeout for a particular session dynamically by using
|
||||
HttpSession.getMaxInactiveInterval(). -->
|
||||
|
||||
<session-config>
|
||||
<session-timeout>30</session-timeout> <!-- 30 minutes -->
|
||||
</session-config>
|
||||
|
||||
|
||||
</web-app>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -1,166 +0,0 @@
|
|||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
contributor license agreements. See the NOTICE file distributed with
|
||||
this work for additional information regarding copyright ownership.
|
||||
The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
(the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<!DOCTYPE web-app
|
||||
PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
|
||||
"http://java.sun.com/dtd/web-app_2_3.dtd">
|
||||
|
||||
<web-app>
|
||||
|
||||
|
||||
<!-- General description of your web application -->
|
||||
|
||||
<display-name>HDFS Proxy</display-name>
|
||||
<description>
|
||||
get data from grid
|
||||
</description>
|
||||
|
||||
|
||||
<!-- Context initialization parameters that define shared
|
||||
String constants used within your application, which
|
||||
can be customized by the system administrator who is
|
||||
installing your application. The values actually
|
||||
assigned to these parameters can be retrieved in a
|
||||
servlet or JSP page by calling:
|
||||
|
||||
String value =
|
||||
getServletContext().getInitParameter("name");
|
||||
|
||||
where "name" matches the <param-name> element of
|
||||
one of these initialization parameters.
|
||||
|
||||
You can define any number of context initialization
|
||||
parameters, including zero.
|
||||
-->
|
||||
|
||||
<context-param>
|
||||
<param-name>webmaster</param-name>
|
||||
<param-value>zhiyong1@yahoo-inc.com</param-value>
|
||||
<description>
|
||||
The EMAIL address of the administrator to whom questions
|
||||
and comments about this application should be addressed.
|
||||
</description>
|
||||
</context-param>
|
||||
|
||||
<filter>
|
||||
<filter-name>ldapIpDirFilter</filter-name>
|
||||
<filter-class>org.apache.hadoop.hdfsproxy.LdapIpDirFilter</filter-class>
|
||||
</filter>
|
||||
|
||||
<filter>
|
||||
<filter-name>authorizationFilter</filter-name>
|
||||
<filter-class>org.apache.hadoop.hdfsproxy.KerberosAuthorizationFilter</filter-class>
|
||||
</filter>
|
||||
|
||||
<filter-mapping>
|
||||
<filter-name>ldapIpDirFilter</filter-name>
|
||||
<url-pattern>/*</url-pattern>
|
||||
<dispatcher>REQUEST</dispatcher>
|
||||
<dispatcher>FORWARD</dispatcher>
|
||||
</filter-mapping>
|
||||
|
||||
<filter-mapping>
|
||||
<filter-name>authorizationFilter</filter-name>
|
||||
<url-pattern>/*</url-pattern>
|
||||
<dispatcher>REQUEST</dispatcher>
|
||||
<dispatcher>FORWARD</dispatcher>
|
||||
</filter-mapping>
|
||||
|
||||
<!-- Servlet definitions for the servlets that make up
|
||||
your web application, including initialization
|
||||
parameters. With Tomcat, you can also send requests
|
||||
to servlets not listed here with a request like this:
|
||||
|
||||
http://localhost:8080/{context-path}/servlet/{classname}
|
||||
|
||||
but this usage is not guaranteed to be portable. It also
|
||||
makes relative references to images and other resources
|
||||
required by your servlet more complicated, so defining
|
||||
all of your servlets (and defining a mapping to them with
|
||||
a servlet-mapping element) is recommended.
|
||||
|
||||
Servlet initialization parameters can be retrieved in a
|
||||
servlet or JSP page by calling:
|
||||
|
||||
String value =
|
||||
getServletConfig().getInitParameter("name");
|
||||
|
||||
where "name" matches the <param-name> element of
|
||||
one of these initialization parameters.
|
||||
|
||||
You can define any number of servlets, including zero.
|
||||
-->
|
||||
|
||||
|
||||
<servlet>
|
||||
<servlet-name>listPaths</servlet-name>
|
||||
<description>list paths data access</description>
|
||||
<servlet-class>org.apache.hadoop.hdfsproxy.ProxyListPathsServlet</servlet-class>
|
||||
</servlet>
|
||||
|
||||
<servlet-mapping>
|
||||
<servlet-name>listPaths</servlet-name>
|
||||
<url-pattern>/listPaths/*</url-pattern>
|
||||
</servlet-mapping>
|
||||
|
||||
<servlet>
|
||||
<servlet-name>data</servlet-name>
|
||||
<description>data access</description>
|
||||
<servlet-class>org.apache.hadoop.hdfsproxy.ProxyFileDataServlet</servlet-class>
|
||||
</servlet>
|
||||
|
||||
<servlet-mapping>
|
||||
<servlet-name>data</servlet-name>
|
||||
<url-pattern>/data/*</url-pattern>
|
||||
</servlet-mapping>
|
||||
|
||||
<servlet>
|
||||
<servlet-name>streamFile</servlet-name>
|
||||
<description>stream file access</description>
|
||||
<servlet-class>org.apache.hadoop.hdfsproxy.ProxyStreamFile</servlet-class>
|
||||
</servlet>
|
||||
|
||||
<servlet-mapping>
|
||||
<servlet-name>streamFile</servlet-name>
|
||||
<url-pattern>/streamFile/*</url-pattern>
|
||||
</servlet-mapping>
|
||||
|
||||
|
||||
<welcome-file-list>
|
||||
<welcome-file>index.html</welcome-file>
|
||||
</welcome-file-list>
|
||||
|
||||
<!-- Define the default session timeout for your application,
|
||||
in minutes. From a servlet or JSP page, you can modify
|
||||
the timeout for a particular session dynamically by using
|
||||
HttpSession.getMaxInactiveInterval(). -->
|
||||
|
||||
<session-config>
|
||||
<session-timeout>30</session-timeout> <!-- 30 minutes -->
|
||||
</session-config>
|
||||
|
||||
|
||||
</web-app>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -1,32 +0,0 @@
|
|||
<?xml version="1.0"?>
|
||||
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
|
||||
|
||||
<!--
|
||||
|
||||
This file defines the mappings from username to comma seperated list
|
||||
of certificate serial numbers that the user is allowed to use. One mapping
|
||||
per user. Wildcard characters, such as "*" and "?", are not recognized.
|
||||
Any leading or trailing whitespaces are stripped/ignored.
|
||||
|
||||
-->
|
||||
|
||||
<configuration>
|
||||
<property>
|
||||
<name> nobody </name>
|
||||
<value> ,6 ,, 3 , 9a2cf0be9ddf8280
|
||||
|
||||
|
||||
|
||||
</value>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name> Admin </name>
|
||||
<value>, 6, ,, 3 , 9a2cf0be9ddf8280
|
||||
|
||||
|
||||
|
||||
</value>
|
||||
</property>
|
||||
|
||||
</configuration>
|
|
@ -1,26 +0,0 @@
|
|||
<?xml version="1.0"?>
|
||||
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
|
||||
|
||||
<!--
|
||||
|
||||
This file defines the mappings from user name to comma seperated list
|
||||
of directories/files that the user is allowed to access. One mapping
|
||||
per user. Wildcard characters, such as "*" and "?", are not recognized.
|
||||
For example, to match "/output" directory, one can use "/output" or
|
||||
"/output/", but not "/output/*". Note that any leading or trailing
|
||||
whitespaces are stripped/ignored for the name field.
|
||||
|
||||
-->
|
||||
|
||||
<configuration>
|
||||
<property>
|
||||
<name> nobody </name>
|
||||
<value> ,
|
||||
|
||||
|
||||
|
||||
/input, /user, /data </value>
|
||||
</property>
|
||||
|
||||
|
||||
</configuration>
|
|
@ -1,127 +0,0 @@
|
|||
<?xml version="1.0" ?>
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
contributor license agreements. See the NOTICE file distributed with
|
||||
this work for additional information regarding copyright ownership.
|
||||
The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
(the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<ivy-module version="1.0">
|
||||
<info organisation="org.apache.hadoop" module="${ant.project.name}">
|
||||
<license name="Apache 2.0"/>
|
||||
<ivyauthor name="Apache Hadoop Team" url="http://hadoop.apache.org"/>
|
||||
<description>
|
||||
Apache Hadoop contrib
|
||||
</description>
|
||||
</info>
|
||||
<configurations defaultconfmapping="default">
|
||||
<!--these match the Maven configurations-->
|
||||
<conf name="default" extends="master,runtime"/>
|
||||
<conf name="master" description="contains the artifact but no dependencies"/>
|
||||
<conf name="runtime" description="runtime but not the artifact" />
|
||||
|
||||
<conf name="common" visibility="private"
|
||||
description="artifacts needed to compile/test the application"/>
|
||||
</configurations>
|
||||
|
||||
<publications>
|
||||
<!--get the artifact from our module name-->
|
||||
<artifact conf="master"/>
|
||||
</publications>
|
||||
<dependencies>
|
||||
<dependency org="org.apache.hadoop"
|
||||
name="hadoop-common"
|
||||
rev="${hadoop-common.version}"
|
||||
conf="common->default"/>
|
||||
<dependency org="org.apache.hadoop"
|
||||
name="hadoop-common-test"
|
||||
rev="${hadoop-common.version}"
|
||||
conf="common->default"/>
|
||||
<dependency org="commons-cli"
|
||||
name="commons-cli"
|
||||
rev="${commons-cli.version}"
|
||||
conf="common->default"/>
|
||||
<dependency org="log4j"
|
||||
name="log4j"
|
||||
rev="${log4j.version}"
|
||||
conf="common->master"/>
|
||||
<dependency org="commons-logging"
|
||||
name="commons-logging"
|
||||
rev="${commons-logging.version}"
|
||||
conf="common->master"/>
|
||||
<dependency org="commons-logging"
|
||||
name="commons-logging-api"
|
||||
rev="${commons-logging-api.version}"
|
||||
conf="common->master"/>
|
||||
<dependency org="junit"
|
||||
name="junit"
|
||||
rev="${junit.version}"
|
||||
conf="common->master"/>
|
||||
<dependency org="org.slf4j"
|
||||
name="slf4j-api"
|
||||
rev="${slf4j-api.version}"
|
||||
conf="common->master"/>
|
||||
<dependency org="org.slf4j"
|
||||
name="slf4j-log4j12"
|
||||
rev="${slf4j-log4j12.version}"
|
||||
conf="common->master"/>
|
||||
<dependency org="xmlenc"
|
||||
name="xmlenc"
|
||||
rev="${xmlenc.version}"
|
||||
conf="common->master"/>
|
||||
<dependency org="org.mortbay.jetty"
|
||||
name="jetty"
|
||||
rev="${jetty.version}"
|
||||
conf="common->master"/>
|
||||
<dependency org="org.mortbay.jetty"
|
||||
name="jsp-api-2.1"
|
||||
rev="${jetty.version}"
|
||||
conf="common->master"/>
|
||||
<dependency org="org.mortbay.jetty"
|
||||
name="jsp-2.1"
|
||||
rev="${jetty.version}"
|
||||
conf="common->master"/>
|
||||
<dependency org="org.mortbay.jetty"
|
||||
name="jetty-util"
|
||||
rev="${jetty-util.version}"
|
||||
conf="common->master"/>
|
||||
<dependency org="org.mortbay.jetty"
|
||||
name="servlet-api-2.5"
|
||||
rev="${servlet-api-2.5.version}"
|
||||
conf="common->master"/>
|
||||
<dependency org="org.eclipse.jdt"
|
||||
name="core"
|
||||
rev="${core.version}"
|
||||
conf="common->master"/>
|
||||
<dependency org="org.apache.cactus" name="cactus.core.framework.uberjar.javaEE.14" rev="${cactus.version}" conf="common->master"/>
|
||||
<dependency org="org.apache.cactus" name="cactus.integration.ant" rev="${cactus.version}" conf="common->master"/>
|
||||
<dependency org="org.apache.cactus" name="cactus.integration.shared.api" rev="${cactus.version}" conf="common->master"/>
|
||||
|
||||
<dependency org="commons-httpclient" name="commons-httpclient" rev="3.1" conf="common->master"/>
|
||||
<dependency org="commons-io" name="commons-io" rev="1.4" conf="common->master"/>
|
||||
<dependency org="commons-lang" name="commons-lang" rev="2.3" conf="common->master"/>
|
||||
<dependency org="commons-codec" name="commons-codec" rev="1.4" conf="common->master"/>
|
||||
|
||||
<dependency org="aspectj" name="aspectjrt" rev="1.5.3" conf="common->master"/>
|
||||
|
||||
<dependency org="org.codehaus.cargo" name="cargo-core-uberjar" rev="0.9" conf="common->master"/>
|
||||
<dependency org="org.codehaus.cargo" name="cargo-ant" rev="0.9" conf="common->master"/>
|
||||
|
||||
<dependency org="javax.servlet" name="jsp-api" rev="2.0" conf="common->master"/>
|
||||
<dependency org="javax.servlet" name="servlet-api" rev="2.5" conf="common->master"/>
|
||||
<dependency org="javax.servlet" name="jstl" rev="1.1.2" conf="common->master"/>
|
||||
<dependency org="taglibs" name="standard" rev="1.1.2" conf="common->master"/>
|
||||
|
||||
<dependency org="junitperf" name="junitperf" rev="1.8" conf="common->master"/>
|
||||
</dependencies>
|
||||
</ivy-module>
|
|
@ -1,18 +0,0 @@
|
|||
#This properties file lists the versions of the various artifacts used by hadoop.
|
||||
#It drives ivy and the generation of a maven POM
|
||||
#These are the versions of our dependencies (in alphabetical order)
|
||||
ivy.version=2.1.0
|
||||
|
||||
log4j.version=1.2.15
|
||||
slf4j-api.version=1.5.11
|
||||
slf4j-log4j12.version=1.5.11
|
||||
jetty.version=6.1.14
|
||||
jetty-util.version=6.1.14
|
||||
servlet-api-2.5.version=6.1.14
|
||||
cactus.version=1.8.0
|
||||
commons-logging.version=1.1.1
|
||||
commons-logging-api.version=1.1
|
||||
junit.version=4.8.1
|
||||
jsp.version=2.1
|
||||
core.version=3.1.1
|
||||
xmlenc.version=0.52
|
|
@ -1,166 +0,0 @@
|
|||
/**
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.apache.hadoop.hdfsproxy;
|
||||
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import org.apache.hadoop.fs.Path;
|
||||
import org.apache.hadoop.security.UserGroupInformation;
|
||||
import org.apache.hadoop.conf.Configuration;
|
||||
|
||||
import javax.servlet.*;
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import java.io.IOException;
|
||||
import java.util.List;
|
||||
import java.util.Arrays;
|
||||
import java.util.regex.Pattern;
|
||||
import java.util.regex.Matcher;
|
||||
|
||||
public class AuthorizationFilter implements Filter {
|
||||
public static final Log LOG = LogFactory.getLog(AuthorizationFilter.class);
|
||||
|
||||
private static final Pattern HDFS_PATH_PATTERN = Pattern
|
||||
.compile("(^hdfs://([\\w\\-]+(\\.)?)+:\\d+|^hdfs://([\\w\\-]+(\\.)?)+)");
|
||||
|
||||
/** Pattern for a filter to find out if a request is HFTP/HSFTP request */
|
||||
protected static final Pattern HFTP_PATTERN = Pattern
|
||||
.compile("^(/listPaths|/data|/streamFile|/file)$");
|
||||
|
||||
protected String namenode;
|
||||
|
||||
/** {@inheritDoc} **/
|
||||
public void init(FilterConfig filterConfig) throws ServletException {
|
||||
Configuration conf = new Configuration(false);
|
||||
conf.addResource("hdfsproxy-default.xml");
|
||||
conf.addResource("hdfsproxy-site.xml");
|
||||
namenode = conf.get("fs.default.name");
|
||||
}
|
||||
|
||||
/** {@inheritDoc} **/
|
||||
@SuppressWarnings("unchecked")
|
||||
public void doFilter(ServletRequest request,
|
||||
ServletResponse response,
|
||||
FilterChain chain)
|
||||
throws IOException, ServletException {
|
||||
|
||||
HttpServletResponse rsp = (HttpServletResponse) response;
|
||||
HttpServletRequest rqst = (HttpServletRequest) request;
|
||||
|
||||
String userId = getUserId(request);
|
||||
String groups = getGroups(request);
|
||||
List<Path> allowedPaths = getAllowedPaths(request);
|
||||
|
||||
UserGroupInformation ugi =
|
||||
UserGroupInformation.createRemoteUser(userId);
|
||||
|
||||
String filePath = getPathFromRequest(rqst);
|
||||
|
||||
if (filePath == null || !checkHdfsPath(filePath, allowedPaths)) {
|
||||
String msg = "User " + userId + " (" + groups
|
||||
+ ") is not authorized to access path " + filePath;
|
||||
LOG.warn(msg);
|
||||
rsp.sendError(HttpServletResponse.SC_FORBIDDEN, msg);
|
||||
return;
|
||||
}
|
||||
request.setAttribute("authorized.ugi", ugi);
|
||||
|
||||
LOG.info("User: " + userId + "(" + groups +
|
||||
") Request: " + rqst.getPathInfo() + " From: " +
|
||||
rqst.getRemoteAddr());
|
||||
|
||||
chain.doFilter(request, response);
|
||||
}
|
||||
|
||||
protected String getUserId(ServletRequest rqst) {
|
||||
String userId = (String) rqst.
|
||||
getAttribute("org.apache.hadoop.hdfsproxy.authorized.userID");
|
||||
if (userId != null)
|
||||
userId = userId.split("[/@]")[0];
|
||||
return userId;
|
||||
}
|
||||
|
||||
protected String getGroups(ServletRequest request) {
|
||||
UserGroupInformation ugi = UserGroupInformation.
|
||||
createRemoteUser(getUserId(request));
|
||||
return Arrays.toString(ugi.getGroupNames());
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
protected List<Path> getAllowedPaths(ServletRequest request) {
|
||||
return (List<Path>)request.
|
||||
getAttribute("org.apache.hadoop.hdfsproxy.authorized.paths");
|
||||
}
|
||||
|
||||
protected String getPathFromRequest(HttpServletRequest rqst) {
|
||||
String filePath = null;
|
||||
// check request path
|
||||
String servletPath = rqst.getServletPath();
|
||||
if (HFTP_PATTERN.matcher(servletPath).matches()) {
|
||||
// file path as part of the URL
|
||||
filePath = rqst.getPathInfo() != null ? rqst.getPathInfo() : "/";
|
||||
}
|
||||
return filePath;
|
||||
}
|
||||
|
||||
/** check that the requested path is listed in the ldap entry
|
||||
* @param pathInfo - Path to check access
|
||||
* @param ldapPaths - List of paths allowed access
|
||||
* @return true if access allowed, false otherwise */
|
||||
public boolean checkHdfsPath(String pathInfo,
|
||||
List<Path> ldapPaths) {
|
||||
if (pathInfo == null || pathInfo.length() == 0) {
|
||||
LOG.info("Can't get file path from the request");
|
||||
return false;
|
||||
}
|
||||
for (Path ldapPathVar : ldapPaths) {
|
||||
String ldapPath = ldapPathVar.toString();
|
||||
if (isPathQualified(ldapPath) &&
|
||||
isPathAuthroized(ldapPath)) {
|
||||
String allowedPath = extractPath(ldapPath);
|
||||
if (pathInfo.startsWith(allowedPath))
|
||||
return true;
|
||||
} else {
|
||||
if (pathInfo.startsWith(ldapPath))
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
private String extractPath(String ldapPath) {
|
||||
return HDFS_PATH_PATTERN.split(ldapPath)[1];
|
||||
}
|
||||
|
||||
private boolean isPathAuthroized(String pathStr) {
|
||||
Matcher namenodeMatcher = HDFS_PATH_PATTERN.matcher(pathStr);
|
||||
return namenodeMatcher.find() && namenodeMatcher.group().contains(namenode);
|
||||
}
|
||||
|
||||
private boolean isPathQualified(String pathStr) {
|
||||
if (pathStr == null || pathStr.trim().isEmpty()) {
|
||||
return false;
|
||||
} else {
|
||||
return HDFS_PATH_PATTERN.matcher(pathStr).find();
|
||||
}
|
||||
}
|
||||
|
||||
/** {@inheritDoc} **/
|
||||
public void destroy() {
|
||||
}
|
||||
}
|
|
@ -1,157 +0,0 @@
|
|||
/**
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.apache.hadoop.hdfsproxy;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
import java.net.InetSocketAddress;
|
||||
import java.net.URI;
|
||||
import java.net.URISyntaxException;
|
||||
import java.net.URL;
|
||||
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import org.apache.hadoop.conf.Configuration;
|
||||
import org.apache.hadoop.net.NetUtils;
|
||||
import org.apache.hadoop.util.StringUtils;
|
||||
import org.apache.hadoop.hdfs.HdfsConfiguration;
|
||||
import org.apache.hadoop.hdfs.server.common.JspHelper;
|
||||
import org.apache.hadoop.hdfs.server.namenode.NameNode;
|
||||
import org.apache.hadoop.hdfs.server.namenode.NameNodeHttpServer;
|
||||
|
||||
/**
|
||||
* A HTTPS/SSL proxy to HDFS, implementing certificate based access control.
|
||||
*/
|
||||
public class HdfsProxy {
|
||||
public static final Log LOG = LogFactory.getLog(HdfsProxy.class);
|
||||
|
||||
private ProxyHttpServer server;
|
||||
private InetSocketAddress sslAddr;
|
||||
|
||||
/** Construct a proxy from the given configuration */
|
||||
public HdfsProxy(Configuration conf) throws IOException {
|
||||
try {
|
||||
initialize(conf);
|
||||
} catch (IOException e) {
|
||||
this.stop();
|
||||
throw e;
|
||||
}
|
||||
}
|
||||
|
||||
private void initialize(Configuration conf) throws IOException {
|
||||
sslAddr = getSslAddr(conf);
|
||||
String nn = conf.get("hdfsproxy.dfs.namenode.address");
|
||||
if (nn == null)
|
||||
throw new IOException("HDFS NameNode address is not specified");
|
||||
InetSocketAddress nnAddr = NetUtils.createSocketAddr(nn);
|
||||
LOG.info("HDFS NameNode is at: " + nnAddr.getHostName() + ":" + nnAddr.getPort());
|
||||
|
||||
Configuration sslConf = new HdfsConfiguration(false);
|
||||
sslConf.addResource(conf.get("hdfsproxy.https.server.keystore.resource",
|
||||
"ssl-server.xml"));
|
||||
// unit testing
|
||||
sslConf.set("proxy.http.test.listener.addr",
|
||||
conf.get("proxy.http.test.listener.addr"));
|
||||
|
||||
this.server = new ProxyHttpServer(sslAddr, sslConf);
|
||||
this.server.setAttribute("proxy.https.port", server.getPort());
|
||||
this.server.setAttribute(NameNodeHttpServer.NAMENODE_ADDRESS_ATTRIBUTE_KEY, nnAddr);
|
||||
this.server.setAttribute(JspHelper.CURRENT_CONF, new HdfsConfiguration());
|
||||
this.server.addGlobalFilter("ProxyFilter", ProxyFilter.class.getName(), null);
|
||||
this.server.addServlet("listPaths", "/listPaths/*", ProxyListPathsServlet.class);
|
||||
this.server.addServlet("data", "/data/*", ProxyFileDataServlet.class);
|
||||
this.server.addServlet("streamFile", "/streamFile/*", ProxyStreamFile.class);
|
||||
}
|
||||
|
||||
/** return the http port if any, only for testing purposes */
|
||||
int getPort() throws IOException {
|
||||
return server.getPort();
|
||||
}
|
||||
|
||||
/**
|
||||
* Start the server.
|
||||
*/
|
||||
public void start() throws IOException {
|
||||
this.server.start();
|
||||
LOG.info("HdfsProxy server up at: " + sslAddr.getHostName() + ":"
|
||||
+ sslAddr.getPort());
|
||||
}
|
||||
|
||||
/**
|
||||
* Stop all server threads and wait for all to finish.
|
||||
*/
|
||||
public void stop() {
|
||||
try {
|
||||
if (server != null) {
|
||||
server.stop();
|
||||
server.join();
|
||||
}
|
||||
} catch (Exception e) {
|
||||
LOG.warn("Got exception shutting down proxy", e);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Wait for service to finish.
|
||||
* (Normally, it runs forever.)
|
||||
*/
|
||||
public void join() {
|
||||
try {
|
||||
this.server.join();
|
||||
} catch (InterruptedException ie) {
|
||||
}
|
||||
}
|
||||
|
||||
static InetSocketAddress getSslAddr(Configuration conf) throws IOException {
|
||||
String addr = conf.get("hdfsproxy.https.address");
|
||||
if (addr == null)
|
||||
throw new IOException("HdfsProxy address is not specified");
|
||||
return NetUtils.createSocketAddr(addr);
|
||||
}
|
||||
|
||||
|
||||
|
||||
public static HdfsProxy createHdfsProxy(String argv[], Configuration conf)
|
||||
throws IOException {
|
||||
if (argv.length > 0) {
|
||||
System.err.println("Usage: HdfsProxy");
|
||||
return null;
|
||||
}
|
||||
if (conf == null) {
|
||||
conf = new HdfsConfiguration(false);
|
||||
conf.addResource("hdfsproxy-default.xml");
|
||||
}
|
||||
|
||||
StringUtils.startupShutdownMessage(HdfsProxy.class, argv, LOG);
|
||||
HdfsProxy proxy = new HdfsProxy(conf);
|
||||
proxy.start();
|
||||
return proxy;
|
||||
}
|
||||
|
||||
public static void main(String[] argv) throws Exception {
|
||||
try {
|
||||
HdfsProxy proxy = createHdfsProxy(argv, null);
|
||||
if (proxy != null)
|
||||
proxy.join();
|
||||
} catch (Throwable e) {
|
||||
LOG.error(StringUtils.stringifyException(e));
|
||||
System.exit(-1);
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,83 +0,0 @@
|
|||
/**
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.apache.hadoop.hdfsproxy;
|
||||
|
||||
import org.apache.hadoop.conf.Configuration;
|
||||
import org.apache.hadoop.fs.CommonConfigurationKeys;
|
||||
import org.apache.hadoop.security.UserGroupInformation;
|
||||
|
||||
import javax.servlet.FilterConfig;
|
||||
import javax.servlet.ServletException;
|
||||
import javax.servlet.ServletRequest;
|
||||
import java.io.IOException;
|
||||
|
||||
/**
|
||||
* This filter is required for hdfsproxies connecting to HDFS
|
||||
* with kerberos authentication. Keytab file and principal to
|
||||
* use for proxy user is retrieved from a configuration file.
|
||||
* If user attribute in ldap doesn't kerberos realm, the
|
||||
* default realm is picked up from configuration.
|
||||
*/
|
||||
public class KerberosAuthorizationFilter
|
||||
extends AuthorizationFilter {
|
||||
|
||||
private String defaultRealm;
|
||||
|
||||
@Override
|
||||
public void init(FilterConfig filterConfig) throws ServletException {
|
||||
super.init(filterConfig);
|
||||
Configuration conf = new Configuration(false);
|
||||
conf.addResource("hdfsproxy-default.xml");
|
||||
conf.addResource("hdfsproxy-site.xml");
|
||||
initializeUGI(conf);
|
||||
initDefaultRealm(conf);
|
||||
}
|
||||
|
||||
private void initializeUGI(Configuration conf) {
|
||||
try {
|
||||
conf.set(CommonConfigurationKeys.HADOOP_SECURITY_AUTHENTICATION,
|
||||
"kerberos");
|
||||
|
||||
UserGroupInformation.setConfiguration(conf);
|
||||
UserGroupInformation.loginUserFromKeytab(
|
||||
conf.get("hdfsproxy.kerberos.principal"),
|
||||
conf.get("hdfsproxy.kerberos.keytab"));
|
||||
|
||||
LOG.info("Logged in user: " +
|
||||
UserGroupInformation.getLoginUser().getUserName() +
|
||||
", Current User: " + UserGroupInformation.getCurrentUser().getUserName());
|
||||
|
||||
} catch (IOException e) {
|
||||
throw new RuntimeException("Unable to initialize credentials", e);
|
||||
}
|
||||
}
|
||||
|
||||
private void initDefaultRealm(Configuration conf) {
|
||||
defaultRealm = conf.get("hdfsproxy.kerberos.default.realm","");
|
||||
}
|
||||
|
||||
@Override
|
||||
/** If the userid does not have realm, add the default realm */
|
||||
protected String getUserId(ServletRequest request) {
|
||||
String userId = (String) request.
|
||||
getAttribute("org.apache.hadoop.hdfsproxy.authorized.userID");
|
||||
return userId +
|
||||
(userId.indexOf('@') > 0 ? "" : defaultRealm);
|
||||
}
|
||||
}
|
|
@ -1,241 +0,0 @@
|
|||
/**
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.apache.hadoop.hdfsproxy;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.net.InetSocketAddress;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Hashtable;
|
||||
import java.util.regex.Pattern;
|
||||
|
||||
import javax.naming.NamingEnumeration;
|
||||
import javax.naming.NamingException;
|
||||
import javax.naming.directory.Attribute;
|
||||
import javax.naming.directory.Attributes;
|
||||
import javax.naming.directory.BasicAttribute;
|
||||
import javax.naming.directory.BasicAttributes;
|
||||
import javax.naming.directory.SearchResult;
|
||||
import javax.naming.ldap.InitialLdapContext;
|
||||
import javax.servlet.Filter;
|
||||
import javax.servlet.FilterChain;
|
||||
import javax.servlet.FilterConfig;
|
||||
import javax.servlet.ServletContext;
|
||||
import javax.servlet.ServletException;
|
||||
import javax.servlet.ServletRequest;
|
||||
import javax.servlet.ServletResponse;
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import org.apache.hadoop.conf.Configuration;
|
||||
import org.apache.hadoop.fs.Path;
|
||||
import org.apache.hadoop.net.NetUtils;
|
||||
import org.apache.hadoop.security.UserGroupInformation;
|
||||
|
||||
import org.apache.hadoop.hdfs.HdfsConfiguration;
|
||||
|
||||
public class LdapIpDirFilter implements Filter {
|
||||
public static final Log LOG = LogFactory.getLog(LdapIpDirFilter.class);
|
||||
|
||||
private static String baseName;
|
||||
private static String hdfsIpSchemaStr;
|
||||
private static String hdfsIpSchemaStrPrefix;
|
||||
private static String hdfsUidSchemaStr;
|
||||
private static String hdfsPathSchemaStr;
|
||||
|
||||
private InitialLdapContext lctx;
|
||||
|
||||
private class LdapRoleEntry {
|
||||
String userId;
|
||||
ArrayList<Path> paths;
|
||||
|
||||
void init(String userId, ArrayList<Path> paths) {
|
||||
this.userId = userId;
|
||||
this.paths = paths;
|
||||
}
|
||||
|
||||
boolean contains(Path path) {
|
||||
return paths != null && paths.contains(path);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "LdapRoleEntry{" +
|
||||
", userId='" + userId + '\'' +
|
||||
", paths=" + paths +
|
||||
'}';
|
||||
}
|
||||
}
|
||||
|
||||
public void initialize(String bName, InitialLdapContext ctx) {
|
||||
// hook to cooperate unit test
|
||||
baseName = bName;
|
||||
hdfsIpSchemaStr = "uniqueMember";
|
||||
hdfsIpSchemaStrPrefix = "cn=";
|
||||
hdfsUidSchemaStr = "uid";
|
||||
hdfsPathSchemaStr = "documentLocation";
|
||||
lctx = ctx;
|
||||
}
|
||||
|
||||
/** {@inheritDoc} */
|
||||
public void init(FilterConfig filterConfig) throws ServletException {
|
||||
ServletContext context = filterConfig.getServletContext();
|
||||
Configuration conf = new HdfsConfiguration(false);
|
||||
conf.addResource("hdfsproxy-default.xml");
|
||||
conf.addResource("hdfsproxy-site.xml");
|
||||
// extract namenode from source conf.
|
||||
String nn = ProxyUtil.getNamenode(conf);
|
||||
InetSocketAddress nAddr = NetUtils.createSocketAddr(nn);
|
||||
context.setAttribute("name.node.address", nAddr);
|
||||
context.setAttribute("name.conf", conf);
|
||||
|
||||
// for storing hostname <--> cluster mapping to decide which source cluster
|
||||
// to forward
|
||||
context.setAttribute("org.apache.hadoop.hdfsproxy.conf", conf);
|
||||
|
||||
if (lctx == null) {
|
||||
Hashtable<String, String> env = new Hashtable<String, String>();
|
||||
env.put(InitialLdapContext.INITIAL_CONTEXT_FACTORY, conf.get(
|
||||
"hdfsproxy.ldap.initial.context.factory",
|
||||
"com.sun.jndi.ldap.LdapCtxFactory"));
|
||||
env.put(InitialLdapContext.PROVIDER_URL, conf
|
||||
.get("hdfsproxy.ldap.provider.url"));
|
||||
|
||||
try {
|
||||
lctx = new InitialLdapContext(env, null);
|
||||
} catch (NamingException ne) {
|
||||
throw new ServletException("NamingException in initializing ldap"
|
||||
+ ne.toString());
|
||||
}
|
||||
|
||||
baseName = conf.get("hdfsproxy.ldap.role.base");
|
||||
hdfsIpSchemaStr = conf.get("hdfsproxy.ldap.ip.schema.string",
|
||||
"uniqueMember");
|
||||
hdfsIpSchemaStrPrefix = conf.get(
|
||||
"hdfsproxy.ldap.ip.schema.string.prefix", "cn=");
|
||||
hdfsUidSchemaStr = conf.get("hdfsproxy.ldap.uid.schema.string", "uid");
|
||||
hdfsPathSchemaStr = conf.get("hdfsproxy.ldap.hdfs.path.schema.string",
|
||||
"documentLocation");
|
||||
}
|
||||
LOG.info("LdapIpDirFilter initialization successful");
|
||||
}
|
||||
|
||||
/** {@inheritDoc} */
|
||||
public void destroy() {
|
||||
}
|
||||
|
||||
/** {@inheritDoc} */
|
||||
public void doFilter(ServletRequest request, ServletResponse response,
|
||||
FilterChain chain) throws IOException, ServletException {
|
||||
|
||||
String prevThreadName = Thread.currentThread().getName();
|
||||
|
||||
try {
|
||||
HttpServletRequest rqst = (HttpServletRequest) request;
|
||||
HttpServletResponse rsp = (HttpServletResponse) response;
|
||||
|
||||
String contextPath = rqst.getContextPath();
|
||||
Thread.currentThread().setName(contextPath);
|
||||
|
||||
if (LOG.isDebugEnabled()) {
|
||||
StringBuilder b = new StringBuilder("Request from ").append(
|
||||
rqst.getRemoteHost()).append("/").append(rqst.getRemoteAddr())
|
||||
.append(":").append(rqst.getRemotePort());
|
||||
b.append("\n The Scheme is " + rqst.getScheme());
|
||||
b.append("\n The Path Info is " + rqst.getPathInfo());
|
||||
b.append("\n The Translated Path Info is " + rqst.getPathTranslated());
|
||||
b.append("\n The Context Path is " + rqst.getContextPath());
|
||||
b.append("\n The Query String is " + rqst.getQueryString());
|
||||
b.append("\n The Request URI is " + rqst.getRequestURI());
|
||||
b.append("\n The Request URL is " + rqst.getRequestURL());
|
||||
b.append("\n The Servlet Path is " + rqst.getServletPath());
|
||||
LOG.debug(b.toString());
|
||||
}
|
||||
LdapRoleEntry ldapent = new LdapRoleEntry();
|
||||
// check ip address
|
||||
String userIp = rqst.getRemoteAddr();
|
||||
try {
|
||||
boolean isAuthorized = getLdapRoleEntryFromUserIp(userIp, ldapent);
|
||||
if (!isAuthorized) {
|
||||
rsp.sendError(HttpServletResponse.SC_FORBIDDEN, "IP " + userIp
|
||||
+ " is not authorized to access");
|
||||
return;
|
||||
}
|
||||
} catch (NamingException ne) {
|
||||
throw new IOException("NamingException while searching ldap"
|
||||
+ ne.toString());
|
||||
}
|
||||
|
||||
// since we cannot pass ugi object cross context as they are from
|
||||
// different
|
||||
// classloaders in different war file, we have to use String attribute.
|
||||
rqst.setAttribute("org.apache.hadoop.hdfsproxy.authorized.userID",
|
||||
ldapent.userId);
|
||||
rqst.setAttribute("org.apache.hadoop.hdfsproxy.authorized.paths",
|
||||
ldapent.paths);
|
||||
LOG.info("User: " + ldapent.userId + ", Request: " + rqst.getPathInfo() +
|
||||
" From: " + rqst.getRemoteAddr());
|
||||
chain.doFilter(request, response);
|
||||
} finally {
|
||||
Thread.currentThread().setName(prevThreadName);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* check if client's ip is listed in the Ldap Roles if yes, return true and
|
||||
* update ldapent. if not, return false
|
||||
* */
|
||||
@SuppressWarnings("unchecked")
|
||||
private boolean getLdapRoleEntryFromUserIp(String userIp,
|
||||
LdapRoleEntry ldapent) throws NamingException {
|
||||
String ipMember = hdfsIpSchemaStrPrefix + userIp;
|
||||
Attributes matchAttrs = new BasicAttributes(true);
|
||||
matchAttrs.put(new BasicAttribute(hdfsIpSchemaStr, ipMember));
|
||||
matchAttrs.put(new BasicAttribute(hdfsUidSchemaStr));
|
||||
matchAttrs.put(new BasicAttribute(hdfsPathSchemaStr));
|
||||
|
||||
String[] attrIDs = { hdfsUidSchemaStr, hdfsPathSchemaStr };
|
||||
|
||||
NamingEnumeration<SearchResult> results = lctx.search(baseName, matchAttrs,
|
||||
attrIDs);
|
||||
if (results.hasMore()) {
|
||||
String userId = null;
|
||||
ArrayList<Path> paths = new ArrayList<Path>();
|
||||
SearchResult sr = results.next();
|
||||
Attributes attrs = sr.getAttributes();
|
||||
for (NamingEnumeration ne = attrs.getAll(); ne.hasMore();) {
|
||||
Attribute attr = (Attribute) ne.next();
|
||||
if (hdfsUidSchemaStr.equalsIgnoreCase(attr.getID())) {
|
||||
userId = (String) attr.get();
|
||||
} else if (hdfsPathSchemaStr.equalsIgnoreCase(attr.getID())) {
|
||||
for (NamingEnumeration e = attr.getAll(); e.hasMore();) {
|
||||
String pathStr = (String) e.next();
|
||||
paths.add(new Path(pathStr));
|
||||
}
|
||||
}
|
||||
}
|
||||
ldapent.init(userId, paths);
|
||||
if (LOG.isDebugEnabled()) LOG.debug(ldapent);
|
||||
return true;
|
||||
}
|
||||
LOG.info("Ip address " + userIp
|
||||
+ " is not authorized to access the proxy server");
|
||||
return false;
|
||||
}
|
||||
}
|
|
@ -1,69 +0,0 @@
|
|||
/**
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.apache.hadoop.hdfsproxy;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.net.InetSocketAddress;
|
||||
import java.net.URI;
|
||||
import java.net.URISyntaxException;
|
||||
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
|
||||
import org.apache.hadoop.conf.Configuration;
|
||||
import org.apache.hadoop.hdfs.protocol.ClientProtocol;
|
||||
import org.apache.hadoop.hdfs.protocol.HdfsFileStatus;
|
||||
import org.apache.hadoop.hdfs.server.common.JspHelper;
|
||||
import org.apache.hadoop.hdfs.server.namenode.FileDataServlet;
|
||||
import org.apache.hadoop.hdfs.server.namenode.NameNode;
|
||||
import org.apache.hadoop.hdfs.server.namenode.NameNodeHttpServer;
|
||||
import org.apache.hadoop.security.UserGroupInformation;
|
||||
|
||||
/** {@inheritDoc} */
|
||||
public class ProxyFileDataServlet extends FileDataServlet {
|
||||
/** For java.io.Serializable */
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** {@inheritDoc} */
|
||||
@Override
|
||||
protected URI createUri(String parent, HdfsFileStatus i, UserGroupInformation ugi,
|
||||
ClientProtocol nnproxy, HttpServletRequest request, String dt) throws IOException,
|
||||
URISyntaxException {
|
||||
String dtParam="";
|
||||
if (dt != null) {
|
||||
dtParam=JspHelper.getDelegationTokenUrlParam(dt);
|
||||
}
|
||||
InetSocketAddress nnAddress = (InetSocketAddress) getServletContext()
|
||||
.getAttribute(NameNodeHttpServer.NAMENODE_ADDRESS_ATTRIBUTE_KEY);
|
||||
String nnHostPort = nnAddress == null ? null : NameNode
|
||||
.getHostPortString(nnAddress);
|
||||
String addrParam = JspHelper.getUrlParam(JspHelper.NAMENODE_ADDRESS,
|
||||
nnHostPort);
|
||||
return new URI(request.getScheme(), null, request.getServerName(), request
|
||||
.getServerPort(), "/streamFile" + i.getFullName(parent),
|
||||
"&ugi=" + ugi.getShortUserName() + dtParam + addrParam, null);
|
||||
}
|
||||
|
||||
/** {@inheritDoc} */
|
||||
@Override
|
||||
protected UserGroupInformation getUGI(HttpServletRequest request,
|
||||
Configuration conf) {
|
||||
String userID = (String) request
|
||||
.getAttribute("org.apache.hadoop.hdfsproxy.authorized.userID");
|
||||
return ProxyUtil.getProxyUGIFor(userID);
|
||||
}
|
||||
}
|
|
@ -1,43 +0,0 @@
|
|||
/**
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.apache.hadoop.hdfsproxy;
|
||||
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
|
||||
import org.apache.hadoop.security.UserGroupInformation;
|
||||
|
||||
|
||||
public class ProxyFileForward extends ProxyForwardServlet {
|
||||
/** For java.io.Serializable */
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** {@inheritDoc} */
|
||||
@Override
|
||||
protected String buildForwardPath(HttpServletRequest request, String pathInfo) {
|
||||
String path = "/streamFile";
|
||||
path += request.getPathInfo();
|
||||
String userID = (String) request.
|
||||
getAttribute("org.apache.hadoop.hdfsproxy.authorized.userID");
|
||||
UserGroupInformation ugi = ProxyUtil.getProxyUGIFor(userID);
|
||||
if (ugi != null) {
|
||||
path += "?ugi=" + ugi.getShortUserName();
|
||||
}
|
||||
return path;
|
||||
}
|
||||
|
||||
}
|
|
@ -1,368 +0,0 @@
|
|||
/**
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.apache.hadoop.hdfsproxy;
|
||||
|
||||
import java.io.FileInputStream;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.math.BigInteger;
|
||||
import java.security.cert.CertificateFactory;
|
||||
import java.security.cert.X509Certificate;
|
||||
import java.security.cert.CertificateExpiredException;
|
||||
import java.security.cert.CertificateNotYetValidException;
|
||||
import java.util.Enumeration;
|
||||
import java.util.HashMap;
|
||||
import java.util.HashSet;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
import java.util.regex.Pattern;
|
||||
import java.net.InetSocketAddress;
|
||||
|
||||
import javax.servlet.Filter;
|
||||
import javax.servlet.FilterChain;
|
||||
import javax.servlet.FilterConfig;
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import javax.servlet.ServletException;
|
||||
import javax.servlet.ServletRequest;
|
||||
import javax.servlet.ServletResponse;
|
||||
import javax.servlet.ServletContext;
|
||||
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import org.apache.hadoop.conf.Configuration;
|
||||
import org.apache.hadoop.fs.Path;
|
||||
import org.apache.hadoop.security.UserGroupInformation;
|
||||
import org.apache.hadoop.net.NetUtils;
|
||||
|
||||
import org.apache.hadoop.hdfs.HdfsConfiguration;
|
||||
|
||||
public class ProxyFilter implements Filter {
|
||||
public static final Log LOG = LogFactory.getLog(ProxyFilter.class);
|
||||
|
||||
/** Pattern for triggering reload of user permissions */
|
||||
protected static final Pattern RELOAD_PATTERN = Pattern
|
||||
.compile("^(/reloadPermFiles)$");
|
||||
/** Pattern for a filter to find out if a request is HFTP/HSFTP request */
|
||||
protected static final Pattern HFTP_PATTERN = Pattern
|
||||
.compile("^(/listPaths|/data|/streamFile|/file)$");
|
||||
/**
|
||||
* Pattern for a filter to find out if an HFTP/HSFTP request stores its file
|
||||
* path in the extra path information associated with the URL; if not, the
|
||||
* file path is stored in request parameter "filename"
|
||||
*/
|
||||
protected static final Pattern FILEPATH_PATTERN = Pattern
|
||||
.compile("^(/listPaths|/data|/file)$");
|
||||
|
||||
private static volatile Map<String, Set<Path>> permsMap;
|
||||
private static volatile Map<String, Set<BigInteger>> certsMap;
|
||||
static {
|
||||
Configuration conf = new HdfsConfiguration(false);
|
||||
conf.addResource("hdfsproxy-default.xml");
|
||||
Map<String, Set<Path>> pMap = getPermMap(conf);
|
||||
permsMap = pMap != null ? pMap : new HashMap<String, Set<Path>>();
|
||||
Map<String, Set<BigInteger>> cMap = getCertsMap(conf);
|
||||
certsMap = cMap != null ? cMap : new HashMap<String, Set<BigInteger>>();
|
||||
}
|
||||
|
||||
|
||||
/** {@inheritDoc} */
|
||||
public void init(FilterConfig filterConfig) throws ServletException {
|
||||
ServletContext context = filterConfig.getServletContext();
|
||||
Configuration conf = new HdfsConfiguration(false);
|
||||
conf.addResource("hdfsproxy-default.xml");
|
||||
conf.addResource("ssl-server.xml");
|
||||
conf.addResource("hdfsproxy-site.xml");
|
||||
String nn = conf.get("hdfsproxy.dfs.namenode.address");
|
||||
if (nn == null) {
|
||||
throw new ServletException("Proxy source cluster name node address not speficied");
|
||||
}
|
||||
InetSocketAddress nAddr = NetUtils.createSocketAddr(nn);
|
||||
context.setAttribute("name.node.address", nAddr);
|
||||
context.setAttribute("name.conf", new HdfsConfiguration());
|
||||
|
||||
context.setAttribute("org.apache.hadoop.hdfsproxy.conf", conf);
|
||||
LOG.info("proxyFilter initialization success: " + nn);
|
||||
}
|
||||
|
||||
private static Map<String, Set<Path>> getPermMap(Configuration conf) {
|
||||
String permLoc = conf.get("hdfsproxy.user.permissions.file.location",
|
||||
"user-permissions.xml");
|
||||
if (conf.getResource(permLoc) == null) {
|
||||
LOG.warn("HdfsProxy user permissions file not found");
|
||||
return null;
|
||||
}
|
||||
Configuration permConf = new HdfsConfiguration(false);
|
||||
permConf.addResource(permLoc);
|
||||
Map<String, Set<Path>> map = new HashMap<String, Set<Path>>();
|
||||
for (Map.Entry<String, String> e : permConf) {
|
||||
String k = e.getKey();
|
||||
String v = e.getValue();
|
||||
if (k != null && k.length() != 0 && v != null && v.length() != 0) {
|
||||
Set<Path> pathSet = new HashSet<Path>();
|
||||
String[] paths = v.split(",\\s*");
|
||||
for (String p : paths) {
|
||||
if (p.length() != 0) {
|
||||
pathSet.add(new Path(p));
|
||||
}
|
||||
}
|
||||
map.put(k, pathSet);
|
||||
}
|
||||
}
|
||||
return map;
|
||||
}
|
||||
|
||||
private static Map<String, Set<BigInteger>> getCertsMap(Configuration conf) {
|
||||
String certsLoc = conf.get("hdfsproxy.user.certs.file.location",
|
||||
"user-certs.xml");
|
||||
if (conf.getResource(certsLoc) == null) {
|
||||
LOG.warn("HdfsProxy user certs file not found");
|
||||
return null;
|
||||
}
|
||||
Configuration certsConf = new HdfsConfiguration(false);
|
||||
certsConf.addResource(certsLoc);
|
||||
Map<String, Set<BigInteger>> map = new HashMap<String, Set<BigInteger>>();
|
||||
for (Map.Entry<String, String> e : certsConf) {
|
||||
String k = e.getKey();
|
||||
String v = e.getValue().trim();
|
||||
if (k != null && k.length() != 0 && v != null && v.length() != 0) {
|
||||
Set<BigInteger> numSet = new HashSet<BigInteger>();
|
||||
String[] serialnumbers = v.split("\\s*,\\s*");
|
||||
for (String num : serialnumbers) {
|
||||
if (num.length() != 0) {
|
||||
numSet.add(new BigInteger(num, 16));
|
||||
}
|
||||
}
|
||||
map.put(k, numSet);
|
||||
}
|
||||
}
|
||||
return map;
|
||||
}
|
||||
|
||||
/** {@inheritDoc} */
|
||||
public void destroy() {
|
||||
}
|
||||
|
||||
|
||||
|
||||
/** {@inheritDoc} */
|
||||
public void doFilter(ServletRequest request, ServletResponse response,
|
||||
FilterChain chain) throws IOException, ServletException {
|
||||
|
||||
HttpServletRequest rqst = (HttpServletRequest) request;
|
||||
HttpServletResponse rsp = (HttpServletResponse) response;
|
||||
|
||||
if (LOG.isDebugEnabled()) {
|
||||
StringBuilder b = new StringBuilder("Request from ").append(
|
||||
rqst.getRemoteHost()).append("/").append(rqst.getRemoteAddr())
|
||||
.append(":").append(rqst.getRemotePort());
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
Enumeration<String> e = rqst.getAttributeNames();
|
||||
for (; e.hasMoreElements();) {
|
||||
String attribute = e.nextElement();
|
||||
b.append("\n " + attribute + " => " + rqst.getAttribute(attribute));
|
||||
}
|
||||
|
||||
X509Certificate[] userCerts = (X509Certificate[]) rqst
|
||||
.getAttribute("javax.servlet.request.X509Certificate");
|
||||
if (userCerts != null)
|
||||
for (X509Certificate cert : userCerts)
|
||||
b.append("\n Client certificate Subject Name is "
|
||||
+ cert.getSubjectX500Principal().getName());
|
||||
|
||||
b.append("\n The Scheme is " + rqst.getScheme());
|
||||
b.append("\n The Auth Type is " + rqst.getAuthType());
|
||||
b.append("\n The Path Info is " + rqst.getPathInfo());
|
||||
b.append("\n The Translated Path Info is " + rqst.getPathTranslated());
|
||||
b.append("\n The Context Path is " + rqst.getContextPath());
|
||||
b.append("\n The Query String is " + rqst.getQueryString());
|
||||
b.append("\n The Remote User is " + rqst.getRemoteUser());
|
||||
b.append("\n The User Principal is " + rqst.getUserPrincipal());
|
||||
b.append("\n The Request URI is " + rqst.getRequestURI());
|
||||
b.append("\n The Request URL is " + rqst.getRequestURL());
|
||||
b.append("\n The Servlet Path is " + rqst.getServletPath());
|
||||
|
||||
LOG.debug(b.toString());
|
||||
}
|
||||
|
||||
boolean unitTest = false;
|
||||
if (rqst.getScheme().equalsIgnoreCase("http") && rqst.getParameter("UnitTest") != null) unitTest = true;
|
||||
|
||||
if (rqst.getScheme().equalsIgnoreCase("https") || unitTest) {
|
||||
boolean isAuthorized = false;
|
||||
X509Certificate[] certs = (X509Certificate[]) rqst.getAttribute("javax.servlet.request.X509Certificate");
|
||||
|
||||
if (unitTest) {
|
||||
try {
|
||||
if (LOG.isDebugEnabled()) {
|
||||
LOG.debug("==> Entering https unit test");
|
||||
}
|
||||
String SslPath = rqst.getParameter("SslPath");
|
||||
InputStream inStream = new FileInputStream(SslPath);
|
||||
CertificateFactory cf = CertificateFactory.getInstance("X.509");
|
||||
X509Certificate cert = (X509Certificate)cf.generateCertificate(inStream);
|
||||
inStream.close();
|
||||
certs = new X509Certificate[] {cert};
|
||||
} catch (Exception e) {
|
||||
// do nothing here
|
||||
}
|
||||
}
|
||||
|
||||
if (certs == null || certs.length == 0) {
|
||||
rsp.sendError(HttpServletResponse.SC_BAD_REQUEST,
|
||||
"No client SSL certificate received");
|
||||
LOG.info("No Client SSL certificate received");
|
||||
return;
|
||||
}
|
||||
for (X509Certificate cert : certs) {
|
||||
try {
|
||||
cert.checkValidity();
|
||||
} catch (CertificateExpiredException e) {
|
||||
LOG.info("Received cert for "
|
||||
+ cert.getSubjectX500Principal().getName() + " expired");
|
||||
rsp
|
||||
.sendError(HttpServletResponse.SC_FORBIDDEN,
|
||||
"Certificate expired");
|
||||
return;
|
||||
} catch (CertificateNotYetValidException e) {
|
||||
LOG.info("Received cert for "
|
||||
+ cert.getSubjectX500Principal().getName() + " is not yet valid");
|
||||
rsp.sendError(HttpServletResponse.SC_FORBIDDEN,
|
||||
"Certificate is not yet valid");
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
String[] tokens = certs[0].getSubjectX500Principal().getName().split(
|
||||
"\\s*,\\s*");
|
||||
String userID = null;
|
||||
for (String s : tokens) {
|
||||
if (s.startsWith("CN=")) {
|
||||
userID = s;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (userID == null || userID.length() < 4) {
|
||||
LOG.info("Can't retrieve user ID from SSL certificate");
|
||||
rsp.sendError(HttpServletResponse.SC_FORBIDDEN,
|
||||
"Can't retrieve user ID from SSL certificate");
|
||||
return;
|
||||
}
|
||||
userID = userID.substring(3);
|
||||
|
||||
String servletPath = rqst.getServletPath();
|
||||
if (unitTest) {
|
||||
servletPath = rqst.getParameter("TestSevletPathInfo");
|
||||
LOG.info("this is for unit test purpose only");
|
||||
}
|
||||
|
||||
if (HFTP_PATTERN.matcher(servletPath).matches()) {
|
||||
// request is an HSFTP request
|
||||
if (FILEPATH_PATTERN.matcher(servletPath).matches()) {
|
||||
// file path as part of the URL
|
||||
isAuthorized = checkPath(userID, certs[0],
|
||||
rqst.getPathInfo() != null ? rqst.getPathInfo() : "/");
|
||||
} else {
|
||||
// file path is stored in "filename" parameter
|
||||
isAuthorized = checkPath(userID, certs[0], rqst
|
||||
.getParameter("filename"));
|
||||
}
|
||||
} else if (RELOAD_PATTERN.matcher(servletPath).matches()
|
||||
&& checkUser("Admin", certs[0])) {
|
||||
Configuration conf = new HdfsConfiguration(false);
|
||||
conf.addResource("hdfsproxy-default.xml");
|
||||
Map<String, Set<Path>> permsMap = getPermMap(conf);
|
||||
Map<String, Set<BigInteger>> certsMap = getCertsMap(conf);
|
||||
if (permsMap == null || certsMap == null) {
|
||||
LOG.warn("Permission files reloading failed");
|
||||
rsp.sendError(HttpServletResponse.SC_INTERNAL_SERVER_ERROR,
|
||||
"Permission files reloading failed");
|
||||
return;
|
||||
}
|
||||
ProxyFilter.permsMap = permsMap;
|
||||
ProxyFilter.certsMap = certsMap;
|
||||
LOG.info("User permissions and user certs files reloaded");
|
||||
rsp.setStatus(HttpServletResponse.SC_OK);
|
||||
return;
|
||||
}
|
||||
|
||||
if (!isAuthorized) {
|
||||
rsp.sendError(HttpServletResponse.SC_FORBIDDEN, "Unauthorized access");
|
||||
return;
|
||||
}
|
||||
|
||||
// request is authorized, set ugi for servlets
|
||||
UserGroupInformation ugi = UserGroupInformation.createRemoteUser(userID);
|
||||
rqst.setAttribute("authorized.ugi", ugi);
|
||||
rqst.setAttribute("org.apache.hadoop.hdfsproxy.authorized.userID", userID);
|
||||
} else if(rqst.getScheme().equalsIgnoreCase("http")) { // http request, set ugi for servlets, only for testing purposes
|
||||
String ugi = rqst.getParameter("ugi");
|
||||
if (ugi != null) {
|
||||
rqst.setAttribute("authorized.ugi", UserGroupInformation.createRemoteUser(ugi));
|
||||
rqst.setAttribute("org.apache.hadoop.hdfsproxy.authorized.userID", ugi.split(",")[0]);
|
||||
}
|
||||
}
|
||||
chain.doFilter(request, response);
|
||||
}
|
||||
|
||||
/** check that client's cert is listed in the user certs file */
|
||||
private boolean checkUser(String userID, X509Certificate cert) {
|
||||
Set<BigInteger> numSet = certsMap.get(userID);
|
||||
if (numSet == null) {
|
||||
LOG.info("User " + userID + " is not configured in the user certs file");
|
||||
return false;
|
||||
}
|
||||
if (!numSet.contains(cert.getSerialNumber())) {
|
||||
LOG.info("Cert with serial number " + cert.getSerialNumber()
|
||||
+ " is not listed for user " + userID);
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
/** check that the requested path is listed in the user permissions file */
|
||||
private boolean checkPath(String userID, X509Certificate cert, String pathInfo) {
|
||||
if (!checkUser(userID, cert)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
Set<Path> pathSet = permsMap.get(userID);
|
||||
if (pathSet == null) {
|
||||
LOG.info("User " + userID
|
||||
+ " is not listed in the user permissions file");
|
||||
return false;
|
||||
}
|
||||
if (pathInfo == null || pathInfo.length() == 0) {
|
||||
LOG.info("Can't get file path from HTTPS request; user is " + userID);
|
||||
return false;
|
||||
}
|
||||
|
||||
Path userPath = new Path(pathInfo);
|
||||
while (userPath != null) {
|
||||
if (LOG.isDebugEnabled()) {
|
||||
LOG.debug("\n Checking file path " + userPath);
|
||||
}
|
||||
if (pathSet.contains(userPath))
|
||||
return true;
|
||||
userPath = userPath.getParent();
|
||||
}
|
||||
LOG.info("User " + userID + " is not authorized to access " + pathInfo);
|
||||
return false;
|
||||
}
|
||||
}
|
|
@ -1,110 +0,0 @@
|
|||
/**
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.apache.hadoop.hdfsproxy;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
import javax.servlet.RequestDispatcher;
|
||||
import javax.servlet.ServletContext;
|
||||
import javax.servlet.ServletException;
|
||||
import javax.servlet.http.HttpServlet;
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import org.apache.hadoop.conf.Configuration;
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
*/
|
||||
public class ProxyForwardServlet extends HttpServlet {
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = 1L;
|
||||
private static Configuration configuration = null;
|
||||
public static final Log LOG = LogFactory.getLog(ProxyForwardServlet.class);
|
||||
|
||||
/** {@inheritDoc} */
|
||||
@Override
|
||||
public void init() throws ServletException {
|
||||
ServletContext context = getServletContext();
|
||||
configuration = (Configuration) context
|
||||
.getAttribute("org.apache.hadoop.hdfsproxy.conf");
|
||||
}
|
||||
|
||||
/** {@inheritDoc} */
|
||||
@Override
|
||||
public void doGet(HttpServletRequest request, HttpServletResponse response)
|
||||
throws IOException, ServletException {
|
||||
String hostname = request.getServerName();
|
||||
|
||||
String version = configuration.get(hostname);
|
||||
if (version == null) {
|
||||
// extract from hostname directly
|
||||
String[] strs = hostname.split("[-\\.]");
|
||||
version = "/" + strs[0];
|
||||
}
|
||||
|
||||
ServletContext curContext = getServletContext();
|
||||
ServletContext dstContext = curContext.getContext(version);
|
||||
|
||||
// avoid infinite forwarding.
|
||||
if (dstContext == null
|
||||
|| getServletContext().equals(dstContext)) {
|
||||
LOG.error("Context (" + version
|
||||
+ ".war) non-exist or restricted from access");
|
||||
response.sendError(HttpServletResponse.SC_NOT_FOUND);
|
||||
return;
|
||||
}
|
||||
if(LOG.isDebugEnabled()) {
|
||||
LOG.debug("Request to " + hostname +
|
||||
" is forwarded to version " + version);
|
||||
}
|
||||
forwardRequest(request, response, dstContext, request.getServletPath());
|
||||
|
||||
}
|
||||
|
||||
/** {@inheritDoc} */
|
||||
public void forwardRequest(HttpServletRequest request,
|
||||
HttpServletResponse response, ServletContext context, String pathInfo)
|
||||
throws IOException, ServletException {
|
||||
String path = buildForwardPath(request, pathInfo);
|
||||
RequestDispatcher dispatcher = context.getRequestDispatcher(path);
|
||||
if (dispatcher == null) {
|
||||
LOG.info("There was no such dispatcher: " + path);
|
||||
response.sendError(HttpServletResponse.SC_NO_CONTENT);
|
||||
return;
|
||||
}
|
||||
dispatcher.forward(request, response);
|
||||
}
|
||||
|
||||
/** {@inheritDoc} */
|
||||
protected String buildForwardPath(HttpServletRequest request, String pathInfo) {
|
||||
String path = pathInfo;
|
||||
if (request.getPathInfo() != null) {
|
||||
path += request.getPathInfo();
|
||||
}
|
||||
if (request.getQueryString() != null) {
|
||||
path += "?" + request.getQueryString();
|
||||
}
|
||||
return path;
|
||||
}
|
||||
}
|
|
@ -1,76 +0,0 @@
|
|||
/**
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.apache.hadoop.hdfsproxy;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.net.InetSocketAddress;
|
||||
import java.util.Map;
|
||||
|
||||
import javax.servlet.http.HttpServlet;
|
||||
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import org.apache.hadoop.conf.Configuration;
|
||||
import org.apache.hadoop.http.HttpServer;
|
||||
import org.apache.hadoop.net.NetUtils;
|
||||
|
||||
import org.mortbay.jetty.Connector;
|
||||
import org.mortbay.jetty.nio.SelectChannelConnector;
|
||||
import org.mortbay.jetty.security.SslSocketConnector;
|
||||
|
||||
/**
|
||||
* Create a Jetty embedded server to answer http/https requests.
|
||||
*/
|
||||
public class ProxyHttpServer extends HttpServer {
|
||||
public static final Log LOG = LogFactory.getLog(ProxyHttpServer.class);
|
||||
|
||||
public ProxyHttpServer(InetSocketAddress addr, Configuration conf)
|
||||
throws IOException {
|
||||
super("", addr.getHostName(), addr.getPort(), 0 <= addr.getPort(), conf);
|
||||
}
|
||||
|
||||
/** {@inheritDoc} */
|
||||
public Connector createBaseListener(Configuration conf)
|
||||
throws IOException {
|
||||
final String sAddr;
|
||||
if (null == (sAddr = conf.get("proxy.http.test.listener.addr"))) {
|
||||
SslSocketConnector sslListener = new SslSocketConnector();
|
||||
sslListener.setKeystore(conf.get("ssl.server.keystore.location"));
|
||||
sslListener.setPassword(conf.get("ssl.server.keystore.password", ""));
|
||||
sslListener.setKeyPassword(conf.get("ssl.server.keystore.keypassword", ""));
|
||||
sslListener.setKeystoreType(conf.get("ssl.server.keystore.type", "jks"));
|
||||
sslListener.setNeedClientAuth(true);
|
||||
System.setProperty("javax.net.ssl.trustStore",
|
||||
conf.get("ssl.server.truststore.location", ""));
|
||||
System.setProperty("javax.net.ssl.trustStorePassword",
|
||||
conf.get("ssl.server.truststore.password", ""));
|
||||
System.setProperty("javax.net.ssl.trustStoreType",
|
||||
conf.get("ssl.server.truststore.type", "jks"));
|
||||
return sslListener;
|
||||
}
|
||||
// unit test
|
||||
InetSocketAddress proxyAddr = NetUtils.createSocketAddr(sAddr);
|
||||
SelectChannelConnector testlistener = new SelectChannelConnector();
|
||||
testlistener.setUseDirectBuffers(false);
|
||||
testlistener.setHost(proxyAddr.getHostName());
|
||||
testlistener.setPort(proxyAddr.getPort());
|
||||
return testlistener;
|
||||
}
|
||||
|
||||
}
|
|
@ -1,39 +0,0 @@
|
|||
/**
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.apache.hadoop.hdfsproxy;
|
||||
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
|
||||
import org.apache.hadoop.hdfs.server.namenode.ListPathsServlet;
|
||||
import org.apache.hadoop.security.UserGroupInformation;
|
||||
import org.apache.hadoop.conf.Configuration;
|
||||
|
||||
/** {@inheritDoc} */
|
||||
public class ProxyListPathsServlet extends ListPathsServlet {
|
||||
/** For java.io.Serializable */
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** {@inheritDoc} */
|
||||
@Override
|
||||
protected UserGroupInformation getUGI(HttpServletRequest request,
|
||||
Configuration conf) {
|
||||
String userID = (String) request
|
||||
.getAttribute("org.apache.hadoop.hdfsproxy.authorized.userID");
|
||||
return ProxyUtil.getProxyUGIFor(userID);
|
||||
}
|
||||
}
|
|
@ -1,67 +0,0 @@
|
|||
/**
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.apache.hadoop.hdfsproxy;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.net.InetSocketAddress;
|
||||
import java.security.PrivilegedExceptionAction;
|
||||
|
||||
import javax.servlet.ServletContext;
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
|
||||
import org.apache.hadoop.hdfs.DFSClient;
|
||||
import org.apache.hadoop.hdfs.server.namenode.StreamFile;
|
||||
import org.apache.hadoop.security.UserGroupInformation;
|
||||
import org.apache.hadoop.conf.Configuration;
|
||||
|
||||
/** {@inheritDoc} */
|
||||
public class ProxyStreamFile extends StreamFile {
|
||||
/** For java.io.Serializable */
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** {@inheritDoc} */
|
||||
@Override
|
||||
protected DFSClient getDFSClient(HttpServletRequest request)
|
||||
throws IOException, InterruptedException {
|
||||
ServletContext context = getServletContext();
|
||||
final Configuration conf =
|
||||
(Configuration) context.getAttribute("name.conf");
|
||||
final InetSocketAddress nameNodeAddr =
|
||||
(InetSocketAddress) context.getAttribute("name.node.address");
|
||||
|
||||
DFSClient client = getUGI(request, conf).doAs
|
||||
( new PrivilegedExceptionAction<DFSClient>() {
|
||||
@Override
|
||||
public DFSClient run() throws IOException {
|
||||
return new DFSClient(nameNodeAddr, conf);
|
||||
}
|
||||
});
|
||||
|
||||
return client;
|
||||
}
|
||||
|
||||
/** {@inheritDoc} */
|
||||
@Override
|
||||
protected UserGroupInformation getUGI(HttpServletRequest request,
|
||||
Configuration conf) {
|
||||
String userID = (String) request
|
||||
.getAttribute("org.apache.hadoop.hdfsproxy.authorized.userID");
|
||||
return ProxyUtil.getProxyUGIFor(userID);
|
||||
}
|
||||
|
||||
}
|
|
@ -1,358 +0,0 @@
|
|||
/**
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.apache.hadoop.hdfsproxy;
|
||||
|
||||
import java.io.FileInputStream;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.net.HttpURLConnection;
|
||||
import java.net.InetSocketAddress;
|
||||
import java.net.URI;
|
||||
import java.net.URISyntaxException;
|
||||
import java.net.URL;
|
||||
import java.security.KeyStore;
|
||||
import java.security.cert.X509Certificate;
|
||||
import java.util.Date;
|
||||
import java.util.Set;
|
||||
|
||||
import javax.net.ssl.HostnameVerifier;
|
||||
import javax.net.ssl.HttpsURLConnection;
|
||||
import javax.net.ssl.KeyManager;
|
||||
import javax.net.ssl.KeyManagerFactory;
|
||||
import javax.net.ssl.SSLContext;
|
||||
import javax.net.ssl.SSLSession;
|
||||
import javax.net.ssl.TrustManager;
|
||||
import javax.net.ssl.TrustManagerFactory;
|
||||
import javax.net.ssl.X509TrustManager;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import javax.servlet.ServletException;
|
||||
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import org.apache.hadoop.conf.Configuration;
|
||||
import org.apache.hadoop.fs.FSDataInputStream;
|
||||
import org.apache.hadoop.fs.FSInputStream;
|
||||
import org.apache.hadoop.io.IOUtils;
|
||||
import org.apache.hadoop.net.NetUtils;
|
||||
import org.apache.hadoop.util.HostsFileReader;
|
||||
import org.apache.hadoop.security.UserGroupInformation;
|
||||
|
||||
import org.apache.hadoop.hdfs.HdfsConfiguration;
|
||||
|
||||
/**
|
||||
* Proxy Utility .
|
||||
*/
|
||||
public class ProxyUtil {
|
||||
public static final Log LOG = LogFactory.getLog(ProxyUtil.class);
|
||||
private static final long MM_SECONDS_PER_DAY = 1000 * 60 * 60 * 24;
|
||||
private static final int CERT_EXPIRATION_WARNING_THRESHOLD = 30; // 30 days
|
||||
|
||||
// warning
|
||||
|
||||
private static enum UtilityOption {
|
||||
RELOAD("-reloadPermFiles"), GET("-get"), CHECKCERTS(
|
||||
"-checkcerts");
|
||||
|
||||
private String name = null;
|
||||
|
||||
private UtilityOption(String arg) {
|
||||
this.name = arg;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Dummy hostname verifier that is used to bypass hostname checking
|
||||
*/
|
||||
private static class DummyHostnameVerifier implements HostnameVerifier {
|
||||
public boolean verify(String hostname, SSLSession session) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Dummy trustmanager that is used to bypass server certificate checking
|
||||
*/
|
||||
private static class DummyTrustManager implements X509TrustManager {
|
||||
public void checkClientTrusted(X509Certificate[] chain, String authType) {
|
||||
}
|
||||
|
||||
public void checkServerTrusted(X509Certificate[] chain, String authType) {
|
||||
}
|
||||
|
||||
public X509Certificate[] getAcceptedIssuers() {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
private static HttpsURLConnection openConnection(String hostname, int port,
|
||||
String path) throws IOException {
|
||||
try {
|
||||
final URL url = new URI("https", null, hostname, port, path, null, null)
|
||||
.toURL();
|
||||
HttpsURLConnection conn = (HttpsURLConnection) url.openConnection();
|
||||
// bypass hostname verification
|
||||
conn.setHostnameVerifier(new DummyHostnameVerifier());
|
||||
conn.setRequestMethod("GET");
|
||||
return conn;
|
||||
} catch (URISyntaxException e) {
|
||||
throw (IOException) new IOException().initCause(e);
|
||||
}
|
||||
}
|
||||
|
||||
private static void setupSslProps(Configuration conf) throws IOException {
|
||||
FileInputStream fis = null;
|
||||
try {
|
||||
SSLContext sc = SSLContext.getInstance("SSL");
|
||||
KeyManager[] kms = null;
|
||||
TrustManager[] tms = null;
|
||||
if (conf.get("ssl.client.keystore.location") != null) {
|
||||
// initialize default key manager with keystore file and pass
|
||||
KeyManagerFactory kmf = KeyManagerFactory.getInstance("SunX509");
|
||||
KeyStore ks = KeyStore.getInstance(conf.get("ssl.client.keystore.type",
|
||||
"JKS"));
|
||||
char[] ksPass = conf.get("ssl.client.keystore.password", "changeit")
|
||||
.toCharArray();
|
||||
fis = new FileInputStream(conf.get("ssl.client.keystore.location",
|
||||
"keystore.jks"));
|
||||
ks.load(fis, ksPass);
|
||||
kmf.init(ks, conf.get("ssl.client.keystore.keypassword", "changeit")
|
||||
.toCharArray());
|
||||
kms = kmf.getKeyManagers();
|
||||
fis.close();
|
||||
fis = null;
|
||||
}
|
||||
// initialize default trust manager with keystore file and pass
|
||||
if (conf.getBoolean("ssl.client.do.not.authenticate.server", false)) {
|
||||
// by pass trustmanager validation
|
||||
tms = new DummyTrustManager[] { new DummyTrustManager() };
|
||||
} else {
|
||||
TrustManagerFactory tmf = TrustManagerFactory.getInstance("PKIX");
|
||||
KeyStore ts = KeyStore.getInstance(conf.get(
|
||||
"ssl.client.truststore.type", "JKS"));
|
||||
char[] tsPass = conf.get("ssl.client.truststore.password", "changeit")
|
||||
.toCharArray();
|
||||
fis = new FileInputStream(conf.get("ssl.client.truststore.location",
|
||||
"truststore.jks"));
|
||||
ts.load(fis, tsPass);
|
||||
tmf.init(ts);
|
||||
tms = tmf.getTrustManagers();
|
||||
}
|
||||
sc.init(kms, tms, new java.security.SecureRandom());
|
||||
HttpsURLConnection.setDefaultSSLSocketFactory(sc.getSocketFactory());
|
||||
} catch (Exception e) {
|
||||
throw new IOException("Could not initialize SSLContext", e);
|
||||
} finally {
|
||||
if (fis != null) {
|
||||
fis.close();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static InetSocketAddress getSslAddr(Configuration conf) throws IOException {
|
||||
String addr = conf.get("hdfsproxy.https.address");
|
||||
if (addr == null)
|
||||
throw new IOException("HdfsProxy address is not specified");
|
||||
return NetUtils.createSocketAddr(addr);
|
||||
}
|
||||
|
||||
static boolean sendCommand(Configuration conf, String path)
|
||||
throws IOException {
|
||||
setupSslProps(conf);
|
||||
int sslPort = getSslAddr(conf).getPort();
|
||||
int err = 0;
|
||||
StringBuilder b = new StringBuilder();
|
||||
|
||||
HostsFileReader hostsReader = new HostsFileReader(conf.get(
|
||||
"hdfsproxy.hosts", "hdfsproxy-hosts"), "");
|
||||
Set<String> hostsList = hostsReader.getHosts();
|
||||
for (String hostname : hostsList) {
|
||||
HttpsURLConnection connection = null;
|
||||
try {
|
||||
connection = openConnection(hostname, sslPort, path);
|
||||
connection.connect();
|
||||
if (LOG.isDebugEnabled()) {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
X509Certificate[] clientCerts = (X509Certificate[]) connection
|
||||
.getLocalCertificates();
|
||||
if (clientCerts != null) {
|
||||
for (X509Certificate cert : clientCerts)
|
||||
sb.append("\n Client certificate Subject Name is "
|
||||
+ cert.getSubjectX500Principal().getName());
|
||||
} else {
|
||||
sb.append("\n No client certificates were found");
|
||||
}
|
||||
X509Certificate[] serverCerts = (X509Certificate[]) connection
|
||||
.getServerCertificates();
|
||||
if (serverCerts != null) {
|
||||
for (X509Certificate cert : serverCerts)
|
||||
sb.append("\n Server certificate Subject Name is "
|
||||
+ cert.getSubjectX500Principal().getName());
|
||||
} else {
|
||||
sb.append("\n No server certificates were found");
|
||||
}
|
||||
LOG.debug(sb.toString());
|
||||
}
|
||||
if (connection.getResponseCode() != HttpServletResponse.SC_OK) {
|
||||
b.append("\n\t" + hostname + ": " + connection.getResponseCode()
|
||||
+ " " + connection.getResponseMessage());
|
||||
err++;
|
||||
}
|
||||
} catch (IOException e) {
|
||||
b.append("\n\t" + hostname + ": " + e.getLocalizedMessage());
|
||||
if (LOG.isDebugEnabled())
|
||||
LOG.debug("Exception happend for host " + hostname, e);
|
||||
err++;
|
||||
} finally {
|
||||
if (connection != null)
|
||||
connection.disconnect();
|
||||
}
|
||||
}
|
||||
if (err > 0) {
|
||||
System.err.print("Command failed on the following " + err + " host"
|
||||
+ (err == 1 ? ":" : "s:") + b.toString() + "\n");
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
static FSDataInputStream open(Configuration conf, String hostname, int port,
|
||||
String path) throws IOException {
|
||||
setupSslProps(conf);
|
||||
HttpURLConnection connection = null;
|
||||
connection = openConnection(hostname, port, path);
|
||||
connection.connect();
|
||||
final InputStream in = connection.getInputStream();
|
||||
return new FSDataInputStream(new FSInputStream() {
|
||||
public int read() throws IOException {
|
||||
return in.read();
|
||||
}
|
||||
|
||||
public int read(byte[] b, int off, int len) throws IOException {
|
||||
return in.read(b, off, len);
|
||||
}
|
||||
|
||||
public void close() throws IOException {
|
||||
in.close();
|
||||
}
|
||||
|
||||
public void seek(long pos) throws IOException {
|
||||
throw new IOException("Can't seek!");
|
||||
}
|
||||
|
||||
public long getPos() throws IOException {
|
||||
throw new IOException("Position unknown!");
|
||||
}
|
||||
|
||||
public boolean seekToNewSource(long targetPos) throws IOException {
|
||||
return false;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
static void checkServerCertsExpirationDays(Configuration conf,
|
||||
String hostname, int port) throws IOException {
|
||||
setupSslProps(conf);
|
||||
HttpsURLConnection connection = null;
|
||||
connection = openConnection(hostname, port, null);
|
||||
connection.connect();
|
||||
X509Certificate[] serverCerts = (X509Certificate[]) connection
|
||||
.getServerCertificates();
|
||||
Date curDate = new Date();
|
||||
long curTime = curDate.getTime();
|
||||
if (serverCerts != null) {
|
||||
for (X509Certificate cert : serverCerts) {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append("\n Server certificate Subject Name: "
|
||||
+ cert.getSubjectX500Principal().getName());
|
||||
Date expDate = cert.getNotAfter();
|
||||
long expTime = expDate.getTime();
|
||||
int dayOffSet = (int) ((expTime - curTime) / MM_SECONDS_PER_DAY);
|
||||
sb.append(" have " + dayOffSet + " days to expire");
|
||||
if (dayOffSet < CERT_EXPIRATION_WARNING_THRESHOLD)
|
||||
LOG.warn(sb.toString());
|
||||
else
|
||||
LOG.info(sb.toString());
|
||||
}
|
||||
} else {
|
||||
LOG.info("\n No Server certs was found");
|
||||
}
|
||||
|
||||
if (connection != null) {
|
||||
connection.disconnect();
|
||||
}
|
||||
}
|
||||
|
||||
public static void main(String[] args) throws Exception {
|
||||
if (args.length < 1
|
||||
|| (!UtilityOption.RELOAD.getName().equalsIgnoreCase(args[0])
|
||||
&& !UtilityOption.GET.getName().equalsIgnoreCase(args[0]) && !UtilityOption.CHECKCERTS
|
||||
.getName().equalsIgnoreCase(args[0]))
|
||||
|| (UtilityOption.GET.getName().equalsIgnoreCase(args[0]) && args.length != 4)
|
||||
|| (UtilityOption.CHECKCERTS.getName().equalsIgnoreCase(args[0]) && args.length != 3)) {
|
||||
System.err.println("Usage: ProxyUtil [" + UtilityOption.RELOAD.getName()
|
||||
+ "] | ["
|
||||
+ UtilityOption.GET.getName() + " <hostname> <#port> <path> ] | ["
|
||||
+ UtilityOption.CHECKCERTS.getName() + " <hostname> <#port> ]");
|
||||
System.exit(0);
|
||||
}
|
||||
Configuration conf = new HdfsConfiguration(false);
|
||||
conf.addResource("ssl-client.xml");
|
||||
conf.addResource("hdfsproxy-default.xml");
|
||||
|
||||
if (UtilityOption.RELOAD.getName().equalsIgnoreCase(args[0])) {
|
||||
// reload user-certs.xml and user-permissions.xml files
|
||||
sendCommand(conf, "/reloadPermFiles");
|
||||
} else if (UtilityOption.CHECKCERTS.getName().equalsIgnoreCase(args[0])) {
|
||||
checkServerCertsExpirationDays(conf, args[1], Integer.parseInt(args[2]));
|
||||
} else {
|
||||
String hostname = args[1];
|
||||
int port = Integer.parseInt(args[2]);
|
||||
String path = args[3];
|
||||
InputStream in = open(conf, hostname, port, path);
|
||||
IOUtils.copyBytes(in, System.out, conf, false);
|
||||
in.close();
|
||||
}
|
||||
}
|
||||
|
||||
public static String getNamenode(Configuration conf)
|
||||
throws ServletException {
|
||||
String namenode = conf.get("fs.default.name");
|
||||
if (namenode == null) {
|
||||
throw new
|
||||
ServletException("Proxy source cluster name node address missing");
|
||||
}
|
||||
return namenode;
|
||||
}
|
||||
|
||||
public static UserGroupInformation getProxyUGIFor(String userID) {
|
||||
try {
|
||||
return UserGroupInformation.
|
||||
createProxyUser(userID, UserGroupInformation.getLoginUser());
|
||||
} catch (IOException e) {
|
||||
throw new
|
||||
RuntimeException("Unable get current logged in user", e);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
|
@ -1,128 +0,0 @@
|
|||
/**
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.apache.hadoop.hdfsproxy;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Hashtable;
|
||||
|
||||
import javax.naming.NamingEnumeration;
|
||||
import javax.naming.NamingException;
|
||||
import javax.naming.directory.Attribute;
|
||||
import javax.naming.directory.Attributes;
|
||||
import javax.naming.directory.BasicAttribute;
|
||||
import javax.naming.directory.BasicAttributes;
|
||||
import javax.naming.directory.SearchResult;
|
||||
import javax.naming.ldap.Control;
|
||||
import javax.naming.ldap.InitialLdapContext;
|
||||
|
||||
class DummyLdapContext extends InitialLdapContext {
|
||||
class ResultEnum<T> implements NamingEnumeration<T> {
|
||||
private ArrayList<T> rl;
|
||||
|
||||
public ResultEnum() {
|
||||
rl = new ArrayList<T>();
|
||||
}
|
||||
|
||||
public ResultEnum(ArrayList<T> al) {
|
||||
rl = al;
|
||||
}
|
||||
|
||||
public boolean hasMoreElements() {
|
||||
return !rl.isEmpty();
|
||||
}
|
||||
|
||||
public T nextElement() {
|
||||
T t = rl.get(0);
|
||||
rl.remove(0);
|
||||
return t;
|
||||
}
|
||||
|
||||
public boolean hasMore() throws NamingException {
|
||||
return !rl.isEmpty();
|
||||
}
|
||||
|
||||
public T next() throws NamingException {
|
||||
T t = rl.get(0);
|
||||
rl.remove(0);
|
||||
return t;
|
||||
}
|
||||
|
||||
public void close() throws NamingException {
|
||||
}
|
||||
}
|
||||
|
||||
public DummyLdapContext() throws NamingException {
|
||||
}
|
||||
|
||||
public DummyLdapContext(Hashtable<?, ?> environment, Control[] connCtls)
|
||||
throws NamingException {
|
||||
}
|
||||
|
||||
public NamingEnumeration<SearchResult> search(String name,
|
||||
Attributes matchingAttributes, String[] attributesToReturn)
|
||||
throws NamingException {
|
||||
System.out.println("Searching Dummy LDAP Server Results:");
|
||||
if (!"ou=proxyroles,dc=mycompany,dc=com".equalsIgnoreCase(name)) {
|
||||
System.out.println("baseName mismatch");
|
||||
return new ResultEnum<SearchResult>();
|
||||
}
|
||||
if (!"cn=127.0.0.1".equals((String) matchingAttributes.get("uniqueMember")
|
||||
.get())) {
|
||||
System.out.println("Ip address mismatch");
|
||||
return new ResultEnum<SearchResult>();
|
||||
}
|
||||
BasicAttributes attrs = new BasicAttributes();
|
||||
BasicAttribute uidAttr = new BasicAttribute("uid", "testuser");
|
||||
attrs.put(uidAttr);
|
||||
BasicAttribute groupAttr = new BasicAttribute("userClass", "testgroup");
|
||||
attrs.put(groupAttr);
|
||||
BasicAttribute locAttr = new BasicAttribute("documentLocation", "/testdir");
|
||||
attrs.put(locAttr);
|
||||
SearchResult sr = new SearchResult(null, null, attrs);
|
||||
ArrayList<SearchResult> al = new ArrayList<SearchResult>();
|
||||
al.add(sr);
|
||||
NamingEnumeration<SearchResult> ne = new ResultEnum<SearchResult>(al);
|
||||
return ne;
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
public static void main(String[] args) throws Exception {
|
||||
DummyLdapContext dlc = new DummyLdapContext();
|
||||
String baseName = "ou=proxyroles,dc=mycompany,dc=com";
|
||||
Attributes matchAttrs = new BasicAttributes(true);
|
||||
String[] attrIDs = { "uid", "documentLocation" };
|
||||
NamingEnumeration<SearchResult> results = dlc.search(baseName, matchAttrs,
|
||||
attrIDs);
|
||||
if (results.hasMore()) {
|
||||
SearchResult sr = results.next();
|
||||
Attributes attrs = sr.getAttributes();
|
||||
for (NamingEnumeration ne = attrs.getAll(); ne.hasMore();) {
|
||||
Attribute attr = (Attribute) ne.next();
|
||||
if ("uid".equalsIgnoreCase(attr.getID())) {
|
||||
System.out.println("User ID = " + attr.get());
|
||||
} else if ("documentLocation".equalsIgnoreCase(attr.getID())) {
|
||||
System.out.println("Document Location = ");
|
||||
for (NamingEnumeration e = attr.getAll(); e.hasMore();) {
|
||||
System.out.println(e.next());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,87 +0,0 @@
|
|||
/**
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.apache.hadoop.hdfsproxy;
|
||||
|
||||
import java.net.ServerSocket;
|
||||
import java.io.IOException;
|
||||
import java.net.BindException;
|
||||
import java.util.Random;
|
||||
|
||||
public class FindFreePort {
|
||||
private static final int MIN_AVAILABLE_PORT = 10000;
|
||||
private static final int MAX_AVAILABLE_PORT = 65535;
|
||||
private static Random random = new Random();
|
||||
/**
|
||||
*
|
||||
* @param num <= 0, find a single free port
|
||||
* @return free port next to port (>port)
|
||||
* @throws IOException
|
||||
*/
|
||||
public static int findFreePort(int port) throws IOException {
|
||||
ServerSocket server;
|
||||
if (port < 0) {
|
||||
server = new ServerSocket(0);
|
||||
} else {
|
||||
int freePort = port+1;
|
||||
while (true) {
|
||||
try {
|
||||
server = new ServerSocket(freePort);
|
||||
break;
|
||||
} catch (IOException e) {
|
||||
if (e instanceof BindException) {
|
||||
if (freePort >= MAX_AVAILABLE_PORT ||
|
||||
freePort < MIN_AVAILABLE_PORT) {
|
||||
throw e;
|
||||
}
|
||||
} else {
|
||||
throw e;
|
||||
}
|
||||
freePort += 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
int fport = server.getLocalPort();
|
||||
server.close();
|
||||
return fport;
|
||||
}
|
||||
/**
|
||||
*
|
||||
* @return
|
||||
* @throws IOException
|
||||
*/
|
||||
public static int findFreePortRandom() throws IOException {
|
||||
return findFreePort(MIN_AVAILABLE_PORT + random.nextInt(MAX_AVAILABLE_PORT - MIN_AVAILABLE_PORT + 1));
|
||||
}
|
||||
|
||||
|
||||
public static void main(String[] args) throws Exception {
|
||||
if(args.length < 1) {
|
||||
System.err.println("Usage: FindFreePort < -random / <#port> >");
|
||||
System.exit(0);
|
||||
}
|
||||
int j = 0;
|
||||
String cmd = args[j++];
|
||||
if ("-random".equals(cmd)) {
|
||||
System.out.println(findFreePortRandom());
|
||||
} else {
|
||||
System.out.println(findFreePort(Integer.parseInt(cmd)));
|
||||
}
|
||||
}
|
||||
|
||||
}
|
|
@ -1,51 +0,0 @@
|
|||
/**
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.apache.hadoop.hdfsproxy;
|
||||
|
||||
import javax.servlet.http.HttpServlet;
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
|
||||
import java.io.PrintWriter;
|
||||
import java.io.IOException;
|
||||
|
||||
|
||||
/**
|
||||
* simple servlet for forward testing purpose
|
||||
*/
|
||||
|
||||
public class SimpleServlet extends HttpServlet {
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public void doGet(HttpServletRequest request, HttpServletResponse response)
|
||||
throws IOException {
|
||||
response.setContentType("text/html");
|
||||
PrintWriter out = response.getWriter();
|
||||
out.print("<html><head/><body>");
|
||||
out.print("A GET request");
|
||||
out.print("</body></html>");
|
||||
out.close();
|
||||
return;
|
||||
}
|
||||
|
||||
}
|
|
@ -1,161 +0,0 @@
|
|||
/**
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
* contributor license agreements. See the NOTICE file distributed with
|
||||
* this work for additional information regarding copyright ownership.
|
||||
* The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
* (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.apache.hadoop.hdfsproxy;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.PrintWriter;
|
||||
import java.util.List;
|
||||
import java.util.ArrayList;
|
||||
|
||||
import javax.servlet.FilterChain;
|
||||
import javax.servlet.FilterConfig;
|
||||
import javax.servlet.ServletException;
|
||||
import javax.servlet.ServletRequest;
|
||||
import javax.servlet.ServletResponse;
|
||||
|
||||
import org.apache.cactus.FilterTestCase;
|
||||
import org.apache.cactus.WebRequest;
|
||||
import org.apache.cactus.WebResponse;
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import org.apache.hadoop.fs.Path;
|
||||
|
||||
public class TestAuthorizationFilter extends FilterTestCase {
|
||||
|
||||
public static final Log LOG = LogFactory.getLog(TestAuthorizationFilter.class);
|
||||
|
||||
private class DummyFilterChain implements FilterChain {
|
||||
public void doFilter(ServletRequest theRequest, ServletResponse theResponse)
|
||||
throws IOException, ServletException {
|
||||
PrintWriter writer = theResponse.getWriter();
|
||||
|
||||
writer.print("<p>some content</p>");
|
||||
writer.close();
|
||||
}
|
||||
|
||||
public void init(FilterConfig theConfig) {
|
||||
}
|
||||
|
||||
public void destroy() {
|
||||
}
|
||||
}
|
||||
|
||||
private class ConfiguredAuthorizationFilter extends AuthorizationFilter {
|
||||
|
||||
private ConfiguredAuthorizationFilter(String nameNode) {
|
||||
this.namenode = nameNode;
|
||||
}
|
||||
}
|
||||
|
||||
public void beginPathRestriction(WebRequest theRequest) {
|
||||
theRequest.setURL("proxy-test:0", null, "/streamFile/nontestdir",
|
||||
null,null);
|
||||
}
|
||||
|
||||
public void testPathRestriction() throws ServletException, IOException {
|
||||
AuthorizationFilter filter = new
|
||||
ConfiguredAuthorizationFilter("hdfs://apache.org");
|
||||
request.setRemoteIPAddress("127.0.0.1");
|
||||
request.setAttribute("org.apache.hadoop.hdfsproxy.authorized.userID",
|
||||
System.getProperty("user.name"));
|
||||
List<Path> paths = new ArrayList<Path>();
|
||||
paths.add(new Path("/deny"));
|
||||
paths.add(new Path("hdfs://test:100/deny"));
|
||||
paths.add(new Path("hdfs://test/deny"));
|
||||
request.setAttribute("org.apache.hadoop.hdfsproxy.authorized.paths",
|
||||
paths);
|
||||
FilterChain mockFilterChain = new DummyFilterChain();
|
||||
filter.doFilter(request, response, mockFilterChain);
|
||||
}
|
||||
|
||||
public void endPathRestriction(WebResponse theResponse) {
|
||||
assertEquals(theResponse.getStatusCode(), 403);
|
||||
assertTrue("Text missing 'User not authorized to access path' : : ["
|
||||
+ theResponse.getText() + "]", theResponse.getText().indexOf(
|
||||
"is not authorized to access path") > 0);
|
||||
}
|
||||
|
||||
public void beginPathPermit(WebRequest theRequest) {
|
||||
theRequest.setURL("proxy-test:0", null, "/streamFile/data/file",
|
||||
null, null);
|
||||
}
|
||||
|
||||
public void testPathPermit() throws ServletException, IOException {
|
||||
AuthorizationFilter filter = new
|
||||
ConfiguredAuthorizationFilter("hdfs://apache.org");
|
||||
request.setRemoteIPAddress("127.0.0.1");
|
||||
request.setAttribute("org.apache.hadoop.hdfsproxy.authorized.userID",
|
||||
System.getProperty("user.name"));
|
||||
List<Path> paths = new ArrayList<Path>();
|
||||
paths.add(new Path("/data"));
|
||||
request.setAttribute("org.apache.hadoop.hdfsproxy.authorized.paths",
|
||||
paths);
|
||||
FilterChain mockFilterChain = new DummyFilterChain();
|
||||
filter.doFilter(request, response, mockFilterChain);
|
||||
}
|
||||
|
||||
public void endPathPermit(WebResponse theResponse) {
|
||||
assertEquals(theResponse.getStatusCode(), 200);
|
||||
}
|
||||
|
||||
public void beginPathPermitQualified(WebRequest theRequest) {
|
||||
theRequest.setURL("proxy-test:0", null, "/streamFile/data/file",
|
||||
null, null);
|
||||
}
|
||||
|
||||
public void testPathPermitQualified() throws ServletException, IOException {
|
||||
AuthorizationFilter filter = new
|
||||
ConfiguredAuthorizationFilter("hdfs://apache.org");
|
||||
request.setRemoteIPAddress("127.0.0.1");
|
||||
request.setAttribute("org.apache.hadoop.hdfsproxy.authorized.userID",
|
||||
System.getProperty("user.name"));
|
||||
List<Path> paths = new ArrayList<Path>();
|
||||
paths.add(new Path("hdfs://apache.org/data"));
|
||||
request.setAttribute("org.apache.hadoop.hdfsproxy.authorized.paths",
|
||||
paths);
|
||||
FilterChain mockFilterChain = new DummyFilterChain();
|
||||
filter.doFilter(request, response, mockFilterChain);
|
||||
}
|
||||
|
||||
public void endPathPermitQualified(WebResponse theResponse) {
|
||||
assertEquals(theResponse.getStatusCode(), 200);
|
||||
}
|
||||
|
||||
public void beginPathQualifiediReject(WebRequest theRequest) {
|
||||
theRequest.setURL("proxy-test:0", null, "/streamFile/data/file",
|
||||
null, null);
|
||||
}
|
||||
|
||||
public void testPathQualifiedReject() throws ServletException, IOException {
|
||||
AuthorizationFilter filter = new
|
||||
ConfiguredAuthorizationFilter("hdfs://apache.org:1111");
|
||||
request.setRemoteIPAddress("127.0.0.1");
|
||||
request.setAttribute("org.apache.hadoop.hdfsproxy.authorized.userID",
|
||||
System.getProperty("user.name"));
|
||||
List<Path> paths = new ArrayList<Path>();
|
||||
paths.add(new Path("hdfs://apache.org:2222/data"));
|
||||
request.setAttribute("org.apache.hadoop.hdfsproxy.authorized.paths",
|
||||
paths);
|
||||
FilterChain mockFilterChain = new DummyFilterChain();
|
||||
filter.doFilter(request, response, mockFilterChain);
|
||||
}
|
||||
|
||||
public void endPathQualifiedReject(WebResponse theResponse) {
|
||||
assertEquals(theResponse.getStatusCode(), 403);
|
||||
}
|
||||
}
|
|
@ -1,272 +0,0 @@
|
|||
/**
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.apache.hadoop.hdfsproxy;
|
||||
|
||||
import java.io.FileNotFoundException;
|
||||
import java.io.IOException;
|
||||
import java.net.InetSocketAddress;
|
||||
import java.net.URI;
|
||||
import java.util.Random;
|
||||
|
||||
import junit.framework.TestCase;
|
||||
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import org.apache.commons.logging.impl.Log4JLogger;
|
||||
import org.apache.log4j.Level;
|
||||
|
||||
import org.apache.hadoop.conf.Configuration;
|
||||
import org.apache.hadoop.fs.FileSystem;
|
||||
import org.apache.hadoop.fs.FileUtil;
|
||||
import org.apache.hadoop.fs.FSDataInputStream;
|
||||
import org.apache.hadoop.fs.FSDataOutputStream;
|
||||
import org.apache.hadoop.fs.Path;
|
||||
import org.apache.hadoop.hdfs.MiniDFSCluster;
|
||||
import org.apache.hadoop.hdfs.server.datanode.DataNode;
|
||||
import org.apache.hadoop.hdfs.server.namenode.FSNamesystem;
|
||||
import org.apache.hadoop.hdfs.HdfsConfiguration;
|
||||
import org.apache.hadoop.net.NetUtils;
|
||||
import org.apache.hadoop.security.UserGroupInformation;
|
||||
|
||||
/**
|
||||
* A JUnit test for HdfsProxy
|
||||
*/
|
||||
public class TestHdfsProxy extends TestCase {
|
||||
{
|
||||
((Log4JLogger) LogFactory.getLog("org.apache.hadoop.hdfs.StateChange"))
|
||||
.getLogger().setLevel(Level.OFF);
|
||||
((Log4JLogger) DataNode.LOG).getLogger().setLevel(Level.OFF);
|
||||
((Log4JLogger) FSNamesystem.LOG).getLogger().setLevel(Level.OFF);
|
||||
}
|
||||
|
||||
static final URI LOCAL_FS = URI.create("file:///");
|
||||
|
||||
private static final int NFILES = 10;
|
||||
private static String TEST_ROOT_DIR = new Path(System.getProperty(
|
||||
"test.build.data", "/tmp")).toString().replace(' ', '+');
|
||||
|
||||
/**
|
||||
* class MyFile contains enough information to recreate the contents of a
|
||||
* single file.
|
||||
*/
|
||||
private static class MyFile {
|
||||
private static Random gen = new Random();
|
||||
private static final int MAX_LEVELS = 3;
|
||||
private static final int MAX_SIZE = 8 * 1024;
|
||||
private static String[] dirNames = { "zero", "one", "two", "three", "four",
|
||||
"five", "six", "seven", "eight", "nine" };
|
||||
private final String name;
|
||||
private int size = 0;
|
||||
private long seed = 0L;
|
||||
|
||||
MyFile() {
|
||||
this(gen.nextInt(MAX_LEVELS));
|
||||
}
|
||||
|
||||
MyFile(int nLevels) {
|
||||
String xname = "";
|
||||
if (nLevels != 0) {
|
||||
int[] levels = new int[nLevels];
|
||||
for (int idx = 0; idx < nLevels; idx++) {
|
||||
levels[idx] = gen.nextInt(10);
|
||||
}
|
||||
StringBuffer sb = new StringBuffer();
|
||||
for (int idx = 0; idx < nLevels; idx++) {
|
||||
sb.append(dirNames[levels[idx]]);
|
||||
sb.append("/");
|
||||
}
|
||||
xname = sb.toString();
|
||||
}
|
||||
long fidx = gen.nextLong() & Long.MAX_VALUE;
|
||||
name = xname + Long.toString(fidx);
|
||||
reset();
|
||||
}
|
||||
|
||||
void reset() {
|
||||
final int oldsize = size;
|
||||
do {
|
||||
size = gen.nextInt(MAX_SIZE);
|
||||
} while (oldsize == size);
|
||||
final long oldseed = seed;
|
||||
do {
|
||||
seed = gen.nextLong() & Long.MAX_VALUE;
|
||||
} while (oldseed == seed);
|
||||
}
|
||||
|
||||
String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
int getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
long getSeed() {
|
||||
return seed;
|
||||
}
|
||||
}
|
||||
|
||||
private static MyFile[] createFiles(URI fsname, String topdir)
|
||||
throws IOException {
|
||||
return createFiles(FileSystem.get(fsname, new HdfsConfiguration()), topdir);
|
||||
}
|
||||
|
||||
/**
|
||||
* create NFILES with random names and directory hierarchies with random (but
|
||||
* reproducible) data in them.
|
||||
*/
|
||||
private static MyFile[] createFiles(FileSystem fs, String topdir)
|
||||
throws IOException {
|
||||
Path root = new Path(topdir);
|
||||
MyFile[] files = new MyFile[NFILES];
|
||||
for (int i = 0; i < NFILES; i++) {
|
||||
files[i] = createFile(root, fs);
|
||||
}
|
||||
return files;
|
||||
}
|
||||
|
||||
private static MyFile createFile(Path root, FileSystem fs, int levels)
|
||||
throws IOException {
|
||||
MyFile f = levels < 0 ? new MyFile() : new MyFile(levels);
|
||||
Path p = new Path(root, f.getName());
|
||||
FSDataOutputStream out = fs.create(p);
|
||||
byte[] toWrite = new byte[f.getSize()];
|
||||
new Random(f.getSeed()).nextBytes(toWrite);
|
||||
out.write(toWrite);
|
||||
out.close();
|
||||
FileSystem.LOG.info("created: " + p + ", size=" + f.getSize());
|
||||
return f;
|
||||
}
|
||||
|
||||
private static MyFile createFile(Path root, FileSystem fs) throws IOException {
|
||||
return createFile(root, fs, -1);
|
||||
}
|
||||
|
||||
private static boolean checkFiles(FileSystem fs, String topdir, MyFile[] files)
|
||||
throws IOException {
|
||||
return checkFiles(fs, topdir, files, false);
|
||||
}
|
||||
|
||||
private static boolean checkFiles(FileSystem fs, String topdir,
|
||||
MyFile[] files, boolean existingOnly) throws IOException {
|
||||
Path root = new Path(topdir);
|
||||
|
||||
for (int idx = 0; idx < files.length; idx++) {
|
||||
Path fPath = new Path(root, files[idx].getName());
|
||||
try {
|
||||
fs.getFileStatus(fPath);
|
||||
FSDataInputStream in = fs.open(fPath);
|
||||
byte[] toRead = new byte[files[idx].getSize()];
|
||||
byte[] toCompare = new byte[files[idx].getSize()];
|
||||
Random rb = new Random(files[idx].getSeed());
|
||||
rb.nextBytes(toCompare);
|
||||
assertEquals("Cannnot read file.", toRead.length, in.read(toRead));
|
||||
in.close();
|
||||
for (int i = 0; i < toRead.length; i++) {
|
||||
if (toRead[i] != toCompare[i]) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
toRead = null;
|
||||
toCompare = null;
|
||||
} catch (FileNotFoundException fnfe) {
|
||||
if (!existingOnly) {
|
||||
throw fnfe;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/** delete directory and everything underneath it. */
|
||||
private static void deldir(FileSystem fs, String topdir) throws IOException {
|
||||
fs.delete(new Path(topdir), true);
|
||||
}
|
||||
|
||||
/** verify hdfsproxy implements the hftp interface */
|
||||
public void testHdfsProxyInterface() throws Exception {
|
||||
MiniDFSCluster cluster = null;
|
||||
HdfsProxy proxy = null;
|
||||
try {
|
||||
final UserGroupInformation CLIENT_UGI = UserGroupInformation.getCurrentUser();
|
||||
final String testUser = CLIENT_UGI.getShortUserName();
|
||||
final String testGroup = CLIENT_UGI.getGroupNames()[0];
|
||||
|
||||
final Configuration dfsConf = new HdfsConfiguration();
|
||||
dfsConf.set("hadoop.proxyuser." + testUser +
|
||||
".groups", testGroup);
|
||||
dfsConf.set("hadoop.proxyuser." + testGroup + ".hosts",
|
||||
"localhost,127.0.0.1");
|
||||
dfsConf.set("hadoop.proxyuser." + testUser +
|
||||
".hosts", "localhost,127.0.0.1");
|
||||
cluster = new MiniDFSCluster.Builder(dfsConf).numDataNodes(2).build();
|
||||
cluster.waitActive();
|
||||
|
||||
final FileSystem localfs = FileSystem.get(LOCAL_FS, dfsConf);
|
||||
final FileSystem hdfs = cluster.getFileSystem();
|
||||
final Configuration proxyConf = new HdfsConfiguration(false);
|
||||
proxyConf.set("hdfsproxy.dfs.namenode.address", hdfs.getUri().getHost() + ":"
|
||||
+ hdfs.getUri().getPort());
|
||||
proxyConf.set("hdfsproxy.https.address", "localhost:0");
|
||||
final String namenode = hdfs.getUri().toString();
|
||||
if (namenode.startsWith("hdfs://")) {
|
||||
MyFile[] files = createFiles(LOCAL_FS, TEST_ROOT_DIR + "/srcdat");
|
||||
hdfs.copyFromLocalFile
|
||||
(new Path("file:///" + TEST_ROOT_DIR + "/srcdat"),
|
||||
new Path(namenode + "/destdat" ));
|
||||
assertTrue("Source and destination directories do not match.",
|
||||
checkFiles(hdfs, "/destdat", files));
|
||||
|
||||
proxyConf.set("proxy.http.test.listener.addr", "localhost:0");
|
||||
proxy = new HdfsProxy(proxyConf);
|
||||
proxy.start();
|
||||
InetSocketAddress proxyAddr = NetUtils.createSocketAddr("localhost:0");
|
||||
final String realProxyAddr = proxyAddr.getHostName() + ":"
|
||||
+ proxy.getPort();
|
||||
final Path proxyUrl = new Path("hftp://" + realProxyAddr);
|
||||
final FileSystem hftp = proxyUrl.getFileSystem(dfsConf);
|
||||
FileUtil.copy(hftp, new Path(proxyUrl, "/destdat"),
|
||||
hdfs, new Path(namenode + "/copied1"),
|
||||
false, true, proxyConf);
|
||||
|
||||
assertTrue("Source and copied directories do not match.", checkFiles(
|
||||
hdfs, "/copied1", files));
|
||||
|
||||
FileUtil.copy(hftp, new Path(proxyUrl, "/destdat"),
|
||||
localfs, new Path(TEST_ROOT_DIR + "/copied2"),
|
||||
false, true, proxyConf);
|
||||
assertTrue("Source and copied directories do not match.", checkFiles(
|
||||
localfs, TEST_ROOT_DIR + "/copied2", files));
|
||||
|
||||
deldir(hdfs, "/destdat");
|
||||
deldir(hdfs, "/logs");
|
||||
deldir(hdfs, "/copied1");
|
||||
deldir(localfs, TEST_ROOT_DIR + "/srcdat");
|
||||
deldir(localfs, TEST_ROOT_DIR + "/copied2");
|
||||
}
|
||||
} finally {
|
||||
if (cluster != null) {
|
||||
cluster.shutdown();
|
||||
}
|
||||
if (proxy != null) {
|
||||
proxy.stop();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,113 +0,0 @@
|
|||
/**
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
* contributor license agreements. See the NOTICE file distributed with
|
||||
* this work for additional information regarding copyright ownership.
|
||||
* The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
* (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.apache.hadoop.hdfsproxy;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.PrintWriter;
|
||||
|
||||
import javax.naming.NamingException;
|
||||
import javax.servlet.FilterChain;
|
||||
import javax.servlet.FilterConfig;
|
||||
import javax.servlet.ServletContext;
|
||||
import javax.servlet.ServletException;
|
||||
import javax.servlet.ServletRequest;
|
||||
import javax.servlet.ServletResponse;
|
||||
|
||||
import org.apache.cactus.FilterTestCase;
|
||||
import org.apache.cactus.WebRequest;
|
||||
import org.apache.cactus.WebResponse;
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
|
||||
public class TestLdapIpDirFilter extends FilterTestCase {
|
||||
|
||||
public static final Log LOG = LogFactory.getLog(TestLdapIpDirFilter.class);
|
||||
|
||||
private class DummyFilterChain implements FilterChain {
|
||||
public void doFilter(ServletRequest theRequest, ServletResponse theResponse)
|
||||
throws IOException, ServletException {
|
||||
PrintWriter writer = theResponse.getWriter();
|
||||
|
||||
writer.print("<p>some content</p>");
|
||||
writer.close();
|
||||
}
|
||||
|
||||
public void init(FilterConfig theConfig) {
|
||||
}
|
||||
|
||||
public void destroy() {
|
||||
}
|
||||
}
|
||||
|
||||
public void testIpRestriction() throws ServletException, IOException,
|
||||
NamingException {
|
||||
LdapIpDirFilter filter = new LdapIpDirFilter();
|
||||
String baseName = "ou=proxyroles,dc=mycompany,dc=com";
|
||||
DummyLdapContext dlc = new DummyLdapContext();
|
||||
filter.initialize(baseName, dlc);
|
||||
request.setRemoteIPAddress("127.0.0.2");
|
||||
request.removeAttribute("org.apache.hadoop.hdfsproxy.authorized.userID");
|
||||
FilterChain mockFilterChain = new DummyFilterChain();
|
||||
filter.doFilter(request, response, mockFilterChain);
|
||||
assertNull(request
|
||||
.getAttribute("org.apache.hadoop.hdfsproxy.authorized.userID"));
|
||||
}
|
||||
|
||||
public void endIpRestriction(WebResponse theResponse) {
|
||||
assertEquals(theResponse.getStatusCode(), 403);
|
||||
assertTrue("Text missing 'IP not authorized to access' : : ["
|
||||
+ theResponse.getText() + "]", theResponse.getText().indexOf(
|
||||
"not authorized to access") > 0);
|
||||
}
|
||||
|
||||
public void beginDoFilter(WebRequest theRequest) {
|
||||
theRequest.setURL("proxy-test:0", null, "/streamFile/testdir",
|
||||
null, null);
|
||||
}
|
||||
|
||||
public void testDoFilter() throws ServletException, IOException,
|
||||
NamingException {
|
||||
LdapIpDirFilter filter = new LdapIpDirFilter();
|
||||
String baseName = "ou=proxyroles,dc=mycompany,dc=com";
|
||||
DummyLdapContext dlc = new DummyLdapContext();
|
||||
filter.initialize(baseName, dlc);
|
||||
request.setRemoteIPAddress("127.0.0.1");
|
||||
|
||||
ServletContext context = config.getServletContext();
|
||||
context.removeAttribute("name.node.address");
|
||||
context.removeAttribute("name.conf");
|
||||
assertNull(context.getAttribute("name.node.address"));
|
||||
assertNull(context.getAttribute("name.conf"));
|
||||
filter.init(config);
|
||||
assertNotNull(context.getAttribute("name.node.address"));
|
||||
assertNotNull(context.getAttribute("name.conf"));
|
||||
|
||||
request.removeAttribute("org.apache.hadoop.hdfsproxy.authorized.userID");
|
||||
FilterChain mockFilterChain = new DummyFilterChain();
|
||||
filter.doFilter(request, response, mockFilterChain);
|
||||
assertEquals(request
|
||||
.getAttribute("org.apache.hadoop.hdfsproxy.authorized.userID"),
|
||||
"testuser");
|
||||
|
||||
}
|
||||
|
||||
public void endDoFilter(WebResponse theResponse) {
|
||||
assertEquals("<p>some content</p>", theResponse.getText());
|
||||
}
|
||||
|
||||
}
|
|
@ -1,120 +0,0 @@
|
|||
/**
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
* contributor license agreements. See the NOTICE file distributed with
|
||||
* this work for additional information regarding copyright ownership.
|
||||
* The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
* (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.apache.hadoop.hdfsproxy;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.PrintWriter;
|
||||
|
||||
import javax.servlet.FilterChain;
|
||||
import javax.servlet.FilterConfig;
|
||||
import javax.servlet.ServletException;
|
||||
import javax.servlet.ServletRequest;
|
||||
import javax.servlet.ServletResponse;
|
||||
import javax.servlet.ServletContext;
|
||||
|
||||
import org.apache.cactus.FilterTestCase;
|
||||
import org.apache.cactus.WebRequest;
|
||||
import org.apache.cactus.WebResponse;
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
|
||||
|
||||
public class TestProxyFilter extends FilterTestCase {
|
||||
|
||||
public static final Log LOG = LogFactory.getLog(TestProxyFilter.class);
|
||||
|
||||
private static String TEST_CLIENT_SSL_CERT = System.getProperty("javax.net.ssl.clientCert",
|
||||
"./src/test/resources/ssl-keys/test.crt");
|
||||
|
||||
private class DummyFilterChain implements FilterChain {
|
||||
public void doFilter(ServletRequest theRequest, ServletResponse theResponse)
|
||||
throws IOException, ServletException {
|
||||
PrintWriter writer = theResponse.getWriter();
|
||||
|
||||
writer.print("<p>some content</p>");
|
||||
writer.close();
|
||||
}
|
||||
|
||||
public void init(FilterConfig theConfig) {
|
||||
}
|
||||
|
||||
public void destroy() {
|
||||
}
|
||||
}
|
||||
|
||||
public void beginDoFilterHttp(WebRequest theRequest) {
|
||||
theRequest.addParameter("ugi", "nobody,test");
|
||||
}
|
||||
|
||||
public void testDoFilterHttp() throws ServletException, IOException {
|
||||
ProxyFilter filter = new ProxyFilter();
|
||||
|
||||
ServletContext context = config.getServletContext();
|
||||
context.removeAttribute("name.node.address");
|
||||
context.removeAttribute("name.conf");
|
||||
assertNull(context.getAttribute("name.node.address"));
|
||||
assertNull(context.getAttribute("name.conf"));
|
||||
|
||||
filter.init(config);
|
||||
|
||||
assertNotNull(context.getAttribute("name.node.address"));
|
||||
assertNotNull(context.getAttribute("name.conf"));
|
||||
|
||||
request.removeAttribute("authorized.ugi");
|
||||
assertNull(request.getAttribute("authorized.ugi"));
|
||||
|
||||
FilterChain mockFilterChain = new DummyFilterChain();
|
||||
filter.doFilter(request, response, mockFilterChain);
|
||||
assertEquals(request.getAttribute("authorized.ugi").toString(), "nobody,test");
|
||||
|
||||
}
|
||||
|
||||
public void endDoFilterHttp(WebResponse theResponse) {
|
||||
assertEquals("<p>some content</p>", theResponse.getText());
|
||||
}
|
||||
|
||||
public void beginDoFilterHttps(WebRequest theRequest) throws Exception{
|
||||
theRequest.addParameter("UnitTest", "true");
|
||||
theRequest.addParameter("SslPath", TEST_CLIENT_SSL_CERT);
|
||||
theRequest.addParameter("ugi", "nobody,test");
|
||||
theRequest.addParameter("TestSevletPathInfo", "/streamFile");
|
||||
theRequest.addParameter("filename", "/user");
|
||||
}
|
||||
|
||||
public void testDoFilterHttps() throws Exception {
|
||||
ProxyFilter filter = new ProxyFilter();
|
||||
|
||||
request.removeAttribute("authorized.ugi");
|
||||
assertNull(request.getAttribute("authorized.ugi"));
|
||||
|
||||
FilterChain mockFilterChain = new DummyFilterChain();
|
||||
filter.init(config);
|
||||
filter.doFilter(request, response, mockFilterChain);
|
||||
|
||||
LOG.info("Finish setting up X509Certificate");
|
||||
assertEquals(request.getAttribute("authorized.ugi").toString().substring(0, 6), "nobody");
|
||||
|
||||
}
|
||||
|
||||
public void endDoFilterHttps(WebResponse theResponse) {
|
||||
assertEquals("<p>some content</p>", theResponse.getText());
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
@ -1,69 +0,0 @@
|
|||
/**
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.apache.hadoop.hdfsproxy;
|
||||
|
||||
import org.apache.cactus.ServletTestCase;
|
||||
import org.apache.cactus.WebRequest;
|
||||
import org.apache.cactus.WebResponse;
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
|
||||
import java.io.IOException;
|
||||
import javax.servlet.ServletException;
|
||||
|
||||
/** Unit tests for ProxyUtil */
|
||||
public class TestProxyForwardServlet extends ServletTestCase {
|
||||
public static final Log LOG = LogFactory.getLog(TestProxyForwardServlet.class);
|
||||
|
||||
|
||||
public void beginDoGet(WebRequest theRequest) {
|
||||
theRequest.setURL("proxy-test:0", null, "/simple", null, null);
|
||||
}
|
||||
|
||||
public void testDoGet() throws IOException, ServletException {
|
||||
ProxyForwardServlet servlet = new ProxyForwardServlet();
|
||||
|
||||
servlet.init(config);
|
||||
servlet.doGet(request, response);
|
||||
}
|
||||
|
||||
public void endDoGet(WebResponse theResponse)
|
||||
throws IOException {
|
||||
String expected = "<html><head/><body>A GET request</body></html>";
|
||||
String result = theResponse.getText();
|
||||
|
||||
assertEquals(expected, result);
|
||||
}
|
||||
|
||||
|
||||
public void testForwardRequest() throws Exception {
|
||||
ProxyForwardServlet servlet = new ProxyForwardServlet();
|
||||
|
||||
servlet.forwardRequest(request, response, config.getServletContext(), "/simple");
|
||||
}
|
||||
|
||||
public void endForwardRequest(WebResponse theResponse) throws IOException {
|
||||
String expected = "<html><head/><body>A GET request</body></html>";
|
||||
String result = theResponse.getText();
|
||||
|
||||
assertEquals(expected, result);
|
||||
|
||||
}
|
||||
|
||||
}
|
|
@ -1,49 +0,0 @@
|
|||
/**
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.apache.hadoop.hdfsproxy;
|
||||
|
||||
import junit.framework.TestCase;
|
||||
|
||||
import org.apache.hadoop.conf.Configuration;
|
||||
import org.apache.hadoop.hdfs.HdfsConfiguration;
|
||||
|
||||
/** Unit tests for ProxyUtil */
|
||||
public class TestProxyUtil extends TestCase {
|
||||
|
||||
private static String TEST_PROXY_CONF_DIR = System.getProperty("test.proxy.conf.dir", "./conf");
|
||||
private static String TEST_PROXY_HTTPS_PORT = System.getProperty("test.proxy.https.port", "8443");
|
||||
|
||||
public void testSendCommand() throws Exception {
|
||||
|
||||
Configuration conf = new HdfsConfiguration(false);
|
||||
conf.addResource("ssl-client.xml");
|
||||
conf.addResource("hdfsproxy-default.xml");
|
||||
String address = "localhost:" + TEST_PROXY_HTTPS_PORT;
|
||||
conf.set("hdfsproxy.https.address", address);
|
||||
String hostFname = TEST_PROXY_CONF_DIR + "/hdfsproxy-hosts";
|
||||
conf.set("hdfsproxy.hosts", hostFname);
|
||||
|
||||
assertTrue(ProxyUtil.sendCommand(conf, "/test/reloadPermFiles"));
|
||||
|
||||
conf.set("hdfsproxy.https.address", "localhost:7777");
|
||||
assertFalse(ProxyUtil.sendCommand(conf, "/test/reloadPermFiles"));
|
||||
assertFalse(ProxyUtil.sendCommand(conf, "/test/reloadPermFiles"));
|
||||
}
|
||||
|
||||
}
|
|
@ -1,77 +0,0 @@
|
|||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||
<!DOCTYPE web-app
|
||||
PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
|
||||
"http://java.sun.com/dtd/web-app_2_3.dtd">
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
contributor license agreements. See the NOTICE file distributed with
|
||||
this work for additional information regarding copyright ownership.
|
||||
The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
(the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<web-app>
|
||||
|
||||
<context-param>
|
||||
<param-name>param</param-name>
|
||||
<param-value>value used for testing</param-value>
|
||||
</context-param>
|
||||
|
||||
<servlet>
|
||||
<servlet-name>ServletRedirector</servlet-name>
|
||||
<servlet-class>org.apache.cactus.server.ServletTestRedirector</servlet-class>
|
||||
<init-param>
|
||||
<param-name>param1</param-name>
|
||||
<param-value>value1 used for testing</param-value>
|
||||
</init-param>
|
||||
</servlet>
|
||||
|
||||
<servlet>
|
||||
<servlet-name>ServletRedirector_TestOverride</servlet-name>
|
||||
<servlet-class>org.apache.cactus.server.ServletTestRedirector</servlet-class>
|
||||
<init-param>
|
||||
<param-name>param2</param-name>
|
||||
<param-value>value2 used for testing</param-value>
|
||||
</init-param>
|
||||
</servlet>
|
||||
|
||||
<servlet>
|
||||
<servlet-name>TestJsp</servlet-name>
|
||||
<jsp-file>/test/test.jsp</jsp-file>
|
||||
</servlet>
|
||||
|
||||
<servlet>
|
||||
<servlet-name>JspRedirector</servlet-name>
|
||||
<jsp-file>/jspRedirector.jsp</jsp-file>
|
||||
<init-param>
|
||||
<param-name>param1</param-name>
|
||||
<param-value>value1 used for testing</param-value>
|
||||
</init-param>
|
||||
</servlet>
|
||||
|
||||
<servlet>
|
||||
<servlet-name>Simple</servlet-name>
|
||||
<description> A Simple Servlet </description>
|
||||
<servlet-class>org.apache.hadoop.hdfsproxy.SimpleServlet</servlet-class>
|
||||
</servlet>
|
||||
|
||||
<servlet-mapping>
|
||||
<servlet-name>ServletRedirector_TestOverride</servlet-name>
|
||||
<url-pattern>/ServletRedirectorOverride</url-pattern>
|
||||
</servlet-mapping>
|
||||
|
||||
<servlet-mapping>
|
||||
<servlet-name>Simple</servlet-name>
|
||||
<url-pattern>/simple/*</url-pattern>
|
||||
</servlet-mapping>
|
||||
|
||||
</web-app>
|
|
@ -1,104 +0,0 @@
|
|||
<?xml version="1.0"?>
|
||||
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
contributor license agreements. See the NOTICE file distributed with
|
||||
this work for additional information regarding copyright ownership.
|
||||
The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
(the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<!-- Put hdfsproxy specific properties in this file. -->
|
||||
|
||||
<configuration>
|
||||
|
||||
<property>
|
||||
<name>hdfsproxy.https.address</name>
|
||||
<value>0.0.0.0:8443</value>
|
||||
<description>the SSL port that hdfsproxy listens on
|
||||
</description>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>hdfsproxy.hosts</name>
|
||||
<value>hdfsproxy-hosts</value>
|
||||
<description>location of hdfsproxy-hosts file
|
||||
</description>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>hdfsproxy.dfs.namenode.address</name>
|
||||
<value>localhost:54321</value>
|
||||
<description>namenode address of the HDFS cluster being proxied
|
||||
</description>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>hdfsproxy.https.server.keystore.resource</name>
|
||||
<value>ssl-server.xml</value>
|
||||
<description>location of the resource from which ssl server keystore
|
||||
information will be extracted
|
||||
</description>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>hdfsproxy.user.permissions.file.location</name>
|
||||
<value>user-permissions.xml</value>
|
||||
<description>location of the user permissions file
|
||||
</description>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>hdfsproxy.user.certs.file.location</name>
|
||||
<value>user-certs.xml</value>
|
||||
<description>location of the user certs file
|
||||
</description>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>hdfsproxy.ugi.cache.ugi.lifetime</name>
|
||||
<value>15</value>
|
||||
<description> The lifetime (in minutes) of a cached ugi
|
||||
</description>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>hdfsproxy.ldap.initial.context.factory</name>
|
||||
<value>com.sun.jndi.ldap.LdapCtxFactory</value>
|
||||
<description> ldap initial context factory
|
||||
</description>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>hdfsproxy.ldap.provider.url</name>
|
||||
<value>ldap://ldapserver:389</value>
|
||||
<description> ldap server address
|
||||
</description>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>hdfsproxy.ldap.role.base</name>
|
||||
<value>ou=proxyroles,dc=mycompany,dc=com</value>
|
||||
<description> ldap role base
|
||||
</description>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>fs.default.name</name>
|
||||
<!-- cluster variant -->
|
||||
<value>hdfs://localhost:8020</value>
|
||||
<description>The name of the default file system. Either the
|
||||
literal string "local" or a host:port for NDFS.</description>
|
||||
<final>true</final>
|
||||
</property>
|
||||
|
||||
</configuration>
|
||||
|
|
@ -1 +0,0 @@
|
|||
localhost
|
|
@ -1,15 +0,0 @@
|
|||
<?xml version="1.0"?>
|
||||
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
|
||||
|
||||
<!-- Put hdfsproxy specific properties in this file. -->
|
||||
|
||||
<configuration>
|
||||
<property>
|
||||
<name>proxy-test</name>
|
||||
<value>/test</value>
|
||||
<description>one hostname corresponds to one web application archive
|
||||
</description>
|
||||
</property>
|
||||
|
||||
</configuration>
|
||||
|
|
@ -1,76 +0,0 @@
|
|||
# Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
# contributor license agreements. See the NOTICE file distributed with
|
||||
# this work for additional information regarding copyright ownership.
|
||||
# The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
# (the "License"); you may not use this file except in compliance with
|
||||
# the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
# Define some default values that can be overridden by system properties
|
||||
hdfsproxy.root.logger=DEBUG,console
|
||||
hdfsproxy.log.dir=.
|
||||
hdfsproxy.log.file=hdfsproxy.log
|
||||
|
||||
# Define the root logger to the system property "hdfsproxy.root.logger".
|
||||
log4j.rootLogger=${hdfsproxy.root.logger}
|
||||
|
||||
# Logging Threshold
|
||||
log4j.threshhold=ALL
|
||||
|
||||
#
|
||||
# Daily Rolling File Appender
|
||||
#
|
||||
|
||||
log4j.appender.DRFA=org.apache.log4j.DailyRollingFileAppender
|
||||
log4j.appender.DRFA.File=${hdfsproxy.log.dir}/${hdfsproxy.log.file}
|
||||
|
||||
# Rollver at midnight
|
||||
log4j.appender.DRFA.DatePattern=.yyyy-MM-dd
|
||||
|
||||
# 30-day backup
|
||||
#log4j.appender.DRFA.MaxBackupIndex=30
|
||||
log4j.appender.DRFA.layout=org.apache.log4j.PatternLayout
|
||||
|
||||
# Pattern format: Date LogLevel LoggerName LogMessage
|
||||
log4j.appender.DRFA.layout.ConversionPattern=%d{ISO8601} %p %c: %m%n
|
||||
# Debugging Pattern format
|
||||
#log4j.appender.DRFA.layout.ConversionPattern=%d{ISO8601} %-5p %c{2} (%F:%M(%L)) - %m%n
|
||||
|
||||
|
||||
#
|
||||
# console
|
||||
# Add "console" to rootlogger above if you want to use this
|
||||
#
|
||||
|
||||
log4j.appender.console=org.apache.log4j.ConsoleAppender
|
||||
log4j.appender.console.target=System.err
|
||||
log4j.appender.console.layout=org.apache.log4j.PatternLayout
|
||||
log4j.appender.console.layout.ConversionPattern=%d{yy/MM/dd HH:mm:ss} %p %c{2}: %m%n
|
||||
|
||||
#
|
||||
# Rolling File Appender
|
||||
#
|
||||
|
||||
#log4j.appender.RFA=org.apache.log4j.RollingFileAppender
|
||||
#log4j.appender.RFA.File=${hdfsproxy.log.dir}/${hdfsproxy.log.file}
|
||||
|
||||
# Logfile size and and 30-day backups
|
||||
#log4j.appender.RFA.MaxFileSize=1MB
|
||||
#log4j.appender.RFA.MaxBackupIndex=30
|
||||
|
||||
#log4j.appender.RFA.layout=org.apache.log4j.PatternLayout
|
||||
#log4j.appender.RFA.layout.ConversionPattern=%d{ISO8601} %-5p %c{2} - %m%n
|
||||
#log4j.appender.RFA.layout.ConversionPattern=%d{ISO8601} %-5p %c{2} (%F:%M(%L)) - %m%n
|
||||
|
||||
# Custom Logging levels
|
||||
|
||||
log4j.logger.org.apache.hadoop.hdfsproxy.HttpsProxy=DEBUG
|
||||
log4j.logger.org.apache.hadoop.hdfsproxy.ProxyFilter=DEBUG
|
||||
log4j.logger.org.apache.hadoop.hdfsproxy.HdfsProxy=DEBUG
|
|
@ -1,57 +0,0 @@
|
|||
<?xml version="1.0"?>
|
||||
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
contributor license agreements. See the NOTICE file distributed with
|
||||
this work for additional information regarding copyright ownership.
|
||||
The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
(the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<configuration>
|
||||
|
||||
<property>
|
||||
<name>ssl.client.truststore.location</name>
|
||||
<value>${javax.net.ssl.keyStore}</value>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>ssl.client.truststore.password</name>
|
||||
<value>changeme</value>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>ssl.client.truststore.type</name>
|
||||
<value>jks</value>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>ssl.client.keystore.location</name>
|
||||
<value>${javax.net.ssl.keyStore}</value>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>ssl.client.keystore.password</name>
|
||||
<value>changeme</value>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>ssl.client.keystore.type</name>
|
||||
<value>jks</value>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>ssl.client.keystore.keypassword</name>
|
||||
<value>changeme</value>
|
||||
</property>
|
||||
|
||||
</configuration>
|
|
@ -1,47 +0,0 @@
|
|||
<?xml version="1.0"?>
|
||||
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
contributor license agreements. See the NOTICE file distributed with
|
||||
this work for additional information regarding copyright ownership.
|
||||
The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
(the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<configuration>
|
||||
|
||||
<property>
|
||||
<name>ssl.server.truststore.location</name>
|
||||
<value>${javax.net.ssl.keyStore.proxy}</value>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>ssl.server.truststore.password</name>
|
||||
<value>changeme</value>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>ssl.server.keystore.location</name>
|
||||
<value>${javax.net.ssl.keyStore.proxy}</value>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>ssl.server.keystore.password</name>
|
||||
<value>changeme</value>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>ssl.server.keystore.keypassword</name>
|
||||
<value>changeme</value>
|
||||
</property>
|
||||
|
||||
</configuration>
|
|
@ -1,85 +0,0 @@
|
|||
<?xml version="1.0"?>
|
||||
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
contributor license agreements. See the NOTICE file distributed with
|
||||
this work for additional information regarding copyright ownership.
|
||||
The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
(the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<!--
|
||||
|
||||
This file defines the mappings from username to comma seperated list
|
||||
of certificate serial numbers that the user is allowed to use. One mapping
|
||||
per user. Wildcard characters, such as "*" and "?", are not recognized.
|
||||
Any leading or trailing whitespaces are stripped/ignored.
|
||||
|
||||
-->
|
||||
|
||||
<configuration>
|
||||
|
||||
<property>
|
||||
<name> kan </name>
|
||||
<value> ,6 ,, 4 , 9a2cf0be9ddf8280
|
||||
|
||||
|
||||
|
||||
</value>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name> k. zhang </name>
|
||||
<value> , ,, 2 , 9a2cf0be9ddf8280
|
||||
|
||||
|
||||
|
||||
</value>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name> zhiyong1 </name>
|
||||
<value> ,5 ,, 3 , 9a2cf0be9ddf8280
|
||||
|
||||
|
||||
|
||||
</value>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name> nobody </name>
|
||||
<value> ,6 ,, 3 , 9a2cf0be9ddf8280
|
||||
|
||||
|
||||
|
||||
</value>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name> root </name>
|
||||
<value> ,7 ,, 3 , 9a2cf0be9ddf8280
|
||||
|
||||
|
||||
|
||||
</value>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name> Admin </name>
|
||||
<value>, 6, ,, 3 , 9a2cf0be9ddf8280
|
||||
|
||||
|
||||
|
||||
</value>
|
||||
</property>
|
||||
|
||||
</configuration>
|
|
@ -1,78 +0,0 @@
|
|||
<?xml version="1.0"?>
|
||||
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
contributor license agreements. See the NOTICE file distributed with
|
||||
this work for additional information regarding copyright ownership.
|
||||
The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
(the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<!--
|
||||
|
||||
This file defines the mappings from user name to comma seperated list
|
||||
of directories/files that the user is allowed to access. One mapping
|
||||
per user. Wildcard characters, such as "*" and "?", are not recognized.
|
||||
For example, to match "/output" directory, one can use "/output" or
|
||||
"/output/", but not "/output/*". Note that any leading or trailing
|
||||
whitespaces are stripped/ignored for the name field.
|
||||
|
||||
-->
|
||||
|
||||
<configuration>
|
||||
|
||||
<property>
|
||||
<name> kan </name>
|
||||
<value> ,
|
||||
|
||||
|
||||
|
||||
/input, /user, /data </value>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name> k. zhang </name>
|
||||
<value> ,
|
||||
|
||||
|
||||
|
||||
/input, /user, /data </value>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name> zhiyong1 </name>
|
||||
<value> ,
|
||||
|
||||
|
||||
|
||||
/input, /user, /data </value>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name> nobody </name>
|
||||
<value> ,
|
||||
|
||||
|
||||
|
||||
/input, /user, /data </value>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name> root </name>
|
||||
<value> ,
|
||||
|
||||
|
||||
|
||||
/input, /user, /data </value>
|
||||
</property>
|
||||
|
||||
|
||||
</configuration>
|
Binary file not shown.
Binary file not shown.
|
@ -1,21 +0,0 @@
|
|||
-----BEGIN CERTIFICATE-----
|
||||
MIIDbjCCAtegAwIBAgIBBjANBgkqhkiG9w0BAQQFADCBijELMAkGA1UEBhMCVVMx
|
||||
EzARBgNVBAgTCkNhbGlmb3JuaWExEDAOBgNVBAcTB0J1cmJhbmsxDjAMBgNVBAoT
|
||||
BVlhaG9vMQ0wCwYDVQQLEwRHcmlkMQ4wDAYDVQQDEwVDbG91ZDElMCMGCSqGSIb3
|
||||
DQEJARYWemhpeW9uZzFAeWFob28taW5jLmNvbTAeFw0wOTAyMTExNzMxMTlaFw0y
|
||||
ODEwMjkxNzMxMTlaMFUxEDAOBgNVBAYTB1Vua25vd24xEDAOBgNVBAgTB1Vua25v
|
||||
d24xDzANBgNVBAoTBmhhZG9vcDENMAsGA1UECxMEdGVzdDEPMA0GA1UEAxMGbm9i
|
||||
b2R5MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCQnFDrGQ+lxdmwvv+8G3gc
|
||||
Vsj501WhlaEHa0xPJReeVfcxCRrE60k2Cb3nfHHyT0nW1vHZ0207T8LuGJKaaKMy
|
||||
5yIRTI7WwEDLqwxzl109Vlu8iBOqzJXcjo5YRSqmdEx8UYlrd67tMUyw0J5u8IlU
|
||||
UKT/OMt7YT4R89a9INyzTwIDAQABo4IBFjCCARIwCQYDVR0TBAIwADAsBglghkgB
|
||||
hvhCAQ0EHxYdT3BlblNTTCBHZW5lcmF0ZWQgQ2VydGlmaWNhdGUwHQYDVR0OBBYE
|
||||
FGAUh//jxUxfBpcAEp0ZAemyPbnDMIG3BgNVHSMEga8wgayAFIsZF5xSEMuMwUwN
|
||||
H89Xv8EJdxCqoYGQpIGNMIGKMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZv
|
||||
cm5pYTEQMA4GA1UEBxMHQnVyYmFuazEOMAwGA1UEChMFWWFob28xDTALBgNVBAsT
|
||||
BEdyaWQxDjAMBgNVBAMTBUNsb3VkMSUwIwYJKoZIhvcNAQkBFhZ6aGl5b25nMUB5
|
||||
YWhvby1pbmMuY29tggEAMA0GCSqGSIb3DQEBBAUAA4GBAG28KbSm/tV/ft+8//eB
|
||||
E87Cdq61ndPqiLhEaHrF3hKSsLzfbKaH9dQDqjTm+D7WVaxcFOn2V7ZUTMSZDHh2
|
||||
k+O8Tt642TB9HLbUtwEjoug3jHkx/uydcr8yhRb8/+x5flpU9hfaf0AU4Pc46Q95
|
||||
uMUVgIDvO5ED9OaoarJE8UbT
|
||||
-----END CERTIFICATE-----
|
|
@ -1,60 +0,0 @@
|
|||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
contributor license agreements. See the NOTICE file distributed with
|
||||
this work for additional information regarding copyright ownership.
|
||||
The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
(the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<Server port="@ADMIN.PORT@" shutdown="SHUTDOWN" debug="4">
|
||||
|
||||
<Service name="Catalina" debug="4">
|
||||
|
||||
<Connector port="@HTTP.PORT@"
|
||||
maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
|
||||
enableLookups="false" redirectPort="8443" acceptCount="100"
|
||||
connectionTimeout="20000" disableUploadTimeout="true"
|
||||
scheme="http" secure="false"
|
||||
debug="4"/>
|
||||
<Connector port="@HTTPS.PORT@" protocol="HTTP/1.1" SSLEnabled="true"
|
||||
maxThreads="150" scheme="https" secure="true"
|
||||
keystoreFile="${javax.net.ssl.keyStore.proxy}" keystorePass="changeme" keystoreType="JKS" clientAuth="true" sslProtocol="TLS" />
|
||||
|
||||
<Engine name="Catalina" defaultHost="localhost"
|
||||
debug="4">
|
||||
|
||||
<Realm className="org.apache.catalina.realm.MemoryRealm" />
|
||||
|
||||
<!-- Note: There seems to be a bug in Tomcat 5.x if the debug attribute
|
||||
is present. Ideally we would have written:
|
||||
debug="4"
|
||||
However, doing this result in a NullPointerException in
|
||||
ExpandWar.java at line 145. -->
|
||||
<Host name="localhost" appBase="webapps" unpackWARs="true"
|
||||
autoDeploy="true" xmlValidation="false" xmlNamespaceAware="false">
|
||||
|
||||
<!-- Contexts to explicitely point to where the wars are located -->
|
||||
<Context path="/test" docBase="${build.target}/test.war" debug="4">
|
||||
|
||||
</Context>
|
||||
|
||||
<Valve className="org.apache.catalina.valves.AccessLogValve"
|
||||
directory="logs" prefix="localhost_access_log." suffix=".txt"
|
||||
pattern="common" resolveHosts="false"/>
|
||||
|
||||
</Host>
|
||||
|
||||
</Engine>
|
||||
|
||||
</Service>
|
||||
|
||||
</Server>
|
|
@ -1,19 +0,0 @@
|
|||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
contributor license agreements. See the NOTICE file distributed with
|
||||
this work for additional information regarding copyright ownership.
|
||||
The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
(the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<tomcat-users>
|
||||
<user name="admin" password="" roles="manager"/>
|
||||
</tomcat-users>
|
|
@ -1,964 +0,0 @@
|
|||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||
<!DOCTYPE web-app
|
||||
PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
|
||||
"http://java.sun.com/dtd/web-app_2_3.dtd">
|
||||
<web-app>
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
contributor license agreements. See the NOTICE file distributed with
|
||||
this work for additional information regarding copyright ownership.
|
||||
The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
(the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<!-- ======================== Introduction ============================== -->
|
||||
<!-- This document defines default values for *all* web applications -->
|
||||
<!-- loaded into this instance of Tomcat. As each application is -->
|
||||
<!-- deployed, this file is processed, followed by the -->
|
||||
<!-- "/WEB-INF/web.xml" deployment descriptor from your own -->
|
||||
<!-- applications. -->
|
||||
<!-- -->
|
||||
<!-- WARNING: Do not configure application-specific resources here! -->
|
||||
<!-- They should go in the "/WEB-INF/web.xml" file in your application. -->
|
||||
|
||||
|
||||
<!-- ================== Built In Servlet Definitions ==================== -->
|
||||
|
||||
|
||||
<!-- The default servlet for all web applications, that serves static -->
|
||||
<!-- resources. It processes all requests that are not mapped to other -->
|
||||
<!-- servlets with servlet mappings (defined either here or in your own -->
|
||||
<!-- web.xml file. This servlet supports the following initialization -->
|
||||
<!-- parameters (default values are in square brackets): -->
|
||||
<!-- -->
|
||||
<!-- debug Debugging detail level for messages logged -->
|
||||
<!-- by this servlet. [0] -->
|
||||
<!-- -->
|
||||
<!-- input Input buffer size (in bytes) when reading -->
|
||||
<!-- resources to be served. [2048] -->
|
||||
<!-- -->
|
||||
<!-- listings Should directory listings be produced if there -->
|
||||
<!-- is no welcome file in this directory? [true] -->
|
||||
<!-- -->
|
||||
<!-- output Output buffer size (in bytes) when writing -->
|
||||
<!-- resources to be served. [2048] -->
|
||||
<!-- -->
|
||||
<!-- readonly Is this context "read only", so HTTP -->
|
||||
<!-- commands like PUT and DELETE are -->
|
||||
<!-- rejected? [true] -->
|
||||
<!-- -->
|
||||
<!-- readmeFile File name to display with the directory -->
|
||||
<!-- contents. [null] -->
|
||||
<!-- -->
|
||||
<!-- For directory listing customization. Checks localXsltFile, then -->
|
||||
<!-- globalXsltFile, then defaults to original behavior. -->
|
||||
<!-- -->
|
||||
<!-- localXsltFile Make directory listings an XML doc and -->
|
||||
<!-- pass the result to this style sheet residing -->
|
||||
<!-- in that directory. This overrides -->
|
||||
<!-- globalXsltFile[null] -->
|
||||
<!-- -->
|
||||
<!-- globalXsltFile Site wide configuration version of -->
|
||||
<!-- localXsltFile This argument is expected -->
|
||||
<!-- to be a physical file. [null] -->
|
||||
<!-- -->
|
||||
<!-- -->
|
||||
|
||||
<servlet>
|
||||
<servlet-name>default</servlet-name>
|
||||
<servlet-class>
|
||||
org.apache.catalina.servlets.DefaultServlet
|
||||
</servlet-class>
|
||||
<init-param>
|
||||
<param-name>debug</param-name>
|
||||
<param-value>0</param-value>
|
||||
</init-param>
|
||||
<init-param>
|
||||
<param-name>listings</param-name>
|
||||
<param-value>false</param-value>
|
||||
</init-param>
|
||||
<load-on-startup>1</load-on-startup>
|
||||
</servlet>
|
||||
|
||||
|
||||
<!-- The "invoker" servlet, which executes anonymous servlet classes -->
|
||||
<!-- that have not been defined in a web.xml file. Traditionally, this -->
|
||||
<!-- servlet is mapped to the URL pattern "/servlet/*", but you can map -->
|
||||
<!-- it to other patterns as well. The extra path info portion of such a -->
|
||||
<!-- request must be the fully qualified class name of a Java class that -->
|
||||
<!-- implements Servlet (or extends HttpServlet), or the servlet name -->
|
||||
<!-- of an existing servlet definition. This servlet supports the -->
|
||||
<!-- following initialization parameters (default values are in square -->
|
||||
<!-- brackets): -->
|
||||
<!-- -->
|
||||
<!-- debug Debugging detail level for messages logged -->
|
||||
<!-- by this servlet. [0] -->
|
||||
|
||||
<!--
|
||||
<servlet>
|
||||
<servlet-name>invoker</servlet-name>
|
||||
<servlet-class>
|
||||
org.apache.catalina.servlets.InvokerServlet
|
||||
</servlet-class>
|
||||
<init-param>
|
||||
<param-name>debug</param-name>
|
||||
<param-value>0</param-value>
|
||||
</init-param>
|
||||
<load-on-startup>2</load-on-startup>
|
||||
</servlet>
|
||||
-->
|
||||
|
||||
|
||||
<!-- The JSP page compiler and execution servlet, which is the mechanism -->
|
||||
<!-- used by Tomcat to support JSP pages. Traditionally, this servlet -->
|
||||
<!-- is mapped to the URL pattern "*.jsp". This servlet supports the -->
|
||||
<!-- following initialization parameters (default values are in square -->
|
||||
<!-- brackets): -->
|
||||
<!-- -->
|
||||
<!-- checkInterval If development is false and reloading is true, -->
|
||||
<!-- background compiles are enabled. checkInterval -->
|
||||
<!-- is the time in seconds between checks to see -->
|
||||
<!-- if a JSP page needs to be recompiled. [300] -->
|
||||
<!-- -->
|
||||
<!-- compiler Which compiler Ant should use to compile JSP -->
|
||||
<!-- pages. See the Ant documentation for more -->
|
||||
<!-- information. [javac] -->
|
||||
<!-- -->
|
||||
<!-- classdebuginfo Should the class file be compiled with -->
|
||||
<!-- debugging information? [true] -->
|
||||
<!-- -->
|
||||
<!-- classpath What class path should I use while compiling -->
|
||||
<!-- generated servlets? [Created dynamically -->
|
||||
<!-- based on the current web application] -->
|
||||
<!-- -->
|
||||
<!-- development Is Jasper used in development mode (will check -->
|
||||
<!-- for JSP modification on every access)? [true] -->
|
||||
<!-- -->
|
||||
<!-- enablePooling Determines whether tag handler pooling is -->
|
||||
<!-- enabled [true] -->
|
||||
<!-- -->
|
||||
<!-- fork Tell Ant to fork compiles of JSP pages so that -->
|
||||
<!-- a separate JVM is used for JSP page compiles -->
|
||||
<!-- from the one Tomcat is running in. [true] -->
|
||||
<!-- -->
|
||||
<!-- ieClassId The class-id value to be sent to Internet -->
|
||||
<!-- Explorer when using <jsp:plugin> tags. -->
|
||||
<!-- [clsid:8AD9C840-044E-11D1-B3E9-00805F499D93] -->
|
||||
<!-- -->
|
||||
<!-- javaEncoding Java file encoding to use for generating java -->
|
||||
<!-- source files. [UTF8] -->
|
||||
<!-- -->
|
||||
<!-- keepgenerated Should we keep the generated Java source code -->
|
||||
<!-- for each page instead of deleting it? [true] -->
|
||||
<!-- -->
|
||||
<!-- mappedfile Should we generate static content with one -->
|
||||
<!-- print statement per input line, to ease -->
|
||||
<!-- debugging? [true] -->
|
||||
<!-- -->
|
||||
<!-- trimSpaces Should white spaces in template text between -->
|
||||
<!-- actions or directives be trimmed? [false] -->
|
||||
<!-- -->
|
||||
<!-- reloading Should Jasper check for modified JSPs? [true] -->
|
||||
<!-- -->
|
||||
<!-- suppressSmap Should the generation of SMAP info for JSR45 -->
|
||||
<!-- debugging be suppressed? [false] -->
|
||||
<!-- -->
|
||||
<!-- dumpSmap Should the SMAP info for JSR45 debugging be -->
|
||||
<!-- dumped to a file? [false] -->
|
||||
<!-- False if suppressSmap is true -->
|
||||
<!-- -->
|
||||
<!-- genStrAsCharArray Should text strings be generated as char -->
|
||||
<!-- arrays, to improve performance in some cases? -->
|
||||
<!-- [false] -->
|
||||
<!-- -->
|
||||
<!-- errorOnUseBeanInvalidClassAttribute -->
|
||||
<!-- Should Jasper issue an error when the value of -->
|
||||
<!-- the class attribute in an useBean action is -->
|
||||
<!-- not a valid bean class? [true] -->
|
||||
<!-- -->
|
||||
<!-- scratchdir What scratch directory should we use when -->
|
||||
<!-- compiling JSP pages? [default work directory -->
|
||||
<!-- for the current web application] -->
|
||||
<!-- -->
|
||||
<!-- xpoweredBy Determines whether X-Powered-By response -->
|
||||
<!-- header is added by generated servlet [false] -->
|
||||
<!-- -->
|
||||
<!-- If you wish to use Jikes to compile JSP pages: -->
|
||||
<!-- Set the init parameter "compiler" to "jikes". Define -->
|
||||
<!-- the property "-Dbuild.compiler.emacs=true" when starting Tomcat -->
|
||||
<!-- by adding the above to your CATALINA_OPTS environment variable. -->
|
||||
<!-- If you get an error reporting that jikes can't use UTF8 encoding, -->
|
||||
<!-- try setting the init parameter "javaEncoding" to "ISO-8859-1". -->
|
||||
|
||||
<servlet>
|
||||
<servlet-name>jsp</servlet-name>
|
||||
<servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>
|
||||
<init-param>
|
||||
<param-name>fork</param-name>
|
||||
<param-value>false</param-value>
|
||||
</init-param>
|
||||
<init-param>
|
||||
<param-name>xpoweredBy</param-name>
|
||||
<param-value>false</param-value>
|
||||
</init-param>
|
||||
<load-on-startup>3</load-on-startup>
|
||||
</servlet>
|
||||
|
||||
|
||||
<!-- Server Side Includes processing servlet, which processes SSI -->
|
||||
<!-- directives in HTML pages consistent with similar support in web -->
|
||||
<!-- servers like Apache. Traditionally, this servlet is mapped to the -->
|
||||
<!-- URL pattern "*.shtml". This servlet supports the following -->
|
||||
<!-- initialization parameters (default values are in square brackets): -->
|
||||
<!-- -->
|
||||
<!-- buffered Should output from this servlet be buffered? -->
|
||||
<!-- (0=false, 1=true) [0] -->
|
||||
<!-- -->
|
||||
<!-- debug Debugging detail level for messages logged -->
|
||||
<!-- by this servlet. [0] -->
|
||||
<!-- -->
|
||||
<!-- expires The number of seconds before a page with SSI -->
|
||||
<!-- directives will expire. [No default] -->
|
||||
<!-- -->
|
||||
<!-- isVirtualWebappRelative -->
|
||||
<!-- Should "virtual" paths be interpreted as -->
|
||||
<!-- relative to the context root, instead of -->
|
||||
<!-- the server root? (0=false, 1=true) [0] -->
|
||||
<!-- -->
|
||||
<!-- -->
|
||||
<!-- IMPORTANT: To use the SSI servlet, you also need to rename the -->
|
||||
<!-- $CATALINA_HOME/server/lib/servlets-ssi.renametojar file -->
|
||||
<!-- to $CATALINA_HOME/server/lib/servlets-ssi.jar -->
|
||||
|
||||
<!--
|
||||
<servlet>
|
||||
<servlet-name>ssi</servlet-name>
|
||||
<servlet-class>
|
||||
org.apache.catalina.ssi.SSIServlet
|
||||
</servlet-class>
|
||||
<init-param>
|
||||
<param-name>buffered</param-name>
|
||||
<param-value>1</param-value>
|
||||
</init-param>
|
||||
<init-param>
|
||||
<param-name>debug</param-name>
|
||||
<param-value>0</param-value>
|
||||
</init-param>
|
||||
<init-param>
|
||||
<param-name>expires</param-name>
|
||||
<param-value>666</param-value>
|
||||
</init-param>
|
||||
<init-param>
|
||||
<param-name>isVirtualWebappRelative</param-name>
|
||||
<param-value>0</param-value>
|
||||
</init-param>
|
||||
<load-on-startup>4</load-on-startup>
|
||||
</servlet>
|
||||
-->
|
||||
|
||||
|
||||
<!-- Common Gateway Includes (CGI) processing servlet, which supports -->
|
||||
<!-- execution of external applications that conform to the CGI spec -->
|
||||
<!-- requirements. Typically, this servlet is mapped to the URL pattern -->
|
||||
<!-- "/cgi-bin/*", which means that any CGI applications that are -->
|
||||
<!-- executed must be present within the web application. This servlet -->
|
||||
<!-- supports the following initialization parameters (default values -->
|
||||
<!-- are in square brackets): -->
|
||||
<!-- -->
|
||||
<!-- cgiPathPrefix The CGI search path will start at -->
|
||||
<!-- webAppRootDir + File.separator + this prefix. -->
|
||||
<!-- [WEB-INF/cgi] -->
|
||||
<!-- -->
|
||||
<!-- clientInputTimeout The time (in milliseconds) to wait for input -->
|
||||
<!-- from the browser before assuming that there -->
|
||||
<!-- is none. [100] -->
|
||||
<!-- -->
|
||||
<!-- debug Debugging detail level for messages logged -->
|
||||
<!-- by this servlet. [0] -->
|
||||
<!-- -->
|
||||
<!-- executable Name of the exectuable used to run the script. -->
|
||||
<!-- [perl] -->
|
||||
<!-- -->
|
||||
<!-- parameterEncoding Name of parameter encoding to be used with CGI -->
|
||||
<!-- servlet. -->
|
||||
<!-- [System.getProperty("file.encoding","UTF-8")] -->
|
||||
<!-- -->
|
||||
<!-- IMPORTANT: To use the CGI servlet, you also need to rename the -->
|
||||
<!-- $CATALINA_HOME/server/lib/servlets-cgi.renametojar file -->
|
||||
<!-- to $CATALINA_HOME/server/lib/servlets-cgi.jar -->
|
||||
|
||||
<!--
|
||||
<servlet>
|
||||
<servlet-name>cgi</servlet-name>
|
||||
<servlet-class>org.apache.catalina.servlets.CGIServlet</servlet-class>
|
||||
<init-param>
|
||||
<param-name>clientInputTimeout</param-name>
|
||||
<param-value>100</param-value>
|
||||
</init-param>
|
||||
<init-param>
|
||||
<param-name>debug</param-name>
|
||||
<param-value>6</param-value>
|
||||
</init-param>
|
||||
<init-param>
|
||||
<param-name>cgiPathPrefix</param-name>
|
||||
<param-value>WEB-INF/cgi</param-value>
|
||||
</init-param>
|
||||
<load-on-startup>5</load-on-startup>
|
||||
</servlet>
|
||||
-->
|
||||
|
||||
|
||||
<!-- ================ Built In Servlet Mappings ========================= -->
|
||||
|
||||
|
||||
<!-- The servlet mappings for the built in servlets defined above. Note -->
|
||||
<!-- that, by default, the CGI and SSI servlets are *not* mapped. You -->
|
||||
<!-- must uncomment these mappings (or add them to your application's own -->
|
||||
<!-- web.xml deployment descriptor) to enable these services -->
|
||||
|
||||
<!-- The mapping for the default servlet -->
|
||||
<servlet-mapping>
|
||||
<servlet-name>default</servlet-name>
|
||||
<url-pattern>/</url-pattern>
|
||||
</servlet-mapping>
|
||||
|
||||
<!-- The mapping for the invoker servlet -->
|
||||
<!--
|
||||
<servlet-mapping>
|
||||
<servlet-name>invoker</servlet-name>
|
||||
<url-pattern>/servlet/*</url-pattern>
|
||||
</servlet-mapping>
|
||||
-->
|
||||
|
||||
<!-- The mapping for the JSP servlet -->
|
||||
<servlet-mapping>
|
||||
<servlet-name>jsp</servlet-name>
|
||||
<url-pattern>*.jsp</url-pattern>
|
||||
</servlet-mapping>
|
||||
|
||||
<servlet-mapping>
|
||||
<servlet-name>jsp</servlet-name>
|
||||
<url-pattern>*.jspx</url-pattern>
|
||||
</servlet-mapping>
|
||||
|
||||
<!-- The mapping for the SSI servlet -->
|
||||
<!--
|
||||
<servlet-mapping>
|
||||
<servlet-name>ssi</servlet-name>
|
||||
<url-pattern>*.shtml</url-pattern>
|
||||
</servlet-mapping>
|
||||
-->
|
||||
|
||||
<!-- The mapping for the CGI Gateway servlet -->
|
||||
|
||||
<!--
|
||||
<servlet-mapping>
|
||||
<servlet-name>cgi</servlet-name>
|
||||
<url-pattern>/cgi-bin/*</url-pattern>
|
||||
</servlet-mapping>
|
||||
-->
|
||||
|
||||
|
||||
<!-- ==================== Default Session Configuration ================= -->
|
||||
<!-- You can set the default session timeout (in minutes) for all newly -->
|
||||
<!-- created sessions by modifying the value below. -->
|
||||
|
||||
<session-config>
|
||||
<session-timeout>30</session-timeout>
|
||||
</session-config>
|
||||
|
||||
|
||||
<!-- ===================== Default MIME Type Mappings =================== -->
|
||||
<!-- When serving static resources, Tomcat will automatically generate -->
|
||||
<!-- a "Content-Type" header based on the resource's filename extension, -->
|
||||
<!-- based on these mappings. Additional mappings can be added here (to -->
|
||||
<!-- apply to all web applications), or in your own application's web.xml -->
|
||||
<!-- deployment descriptor. -->
|
||||
|
||||
<mime-mapping>
|
||||
<extension>abs</extension>
|
||||
<mime-type>audio/x-mpeg</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>ai</extension>
|
||||
<mime-type>application/postscript</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>aif</extension>
|
||||
<mime-type>audio/x-aiff</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>aifc</extension>
|
||||
<mime-type>audio/x-aiff</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>aiff</extension>
|
||||
<mime-type>audio/x-aiff</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>aim</extension>
|
||||
<mime-type>application/x-aim</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>art</extension>
|
||||
<mime-type>image/x-jg</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>asf</extension>
|
||||
<mime-type>video/x-ms-asf</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>asx</extension>
|
||||
<mime-type>video/x-ms-asf</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>au</extension>
|
||||
<mime-type>audio/basic</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>avi</extension>
|
||||
<mime-type>video/x-msvideo</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>avx</extension>
|
||||
<mime-type>video/x-rad-screenplay</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>bcpio</extension>
|
||||
<mime-type>application/x-bcpio</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>bin</extension>
|
||||
<mime-type>application/octet-stream</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>bmp</extension>
|
||||
<mime-type>image/bmp</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>body</extension>
|
||||
<mime-type>text/html</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cdf</extension>
|
||||
<mime-type>application/x-cdf</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cer</extension>
|
||||
<mime-type>application/x-x509-ca-cert</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>class</extension>
|
||||
<mime-type>application/java</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cpio</extension>
|
||||
<mime-type>application/x-cpio</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>csh</extension>
|
||||
<mime-type>application/x-csh</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>css</extension>
|
||||
<mime-type>text/css</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dib</extension>
|
||||
<mime-type>image/bmp</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>doc</extension>
|
||||
<mime-type>application/msword</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dtd</extension>
|
||||
<mime-type>text/plain</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dv</extension>
|
||||
<mime-type>video/x-dv</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dvi</extension>
|
||||
<mime-type>application/x-dvi</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>eps</extension>
|
||||
<mime-type>application/postscript</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>etx</extension>
|
||||
<mime-type>text/x-setext</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>exe</extension>
|
||||
<mime-type>application/octet-stream</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>gif</extension>
|
||||
<mime-type>image/gif</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>gtar</extension>
|
||||
<mime-type>application/x-gtar</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>gz</extension>
|
||||
<mime-type>application/x-gzip</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>hdf</extension>
|
||||
<mime-type>application/x-hdf</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>hqx</extension>
|
||||
<mime-type>application/mac-binhex40</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>htc</extension>
|
||||
<mime-type>text/x-component</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>htm</extension>
|
||||
<mime-type>text/html</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>html</extension>
|
||||
<mime-type>text/html</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>hqx</extension>
|
||||
<mime-type>application/mac-binhex40</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>ief</extension>
|
||||
<mime-type>image/ief</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>jad</extension>
|
||||
<mime-type>text/vnd.sun.j2me.app-descriptor</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>jar</extension>
|
||||
<mime-type>application/java-archive</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>java</extension>
|
||||
<mime-type>text/plain</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>jnlp</extension>
|
||||
<mime-type>application/x-java-jnlp-file</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>jpe</extension>
|
||||
<mime-type>image/jpeg</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>jpeg</extension>
|
||||
<mime-type>image/jpeg</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>jpg</extension>
|
||||
<mime-type>image/jpeg</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>js</extension>
|
||||
<mime-type>text/javascript</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>jsf</extension>
|
||||
<mime-type>text/plain</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>jspf</extension>
|
||||
<mime-type>text/plain</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>kar</extension>
|
||||
<mime-type>audio/x-midi</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>latex</extension>
|
||||
<mime-type>application/x-latex</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>m3u</extension>
|
||||
<mime-type>audio/x-mpegurl</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>mac</extension>
|
||||
<mime-type>image/x-macpaint</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>man</extension>
|
||||
<mime-type>application/x-troff-man</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>me</extension>
|
||||
<mime-type>application/x-troff-me</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>mid</extension>
|
||||
<mime-type>audio/x-midi</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>midi</extension>
|
||||
<mime-type>audio/x-midi</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>mif</extension>
|
||||
<mime-type>application/x-mif</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>mov</extension>
|
||||
<mime-type>video/quicktime</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>movie</extension>
|
||||
<mime-type>video/x-sgi-movie</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>mp1</extension>
|
||||
<mime-type>audio/x-mpeg</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>mp2</extension>
|
||||
<mime-type>audio/x-mpeg</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>mp3</extension>
|
||||
<mime-type>audio/x-mpeg</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>mpa</extension>
|
||||
<mime-type>audio/x-mpeg</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>mpe</extension>
|
||||
<mime-type>video/mpeg</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>mpeg</extension>
|
||||
<mime-type>video/mpeg</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>mpega</extension>
|
||||
<mime-type>audio/x-mpeg</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>mpg</extension>
|
||||
<mime-type>video/mpeg</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>mpv2</extension>
|
||||
<mime-type>video/mpeg2</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>ms</extension>
|
||||
<mime-type>application/x-wais-source</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>nc</extension>
|
||||
<mime-type>application/x-netcdf</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>oda</extension>
|
||||
<mime-type>application/oda</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>pbm</extension>
|
||||
<mime-type>image/x-portable-bitmap</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>pct</extension>
|
||||
<mime-type>image/pict</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>pdf</extension>
|
||||
<mime-type>application/pdf</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>pgm</extension>
|
||||
<mime-type>image/x-portable-graymap</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>pic</extension>
|
||||
<mime-type>image/pict</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>pict</extension>
|
||||
<mime-type>image/pict</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>pls</extension>
|
||||
<mime-type>audio/x-scpls</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>png</extension>
|
||||
<mime-type>image/png</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>pnm</extension>
|
||||
<mime-type>image/x-portable-anymap</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>pnt</extension>
|
||||
<mime-type>image/x-macpaint</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>ppm</extension>
|
||||
<mime-type>image/x-portable-pixmap</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>ppt</extension>
|
||||
<mime-type>application/powerpoint</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>ps</extension>
|
||||
<mime-type>application/postscript</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>psd</extension>
|
||||
<mime-type>image/x-photoshop</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>qt</extension>
|
||||
<mime-type>video/quicktime</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>qti</extension>
|
||||
<mime-type>image/x-quicktime</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>qtif</extension>
|
||||
<mime-type>image/x-quicktime</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>ras</extension>
|
||||
<mime-type>image/x-cmu-raster</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>rgb</extension>
|
||||
<mime-type>image/x-rgb</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>rm</extension>
|
||||
<mime-type>application/vnd.rn-realmedia</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>roff</extension>
|
||||
<mime-type>application/x-troff</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>rtf</extension>
|
||||
<mime-type>application/rtf</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>rtx</extension>
|
||||
<mime-type>text/richtext</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>sh</extension>
|
||||
<mime-type>application/x-sh</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>shar</extension>
|
||||
<mime-type>application/x-shar</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>smf</extension>
|
||||
<mime-type>audio/x-midi</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>sit</extension>
|
||||
<mime-type>application/x-stuffit</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>snd</extension>
|
||||
<mime-type>audio/basic</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>src</extension>
|
||||
<mime-type>application/x-wais-source</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>sv4cpio</extension>
|
||||
<mime-type>application/x-sv4cpio</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>sv4crc</extension>
|
||||
<mime-type>application/x-sv4crc</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>swf</extension>
|
||||
<mime-type>application/x-shockwave-flash</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>t</extension>
|
||||
<mime-type>application/x-troff</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>tar</extension>
|
||||
<mime-type>application/x-tar</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>tcl</extension>
|
||||
<mime-type>application/x-tcl</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>tex</extension>
|
||||
<mime-type>application/x-tex</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>texi</extension>
|
||||
<mime-type>application/x-texinfo</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>texinfo</extension>
|
||||
<mime-type>application/x-texinfo</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>tif</extension>
|
||||
<mime-type>image/tiff</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>tiff</extension>
|
||||
<mime-type>image/tiff</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>tr</extension>
|
||||
<mime-type>application/x-troff</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>tsv</extension>
|
||||
<mime-type>text/tab-separated-values</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>txt</extension>
|
||||
<mime-type>text/plain</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>ulw</extension>
|
||||
<mime-type>audio/basic</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>ustar</extension>
|
||||
<mime-type>application/x-ustar</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>xbm</extension>
|
||||
<mime-type>image/x-xbitmap</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>xht</extension>
|
||||
<mime-type>application/xhtml+xml</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>xhtml</extension>
|
||||
<mime-type>application/xhtml+xml</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>xml</extension>
|
||||
<mime-type>text/xml</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>xpm</extension>
|
||||
<mime-type>image/x-xpixmap</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>xsl</extension>
|
||||
<mime-type>text/xml</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>xwd</extension>
|
||||
<mime-type>image/x-xwindowdump</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>wav</extension>
|
||||
<mime-type>audio/x-wav</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>svg</extension>
|
||||
<mime-type>image/svg+xml</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>svgz</extension>
|
||||
<mime-type>image/svg+xml</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>vsd</extension>
|
||||
<mime-type>application/x-visio</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<!-- Wireless Bitmap -->
|
||||
<extension>wbmp</extension>
|
||||
<mime-type>image/vnd.wap.wbmp</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<!-- WML Source -->
|
||||
<extension>wml</extension>
|
||||
<mime-type>text/vnd.wap.wml</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<!-- Compiled WML -->
|
||||
<extension>wmlc</extension>
|
||||
<mime-type>application/vnd.wap.wmlc</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<!-- WML Script Source -->
|
||||
<extension>wmls</extension>
|
||||
<mime-type>text/vnd.wap.wmlscript</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<!-- Compiled WML Script -->
|
||||
<extension>wmlscriptc</extension>
|
||||
<mime-type>application/vnd.wap.wmlscriptc</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>wrl</extension>
|
||||
<mime-type>x-world/x-vrml</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>Z</extension>
|
||||
<mime-type>application/x-compress</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>z</extension>
|
||||
<mime-type>application/x-compress</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>zip</extension>
|
||||
<mime-type>application/zip</mime-type>
|
||||
</mime-mapping>
|
||||
|
||||
|
||||
<!-- ==================== Default Welcome File List ===================== -->
|
||||
<!-- When a request URI refers to a directory, the default servlet looks -->
|
||||
<!-- for a "welcome file" within that directory and, if present, -->
|
||||
<!-- to the corresponding resource URI for display. If no welcome file -->
|
||||
<!-- is present, the default servlet either serves a directory listing, -->
|
||||
<!-- or returns a 404 status, depending on how it is configured. -->
|
||||
<!-- -->
|
||||
<!-- If you define welcome files in your own application's web.xml -->
|
||||
<!-- deployment descriptor, that list *replaces* the list configured -->
|
||||
<!-- here, so be sure that you include any of the default values that -->
|
||||
<!-- you wish to include. -->
|
||||
|
||||
<welcome-file-list>
|
||||
<welcome-file>index.html</welcome-file>
|
||||
<welcome-file>index.htm</welcome-file>
|
||||
<welcome-file>index.jsp</welcome-file>
|
||||
</welcome-file-list>
|
||||
|
||||
</web-app>
|
|
@ -1,154 +0,0 @@
|
|||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
contributor license agreements. See the NOTICE file distributed with
|
||||
this work for additional information regarding copyright ownership.
|
||||
The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
(the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<!DOCTYPE web-app
|
||||
PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
|
||||
"http://java.sun.com/dtd/web-app_2_3.dtd">
|
||||
|
||||
<web-app>
|
||||
|
||||
|
||||
<!-- General description of your web application -->
|
||||
|
||||
<display-name>HDFS Proxy</display-name>
|
||||
<description>
|
||||
get data from grid
|
||||
</description>
|
||||
|
||||
|
||||
<!-- Context initialization parameters that define shared
|
||||
String constants used within your application, which
|
||||
can be customized by the system administrator who is
|
||||
installing your application. The values actually
|
||||
assigned to these parameters can be retrieved in a
|
||||
servlet or JSP page by calling:
|
||||
|
||||
String value =
|
||||
getServletContext().getInitParameter("name");
|
||||
|
||||
where "name" matches the <param-name> element of
|
||||
one of these initialization parameters.
|
||||
|
||||
You can define any number of context initialization
|
||||
parameters, including zero.
|
||||
-->
|
||||
|
||||
<context-param>
|
||||
<param-name>webmaster</param-name>
|
||||
<param-value>zhiyong1@yahoo-inc.com</param-value>
|
||||
<description>
|
||||
The EMAIL address of the administrator to whom questions
|
||||
and comments about this application should be addressed.
|
||||
</description>
|
||||
</context-param>
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- Servlet definitions for the servlets that make up
|
||||
your web application, including initialization
|
||||
parameters. With Tomcat, you can also send requests
|
||||
to servlets not listed here with a request like this:
|
||||
|
||||
http://localhost:8080/{context-path}/servlet/{classname}
|
||||
|
||||
but this usage is not guaranteed to be portable. It also
|
||||
makes relative references to images and other resources
|
||||
required by your servlet more complicated, so defining
|
||||
all of your servlets (and defining a mapping to them with
|
||||
a servlet-mapping element) is recommended.
|
||||
|
||||
Servlet initialization parameters can be retrieved in a
|
||||
servlet or JSP page by calling:
|
||||
|
||||
String value =
|
||||
getServletConfig().getInitParameter("name");
|
||||
|
||||
where "name" matches the <param-name> element of
|
||||
one of these initialization parameters.
|
||||
|
||||
You can define any number of servlets, including zero.
|
||||
-->
|
||||
|
||||
<filter>
|
||||
<filter-name>proxyFilter</filter-name>
|
||||
<filter-class>org.apache.hadoop.hdfsproxy.ProxyFilter</filter-class>
|
||||
</filter>
|
||||
|
||||
<filter-mapping>
|
||||
<filter-name>proxyFilter</filter-name>
|
||||
<url-pattern>/*</url-pattern>
|
||||
</filter-mapping>
|
||||
|
||||
<servlet>
|
||||
<servlet-name>listPaths</servlet-name>
|
||||
<description>list paths data access</description>
|
||||
<servlet-class>org.apache.hadoop.hdfsproxy.ProxyListPathsServlet</servlet-class>
|
||||
</servlet>
|
||||
|
||||
<servlet-mapping>
|
||||
<servlet-name>listPaths</servlet-name>
|
||||
<url-pattern>/listPaths/*</url-pattern>
|
||||
</servlet-mapping>
|
||||
|
||||
<servlet>
|
||||
<servlet-name>data</servlet-name>
|
||||
<description>data access</description>
|
||||
<servlet-class>org.apache.hadoop.hdfsproxy.ProxyFileDataServlet</servlet-class>
|
||||
</servlet>
|
||||
|
||||
<servlet-mapping>
|
||||
<servlet-name>data</servlet-name>
|
||||
<url-pattern>/data/*</url-pattern>
|
||||
</servlet-mapping>
|
||||
|
||||
<servlet>
|
||||
<servlet-name>streamFile</servlet-name>
|
||||
<description>stream file access</description>
|
||||
<servlet-class>org.apache.hadoop.hdfsproxy.ProxyStreamFile</servlet-class>
|
||||
</servlet>
|
||||
|
||||
<servlet-mapping>
|
||||
<servlet-name>streamFile</servlet-name>
|
||||
<url-pattern>/streamFile/*</url-pattern>
|
||||
</servlet-mapping>
|
||||
|
||||
|
||||
<welcome-file-list>
|
||||
<welcome-file>index.html</welcome-file>
|
||||
</welcome-file-list>
|
||||
|
||||
<!-- Define the default session timeout for your application,
|
||||
in minutes. From a servlet or JSP page, you can modify
|
||||
the timeout for a particular session dynamically by using
|
||||
HttpSession.getMaxInactiveInterval(). -->
|
||||
|
||||
<session-config>
|
||||
<session-timeout>30</session-timeout> <!-- 30 minutes -->
|
||||
</session-config>
|
||||
|
||||
|
||||
</web-app>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -1,601 +0,0 @@
|
|||
<?xml version="1.0"?>
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
contributor license agreements. See the NOTICE file distributed with
|
||||
this work for additional information regarding copyright ownership.
|
||||
The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
(the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
|
||||
|
||||
|
||||
<document>
|
||||
|
||||
<header>
|
||||
<title> HDFS Proxy Guide</title>
|
||||
</header>
|
||||
|
||||
<body>
|
||||
<section>
|
||||
<title> Introduction </title>
|
||||
<p> HDFS Proxy is a proxy server through which a hadoop client (through HSFTP) or a standard
|
||||
HTTPS client (wget, curl, etc) can talk to a hadoop server and more importantly pull data from
|
||||
the sever. It put an access control layer in front of hadoop namenode server and
|
||||
extends its functionalities to allow hadoop cross-version data transfer. </p>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<title> Goals and Use Cases </title>
|
||||
<section>
|
||||
<title> Data Transfer from HDFS clusters </title>
|
||||
<ul>
|
||||
<li>User uses HSFTP protocol (hadoop distcp/fs, etc) to access HDFS proxy to copy out data stored on one or more HDFS clusters.</li>
|
||||
<li>User uses HTTPS protocol (curl, wget, etc) to access HDFS proxy to copy out data stored on one or more HDFS clusters </li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<title> Cross-version Data Transfer </title>
|
||||
<p>There are multiple HDFS clusters and possibly in different hadoop versions, each holding
|
||||
different data. A client need to access these data in a standard way without worrying about
|
||||
version compatibility issues. </p>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<title> User Access Control </title>
|
||||
<ul>
|
||||
<li>User Access Control through SSL certificates</li>
|
||||
<li>User Access Control through LDAP (Lightweight Directory Access Protocol) server</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<title> Comparison with NameNode's H(S)FTP Interface </title>
|
||||
<p>NameNode has a http listener started at <code>dfs.namenode.http-address</code> with default port 50070 when NameNode is started and it provided a HFTP interface for the client. Also it could have a https listener started at <code>dfs.namenode.https-address</code> if <code>dfs.https.enable</code> is defined as true (by default, <code>dfs.https.enable</code> is not defined) to provide a HSFTP interface for client.</p>
|
||||
<section>
|
||||
<title>Advantages of Proxy Over NameNode HTTP(S) server</title>
|
||||
<ol>
|
||||
<li>We can centralize access control layer to the proxy part so that NameNode server can lower its burden. In this sense, HDFS proxy plays a filtering role to control data access to NameNode and DataNodes. It is especially useful if the HDFS system has some sensitive data in it.
|
||||
</li>
|
||||
<li> After modulizing HDFS proxy into a standalone package, we can decouple the complexity of HDFS system and expand the proxy functionalities without worring about affecting other HDFS system features.
|
||||
</li>
|
||||
</ol>
|
||||
</section>
|
||||
<section>
|
||||
<title>Disadvantages of Using Proxy Instead of Getting Data Directly from H(S)FTP Interface: Slower in speed. This is due to</title>
|
||||
<ol>
|
||||
<li>HDFS proxy need to first copy data from source cluster, then transfer the data out to the client.</li>
|
||||
<li> Unlike H(S)FTP interface, where file status listing, etc., is through NameNode server, and real data transfer is redirected to the real DataNode server, all data transfer under HDFS proxy is through the proxy server.</li>
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<title> Design </title>
|
||||
<section>
|
||||
<title> Design Overview </title>
|
||||
<figure src="images/hdfsproxy-overview.jpg" alt="HDFS Proxy Architecture"/>
|
||||
<p>As shown in the above figure, in the client-side, proxy server will accept requests from HSFTP client and HTTPS client. The requests will pass through a filter module (containing one or more filters) for access control checking. Then the requests will go through a delegation module, whose responsibility is to direct the requests to the right client version for accessing the source cluster. After that, the delegated client will talk to the source cluster server through RPC protocol using servlets. </p>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<title> Filter Module: Proxy Authentication and Access Control </title>
|
||||
<figure src="images/hdfsproxy-server.jpg" alt="HDFS Proxy Filters"/>
|
||||
|
||||
<p> To realize proxy authentication and access control, we used a servlet filter. The filter module is very
|
||||
flexible, it can be installed or disabled by simply changing the corresponding items in deployment
|
||||
descriptor file (web.xml). We implemented two filters in the proxy code: ProxyFilter and LdapIpDirFilter. The process of how each filter works is listed as below.</p>
|
||||
|
||||
<section>
|
||||
<title>SSL certificate-based proxyFilter</title>
|
||||
<ol>
|
||||
<li>A user will use a pre-issued SSL certificate to access the proxy.</li>
|
||||
<li>The proxy server will authenticate the user certificate.</li>
|
||||
<li>The user’s authenticated identity (extracted from the user’s SSL certificate) is used to check access to data on the proxy.</li>
|
||||
<li>User access information is stored in two configuration files, user-certs.xml and user-permissions.xml.</li>
|
||||
<li>The proxy will forward the user’s authenticated identity to HDFS clusters for HDFS file permission checking</li>
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<title>LDAP-based LdapIpDirFilter</title>
|
||||
<ol>
|
||||
<li>A standalone LDAP server need to be set-up to store user information as entries, and each entry contains userId, user group, IP address(es), allowable HDFS directories, etc.</li>
|
||||
<li>An LDAP entry may contain multiple IP addresses with the same userId and group attribute to realize headless account.</li>
|
||||
<li>Upon receiving a request, the proxy server will extract the user's Ip adress from the request header, query the LDAP server with the IP address to get the direcotry permission information, then compare that with the user request path to make a allow/deny decision.</li>
|
||||
</ol>
|
||||
</section>
|
||||
<p>SSL-based proxyFilter provides strong PKI authentication and encryption, proxy server can create a self-signed CA using OpenSSL and use that CA to sign and issue certificates to clients. </p>
|
||||
<p>Managing access information through configuration files is a convenient way to start and easy to set-up for a small user group. However, to scale to a large user group and to handle account management operations such as add, delete, and change access, a separate package or a different mechanism like LDAP server is needed.</p>
|
||||
<p>The schema for the entry attributes in the LDAP server should match what is used in the proxy. The schema that is currently used in proxy is configurable through hdfsproxy-default.xml, but the attributes should always contain IP address (default as uniqueMember), userId (default as uid), user group (default as userClass), and alloable HDFS directories (default as documentLocation).</p>
|
||||
<p>Users can also write their own filters to plug in the filter chain to realize extended functionalities.</p>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<title> Delegation Module: HDFS Cross-version Data Transfer </title>
|
||||
<figure src="images/hdfsproxy-forward.jpg" alt="HDFS Proxy Forwarding"/>
|
||||
<p>As shown in the Figure, the delegation module contains two parts: </p>
|
||||
<ol>
|
||||
<li>A Forwarding war, which plays the role of identifying the requests and directing the requests to the right HDFS client RPC version. </li>
|
||||
<li>Several RPC client versions necessary to talk to all the HDFS source cluster servers. </li>
|
||||
</ol>
|
||||
<p>All servlets are packaged in the WAR files.</p>
|
||||
<p>Strictly speaking, HDFS proxy does not by itself solve HDFS cross-version communication problem. However, through wrapping all the RPC client versions and delegating the client requests to the right version of RPC clients, HDFS proxy functions as if it can talk to multiple source clusters in different hadoop versions.</p>
|
||||
<p>Packaging the servlets in the WAR files has several advantages:</p>
|
||||
<ol>
|
||||
<li>It reduces the complexity of writing our own ClassLoaders for different RPC clients. Servlet
|
||||
container (Tomcat) already uses separate ClassLoaders for different WAR files.</li>
|
||||
<li>Packaging is done by the Servlet container (Tomcat). For each client WAR file, its Servlets
|
||||
only need to worry about its own version of source HDFS clusters.</li>
|
||||
</ol>
|
||||
<p>Note that the inter-communication between servlets in the forwarding war and that in the specific client version war can only be through built-in data types such as int, String, etc, as such data types are loaded first through common classloader. </p>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<title> Servlets: Where Data transfer Occurs</title>
|
||||
<p>Proxy server functionality is implemented using servlets deployed under servlet container. Specifically, there are 3 proxy servlets <code>ProxyListPathsServlet</code>, <code>ProxyFileDataServlet</code>, and <code>ProxyStreamFile</code>. Together, they implement the same H(S)FTP interface as the original <code>ListPathsServlet</code>, <code>FileDataServlet</code>, and <code>StreamFile</code> servlets do on an HDFS cluster. In fact, the proxy servlets are subclasses of the original servlets with minor changes like retrieving client UGI from the proxy server, etc. All these three servlets are put into the client war files.</p>
|
||||
<p>The forwarding proxy, which was implemented through <code>ProxyForwardServlet</code>, is put in a separate web application (ROOT.war). All client requests should be sent to the forwarding proxy. The forwarding proxy does not implement any functionality by itself. Instead, it simply forwards client requests to the right web applications with the right servlet paths.</p>
|
||||
<p>Forwarding servlets forward requests to servlets in the right web applications through servlet cross-context communication by setting <code>crossContext="true"</code> in servlet container's configuration file</p>
|
||||
<p>Proxy server will install a servlet, <code>ProxyFileForward</code>, which is a subclass of <code>ProxyForwardServlet</code>, on path /file, which exposes a simple HTTPS GET interface (internally delegates the work to <code>ProxyStreamFile</code> servlet via forwarding mechanism discussed above). This interface supports standard HTTP clients like curl, wget, etc. HTTPS client requests on the wire should look like <code>https://proxy_address/file/file_path</code></p>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<title> Load Balancing and Identifying Requests through Domain Names </title>
|
||||
<figure src="images/request-identify.jpg" alt="Request Identification"/>
|
||||
<p>The delegation module relies on the forwarding WAR to be able to identify the requests so that it can direct the requests to the right HDFS client RPC versions. Identifying the requests through Domain Name, which can be extracted from the request header, is a straightforward way. Note that Domain Name can have many alias through CNAME. By exploiting such a feature, we can create a Domain Name, then create many alias of this domain name, and finally make these alias correspond to different client RPC request versions. As the same time, we may need many servers to do load balancing. We can make all these servers (with different IP addresses) point to the same Domain Name in a Round-robin fashion. By doing this, we can realize default load-balancing if we have multiple through proxy servers running in the back-end.</p>
|
||||
</section>
|
||||
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<title> Jetty-based Installation and Configuration </title>
|
||||
<p>With Jetty-based installation, only part of proxy features are supported.</p>
|
||||
<section>
|
||||
<title> Supporting Features </title>
|
||||
<ul>
|
||||
<li>Single Hadoop source cluster data transfer</li>
|
||||
<li>Single Hadoop version data transfer</li>
|
||||
<li>Authenticate users via user SSL certificates with <code>ProxyFilter</code> installed</li>
|
||||
<li>Enforce access control based on configuration files.</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<title> Configuration Files </title>
|
||||
<ol>
|
||||
<li>
|
||||
<strong>hdfsproxy-default.xml</strong>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Description</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>hdfsproxy.https.address</td>
|
||||
<td>the SSL port that hdfsproxy listens on. </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>hdfsproxy.hosts</td>
|
||||
<td>location of hdfsproxy-hosts file. </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>hdfsproxy.dfs.namenode.address</td>
|
||||
<td>namenode address of the HDFS cluster being proxied. </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>hdfsproxy.https.server.keystore.resource</td>
|
||||
<td>location of the resource from which ssl server keystore information will be extracted. </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>hdfsproxy.user.permissions.file.location</td>
|
||||
<td>location of the user permissions file. </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>hdfsproxy.user.certs.file.location</td>
|
||||
<td>location of the user certs file. </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>hdfsproxy.ugi.cache.ugi.lifetime</td>
|
||||
<td> The lifetime (in minutes) of a cached ugi. </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
<li>
|
||||
<strong>ssl-server.xml</strong>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Description</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>ssl.server.truststore.location</td>
|
||||
<td>location of the truststore. </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>ssl.server.truststore.password</td>
|
||||
<td>truststore password. </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>ssl.server.keystore.location</td>
|
||||
<td>location of the keystore. </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>ssl.server.keystore.password</td>
|
||||
<td>keystore password. </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>ssl.server.keystore.keypassword</td>
|
||||
<td>key password. </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
<li>
|
||||
<strong>user-certs.xml</strong>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Description</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">This file defines the mappings from username to comma seperated list of certificate serial numbers that the user is allowed to use. One mapping per user. Wildcard characters, such as "*" and "?", are not recognized. Any leading or trailing whitespaces are stripped/ignored. In order for a user to be able to do "clearUgiCache" and "reloadPermFiles" command, the certification serial number he use must also belong to the user "Admin".
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
<li>
|
||||
<strong>user-permissions.xml</strong>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Description</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">This file defines the mappings from user name to comma seperated list of directories/files that the user is allowed to access. One mapping per user. Wildcard characters, such as "*" and "?", are not recognized. For example, to match "/output" directory, one can use "/output" or "/output/", but not "/output/*". Note that any leading or trailing whitespaces are stripped/ignored for the name field.
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ol>
|
||||
</section>
|
||||
<section>
|
||||
<title> Build Process </title>
|
||||
<p>Under <code>$HADOOP_PREFIX</code> do the following <br/>
|
||||
<code> $ ant clean tar</code> <br/>
|
||||
<code> $ cd src/contrib/hdfsproxy/</code> <br/>
|
||||
<code> $ ant clean tar</code> <br/>
|
||||
The <code>hdfsproxy-*.tar.gz</code> file will be generated under <code>$HADOOP_PREFIX/build/contrib/hdfsproxy/</code>. Use this tar ball to proceed for the server start-up/shutdown process after necessary configuration.
|
||||
</p>
|
||||
</section>
|
||||
<section>
|
||||
<title> Server Start up and Shutdown</title>
|
||||
<p> Starting up a Jetty-based HDFS Proxy server is similar to starting up an HDFS cluster. Simply run <code>hdfsproxy</code> shell command. The main configuration file is <code>hdfsproxy-default.xml</code>, which should be on the classpath. <code>hdfsproxy-env.sh</code> can be used to set up environmental variables. In particular, <code>JAVA_HOME</code> should be set. As listed above, additional configuration files include <code>user-certs.xml</code>, <code>user-permissions.xml</code> and <code>ssl-server.xml</code>, which are used to specify allowed user certs, allowed directories/files, and ssl keystore information for the proxy, respectively. The location of these files can be specified in <code>hdfsproxy-default.xml</code>. Environmental variable <code>HDFSPROXY_CONF_DIR</code> can be used to point to the directory where these configuration files are located. The configuration files (<code>hadoop-site.xml</code>, or <code>core-site.xml</code> and <code>hdfs-site.xml</code>) of the proxied HDFS cluster should also be available on the classpath .
|
||||
</p>
|
||||
<p> Mirroring those used in HDFS, a few shell scripts are provided to start and stop a group of proxy servers. The hosts to run hdfsproxy on are specified in <code>hdfsproxy-hosts</code> file, one host per line. All hdfsproxy servers are stateless and run independently from each other. </p>
|
||||
<p>
|
||||
To start a group of proxy servers, do <br/>
|
||||
<code> $ start-hdfsproxy.sh </code>
|
||||
</p>
|
||||
<p>
|
||||
To stop a group of proxy servers, do <br/>
|
||||
<code> $ stop-hdfsproxy.sh </code>
|
||||
</p>
|
||||
<p>
|
||||
To trigger reloading of <code>user-certs.xml</code> and <code>user-permissions.xml</code> files on all proxy servers listed in the <code>hdfsproxy-hosts</code> file, do <br/>
|
||||
<code> $ hdfsproxy -reloadPermFiles </code>
|
||||
</p>
|
||||
<p>To clear the UGI caches on all proxy servers, do <br/>
|
||||
<code> $ hdfsproxy -clearUgiCache </code>
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<title> Verification </title>
|
||||
<p> Use HSFTP client <br/>
|
||||
<code>bin/hadoop fs -ls "hsftp://proxy.address:port/"</code>
|
||||
</p>
|
||||
</section>
|
||||
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<title> Tomcat-based Installation and Configuration </title>
|
||||
<p>With tomcat-based installation, all HDFS Proxy features are supported</p>
|
||||
<section>
|
||||
<title> Supporting Features </title>
|
||||
<ul>
|
||||
<li>Multiple Hadoop source cluster data transfer</li>
|
||||
<li>Multiple Hadoop version data transfer</li>
|
||||
<li>Authenticate users via user SSL certificates with <code>ProxyFilter</code> installed</li>
|
||||
<li>Authentication and authorization via LDAP with <code>LdapIpDirFilter</code> installed</li>
|
||||
<li>Access control based on configuration files if <code>ProxyFilter</code> is installed.</li>
|
||||
<li>Access control based on LDAP entries if <code>LdapIpDirFilter</code> is installed.</li>
|
||||
<li>Standard HTTPS Get Support for file transfer</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
<section>
|
||||
<title> Source Cluster Related Configuration </title>
|
||||
<ol>
|
||||
<li>
|
||||
<strong>hdfsproxy-default.xml</strong>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Description</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>fs.defaultFS</td>
|
||||
<td>Source Cluster NameNode address</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>dfs.blocksize</td>
|
||||
<td>The block size for file tranfers</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>io.file.buffer.size</td>
|
||||
<td> The size of buffer for use in sequence files. The size of this buffer should probably be a multiple of hardware page size (4096 on Intel x86), and it determines how much data is buffered during read and write operations </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<title> SSL Related Configuration </title>
|
||||
<ol>
|
||||
<li>
|
||||
<strong>hdfsproxy-default.xml</strong>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Description</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>hdfsproxy.user.permissions.file.location</td>
|
||||
<td>location of the user permissions file. </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>hdfsproxy.user.certs.file.location</td>
|
||||
<td>location of the user certs file. </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>hdfsproxy.ugi.cache.ugi.lifetime</td>
|
||||
<td> The lifetime (in minutes) of a cached ugi. </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
<li>
|
||||
<strong>user-certs.xml</strong>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Description</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">This file defines the mappings from username to comma seperated list of certificate serial numbers that the user is allowed to use. One mapping per user. Wildcard characters, such as "*" and "?", are not recognized. Any leading or trailing whitespaces are stripped/ignored. In order for a user to be able to do "clearUgiCache" and "reloadPermFiles" command, the certification serial number he use must also belong to the user "Admin".
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
<li>
|
||||
<strong>user-permissions.xml</strong>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Description</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">This file defines the mappings from user name to comma seperated list of directories/files that the user is allowed to access. One mapping per user. Wildcard characters, such as "*" and "?", are not recognized. For example, to match "/output" directory, one can use "/output" or "/output/", but not "/output/*". Note that any leading or trailing whitespaces are stripped/ignored for the name field.
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<title> LDAP Related Configuration </title>
|
||||
<ol>
|
||||
<li>
|
||||
<strong>hdfsproxy-default.xml</strong>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Description</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>hdfsproxy.ldap.initial.context.factory</td>
|
||||
<td>LDAP context factory. </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>hdfsproxy.ldap.provider.url</td>
|
||||
<td>LDAP server address. </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>hdfsproxy.ldap.role.base</td>
|
||||
<td>LDAP role base. </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
||||
<section>
|
||||
<title> Tomcat Server Related Configuration </title>
|
||||
<ol>
|
||||
<li>
|
||||
<strong>tomcat-forward-web.xml</strong>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Description</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">This deployment descritor file defines how servlets and filters are installed in the forwarding war (ROOT.war). The default filter installed is <code>LdapIpDirFilter</code>, you can change to <code>ProxyFilter</code> with <code>org.apache.hadoop.hdfsproxy.ProxyFilter</code> as you <code>filter-class</code>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
<li>
|
||||
<strong>tomcat-web.xml</strong>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Description</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">This deployment descritor file defines how servlets and filters are installed in the client war. The default filter installed is <code>LdapIpDirFilter</code>, you can change to <code>ProxyFilter</code> with <code>org.apache.hadoop.hdfsproxy.ProxyFilter</code> as you <code>filter-class</code>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
<li>
|
||||
<strong>$TOMCAT_HOME/conf/server.xml</strong>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Description</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2"> You need to change Tomcat's server.xml file under $TOMCAT_HOME/conf as detailed in <a href="http://tomcat.apache.org/tomcat-6.0-doc/ssl-howto.html">tomcat 6 ssl-howto</a>. Set <code>clientAuth="true"</code> if you need to authenticate client.
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
<li>
|
||||
<strong>$TOMCAT_HOME/conf/context.xml</strong>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Description</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2"> You need to change Tomcat's context.xml file under $TOMCAT_HOME/conf by adding <code>crossContext="true"</code> after <code>Context</code>.
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ol>
|
||||
</section>
|
||||
<section>
|
||||
<title> Build and Deployment Process </title>
|
||||
<section>
|
||||
<title> Build forwarding war (ROOT.war) </title>
|
||||
<p>Suppose hdfsproxy-default.xml has been properly configured and it is under ${user.home}/proxy-root-conf dir. Under <code>$HADOOP_PREFIX</code> do the following <br/>
|
||||
<code> $ export HDFSPROXY_CONF_DIR=${user.home}/proxy-root-conf</code> <br/>
|
||||
<code> $ ant clean tar</code> <br/>
|
||||
<code> $ cd src/contrib/hdfsproxy/</code> <br/>
|
||||
<code> $ ant clean forward</code> <br/>
|
||||
The <code>hdfsproxy-forward-*.war</code> file will be generated under <code>$HADOOP_PREFIX/build/contrib/hdfsproxy/</code>. Copy this war file to tomcat's webapps directory and rename it at ROOT.war (if ROOT dir already exists, remove it first) for deployment.
|
||||
</p>
|
||||
</section>
|
||||
<section>
|
||||
<title> Build cluster client war (client.war) </title>
|
||||
<p>Suppose hdfsproxy-default.xml has been properly configured and it is under ${user.home}/proxy-client-conf dir. Under <code>$HADOOP_PREFIX</code> do the following <br/>
|
||||
<code> $ export HDFSPROXY_CONF_DIR=${user.home}/proxy-client-conf</code> <br/>
|
||||
<code> $ ant clean tar</code> <br/>
|
||||
<code> $ cd src/contrib/hdfsproxy/</code> <br/>
|
||||
<code> $ ant clean war</code> <br/>
|
||||
The <code>hdfsproxy-*.war</code> file will be generated under <code>$HADOOP_PREFIX/build/contrib/hdfsproxy/</code>. Copy this war file to tomcat's webapps directory and rename it properly for deployment.
|
||||
</p>
|
||||
</section>
|
||||
<section>
|
||||
<title> Handle Multiple Source Clusters </title>
|
||||
<p> To proxy for multiple source clusters, you need to do the following:</p>
|
||||
<ol>
|
||||
<li>Build multiple client war with different names and different hdfsproxy-default.xml configurations</li>
|
||||
<li>Make multiple alias using CNAME of the same Domain Name</li>
|
||||
<li>Make sure the first part of the alias match the corresponding client war file name. For example, you have two source clusters, sc1 and sc2, and you made two alias of the same domain name, proxy1.apache.org and proxy2.apache.org, then you need to name the client war file as proxy1.war and proxy2.war respectively for your deployment.</li>
|
||||
</ol>
|
||||
</section>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<title> Server Start up and Shutdown</title>
|
||||
<p> Starting up and shutting down Tomcat-based HDFS Proxy server is no more than starting up and shutting down tomcat server with tomcat's bin/startup.sh and bin/shutdown.sh script.</p>
|
||||
<p> If you need to authenticate client certs, you need either set <code>truststoreFile</code> and <code>truststorePass</code> following <a href="http://tomcat.apache.org/tomcat-6.0-doc/ssl-howto.html">tomcat 6 ssl-howto</a> in the configuration stage or give the truststore location by doing the following <br/>
|
||||
<code>export JAVA_OPTS="-Djavax.net.ssl.trustStore=${user.home}/truststore-location -Djavax.net.ssl.trustStorePassword=trustpass"</code> <br/>
|
||||
before you start-up tomcat.
|
||||
</p>
|
||||
</section>
|
||||
<section>
|
||||
<title> Verification </title>
|
||||
<p>HTTPS client <br/>
|
||||
<code>curl -k "https://proxy.address:port/file/file-path"</code> <br/>
|
||||
<code>wget --no-check-certificate "https://proxy.address:port/file/file-path"</code>
|
||||
</p>
|
||||
<p>HADOOP client <br/>
|
||||
<code>bin/hadoop fs -ls "hsftp://proxy.address:port/"</code>
|
||||
</p>
|
||||
</section>
|
||||
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<title> Hadoop Client Configuration </title>
|
||||
<ul>
|
||||
<li>
|
||||
<strong>ssl-client.xml</strong>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Description</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>ssl.client.do.not.authenticate.server</td>
|
||||
<td>if true, trust all server certificates, like curl's -k option</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>ssl.client.truststore.location</td>
|
||||
<td>Location of truststore</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>ssl.client.truststore.password</td>
|
||||
<td> truststore password </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>ssl.client.truststore.type</td>
|
||||
<td> truststore type </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>ssl.client.keystore.location</td>
|
||||
<td> Location of keystore </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>ssl.client.keystore.password</td>
|
||||
<td> keystore password </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>ssl.client.keystore.type</td>
|
||||
<td> keystore type </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>ssl.client.keystore.keypassword</td>
|
||||
<td> keystore key password </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>ssl.expiration.warn.days</td>
|
||||
<td> server certificate expiration war days threshold, 0 means no warning should be issued </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</document>
|
|
@ -43,7 +43,6 @@ See http://forrest.apache.org/docs/linking.html for more info.
|
|||
<hdfs_SLG label="Synthetic Load Generator" href="SLG_user_guide.html" />
|
||||
<hdfs_imageviewer label="Offline Image Viewer" href="hdfs_imageviewer.html" />
|
||||
<hdfs_editsviewer label="Offline Edits Viewer" href="hdfs_editsviewer.html" />
|
||||
<hdfsproxy label="HDFS Proxy" href="hdfsproxy.html"/>
|
||||
<hftp label="HFTP" href="hftp.html"/>
|
||||
<faultinject_framework label="Fault Injection" href="faultinject_framework.html" />
|
||||
<hdfs_libhdfs label="C API libhdfs" href="libhdfs.html" />
|
||||
|
|
Loading…
Reference in New Issue