2008-08-20 17:00:34 +03:00
|
|
|
--- a/networking/httpd.c
|
|
|
|
+++ b/networking/httpd.c
|
2011-10-22 02:08:45 +03:00
|
|
|
@@ -105,6 +105,7 @@
|
|
|
|
//usage: IF_FEATURE_HTTPD_BASIC_AUTH(" [-r REALM]")
|
|
|
|
//usage: " [-h HOME]\n"
|
|
|
|
//usage: "or httpd -d/-e" IF_FEATURE_HTTPD_AUTH_MD5("/-m") " STRING"
|
|
|
|
+//usage: " [-R <path> [-H <host>]]"
|
|
|
|
//usage:#define httpd_full_usage "\n\n"
|
|
|
|
//usage: "Listen for incoming HTTP requests\n"
|
|
|
|
//usage: "\n -i Inetd mode"
|
|
|
|
@@ -121,6 +122,8 @@
|
|
|
|
//usage: "\n -m STRING MD5 crypt STRING")
|
|
|
|
//usage: "\n -e STRING HTML encode STRING"
|
|
|
|
//usage: "\n -d STRING URL decode STRING"
|
|
|
|
+//usage: "\n -R PATH Redirect target path"
|
|
|
|
+//usage: "\n -H HOST Redirect target host"
|
|
|
|
|
|
|
|
#include "libbb.h"
|
|
|
|
#if ENABLE_FEATURE_HTTPD_USE_SENDFILE
|
|
|
|
@@ -272,6 +275,8 @@ struct globals {
|
2007-04-02 12:40:01 +03:00
|
|
|
|
2007-10-05 03:27:49 +03:00
|
|
|
const char *found_mime_type;
|
|
|
|
const char *found_moved_temporarily;
|
|
|
|
+ const char *redirect_path;
|
|
|
|
+ const char *redirect_host;
|
|
|
|
Htaccess_IP *ip_a_d; /* config allow/deny lines */
|
2007-04-02 12:40:01 +03:00
|
|
|
|
2009-12-07 18:56:04 +02:00
|
|
|
IF_FEATURE_HTTPD_BASIC_AUTH(const char *g_realm;)
|
2011-10-22 02:08:45 +03:00
|
|
|
@@ -322,6 +327,8 @@ struct globals {
|
2008-08-20 17:00:34 +03:00
|
|
|
#define index_page (G.index_page )
|
2007-10-05 03:27:49 +03:00
|
|
|
#define found_mime_type (G.found_mime_type )
|
|
|
|
#define found_moved_temporarily (G.found_moved_temporarily)
|
|
|
|
+#define redirect_path (G.redirect_path )
|
|
|
|
+#define redirect_host (G.redirect_host )
|
|
|
|
#define last_mod (G.last_mod )
|
|
|
|
#define ip_a_d (G.ip_a_d )
|
2007-11-10 18:51:11 +02:00
|
|
|
#define g_realm (G.g_realm )
|
2011-11-23 21:41:36 +02:00
|
|
|
@@ -956,8 +963,11 @@ static void send_headers(int responseNum
|
2007-04-02 12:40:01 +03:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
if (responseNum == HTTP_MOVED_TEMPORARILY) {
|
2007-10-05 03:27:49 +03:00
|
|
|
- len += sprintf(iobuf + len, "Location: %s/%s%s\r\n",
|
|
|
|
+ len += sprintf(iobuf + len, "Location: %s%s%s%s%s%s\r\n",
|
|
|
|
+ (redirect_host ? "http://" : ""),
|
|
|
|
+ (redirect_host ? redirect_host : ""),
|
|
|
|
found_moved_temporarily,
|
|
|
|
+ (redirect_host ? "" : "/"),
|
|
|
|
(g_query ? "?" : ""),
|
|
|
|
(g_query ? g_query : ""));
|
2007-04-02 12:40:01 +03:00
|
|
|
}
|
2011-11-23 21:41:36 +02:00
|
|
|
@@ -1925,8 +1935,12 @@ static void handle_incoming_and_exit(con
|
2008-08-20 17:00:34 +03:00
|
|
|
} while (*++tptr);
|
|
|
|
*++urlp = '\0'; /* terminate after last character */
|
2007-04-02 12:40:01 +03:00
|
|
|
|
2007-10-05 03:27:49 +03:00
|
|
|
+ /* redirect active */
|
|
|
|
+ if (redirect_path && (strncmp(urlcopy, redirect_path, strlen(redirect_path)) != 0))
|
|
|
|
+ found_moved_temporarily = redirect_path;
|
2007-04-02 12:40:01 +03:00
|
|
|
+
|
2007-10-05 03:27:49 +03:00
|
|
|
/* If URL is a directory, add '/' */
|
2008-08-20 17:00:34 +03:00
|
|
|
- if (urlp[-1] != '/') {
|
|
|
|
+ if (!redirect_path && (urlp[-1] != '/')) {
|
2010-04-03 03:58:46 +03:00
|
|
|
if (is_directory(urlcopy + 1, 1, NULL)) {
|
2007-10-05 03:27:49 +03:00
|
|
|
found_moved_temporarily = urlcopy;
|
|
|
|
}
|
2011-11-23 21:41:36 +02:00
|
|
|
@@ -2283,7 +2297,9 @@ static void sighup_handler(int sig UNUSE
|
2009-09-28 15:38:46 +03:00
|
|
|
}
|
2007-04-02 12:40:01 +03:00
|
|
|
|
|
|
|
enum {
|
|
|
|
- c_opt_config_file = 0,
|
|
|
|
+ R_opt_redirect_path = 0,
|
|
|
|
+ H_opt_redirect_host,
|
|
|
|
+ c_opt_config_file,
|
|
|
|
d_opt_decode_url,
|
|
|
|
h_opt_home_httpd,
|
2009-12-07 18:56:04 +02:00
|
|
|
IF_FEATURE_HTTPD_ENCODE_URL_STR(e_opt_encode_url,)
|
2011-11-23 21:41:36 +02:00
|
|
|
@@ -2332,12 +2348,13 @@ int httpd_main(int argc UNUSED_PARAM, ch
|
2007-10-05 03:27:49 +03:00
|
|
|
/* We do not "absolutize" path given by -h (home) opt.
|
2008-08-20 17:00:34 +03:00
|
|
|
* If user gives relative path in -h,
|
|
|
|
* $SCRIPT_FILENAME will not be set. */
|
2007-10-05 03:27:49 +03:00
|
|
|
- opt = getopt32(argv, "c:d:h:"
|
|
|
|
+ opt = getopt32(argv, "R:H:c:d:h:"
|
2009-12-07 18:56:04 +02:00
|
|
|
IF_FEATURE_HTTPD_ENCODE_URL_STR("e:")
|
|
|
|
IF_FEATURE_HTTPD_BASIC_AUTH("r:")
|
|
|
|
IF_FEATURE_HTTPD_AUTH_MD5("m:")
|
|
|
|
IF_FEATURE_HTTPD_SETUID("u:")
|
2007-10-05 03:27:49 +03:00
|
|
|
"p:ifv",
|
|
|
|
+ &redirect_path, &redirect_host,
|
2009-09-28 15:38:46 +03:00
|
|
|
&opt_c_configFile, &url_for_decode, &home_httpd
|
2009-12-07 18:56:04 +02:00
|
|
|
IF_FEATURE_HTTPD_ENCODE_URL_STR(, &url_for_encode)
|
|
|
|
IF_FEATURE_HTTPD_BASIC_AUTH(, &g_realm)
|