opkg: remove some printfs and replace with opkg_message where appropriate
[project/opkg-lede.git] / libopkg / opkg_download.c
1 /* vi: set noexpandtab sw=4 sts=4: */
2 /* opkg_download.c - the itsy package management system
3
4 Carl D. Worth
5
6 Copyright (C) 2001 University of Southern California
7 Copyright (C) 2008 OpenMoko Inc
8
9 This program is free software; you can redistribute it and/or
10 modify it under the terms of the GNU General Public License as
11 published by the Free Software Foundation; either version 2, or (at
12 your option) any later version.
13
14 This program is distributed in the hope that it will be useful, but
15 WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 General Public License for more details.
18 */
19 #include "config.h"
20 #include <curl/curl.h>
21 #ifdef HAVE_GPGME
22 #include <gpgme.h>
23 #endif
24
25 #include "opkg.h"
26 #include "opkg_download.h"
27 #include "opkg_message.h"
28 #include "opkg_state.h"
29
30 #include "sprintf_alloc.h"
31 #include "xsystem.h"
32 #include "file_util.h"
33 #include "str_util.h"
34
35 #include "libopkg.h"
36 opkg_download_progress_callback opkg_cb_download_progress = NULL;
37
38 int
39 curl_progress_func (char* url,
40 double t, /* dltotal */
41 double d, /* dlnow */
42 double ultotal,
43 double ulnow)
44 {
45 int i;
46 int p = (t) ? d*100/t : 0;
47
48 if (opkg_cb_download_progress)
49 {
50 static int prev = -1;
51
52 /* don't report the same percentage multiple times
53 * (this can occur due to rounding) */
54 if (prev == p)
55 return 0;
56 prev = p;
57
58 opkg_cb_download_progress (p, url);
59 return 0;
60 }
61
62 /* skip progress bar if we haven't done started yet
63 * this prevents drawing the progress bar if we receive an error such as
64 * file not found */
65 if (t == 0)
66 return 0;
67
68 printf ("\r%3d%% |", p);
69 for (i = 1; i < 73; i++)
70 {
71 if (i <= p * 0.73)
72 printf ("=");
73 else
74 printf ("-");
75 }
76 printf ("|");
77 fflush(stdout);
78 return 0;
79 }
80
81 int opkg_download(opkg_conf_t *conf, const char *src, const char *dest_file_name)
82 {
83 int err = 0;
84
85 char *src_basec = strdup(src);
86 char *src_base = basename(src_basec);
87 char *tmp_file_location;
88
89 opkg_message(conf,OPKG_NOTICE,"Downloading %s\n", src);
90
91 fflush(stdout);
92
93 if (str_starts_with(src, "file:")) {
94 int ret;
95 const char *file_src = src + 5;
96 opkg_message(conf,OPKG_INFO,"Copying %s to %s...", file_src, dest_file_name);
97 ret = file_copy(src + 5, dest_file_name);
98 opkg_message(conf,OPKG_INFO,"Done\n");
99 return ret;
100 }
101
102 sprintf_alloc(&tmp_file_location, "%s/%s", conf->tmp_dir, src_base);
103 err = unlink(tmp_file_location);
104 if (err && errno != ENOENT) {
105 opkg_message(conf,OPKG_ERROR, "%s: ERROR: failed to unlink %s: %s\n",
106 __FUNCTION__, tmp_file_location, strerror(errno));
107 free(tmp_file_location);
108 return errno;
109 }
110
111 if (conf->http_proxy) {
112 opkg_message(conf,OPKG_DEBUG,"Setting environment variable: http_proxy = %s\n", conf->http_proxy);
113 setenv("http_proxy", conf->http_proxy, 1);
114 }
115 if (conf->ftp_proxy) {
116 opkg_message(conf,OPKG_DEBUG,"Setting environment variable: ftp_proxy = %s\n", conf->ftp_proxy);
117 setenv("ftp_proxy", conf->ftp_proxy, 1);
118 }
119 if (conf->no_proxy) {
120 opkg_message(conf,OPKG_DEBUG,"Setting environment variable: no_proxy = %s\n", conf->no_proxy);
121 setenv("no_proxy", conf->no_proxy, 1);
122 }
123
124 /* XXX: BUG rewrite to use execvp or else busybox's internal wget -Jamey 7/23/2002 */
125 #if 0
126 sprintf_alloc(&cmd, "wget --passive-ftp %s %s%s %s%s %s -P %s %s",
127 (conf->http_proxy || conf->ftp_proxy) ? "--proxy=on" : "",
128 conf->proxy_user ? "--proxy-user=" : "",
129 conf->proxy_user ? conf->proxy_user : "",
130 conf->proxy_passwd ? "--proxy-passwd=" : "",
131 conf->proxy_passwd ? conf->proxy_passwd : "",
132 conf->verbose_wget ? "" : "-q",
133 conf->tmp_dir,
134 src);
135 err = xsystem(cmd);
136 if (err) {
137 if (err != -1) {
138 opkg_message(conf,OPKG_ERROR, "%s: ERROR: Command failed with return value %d: `%s'\n",
139 __FUNCTION__, err, cmd);
140 }
141 unlink(tmp_file_location);
142 free(tmp_file_location);
143 free(src_basec);
144 free(cmd);
145 return EINVAL;
146 }
147 free(cmd);
148 #endif
149 CURL *curl;
150 CURLcode res;
151 FILE * file = fopen (tmp_file_location, "w");
152
153 curl = curl_easy_init ();
154 if (curl)
155 {
156 curl_easy_setopt (curl, CURLOPT_URL, src);
157 curl_easy_setopt (curl, CURLOPT_WRITEDATA, file);
158 curl_easy_setopt (curl, CURLOPT_NOPROGRESS, 0);
159 curl_easy_setopt (curl, CURLOPT_PROGRESSDATA, src);
160 curl_easy_setopt (curl, CURLOPT_PROGRESSFUNCTION, curl_progress_func);
161 curl_easy_setopt (curl, CURLOPT_FAILONERROR, 1);
162 if (conf->http_proxy || conf->ftp_proxy)
163 {
164 char *userpwd;
165 sprintf_alloc (&userpwd, "%s:%s", conf->proxy_user,
166 conf->proxy_passwd);
167 curl_easy_setopt(curl, CURLOPT_PROXYUSERPWD, userpwd);
168 free (userpwd);
169 }
170 res = curl_easy_perform (curl);
171 curl_easy_cleanup (curl);
172 fclose (file);
173 if (res)
174 {
175 long error_code;
176 curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &error_code);
177 opkg_message(conf, OPKG_ERROR, "Failed to download %s, error %d\n", src, error_code);
178 return res;
179 }
180
181 }
182 else
183 return -1;
184
185 /* if no custom progress handler was set, we need to clear the default progress bar */
186 if (!opkg_cb_download_progress)
187 printf ("\n");
188
189 err = file_move(tmp_file_location, dest_file_name);
190
191 free(tmp_file_location);
192 free(src_basec);
193
194 if (err) {
195 return err;
196 }
197
198 return 0;
199 }
200
201 int opkg_download_pkg(opkg_conf_t *conf, pkg_t *pkg, const char *dir)
202 {
203 int err;
204 char *url;
205 char *pkgid;
206
207 if (pkg->src == NULL) {
208 opkg_message(conf,OPKG_ERROR, "ERROR: Package %s (parent %s) is not available from any configured src.\n",
209 pkg->name, pkg->parent->name);
210 return -1;
211 }
212
213 sprintf_alloc (&pkgid, "%s;%s;%s;", pkg->name, pkg->version, pkg->architecture);
214 opkg_set_current_state (conf, OPKG_STATE_DOWNLOADING_PKG, pkgid);
215 free (pkgid);
216
217 sprintf_alloc(&url, "%s/%s", pkg->src->value, pkg->filename);
218
219 /* XXX: BUG: The pkg->filename might be something like
220 "../../foo.ipk". While this is correct, and exactly what we
221 want to use to construct url above, here we actually need to
222 use just the filename part, without any directory. */
223 sprintf_alloc(&pkg->local_filename, "%s/%s", dir, pkg->filename);
224
225 err = opkg_download(conf, url, pkg->local_filename);
226 free(url);
227
228 opkg_set_current_state (conf, OPKG_STATE_NONE, NULL);
229 return err;
230 }
231
232 /*
233 * Downloads file from url, installs in package database, return package name.
234 */
235 int opkg_prepare_url_for_install(opkg_conf_t *conf, const char *url, char **namep)
236 {
237 int err = 0;
238 pkg_t *pkg;
239 pkg = pkg_new();
240 if (pkg == NULL)
241 return ENOMEM;
242
243 if (str_starts_with(url, "http://")
244 || str_starts_with(url, "ftp://")) {
245 char *tmp_file;
246 char *file_basec = strdup(url);
247 char *file_base = basename(file_basec);
248
249 sprintf_alloc(&tmp_file, "%s/%s", conf->tmp_dir, file_base);
250 err = opkg_download(conf, url, tmp_file);
251 if (err)
252 return err;
253
254 err = pkg_init_from_file(pkg, tmp_file);
255 if (err)
256 return err;
257 pkg->local_filename = strdup(tmp_file);
258
259 free(tmp_file);
260 free(file_basec);
261
262 } else if (strcmp(&url[strlen(url) - 4], OPKG_PKG_EXTENSION) == 0
263 || strcmp(&url[strlen(url) - 4], DPKG_PKG_EXTENSION) == 0) {
264
265 err = pkg_init_from_file(pkg, url);
266 if (err)
267 return err;
268 pkg->local_filename = strdup(url);
269 opkg_message(conf, OPKG_DEBUG2, "Package %s provided by hand (%s).\n", pkg->name,pkg->local_filename);
270 pkg->provided_by_hand = 1;
271
272 } else {
273 pkg_deinit(pkg);
274 free(pkg);
275 return 0;
276 }
277
278 if (!pkg->architecture) {
279 opkg_message(conf, OPKG_ERROR, "Package %s has no Architecture defined.\n", pkg->name);
280 return -EINVAL;
281 }
282
283 pkg->dest = conf->default_dest;
284 pkg->state_want = SW_INSTALL;
285 pkg->state_flag |= SF_PREFER;
286 pkg = hash_insert_pkg(&conf->pkg_hash, pkg, 1,conf);
287 if ( pkg == NULL ){
288 fprintf(stderr, "%s : This should never happen. Report this Bug in bugzilla please \n ",__FUNCTION__);
289 return 0;
290 }
291 if (namep) {
292 *namep = strdup(pkg->name);
293 }
294 return 0;
295 }
296
297 int
298 opkg_verify_file (opkg_conf_t *conf, char *text_file, char *sig_file)
299 {
300 #ifdef HAVE_GPGME
301 int status = -1;
302 gpgme_ctx_t ctx;
303 gpgme_data_t sig, text;
304 gpgme_error_t err = -1;
305 gpgme_verify_result_t result;
306 gpgme_signature_t s;
307
308 err = gpgme_new (&ctx);
309
310 if (err)
311 return -1;
312
313 err = gpgme_data_new_from_file (&sig, sig_file, 1);
314 if (err)
315 return -1;
316
317 err = gpgme_data_new_from_file (&text, text_file, 1);
318 if (err)
319 return -1;
320
321 err = gpgme_op_verify (ctx, sig, text, NULL);
322
323 result = gpgme_op_verify_result (ctx);
324
325 /* see if any of the signitures matched */
326 s = result->signatures;
327 while (s)
328 {
329 status = gpg_err_code (s->status);
330 if (status == GPG_ERR_NO_ERROR)
331 break;
332 s = s->next;
333 }
334
335 gpgme_data_release (sig);
336 gpgme_data_release (text);
337 gpgme_release (ctx);
338
339 return status;
340 #else
341 opkg_message (conf, OPKG_NOTICE, "Signature check for %s was skipped because GPG support was not enabled in this build\n");
342 return 0;
343 #endif
344 }