"EPRT", null));
return;
}
// is port enabled
DataConnectionConfiguration dataCfg = session.getListener()
.getDataConnectionConfiguration();
if (!dataCfg.isActiveEnabled()) {
session.write(FtpReplyUtil.translate(session, request, context,
510, "EPRT.disabled", null));
return;
}
// parse argument
String host = null;
String port = null;
try {
char delim = arg.charAt(0);
int lastDelimIdx = arg.indexOf(delim, 3);
host = arg.substring(3, lastDelimIdx);
port = arg.substring(lastDelimIdx + 1, arg.length() - 1);
} catch (Exception ex) {
LOG.debug("Exception parsing host and port: " + arg, ex);
session.write(FtpReplyUtil.translate(session, request, context,
510, "EPRT", null));
return;
}
// get data server
InetAddress dataAddr = null;
try {
dataAddr = InetAddress.getByName(host);
} catch (UnknownHostException ex) {
LOG.debug("Unknown host: " + host, ex);
session
.write(FtpReplyUtil
.translate(
session,
request,
context,
FtpReply.REPLY_553_REQUESTED_ACTION_NOT_TAKEN_FILE_NAME_NOT_ALLOWED,
"EPRT.host", null));
return;
}
// check IP
if (dataCfg.isActiveIpCheck()) {
if (session.getRemoteAddress() instanceof InetSocketAddress) {
InetAddress clientAddr = ((InetSocketAddress) session
.getRemoteAddress()).getAddress();
if (!dataAddr.equals(clientAddr)) {
session.write(FtpReplyUtil.translate(session, request,