// httpd.java // ----------------------- // (C) by Michael Peter Christen; mc@yacy.net // first published on http://www.anomic.de // Frankfurt, Germany, 2004 // // $LastChangedDate$ // $LastChangedRevision$ // $LastChangedBy$ // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 2 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA package de.anomic.http; import java.io.ByteArrayOutputStream; import java.io.CharArrayWriter; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.io.PrintStream; import java.io.UnsupportedEncodingException; import java.net.InetAddress; import java.net.MalformedURLException; import java.net.URLDecoder; import java.net.URLEncoder; import java.nio.charset.Charset; import java.util.Arrays; import java.util.Date; import java.util.HashMap; import java.util.HashSet; import java.util.Iterator; import java.util.List; import java.util.Map; import java.util.Properties; import java.util.StringTokenizer; import java.util.Map.Entry; import java.util.zip.GZIPInputStream; import org.apache.commons.fileupload.FileItem; import org.apache.commons.fileupload.FileItemFactory; import org.apache.commons.fileupload.FileUpload; import org.apache.commons.fileupload.FileUploadBase; import org.apache.commons.fileupload.FileUploadException; import org.apache.commons.fileupload.RequestContext; import org.apache.commons.fileupload.disk.DiskFileItemFactory; import org.apache.commons.httpclient.ChunkedInputStream; import org.apache.commons.httpclient.ContentLengthInputStream; import de.anomic.data.userDB; import de.anomic.htmlFilter.htmlFilterCharacterCoding; import de.anomic.kelondro.kelondroBase64Order; import de.anomic.kelondro.kelondroDigest; import de.anomic.plasma.plasmaSwitchboard; import de.anomic.server.serverByteBuffer; import de.anomic.server.serverCodings; import de.anomic.server.serverCore; import de.anomic.server.serverDate; import de.anomic.server.serverDomains; import de.anomic.server.serverFileUtils; import de.anomic.server.serverHandler; import de.anomic.server.serverObjects; import de.anomic.server.serverSwitch; import de.anomic.server.logging.serverLog; import de.anomic.yacy.yacyURL; /** * Instances of this class can be passed as argument to the serverCore. * The generic server dispatches HTTP commands and calls the * method GET, HEAD or POST in this class * these methods parse the command line and decide wether to call * a proxy servlet or a file server servlet */ public final class httpd implements serverHandler, Cloneable { /** *

public static final String ADMIN_ACCOUNT_B64MD5 = "adminAccountBase64MD5"

*

Name of the setting holding the authentification hash for the static admin-account. It is calculated * by first encoding username:password as Base64 and hashing it using {@link serverCodings#encodeMD5Hex(String)}.

*/ public static final String ADMIN_ACCOUNT_B64MD5 = "adminAccountBase64MD5"; public static final int ERRORCASE_MESSAGE = 4; public static final int ERRORCASE_FILE = 5; private static httpdAlternativeDomainNames alternativeResolver = null; /** * A hashset containing extensions that indicate content that should not be transported * using zipped content encoding * @see #shallTransportZipped(String) */ //TODO: Load this from a file private static final HashSet disallowZippedContentEncoding = new HashSet(Arrays.asList(new String[]{ ".gz", ".tgz", ".jpg", ".jpeg", ".gif", ".zip", ".rar", ".bz2", ".lha", ".jar", ".rpm", ".arc", ".arj", ".wmv", ".png", ".ico", ".bmp" })); // static objects public static final String vDATE = "<>"; public static final String copyright = "[ HTTP SERVER: AnomicHTTPD v" + vDATE + " by Michael Christen / www.anomic.de ]"; public static final String hline = "-------------------------------------------------------------------------------"; public static final HashMap reverseMappingCache = new HashMap(); private static volatile plasmaSwitchboard switchboard = null; private static String virtualHost = null; public static boolean keepAliveSupport = false; private static HashMap YaCyHopAccessRequester = new HashMap(); private static HashMap YaCyHopAccessTargets = new HashMap(); // class objects private serverCore.Session session; // holds the session object of the calling class private InetAddress userAddress; // the address of the client // for authentication private boolean use_proxyAccounts = false; private boolean proxyAccounts_init = false; // is use_proxyAccounts set? private String serverAccountBase64MD5; private String clientIP; private boolean allowProxy; private boolean allowServer; private boolean allowYaCyHop; // the connection properties private final Properties prop = new Properties(); private int emptyRequestCount = 0; private int keepAliveRequestCount = 0; // needed for logging private final static serverLog log = new serverLog("HTTPD"); // class methods public httpd(final serverSwitch s) { // handler info httpd.switchboard = (plasmaSwitchboard)s; httpd.virtualHost = switchboard.getConfig("fileHost","localhost"); // authentication: by default none this.proxyAccounts_init = false; this.serverAccountBase64MD5 = null; this.clientIP = null; // configuring keep alive support keepAliveSupport = Boolean.valueOf(switchboard.getConfig("connectionKeepAliveSupport","false")).booleanValue(); } public Properties getConProp() { return this.prop; } /** * Can be used to reset this {@link serverHandler} oject so that * it can be reused for further connections * @see de.anomic.server.serverHandler#reset() */ public void reset() { this.session = null; this.userAddress = null; this.allowProxy = false; this.allowServer = false; this.allowYaCyHop = false; this.proxyAccounts_init = false; this.serverAccountBase64MD5 = null; this.clientIP = null; this.prop.clear(); this.emptyRequestCount = 0; this.keepAliveRequestCount = 0; } /** * Must be called at least once, but can be called again to re-use the object. * @see de.anomic.server.serverHandler#initSession(de.anomic.server.serverCore.Session) */ public void initSession(final serverCore.Session newsession) throws IOException { this.session = newsession; this.userAddress = session.userAddress; // client InetAddress this.clientIP = this.userAddress.getHostAddress(); if (this.userAddress.isAnyLocalAddress()) this.clientIP = "localhost"; if (this.clientIP.startsWith("0:0:0:0:0:0:0:1")) this.clientIP = "localhost"; if (this.clientIP.startsWith("127.")) this.clientIP = "localhost"; final String proxyClient = switchboard.getConfig("proxyClient", "*"); final String serverClient = switchboard.getConfig("serverClient", "*"); this.allowProxy = (proxyClient.equals("*")) ? true : match(this.clientIP, proxyClient); this.allowServer = (serverClient.equals("*")) ? true : match(this.clientIP, serverClient); this.allowYaCyHop = switchboard.getConfigBool("YaCyHop", false); // check if we want to allow this socket to connect us if (!(this.allowProxy || this.allowServer || this.allowYaCyHop)) { final String errorMsg = "CONNECTION FROM " + this.userAddress.getHostName() + " [" + this.clientIP + "] FORBIDDEN"; log.logWarning(errorMsg); throw new IOException(errorMsg); } this.proxyAccounts_init = false; this.serverAccountBase64MD5 = null; } private static boolean match(final String key, final String latch) { // the latch is a comma-separated list of patterns // each pattern may contain one wildcard-character '*' which matches anything final StringTokenizer st = new StringTokenizer(latch,","); String pattern; while (st.hasMoreTokens()) { pattern = st.nextToken(); if (key.matches(pattern)) return true; /* pos = pattern.indexOf("*"); if (pos < 0) { // no wild card: exact match if (key.equals(pattern)) return true; } else { // wild card: match left and right side of pattern if ((key.startsWith(pattern.substring(0, pos))) && (key.endsWith(pattern.substring(pos + 1)))) return true; } */ } return false; } public String greeting() { // OBLIGATORIC FUNCTION // a response line upon connection is send to client // if no response line is wanted, return "" or null return null; } public String error(final Throwable e) { // OBLIGATORIC FUNCTION // return string in case of any error that occurs during communication // is always (but not only) called if an IO-dependent exception occurrs. log.logSevere("Unexpected Error. " + e.getClass().getName(),e); final String message = e.getMessage(); if (message.indexOf("heap space") > 0) e.printStackTrace(); return "501 Exception occurred: " + message; } /** * This function is used to determine if a persistent connection was requested by the client. * @param header the received http-headers * @return true if a persistent connection was requested or false otherwise */ private boolean handlePersistentConnection(final httpRequestHeader header) { if (!keepAliveSupport) { this.prop.put(httpRequestHeader.CONNECTION_PROP_PERSISTENT,"close"); return false; } // getting the http version that is used by the client final String httpVersion = this.prop.getProperty(httpRequestHeader.CONNECTION_PROP_HTTP_VER, "HTTP/0.9"); // managing keep-alive: in HTTP/0.9 and HTTP/1.0 every connection is closed // afterwards. In HTTP/1.1 (and above, in the future?) connections are // persistent by default, but closed with the "Connection: close" // property. boolean persistent = !(httpVersion.equals(httpRequestHeader.HTTP_VERSION_0_9) || httpVersion.equals(httpRequestHeader.HTTP_VERSION_1_0)); if (((String)header.get(httpRequestHeader.CONNECTION, "keep-alive")).toLowerCase().indexOf("close") != -1 || ((String)header.get(httpRequestHeader.PROXY_CONNECTION, "keep-alive")).toLowerCase().indexOf("close") != -1) { persistent = false; } final String transferEncoding = (String) header.get(httpHeader.TRANSFER_ENCODING, "identity"); final boolean isPostRequest = this.prop.getProperty(httpRequestHeader.CONNECTION_PROP_METHOD).equals(httpRequestHeader.METHOD_POST); final boolean hasContentLength = header.containsKey(httpHeader.CONTENT_LENGTH); final boolean hasTransferEncoding = header.containsKey(httpHeader.TRANSFER_ENCODING) && !transferEncoding.equalsIgnoreCase("identity"); // if the request does not contain a content-length we have to close the connection // independently of the value of the connection header if (persistent && isPostRequest && !(hasContentLength || hasTransferEncoding)) this.prop.put(httpRequestHeader.CONNECTION_PROP_PERSISTENT,"close"); else this.prop.put(httpRequestHeader.CONNECTION_PROP_PERSISTENT,persistent?"keep-alive":"close"); return persistent; } public static int staticAdminAuthenticated(final String authorization, final serverSwitch sw) { // the authorization string must be given with the truncated 6 bytes at the beginning if (authorization == null) return 1; //if (authorization.length() < 6) return 1; // no authentication information given final String adminAccountBase64MD5 = sw.getConfig(ADMIN_ACCOUNT_B64MD5, ""); if (adminAccountBase64MD5.length() == 0) return 2; // no password stored if (adminAccountBase64MD5.equals(kelondroDigest.encodeMD5Hex(authorization))) return 4; // hard-authenticated, all ok return 1; } private boolean handleServerAuthentication(final httpRequestHeader header) throws IOException { // getting the http version that is used by the client final String httpVersion = this.prop.getProperty(httpRequestHeader.CONNECTION_PROP_HTTP_VER, "HTTP/0.9"); // reading the authentication settings from switchboard if (this.serverAccountBase64MD5 == null) this.serverAccountBase64MD5 = switchboard.getConfig("serverAccountBase64MD5", ""); if (this.serverAccountBase64MD5.length() > 0) { final String auth = header.get(httpRequestHeader.AUTHORIZATION); if (auth == null) { // authorization requested, but no authorizeation given in header. Ask for authenticate: this.session.out.write((httpVersion + " 401 log-in required" + serverCore.CRLF_STRING + httpRequestHeader.WWW_AUTHENTICATE + ": Basic realm=\"log-in\"" + serverCore.CRLF_STRING + serverCore.CRLF_STRING).getBytes()); this.session.out.write((httpResponseHeader.CONTENT_LENGTH + ": 0\r\n").getBytes()); this.session.out.write("\r\n".getBytes()); return false; } else if (!this.serverAccountBase64MD5.equals(kelondroDigest.encodeMD5Hex(auth.trim().substring(6)))) { // wrong password given: ask for authenticate again log.logInfo("Wrong log-in for account 'server' in HTTPD.GET " + this.prop.getProperty("PATH") + " from IP " + this.clientIP); this.session.out.write((httpVersion + " 401 log-in required" + serverCore.CRLF_STRING + httpRequestHeader.WWW_AUTHENTICATE + ": Basic realm=\"log-in\"" + serverCore.CRLF_STRING).getBytes()); this.session.out.write((httpResponseHeader.CONTENT_LENGTH + ": 0\r\n").getBytes()); this.session.out.write("\r\n".getBytes()); this.session.out.flush(); return false; } } return true; } private boolean handleYaCyHopAuthentication(final httpRequestHeader header) { // check if the user has allowed that his/her peer is used for hops if (!this.allowYaCyHop) return false; // proxy hops must identify with 4 criteria: // the accessed port must not be port 80 final String host = this.prop.getProperty(httpRequestHeader.CONNECTION_PROP_HOST); if (host == null) return false; int pos; if ((pos = host.indexOf(":")) < 0) { // default port 80 return false; // not allowed } if (Integer.parseInt(host.substring(pos + 1)) == 80) return false; // the access path must be into the yacy protocol path; it must start with 'yacy' if (!(this.prop.getProperty(httpRequestHeader.CONNECTION_PROP_PATH, "").startsWith("/yacy/"))) return false; // the accessing client must identify with user:password, where // user = addressed peer name // pw = addressed peer hash (b64-hash) final String auth = (String) header.get(httpRequestHeader.PROXY_AUTHORIZATION,"xxxxxx"); if (getAlternativeResolver() != null) { final String test = kelondroBase64Order.standardCoder.encodeString(getAlternativeResolver().myName() + ":" + getAlternativeResolver().myID()); if (!test.equals(auth.trim().substring(6))) return false; } // the accessing client must use a yacy user-agent if (!(((String) header.get(httpRequestHeader.USER_AGENT,"")).startsWith("yacy"))) return false; // furthermore, YaCy hops must not exceed a specific access frequency // check access requester frequency: protection against DoS against this peer final String requester = this.prop.getProperty(httpRequestHeader.CONNECTION_PROP_CLIENTIP); if (requester == null) return false; if (lastAccessDelta(YaCyHopAccessRequester, requester) < 10000) return false; YaCyHopAccessRequester.put(requester, Long.valueOf(System.currentTimeMillis())); // check access target frequecy: protection against DoS from a single peer by several different requesters if (lastAccessDelta(YaCyHopAccessTargets, host) < 3000) return false; YaCyHopAccessTargets.put(host, Long.valueOf(System.currentTimeMillis())); // passed all tests return true; } private static long lastAccessDelta(final HashMap accessTable, final String domain) { final Long lastAccess = accessTable.get(domain); if (lastAccess == null) return Long.MAX_VALUE; // never accessed return System.currentTimeMillis() - lastAccess.longValue(); } private boolean handleProxyAuthentication(final httpRequestHeader header) throws IOException { // getting the http version that is used by the client final String httpVersion = this.prop.getProperty("HTTP", "HTTP/0.9"); // reading the authentication settings from switchboard if (!this.proxyAccounts_init) { this.use_proxyAccounts = switchboard.getConfigBool("use_proxyAccounts", false); this.proxyAccounts_init = true; // is initialised } if (this.use_proxyAccounts) { final String auth = (String) header.get(httpRequestHeader.PROXY_AUTHORIZATION,"xxxxxx"); userDB.Entry entry=switchboard.userDB.ipAuth(this.clientIP); if(entry == null){ entry=switchboard.userDB.proxyAuth(auth, this.clientIP); } if(entry != null){ final int returncode=entry.surfRight(); if(returncode==userDB.Entry.PROXY_ALLOK){ return true; } final serverObjects tp=new serverObjects(); if(returncode==userDB.Entry.PROXY_TIMELIMIT_REACHED){ tp.put("limit", "1");//time per day tp.put("limit_timelimit", entry.getTimeLimit()); sendRespondError(this.prop, this.session.out, 403, "Internet-Timelimit reached", new File("proxymsg/proxylimits.inc"), tp, null); }else if(returncode==userDB.Entry.PROXY_NORIGHT){ tp.put("limit", "0"); sendRespondError(this.prop, this.session.out, 403, "Proxy use forbidden", new File("proxymsg/proxylimits.inc"), tp, null); } return false; } // ask for authenticate this.session.out.write((httpVersion + " 407 Proxy Authentication Required" + serverCore.CRLF_STRING + httpRequestHeader.PROXY_AUTHENTICATE + ": Basic realm=\"log-in\"" + serverCore.CRLF_STRING).getBytes()); this.session.out.write((httpResponseHeader.CONTENT_LENGTH + ": 0\r\n").getBytes()); this.session.out.write("\r\n".getBytes()); this.session.out.flush(); return false; } return true; } public Boolean UNKNOWN(final String requestLine) throws IOException { int pos; String unknownCommand = null, args = null; if ((pos = requestLine.indexOf(" ")) > 0) { unknownCommand = requestLine.substring(0,pos); args = requestLine.substring(pos+1); } else { unknownCommand = requestLine; args = ""; } parseRequestLine(unknownCommand, args); sendRespondError(this.prop,this.session.out,4,501,null,unknownCommand + " method not implemented",null); return serverCore.TERMINATE_CONNECTION; } public Boolean EMPTY(final String arg) throws IOException { if (++this.emptyRequestCount > 10) return serverCore.TERMINATE_CONNECTION; return serverCore.RESUME_CONNECTION; } public Boolean TRACE() throws IOException { sendRespondError(this.prop,this.session.out,4,501,null,"TRACE method not implemented",null); return serverCore.TERMINATE_CONNECTION; } public Boolean OPTIONS() throws IOException { sendRespondError(this.prop,this.session.out,4,501,null,"OPTIONS method not implemented",null); return serverCore.TERMINATE_CONNECTION; } public Boolean GET(final String arg) { try { // parsing the http request line parseRequestLine(httpRequestHeader.METHOD_GET,arg); // we now know the HTTP version. depending on that, we read the header final String httpVersion = this.prop.getProperty(httpRequestHeader.CONNECTION_PROP_HTTP_VER, httpRequestHeader.HTTP_VERSION_0_9); final httpRequestHeader header = (httpVersion.equals(httpRequestHeader.HTTP_VERSION_0_9)) ? new httpRequestHeader(reverseMappingCache) : httpRequestHeader.readHeader(this.prop,this.session); // handling transparent proxy support httpRequestHeader.handleTransparentProxySupport(header, this.prop, virtualHost, httpdProxyHandler.isTransparentProxy); // determines if the connection should be kept alive handlePersistentConnection(header); if (this.prop.getProperty(httpRequestHeader.CONNECTION_PROP_HOST).equals(virtualHost)) { // pass to server if (this.allowServer) { if (this.handleServerAuthentication(header)) { httpdFileHandler.doGet(this.prop, header, this.session.out); } } else { // not authorized through firewall blocking (ip does not match filter) this.session.out.write((httpVersion + " 403 refused (IP not granted)" + serverCore.CRLF_STRING + serverCore.CRLF_STRING + "you are not allowed to connect to this server, because you are using a non-granted IP. allowed are only connections that match with the following filter: " + switchboard.getConfig("serverClient", "*") + serverCore.CRLF_STRING).getBytes()); return serverCore.TERMINATE_CONNECTION; } } else { // pass to proxy if (((this.allowYaCyHop) && (handleYaCyHopAuthentication(header))) || ((this.allowProxy) && (handleProxyAuthentication(header)))) { httpdProxyHandler.doGet(this.prop, header, this.session.out); } else { // not authorized through firewall blocking (ip does not match filter) this.session.out.write((httpVersion + " 403 refused (IP not granted)" + serverCore.CRLF_STRING + serverCore.CRLF_STRING + "you are not allowed to connect to this proxy, because you are using a non-granted IP. allowed are only connections that match with the following filter: " + switchboard.getConfig("proxyClient", "*") + serverCore.CRLF_STRING).getBytes()); return serverCore.TERMINATE_CONNECTION; } } return this.prop.getProperty(httpRequestHeader.CONNECTION_PROP_PERSISTENT).equals("keep-alive") ? serverCore.RESUME_CONNECTION : serverCore.TERMINATE_CONNECTION; } catch (final Exception e) { logUnexpectedError(e); return serverCore.TERMINATE_CONNECTION; } finally { this.doUserAccounting(this.prop); } } private void logUnexpectedError(final Exception e) { if (e instanceof InterruptedException) { log.logInfo("Interruption detected"); } else { final String errorMsg = e.getMessage(); if (errorMsg != null) { if (errorMsg.startsWith("Socket closed")) { log.logInfo("httpd shutdown detected ..."); } else if ((errorMsg.startsWith("Broken pipe") || errorMsg.startsWith("Connection reset"))) { // client closed the connection, so we just end silently log.logInfo("Client unexpectedly closed connection"); } else if (errorMsg.equals("400 Bad request")) { log.logInfo("Bad client request."); } else { log.logSevere("Unexpected Error. " + e.getClass().getName() + ": " + e.getMessage(),e); } } else { log.logSevere("Unexpected Error. " + e.getClass().getName(),e); } } } public Boolean HEAD(final String arg) { try { parseRequestLine(httpRequestHeader.METHOD_HEAD,arg); // we now know the HTTP version. depending on that, we read the header httpRequestHeader header; final String httpVersion = this.prop.getProperty(httpRequestHeader.CONNECTION_PROP_HTTP_VER, httpRequestHeader.HTTP_VERSION_0_9); if (httpVersion.equals(httpRequestHeader.HTTP_VERSION_0_9)) header = new httpRequestHeader(reverseMappingCache); else header = httpRequestHeader.readHeader(this.prop,this.session); // handle transparent proxy support httpRequestHeader.handleTransparentProxySupport(header, this.prop, virtualHost, httpdProxyHandler.isTransparentProxy); // determines if the connection should be kept alive handlePersistentConnection(header); // return multi-line message if (this.prop.getProperty(httpRequestHeader.CONNECTION_PROP_HOST).equals(virtualHost)) { // pass to server if (allowServer) { if (handleServerAuthentication(header)) { httpdFileHandler.doHead(prop, header, this.session.out); } } else { // not authorized through firewall blocking (ip does not match filter) session.out.write((httpVersion + " 403 refused (IP not granted)" + serverCore.CRLF_STRING).getBytes()); return serverCore.TERMINATE_CONNECTION; } } else { // pass to proxy if (((this.allowYaCyHop) && (handleYaCyHopAuthentication(header))) || ((this.allowProxy) && (handleProxyAuthentication(header)))) { httpdProxyHandler.doHead(prop, header, this.session.out); } else { // not authorized through firewall blocking (ip does not match filter) session.out.write((httpVersion + " 403 refused (IP not granted)" + serverCore.CRLF_STRING).getBytes()); return serverCore.TERMINATE_CONNECTION; } } return this.prop.getProperty(httpRequestHeader.CONNECTION_PROP_PERSISTENT).equals("keep-alive") ? serverCore.RESUME_CONNECTION : serverCore.TERMINATE_CONNECTION; } catch (final Exception e) { logUnexpectedError(e); return serverCore.TERMINATE_CONNECTION; } finally { this.doUserAccounting(this.prop); } } public Boolean POST(final String arg) { try { parseRequestLine(httpRequestHeader.METHOD_POST,arg); // we now know the HTTP version. depending on that, we read the header httpRequestHeader header; final String httpVersion = this.prop.getProperty(httpRequestHeader.CONNECTION_PROP_HTTP_VER, httpRequestHeader.HTTP_VERSION_0_9); if (httpVersion.equals(httpHeader.HTTP_VERSION_0_9)) header = new httpRequestHeader(reverseMappingCache); else header = httpRequestHeader.readHeader(this.prop,this.session); // handle transfer-coding final InputStream sessionIn; final String transferEncoding = header.get(httpRequestHeader.TRANSFER_ENCODING); if (transferEncoding != null) { if (!httpRequestHeader.HTTP_VERSION_1_1.equals(httpVersion)) { log.logWarning("client "+ session.getName() +" uses transfer-coding with HTTP version "+ httpVersion +"!"); } if("chunked".equalsIgnoreCase(header.get(httpRequestHeader.TRANSFER_ENCODING))) { sessionIn = new ChunkedInputStream(this.session.in); } else { // "A server which receives an entity-body with a transfer-coding it does // not understand SHOULD return 501 (Unimplemented), and close the // connection." [RFC 2616, section 3.6] session.out.write((httpVersion + " 501 transfer-encoding not implemented" + serverCore.CRLF_STRING + serverCore.CRLF_STRING + "you send a transfer-encoding to this server, which is not supported: " + transferEncoding + serverCore.CRLF_STRING).getBytes()); return serverCore.TERMINATE_CONNECTION; } } else { sessionIn = this.session.in; } // handle transparent proxy support httpRequestHeader.handleTransparentProxySupport(header, this.prop, virtualHost, httpdProxyHandler.isTransparentProxy); // determines if the connection should be kept alive handlePersistentConnection(header); // return multi-line message if (prop.getProperty(httpRequestHeader.CONNECTION_PROP_HOST).equals(virtualHost)) { // pass to server if (allowServer) { if (handleServerAuthentication(header)) { httpdFileHandler.doPost(prop, header, this.session.out, sessionIn); } } else { // not authorized through firewall blocking (ip does not match filter) session.out.write((httpVersion + " 403 refused (IP not granted)" + serverCore.CRLF_STRING + serverCore.CRLF_STRING + "you are not allowed to connect to this server, because you are using the non-granted IP " + clientIP + ". allowed are only connections that match with the following filter: " + switchboard.getConfig("serverClient", "*") + serverCore.CRLF_STRING).getBytes()); return serverCore.TERMINATE_CONNECTION; } } else { // pass to proxy if (((this.allowYaCyHop) && (handleYaCyHopAuthentication(header))) || ((this.allowProxy) && (handleProxyAuthentication(header)))) { httpdProxyHandler.doPost(prop, header, this.session.out, sessionIn); } else { // not authorized through firewall blocking (ip does not match filter) session.out.write((httpVersion + " 403 refused (IP not granted)" + serverCore.CRLF_STRING + serverCore.CRLF_STRING + "you are not allowed to connect to this proxy, because you are using the non-granted IP " + clientIP + ". allowed are only connections that match with the following filter: " + switchboard.getConfig("proxyClient", "*") + serverCore.CRLF_STRING).getBytes()); return serverCore.TERMINATE_CONNECTION; } } if(sessionIn instanceof ChunkedInputStream) sessionIn.close(); // read to end, but do not close the stream (maybe HTTP/1.1 persistent) //return serverCore.RESUME_CONNECTION; return this.prop.getProperty(httpRequestHeader.CONNECTION_PROP_PERSISTENT).equals("keep-alive") ? serverCore.RESUME_CONNECTION : serverCore.TERMINATE_CONNECTION; } catch (final Exception e) { logUnexpectedError(e); return serverCore.TERMINATE_CONNECTION; } finally { this.doUserAccounting(this.prop); } } public Boolean CONNECT(String arg) throws IOException { // establish a ssh-tunneled http connection // this is to support https // parse HTTP version int pos = arg.indexOf(" "); String httpVersion = "HTTP/1.0"; if (pos >= 0) { httpVersion = arg.substring(pos + 1); arg = arg.substring(0, pos); } prop.setProperty(httpRequestHeader.CONNECTION_PROP_HTTP_VER, httpVersion); // parse hostname and port prop.setProperty(httpRequestHeader.CONNECTION_PROP_HOST, arg); pos = arg.indexOf(":"); int port = 443; if (pos >= 0) { port = Integer.parseInt(arg.substring(pos + 1)); //the offcut: arg = arg.substring(0, pos); } // setting other connection properties prop.setProperty(httpRequestHeader.CONNECTION_PROP_CLIENTIP, this.clientIP); prop.setProperty(httpRequestHeader.CONNECTION_PROP_METHOD, httpHeader.METHOD_CONNECT); prop.setProperty(httpRequestHeader.CONNECTION_PROP_PATH, "/"); prop.setProperty(httpRequestHeader.CONNECTION_PROP_EXT, ""); prop.setProperty(httpRequestHeader.CONNECTION_PROP_URL, ""); // parse remaining lines final httpRequestHeader header = httpRequestHeader.readHeader(this.prop,this.session); if (!(allowProxy)) { // not authorized through firewall blocking (ip does not match filter) session.out.write((httpVersion + " 403 refused (IP not granted)" + serverCore.CRLF_STRING + serverCore.CRLF_STRING + "you are not allowed to connect to this proxy, because you are using the non-granted IP " + clientIP + ". allowed are only connections that match with the following filter: " + switchboard.getConfig("proxyClient", "*") + serverCore.CRLF_STRING).getBytes()); return serverCore.TERMINATE_CONNECTION; } if (port != 443 && switchboard.getConfig("secureHttps", "true").equals("true")) { // security: connection only to ssl port // we send a 403 (forbidden) error back session.out.write((httpVersion + " 403 Connection to non-443 forbidden" + serverCore.CRLF_STRING + serverCore.CRLF_STRING).getBytes()); return serverCore.TERMINATE_CONNECTION; } // pass to proxy if (((this.allowYaCyHop) && (handleYaCyHopAuthentication(header))) || ((this.allowProxy) && (this.handleProxyAuthentication(header)))) { httpdProxyHandler.doConnect(prop, header, this.session.in, this.session.out); } else { // not authorized through firewall blocking (ip does not match filter) session.out.write((httpVersion + " 403 refused (IP not granted)" + serverCore.CRLF_STRING + serverCore.CRLF_STRING + "you are not allowed to connect to this proxy, because you are using the non-granted IP " + clientIP + ". allowed are only connections that match with the following filter: " + switchboard.getConfig("proxyClient", "*") + serverCore.CRLF_STRING).getBytes()); } return serverCore.TERMINATE_CONNECTION; } private final void parseRequestLine(final String cmd, final String s) { // parsing the header httpRequestHeader.parseRequestLine(cmd,s,this.prop,virtualHost); // track the request final String path = this.prop.getProperty(httpRequestHeader.CONNECTION_PROP_URL); final String args = this.prop.getProperty(httpRequestHeader.CONNECTION_PROP_ARGS, ""); switchboard.track(this.userAddress.getHostName(), (args.length() > 0) ? path + "?" + args : path); // reseting the empty request counter this.emptyRequestCount = 0; // counting the amount of received requests within this permanent connection this.prop.setProperty(httpRequestHeader.CONNECTION_PROP_KEEP_ALIVE_COUNT, Integer.toString(++this.keepAliveRequestCount)); // setting the client-IP this.prop.setProperty(httpRequestHeader.CONNECTION_PROP_CLIENTIP, this.clientIP); } // some static methods that needs to be used from any CGI // and also by the httpdFileHandler // but this belongs to the protocol handler, this class. public static int parseArgs(final serverObjects args, final InputStream in, final int length) throws IOException { // this is a quick hack using a previously coded parseMultipart based on a buffer // should be replaced sometime by a 'right' implementation byte[] buffer = null; // parsing post request bodies with a given length if (length != -1) { buffer = new byte[length]; int bytesRead = in.read(buffer); assert bytesRead == buffer.length; // parsing post request bodies which are gzip content-encoded } else { ByteArrayOutputStream bout = new ByteArrayOutputStream(512); serverFileUtils.copy(in,bout); buffer = bout.toByteArray(); bout.close(); bout = null; } final int argc = parseArgs(args, new String(buffer, "UTF-8")); buffer = null; return argc; } public static int parseArgs(final serverObjects args, String argsString) { // this parses a arg string that can either be attached to a URL query // or can be given as result of a post method // the String argsString is supposed to be constructed as // ='&'='&'= // the calling function must strip off a possible leading '?' char if (argsString.length() == 0) return 0; argsString = argsString + "&"; // for technical reasons int sep; int eqp; int argc = 0; // Textfield1=default+value+Textfield+1&Textfield2=default+value+Textfield+2&selection1=sel1&selection2=othervalue1&selection2=sel2&selection3=sel3&Menu1=SubEnry11&radio1=button1&check1=button2&check1=button3&hidden1=&sButton1=enter+%281%29 while (argsString.length() > 0) { eqp = argsString.indexOf("="); sep = argsString.indexOf("&"); if ((eqp <= 0) || (sep <= 0)) break; // resulting equations are inserted into the property args with leading '&' args.put(parseArg(argsString.substring(0, eqp)), parseArg(argsString.substring(eqp + 1, sep))); argsString = argsString.substring(sep + 1); argc++; } // we return the number of parsed arguments return argc; } /** *

This method basically does the same as {@link URLDecoder#decode(String, String) URLDecoder.decode(s, "UTF-8")} * would do with the exception of more lazyness in regard to current browser implementations as they do not * always comply with the standards.

*

The following replacements are performed on the input-String:

*
    *
  • '+'-characters are replaced by space *
  • (supbsequent (in the case of encoded unicode-chars)) '%HH'-entities are replaced by their * respective char-representation
  • *
  • '%uHHHH'-entities (sent by IE although rejected by the W3C) are replaced by their respective * char-representation
  • *
  • TODO: chars already encoded in UTF-8 are url-encoded and re-decoded due to internal restrictions, * which slows down this method unnecessarily
  • *
* * @param s the URL-encoded String to decode, note that the encoding used to URL-encode the original * String has to be UTF-8 (i.e. the "accept-charset"-property of HTML * <form>-elements) * @return the "normal" Java-String (UTF-8) represented by the input or null * if the passed argument encoding is not supported */ private static String parseArg(String s) { int pos = 0; final ByteArrayOutputStream baos = new ByteArrayOutputStream(s.length()); while (pos < s.length()) { if (s.charAt(pos) == '+') { baos.write(' '); pos++; } else if (s.charAt(pos) == '%') { try { if (s.length() >= pos + 6 && (s.charAt(pos + 1) == 'u' || s.charAt(pos + 1) == 'U')) { // non-standard encoding of IE for unicode-chars final int bh = Integer.parseInt(s.substring(pos + 2, pos + 4), 16); final int bl = Integer.parseInt(s.substring(pos + 4, pos + 6), 16); // TODO: needs conversion from UTF-16 to UTF-8 baos.write(bh); baos.write(bl); pos += 6; } else if (s.length() >= pos + 3) { baos.write(Integer.parseInt(s.substring(pos + 1, pos + 3), 16)); pos += 3; } else { baos.write(s.charAt(pos++)); } } catch (final NumberFormatException e) { baos.write(s.charAt(pos++)); } } else if (s.charAt(pos) > 127) { // Unicode chars sent by client, see http://www.w3.org/International/O-URL-code.html try { // don't write anything but url-encode the unicode char s = s.substring(0, pos) + URLEncoder.encode(s.substring(pos, pos + 1), "UTF-8") + s.substring(pos + 1); } catch (final UnsupportedEncodingException e) { return null; } } else { baos.write(s.charAt(pos++)); } } try { return new String(baos.toByteArray(), "UTF-8"); } catch (final UnsupportedEncodingException e) { return null; } } // 06.01.2007: decode HTML entities by [FB] public static String decodeHtmlEntities(String s) { // replace all entities defined in wikiCode.characters and htmlentities s = htmlFilterCharacterCoding.html2unicode(s); // replace all other final CharArrayWriter b = new CharArrayWriter(s.length()); int end; for (int i=0; i i) { if (s.charAt(i + 1) == '#') { // Ӓ symbols b.write(Integer.parseInt(s.substring(i + 2, end))); i += end - i; } else { // 'named' smybols if (log.isFine()) log.logFine("discovered yet unimplemented HTML entity '" + s.substring(i, end + 1) + "'"); b.write(s.charAt(i)); } } else { b.write(s.charAt(i)); } } return b.toString(); } /** * parses the message accordingly to RFC 1867 using "Commons FileUpload" (http://commons.apache.org/fileupload/) * * @author danielr * @since 07.08.2008 * @param header * hier muss ARGC gesetzt werden! * @param args * @param in the raw body * @return * @throws IOException */ @SuppressWarnings("unchecked") public static HashMap parseMultipart(final httpRequestHeader header, final serverObjects args, final InputStream in) throws IOException { final InputStream body = prepareBody(header, in); RequestContext request = new yacyContextRequest(header, body); // check information if (!FileUploadBase.isMultipartContent(request)) { throw new IOException("the request is not a multipart-message!"); } // parse data in memory FileItemFactory factory = new DiskFileItemFactory(); FileUpload upload = new FileUpload(factory); List items; try { items = upload.parseRequest(request); } catch (FileUploadException e) { //e.printStackTrace(); throw new IOException("FileUploadException " + e.getMessage()); } // format information for further usage final HashMap files = new HashMap(); for (FileItem item : items) { if (item.isFormField()) { // simple text if (item.getContentType() == null || !item.getContentType().contains("charset")) { // old yacy clients use their local default charset, on most systems UTF-8 (I hope ;) args.put(item.getFieldName(), item.getString("UTF-8")); } else { // use default encoding (given as header or ISO-8859-1) args.put(item.getFieldName(), item.getString()); } } else { // file args.put(item.getFieldName(), item.getName()); final byte[] fileContent = serverFileUtils.read(item.getInputStream()); item.getInputStream().close(); files.put(item.getFieldName(), fileContent); } } header.put("ARGC", String.valueOf(items.size())); // store argument count return files; } /** * prepares the body so that it can be read as whole plain text * (uncompress if necessary and ensure correct ending) * * @param header * @param in * @return * @throws IOException */ private static InputStream prepareBody(final httpRequestHeader header, final InputStream in) throws IOException { InputStream body = in; // data may be compressed final String bodyEncoding = header.get(httpHeader.CONTENT_ENCODING); if(httpHeader.CONTENT_ENCODING_GZIP.equalsIgnoreCase(bodyEncoding) && !(body instanceof GZIPInputStream)) { body = new GZIPInputStream(body); // length of uncompressed data is unknown header.remove(httpHeader.CONTENT_LENGTH); } else { // ensure the end of data (if client keeps alive the connection) final long clength = header.getContentLength(); if (clength > 0) { body = new ContentLengthInputStream(body, clength); } } return body; } /** * wraps the request into a org.apache.commons.fileupload.RequestContext * * @author danielr * @since 07.08.2008 */ private static class yacyContextRequest extends httpRequestHeader implements RequestContext { private static final long serialVersionUID = -8936741958551376593L; private final InputStream inStream; /** * creates a new yacyContextRequest * * @param header * @param in */ public yacyContextRequest(Map requestHeader, InputStream in) { super(null, requestHeader); this.inStream = in; } /* * (non-Javadoc) * * @see org.apache.commons.fileupload.RequestContext#getInputStream() */ // @Override public InputStream getInputStream() throws IOException { return inStream; } } /* static int nextPos = -1; private static byte[] readLine(final int start, final byte[] array) { // read a string from an array; line ending is always CRLF // but we are also fuzzy with that: may also be only CR or LF // if no remaining CR, CRLF or LF can be found, return null if (start > array.length) return null; int pos = indexOf(start, array, serverCore.CRLF); nextPos = pos + 2; if (pos < 0) {pos = indexOf(start, array, new byte[] {serverCore.CR}); nextPos = pos + 1;} if (pos < 0) {pos = indexOf(start, array, new byte[] {serverCore.LF}); nextPos = pos + 1;} if (pos < 0) {nextPos = start; return null;} final byte[] result = new byte[pos - start]; java.lang.System.arraycopy(array, start, result, 0, pos - start); return result; } */ public static int indexOf(final int start, final byte[] array, final byte[] pattern) { // return a position of a pattern in an array if (start > array.length - pattern.length) return -1; if (pattern.length == 0) return start; for (int pos = start; pos <= array.length - pattern.length; pos++) if ((array[pos] == pattern[0]) && (equals(array, pos, pattern, 0, pattern.length))) return pos; return -1; } public static boolean equals(final byte[] a, final int aoff, final byte[] b, final int boff, final int len) { //System.out.println("equals: a = " + new String(a) + ", aoff = " + aoff + ", b = " + new String(b) + ", boff = " + boff + ", length = " + len); if ((aoff + len > a.length) || (boff + len > b.length)) return false; for (int i = 0; i < len; i++) if (a[aoff + i] != b[boff + i]) return false; //System.out.println("TRUE!"); return true; } @Override public httpd clone() { return new httpd(switchboard); } public static final void sendRespondBody( final OutputStream respond, final byte[] body ) throws IOException { respond.write(body); respond.flush(); } public static final void sendRespondError( final Properties conProp, final OutputStream respond, final int errorcase, final int httpStatusCode, final String httpStatusText, final String detailedErrorMsg, final Throwable stackTrace ) throws IOException { sendRespondError( conProp, respond, errorcase, httpStatusCode, httpStatusText, detailedErrorMsg, null, null, stackTrace, null ); } public static final void sendRespondError( final Properties conProp, final OutputStream respond, final int httpStatusCode, final String httpStatusText, final File detailedErrorMsgFile, final serverObjects detailedErrorMsgValues, final Throwable stackTrace ) throws IOException { sendRespondError( conProp, respond, 5, httpStatusCode, httpStatusText, null, detailedErrorMsgFile, detailedErrorMsgValues, stackTrace, null ); } public static final void sendRespondError( final Properties conProp, final OutputStream respond, final int errorcase, final int httpStatusCode, String httpStatusText, final String detailedErrorMsgText, final Object detailedErrorMsgFile, final serverObjects detailedErrorMsgValues, final Throwable stackTrace, httpResponseHeader header ) throws IOException { FileInputStream fis = null; ByteArrayOutputStream o = null; try { // setting the proper http status message final String httpVersion = conProp.getProperty(httpRequestHeader.CONNECTION_PROP_HTTP_VER,"HTTP/1.1"); if ((httpStatusText == null)||(httpStatusText.length()==0)) { if (httpVersion.equals("HTTP/1.0") && httpRequestHeader.http1_0.containsKey(Integer.toString(httpStatusCode))) httpStatusText = httpRequestHeader.http1_0.get(Integer.toString(httpStatusCode)); else if (httpVersion.equals("HTTP/1.1") && httpRequestHeader.http1_1.containsKey(Integer.toString(httpStatusCode))) httpStatusText = httpRequestHeader.http1_1.get(Integer.toString(httpStatusCode)); else httpStatusText = "Unknown"; } // generating the desired request url String host = conProp.getProperty(httpRequestHeader.CONNECTION_PROP_HOST); final String path = conProp.getProperty(httpRequestHeader.CONNECTION_PROP_PATH,"/"); final String args = conProp.getProperty(httpRequestHeader.CONNECTION_PROP_ARGS); final String method = conProp.getProperty(httpRequestHeader.CONNECTION_PROP_METHOD); int port = 80; final int pos = host.indexOf(":"); if (pos != -1) { port = Integer.parseInt(host.substring(pos + 1)); host = host.substring(0, pos); } String urlString; try { urlString = (new yacyURL((method.equals(httpRequestHeader.METHOD_CONNECT)?"https":"http"), host, port, (args == null) ? path : path + "?" + args)).toString(); } catch (final MalformedURLException e) { urlString = "invalid URL"; } // set rewrite values final serverObjects tp = new serverObjects(); // tp.put("host", serverCore.publicIP().getHostAddress()); // tp.put("port", switchboard.getConfig("port", "8080")); final String clientIP = conProp.getProperty(httpRequestHeader.CONNECTION_PROP_CLIENTIP, "127.0.0.1"); // check if ip is local ip address final InetAddress hostAddress = serverDomains.dnsResolve(clientIP); if (hostAddress == null) { tp.put("host", serverDomains.myPublicLocalIP().getHostAddress()); tp.put("port", serverCore.getPortNr(switchboard.getConfig("port", "8080"))); } else if (hostAddress.isSiteLocalAddress() || hostAddress.isLoopbackAddress()) { tp.put("host", serverDomains.myPublicLocalIP().getHostAddress()); tp.put("port", serverCore.getPortNr(switchboard.getConfig("port", "8080"))); } else { tp.put("host", serverDomains.myPublicIP()); tp.put("port", Integer.toString(serverCore.getPortNr(switchboard.getConfig("port", "8080")))); } // if peer has public address it will be used if (getAlternativeResolver() != null) { tp.put("extAddress", getAlternativeResolver().myIP() + ":" + getAlternativeResolver().myPort()); } // otherwise the local ip address will be used else { tp.put("extAddress", tp.get("host", "127.0.0.1") + ":" + tp.get("port", "8080")); } tp.put("peerName", (getAlternativeResolver() == null) ? "" : getAlternativeResolver().myName()); tp.put("errorMessageType", errorcase); tp.put("httpStatus", Integer.toString(httpStatusCode) + " " + httpStatusText); tp.put("requestMethod", conProp.getProperty(httpRequestHeader.CONNECTION_PROP_METHOD)); tp.put("requestURL", urlString); switch (errorcase) { case ERRORCASE_FILE: tp.put("errorMessageType_file", (detailedErrorMsgFile == null) ? "" : detailedErrorMsgFile.toString()); if ((detailedErrorMsgValues != null) && (detailedErrorMsgValues.size() > 0)) { // rewriting the value-names and add the proper name prefix: for(Entry entry: detailedErrorMsgValues.entrySet()) { tp.put("errorMessageType_" + entry.getKey(), entry.getValue()); } } break; case ERRORCASE_MESSAGE: default: tp.put("errorMessageType_detailedErrorMsg", (detailedErrorMsgText == null) ? "" : detailedErrorMsgText.replaceAll("\n", "
")); break; } // building the stacktrace if (stackTrace != null) { tp.put("printStackTrace",1); final serverByteBuffer errorMsg = new serverByteBuffer(100); stackTrace.printStackTrace(new PrintStream(errorMsg)); tp.put("printStackTrace_exception", stackTrace.toString()); tp.put("printStackTrace_stacktrace", new String(errorMsg.getBytes(),"UTF-8")); } else { tp.put("printStackTrace", 0); } // Generated Tue, 23 Aug 2005 11:19:14 GMT by brain.wg (squid/2.5.STABLE3) // adding some system information final String systemDate = serverDate.formatRFC1123(new Date()); tp.put("date", systemDate); // rewrite the file final File htRootPath = new File(switchboard.getRootPath(), switchboard.getConfig("htRootPath","htroot")); httpTemplate.writeTemplate( fis = new FileInputStream(new File(htRootPath, "/proxymsg/error.html")), o = new ByteArrayOutputStream(512), tp, "-UNRESOLVED_PATTERN-".getBytes() ); final byte[] result = o.toByteArray(); o.close(); o = null; if(header == null) header = new httpResponseHeader(); header.put(httpResponseHeader.CONNECTION_PROP_PROXY_RESPOND_STATUS, Integer.toString(httpStatusCode)); header.put(httpResponseHeader.DATE, systemDate); header.put(httpResponseHeader.CONTENT_TYPE, "text/html"); header.put(httpResponseHeader.CONTENT_LENGTH, Integer.toString(result.length)); header.put(httpResponseHeader.PRAGMA, "no-cache"); sendRespondHeader(conProp,respond,httpVersion,httpStatusCode,httpStatusText,header); if (! method.equals(httpHeader.METHOD_HEAD)) { // write the array to the client serverFileUtils.copy(result, respond); } respond.flush(); } finally { if (fis != null) try { fis.close(); } catch (final Exception e) { e.printStackTrace(); } if (o != null) try { o.close(); } catch (final Exception e) { e.printStackTrace(); } } } public static final void sendRespondHeader( final Properties conProp, final OutputStream respond, final String httpVersion, final int httpStatusCode, final String httpStatusText, final long contentLength ) throws IOException { sendRespondHeader(conProp,respond,httpVersion,httpStatusCode,httpStatusText,null,contentLength,null,null,null,null,null); } public static final void sendRespondHeader( final Properties conProp, final OutputStream respond, final String httpVersion, final int httpStatusCode, final String httpStatusText, final String contentType, final long contentLength, final Date moddate, final Date expires, final httpResponseHeader headers, final String contentEnc, final String transferEnc ) throws IOException { sendRespondHeader(conProp,respond,httpVersion,httpStatusCode,httpStatusText,contentType,contentLength,moddate,expires,headers,contentEnc,transferEnc,true); } public static final void sendRespondHeader( final Properties conProp, final OutputStream respond, final String httpVersion, final int httpStatusCode, final String httpStatusText, String contentType, final long contentLength, Date moddate, final Date expires, httpResponseHeader headers, final String contentEnc, final String transferEnc, final boolean nocache ) throws IOException { final String reqMethod = conProp.getProperty(httpHeader.CONNECTION_PROP_METHOD); if ((transferEnc != null) && !httpVersion.equals(httpHeader.HTTP_VERSION_1_1)) { throw new IllegalArgumentException("Transfer encoding is only supported for http/1.1 connections. The current connection version is " + httpVersion); } if (!reqMethod.equals(httpHeader.METHOD_HEAD)){ if (!conProp.getProperty(httpHeader.CONNECTION_PROP_PERSISTENT,"close").equals("close")) { if (transferEnc == null && contentLength < 0) { throw new IllegalArgumentException("Message MUST contain a Content-Length or a non-identity transfer-coding header field."); } } if (transferEnc != null && contentLength >= 0) { throw new IllegalArgumentException("Messages MUST NOT include both a Content-Length header field and a non-identity transfer-coding."); } } if(headers==null) headers = new httpResponseHeader(); final Date now = new Date(System.currentTimeMillis()); headers.put(httpResponseHeader.SERVER, "AnomicHTTPD (www.anomic.de)"); headers.put(httpResponseHeader.DATE, serverDate.formatRFC1123(now)); if (moddate.after(now)) moddate = now; headers.put(httpResponseHeader.LAST_MODIFIED, serverDate.formatRFC1123(moddate)); if (nocache) { if (httpVersion.toUpperCase().equals(httpHeader.HTTP_VERSION_1_1)) headers.put(httpResponseHeader.CACHE_CONTROL, "no-cache"); else headers.put(httpResponseHeader.PRAGMA, "no-cache"); } if (contentType == null) contentType = "text/html; charset=UTF-8"; else if (contentType.startsWith("text/") && contentType.toLowerCase().indexOf("charset=")==-1) contentType +="; charset=" + Charset.defaultCharset().name(); headers.put(httpHeader.CONTENT_TYPE, contentType); if (contentLength > 0) headers.put(httpResponseHeader.CONTENT_LENGTH, Long.toString(contentLength)); //if (cookie != null) headers.put(httpResponseHeader.SET_COOKIE, cookie); if (expires != null) headers.put(httpResponseHeader.EXPIRES, serverDate.formatRFC1123(expires)); if (contentEnc != null) headers.put(httpResponseHeader.CONTENT_ENCODING, contentEnc); if (transferEnc != null) headers.put(httpResponseHeader.TRANSFER_ENCODING, transferEnc); sendRespondHeader(conProp, respond, httpVersion, httpStatusCode, httpStatusText, headers); } public static final void sendRespondHeader( final Properties conProp, final OutputStream respond, final String httpVersion, final int httpStatusCode, final httpResponseHeader header ) throws IOException { sendRespondHeader(conProp,respond,httpVersion,httpStatusCode,null,header); } public static final void sendRespondHeader( final Properties conProp, final OutputStream respond, String httpVersion, final int httpStatusCode, String httpStatusText, httpResponseHeader responseHeader ) throws IOException { if (respond == null) throw new NullPointerException("The outputstream must not be null."); if (conProp == null) throw new NullPointerException("The connection property structure must not be null."); if (httpVersion == null) httpVersion = conProp.getProperty(httpHeader.CONNECTION_PROP_HTTP_VER,httpHeader.HTTP_VERSION_1_1); if (responseHeader == null) responseHeader = new httpResponseHeader(); try { if ((httpStatusText == null)||(httpStatusText.length()==0)) { if (httpVersion.equals(httpResponseHeader.HTTP_VERSION_1_0) && httpHeader.http1_0.containsKey(Integer.toString(httpStatusCode))) httpStatusText = httpResponseHeader.http1_0.get(Integer.toString(httpStatusCode)); else if (httpVersion.equals(httpResponseHeader.HTTP_VERSION_1_1) && httpHeader.http1_1.containsKey(Integer.toString(httpStatusCode))) httpStatusText = httpResponseHeader.http1_1.get(Integer.toString(httpStatusCode)); else httpStatusText = "Unknown"; } final StringBuilder header = new StringBuilder(560); // "HTTP/0.9" does not have a status line or header in the response if (! httpVersion.toUpperCase().equals(httpHeader.HTTP_VERSION_0_9)) { // write status line header.append(httpVersion).append(" ") .append(Integer.toString(httpStatusCode)).append(" ") .append(httpStatusText).append("\r\n"); // prepare header if (!responseHeader.containsKey(httpHeader.DATE)) responseHeader.put(httpHeader.DATE, serverDate.formatRFC1123(new Date())); if (!responseHeader.containsKey(httpHeader.CONTENT_TYPE)) responseHeader.put(httpHeader.CONTENT_TYPE, "text/html; charset=UTF-8"); // fix this if (!responseHeader.containsKey(httpRequestHeader.CONNECTION) && conProp.containsKey(httpHeader.CONNECTION_PROP_PERSISTENT)) responseHeader.put(httpRequestHeader.CONNECTION, conProp.getProperty(httpHeader.CONNECTION_PROP_PERSISTENT)); if (!responseHeader.containsKey(httpRequestHeader.PROXY_CONNECTION) && conProp.containsKey(httpHeader.CONNECTION_PROP_PERSISTENT)) responseHeader.put(httpRequestHeader.PROXY_CONNECTION, conProp.getProperty(httpHeader.CONNECTION_PROP_PERSISTENT)); if (conProp.containsKey(httpHeader.CONNECTION_PROP_PERSISTENT) && conProp.getProperty(httpHeader.CONNECTION_PROP_PERSISTENT).equals("keep-alive") && !responseHeader.containsKey(httpHeader.TRANSFER_ENCODING) && !responseHeader.containsKey(httpHeader.CONTENT_LENGTH)) responseHeader.put(httpHeader.CONTENT_LENGTH, "0"); // adding some yacy specific headers responseHeader.put(httpResponseHeader.X_YACY_KEEP_ALIVE_REQUEST_COUNT,conProp.getProperty(httpRequestHeader.CONNECTION_PROP_KEEP_ALIVE_COUNT)); responseHeader.put(httpResponseHeader.X_YACY_ORIGINAL_REQUEST_LINE,conProp.getProperty(httpRequestHeader.CONNECTION_PROP_REQUESTLINE)); responseHeader.put(httpResponseHeader.X_YACY_PREVIOUS_REQUEST_LINE,conProp.getProperty(httpRequestHeader.CONNECTION_PROP_PREV_REQUESTLINE)); //read custom headers /* if (requestProperties != null) { httpHeader outgoingHeader=requestProperties.getOutgoingHeader(); if (outgoingHeader!=null) {*/ final Iterator it = responseHeader.getCookies(); while(it.hasNext()) { //Append user properties to the main String //TODO: Should we check for user properites. What if they intersect properties that are already in header? final httpResponseHeader.Entry e = it.next(); header.append(e.getKey()).append(": ").append(e.getValue()).append("\r\n"); } /* } }*/ // write header final Iterator i = responseHeader.keySet().iterator(); String key; char tag; int count; //System.out.println("vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv"); while (i.hasNext()) { key = i.next(); tag = key.charAt(0); if ((tag != '*') && (tag != '#')) { // '#' in key is reserved for proxy attributes as artificial header values count = responseHeader.keyCount(key); for (int j = 0; j < count; j++) { header.append(key).append(": ").append((String) responseHeader.getSingle(key, j)).append("\r\n"); } //System.out.println("#" + key + ": " + value); } } // end header header.append("\r\n"); // sending headers to the client respond.write(header.toString().getBytes()); // flush stream respond.flush(); } conProp.put(httpHeader.CONNECTION_PROP_PROXY_RESPOND_HEADER,responseHeader); conProp.put(httpHeader.CONNECTION_PROP_PROXY_RESPOND_STATUS,Integer.toString(httpStatusCode)); } catch (final Exception e) { // any interruption may be caused be network error or because the user has closed // the windows during transmission. We simply pass it as IOException throw new IOException(e.getMessage()); } } public static boolean shallTransportZipped(final String path) { if ((path == null) || (path.length() == 0)) return true; int pos; if ((pos = path.lastIndexOf(".")) != -1) { return !disallowZippedContentEncoding.contains(path.substring(pos).toLowerCase()); } return true; } public void doUserAccounting(final Properties conProps) { // TODO: validation of conprop fields // httpHeader.CONNECTION_PROP_USER // httpHeader.CONNECTION_PROP_CLIENTIP // httpHeader.CONNECTION_PROP_PROXY_RESPOND_SIZE // httpHeader.CONNECTION_PROP_PROXY_RESPOND_STATUS } public static boolean isThisSeedIP(final String hostName) { if ((hostName == null) || (hostName.length() == 0)) return false; // getting ip address and port of this seed if (getAlternativeResolver() == null) return false; // resolve ip addresses final InetAddress seedInetAddress = serverDomains.dnsResolve(getAlternativeResolver().myIP()); final InetAddress hostInetAddress = serverDomains.dnsResolve(hostName); if (seedInetAddress == null || hostInetAddress == null) return false; // if it's equal, the hostname points to this seed return (seedInetAddress.equals(hostInetAddress)); } public static boolean isThisHostIP(final String hostName) { if ((hostName == null) || (hostName.length() == 0)) return false; boolean isThisHostIP = false; try { // final InetAddress clientAddress = InetAddress.getByName(hostName); final InetAddress clientAddress = serverDomains.dnsResolve(hostName); if (clientAddress == null) return false; if (clientAddress.isAnyLocalAddress() || clientAddress.isLoopbackAddress()) return true; final InetAddress[] localAddress = InetAddress.getAllByName(InetAddress.getLocalHost().getHostName()); for (int i=0; i