Fix for index script subresources

This commit is contained in:
bel2125 2020-09-03 22:25:16 +02:00
parent 5672c04936
commit dcf51653c0
2 changed files with 37 additions and 12 deletions

View File

@ -7781,6 +7781,7 @@ interpret_uri(struct mg_connection *conn, /* in/out: request (must be valid) */
* request uri. */
/* Using filename_buf_len - 1 because memmove() for PATH_INFO may shift
* part of the path one byte on the right. */
truncated = 0;
mg_snprintf(
conn, &truncated, filename, filename_buf_len - 1, "%s%s", root, uri);
@ -7936,26 +7937,30 @@ interpret_uri(struct mg_connection *conn, /* in/out: request (must be valid) */
/* some intermediate directory has an index file */
if (extention_matches_script(conn, tmp_str)) {
size_t script_name_len = strlen(tmp_str);
/* subres_name read before this memory locatio will be
overwritten */
char *subres_name = filename + sep_pos;
size_t subres_name_len = strlen(subres_name);
DEBUG_TRACE("Substitute script %s serving path %s",
tmp_str,
filename);
/* this index file is a script */
mg_snprintf(conn,
&truncated,
filename,
filename_buf_len,
"%s//%s",
tmp_str,
filename + sep_pos + 1);
if (truncated) {
if ((script_name_len + subres_name_len + 2)
>= filename_buf_len) {
mg_free(tmp_str);
goto interpret_cleanup;
}
sep_pos = strlen(tmp_str);
filename[sep_pos] = 0;
conn->path_info = filename + sep_pos + 1;
conn->path_info =
filename + script_name_len + 1; /* new target */
memmove(conn->path_info, subres_name, subres_name_len);
conn->path_info[subres_name_len] = 0;
memcpy(filename, tmp_str, script_name_len + 1);
*is_script_resource = 1;
*is_found = 1;
break;

View File

@ -43,6 +43,26 @@ mg.write(" </tr>\r\n");
end
mg.write(" </table>\r\n");
mg.write(" <h2>Info</h2>\r\n")
info = {}
info["path_info"] = mg.request_info.path_info
info["query_string"] = mg.request_info.query_string
mg.write(" <table>\r\n");
mg.write(" <tr>\r\n");
mg.write(" <th>Info</th>\r\n")
mg.write(" <th>Value</th>\r\n")
mg.write(" </tr>\r\n");
for k,v in pairs(info) do
mg.write(" <tr>\r\n");
mg.write(" <td>" .. k .. "</td>\r\n")
mg.write(" <td>" .. v .. "</td>\r\n")
end
mg.write(" </tr>\r\n");
mg.write(" </table>\r\n");
mg.write(" <h2>Body</h2>\r\n")
mg.write("<pre>\r\n");