]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/debuginfod-support.c
Update copyright year range in all GDB files
[thirdparty/binutils-gdb.git] / gdb / debuginfod-support.c
CommitLineData
0d79cdc4 1/* debuginfod utilities for GDB.
3666a048 2 Copyright (C) 2020-2021 Free Software Foundation, Inc.
0d79cdc4
AM
3
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
18
0d79cdc4 19#include "defs.h"
a84bb2a0 20#include <errno.h>
0d79cdc4
AM
21#include "cli/cli-style.h"
22#include "gdbsupport/scoped_fd.h"
23#include "debuginfod-support.h"
d6f26c9d 24#include "gdbsupport/gdb_optional.h"
0d79cdc4
AM
25
26#ifndef HAVE_LIBDEBUGINFOD
27scoped_fd
28debuginfod_source_query (const unsigned char *build_id,
29 int build_id_len,
30 const char *srcpath,
31 gdb::unique_xmalloc_ptr<char> *destname)
32{
33 return scoped_fd (-ENOSYS);
34}
35
36scoped_fd
37debuginfod_debuginfo_query (const unsigned char *build_id,
38 int build_id_len,
39 const char *filename,
40 gdb::unique_xmalloc_ptr<char> *destname)
41{
42 return scoped_fd (-ENOSYS);
43}
44#else
45#include <elfutils/debuginfod.h>
46
002a3166
AM
47struct user_data
48{
49 user_data (const char *desc, const char *fname)
d6f26c9d 50 : desc (desc), fname (fname)
002a3166
AM
51 { }
52
53 const char * const desc;
54 const char * const fname;
d6f26c9d 55 gdb::optional<ui_out::progress_meter> meter;
002a3166 56};
0d79cdc4 57
d2b31b67
SM
58/* Deleter for a debuginfod_client. */
59
60struct debuginfod_client_deleter
61{
62 void operator() (debuginfod_client *c)
63 {
64 debuginfod_end (c);
65 }
66};
67
68using debuginfod_client_up
69 = std::unique_ptr<debuginfod_client, debuginfod_client_deleter>;
70
0d79cdc4
AM
71static int
72progressfn (debuginfod_client *c, long cur, long total)
73{
002a3166
AM
74 user_data *data = static_cast<user_data *> (debuginfod_get_user_data (c));
75
0d79cdc4
AM
76 if (check_quit_flag ())
77 {
78 printf_filtered ("Cancelling download of %s %ps...\n",
002a3166
AM
79 data->desc,
80 styled_string (file_name_style.style (), data->fname));
0d79cdc4
AM
81 return 1;
82 }
83
d6f26c9d
ML
84 if (total == 0)
85 return 0;
86
87 if (!data->meter.has_value ())
0d79cdc4 88 {
d6f26c9d
ML
89 float size_in_mb = 1.0f * total / (1024 * 1024);
90 string_file styled_filename (current_uiout->can_emit_style_escape ());
91 fprintf_styled (&styled_filename,
92 file_name_style.style (),
93 "%s",
94 data->fname);
95 std::string message
96 = string_printf ("Downloading %.2f MB %s %s", size_in_mb, data->desc,
97 styled_filename.c_str());
98 data->meter.emplace (current_uiout, message, 1);
0d79cdc4
AM
99 }
100
d6f26c9d
ML
101 current_uiout->progress ((double)cur / (double)total);
102
0d79cdc4
AM
103 return 0;
104}
105
d2b31b67 106static debuginfod_client_up
0d79cdc4
AM
107debuginfod_init ()
108{
d2b31b67 109 debuginfod_client_up c (debuginfod_begin ());
0d79cdc4
AM
110
111 if (c != nullptr)
d2b31b67 112 debuginfod_set_progressfn (c.get (), progressfn);
0d79cdc4
AM
113
114 return c;
115}
116
117/* See debuginfod-support.h */
118
119scoped_fd
120debuginfod_source_query (const unsigned char *build_id,
121 int build_id_len,
122 const char *srcpath,
123 gdb::unique_xmalloc_ptr<char> *destname)
124{
c44191f8
TV
125 const char *urls_env_var = getenv (DEBUGINFOD_URLS_ENV_VAR);
126 if (urls_env_var == NULL || urls_env_var[0] == '\0')
0d79cdc4
AM
127 return scoped_fd (-ENOSYS);
128
d2b31b67 129 debuginfod_client_up c = debuginfod_init ();
0d79cdc4
AM
130
131 if (c == nullptr)
132 return scoped_fd (-ENOMEM);
133
002a3166 134 user_data data ("source file", srcpath);
0d79cdc4 135
d2b31b67
SM
136 debuginfod_set_user_data (c.get (), &data);
137 scoped_fd fd (debuginfod_find_source (c.get (),
0d79cdc4
AM
138 build_id,
139 build_id_len,
140 srcpath,
141 nullptr));
142
143 /* TODO: Add 'set debug debuginfod' command to control when error messages are shown. */
144 if (fd.get () < 0 && fd.get () != -ENOENT)
145 printf_filtered (_("Download failed: %s. Continuing without source file %ps.\n"),
146 safe_strerror (-fd.get ()),
147 styled_string (file_name_style.style (), srcpath));
d6ab69dd
TV
148
149 if (fd.get () >= 0)
3246bd8e 150 *destname = make_unique_xstrdup (srcpath);
0d79cdc4 151
0d79cdc4
AM
152 return fd;
153}
154
155/* See debuginfod-support.h */
156
157scoped_fd
158debuginfod_debuginfo_query (const unsigned char *build_id,
159 int build_id_len,
160 const char *filename,
161 gdb::unique_xmalloc_ptr<char> *destname)
162{
c44191f8
TV
163 const char *urls_env_var = getenv (DEBUGINFOD_URLS_ENV_VAR);
164 if (urls_env_var == NULL || urls_env_var[0] == '\0')
0d79cdc4
AM
165 return scoped_fd (-ENOSYS);
166
d2b31b67 167 debuginfod_client_up c = debuginfod_init ();
0d79cdc4
AM
168
169 if (c == nullptr)
170 return scoped_fd (-ENOMEM);
171
0d79cdc4 172 char *dname = nullptr;
002a3166 173 user_data data ("separate debug info for", filename);
0d79cdc4 174
d2b31b67
SM
175 debuginfod_set_user_data (c.get (), &data);
176 scoped_fd fd (debuginfod_find_debuginfo (c.get (), build_id, build_id_len,
177 &dname));
0d79cdc4
AM
178
179 if (fd.get () < 0 && fd.get () != -ENOENT)
180 printf_filtered (_("Download failed: %s. Continuing without debug info for %ps.\n"),
181 safe_strerror (-fd.get ()),
182 styled_string (file_name_style.style (), filename));
183
d6ab69dd
TV
184 if (fd.get () >= 0)
185 destname->reset (dname);
d2b31b67 186
0d79cdc4
AM
187 return fd;
188}
189#endif