Remove more unused code.
[oweals/opkg-lede.git] / libopkg / opkg_download.c
1 /* vi: set noexpandtab sw=4 sts=4: */
2 /* opkg_download.c - the opkg 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
21 #ifdef HAVE_CURL
22 #include <curl/curl.h>
23 #endif
24
25 #if defined(HAVE_SSLCURL) || defined(HAVE_OPENSSL)
26 #include <openssl/conf.h>
27 #include <openssl/evp.h>
28 #include <openssl/err.h>
29 #include <openssl/ssl.h>
30 #endif
31
32 #if defined(HAVE_GPGME)
33 #include <gpgme.h>
34 #elif defined(HAVE_OPENSSL)
35 #include <openssl/bio.h>
36 #include <openssl/objects.h>
37 #include <openssl/x509.h>
38 #include <openssl/pem.h>
39 #include <openssl/hmac.h>
40 #endif
41
42 #include "includes.h"
43 #include "opkg_download.h"
44 #include "opkg_message.h"
45
46 #include "sprintf_alloc.h"
47 #include "xsystem.h"
48 #include "file_util.h"
49 #include "str_util.h"
50 #include "opkg_defines.h"
51 #include "libbb/libbb.h"
52
53 #ifdef HAVE_PATHFINDER
54 #include "opkg_pathfinder.h"
55 #endif
56
57 #if defined(HAVE_OPENSSL) || defined(HAVE_SSLCURL)
58 static void openssl_init(void);
59 #endif
60
61 #ifdef HAVE_OPENSSL
62 static X509_STORE *setup_verify(opkg_conf_t *conf, char *CAfile, char *CApath);
63 #endif
64
65 #ifdef HAVE_CURL
66 /*
67  * Make curl an instance variable so we don't have to instanciate it
68  * each time
69  */
70 static CURL *curl = NULL;
71 static void opkg_curl_cleanup(void);
72 static CURL *opkg_curl_init(opkg_conf_t *conf, curl_progress_func cb, void *data);
73 #endif
74
75 int opkg_download(opkg_conf_t *conf, const char *src,
76   const char *dest_file_name, curl_progress_func cb, void *data)
77 {
78     int err = 0;
79
80     char *src_basec = xstrdup(src);
81     char *src_base = basename(src_basec);
82     char *tmp_file_location;
83
84     opkg_message(conf,OPKG_NOTICE,"Downloading %s\n", src);
85         
86     if (str_starts_with(src, "file:")) {
87         int ret;
88         const char *file_src = src + 5;
89         opkg_message(conf,OPKG_INFO,"Copying %s to %s...", file_src, dest_file_name);
90         ret = file_copy(src + 5, dest_file_name);
91         opkg_message(conf,OPKG_INFO,"Done\n");
92         free(src_basec);
93         return ret;
94     }
95
96     sprintf_alloc(&tmp_file_location, "%s/%s", conf->tmp_dir, src_base);
97     err = unlink(tmp_file_location);
98     if (err && errno != ENOENT) {
99         opkg_message(conf,OPKG_ERROR, "%s: ERROR: failed to unlink %s: %s\n",
100                 __FUNCTION__, tmp_file_location, strerror(errno));
101         free(tmp_file_location);
102         free(src_basec);
103         return errno;
104     }
105
106     if (conf->http_proxy) {
107         opkg_message(conf,OPKG_DEBUG,"Setting environment variable: http_proxy = %s\n", conf->http_proxy);
108         setenv("http_proxy", conf->http_proxy, 1);
109     }
110     if (conf->ftp_proxy) {
111         opkg_message(conf,OPKG_DEBUG,"Setting environment variable: ftp_proxy = %s\n", conf->ftp_proxy);
112         setenv("ftp_proxy", conf->ftp_proxy, 1);
113     }
114     if (conf->no_proxy) {
115         opkg_message(conf,OPKG_DEBUG,"Setting environment variable: no_proxy = %s\n", conf->no_proxy);
116         setenv("no_proxy", conf->no_proxy, 1);
117     }
118
119 #ifdef HAVE_CURL
120     CURL *curl;
121     CURLcode res;
122     FILE * file = fopen (tmp_file_location, "w");
123
124     curl = opkg_curl_init (conf, cb, data);
125     if (curl)
126     {
127         curl_easy_setopt (curl, CURLOPT_URL, src);
128         curl_easy_setopt (curl, CURLOPT_WRITEDATA, file);
129
130         res = curl_easy_perform (curl);
131         fclose (file);
132         if (res)
133         {
134             long error_code;
135             curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &error_code);
136             opkg_message(conf, OPKG_ERROR, "Failed to download %s. \nerror detail: %s\n", src, curl_easy_strerror(res));
137             free(tmp_file_location);
138             free(src_basec);
139             return res;
140         }
141
142     }
143     else
144     {
145         free(tmp_file_location);
146         free(src_basec);
147         return -1;
148     }
149 #else
150     {
151       int res;
152       char *wgetcmd;
153       char *wgetopts;
154       wgetopts = getenv("OPKG_WGETOPTS");
155       sprintf_alloc(&wgetcmd, "wget -q %s%s -O \"%s\" \"%s\"",
156                     (conf->http_proxy || conf->ftp_proxy) ? "-Y on " : "",
157                     (wgetopts!=NULL) ? wgetopts : "",
158                     tmp_file_location, src);
159       opkg_message(conf, OPKG_INFO, "Executing: %s\n", wgetcmd);
160       res = xsystem(wgetcmd);
161       free(wgetcmd);
162       if (res) {
163         opkg_message(conf, OPKG_ERROR, "Failed to download %s, error %d\n", src, res);
164         free(tmp_file_location);
165         free(src_basec);
166         return res;
167       }
168     }
169 #endif
170
171     err = file_move(tmp_file_location, dest_file_name);
172
173     free(tmp_file_location);
174     free(src_basec);
175
176     if (err) {
177         return err;
178     }
179
180     return 0;
181 }
182
183 static int opkg_download_cache(opkg_conf_t *conf, const char *src,
184   const char *dest_file_name, curl_progress_func cb, void *data)
185 {
186     char *cache_name = xstrdup(src);
187     char *cache_location, *p;
188     int err = 0;
189
190     if (!conf->cache || str_starts_with(src, "file:")) {
191         err = opkg_download(conf, src, dest_file_name, cb, data);
192         goto out1;
193     }
194
195     for (p = cache_name; *p; p++)
196         if (*p == '/')
197             *p = ',';   /* looks nicer than | or # */
198
199     sprintf_alloc(&cache_location, "%s/%s", conf->cache, cache_name);
200     if (file_exists(cache_location))
201         opkg_message(conf, OPKG_NOTICE, "Copying %s\n", cache_location);
202     else {
203         err = opkg_download(conf, src, cache_location, cb, data);
204         if (err) {
205             (void) unlink(cache_location);
206             goto out2;
207         }
208     }
209
210     err = file_copy(cache_location, dest_file_name);
211
212
213 out2:
214     free(cache_location);
215 out1:
216     free(cache_name);
217     return err;
218 }
219
220 int opkg_download_pkg(opkg_conf_t *conf, pkg_t *pkg, const char *dir)
221 {
222     int err;
223     char *url;
224     char *stripped_filename;
225
226     if (pkg->src == NULL) {
227         opkg_message(conf,OPKG_ERROR, "ERROR: Package %s (parent %s) is not available from any configured src.\n",
228                 pkg->name, pkg->parent->name);
229         return -1;
230     }
231     if (pkg->filename == NULL) {
232         opkg_message(conf,OPKG_ERROR, "ERROR: Package %s (parent %s) does not have a valid filename field.\n",pkg->name, pkg->parent->name);
233         return -1;
234     }
235
236     sprintf_alloc(&url, "%s/%s", pkg->src->value, pkg->filename);
237
238     /* XXX: BUG: The pkg->filename might be something like
239        "../../foo.opk". While this is correct, and exactly what we
240        want to use to construct url above, here we actually need to
241        use just the filename part, without any directory. */
242
243     stripped_filename = strrchr(pkg->filename, '/');
244     if ( ! stripped_filename )
245         stripped_filename = pkg->filename;
246
247     sprintf_alloc(&pkg->local_filename, "%s/%s", dir, stripped_filename);
248
249     err = opkg_download_cache(conf, url, pkg->local_filename, NULL, NULL);
250     free(url);
251
252     return err;
253 }
254
255 /*
256  * Downloads file from url, installs in package database, return package name. 
257  */
258 int opkg_prepare_url_for_install(opkg_conf_t *conf, const char *url, char **namep)
259 {
260      int err = 0;
261      pkg_t *pkg;
262      pkg = pkg_new();
263      if (pkg == NULL)
264           return ENOMEM;
265
266      if (str_starts_with(url, "http://")
267          || str_starts_with(url, "ftp://")) {
268           char *tmp_file;
269           char *file_basec = xstrdup(url);
270           char *file_base = basename(file_basec);
271
272           sprintf_alloc(&tmp_file, "%s/%s", conf->tmp_dir, file_base);
273           err = opkg_download(conf, url, tmp_file, NULL, NULL);
274           if (err)
275                return err;
276
277           err = pkg_init_from_file(pkg, tmp_file);
278           if (err)
279                return err;
280
281           free(tmp_file);
282           free(file_basec);
283
284      } else if (strcmp(&url[strlen(url) - 4], OPKG_PKG_EXTENSION) == 0
285                 || strcmp(&url[strlen(url) - 4], IPKG_PKG_EXTENSION) == 0
286                 || strcmp(&url[strlen(url) - 4], DPKG_PKG_EXTENSION) == 0) {
287
288           err = pkg_init_from_file(pkg, url);
289           if (err)
290                return err;
291           opkg_message(conf, OPKG_DEBUG2, "Package %s provided by hand (%s).\n", pkg->name,pkg->local_filename);
292           pkg->provided_by_hand = 1;
293
294      } else {
295        pkg_deinit(pkg);
296        free(pkg);
297        return 0;
298      }
299
300      if (!pkg->architecture) {
301           opkg_message(conf, OPKG_ERROR, "Package %s has no Architecture defined.\n", pkg->name);
302           return -EINVAL;
303      }
304
305      pkg->dest = conf->default_dest;
306      pkg->state_want = SW_INSTALL;
307      pkg->state_flag |= SF_PREFER;
308      pkg = hash_insert_pkg(&conf->pkg_hash, pkg, 1,conf);  
309
310      if (namep) {
311           *namep = xstrdup(pkg->name);
312      }
313      return 0;
314 }
315
316 int
317 opkg_verify_file (opkg_conf_t *conf, char *text_file, char *sig_file)
318 {
319 #if defined HAVE_GPGME
320     if (conf->check_signature == 0 )
321         return 0;
322     int status = -1;
323     gpgme_ctx_t ctx;
324     gpgme_data_t sig, text, key;
325     gpgme_error_t err = -1;
326     gpgme_verify_result_t result;
327     gpgme_signature_t s;
328     char *trusted_path = NULL;
329     
330     err = gpgme_new (&ctx);
331
332     if (err)
333         return -1;
334
335     sprintf_alloc(&trusted_path, "%s/%s", conf->offline_root, "/etc/opkg/trusted.gpg");
336     err = gpgme_data_new_from_file (&key, trusted_path, 1); 
337     free (trusted_path);
338     if (err)
339     {
340       return -1;
341     }
342     err = gpgme_op_import (ctx, key);
343     if (err)
344     {
345       gpgme_data_release (key);
346       return -1;
347     }
348     gpgme_data_release (key);
349
350     err = gpgme_data_new_from_file (&sig, sig_file, 1); 
351     if (err)
352     {
353         gpgme_release (ctx);
354         return -1;
355     }
356
357     err = gpgme_data_new_from_file (&text, text_file, 1); 
358     if (err)
359     {
360         gpgme_data_release (sig);
361         gpgme_release (ctx);
362         return -1;
363     }
364
365     err = gpgme_op_verify (ctx, sig, text, NULL);
366
367     result = gpgme_op_verify_result (ctx);
368     if (!result)
369         return -1;
370
371     /* see if any of the signitures matched */
372     s = result->signatures;
373     while (s)
374     {
375         status = gpg_err_code (s->status);
376         if (status == GPG_ERR_NO_ERROR)
377             break;
378         s = s->next;
379     }
380
381
382     gpgme_data_release (sig);
383     gpgme_data_release (text);
384     gpgme_release (ctx);
385
386     return status;
387 #elif defined HAVE_OPENSSL
388     X509_STORE *store = NULL;
389     PKCS7 *p7 = NULL;
390     BIO *in = NULL, *indata = NULL;
391
392     // Sig check failed by default !
393     int status = -1;
394
395     openssl_init();
396
397     // Set-up the key store
398     if(!(store = setup_verify(conf, conf->signature_ca_file, conf->signature_ca_path))){
399         opkg_message(conf, OPKG_ERROR,
400                 "Can't open CA certificates\n");
401         goto verify_file_end;
402     }
403
404     // Open a BIO to read the sig file
405     if (!(in = BIO_new_file(sig_file, "rb"))){
406         opkg_message(conf, OPKG_ERROR,
407                 "Can't open signature file %s\n", sig_file);
408         goto verify_file_end;
409     }
410
411     // Read the PKCS7 block contained in the sig file
412     p7 = PEM_read_bio_PKCS7(in, NULL, NULL, NULL);
413     if(!p7){
414         opkg_message(conf, OPKG_ERROR,
415                 "Can't read signature file (Corrupted ?)\n");
416         goto verify_file_end;
417     }
418 #if defined(HAVE_PATHFINDER)
419     if(conf->check_x509_path){
420         if(!pkcs7_pathfinder_verify_signers(p7)){
421             opkg_message(conf,  OPKG_ERROR, "pkcs7_pathfinder_verify_signers: "
422                     "Path verification failed\n");
423             goto verify_file_end;
424         }
425     }
426 #endif
427
428     // Open the Package file to authenticate
429     if (!(indata = BIO_new_file(text_file, "rb"))){
430         opkg_message(conf, OPKG_ERROR,
431                 "Can't open file %s\n", text_file);
432         goto verify_file_end;
433     }
434
435     // Let's verify the autenticity !
436     if (PKCS7_verify(p7, NULL, store, indata, NULL, PKCS7_BINARY) != 1){
437         // Get Off My Lawn!
438         opkg_message(conf, OPKG_ERROR,
439                 "Verification failure\n");
440     }else{
441         // Victory !
442         status = 0;
443     }
444
445 verify_file_end:
446     BIO_free(in);
447     BIO_free(indata);
448     PKCS7_free(p7);
449     X509_STORE_free(store);
450
451     return status;
452 #else
453     /* mute `unused variable' warnings. */
454     (void) sig_file;
455     (void) text_file;
456     (void) conf;
457     return 0;
458 #endif
459 }
460
461
462 #if defined(HAVE_OPENSSL) || defined(HAVE_SSLCURL)
463 static void openssl_init(void){
464     static int init = 0;
465
466     if(!init){
467         OPENSSL_config(NULL);
468         OpenSSL_add_all_algorithms();
469         ERR_load_crypto_strings();
470         init = 1;
471     }
472 }
473
474 #endif
475
476
477 #if defined HAVE_OPENSSL
478 static X509_STORE *setup_verify(opkg_conf_t *conf, char *CAfile, char *CApath){
479     X509_STORE *store = NULL;
480     X509_LOOKUP *lookup = NULL;
481
482     if(!(store = X509_STORE_new())){
483         // Something bad is happening...
484         goto end;
485     }
486
487     // adds the X509 file lookup method
488     lookup = X509_STORE_add_lookup(store,X509_LOOKUP_file());
489     if (lookup == NULL){
490         goto end;
491     }
492
493     // Autenticating against one CA file
494     if (CAfile) {
495         if(!X509_LOOKUP_load_file(lookup,CAfile,X509_FILETYPE_PEM)) {
496             // Invalid CA => Bye bye
497             opkg_message(conf, OPKG_ERROR,
498                     "Error loading file %s\n", CAfile);
499             goto end;
500         }
501     } else {
502         X509_LOOKUP_load_file(lookup,NULL,X509_FILETYPE_DEFAULT);
503     }
504
505     // Now look into CApath directory if supplied
506     lookup = X509_STORE_add_lookup(store,X509_LOOKUP_hash_dir());
507     if (lookup == NULL){
508         goto end;
509     }
510
511     if (CApath) {
512         if(!X509_LOOKUP_add_dir(lookup,CApath,X509_FILETYPE_PEM)) {
513             opkg_message(conf, OPKG_ERROR,
514                     "Error loading directory %s\n", CApath);
515             goto end;
516         }
517     } else {
518         X509_LOOKUP_add_dir(lookup,NULL,X509_FILETYPE_DEFAULT);
519     }
520
521     // All right !
522     ERR_clear_error();
523     return store;
524
525 end:
526
527     X509_STORE_free(store);
528     return NULL;
529
530 }
531
532 #endif
533
534 #ifdef HAVE_CURL
535 static void opkg_curl_cleanup(void){
536     if(curl != NULL){
537         curl_easy_cleanup (curl);
538         curl = NULL;
539     }
540 }
541
542 static CURL *opkg_curl_init(opkg_conf_t *conf, curl_progress_func cb, void *data){
543
544     if(curl == NULL){
545         curl = curl_easy_init();
546
547 #ifdef HAVE_SSLCURL
548         openssl_init();
549
550         if (conf->ssl_engine) {
551
552             /* use crypto engine */
553             if (curl_easy_setopt(curl, CURLOPT_SSLENGINE, conf->ssl_engine) != CURLE_OK){
554                 opkg_message(conf, OPKG_ERROR, "can't set crypto engine: '%s'\n",
555                         conf->ssl_engine);
556
557                 opkg_curl_cleanup();
558                 return NULL;
559             }
560             /* set the crypto engine as default */
561             if (curl_easy_setopt(curl, CURLOPT_SSLENGINE_DEFAULT, 1L) != CURLE_OK){
562                 opkg_message(conf, OPKG_ERROR, "can't set crypto engine as default\n");
563
564                 opkg_curl_cleanup();
565                 return NULL;
566             }
567         }
568
569         /* cert & key can only be in PEM case in the same file */
570         if(conf->ssl_key_passwd){
571             if (curl_easy_setopt(curl, CURLOPT_SSLKEYPASSWD, conf->ssl_key_passwd) != CURLE_OK)
572             {
573                 opkg_message(conf, OPKG_DEBUG, "Failed to set key password\n");
574             }
575         }
576
577         /* sets the client certificate and its type */
578         if(conf->ssl_cert_type){
579             if (curl_easy_setopt(curl, CURLOPT_SSLCERTTYPE, conf->ssl_cert_type) != CURLE_OK)
580             {
581                 opkg_message(conf, OPKG_DEBUG, "Failed to set certificate format\n");
582             }
583         }
584         /* SSL cert name isn't mandatory */
585         if(conf->ssl_cert){
586                 curl_easy_setopt(curl, CURLOPT_SSLCERT, conf->ssl_cert);
587         }
588
589         /* sets the client key and its type */
590         if(conf->ssl_key_type){
591             if (curl_easy_setopt(curl, CURLOPT_SSLKEYTYPE, conf->ssl_key_type) != CURLE_OK)
592             {
593                 opkg_message(conf, OPKG_DEBUG, "Failed to set key format\n");
594             }
595         }
596         if(conf->ssl_key){
597             if (curl_easy_setopt(curl, CURLOPT_SSLKEY, conf->ssl_key) != CURLE_OK)
598             {
599                 opkg_message(conf, OPKG_DEBUG, "Failed to set key\n");
600             }
601         }
602
603         /* Should we verify the peer certificate ? */
604         if(conf->ssl_dont_verify_peer){
605             /*
606              * CURLOPT_SSL_VERIFYPEER default is nonzero (curl => 7.10)
607              */
608             curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0);
609         }else{
610 #ifdef HAVE_PATHFINDER
611             if(conf->check_x509_path){
612                 if (curl_easy_setopt(curl, CURLOPT_SSL_CTX_FUNCTION, curl_ssl_ctx_function) != CURLE_OK){
613                     opkg_message(conf, OPKG_DEBUG, "Failed to set ssl path verification callback\n");
614                 }else{
615                     curl_easy_setopt(curl, CURLOPT_SSL_CTX_DATA, NULL);
616                 }
617             }
618 #endif
619         }
620
621         /* certification authority file and/or path */
622         if(conf->ssl_ca_file){
623             curl_easy_setopt(curl, CURLOPT_CAINFO, conf->ssl_ca_file);
624         }
625         if(conf->ssl_ca_path){
626             curl_easy_setopt(curl, CURLOPT_CAPATH, conf->ssl_ca_path);
627         }
628 #endif
629
630         curl_easy_setopt (curl, CURLOPT_FOLLOWLOCATION, 1);
631         curl_easy_setopt (curl, CURLOPT_FAILONERROR, 1);
632         if (conf->http_proxy || conf->ftp_proxy)
633         {
634             char *userpwd;
635             sprintf_alloc (&userpwd, "%s:%s", conf->proxy_user,
636                     conf->proxy_passwd);
637             curl_easy_setopt(curl, CURLOPT_PROXYUSERPWD, userpwd);
638             free (userpwd);
639         }
640
641         /* add curl cleanup callback */
642         if(!atexit(opkg_curl_cleanup)){
643             opkg_message(conf,OPKG_DEBUG, "Failed to register atexit curl cleanup function\n");
644         }
645
646     }
647
648     curl_easy_setopt (curl, CURLOPT_NOPROGRESS, (cb == NULL));
649     if (cb)
650     {
651         curl_easy_setopt (curl, CURLOPT_PROGRESSDATA, data);
652         curl_easy_setopt (curl, CURLOPT_PROGRESSFUNCTION, cb);
653     }
654
655     return curl;
656
657 }
658 #endif