Branch data Line data Source code
1 : : /* Retrieve ELF / DWARF / source files from the debuginfod.
2 : : Copyright (C) 2019-2021 Red Hat, Inc.
3 : : Copyright (C) 2021, 2022 Mark J. Wielaard <mark@klomp.org>
4 : : This file is part of elfutils.
5 : :
6 : : This file is free software; you can redistribute it and/or modify
7 : : it under the terms of either
8 : :
9 : : * the GNU Lesser General Public License as published by the Free
10 : : Software Foundation; either version 3 of the License, or (at
11 : : your option) any later version
12 : :
13 : : or
14 : :
15 : : * the GNU General Public License as published by the Free
16 : : Software Foundation; either version 2 of the License, or (at
17 : : your option) any later version
18 : :
19 : : or both in parallel, as here.
20 : :
21 : : elfutils is distributed in the hope that it will be useful, but
22 : : WITHOUT ANY WARRANTY; without even the implied warranty of
23 : : MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
24 : : General Public License for more details.
25 : :
26 : : You should have received copies of the GNU General Public License and
27 : : the GNU Lesser General Public License along with this program. If
28 : : not, see <http://www.gnu.org/licenses/>. */
29 : :
30 : :
31 : : /* cargo-cult from libdwfl linux-kernel-modules.c */
32 : : /* In case we have a bad fts we include this before config.h because it
33 : : can't handle _FILE_OFFSET_BITS.
34 : : Everything we need here is fine if its declarations just come first.
35 : : Also, include sys/types.h before fts. On some systems fts.h is not self
36 : : contained. */
37 : : #ifdef BAD_FTS
38 : : #include <sys/types.h>
39 : : #include <fts.h>
40 : : #endif
41 : :
42 : : #include "config.h"
43 : : #include "debuginfod.h"
44 : : #include "system.h"
45 : : #include <ctype.h>
46 : : #include <errno.h>
47 : : #include <stdlib.h>
48 : : #include <gelf.h>
49 : :
50 : : /* We might be building a bootstrap dummy library, which is really simple. */
51 : : #ifdef DUMMY_LIBDEBUGINFOD
52 : :
53 : : debuginfod_client *debuginfod_begin (void) { errno = ENOSYS; return NULL; }
54 : : int debuginfod_find_debuginfo (debuginfod_client *c, const unsigned char *b,
55 : : int s, char **p) { return -ENOSYS; }
56 : : int debuginfod_find_executable (debuginfod_client *c, const unsigned char *b,
57 : : int s, char **p) { return -ENOSYS; }
58 : : int debuginfod_find_source (debuginfod_client *c, const unsigned char *b,
59 : : int s, const char *f, char **p) { return -ENOSYS; }
60 : : int debuginfod_find_section (debuginfod_client *c, const unsigned char *b,
61 : : int s, const char *scn, char **p)
62 : : { return -ENOSYS; }
63 : : void debuginfod_set_progressfn(debuginfod_client *c,
64 : : debuginfod_progressfn_t fn) { }
65 : : void debuginfod_set_verbose_fd(debuginfod_client *c, int fd) { }
66 : : void debuginfod_set_user_data (debuginfod_client *c, void *d) { }
67 : : void* debuginfod_get_user_data (debuginfod_client *c) { return NULL; }
68 : : const char* debuginfod_get_url (debuginfod_client *c) { return NULL; }
69 : : int debuginfod_add_http_header (debuginfod_client *c,
70 : : const char *h) { return -ENOSYS; }
71 : : const char* debuginfod_get_headers (debuginfod_client *c) { return NULL; }
72 : :
73 : : void debuginfod_end (debuginfod_client *c) { }
74 : :
75 : : #else /* DUMMY_LIBDEBUGINFOD */
76 : :
77 : : #include <assert.h>
78 : : #include <dirent.h>
79 : : #include <stdio.h>
80 : : #include <errno.h>
81 : : #include <unistd.h>
82 : : #include <fcntl.h>
83 : : #include <fts.h>
84 : : #include <regex.h>
85 : : #include <string.h>
86 : : #include <stdbool.h>
87 : : #include <linux/limits.h>
88 : : #include <time.h>
89 : : #include <utime.h>
90 : : #include <sys/syscall.h>
91 : : #include <sys/types.h>
92 : : #include <sys/stat.h>
93 : : #include <sys/utsname.h>
94 : : #include <curl/curl.h>
95 : :
96 : : /* If fts.h is included before config.h, its indirect inclusions may not
97 : : give us the right LFS aliases of these functions, so map them manually. */
98 : : #ifdef BAD_FTS
99 : : #ifdef _FILE_OFFSET_BITS
100 : : #define open open64
101 : : #define fopen fopen64
102 : : #endif
103 : : #else
104 : : #include <sys/types.h>
105 : : #include <fts.h>
106 : : #endif
107 : :
108 : : /* Older curl.h don't define CURL_AT_LEAST_VERSION. */
109 : : #ifndef CURL_AT_LEAST_VERSION
110 : : #define CURL_VERSION_BITS(x,y,z) ((x)<<16|(y)<<8|(z))
111 : : #define CURL_AT_LEAST_VERSION(x,y,z) \
112 : : (LIBCURL_VERSION_NUM >= CURL_VERSION_BITS(x, y, z))
113 : : #endif
114 : :
115 : : #include <pthread.h>
116 : :
117 : : static pthread_once_t init_control = PTHREAD_ONCE_INIT;
118 : :
119 : : static void
120 : 374 : libcurl_init(void)
121 : : {
122 : 374 : curl_global_init(CURL_GLOBAL_DEFAULT);
123 : 374 : }
124 : :
125 : : struct debuginfod_client
126 : : {
127 : : /* Progress/interrupt callback function. */
128 : : debuginfod_progressfn_t progressfn;
129 : :
130 : : /* Stores user data. */
131 : : void* user_data;
132 : :
133 : : /* Stores current/last url, if any. */
134 : : char* url;
135 : :
136 : : /* Accumulates outgoing http header names/values. */
137 : : int user_agent_set_p; /* affects add_default_headers */
138 : : struct curl_slist *headers;
139 : :
140 : : /* Flags the default_progressfn having printed something that
141 : : debuginfod_end needs to terminate. */
142 : : int default_progressfn_printed_p;
143 : :
144 : : /* Indicates whether the last query was cancelled by progressfn. */
145 : : bool progressfn_cancel;
146 : :
147 : : /* File descriptor to output any verbose messages if > 0. */
148 : : int verbose_fd;
149 : :
150 : : /* Maintain a long-lived curl multi-handle, which keeps a
151 : : connection/tls/dns cache to recently seen servers. */
152 : : CURLM *server_mhandle;
153 : :
154 : : /* Can contain all other context, like cache_path, server_urls,
155 : : timeout or other info gotten from environment variables, the
156 : : handle data, etc. So those don't have to be reparsed and
157 : : recreated on each request. */
158 : : char * winning_headers;
159 : : };
160 : :
161 : : /* The cache_clean_interval_s file within the debuginfod cache specifies
162 : : how frequently the cache should be cleaned. The file's st_mtime represents
163 : : the time of last cleaning. */
164 : : static const char *cache_clean_interval_filename = "cache_clean_interval_s";
165 : : static const long cache_clean_default_interval_s = 86400; /* 1 day */
166 : :
167 : : /* The cache_miss_default_s within the debuginfod cache specifies how
168 : : frequently the empty file should be released.*/
169 : : static const long cache_miss_default_s = 600; /* 10 min */
170 : : static const char *cache_miss_filename = "cache_miss_s";
171 : :
172 : : /* The cache_max_unused_age_s file within the debuginfod cache specifies the
173 : : the maximum time since last access that a file will remain in the cache. */
174 : : static const char *cache_max_unused_age_filename = "max_unused_age_s";
175 : : static const long cache_default_max_unused_age_s = 604800; /* 1 week */
176 : :
177 : : /* Location of the cache of files downloaded from debuginfods.
178 : : The default parent directory is $HOME, or '/' if $HOME doesn't exist. */
179 : : static const char *cache_default_name = ".debuginfod_client_cache";
180 : : static const char *cache_xdg_name = "debuginfod_client";
181 : :
182 : : /* URLs of debuginfods, separated by url_delim. */
183 : : static const char *url_delim = " ";
184 : :
185 : : /* Timeout for debuginfods, in seconds (to get at least 100K). */
186 : : static const long default_timeout = 90;
187 : :
188 : : /* Default retry count for download error. */
189 : : static const long default_retry_limit = 2;
190 : :
191 : : /* Data associated with a particular CURL easy handle. Passed to
192 : : the write callback. */
193 : : struct handle_data
194 : : {
195 : : /* Cache file to be written to in case query is successful. */
196 : : int fd;
197 : :
198 : : /* URL queried by this handle. */
199 : : char url[PATH_MAX];
200 : :
201 : : /* error buffer for this handle. */
202 : : char errbuf[CURL_ERROR_SIZE];
203 : :
204 : : /* This handle. */
205 : : CURL *handle;
206 : :
207 : : /* The client object whom we're serving. */
208 : : debuginfod_client *client;
209 : :
210 : : /* Pointer to handle that should write to fd. Initially points to NULL,
211 : : then points to the first handle that begins writing the target file
212 : : to the cache. Used to ensure that a file is not downloaded from
213 : : multiple servers unnecessarily. */
214 : : CURL **target_handle;
215 : : /* Response http headers for this client handle, sent from the server */
216 : : char *response_data;
217 : : size_t response_data_size;
218 : : };
219 : :
220 : : static size_t
221 : 6831 : debuginfod_write_callback (char *ptr, size_t size, size_t nmemb, void *data)
222 : : {
223 : 6831 : ssize_t count = size * nmemb;
224 : :
225 : 6831 : struct handle_data *d = (struct handle_data*)data;
226 : :
227 : : /* Indicate to other handles that they can abort their transfer. */
228 [ + + ]: 6831 : if (*d->target_handle == NULL)
229 : : {
230 : 242 : *d->target_handle = d->handle;
231 : : /* update the client object */
232 : 242 : const char *url = NULL;
233 : 242 : CURLcode curl_res = curl_easy_getinfo (d->handle,
234 : : CURLINFO_EFFECTIVE_URL, &url);
235 [ + - + - ]: 242 : if (curl_res == CURLE_OK && url)
236 : : {
237 : 242 : free (d->client->url);
238 : 242 : d->client->url = strdup(url); /* ok if fails */
239 : : }
240 : : }
241 : :
242 : : /* If this handle isn't the target handle, abort transfer. */
243 [ + - ]: 6831 : if (*d->target_handle != d->handle)
244 : : return -1;
245 : :
246 : 6831 : return (size_t) write(d->fd, (void*)ptr, count);
247 : : }
248 : :
249 : : /* handle config file read and write */
250 : : static int
251 : 904 : debuginfod_config_cache(debuginfod_client *c, char *config_path,
252 : : long cache_config_default_s,
253 : : struct stat *st)
254 : : {
255 : 904 : int fd = open(config_path, O_CREAT | O_RDWR, DEFFILEMODE);
256 [ - + ]: 904 : if (fd < 0)
257 : 0 : return -errno;
258 : :
259 [ - + ]: 904 : if (fstat (fd, st) < 0)
260 : : {
261 : 0 : int ret = -errno;
262 : 0 : close (fd);
263 : 0 : return ret;
264 : : }
265 : :
266 [ + + ]: 904 : if (st->st_size == 0)
267 : : {
268 [ - + ]: 76 : if (dprintf(fd, "%ld", cache_config_default_s) < 0)
269 : : {
270 : 0 : int ret = -errno;
271 : 0 : close (fd);
272 : 0 : return ret;
273 : : }
274 : :
275 : 76 : close (fd);
276 : 76 : return cache_config_default_s;
277 : : }
278 : :
279 : 828 : long cache_config;
280 : : /* PR29696 - NB: When using fdopen, the file descriptor is NOT
281 : : dup'ed and will be closed when the stream is closed. Manually
282 : : closing fd after fclose is called will lead to a race condition
283 : : where, if reused, the file descriptor will compete for its
284 : : regular use before being incorrectly closed here. */
285 : 828 : FILE *config_file = fdopen(fd, "r");
286 [ + - ]: 828 : if (config_file)
287 : : {
288 [ - + ]: 828 : if (fscanf(config_file, "%ld", &cache_config) != 1)
289 : 0 : cache_config = cache_config_default_s;
290 [ - + - - ]: 828 : if (0 != fclose (config_file) && c->verbose_fd >= 0)
291 : 0 : dprintf (c->verbose_fd, "fclose failed with %s (err=%d)\n",
292 : 0 : strerror (errno), errno);
293 : : }
294 : : else
295 : : {
296 : 0 : cache_config = cache_config_default_s;
297 [ # # # # ]: 0 : if (0 != close (fd) && c->verbose_fd >= 0)
298 : 0 : dprintf (c->verbose_fd, "close failed with %s (err=%d)\n",
299 : 0 : strerror (errno), errno);
300 : : }
301 : 828 : return cache_config;
302 : : }
303 : :
304 : : /* Delete any files that have been unmodied for a period
305 : : longer than $DEBUGINFOD_CACHE_CLEAN_INTERVAL_S. */
306 : : static int
307 : 898 : debuginfod_clean_cache(debuginfod_client *c,
308 : : char *cache_path, char *interval_path,
309 : : char *max_unused_path)
310 : : {
311 : 898 : time_t clean_interval, max_unused_age;
312 : 898 : int rc = -1;
313 : 898 : struct stat st;
314 : :
315 : : /* Create new interval file. */
316 : 898 : rc = debuginfod_config_cache(c, interval_path,
317 : : cache_clean_default_interval_s, &st);
318 [ + - ]: 898 : if (rc < 0)
319 : : return rc;
320 : 898 : clean_interval = (time_t)rc;
321 : :
322 : : /* Check timestamp of interval file to see whether cleaning is necessary. */
323 [ + + ]: 898 : if (time(NULL) - st.st_mtime < clean_interval)
324 : : /* Interval has not passed, skip cleaning. */
325 : : return 0;
326 : :
327 : : /* Update timestamp representing when the cache was last cleaned.
328 : : Do it at the start to reduce the number of threads trying to do a
329 : : cleanup simultaneously. */
330 : 2 : utime (interval_path, NULL);
331 : :
332 : : /* Read max unused age value from config file. */
333 : 2 : rc = debuginfod_config_cache(c, max_unused_path,
334 : : cache_default_max_unused_age_s, &st);
335 [ + - ]: 2 : if (rc < 0)
336 : : return rc;
337 : 2 : max_unused_age = (time_t)rc;
338 : :
339 : 2 : char * const dirs[] = { cache_path, NULL, };
340 : :
341 : 2 : FTS *fts = fts_open(dirs, 0, NULL);
342 [ - + ]: 2 : if (fts == NULL)
343 : 0 : return -errno;
344 : :
345 : 2 : regex_t re;
346 : 2 : const char * pattern = ".*/[a-f0-9]+(/debuginfo|/executable|/source.*|)$"; /* include dirs */
347 [ + - ]: 2 : if (regcomp (&re, pattern, REG_EXTENDED | REG_NOSUB) != 0)
348 : : return -ENOMEM;
349 : :
350 : 2 : FTSENT *f;
351 : 2 : long files = 0;
352 : 2 : time_t now = time(NULL);
353 [ + + ]: 24 : while ((f = fts_read(fts)) != NULL)
354 : : {
355 : : /* ignore any files that do not match the pattern. */
356 [ + + ]: 20 : if (regexec (&re, f->fts_path, 0, NULL, 0) != 0)
357 : 16 : continue;
358 : :
359 : 4 : files++;
360 [ - + ]: 4 : if (c->progressfn) /* inform/check progress callback */
361 [ # # ]: 0 : if ((c->progressfn) (c, files, 0))
362 : : break;
363 : :
364 [ + - + ]: 4 : switch (f->fts_info)
365 : : {
366 : 0 : case FTS_F:
367 : : /* delete file if max_unused_age has been met or exceeded w.r.t. atime. */
368 [ # # ]: 0 : if (now - f->fts_statp->st_atime >= max_unused_age)
369 : 0 : (void) unlink (f->fts_path);
370 : : break;
371 : :
372 : 2 : case FTS_DP:
373 : : /* Remove if old & empty. Weaken race against concurrent creation by
374 : : checking mtime. */
375 [ - + ]: 2 : if (now - f->fts_statp->st_mtime >= max_unused_age)
376 : 2 : (void) rmdir (f->fts_path);
377 : : break;
378 : :
379 : : default:
380 : 22 : ;
381 : : }
382 : : }
383 : 2 : fts_close (fts);
384 : 2 : regfree (&re);
385 : :
386 : 2 : return 0;
387 : : }
388 : :
389 : :
390 : : #define MAX_BUILD_ID_BYTES 64
391 : :
392 : :
393 : : static void
394 : 898 : add_default_headers(debuginfod_client *client)
395 : : {
396 [ + + ]: 898 : if (client->user_agent_set_p)
397 : 548 : return;
398 : :
399 : : /* Compute a User-Agent: string to send. The more accurately this
400 : : describes this host, the likelier that the debuginfod servers
401 : : might be able to locate debuginfo for us. */
402 : :
403 : 350 : char* utspart = NULL;
404 : 350 : struct utsname uts;
405 : 350 : int rc = 0;
406 : 350 : rc = uname (&uts);
407 [ + - ]: 350 : if (rc == 0)
408 : 350 : rc = asprintf(& utspart, "%s/%s", uts.sysname, uts.machine);
409 [ - + ]: 350 : if (rc < 0)
410 : 0 : utspart = NULL;
411 : :
412 : 350 : FILE *f = fopen ("/etc/os-release", "r");
413 [ - + ]: 350 : if (f == NULL)
414 : 0 : f = fopen ("/usr/lib/os-release", "r");
415 : 350 : char *id = NULL;
416 : 350 : char *version = NULL;
417 [ + - ]: 350 : if (f != NULL)
418 : : {
419 [ + + ]: 2450 : while (id == NULL || version == NULL)
420 : : {
421 : 2100 : char buf[128];
422 : 2100 : char *s = &buf[0];
423 [ + - ]: 2100 : if (fgets (s, sizeof(buf), f) == NULL)
424 : : break;
425 : :
426 : 2100 : int len = strlen (s);
427 [ - + ]: 2100 : if (len < 3)
428 : 0 : continue;
429 [ + - ]: 2100 : if (s[len - 1] == '\n')
430 : : {
431 : 2100 : s[len - 1] = '\0';
432 : 2100 : len--;
433 : : }
434 : :
435 : 2100 : char *v = strchr (s, '=');
436 [ + - - + ]: 2100 : if (v == NULL || strlen (v) < 2)
437 : 0 : continue;
438 : :
439 : : /* Split var and value. */
440 : 2100 : *v = '\0';
441 : 2100 : v++;
442 : :
443 : : /* Remove optional quotes around value string. */
444 [ + + ]: 2100 : if (*v == '"' || *v == '\'')
445 : : {
446 : 1400 : v++;
447 : 1400 : s[len - 1] = '\0';
448 : : }
449 [ + + ]: 2100 : if (strcmp (s, "ID") == 0)
450 : 350 : id = strdup (v);
451 [ + + ]: 2100 : if (strcmp (s, "VERSION_ID") == 0)
452 : 350 : version = strdup (v);
453 : : }
454 : 350 : fclose (f);
455 : : }
456 : :
457 : 350 : char *ua = NULL;
458 [ + - + - ]: 700 : rc = asprintf(& ua, "User-Agent: %s/%s,%s,%s/%s",
459 : : PACKAGE_NAME, PACKAGE_VERSION,
460 [ - + ]: 350 : utspart ?: "",
461 : : id ?: "",
462 : : version ?: "");
463 [ - + ]: 350 : if (rc < 0)
464 : 0 : ua = NULL;
465 : :
466 [ + - ]: 350 : if (ua)
467 : 350 : (void) debuginfod_add_http_header (client, ua);
468 : :
469 : 350 : free (ua);
470 : 350 : free (id);
471 : 350 : free (version);
472 : 350 : free (utspart);
473 : : }
474 : :
475 : : /* Add HTTP headers found in the given file, one per line. Blank lines or invalid
476 : : * headers are ignored.
477 : : */
478 : : static void
479 : 0 : add_headers_from_file(debuginfod_client *client, const char* filename)
480 : : {
481 : 0 : int vds = client->verbose_fd;
482 : 0 : FILE *f = fopen (filename, "r");
483 [ # # ]: 0 : if (f == NULL)
484 : : {
485 [ # # ]: 0 : if (vds >= 0)
486 : 0 : dprintf(vds, "header file %s: %s\n", filename, strerror(errno));
487 : 0 : return;
488 : : }
489 : :
490 : 0 : while (1)
491 : 0 : {
492 : 0 : char buf[8192];
493 : 0 : char *s = &buf[0];
494 [ # # ]: 0 : if (feof(f))
495 : : break;
496 [ # # ]: 0 : if (fgets (s, sizeof(buf), f) == NULL)
497 : : break;
498 [ # # ]: 0 : for (char *c = s; *c != '\0'; ++c)
499 [ # # ]: 0 : if (!isspace(*c))
500 : 0 : goto nonempty;
501 : 0 : continue;
502 : 0 : nonempty:
503 : 0 : ;
504 : 0 : size_t last = strlen(s)-1;
505 [ # # ]: 0 : if (s[last] == '\n')
506 : 0 : s[last] = '\0';
507 : 0 : int rc = debuginfod_add_http_header(client, s);
508 [ # # ]: 0 : if (rc < 0 && vds >= 0)
509 : 0 : dprintf(vds, "skipping bad header: %s\n", strerror(-rc));
510 : : }
511 : 0 : fclose (f);
512 : : }
513 : :
514 : :
515 : : #define xalloc_str(p, fmt, args...) \
516 : : do \
517 : : { \
518 : : if (asprintf (&p, fmt, args) < 0) \
519 : : { \
520 : : p = NULL; \
521 : : rc = -ENOMEM; \
522 : : goto out; \
523 : : } \
524 : : } while (0)
525 : :
526 : :
527 : : /* Offer a basic form of progress tracing */
528 : : static int
529 : 6 : default_progressfn (debuginfod_client *c, long a, long b)
530 : : {
531 : 6 : const char* url = debuginfod_get_url (c);
532 : 6 : int len = 0;
533 : :
534 : : /* We prefer to print the host part of the URL to keep the
535 : : message short. */
536 : 6 : if (url != NULL)
537 : : {
538 : 2 : const char* buildid = strstr(url, "buildid/");
539 [ + - ]: 2 : if (buildid != NULL)
540 : 2 : len = (buildid - url);
541 : : else
542 : 0 : len = strlen(url);
543 : : }
544 : :
545 [ + + ]: 6 : if (b == 0 || url==NULL) /* early stage */
546 : 10 : dprintf(STDERR_FILENO,
547 : 4 : "\rDownloading %c", "-/|\\"[a % 4]);
548 [ - + ]: 2 : else if (b < 0) /* download in progress but unknown total length */
549 : 0 : dprintf(STDERR_FILENO,
550 : : "\rDownloading from %.*s %ld",
551 : : len, url, a);
552 : : else /* download in progress, and known total length */
553 : 2 : dprintf(STDERR_FILENO,
554 : : "\rDownloading from %.*s %ld/%ld",
555 : : len, url, a, b);
556 : 6 : c->default_progressfn_printed_p = 1;
557 : :
558 : 6 : return 0;
559 : : }
560 : :
561 : : /* This is a callback function that receives http response headers in buffer for use
562 : : * in this program. https://curl.se/libcurl/c/CURLOPT_HEADERFUNCTION.html is the
563 : : * online documentation.
564 : : */
565 : : static size_t
566 : 2581 : header_callback (char * buffer, size_t size, size_t numitems, void * userdata)
567 : : {
568 : 2581 : struct handle_data *data = (struct handle_data *) userdata;
569 [ - + ]: 2581 : if (size != 1)
570 : : return 0;
571 [ + - + + ]: 2581 : if (data->client && data->client->verbose_fd >= 0)
572 : 212 : dprintf (data->client->verbose_fd, "header %.*s", (int)numitems, buffer);
573 : : // Some basic checks to ensure the headers received are of the expected format
574 [ + + ]: 2581 : if (strncasecmp(buffer, "X-DEBUGINFOD", 11)
575 [ + + ]: 648 : || buffer[numitems-2] != '\r'
576 [ + - ]: 646 : || buffer[numitems-1] != '\n'
577 [ - + ]: 646 : || (buffer == strstr(buffer, ":")) ){
578 : : return numitems;
579 : : }
580 : : /* Temporary buffer for realloc */
581 : 646 : char *temp = NULL;
582 [ + + ]: 646 : if (data->response_data == NULL)
583 : : {
584 : 240 : temp = malloc(numitems);
585 [ - + ]: 240 : if (temp == NULL)
586 : : return 0;
587 : : }
588 : : else
589 : : {
590 : 406 : temp = realloc(data->response_data, data->response_data_size + numitems);
591 [ - + ]: 406 : if (temp == NULL)
592 : : return 0;
593 : : }
594 : :
595 : 646 : memcpy(temp + data->response_data_size, buffer, numitems-1);
596 : 646 : data->response_data = temp;
597 : 646 : data->response_data_size += numitems-1;
598 : 646 : data->response_data[data->response_data_size-1] = '\n';
599 : 646 : data->response_data[data->response_data_size] = '\0';
600 : 646 : return numitems;
601 : : }
602 : :
603 : : /* Copy SRC to DEST, s,/,#,g */
604 : :
605 : : static void
606 : 84 : path_escape (const char *src, char *dest)
607 : : {
608 : 84 : unsigned q = 0;
609 : :
610 [ + - ]: 2990 : for (unsigned fi=0; q < PATH_MAX-2; fi++) /* -2, escape is 2 chars. */
611 [ + + + + ]: 2990 : switch (src[fi])
612 : : {
613 : 84 : case '\0':
614 : 84 : dest[q] = '\0';
615 : 84 : return;
616 : 392 : case '/': /* escape / to prevent dir escape */
617 : 392 : dest[q++]='#';
618 : 392 : dest[q++]='#';
619 : 392 : break;
620 : 2 : case '#': /* escape # to prevent /# vs #/ collisions */
621 : 2 : dest[q++]='#';
622 : 2 : dest[q++]='_';
623 : 2 : break;
624 : 2512 : default:
625 : 2512 : dest[q++]=src[fi];
626 : : }
627 : :
628 : 0 : dest[q] = '\0';
629 : : }
630 : :
631 : : /* Attempt to update the atime */
632 : : static void
633 : 78 : update_atime (int fd)
634 : : {
635 : 78 : struct timespec tvs[2];
636 : :
637 : 78 : tvs[0].tv_sec = tvs[1].tv_sec = 0;
638 : 78 : tvs[0].tv_nsec = UTIME_NOW;
639 : 78 : tvs[1].tv_nsec = UTIME_OMIT;
640 : :
641 : 78 : (void) futimens (fd, tvs); /* best effort */
642 : 78 : }
643 : :
644 : : /* Attempt to read an ELF/DWARF section with name SECTION from FD and write
645 : : it to a separate file in the debuginfod cache. If successful the absolute
646 : : path of the separate file containing SECTION will be stored in USR_PATH.
647 : : FD_PATH is the absolute path for FD.
648 : :
649 : : If the section cannot be extracted, then return a negative error code.
650 : : -ENOENT indicates that the parent file was able to be read but the
651 : : section name was not found. -EEXIST indicates that the section was
652 : : found but had type SHT_NOBITS. */
653 : :
654 : : static int
655 : 12 : extract_section (int fd, const char *section, char *fd_path, char **usr_path)
656 : : {
657 : 12 : elf_version (EV_CURRENT);
658 : :
659 : 12 : Elf *elf = elf_begin (fd, ELF_C_READ_MMAP_PRIVATE, NULL);
660 [ + - ]: 12 : if (elf == NULL)
661 : : return -EIO;
662 : :
663 : 12 : size_t shstrndx;
664 : 12 : int rc = elf_getshdrstrndx (elf, &shstrndx);
665 [ - + ]: 12 : if (rc < 0)
666 : : {
667 : 0 : rc = -EIO;
668 : 0 : goto out;
669 : : }
670 : :
671 : 12 : int sec_fd = -1;
672 : 12 : char *escaped_name = NULL;
673 : 12 : char *sec_path_tmp = NULL;
674 : 12 : Elf_Scn *scn = NULL;
675 : :
676 : : /* Try to find the target section and copy the contents into a
677 : : separate file. */
678 : 432 : while (true)
679 : 210 : {
680 : 222 : scn = elf_nextscn (elf, scn);
681 [ - + ]: 222 : if (scn == NULL)
682 : : {
683 : 0 : rc = -ENOENT;
684 : 4 : goto out;
685 : : }
686 : 222 : GElf_Shdr shdr_storage;
687 : 222 : GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_storage);
688 [ - + ]: 222 : if (shdr == NULL)
689 : : {
690 : 0 : rc = -EIO;
691 : 0 : goto out;
692 : : }
693 : :
694 : 222 : const char *scn_name = elf_strptr (elf, shstrndx, shdr->sh_name);
695 [ - + ]: 222 : if (scn_name == NULL)
696 : : {
697 : 0 : rc = -EIO;
698 : 0 : goto out;
699 : : }
700 [ + + ]: 222 : if (strcmp (scn_name, section) == 0)
701 : : {
702 : : /* We found the desired section. */
703 [ + + ]: 12 : if (shdr->sh_type == SHT_NOBITS)
704 : : {
705 : 4 : rc = -EEXIST;
706 : 4 : goto out;
707 : : }
708 : :
709 : 8 : Elf_Data *data = NULL;
710 : 8 : data = elf_rawdata (scn, NULL);
711 [ - + ]: 8 : if (data == NULL)
712 : : {
713 : 0 : rc = -EIO;
714 : 0 : goto out;
715 : : }
716 : :
717 [ - + ]: 8 : if (data->d_buf == NULL)
718 : : {
719 : 0 : rc = -EIO;
720 : 0 : goto out;
721 : : }
722 : :
723 : : /* Compute the absolute filename we'll write the section to.
724 : : Replace the last component of FD_PATH with the path-escaped
725 : : section filename. */
726 : 8 : int i = strlen (fd_path);
727 [ + - ]: 92 : while (i >= 0)
728 : : {
729 [ + + ]: 92 : if (fd_path[i] == '/')
730 : : {
731 : 8 : fd_path[i] = '\0';
732 : 8 : break;
733 : : }
734 : 84 : --i;
735 : : }
736 : :
737 : 8 : escaped_name = malloc (strlen (section) * 2 + 1);
738 [ - + ]: 8 : if (escaped_name == NULL)
739 : : {
740 : 0 : rc = -ENOMEM;
741 : 0 : goto out;
742 : : }
743 : 8 : path_escape (section, escaped_name);
744 : :
745 : 8 : rc = asprintf (&sec_path_tmp, "%s/section-%s.XXXXXX",
746 : : fd_path, escaped_name);
747 [ - + ]: 8 : if (rc == -1)
748 : : {
749 : 0 : rc = -ENOMEM;
750 : 0 : goto out1;
751 : : }
752 : :
753 : 8 : sec_fd = mkstemp (sec_path_tmp);
754 [ - + ]: 8 : if (sec_fd < 0)
755 : : {
756 : 0 : rc = -EIO;
757 : 8 : goto out2;
758 : : }
759 : :
760 : 8 : ssize_t res = write_retry (sec_fd, data->d_buf, data->d_size);
761 [ + - - + ]: 8 : if (res < 0 || (size_t) res != data->d_size)
762 : : {
763 : 0 : rc = -EIO;
764 : 0 : goto out3;
765 : : }
766 : :
767 : : /* Success. Rename tmp file and update USR_PATH. */
768 : 8 : char *sec_path;
769 [ - + ]: 8 : if (asprintf (&sec_path, "%s/section-%s", fd_path, section) == -1)
770 : : {
771 : 0 : rc = -ENOMEM;
772 : 0 : goto out3;
773 : : }
774 : :
775 : 8 : rc = rename (sec_path_tmp, sec_path);
776 [ - + ]: 8 : if (rc < 0)
777 : : {
778 : 0 : free (sec_path);
779 : 0 : rc = -EIO;
780 : 0 : goto out3;
781 : : }
782 : :
783 [ + - ]: 8 : if (usr_path != NULL)
784 : 8 : *usr_path = sec_path;
785 : : else
786 : 0 : free (sec_path);
787 : 8 : update_atime(fd);
788 : 8 : rc = sec_fd;
789 : 8 : goto out2;
790 : : }
791 : : }
792 : :
793 : 0 : out3:
794 : 0 : close (sec_fd);
795 : 0 : unlink (sec_path_tmp);
796 : :
797 : 8 : out2:
798 : 8 : free (sec_path_tmp);
799 : :
800 : 8 : out1:
801 : 8 : free (escaped_name);
802 : :
803 : 12 : out:
804 : 12 : elf_end (elf);
805 : 12 : return rc;
806 : : }
807 : :
808 : : /* Search TARGET_CACHE_DIR for a debuginfo or executable file containing
809 : : an ELF/DWARF section with name SCN_NAME. If found, extract the section
810 : : to a separate file in TARGET_CACHE_DIR and return a file descriptor
811 : : for the section file. The path for this file will be stored in USR_PATH.
812 : : Return a negative errno if unsuccessful. -ENOENT indicates that SCN_NAME
813 : : is confirmed to not exist. */
814 : :
815 : : static int
816 : 16 : cache_find_section (const char *scn_name, const char *target_cache_dir,
817 : : char **usr_path)
818 : : {
819 : 16 : int debug_fd;
820 : 16 : int rc = -EEXIST;
821 : 16 : char parent_path[PATH_MAX];
822 : :
823 : : /* Check the debuginfo first. */
824 : 16 : snprintf (parent_path, PATH_MAX, "%s/debuginfo", target_cache_dir);
825 : 16 : debug_fd = open (parent_path, O_RDONLY);
826 [ + + ]: 16 : if (debug_fd >= 0)
827 : : {
828 : 8 : rc = extract_section (debug_fd, scn_name, parent_path, usr_path);
829 : 8 : close (debug_fd);
830 : : }
831 : :
832 : : /* If the debuginfo file couldn't be found or the section type was
833 : : SHT_NOBITS, check the executable. */
834 [ + + ]: 8 : if (rc == -EEXIST)
835 : : {
836 : 12 : snprintf (parent_path, PATH_MAX, "%s/executable", target_cache_dir);
837 : 12 : int exec_fd = open (parent_path, O_RDONLY);
838 : :
839 [ + + ]: 12 : if (exec_fd >= 0)
840 : : {
841 : 4 : rc = extract_section (exec_fd, scn_name, parent_path, usr_path);
842 : 4 : close (exec_fd);
843 : :
844 : : /* Don't return -ENOENT if the debuginfo wasn't opened. The
845 : : section may exist in the debuginfo but not the executable. */
846 [ - + ]: 4 : if (debug_fd < 0 && rc == -ENOENT)
847 : 0 : rc = -EREMOTE;
848 : : }
849 : : }
850 : :
851 : 16 : return rc;
852 : : }
853 : :
854 : : /* Query each of the server URLs found in $DEBUGINFOD_URLS for the file
855 : : with the specified build-id and type (debuginfo, executable, source or
856 : : section). If type is source, then type_arg should be a filename. If
857 : : type is section, then type_arg should be the name of an ELF/DWARF
858 : : section. Otherwise type_arg may be NULL. Return a file descriptor
859 : : for the target if successful, otherwise return an error code.
860 : : */
861 : : static int
862 : 968 : debuginfod_query_server (debuginfod_client *c,
863 : : const unsigned char *build_id,
864 : : int build_id_len,
865 : : const char *type,
866 : : const char *type_arg,
867 : : char **path)
868 : : {
869 : 968 : char *server_urls;
870 : 968 : char *urls_envvar;
871 : 968 : const char *section = NULL;
872 : 968 : const char *filename = NULL;
873 : 968 : char *cache_path = NULL;
874 : 968 : char *maxage_path = NULL;
875 : 968 : char *interval_path = NULL;
876 : 968 : char *cache_miss_path = NULL;
877 : 968 : char *target_cache_dir = NULL;
878 : 968 : char *target_cache_path = NULL;
879 : 968 : char *target_cache_tmppath = NULL;
880 : 968 : char suffix[PATH_MAX + 1]; /* +1 for zero terminator. */
881 : 968 : char build_id_bytes[MAX_BUILD_ID_BYTES * 2 + 1];
882 : 968 : int vfd = c->verbose_fd;
883 : 968 : int rc;
884 : :
885 : 968 : c->progressfn_cancel = false;
886 : :
887 [ + + ]: 968 : if (strcmp (type, "source") == 0)
888 : : filename = type_arg;
889 [ + + ]: 904 : else if (strcmp (type, "section") == 0)
890 : : {
891 : 16 : section = type_arg;
892 [ + - ]: 16 : if (section == NULL)
893 : : return -EINVAL;
894 : : }
895 : :
896 [ + + ]: 968 : if (vfd >= 0)
897 : : {
898 : 36 : dprintf (vfd, "debuginfod_find_%s ", type);
899 [ + + ]: 36 : if (build_id_len == 0) /* expect clean hexadecimal */
900 : 26 : dprintf (vfd, "%s", (const char *) build_id);
901 : : else
902 [ + + ]: 210 : for (int i = 0; i < build_id_len; i++)
903 : 200 : dprintf (vfd, "%02x", build_id[i]);
904 [ + + ]: 36 : if (filename != NULL)
905 : 2 : dprintf (vfd, " %s\n", filename);
906 : 36 : dprintf (vfd, "\n");
907 : : }
908 : :
909 : : /* Is there any server we can query? If not, don't do any work,
910 : : just return with ENOSYS. Don't even access the cache. */
911 : 968 : urls_envvar = getenv(DEBUGINFOD_URLS_ENV_VAR);
912 [ + + ]: 968 : if (vfd >= 0)
913 [ - + ]: 36 : dprintf (vfd, "server urls \"%s\"\n",
914 : : urls_envvar != NULL ? urls_envvar : "");
915 [ + + + + ]: 968 : if (urls_envvar == NULL || urls_envvar[0] == '\0')
916 : : {
917 : 70 : rc = -ENOSYS;
918 : 70 : goto out;
919 : : }
920 : :
921 : : /* Clear the obsolete data from a previous _find operation. */
922 : 898 : free (c->url);
923 : 898 : c->url = NULL;
924 : 898 : free (c->winning_headers);
925 : 898 : c->winning_headers = NULL;
926 : :
927 : : /* PR 27982: Add max size if DEBUGINFOD_MAXSIZE is set. */
928 : 898 : long maxsize = 0;
929 : 898 : const char *maxsize_envvar;
930 : 898 : maxsize_envvar = getenv(DEBUGINFOD_MAXSIZE_ENV_VAR);
931 [ + + ]: 898 : if (maxsize_envvar != NULL)
932 : 2 : maxsize = atol (maxsize_envvar);
933 : :
934 : : /* PR 27982: Add max time if DEBUGINFOD_MAXTIME is set. */
935 : 898 : long maxtime = 0;
936 : 898 : const char *maxtime_envvar;
937 : 898 : maxtime_envvar = getenv(DEBUGINFOD_MAXTIME_ENV_VAR);
938 [ + + ]: 898 : if (maxtime_envvar != NULL)
939 : 2 : maxtime = atol (maxtime_envvar);
940 [ + + ]: 898 : if (maxtime && vfd >= 0)
941 : 2 : dprintf(vfd, "using max time %lds\n", maxtime);
942 : :
943 : 898 : const char *headers_file_envvar;
944 : 898 : headers_file_envvar = getenv(DEBUGINFOD_HEADERS_FILE_ENV_VAR);
945 [ - + ]: 898 : if (headers_file_envvar != NULL)
946 : 0 : add_headers_from_file(c, headers_file_envvar);
947 : :
948 : : /* Maxsize is valid*/
949 [ + + ]: 898 : if (maxsize > 0)
950 : : {
951 [ + - ]: 2 : if (vfd)
952 : 2 : dprintf (vfd, "using max size %ldB\n", maxsize);
953 : 2 : char *size_header = NULL;
954 : 2 : rc = asprintf (&size_header, "X-DEBUGINFOD-MAXSIZE: %ld", maxsize);
955 [ - + ]: 2 : if (rc < 0)
956 : : {
957 : 0 : rc = -ENOMEM;
958 : 0 : goto out;
959 : : }
960 : 2 : rc = debuginfod_add_http_header(c, size_header);
961 : 2 : free(size_header);
962 [ - + ]: 2 : if (rc < 0)
963 : 0 : goto out;
964 : : }
965 : 898 : add_default_headers(c);
966 : :
967 : : /* Copy lowercase hex representation of build_id into buf. */
968 [ + + ]: 898 : if (vfd >= 0)
969 : 36 : dprintf (vfd, "checking build-id\n");
970 [ + - + + ]: 898 : if ((build_id_len >= MAX_BUILD_ID_BYTES) ||
971 : 886 : (build_id_len == 0 &&
972 [ - + ]: 886 : strlen ((const char *) build_id) > MAX_BUILD_ID_BYTES*2))
973 : : {
974 : 0 : rc = -EINVAL;
975 : 0 : goto out;
976 : : }
977 : :
978 [ + + ]: 898 : if (build_id_len == 0) /* expect clean hexadecimal */
979 : 886 : strcpy (build_id_bytes, (const char *) build_id);
980 : : else
981 [ + + ]: 252 : for (int i = 0; i < build_id_len; i++)
982 : 240 : sprintf(build_id_bytes + (i * 2), "%02x", build_id[i]);
983 : :
984 [ + + ]: 898 : if (filename != NULL)
985 : : {
986 [ + + ]: 60 : if (vfd >= 0)
987 : 2 : dprintf (vfd, "checking filename\n");
988 [ - + ]: 60 : if (filename[0] != '/') // must start with /
989 : : {
990 : 0 : rc = -EINVAL;
991 : 0 : goto out;
992 : : }
993 : :
994 : 60 : path_escape (filename, suffix);
995 : : /* If the DWARF filenames are super long, this could exceed
996 : : PATH_MAX and truncate/collide. Oh well, that'll teach
997 : : them! */
998 : : }
999 [ + + ]: 838 : else if (section != NULL)
1000 : 16 : path_escape (section, suffix);
1001 : : else
1002 : 822 : suffix[0] = '\0';
1003 : :
1004 [ + + + + ]: 898 : if (suffix[0] != '\0' && vfd >= 0)
1005 : 18 : dprintf (vfd, "suffix %s\n", suffix);
1006 : :
1007 : : /* set paths needed to perform the query
1008 : :
1009 : : example format
1010 : : cache_path: $HOME/.cache
1011 : : target_cache_dir: $HOME/.cache/0123abcd
1012 : : target_cache_path: $HOME/.cache/0123abcd/debuginfo
1013 : : target_cache_path: $HOME/.cache/0123abcd/source#PATH#TO#SOURCE ?
1014 : :
1015 : : $XDG_CACHE_HOME takes priority over $HOME/.cache.
1016 : : $DEBUGINFOD_CACHE_PATH takes priority over $HOME/.cache and $XDG_CACHE_HOME.
1017 : : */
1018 : :
1019 : : /* Determine location of the cache. The path specified by the debuginfod
1020 : : cache environment variable takes priority. */
1021 : 898 : char *cache_var = getenv(DEBUGINFOD_CACHE_PATH_ENV_VAR);
1022 [ + - + + ]: 898 : if (cache_var != NULL && strlen (cache_var) > 0)
1023 [ - + ]: 890 : xalloc_str (cache_path, "%s", cache_var);
1024 : : else
1025 : : {
1026 : : /* If a cache already exists in $HOME ('/' if $HOME isn't set), then use
1027 : : that. Otherwise use the XDG cache directory naming format. */
1028 [ - + - + ]: 16 : xalloc_str (cache_path, "%s/%s", getenv ("HOME") ?: "/", cache_default_name);
1029 : :
1030 : 8 : struct stat st;
1031 [ + + ]: 8 : if (stat (cache_path, &st) < 0)
1032 : : {
1033 : 6 : char cachedir[PATH_MAX];
1034 : 6 : char *xdg = getenv ("XDG_CACHE_HOME");
1035 : :
1036 [ + - + + ]: 6 : if (xdg != NULL && strlen (xdg) > 0)
1037 : 2 : snprintf (cachedir, PATH_MAX, "%s", xdg);
1038 : : else
1039 [ - + ]: 4 : snprintf (cachedir, PATH_MAX, "%s/.cache", getenv ("HOME") ?: "/");
1040 : :
1041 : : /* Create XDG cache directory if it doesn't exist. */
1042 [ + + ]: 6 : if (stat (cachedir, &st) == 0)
1043 : : {
1044 [ - + ]: 2 : if (! S_ISDIR (st.st_mode))
1045 : : {
1046 : 0 : rc = -EEXIST;
1047 : 0 : goto out;
1048 : : }
1049 : : }
1050 : : else
1051 : : {
1052 : 4 : rc = mkdir (cachedir, 0700);
1053 : :
1054 : : /* Also check for EEXIST and S_ISDIR in case another client just
1055 : : happened to create the cache. */
1056 [ - + ]: 4 : if (rc < 0
1057 [ # # ]: 0 : && (errno != EEXIST
1058 [ # # ]: 0 : || stat (cachedir, &st) != 0
1059 [ # # ]: 0 : || ! S_ISDIR (st.st_mode)))
1060 : : {
1061 : 0 : rc = -errno;
1062 : 0 : goto out;
1063 : : }
1064 : : }
1065 : :
1066 : 6 : free (cache_path);
1067 [ - + ]: 6 : xalloc_str (cache_path, "%s/%s", cachedir, cache_xdg_name);
1068 : : }
1069 : : }
1070 : :
1071 [ - + ]: 898 : xalloc_str (target_cache_dir, "%s/%s", cache_path, build_id_bytes);
1072 [ + + ]: 898 : if (section != NULL)
1073 [ - + ]: 16 : xalloc_str (target_cache_path, "%s/%s-%s", target_cache_dir, type, suffix);
1074 : : else
1075 [ - + ]: 882 : xalloc_str (target_cache_path, "%s/%s%s", target_cache_dir, type, suffix);
1076 [ - + ]: 898 : xalloc_str (target_cache_tmppath, "%s.XXXXXX", target_cache_path);
1077 : :
1078 : : /* XXX combine these */
1079 [ - + ]: 898 : xalloc_str (interval_path, "%s/%s", cache_path, cache_clean_interval_filename);
1080 [ - + ]: 898 : xalloc_str (cache_miss_path, "%s/%s", cache_path, cache_miss_filename);
1081 [ - + ]: 898 : xalloc_str (maxage_path, "%s/%s", cache_path, cache_max_unused_age_filename);
1082 : :
1083 [ + + ]: 898 : if (vfd >= 0)
1084 : 36 : dprintf (vfd, "checking cache dir %s\n", cache_path);
1085 : :
1086 : : /* Make sure cache dir exists. debuginfo_clean_cache will then make
1087 : : sure the interval, cache_miss and maxage files exist. */
1088 [ + + ]: 898 : if (mkdir (cache_path, ACCESSPERMS) != 0
1089 [ - + ]: 838 : && errno != EEXIST)
1090 : : {
1091 : 0 : rc = -errno;
1092 : 0 : goto out;
1093 : : }
1094 : :
1095 : 898 : rc = debuginfod_clean_cache(c, cache_path, interval_path, maxage_path);
1096 [ - + ]: 898 : if (rc != 0)
1097 : 0 : goto out;
1098 : :
1099 : : /* Check if the target is already in the cache. */
1100 : 898 : int fd = open(target_cache_path, O_RDONLY);
1101 [ + + ]: 898 : if (fd >= 0)
1102 : : {
1103 : 74 : struct stat st;
1104 [ - + ]: 74 : if (fstat(fd, &st) != 0)
1105 : : {
1106 : 0 : rc = -errno;
1107 : 0 : close (fd);
1108 : 72 : goto out;
1109 : : }
1110 : :
1111 : : /* If the file is non-empty, then we are done. */
1112 [ + + ]: 74 : if (st.st_size > 0)
1113 : : {
1114 [ + - ]: 70 : if (path != NULL)
1115 : : {
1116 : 70 : *path = strdup(target_cache_path);
1117 [ - + ]: 70 : if (*path == NULL)
1118 : : {
1119 : 0 : rc = -errno;
1120 : 0 : close (fd);
1121 : 0 : goto out;
1122 : : }
1123 : : }
1124 : : /* Success!!!! */
1125 : 70 : update_atime(fd);
1126 : 70 : rc = fd;
1127 : 70 : goto out;
1128 : : }
1129 : : else
1130 : : {
1131 : : /* The file is empty. Attempt to download only if enough time
1132 : : has passed since the last attempt. */
1133 : 4 : time_t cache_miss;
1134 : 4 : time_t target_mtime = st.st_mtime;
1135 : :
1136 : 4 : close(fd); /* no need to hold onto the negative-hit file descriptor */
1137 : :
1138 : 4 : rc = debuginfod_config_cache(c, cache_miss_path,
1139 : : cache_miss_default_s, &st);
1140 [ - + ]: 4 : if (rc < 0)
1141 : 0 : goto out;
1142 : :
1143 : 4 : cache_miss = (time_t)rc;
1144 [ + + ]: 4 : if (time(NULL) - target_mtime <= cache_miss)
1145 : : {
1146 : 2 : rc = -ENOENT;
1147 : 2 : goto out;
1148 : : }
1149 : : else
1150 : : /* TOCTOU non-problem: if another task races, puts a working
1151 : : download or an empty file in its place, unlinking here just
1152 : : means WE will try to download again as uncached. */
1153 : 2 : unlink(target_cache_path);
1154 : : }
1155 : : }
1156 [ - + ]: 824 : else if (errno == EACCES)
1157 : : /* Ensure old 000-permission files are not lingering in the cache. */
1158 : 0 : unlink(target_cache_path);
1159 : :
1160 [ + + ]: 826 : if (section != NULL)
1161 : : {
1162 : : /* Try to extract the section from a cached file before querying
1163 : : any servers. */
1164 : 16 : rc = cache_find_section (section, target_cache_dir, path);
1165 : :
1166 : : /* If the section was found or confirmed to not exist, then we
1167 : : are done. */
1168 [ + + ]: 16 : if (rc >= 0 || rc == -ENOENT)
1169 : 8 : goto out;
1170 : : }
1171 : :
1172 : 818 : long timeout = default_timeout;
1173 : 818 : const char* timeout_envvar = getenv(DEBUGINFOD_TIMEOUT_ENV_VAR);
1174 [ - + ]: 818 : if (timeout_envvar != NULL)
1175 : 0 : timeout = atoi (timeout_envvar);
1176 : :
1177 [ + + ]: 818 : if (vfd >= 0)
1178 : 28 : dprintf (vfd, "using timeout %ld\n", timeout);
1179 : :
1180 : : /* make a copy of the envvar so it can be safely modified. */
1181 : 818 : server_urls = strdup(urls_envvar);
1182 [ - + ]: 818 : if (server_urls == NULL)
1183 : : {
1184 : 0 : rc = -ENOMEM;
1185 : 0 : goto out;
1186 : : }
1187 : : /* thereafter, goto out0 on error*/
1188 : :
1189 : : /* Because of a race with cache cleanup / rmdir, try to mkdir/mkstemp up to twice. */
1190 [ + - ]: 818 : for(int i=0; i<2; i++) {
1191 : : /* (re)create target directory in cache */
1192 : 818 : (void) mkdir(target_cache_dir, 0700); /* files will be 0400 later */
1193 : :
1194 : : /* NB: write to a temporary file first, to avoid race condition of
1195 : : multiple clients checking the cache, while a partially-written or empty
1196 : : file is in there, being written from libcurl. */
1197 : 818 : fd = mkstemp (target_cache_tmppath);
1198 [ - + ]: 818 : if (fd >= 0) break;
1199 : : }
1200 [ - + ]: 818 : if (fd < 0) /* Still failed after two iterations. */
1201 : : {
1202 : 0 : rc = -errno;
1203 : 0 : goto out0;
1204 : : }
1205 : :
1206 : : /* Initialize the memory to zero */
1207 : 818 : char *strtok_saveptr;
1208 : 818 : char **server_url_list = NULL;
1209 : 818 : char *server_url = strtok_r(server_urls, url_delim, &strtok_saveptr);
1210 : : /* Count number of URLs. */
1211 : 818 : int num_urls = 0;
1212 : :
1213 [ + + ]: 1690 : while (server_url != NULL)
1214 : : {
1215 : : /* PR 27983: If the url is already set to be used use, skip it */
1216 : 872 : char *slashbuildid;
1217 [ + - + + ]: 872 : if (strlen(server_url) > 1 && server_url[strlen(server_url)-1] == '/')
1218 : : slashbuildid = "buildid";
1219 : : else
1220 : 812 : slashbuildid = "/buildid";
1221 : :
1222 : 872 : char *tmp_url;
1223 [ - + ]: 872 : if (asprintf(&tmp_url, "%s%s", server_url, slashbuildid) == -1)
1224 : : {
1225 : 0 : rc = -ENOMEM;
1226 : 0 : goto out1;
1227 : : }
1228 : : int url_index;
1229 [ + + ]: 994 : for (url_index = 0; url_index < num_urls; ++url_index)
1230 : : {
1231 [ + + ]: 126 : if(strcmp(tmp_url, server_url_list[url_index]) == 0)
1232 : : {
1233 : : url_index = -1;
1234 : : break;
1235 : : }
1236 : : }
1237 [ + + ]: 872 : if (url_index == -1)
1238 : : {
1239 [ + - ]: 4 : if (vfd >= 0)
1240 : 4 : dprintf(vfd, "duplicate url: %s, skipping\n", tmp_url);
1241 : 4 : free(tmp_url);
1242 : : }
1243 : : else
1244 : : {
1245 : 868 : num_urls++;
1246 : 868 : char ** realloc_ptr;
1247 : 868 : realloc_ptr = reallocarray(server_url_list, num_urls,
1248 : : sizeof(char*));
1249 [ - + ]: 868 : if (realloc_ptr == NULL)
1250 : : {
1251 : 0 : free (tmp_url);
1252 : 0 : rc = -ENOMEM;
1253 : 0 : goto out1;
1254 : : }
1255 : 868 : server_url_list = realloc_ptr;
1256 : 868 : server_url_list[num_urls-1] = tmp_url;
1257 : : }
1258 : 872 : server_url = strtok_r(NULL, url_delim, &strtok_saveptr);
1259 : : }
1260 : :
1261 : 818 : int retry_limit = default_retry_limit;
1262 : 818 : const char* retry_limit_envvar = getenv(DEBUGINFOD_RETRY_LIMIT_ENV_VAR);
1263 [ + + ]: 818 : if (retry_limit_envvar != NULL)
1264 : 4 : retry_limit = atoi (retry_limit_envvar);
1265 : :
1266 : 818 : CURLM *curlm = c->server_mhandle;
1267 [ - + ]: 818 : assert (curlm != NULL);
1268 : :
1269 : : /* Tracks which handle should write to fd. Set to the first
1270 : : handle that is ready to write the target file to the cache. */
1271 : 818 : CURL *target_handle = NULL;
1272 : 818 : struct handle_data *data = malloc(sizeof(struct handle_data) * num_urls);
1273 [ - + ]: 818 : if (data == NULL)
1274 : : {
1275 : 0 : rc = -ENOMEM;
1276 : 0 : goto out1;
1277 : : }
1278 : :
1279 : : /* thereafter, goto out2 on error. */
1280 : :
1281 : : /*The beginning of goto block query_in_parallel.*/
1282 : 818 : query_in_parallel:
1283 : 1904 : rc = -ENOENT; /* Reset rc to default.*/
1284 : :
1285 : : /* Initialize handle_data with default values. */
1286 [ + + ]: 3860 : for (int i = 0; i < num_urls; i++)
1287 : : {
1288 : 1956 : data[i].handle = NULL;
1289 : 1956 : data[i].fd = -1;
1290 : 1956 : data[i].errbuf[0] = '\0';
1291 : 1956 : data[i].response_data = NULL;
1292 : 1956 : data[i].response_data_size = 0;
1293 : : }
1294 : :
1295 : 1904 : char *escaped_string = NULL;
1296 : 1904 : size_t escaped_strlen = 0;
1297 [ + + ]: 1904 : if (filename)
1298 : : {
1299 : 58 : escaped_string = curl_easy_escape(&target_handle, filename+1, 0);
1300 [ - + ]: 58 : if (!escaped_string)
1301 : : {
1302 : 0 : rc = -ENOMEM;
1303 : 0 : goto out2;
1304 : : }
1305 : 58 : char *loc = escaped_string;
1306 : 58 : escaped_strlen = strlen(escaped_string);
1307 [ + + ]: 382 : while ((loc = strstr(loc, "%2F")))
1308 : : {
1309 : 324 : loc[0] = '/';
1310 : : //pull the string back after replacement
1311 : : // loc-escaped_string finds the distance from the origin to the new location
1312 : : // - 2 accounts for the 2F which remain and don't need to be measured.
1313 : : // The two above subtracted from escaped_strlen yields the remaining characters
1314 : : // in the string which we want to pull back
1315 : 324 : memmove(loc+1, loc+3,escaped_strlen - (loc-escaped_string) - 2);
1316 : : //Because the 2F was overwritten in the memmove (as desired) escaped_strlen is
1317 : : // now two shorter.
1318 : 324 : escaped_strlen -= 2;
1319 : : }
1320 : : }
1321 : : /* Initialize each handle. */
1322 [ + + ]: 3860 : for (int i = 0; i < num_urls; i++)
1323 : : {
1324 [ + - ]: 1956 : if ((server_url = server_url_list[i]) == NULL)
1325 : : break;
1326 [ + + ]: 1956 : if (vfd >= 0)
1327 : 54 : dprintf (vfd, "init server %d %s\n", i, server_url);
1328 : :
1329 : 1956 : data[i].fd = fd;
1330 : 1956 : data[i].target_handle = &target_handle;
1331 : 1956 : data[i].handle = curl_easy_init();
1332 [ - + ]: 1956 : if (data[i].handle == NULL)
1333 : : {
1334 [ # # ]: 0 : if (filename) curl_free (escaped_string);
1335 : 0 : rc = -ENETUNREACH;
1336 : 0 : goto out2;
1337 : : }
1338 : 1956 : data[i].client = c;
1339 : :
1340 [ + + ]: 1956 : if (filename) /* must start with / */
1341 : : {
1342 : : /* PR28034 escape characters in completed url to %hh format. */
1343 : 58 : snprintf(data[i].url, PATH_MAX, "%s/%s/%s/%s", server_url,
1344 : : build_id_bytes, type, escaped_string);
1345 : : }
1346 [ + + ]: 1898 : else if (section)
1347 : 8 : snprintf(data[i].url, PATH_MAX, "%s/%s/%s/%s", server_url,
1348 : : build_id_bytes, type, section);
1349 : : else
1350 : 1890 : snprintf(data[i].url, PATH_MAX, "%s/%s/%s", server_url, build_id_bytes, type);
1351 [ + + ]: 1956 : if (vfd >= 0)
1352 : 54 : dprintf (vfd, "url %d %s\n", i, data[i].url);
1353 : :
1354 : : /* Some boilerplate for checking curl_easy_setopt. */
1355 : : #define curl_easy_setopt_ck(H,O,P) do { \
1356 : : CURLcode curl_res = curl_easy_setopt (H,O,P); \
1357 : : if (curl_res != CURLE_OK) \
1358 : : { \
1359 : : if (vfd >= 0) \
1360 : : dprintf (vfd, \
1361 : : "Bad curl_easy_setopt: %s\n", \
1362 : : curl_easy_strerror(curl_res)); \
1363 : : rc = -EINVAL; \
1364 : : goto out2; \
1365 : : } \
1366 : : } while (0)
1367 : :
1368 : : /* Only allow http:// + https:// + file:// so we aren't being
1369 : : redirected to some unsupported protocol. */
1370 : : #if CURL_AT_LEAST_VERSION(7, 85, 0)
1371 [ - + - - ]: 1956 : curl_easy_setopt_ck(data[i].handle, CURLOPT_PROTOCOLS_STR,
1372 : : "http,https,file");
1373 : : #else
1374 : : curl_easy_setopt_ck(data[i].handle, CURLOPT_PROTOCOLS,
1375 : : (CURLPROTO_HTTP | CURLPROTO_HTTPS | CURLPROTO_FILE));
1376 : : #endif
1377 [ - + - - ]: 1956 : curl_easy_setopt_ck(data[i].handle, CURLOPT_URL, data[i].url);
1378 [ + + ]: 1956 : if (vfd >= 0)
1379 [ - + ]: 54 : curl_easy_setopt_ck(data[i].handle, CURLOPT_ERRORBUFFER,
1380 : : data[i].errbuf);
1381 [ - + - - ]: 1956 : curl_easy_setopt_ck(data[i].handle,
1382 : : CURLOPT_WRITEFUNCTION,
1383 : : debuginfod_write_callback);
1384 [ - + - - ]: 1956 : curl_easy_setopt_ck(data[i].handle, CURLOPT_WRITEDATA, (void*)&data[i]);
1385 [ + - ]: 1956 : if (timeout > 0)
1386 : : {
1387 : : /* Make sure there is at least some progress,
1388 : : try to get at least 100K per timeout seconds. */
1389 [ - + - - ]: 1956 : curl_easy_setopt_ck (data[i].handle, CURLOPT_LOW_SPEED_TIME,
1390 : : timeout);
1391 [ - + - - ]: 1956 : curl_easy_setopt_ck (data[i].handle, CURLOPT_LOW_SPEED_LIMIT,
1392 : : 100 * 1024L);
1393 : : }
1394 [ - + - - ]: 1956 : curl_easy_setopt_ck(data[i].handle, CURLOPT_FILETIME, (long) 1);
1395 [ - + - - ]: 1956 : curl_easy_setopt_ck(data[i].handle, CURLOPT_FOLLOWLOCATION, (long) 1);
1396 [ - + - - ]: 1956 : curl_easy_setopt_ck(data[i].handle, CURLOPT_FAILONERROR, (long) 1);
1397 [ - + - - ]: 1956 : curl_easy_setopt_ck(data[i].handle, CURLOPT_NOSIGNAL, (long) 1);
1398 [ - + - - ]: 1956 : curl_easy_setopt_ck(data[i].handle, CURLOPT_HEADERFUNCTION,
1399 : : header_callback);
1400 [ - + - - ]: 1956 : curl_easy_setopt_ck(data[i].handle, CURLOPT_HEADERDATA,
1401 : : (void *) &(data[i]));
1402 : : #if LIBCURL_VERSION_NUM >= 0x072a00 /* 7.42.0 */
1403 [ - + - - ]: 1956 : curl_easy_setopt_ck(data[i].handle, CURLOPT_PATH_AS_IS, (long) 1);
1404 : : #else
1405 : : /* On old curl; no big deal, canonicalization here is almost the
1406 : : same, except perhaps for ? # type decorations at the tail. */
1407 : : #endif
1408 [ - + - - ]: 1956 : curl_easy_setopt_ck(data[i].handle, CURLOPT_AUTOREFERER, (long) 1);
1409 [ - + - - ]: 1956 : curl_easy_setopt_ck(data[i].handle, CURLOPT_ACCEPT_ENCODING, "");
1410 [ - + - - ]: 1956 : curl_easy_setopt_ck(data[i].handle, CURLOPT_HTTPHEADER, c->headers);
1411 : :
1412 : 1956 : curl_multi_add_handle(curlm, data[i].handle);
1413 : : }
1414 : :
1415 [ + + ]: 1904 : if (filename) curl_free(escaped_string);
1416 : : /* Query servers in parallel. */
1417 [ + + ]: 1904 : if (vfd >= 0)
1418 : 50 : dprintf (vfd, "query %d urls in parallel\n", num_urls);
1419 : 1904 : int still_running;
1420 : 1904 : long loops = 0;
1421 : 1904 : int committed_to = -1;
1422 : 1904 : bool verbose_reported = false;
1423 : 1904 : struct timespec start_time, cur_time;
1424 : :
1425 : 1904 : free (c->winning_headers);
1426 : 1904 : c->winning_headers = NULL;
1427 [ + + - + ]: 1904 : if ( maxtime > 0 && clock_gettime(CLOCK_MONOTONIC_RAW, &start_time) == -1)
1428 : : {
1429 : 0 : rc = -errno;
1430 : 0 : goto out2;
1431 : : }
1432 : 4072 : long delta = 0;
1433 : 4072 : do
1434 : : {
1435 : : /* Check to see how long querying is taking. */
1436 [ + + ]: 4072 : if (maxtime > 0)
1437 : : {
1438 [ - + ]: 5 : if (clock_gettime(CLOCK_MONOTONIC_RAW, &cur_time) == -1)
1439 : : {
1440 : 0 : rc = -errno;
1441 : 0 : goto out2;
1442 : : }
1443 : 5 : delta = cur_time.tv_sec - start_time.tv_sec;
1444 [ - + ]: 5 : if ( delta > maxtime)
1445 : : {
1446 : 0 : dprintf(vfd, "Timeout with max time=%lds and transfer time=%lds\n", maxtime, delta );
1447 : 0 : rc = -ETIME;
1448 : 0 : goto out2;
1449 : : }
1450 : : }
1451 : : /* Wait 1 second, the minimum DEBUGINFOD_TIMEOUT. */
1452 : 4072 : curl_multi_wait(curlm, NULL, 0, 1000, NULL);
1453 : 4072 : CURLMcode curlm_res = curl_multi_perform(curlm, &still_running);
1454 : :
1455 : : /* If the target file has been found, abort the other queries. */
1456 [ + + ]: 4072 : if (target_handle != NULL)
1457 : : {
1458 [ + + ]: 752 : for (int i = 0; i < num_urls; i++)
1459 [ + + ]: 454 : if (data[i].handle != target_handle)
1460 : 156 : curl_multi_remove_handle(curlm, data[i].handle);
1461 : : else
1462 : : {
1463 : 298 : committed_to = i;
1464 [ + + ]: 298 : if (c->winning_headers == NULL)
1465 : : {
1466 : 242 : c->winning_headers = data[committed_to].response_data;
1467 : 242 : data[committed_to].response_data = NULL;
1468 : 242 : data[committed_to].response_data_size = 0;
1469 : : }
1470 : :
1471 : : }
1472 : : }
1473 : :
1474 [ + + + + ]: 4072 : if (vfd >= 0 && !verbose_reported && committed_to >= 0)
1475 : : {
1476 [ - + - - ]: 36 : bool pnl = (c->default_progressfn_printed_p && vfd == STDERR_FILENO);
1477 : 18 : dprintf (vfd, "%scommitted to url %d\n", pnl ? "\n" : "",
1478 : : committed_to);
1479 [ - + ]: 18 : if (pnl)
1480 : 0 : c->default_progressfn_printed_p = 0;
1481 : : verbose_reported = true;
1482 : : }
1483 : :
1484 [ - + ]: 4072 : if (curlm_res != CURLM_OK)
1485 : : {
1486 [ # # # ]: 0 : switch (curlm_res)
1487 : : {
1488 : 0 : case CURLM_CALL_MULTI_PERFORM: continue;
1489 : : case CURLM_OUT_OF_MEMORY: rc = -ENOMEM; break;
1490 : 0 : default: rc = -ENETUNREACH; break;
1491 : : }
1492 : 0 : goto out2;
1493 : : }
1494 : :
1495 : 4072 : long dl_size = -1;
1496 [ + + + + : 4072 : if (target_handle && (c->progressfn || maxsize > 0))
- + ]
1497 : : {
1498 : : /* Get size of file being downloaded. NB: If going through
1499 : : deflate-compressing proxies, this number is likely to be
1500 : : unavailable, so -1 may show. */
1501 : 26 : CURLcode curl_res;
1502 : : #if CURL_AT_LEAST_VERSION(7, 55, 0)
1503 : 26 : curl_off_t cl;
1504 : 26 : curl_res = curl_easy_getinfo(target_handle,
1505 : : CURLINFO_CONTENT_LENGTH_DOWNLOAD_T,
1506 : : &cl);
1507 [ + - - + ]: 26 : if (curl_res == CURLE_OK && cl >= 0)
1508 : : dl_size = (cl > LONG_MAX ? LONG_MAX : (long)cl);
1509 : : #else
1510 : : double cl;
1511 : : curl_res = curl_easy_getinfo(target_handle,
1512 : : CURLINFO_CONTENT_LENGTH_DOWNLOAD,
1513 : : &cl);
1514 : : if (curl_res == CURLE_OK && cl >= 0)
1515 : : dl_size = (cl >= (double)(LONG_MAX+1UL) ? LONG_MAX : (long)cl);
1516 : : #endif
1517 : : /* If Content-Length is -1, try to get the size from
1518 : : X-Debuginfod-Size */
1519 [ # # ]: 0 : if (dl_size == -1 && c->winning_headers != NULL)
1520 : : {
1521 : 0 : long xdl;
1522 : 0 : char *hdr = strcasestr(c->winning_headers, "x-debuginfod-size");
1523 : 0 : size_t off = strlen("x-debuginfod-size:");
1524 : :
1525 [ # # # # ]: 0 : if (hdr != NULL && sscanf(hdr + off, "%ld", &xdl) == 1)
1526 : 0 : dl_size = xdl;
1527 : : }
1528 : : }
1529 : :
1530 [ + + ]: 4072 : if (c->progressfn) /* inform/check progress callback */
1531 : : {
1532 : 3321 : loops ++;
1533 : 3321 : long pa = loops; /* default param for progress callback */
1534 [ + + ]: 3321 : if (target_handle) /* we've committed to a server; report its download progress */
1535 : : {
1536 : : /* PR30809: Check actual size of cached file. This same
1537 : : fd is shared by all the multi-curl handles (but only
1538 : : one will end up writing to it). Another way could be
1539 : : to tabulate totals in debuginfod_write_callback(). */
1540 : 26 : struct stat cached;
1541 : 26 : int statrc = fstat(fd, &cached);
1542 [ + - ]: 26 : if (statrc == 0)
1543 : 26 : pa = (long) cached.st_size;
1544 : : else
1545 : : {
1546 : : /* Otherwise, query libcurl for its tabulated total.
1547 : : However, that counts http body length, not
1548 : : decoded/decompressed content length, so does not
1549 : : measure quite the same thing as dl. */
1550 : 0 : CURLcode curl_res;
1551 : : #if CURL_AT_LEAST_VERSION(7, 55, 0)
1552 : 0 : curl_off_t dl;
1553 : 0 : curl_res = curl_easy_getinfo(target_handle,
1554 : : CURLINFO_SIZE_DOWNLOAD_T,
1555 : : &dl);
1556 [ # # # # ]: 0 : if (curl_res == 0 && dl >= 0)
1557 : 0 : pa = (dl > LONG_MAX ? LONG_MAX : (long)dl);
1558 : : #else
1559 : : double dl;
1560 : : curl_res = curl_easy_getinfo(target_handle,
1561 : : CURLINFO_SIZE_DOWNLOAD,
1562 : : &dl);
1563 : : if (curl_res == 0)
1564 : : pa = (dl >= (double)(LONG_MAX+1UL) ? LONG_MAX : (long)dl);
1565 : : #endif
1566 : : }
1567 : : }
1568 : :
1569 [ + + - + ]: 6616 : if ((*c->progressfn) (c, pa, dl_size == -1 ? 0 : dl_size))
1570 : : {
1571 : 0 : c->progressfn_cancel = true;
1572 : 0 : break;
1573 : : }
1574 : : }
1575 : :
1576 : : /* Check to see if we are downloading something which exceeds maxsize, if set.*/
1577 [ + + - + ]: 4072 : if (target_handle && dl_size > maxsize && maxsize > 0)
1578 : : {
1579 [ # # ]: 0 : if (vfd >=0)
1580 : 0 : dprintf(vfd, "Content-Length too large.\n");
1581 : 0 : rc = -EFBIG;
1582 : 0 : goto out2;
1583 : : }
1584 [ + + ]: 4072 : } while (still_running);
1585 : :
1586 : : /* Check whether a query was successful. If so, assign its handle
1587 : : to verified_handle. */
1588 : : int num_msg;
1589 : : rc = -ENOENT;
1590 : 1908 : CURL *verified_handle = NULL;
1591 : 1908 : do
1592 : : {
1593 : 1908 : CURLMsg *msg;
1594 : :
1595 : 1908 : msg = curl_multi_info_read(curlm, &num_msg);
1596 [ + - + - ]: 1908 : if (msg != NULL && msg->msg == CURLMSG_DONE)
1597 : : {
1598 [ + + ]: 1908 : if (vfd >= 0)
1599 : : {
1600 : 108 : bool pnl = (c->default_progressfn_printed_p
1601 [ - + - - ]: 54 : && vfd == STDERR_FILENO);
1602 [ + - ]: 54 : dprintf (vfd, "%sserver response %s\n", pnl ? "\n" : "",
1603 : : curl_easy_strerror (msg->data.result));
1604 [ - + ]: 54 : if (pnl)
1605 : 0 : c->default_progressfn_printed_p = 0;
1606 [ + - ]: 58 : for (int i = 0; i < num_urls; i++)
1607 [ + + ]: 58 : if (msg->easy_handle == data[i].handle)
1608 : : {
1609 [ + + ]: 54 : if (strlen (data[i].errbuf) > 0)
1610 : 34 : dprintf (vfd, "url %d %s\n", i, data[i].errbuf);
1611 : : break;
1612 : : }
1613 : : }
1614 : :
1615 [ + + ]: 1908 : if (msg->data.result != CURLE_OK)
1616 : : {
1617 : 1666 : long resp_code;
1618 : 1666 : CURLcode ok0;
1619 : : /* Unsuccessful query, determine error code. */
1620 [ - + - - : 1666 : switch (msg->data.result)
- - - - +
+ - ]
1621 : : {
1622 : : case CURLE_COULDNT_RESOLVE_HOST: rc = -EHOSTUNREACH; break; // no NXDOMAIN
1623 : 0 : case CURLE_URL_MALFORMAT: rc = -EINVAL; break;
1624 : 1622 : case CURLE_COULDNT_CONNECT: rc = -ECONNREFUSED; break;
1625 : 1622 : case CURLE_PEER_FAILED_VERIFICATION: rc = -ECONNREFUSED; break;
1626 : 0 : case CURLE_REMOTE_ACCESS_DENIED: rc = -EACCES; break;
1627 : 0 : case CURLE_WRITE_ERROR: rc = -EIO; break;
1628 : 0 : case CURLE_OUT_OF_MEMORY: rc = -ENOMEM; break;
1629 : 0 : case CURLE_TOO_MANY_REDIRECTS: rc = -EMLINK; break;
1630 : 0 : case CURLE_SEND_ERROR: rc = -ECONNRESET; break;
1631 : 0 : case CURLE_RECV_ERROR: rc = -ECONNRESET; break;
1632 : 0 : case CURLE_OPERATION_TIMEDOUT: rc = -ETIME; break;
1633 : : case CURLE_HTTP_RETURNED_ERROR:
1634 : 42 : ok0 = curl_easy_getinfo (msg->easy_handle,
1635 : : CURLINFO_RESPONSE_CODE,
1636 : : &resp_code);
1637 : : /* 406 signals that the requested file was too large */
1638 [ + - + + ]: 42 : if ( ok0 == CURLE_OK && resp_code == 406)
1639 : : rc = -EFBIG;
1640 [ - + - - ]: 40 : else if (section != NULL && resp_code == 503)
1641 : : rc = -EINVAL;
1642 : : else
1643 : 42 : rc = -ENOENT;
1644 : : break;
1645 : 42 : default: rc = -ENOENT; break;
1646 : : }
1647 : : }
1648 : : else
1649 : : {
1650 : : /* Query completed without an error. Confirm that the
1651 : : response code is 200 when using HTTP/HTTPS and 0 when
1652 : : using file:// and set verified_handle. */
1653 : :
1654 [ + - ]: 242 : if (msg->easy_handle != NULL)
1655 : : {
1656 : 242 : char *effective_url = NULL;
1657 : 242 : long resp_code = 500;
1658 : 242 : CURLcode ok1 = curl_easy_getinfo (target_handle,
1659 : : CURLINFO_EFFECTIVE_URL,
1660 : : &effective_url);
1661 : 242 : CURLcode ok2 = curl_easy_getinfo (target_handle,
1662 : : CURLINFO_RESPONSE_CODE,
1663 : : &resp_code);
1664 [ + - + - ]: 242 : if(ok1 == CURLE_OK && ok2 == CURLE_OK && effective_url)
1665 : : {
1666 [ + + ]: 242 : if (strncasecmp (effective_url, "HTTP", 4) == 0)
1667 [ + - ]: 240 : if (resp_code == 200)
1668 : : {
1669 : 240 : verified_handle = msg->easy_handle;
1670 : 242 : break;
1671 : : }
1672 [ + - ]: 2 : if (strncasecmp (effective_url, "FILE", 4) == 0)
1673 [ + - ]: 2 : if (resp_code == 0)
1674 : : {
1675 : 2 : verified_handle = msg->easy_handle;
1676 : 2 : break;
1677 : : }
1678 : : }
1679 : : /* - libcurl since 7.52.0 version start to support
1680 : : CURLINFO_SCHEME;
1681 : : - before 7.61.0, effective_url would give us a
1682 : : url with upper case SCHEME added in the front;
1683 : : - effective_url between 7.61 and 7.69 can be lack
1684 : : of scheme if the original url doesn't include one;
1685 : : - since version 7.69 effective_url will be provide
1686 : : a scheme in lower case. */
1687 : : #if LIBCURL_VERSION_NUM >= 0x073d00 /* 7.61.0 */
1688 : : #if LIBCURL_VERSION_NUM <= 0x074500 /* 7.69.0 */
1689 : : char *scheme = NULL;
1690 : : CURLcode ok3 = curl_easy_getinfo (target_handle,
1691 : : CURLINFO_SCHEME,
1692 : : &scheme);
1693 : : if(ok3 == CURLE_OK && scheme)
1694 : : {
1695 : : if (startswith (scheme, "HTTP"))
1696 : : if (resp_code == 200)
1697 : : {
1698 : : verified_handle = msg->easy_handle;
1699 : : break;
1700 : : }
1701 : : }
1702 : : #endif
1703 : : #endif
1704 : : }
1705 : : }
1706 : : }
1707 [ + + ]: 1666 : } while (num_msg > 0);
1708 : :
1709 : : /* Create an empty file in the cache if the query fails with ENOENT and
1710 : : it wasn't cancelled early. */
1711 [ + + + - ]: 1904 : if (rc == -ENOENT && !c->progressfn_cancel)
1712 : : {
1713 : 281 : int efd = open (target_cache_path, O_CREAT|O_EXCL, DEFFILEMODE);
1714 [ + + ]: 281 : if (efd >= 0)
1715 : 279 : close(efd);
1716 : : }
1717 [ + + ]: 1623 : else if (rc == -EFBIG)
1718 : 2 : goto out2;
1719 : :
1720 : : /* If the verified_handle is NULL and rc != -ENOENT, the query fails with
1721 : : * an error code other than 404, then do several retry within the retry_limit.
1722 : : * Clean up all old handles and jump back to the beginning of query_in_parallel,
1723 : : * reinitialize handles and query again.*/
1724 [ + + ]: 1902 : if (verified_handle == NULL)
1725 : : {
1726 [ + + + + ]: 1660 : if (rc != -ENOENT && retry_limit-- > 0)
1727 : : {
1728 [ + + ]: 1086 : if (vfd >= 0)
1729 : 22 : dprintf (vfd, "Retry failed query, %d attempt(s) remaining\n", retry_limit);
1730 : : /* remove all handles from multi */
1731 [ + + ]: 2174 : for (int i = 0; i < num_urls; i++)
1732 : : {
1733 : 1088 : curl_multi_remove_handle(curlm, data[i].handle); /* ok to repeat */
1734 : 1088 : curl_easy_cleanup (data[i].handle);
1735 : 1088 : free(data[i].response_data);
1736 : : }
1737 : 1086 : free(c->winning_headers);
1738 : 1086 : c->winning_headers = NULL;
1739 : 1086 : goto query_in_parallel;
1740 : : }
1741 : : else
1742 : 574 : goto out2;
1743 : : }
1744 : :
1745 [ + + ]: 242 : if (vfd >= 0)
1746 : : {
1747 [ + - - - ]: 36 : bool pnl = c->default_progressfn_printed_p && vfd == STDERR_FILENO;
1748 : 18 : dprintf (vfd, "%sgot file from server\n", pnl ? "\n" : "");
1749 [ - + ]: 18 : if (pnl)
1750 : 0 : c->default_progressfn_printed_p = 0;
1751 : : }
1752 : :
1753 : : /* we've got one!!!! */
1754 : 242 : time_t mtime;
1755 : : #if defined(_TIME_BITS) && _TIME_BITS == 64
1756 : : CURLcode curl_res = curl_easy_getinfo(verified_handle, CURLINFO_FILETIME_T, (void*) &mtime);
1757 : : #else
1758 : 242 : CURLcode curl_res = curl_easy_getinfo(verified_handle, CURLINFO_FILETIME, (void*) &mtime);
1759 : : #endif
1760 [ + - ]: 242 : if (curl_res == CURLE_OK)
1761 : : {
1762 : 242 : struct timespec tvs[2];
1763 : 242 : tvs[0].tv_sec = 0;
1764 : 242 : tvs[0].tv_nsec = UTIME_OMIT;
1765 : 242 : tvs[1].tv_sec = mtime;
1766 : 242 : tvs[1].tv_nsec = 0;
1767 : 242 : (void) futimens (fd, tvs); /* best effort */
1768 : : }
1769 : :
1770 : : /* PR27571: make cache files casually unwriteable; dirs are already 0700 */
1771 : 242 : (void) fchmod(fd, 0400);
1772 : :
1773 : : /* rename tmp->real */
1774 : 242 : rc = rename (target_cache_tmppath, target_cache_path);
1775 [ - + ]: 242 : if (rc < 0)
1776 : : {
1777 : 0 : rc = -errno;
1778 : 0 : goto out2;
1779 : : /* Perhaps we need not give up right away; could retry or something ... */
1780 : : }
1781 : :
1782 : : /* remove all handles from multi */
1783 [ + + ]: 532 : for (int i = 0; i < num_urls; i++)
1784 : : {
1785 : 290 : curl_multi_remove_handle(curlm, data[i].handle); /* ok to repeat */
1786 : 290 : curl_easy_cleanup (data[i].handle);
1787 : 290 : free (data[i].response_data);
1788 : : }
1789 : :
1790 [ + + ]: 532 : for (int i = 0; i < num_urls; ++i)
1791 : 290 : free(server_url_list[i]);
1792 : 242 : free(server_url_list);
1793 : 242 : free (data);
1794 : 242 : free (server_urls);
1795 : :
1796 : : /* don't close fd - we're returning it */
1797 : : /* don't unlink the tmppath; it's already been renamed. */
1798 [ + + ]: 242 : if (path != NULL)
1799 : 238 : *path = strdup(target_cache_path);
1800 : :
1801 : 242 : rc = fd;
1802 : 242 : goto out;
1803 : :
1804 : : /* error exits */
1805 : 576 : out2:
1806 : : /* remove all handles from multi */
1807 [ + + ]: 1154 : for (int i = 0; i < num_urls; i++)
1808 : : {
1809 [ + - ]: 578 : if (data[i].handle != NULL)
1810 : : {
1811 : 578 : curl_multi_remove_handle(curlm, data[i].handle); /* ok to repeat */
1812 : 578 : curl_easy_cleanup (data[i].handle);
1813 : 578 : free (data[i].response_data);
1814 : : }
1815 : : }
1816 : :
1817 : 576 : unlink (target_cache_tmppath);
1818 : 576 : close (fd); /* before the rmdir, otherwise it'll fail */
1819 : 576 : (void) rmdir (target_cache_dir); /* nop if not empty */
1820 : 576 : free(data);
1821 : :
1822 : 576 : out1:
1823 [ + + ]: 1154 : for (int i = 0; i < num_urls; ++i)
1824 : 578 : free(server_url_list[i]);
1825 : 576 : free(server_url_list);
1826 : :
1827 : 576 : out0:
1828 : 576 : free (server_urls);
1829 : :
1830 : : /* general purpose exit */
1831 : 968 : out:
1832 : : /* Reset sent headers */
1833 : 968 : curl_slist_free_all (c->headers);
1834 : 968 : c->headers = NULL;
1835 : 968 : c->user_agent_set_p = 0;
1836 : :
1837 : : /* Conclude the last \r status line */
1838 : : /* Another possibility is to use the ANSI CSI n K EL "Erase in Line"
1839 : : code. That way, the previously printed messages would be erased,
1840 : : and without a newline. */
1841 [ + + ]: 968 : if (c->default_progressfn_printed_p)
1842 : 2 : dprintf(STDERR_FILENO, "\n");
1843 : :
1844 [ + + ]: 968 : if (vfd >= 0)
1845 : : {
1846 [ + + ]: 36 : if (rc < 0)
1847 : 10 : dprintf (vfd, "not found %s (err=%d)\n", strerror (-rc), rc);
1848 : : else
1849 : 26 : dprintf (vfd, "found %s (fd=%d)\n", target_cache_path, rc);
1850 : : }
1851 : :
1852 : 968 : free (cache_path);
1853 : 968 : free (maxage_path);
1854 : 968 : free (interval_path);
1855 : 968 : free (cache_miss_path);
1856 : 968 : free (target_cache_dir);
1857 : 968 : free (target_cache_path);
1858 : 968 : free (target_cache_tmppath);
1859 : 968 : return rc;
1860 : : }
1861 : :
1862 : :
1863 : :
1864 : : /* See debuginfod.h */
1865 : : debuginfod_client *
1866 : 378 : debuginfod_begin (void)
1867 : : {
1868 : : /* Initialize libcurl lazily, but only once. */
1869 : 378 : pthread_once (&init_control, libcurl_init);
1870 : :
1871 : 378 : debuginfod_client *client;
1872 : 378 : size_t size = sizeof (struct debuginfod_client);
1873 : 378 : client = calloc (1, size);
1874 : :
1875 [ + - ]: 378 : if (client != NULL)
1876 : : {
1877 [ + + ]: 378 : if (getenv(DEBUGINFOD_PROGRESS_ENV_VAR))
1878 : 2 : client->progressfn = default_progressfn;
1879 [ + + ]: 378 : if (getenv(DEBUGINFOD_VERBOSE_ENV_VAR))
1880 : 2 : client->verbose_fd = STDERR_FILENO;
1881 : : else
1882 : 376 : client->verbose_fd = -1;
1883 : :
1884 : : // allocate 1 curl multi handle
1885 : 378 : client->server_mhandle = curl_multi_init ();
1886 [ - + ]: 378 : if (client->server_mhandle == NULL)
1887 : 0 : goto out1;
1888 : : }
1889 : :
1890 : : // extra future initialization
1891 : :
1892 : 378 : goto out;
1893 : :
1894 : 0 : out1:
1895 : 0 : free (client);
1896 : 0 : client = NULL;
1897 : :
1898 : 378 : out:
1899 : 378 : return client;
1900 : : }
1901 : :
1902 : : void
1903 : 352 : debuginfod_set_user_data(debuginfod_client *client,
1904 : : void *data)
1905 : : {
1906 : 352 : client->user_data = data;
1907 : 352 : }
1908 : :
1909 : : void *
1910 : 0 : debuginfod_get_user_data(debuginfod_client *client)
1911 : : {
1912 : 0 : return client->user_data;
1913 : : }
1914 : :
1915 : : const char *
1916 : 42 : debuginfod_get_url(debuginfod_client *client)
1917 : : {
1918 [ + + ]: 6 : return client->url;
1919 : : }
1920 : :
1921 : : const char *
1922 : 40 : debuginfod_get_headers(debuginfod_client *client)
1923 : : {
1924 : 40 : return client->winning_headers;
1925 : : }
1926 : :
1927 : : void
1928 : 378 : debuginfod_end (debuginfod_client *client)
1929 : : {
1930 [ + - ]: 378 : if (client == NULL)
1931 : : return;
1932 : :
1933 : 378 : curl_multi_cleanup (client->server_mhandle);
1934 : 378 : curl_slist_free_all (client->headers);
1935 : 378 : free (client->winning_headers);
1936 : 378 : free (client->url);
1937 : 378 : free (client);
1938 : : }
1939 : :
1940 : : int
1941 : 210 : debuginfod_find_debuginfo (debuginfod_client *client,
1942 : : const unsigned char *build_id, int build_id_len,
1943 : : char **path)
1944 : : {
1945 : 210 : return debuginfod_query_server(client, build_id, build_id_len,
1946 : : "debuginfo", NULL, path);
1947 : : }
1948 : :
1949 : :
1950 : : /* See debuginfod.h */
1951 : : int
1952 : 678 : debuginfod_find_executable(debuginfod_client *client,
1953 : : const unsigned char *build_id, int build_id_len,
1954 : : char **path)
1955 : : {
1956 : 678 : return debuginfod_query_server(client, build_id, build_id_len,
1957 : : "executable", NULL, path);
1958 : : }
1959 : :
1960 : : /* See debuginfod.h */
1961 : 64 : int debuginfod_find_source(debuginfod_client *client,
1962 : : const unsigned char *build_id, int build_id_len,
1963 : : const char *filename, char **path)
1964 : : {
1965 : 64 : return debuginfod_query_server(client, build_id, build_id_len,
1966 : : "source", filename, path);
1967 : : }
1968 : :
1969 : : int
1970 : 16 : debuginfod_find_section (debuginfod_client *client,
1971 : : const unsigned char *build_id, int build_id_len,
1972 : : const char *section, char **path)
1973 : : {
1974 : 16 : int rc = debuginfod_query_server(client, build_id, build_id_len,
1975 : : "section", section, path);
1976 [ - + ]: 16 : if (rc != -EINVAL)
1977 : : return rc;
1978 : :
1979 : : /* The servers may have lacked support for section queries. Attempt to
1980 : : download the debuginfo or executable containing the section in order
1981 : : to extract it. */
1982 : 0 : rc = -EEXIST;
1983 : 0 : int fd = -1;
1984 : 0 : char *tmp_path = NULL;
1985 : :
1986 : 0 : fd = debuginfod_find_debuginfo (client, build_id, build_id_len, &tmp_path);
1987 [ # # ]: 0 : if (client->progressfn_cancel)
1988 : : {
1989 [ # # ]: 0 : if (fd >= 0)
1990 : : {
1991 : : /* This shouldn't happen, but we'll check this condition
1992 : : just in case. */
1993 : 0 : close (fd);
1994 : 0 : free (tmp_path);
1995 : : }
1996 : 0 : return -ENOENT;
1997 : : }
1998 [ # # ]: 0 : if (fd >= 0)
1999 : : {
2000 : 0 : rc = extract_section (fd, section, tmp_path, path);
2001 : 0 : close (fd);
2002 : : }
2003 : :
2004 [ # # ]: 0 : if (rc == -EEXIST)
2005 : : {
2006 : : /* Either the debuginfo couldn't be found or the section should
2007 : : be in the executable. */
2008 : 0 : fd = debuginfod_find_executable (client, build_id,
2009 : : build_id_len, &tmp_path);
2010 [ # # ]: 0 : if (fd >= 0)
2011 : : {
2012 : 0 : rc = extract_section (fd, section, tmp_path, path);
2013 : 0 : close (fd);
2014 : : }
2015 : : else
2016 : : /* Update rc so that we return the most recent error code. */
2017 : : rc = fd;
2018 : : }
2019 : :
2020 : 0 : free (tmp_path);
2021 : 0 : return rc;
2022 : : }
2023 : :
2024 : : /* Add an outgoing HTTP header. */
2025 : 1588 : int debuginfod_add_http_header (debuginfod_client *client, const char* header)
2026 : : {
2027 : : /* Sanity check header value is of the form Header: Value.
2028 : : It should contain at least one colon that isn't the first or
2029 : : last character. */
2030 : 1588 : char *colon = strchr (header, ':'); /* first colon */
2031 : 1588 : if (colon == NULL /* present */
2032 [ + - ]: 1588 : || colon == header /* not at beginning - i.e., have a header name */
2033 [ + - ]: 1588 : || *(colon + 1) == '\0') /* not at end - i.e., have a value */
2034 : : /* NB: but it's okay for a value to contain other colons! */
2035 : : return -EINVAL;
2036 : :
2037 : 1588 : struct curl_slist *temp = curl_slist_append (client->headers, header);
2038 [ + - ]: 1588 : if (temp == NULL)
2039 : : return -ENOMEM;
2040 : :
2041 : : /* Track if User-Agent: is being set. If so, signal not to add the
2042 : : default one. */
2043 [ + + ]: 1588 : if (startswith (header, "User-Agent:"))
2044 : 970 : client->user_agent_set_p = 1;
2045 : :
2046 : 1588 : client->headers = temp;
2047 : 1588 : return 0;
2048 : : }
2049 : :
2050 : :
2051 : : void
2052 : 720 : debuginfod_set_progressfn(debuginfod_client *client,
2053 : : debuginfod_progressfn_t fn)
2054 : : {
2055 : 720 : client->progressfn = fn;
2056 : 720 : }
2057 : :
2058 : : void
2059 : 64 : debuginfod_set_verbose_fd(debuginfod_client *client, int fd)
2060 : : {
2061 : 64 : client->verbose_fd = fd;
2062 : 64 : }
2063 : :
2064 : : #endif /* DUMMY_LIBDEBUGINFOD */
|