1
0
mirror of https://github.com/moparisthebest/wget synced 2024-07-03 16:38:41 -04:00

[svn] Fix -P in case HTTP Content-Disposition header is present.

This commit is contained in:
mtortonesi 2006-12-27 01:42:28 -08:00
parent 92b2323253
commit 14ee3a6c03
2 changed files with 56 additions and 25 deletions

View File

@ -1,3 +1,8 @@
2006-12-27 Mauro Tortonesi <mauro@ferrara.linux.it>
* http.c (parse_content_disposition): Consider directory prefix, if
specified.
2006-11-21 Hrvoje Niksic <hniksic@xemacs.org> 2006-11-21 Hrvoje Niksic <hniksic@xemacs.org>
* retr.c (retrieve_from_file): Ditto. * retr.c (retrieve_from_file): Ditto.

View File

@ -870,7 +870,7 @@ skip_short_body (int fd, wgint contlen)
bool bool
extract_param (const char **source, param_token *name, param_token *value, extract_param (const char **source, param_token *name, param_token *value,
char separator) char separator)
{ {
const char *p = *source; const char *p = *source;
@ -878,7 +878,7 @@ extract_param (const char **source, param_token *name, param_token *value,
if (!*p) if (!*p)
{ {
*source = p; *source = p;
return false; /* no error; nothing more to extract */ return false; /* no error; nothing more to extract */
} }
/* Extract name. */ /* Extract name. */
@ -886,9 +886,9 @@ extract_param (const char **source, param_token *name, param_token *value,
while (*p && !ISSPACE (*p) && *p != '=' && *p != separator) ++p; while (*p && !ISSPACE (*p) && *p != '=' && *p != separator) ++p;
name->e = p; name->e = p;
if (name->b == name->e) if (name->b == name->e)
return false; /* empty name: error */ return false; /* empty name: error */
while (ISSPACE (*p)) ++p; while (ISSPACE (*p)) ++p;
if (*p == separator || !*p) /* no value */ if (*p == separator || !*p) /* no value */
{ {
xzero (*value); xzero (*value);
if (*p == separator) ++p; if (*p == separator) ++p;
@ -896,12 +896,12 @@ extract_param (const char **source, param_token *name, param_token *value,
return true; return true;
} }
if (*p != '=') if (*p != '=')
return false; /* error */ return false; /* error */
/* *p is '=', extract value */ /* *p is '=', extract value */
++p; ++p;
while (ISSPACE (*p)) ++p; while (ISSPACE (*p)) ++p;
if (*p == '"') /* quoted */ if (*p == '"') /* quoted */
{ {
value->b = ++p; value->b = ++p;
while (*p && *p != '"') ++p; while (*p && *p != '"') ++p;
@ -912,12 +912,12 @@ extract_param (const char **source, param_token *name, param_token *value,
while (ISSPACE (*p)) ++p; while (ISSPACE (*p)) ++p;
while (*p && *p != separator) ++p; while (*p && *p != separator) ++p;
if (*p == separator) if (*p == separator)
++p; ++p;
else if (*p) else if (*p)
/* garbage after closed quote, e.g. foo="bar"baz */ /* garbage after closed quote, e.g. foo="bar"baz */
return false; return false;
} }
else /* unquoted */ else /* unquoted */
{ {
value->b = p; value->b = p;
while (*p && *p != separator) ++p; while (*p && *p != separator) ++p;
@ -957,16 +957,34 @@ parse_content_disposition (const char *hdr, char **filename)
while (extract_param (&hdr, &name, &value, ';')) while (extract_param (&hdr, &name, &value, ';'))
if (BOUNDED_EQUAL_NO_CASE (name.b, name.e, "filename") && value.b != NULL) if (BOUNDED_EQUAL_NO_CASE (name.b, name.e, "filename") && value.b != NULL)
{ {
/* Make the file name begin at the last slash or backslash. */ /* Make the file name begin at the last slash or backslash. */
const char *last_slash = memrchr (value.b, '/', value.e - value.b); const char *last_slash = memrchr (value.b, '/', value.e - value.b);
const char *last_bs = memrchr (value.b, '\\', value.e - value.b); const char *last_bs = memrchr (value.b, '\\', value.e - value.b);
if (last_slash && last_bs) if (last_slash && last_bs)
value.b = 1 + MAX (last_slash, last_bs); value.b = 1 + MAX (last_slash, last_bs);
else if (last_slash || last_bs) else if (last_slash || last_bs)
value.b = 1 + (last_slash ? last_slash : last_bs); value.b = 1 + (last_slash ? last_slash : last_bs);
if (value.b == value.e) if (value.b == value.e)
continue; continue;
*filename = strdupdelim (value.b, value.e); /* Start with the directory prefix, if specified. */
if (opt.dir_prefix)
{
int prefix_length = strlen (opt.dir_prefix);
bool add_slash = (opt.dir_prefix[prefix_length - 1] != '/');
int total_length;
if (add_slash)
++prefix_length;
total_length = prefix_length + (value.e - value.b);
*filename = xmalloc (total_length + 1);
strcpy (*filename, opt.dir_prefix);
if (add_slash)
(*filename)[prefix_length - 1] = '/';
memcpy (*filename + prefix_length, value.b, (value.e - value.b));
(*filename)[total_length] = '\0';
}
else
*filename = strdupdelim (value.b, value.e);
return true; return true;
} }
return false; return false;
@ -2852,12 +2870,12 @@ digest_authentication_encode (const char *au, const char *user,
{ {
int i; int i;
for (i = 0; i < countof (options); i++) for (i = 0; i < countof (options); i++)
if (name.e - name.b == strlen (options[i].name) if (name.e - name.b == strlen (options[i].name)
&& 0 == strncmp (name.b, options[i].name, name.e - name.b)) && 0 == strncmp (name.b, options[i].name, name.e - name.b))
{ {
*options[i].variable = strdupdelim (value.b, value.e); *options[i].variable = strdupdelim (value.b, value.e);
break; break;
} }
} }
if (!realm || !nonce || !user || !passwd || !path || !method) if (!realm || !nonce || !user || !passwd || !path || !method)
{ {
@ -3027,19 +3045,27 @@ test_parse_content_disposition()
int i; int i;
struct { struct {
char *hdrval; char *hdrval;
char *opt_dir_prefix;
char *filename; char *filename;
bool result; bool result;
} test_array[] = { } test_array[] = {
{ "filename=\"file.ext\"", "file.ext", true }, { "filename=\"file.ext\"", NULL, "file.ext", true },
{ "attachment; filename=\"file.ext\"", "file.ext", true }, { "filename=\"file.ext\"", "somedir", "somedir/file.ext", true },
{ "attachment; filename=\"file.ext\"; dummy", "file.ext", true }, { "attachment; filename=\"file.ext\"", NULL, "file.ext", true },
{ "attachment", NULL, false }, { "attachment; filename=\"file.ext\"", "somedir", "somedir/file.ext", true },
{ "attachment; filename=\"file.ext\"; dummy", NULL, "file.ext", true },
{ "attachment; filename=\"file.ext\"; dummy", "somedir", "somedir/file.ext", true },
{ "attachment", NULL, NULL, false },
{ "attachment", "somedir", NULL, false },
}; };
for (i = 0; i < sizeof(test_array)/sizeof(test_array[0]); ++i) for (i = 0; i < sizeof(test_array)/sizeof(test_array[0]); ++i)
{ {
char *filename; char *filename;
bool res = parse_content_disposition (test_array[i].hdrval, &filename); bool res;
opt.dir_prefix = test_array[i].opt_dir_prefix;
res = parse_content_disposition (test_array[i].hdrval, &filename);
mu_assert ("test_parse_content_disposition: wrong result", mu_assert ("test_parse_content_disposition: wrong result",
res == test_array[i].result res == test_array[i].result