1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385
|
/*
* Copyright (c) 2013 Tim Ruehsen
* Copyright (c) 2015-2024 Free Software Foundation, Inc.
*
* This file is part of libwget.
*
* Libwget is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Libwget 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with libwget. If not, see <https://www.gnu.org/licenses/>.
*
*
* Extracting URLs from HTML
*
* Changelog
* 26.09.2013 Tim Ruehsen created
*
*/
#include <config.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <c-ctype.h>
#include <wget.h>
#include "private.h"
typedef struct {
wget_html_parsed_result
result;
wget_vector *
additional_tags;
wget_vector *
ignore_tags;
wget_string
download;
int
uri_index;
size_t
css_start_offset;
char
found_robots,
found_content_type,
link_inline;
const char
* html,
* css_attr,
* css_dir;
} html_context;
// see https://stackoverflow.com/questions/2725156/complete-list-of-html-tag-attributes-which-have-a-url-value
static const char maybe[256] = {
['a'] = 1,
['b'] = 1,
['c'] = 1,
['d'] = 1,
['f'] = 1,
['h'] = 1,
['i'] = 1,
['l'] = 1,
['m'] = 1,
['p'] = 1,
['s'] = 1,
['u'] = 1,
};
static const char attrs[][12] = {
"action", "archive",
"background",
"code", "codebase", "cite", "classid",
"data",
"formaction",
"href",
"icon",
"lowsrc", "longdesc",
"manifest",
"profile", "poster",
"src", "srcset",
"usemap"
};
static void css_parse_uri(void *context, const char *url WGET_GCC_UNUSED, size_t len, size_t pos)
{
html_context *ctx = context;
wget_html_parsed_result *res = &ctx->result;
wget_html_parsed_url *parsed_url;
if (!(parsed_url = wget_malloc(sizeof(wget_html_parsed_url))))
return;
parsed_url->link_inline = 1;
wget_strscpy(parsed_url->attr, ctx->css_attr, sizeof(parsed_url->attr));
wget_strscpy(parsed_url->tag, ctx->css_dir, sizeof(parsed_url->tag));
parsed_url->url.p = (const char *) (ctx->html + ctx->css_start_offset + pos);
parsed_url->url.len = len;
parsed_url->download.p = NULL;
parsed_url->download.len = 0;
if (!res->uris)
res->uris = wget_vector_create(32, NULL);
wget_vector_add(res->uris, parsed_url);
}
// Callback function, called from HTML parser for each URI found.
static void html_get_url(void *context, int flags, const char *tag, const char *attr, const char *val, size_t len, size_t pos WGET_GCC_UNUSED)
{
html_context *ctx = context;
// Read the encoding from META tag, e.g. from
// <meta http-equiv="Content-Type" content="text/html; charset=utf-8">.
// It overrides the encoding from the HTTP response resp. from the CLI.
//
// Also ,we are interested in ROBOTS e.g.
// <META name="ROBOTS" content="NOINDEX, NOFOLLOW">
if ((flags & XML_FLG_BEGIN)) {
if ((*tag|0x20) == 'a' && (tag[1] == 0 || !wget_strcasecmp_ascii(tag, "area"))) {
// The download attribute is only valid for 'a' and 'area' tags.
// S 4.6.5 in https://html.spec.whatwg.org/multipage/links.html#downloading-resources
ctx->uri_index = -1;
ctx->download.p = NULL;
ctx->download.len = 0;
}
else if ((*tag|0x20) == 'm' && !wget_strcasecmp_ascii(tag, "meta")) {
ctx->found_robots = ctx->found_content_type = 0;
}
else if ((*tag|0x20) == 'l' && !wget_strcasecmp_ascii(tag, "link")) {
ctx->link_inline = 0;
ctx->uri_index = -1;
}
}
if ((flags & XML_FLG_ATTRIBUTE) && val) {
wget_html_parsed_result *res = &ctx->result;
// debug_printf("%02X %s %s '%.*s' %zu %zu\n", (unsigned) flags, tag, attr, (int) len, val, len, pos);
if ((*tag|0x20) == 'm' && !wget_strcasecmp_ascii(tag, "meta")) {
if (!ctx->found_robots) {
if (!wget_strcasecmp_ascii(attr, "name") && !wget_strncasecmp_ascii(val, "robots", len)) {
ctx->found_robots = 1;
return;
}
} else if (ctx->found_robots && !wget_strcasecmp_ascii(attr, "content")) {
char valbuf[256], *valp;
const char *value;
if (!(value = valp = wget_strmemcpy_a(valbuf, sizeof(valbuf), val, len)))
return;
while (*value) {
const char *p;
while (c_isspace(*value)) value++;
if (*value == ',') { value++; continue; }
for (p = value; *p && !c_isspace(*p) && *p != ','; p++);
if (p == value) break;
// debug_printf("ROBOTS='%.*s'\n", (int)(p - value), value);
if (!wget_strncasecmp_ascii(value, "all", p - value) || !wget_strncasecmp_ascii(value, "follow", p - value))
res->follow = 1;
else if (!wget_strncasecmp_ascii(value, "nofollow", p - value) || !wget_strncasecmp_ascii(value, "none", p - value))
res->follow = 0;
value = *p ? p + 1 : p;
}
if (valp != valbuf)
xfree(valp);
return;
}
if (ctx->found_content_type && !res->encoding) {
if (!wget_strcasecmp_ascii(attr, "content")) {
char valbuf[256];
const char *value;
if (!(value = wget_strmemcpy_a(valbuf, sizeof(valbuf), val, len)))
return;
wget_http_parse_content_type(value, NULL, &res->encoding);
if (value != valbuf)
xfree(value);
}
}
else if (!ctx->found_content_type && !res->encoding) {
if (!wget_strcasecmp_ascii(attr, "http-equiv") && !wget_strncasecmp_ascii(val, "Content-Type", len)) {
ctx->found_content_type = 1;
}
else if (!wget_strcasecmp_ascii(attr, "charset")) {
res->encoding = wget_strmemdup(val, len);
}
}
return;
}
if (ctx->ignore_tags) {
if (wget_vector_find(ctx->ignore_tags, &(wget_html_tag){ .name = tag, .attribute = NULL } ) != -1
|| wget_vector_find(ctx->ignore_tags, &(wget_html_tag){ .name = tag, .attribute = attr } ) != -1)
return;
}
if ((*attr|0x20) == 's' && !wget_strcasecmp_ascii(attr, "style") && len) {
ctx->css_dir = tag;
ctx->css_attr = "style";
ctx->css_start_offset = val - ctx->html;
wget_css_parse_buffer(val, len, css_parse_uri, NULL, context);
return;
}
if ((*tag|0x20) == 'l' && !wget_strcasecmp_ascii(tag, "link")) {
if (!wget_strcasecmp_ascii(attr, "rel")) {
ctx->link_inline = 0;
// "rel" contains a space separated list of items.
// see https://html.spec.whatwg.org/multipage/semantics.html#attr-link-rel
// see https://html.spec.whatwg.org/multipage/links.html#linkTypes
while (len) {
const char *p;
for (p = val;len && !c_isspace(*val); val++, len--); // find end of item
if (p == val) { val++; len--; continue; } // found a delimiter
// Check for items that may be important to display the page.
if (!wget_strncasecmp_ascii(p, "icon", val - p)
|| !wget_strncasecmp_ascii(p, "manifest", val - p)
|| !wget_strncasecmp_ascii(p, "modulepreload", val - p)
|| !wget_strncasecmp_ascii(p, "stylesheet", val - p)
|| !wget_strncasecmp_ascii(p, "prefetch", val - p)
|| !wget_strncasecmp_ascii(p, "preload", val - p))
{
ctx->link_inline = 1;
break;
}
}
if (ctx->uri_index >= 0) {
// href= came before rel=
wget_html_parsed_url *url = wget_vector_get(res->uris, ctx->uri_index);
if (url)
url->link_inline = ctx->link_inline;
}
return;
}
}
if ((*tag|0x20) == 'a' && (tag[1] == 0 || !wget_strcasecmp_ascii(tag, "area"))
&& !wget_strcasecmp_ascii(attr, "download"))
{
if (!val)
return;
for (;len && c_isspace(*val); val++, len--); // skip leading spaces
for (;len && c_isspace(val[len - 1]); len--); // skip trailing spaces
if (!len)
return;
// remember for later
ctx->download.p = val;
ctx->download.len = len;
if (ctx->uri_index >= 0) {
// href= came before download=
wget_html_parsed_url *url = wget_vector_get(res->uris, ctx->uri_index);
url->download.p = val;
url->download.len = len;
}
return;
}
// shortcut to avoid unneeded calls to bsearch()
int found = 0;
// search the static list for a tag/attr match
if (maybe[(unsigned char)*attr|0x20] && attr[1] && attr[2])
found = bsearch(attr, attrs, countof(attrs), sizeof(attrs[0]), (int(*)(const void *, const void *))wget_strcasecmp_ascii) != NULL;
// search the dynamic list for a tag/attr match
if (!found && ctx->additional_tags) {
if (wget_vector_find(ctx->additional_tags, &(wget_html_tag){ .name = tag, .attribute = NULL } ) != -1
|| wget_vector_find(ctx->additional_tags, &(wget_html_tag){ .name = tag, .attribute = attr } ) != -1)
found = 1;
}
if (found) {
for (;len && c_isspace(*val); val++, len--); // skip leading spaces
for (;len && c_isspace(val[len - 1]); len--); // skip trailing spaces
if ((*tag|0x20) == 'b' && !wget_strcasecmp_ascii(tag, "base")) {
// found a <BASE href="...">
res->base.p = val;
res->base.len = len;
return;
}
if (!res->uris)
res->uris = wget_vector_create(32, NULL);
wget_html_parsed_url url;
if (!wget_strcasecmp_ascii(attr, "srcset")) {
// value is a list of URLs, see https://html.spec.whatwg.org/multipage/embedded-content.html#attr-img-srcset
// See also https://html.spec.whatwg.org/multipage/images.html#srcset-attribute
while (len) {
const char *p;
for (;len && c_isspace(*val); val++, len--); // skip leading spaces
for (p = val;len && !c_isspace(*val) && *val != ','; val++, len--); // find end of URL
if (p != val) {
// The 'data:' URL contains a single comma: https://datatracker.ietf.org/doc/html/rfc2397
if (len && *val == ',' && !wget_strncasecmp_ascii(p, "data:", 5)) {
// advance to the end of the 'data:' URL
for (val++, len--;len && !c_isspace(*val) && *val != ','; val++, len--);
}
url.download.p = NULL;
url.download.len = 0;
url.link_inline = ctx->link_inline;
wget_strscpy(url.attr, attr, sizeof(url.attr));
wget_strscpy(url.tag, tag, sizeof(url.tag));
url.url.p = p;
url.url.len = val - p;
wget_vector_add_memdup(res->uris, &url, sizeof(url));
}
for (;len && *val != ','; val++, len--); // skip optional width/density descriptor
if (len && *val == ',') { val++; len--; }
}
} else {
// value is a single URL
url.download.p = ctx->download.p;
url.download.len = ctx->download.len;
url.link_inline = ctx->link_inline;
wget_strscpy(url.attr, attr, sizeof(url.attr));
wget_strscpy(url.tag, tag, sizeof(url.tag));
url.url.p = val;
url.url.len = len;
ctx->uri_index = wget_vector_add_memdup(res->uris, &url, sizeof(url));
}
}
}
if (flags & XML_FLG_CONTENT && val && len && !wget_strcasecmp_ascii(tag, "style")) {
ctx->css_dir = "style";
ctx->css_attr = "";
ctx->css_start_offset = val - ctx->html;
wget_css_parse_buffer(val, len, css_parse_uri, NULL, context);
}
}
void wget_html_free_urls_inline (wget_html_parsed_result **res)
{
if (res && *res) {
xfree((*res)->encoding);
wget_vector_free(&(*res)->uris);
xfree(*res);
}
}
wget_html_parsed_result *wget_html_get_urls_inline(const char *html, wget_vector *additional_tags, wget_vector *ignore_tags)
{
html_context context = {
.result.follow = 1,
.additional_tags = additional_tags,
.ignore_tags = ignore_tags,
.html = html,
};
// context.result.uris = wget_vector_create(32, -2, NULL);
wget_html_parse_buffer(html, html_get_url, &context, HTML_HINT_REMOVE_EMPTY_CONTENT);
return wget_memdup(&context.result, sizeof(context.result));
}
|