Coverage Report

Created: 2024-09-08 06:23

/src/git/urlmatch.c
Line
Count
Source (jump to first uncovered line)
1
#include "git-compat-util.h"
2
#include "gettext.h"
3
#include "hex-ll.h"
4
#include "strbuf.h"
5
#include "urlmatch.h"
6
7
0
#define URL_ALPHA "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
8
0
#define URL_DIGIT "0123456789"
9
0
#define URL_ALPHADIGIT URL_ALPHA URL_DIGIT
10
0
#define URL_SCHEME_CHARS URL_ALPHADIGIT "+.-"
11
0
#define URL_HOST_CHARS URL_ALPHADIGIT ".-_[:]" /* IPv6 literals need [:] */
12
0
#define URL_UNSAFE_CHARS " <>\"%{}|\\^`" /* plus 0x00-0x1F,0x7F-0xFF */
13
0
#define URL_GEN_RESERVED ":/?#[]@"
14
0
#define URL_SUB_RESERVED "!$&'()*+,;="
15
0
#define URL_RESERVED URL_GEN_RESERVED URL_SUB_RESERVED /* only allowed delims */
16
17
static int append_normalized_escapes(struct strbuf *buf,
18
             const char *from,
19
             size_t from_len,
20
             const char *esc_extra,
21
             const char *esc_ok)
22
0
{
23
  /*
24
   * Append to strbuf 'buf' characters from string 'from' with length
25
   * 'from_len' while unescaping characters that do not need to be escaped
26
   * and escaping characters that do.  The set of characters to escape
27
   * (the complement of which is unescaped) starts out as the RFC 3986
28
   * unsafe characters (0x00-0x1F,0x7F-0xFF," <>\"#%{}|\\^`").  If
29
   * 'esc_extra' is not NULL, those additional characters will also always
30
   * be escaped.  If 'esc_ok' is not NULL, those characters will be left
31
   * escaped if found that way, but will not be unescaped otherwise (used
32
   * for delimiters).  If a %-escape sequence is encountered that is not
33
   * followed by 2 hexadecimal digits, the sequence is invalid and
34
   * false (0) will be returned.  Otherwise true (1) will be returned for
35
   * success.
36
   *
37
   * Note that all %-escape sequences will be normalized to UPPERCASE
38
   * as indicated in RFC 3986.  Unless included in esc_extra or esc_ok
39
   * alphanumerics and "-._~" will always be unescaped as per RFC 3986.
40
   */
41
42
0
  while (from_len) {
43
0
    int ch = *from++;
44
0
    int was_esc = 0;
45
46
0
    from_len--;
47
0
    if (ch == '%') {
48
0
      if (from_len < 2)
49
0
        return 0;
50
0
      ch = hex2chr(from);
51
0
      if (ch < 0)
52
0
        return 0;
53
0
      from += 2;
54
0
      from_len -= 2;
55
0
      was_esc = 1;
56
0
    }
57
0
    if ((unsigned char)ch <= 0x1F || (unsigned char)ch >= 0x7F ||
58
0
        strchr(URL_UNSAFE_CHARS, ch) ||
59
0
        (esc_extra && strchr(esc_extra, ch)) ||
60
0
        (was_esc && strchr(esc_ok, ch)))
61
0
      strbuf_addf(buf, "%%%02X", (unsigned char)ch);
62
0
    else
63
0
      strbuf_addch(buf, ch);
64
0
  }
65
66
0
  return 1;
67
0
}
68
69
static const char *end_of_token(const char *s, int c, size_t n)
70
0
{
71
0
  const char *next = memchr(s, c, n);
72
0
  if (!next)
73
0
    next = s + n;
74
0
  return next;
75
0
}
76
77
static int match_host(const struct url_info *url_info,
78
          const struct url_info *pattern_info)
79
0
{
80
0
  const char *url = url_info->url + url_info->host_off;
81
0
  const char *pat = pattern_info->url + pattern_info->host_off;
82
0
  int url_len = url_info->host_len;
83
0
  int pat_len = pattern_info->host_len;
84
85
0
  while (url_len && pat_len) {
86
0
    const char *url_next = end_of_token(url, '.', url_len);
87
0
    const char *pat_next = end_of_token(pat, '.', pat_len);
88
89
0
    if (pat_next == pat + 1 && pat[0] == '*')
90
      /* wildcard matches anything */
91
0
      ;
92
0
    else if ((pat_next - pat) == (url_next - url) &&
93
0
       !memcmp(url, pat, url_next - url))
94
      /* the components are the same */
95
0
      ;
96
0
    else
97
0
      return 0; /* found an unmatch */
98
99
0
    if (url_next < url + url_len)
100
0
      url_next++;
101
0
    url_len -= url_next - url;
102
0
    url = url_next;
103
0
    if (pat_next < pat + pat_len)
104
0
      pat_next++;
105
0
    pat_len -= pat_next - pat;
106
0
    pat = pat_next;
107
0
  }
108
109
0
  return (!url_len && !pat_len);
110
0
}
111
112
static char *url_normalize_1(const char *url, struct url_info *out_info, char allow_globs)
113
0
{
114
  /*
115
   * Normalize NUL-terminated url using the following rules:
116
   *
117
   * 1. Case-insensitive parts of url will be converted to lower case
118
   * 2. %-encoded characters that do not need to be will be unencoded
119
   * 3. Characters that are not %-encoded and must be will be encoded
120
   * 4. All %-encodings will be converted to upper case hexadecimal
121
   * 5. Leading 0s are removed from port numbers
122
   * 6. If the default port for the scheme is given it will be removed
123
   * 7. A path part (including empty) not starting with '/' has one added
124
   * 8. Any dot segments (. or ..) in the path are resolved and removed
125
   * 9. IPv6 host literals are allowed (but not normalized or validated)
126
   *
127
   * The rules are based on information in RFC 3986.
128
   *
129
   * Please note this function requires a full URL including a scheme
130
   * and host part (except for file: URLs which may have an empty host).
131
   *
132
   * The return value is a newly allocated string that must be freed
133
   * or NULL if the url is not valid.
134
   *
135
   * If out_info is non-NULL, the url and err fields therein will always
136
   * be set.  If a non-NULL value is returned, it will be stored in
137
   * out_info->url as well, out_info->err will be set to NULL and the
138
   * other fields of *out_info will also be filled in.  If a NULL value
139
   * is returned, NULL will be stored in out_info->url and out_info->err
140
   * will be set to a brief, translated, error message, but no other
141
   * fields will be filled in.
142
   *
143
   * This is NOT a URL validation function.  Full URL validation is NOT
144
   * performed.  Some invalid host names are passed through this function
145
   * undetected.  However, most all other problems that make a URL invalid
146
   * will be detected (including a missing host for non file: URLs).
147
   */
148
149
0
  size_t url_len = strlen(url);
150
0
  struct strbuf norm;
151
0
  size_t spanned;
152
0
  size_t scheme_len, user_off=0, user_len=0, passwd_off=0, passwd_len=0;
153
0
  size_t host_off=0, host_len=0, port_off=0, port_len=0, path_off, path_len, result_len;
154
0
  const char *slash_ptr, *at_ptr, *colon_ptr, *path_start;
155
0
  char *result;
156
157
  /*
158
   * Copy lowercased scheme and :// suffix, %-escapes are not allowed
159
   * First character of scheme must be URL_ALPHA
160
   */
161
0
  spanned = strspn(url, URL_SCHEME_CHARS);
162
0
  if (!spanned || !isalpha(url[0]) || spanned + 3 > url_len ||
163
0
      url[spanned] != ':' || url[spanned+1] != '/' || url[spanned+2] != '/') {
164
0
    if (out_info) {
165
0
      out_info->url = NULL;
166
0
      out_info->err = _("invalid URL scheme name or missing '://' suffix");
167
0
    }
168
0
    return NULL; /* Bad scheme and/or missing "://" part */
169
0
  }
170
0
  strbuf_init(&norm, url_len);
171
0
  scheme_len = spanned;
172
0
  spanned += 3;
173
0
  url_len -= spanned;
174
0
  while (spanned--)
175
0
    strbuf_addch(&norm, tolower(*url++));
176
177
178
  /*
179
   * Copy any username:password if present normalizing %-escapes
180
   */
181
0
  at_ptr = strchr(url, '@');
182
0
  slash_ptr = url + strcspn(url, "/?#");
183
0
  if (at_ptr && at_ptr < slash_ptr) {
184
0
    user_off = norm.len;
185
0
    if (at_ptr > url) {
186
0
      if (!append_normalized_escapes(&norm, url, at_ptr - url,
187
0
                   "", URL_RESERVED)) {
188
0
        if (out_info) {
189
0
          out_info->url = NULL;
190
0
          out_info->err = _("invalid %XX escape sequence");
191
0
        }
192
0
        strbuf_release(&norm);
193
0
        return NULL;
194
0
      }
195
0
      colon_ptr = strchr(norm.buf + scheme_len + 3, ':');
196
0
      if (colon_ptr) {
197
0
        passwd_off = (colon_ptr + 1) - norm.buf;
198
0
        passwd_len = norm.len - passwd_off;
199
0
        user_len = (passwd_off - 1) - (scheme_len + 3);
200
0
      } else {
201
0
        user_len = norm.len - (scheme_len + 3);
202
0
      }
203
0
    }
204
0
    strbuf_addch(&norm, '@');
205
0
    url_len -= (++at_ptr - url);
206
0
    url = at_ptr;
207
0
  }
208
209
210
  /*
211
   * Copy the host part excluding any port part, no %-escapes allowed
212
   */
213
0
  if (!url_len || strchr(":/?#", *url)) {
214
    /* Missing host invalid for all URL schemes except file */
215
0
    if (!starts_with(norm.buf, "file:")) {
216
0
      if (out_info) {
217
0
        out_info->url = NULL;
218
0
        out_info->err = _("missing host and scheme is not 'file:'");
219
0
      }
220
0
      strbuf_release(&norm);
221
0
      return NULL;
222
0
    }
223
0
  } else {
224
0
    host_off = norm.len;
225
0
  }
226
0
  colon_ptr = slash_ptr - 1;
227
0
  while (colon_ptr > url && *colon_ptr != ':' && *colon_ptr != ']')
228
0
    colon_ptr--;
229
0
  if (*colon_ptr != ':') {
230
0
    colon_ptr = slash_ptr;
231
0
  } else if (!host_off && colon_ptr < slash_ptr && colon_ptr + 1 != slash_ptr) {
232
    /* file: URLs may not have a port number */
233
0
    if (out_info) {
234
0
      out_info->url = NULL;
235
0
      out_info->err = _("a 'file:' URL may not have a port number");
236
0
    }
237
0
    strbuf_release(&norm);
238
0
    return NULL;
239
0
  }
240
241
0
  if (allow_globs)
242
0
    spanned = strspn(url, URL_HOST_CHARS "*");
243
0
  else
244
0
    spanned = strspn(url, URL_HOST_CHARS);
245
246
0
  if (spanned < colon_ptr - url) {
247
    /* Host name has invalid characters */
248
0
    if (out_info) {
249
0
      out_info->url = NULL;
250
0
      out_info->err = _("invalid characters in host name");
251
0
    }
252
0
    strbuf_release(&norm);
253
0
    return NULL;
254
0
  }
255
0
  while (url < colon_ptr) {
256
0
    strbuf_addch(&norm, tolower(*url++));
257
0
    url_len--;
258
0
  }
259
260
261
  /*
262
   * Check the port part and copy if not the default (after removing any
263
   * leading 0s); no %-escapes allowed
264
   */
265
0
  if (colon_ptr < slash_ptr) {
266
    /* skip the ':' and leading 0s but not the last one if all 0s */
267
0
    url++;
268
0
    url += strspn(url, "0");
269
0
    if (url == slash_ptr && url[-1] == '0')
270
0
      url--;
271
0
    if (url == slash_ptr) {
272
      /* Skip ":" port with no number, it's same as default */
273
0
    } else if (slash_ptr - url == 2 &&
274
0
         starts_with(norm.buf, "http:") &&
275
0
         !strncmp(url, "80", 2)) {
276
      /* Skip http :80 as it's the default */
277
0
    } else if (slash_ptr - url == 3 &&
278
0
         starts_with(norm.buf, "https:") &&
279
0
         !strncmp(url, "443", 3)) {
280
      /* Skip https :443 as it's the default */
281
0
    } else {
282
      /*
283
       * Port number must be all digits with leading 0s removed
284
       * and since all the protocols we deal with have a 16-bit
285
       * port number it must also be in the range 1..65535
286
       * 0 is not allowed because that means "next available"
287
       * on just about every system and therefore cannot be used
288
       */
289
0
      unsigned long pnum = 0;
290
0
      spanned = strspn(url, URL_DIGIT);
291
0
      if (spanned < slash_ptr - url) {
292
        /* port number has invalid characters */
293
0
        if (out_info) {
294
0
          out_info->url = NULL;
295
0
          out_info->err = _("invalid port number");
296
0
        }
297
0
        strbuf_release(&norm);
298
0
        return NULL;
299
0
      }
300
0
      if (slash_ptr - url <= 5)
301
0
        pnum = strtoul(url, NULL, 10);
302
0
      if (pnum == 0 || pnum > 65535) {
303
        /* port number not in range 1..65535 */
304
0
        if (out_info) {
305
0
          out_info->url = NULL;
306
0
          out_info->err = _("invalid port number");
307
0
        }
308
0
        strbuf_release(&norm);
309
0
        return NULL;
310
0
      }
311
0
      strbuf_addch(&norm, ':');
312
0
      port_off = norm.len;
313
0
      strbuf_add(&norm, url, slash_ptr - url);
314
0
      port_len = slash_ptr - url;
315
0
    }
316
0
    url_len -= slash_ptr - colon_ptr;
317
0
    url = slash_ptr;
318
0
  }
319
0
  if (host_off)
320
0
    host_len = norm.len - host_off - (port_len ? port_len + 1 : 0);
321
322
323
  /*
324
   * Now copy the path resolving any . and .. segments being careful not
325
   * to corrupt the URL by unescaping any delimiters, but do add an
326
   * initial '/' if it's missing and do normalize any %-escape sequences.
327
   */
328
0
  path_off = norm.len;
329
0
  path_start = norm.buf + path_off;
330
0
  strbuf_addch(&norm, '/');
331
0
  if (*url == '/') {
332
0
    url++;
333
0
    url_len--;
334
0
  }
335
0
  for (;;) {
336
0
    const char *seg_start;
337
0
    size_t seg_start_off = norm.len;
338
0
    const char *next_slash = url + strcspn(url, "/?#");
339
0
    int skip_add_slash = 0;
340
341
    /*
342
     * RFC 3689 indicates that any . or .. segments should be
343
     * unescaped before being checked for.
344
     */
345
0
    if (!append_normalized_escapes(&norm, url, next_slash - url, "",
346
0
                 URL_RESERVED)) {
347
0
      if (out_info) {
348
0
        out_info->url = NULL;
349
0
        out_info->err = _("invalid %XX escape sequence");
350
0
      }
351
0
      strbuf_release(&norm);
352
0
      return NULL;
353
0
    }
354
355
0
    seg_start = norm.buf + seg_start_off;
356
0
    if (!strcmp(seg_start, ".")) {
357
      /* ignore a . segment; be careful not to remove initial '/' */
358
0
      if (seg_start == path_start + 1) {
359
0
        strbuf_setlen(&norm, norm.len - 1);
360
0
        skip_add_slash = 1;
361
0
      } else {
362
0
        strbuf_setlen(&norm, norm.len - 2);
363
0
      }
364
0
    } else if (!strcmp(seg_start, "..")) {
365
      /*
366
       * ignore a .. segment and remove the previous segment;
367
       * be careful not to remove initial '/' from path
368
       */
369
0
      const char *prev_slash = norm.buf + norm.len - 3;
370
0
      if (prev_slash == path_start) {
371
        /* invalid .. because no previous segment to remove */
372
0
        if (out_info) {
373
0
          out_info->url = NULL;
374
0
          out_info->err = _("invalid '..' path segment");
375
0
        }
376
0
        strbuf_release(&norm);
377
0
        return NULL;
378
0
      }
379
0
      while (*--prev_slash != '/') {}
380
0
      if (prev_slash == path_start) {
381
0
        strbuf_setlen(&norm, prev_slash - norm.buf + 1);
382
0
        skip_add_slash = 1;
383
0
      } else {
384
0
        strbuf_setlen(&norm, prev_slash - norm.buf);
385
0
      }
386
0
    }
387
0
    url_len -= next_slash - url;
388
0
    url = next_slash;
389
    /* if the next char is not '/' done with the path */
390
0
    if (*url != '/')
391
0
      break;
392
0
    url++;
393
0
    url_len--;
394
0
    if (!skip_add_slash)
395
0
      strbuf_addch(&norm, '/');
396
0
  }
397
0
  path_len = norm.len - path_off;
398
399
400
  /*
401
   * Now simply copy the rest, if any, only normalizing %-escapes and
402
   * being careful not to corrupt the URL by unescaping any delimiters.
403
   */
404
0
  if (*url) {
405
0
    if (!append_normalized_escapes(&norm, url, url_len, "", URL_RESERVED)) {
406
0
      if (out_info) {
407
0
        out_info->url = NULL;
408
0
        out_info->err = _("invalid %XX escape sequence");
409
0
      }
410
0
      strbuf_release(&norm);
411
0
      return NULL;
412
0
    }
413
0
  }
414
415
416
0
  result = strbuf_detach(&norm, &result_len);
417
0
  if (out_info) {
418
0
    out_info->url = result;
419
0
    out_info->err = NULL;
420
0
    out_info->url_len = result_len;
421
0
    out_info->scheme_len = scheme_len;
422
0
    out_info->user_off = user_off;
423
0
    out_info->user_len = user_len;
424
0
    out_info->passwd_off = passwd_off;
425
0
    out_info->passwd_len = passwd_len;
426
0
    out_info->host_off = host_off;
427
0
    out_info->host_len = host_len;
428
0
    out_info->port_off = port_off;
429
0
    out_info->port_len = port_len;
430
0
    out_info->path_off = path_off;
431
0
    out_info->path_len = path_len;
432
0
  }
433
0
  return result;
434
0
}
435
436
char *url_normalize(const char *url, struct url_info *out_info)
437
0
{
438
0
  return url_normalize_1(url, out_info, 0);
439
0
}
440
441
static size_t url_match_prefix(const char *url,
442
             const char *url_prefix,
443
             size_t url_prefix_len)
444
0
{
445
  /*
446
   * url_prefix matches url if url_prefix is an exact match for url or it
447
   * is a prefix of url and the match ends on a path component boundary.
448
   * Both url and url_prefix are considered to have an implicit '/' on the
449
   * end for matching purposes if they do not already.
450
   *
451
   * url must be NUL terminated.  url_prefix_len is the length of
452
   * url_prefix which need not be NUL terminated.
453
   *
454
   * The return value is the length of the match in characters (including
455
   * the final '/' even if it's implicit) or 0 for no match.
456
   *
457
   * Passing NULL as url and/or url_prefix will always cause 0 to be
458
   * returned without causing any faults.
459
   */
460
0
  if (!url || !url_prefix)
461
0
    return 0;
462
0
  if (!url_prefix_len || (url_prefix_len == 1 && *url_prefix == '/'))
463
0
    return (!*url || *url == '/') ? 1 : 0;
464
0
  if (url_prefix[url_prefix_len - 1] == '/')
465
0
    url_prefix_len--;
466
0
  if (strncmp(url, url_prefix, url_prefix_len))
467
0
    return 0;
468
0
  if ((strlen(url) == url_prefix_len) || (url[url_prefix_len] == '/'))
469
0
    return url_prefix_len + 1;
470
0
  return 0;
471
0
}
472
473
static int match_urls(const struct url_info *url,
474
          const struct url_info *url_prefix,
475
          struct urlmatch_item *match)
476
0
{
477
  /*
478
   * url_prefix matches url if the scheme, host and port of url_prefix
479
   * are the same as those of url and the path portion of url_prefix
480
   * is the same as the path portion of url or it is a prefix that
481
   * matches at a '/' boundary.  If url_prefix contains a user name,
482
   * that must also exactly match the user name in url.
483
   *
484
   * If the user, host, port and path match in this fashion, the returned
485
   * value is the length of the path match including any implicit
486
   * final '/'.  For example, "http://me@example.com/path" is matched by
487
   * "http://example.com" with a path length of 1.
488
   *
489
   * If there is a match and exactusermatch is not NULL, then
490
   * *exactusermatch will be set to true if both url and url_prefix
491
   * contained a user name or false if url_prefix did not have a
492
   * user name.  If there is no match *exactusermatch is left untouched.
493
   */
494
0
  char usermatched = 0;
495
0
  size_t pathmatchlen;
496
497
0
  if (!url || !url_prefix || !url->url || !url_prefix->url)
498
0
    return 0;
499
500
  /* check the scheme */
501
0
  if (url_prefix->scheme_len != url->scheme_len ||
502
0
      strncmp(url->url, url_prefix->url, url->scheme_len))
503
0
    return 0; /* schemes do not match */
504
505
  /* check the user name if url_prefix has one */
506
0
  if (url_prefix->user_off) {
507
0
    if (!url->user_off || url->user_len != url_prefix->user_len ||
508
0
        strncmp(url->url + url->user_off,
509
0
          url_prefix->url + url_prefix->user_off,
510
0
          url->user_len))
511
0
      return 0; /* url_prefix has a user but it's not a match */
512
0
    usermatched = 1;
513
0
  }
514
515
  /* check the host */
516
0
  if (!match_host(url, url_prefix))
517
0
    return 0; /* host names do not match */
518
519
  /* check the port */
520
0
  if (url_prefix->port_len != url->port_len ||
521
0
      strncmp(url->url + url->port_off,
522
0
        url_prefix->url + url_prefix->port_off, url->port_len))
523
0
    return 0; /* ports do not match */
524
525
  /* check the path */
526
0
  pathmatchlen = url_match_prefix(
527
0
    url->url + url->path_off,
528
0
    url_prefix->url + url_prefix->path_off,
529
0
    url_prefix->url_len - url_prefix->path_off);
530
0
  if (!pathmatchlen)
531
0
    return 0; /* paths do not match */
532
533
0
  if (match) {
534
0
    match->hostmatch_len = url_prefix->host_len;
535
0
    match->pathmatch_len = pathmatchlen;
536
0
    match->user_matched = usermatched;
537
0
  }
538
539
0
  return 1;
540
0
}
541
542
static int cmp_matches(const struct urlmatch_item *a,
543
           const struct urlmatch_item *b)
544
0
{
545
0
  if (a->hostmatch_len != b->hostmatch_len)
546
0
    return a->hostmatch_len < b->hostmatch_len ? -1 : 1;
547
0
  if (a->pathmatch_len != b->pathmatch_len)
548
0
    return a->pathmatch_len < b->pathmatch_len ? -1 : 1;
549
0
  if (a->user_matched != b->user_matched)
550
0
    return b->user_matched ? -1 : 1;
551
0
  return 0;
552
0
}
553
554
int urlmatch_config_entry(const char *var, const char *value,
555
        const struct config_context *ctx, void *cb)
556
0
{
557
0
  struct string_list_item *item;
558
0
  struct urlmatch_config *collect = cb;
559
0
  struct urlmatch_item matched = {0};
560
0
  struct url_info *url = &collect->url;
561
0
  const char *key, *dot;
562
0
  struct strbuf synthkey = STRBUF_INIT;
563
0
  int retval;
564
0
  int (*select_fn)(const struct urlmatch_item *a, const struct urlmatch_item *b) =
565
0
    collect->select_fn ? collect->select_fn : cmp_matches;
566
567
0
  if (!skip_prefix(var, collect->section, &key) || *(key++) != '.') {
568
0
    if (collect->cascade_fn)
569
0
      return collect->cascade_fn(var, value, ctx, cb);
570
0
    return 0; /* not interested */
571
0
  }
572
0
  dot = strrchr(key, '.');
573
0
  if (dot) {
574
0
    char *config_url, *norm_url;
575
0
    struct url_info norm_info;
576
577
0
    config_url = xmemdupz(key, dot - key);
578
0
    norm_url = url_normalize_1(config_url, &norm_info, 1);
579
0
    if (norm_url)
580
0
      retval = match_urls(url, &norm_info, &matched);
581
0
    else if (collect->fallback_match_fn)
582
0
      retval = collect->fallback_match_fn(config_url,
583
0
                  collect->cb);
584
0
    else
585
0
      retval = 0;
586
0
    free(config_url);
587
0
    free(norm_url);
588
0
    if (!retval)
589
0
      return 0;
590
0
    key = dot + 1;
591
0
  }
592
593
0
  if (collect->key && strcmp(key, collect->key))
594
0
    return 0;
595
596
0
  item = string_list_insert(&collect->vars, key);
597
0
  if (!item->util) {
598
0
    item->util = xcalloc(1, sizeof(matched));
599
0
  } else {
600
0
    if (select_fn(&matched, item->util) < 0)
601
       /*
602
        * Our match is worse than the old one,
603
        * we cannot use it.
604
        */
605
0
      return 0;
606
    /* Otherwise, replace it with this one. */
607
0
  }
608
609
0
  memcpy(item->util, &matched, sizeof(matched));
610
0
  strbuf_addstr(&synthkey, collect->section);
611
0
  strbuf_addch(&synthkey, '.');
612
0
  strbuf_addstr(&synthkey, key);
613
0
  retval = collect->collect_fn(synthkey.buf, value, ctx, collect->cb);
614
615
0
  strbuf_release(&synthkey);
616
0
  return retval;
617
0
}
618
619
void urlmatch_config_release(struct urlmatch_config *config)
620
0
{
621
0
  string_list_clear(&config->vars, 1);
622
0
}