]> git.street.me.uk Git - andy/viking.git/blame - src/download.c
Replace defunct IP to location lookup service.
[andy/viking.git] / src / download.c
CommitLineData
a3697549 1/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
85611cd9
GB
2/*
3 * viking -- GPS Data and Topo Analyzer, Explorer, and Manager
4 *
5 * Copyright (C) 2003-2005, Evan Battaglia <gtoevan@gmx.net>
a482007a 6 * Copyright (C) 2007, Guilhem Bonnefille <guilhem.bonnefille@gmail.com>
a3697549 7 * Copyright (C) 2013, Rob Norris <rw_norris@hotmail.com>
85611cd9
GB
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 *
23 */
24
3292ba8b
GB
25#ifdef HAVE_CONFIG_H
26#include "config.h"
27#endif
28
932f8f22 29#include <stdio.h>
6e78a423 30#include <ctype.h>
6a4a29aa 31#include <errno.h>
6e78a423 32#include <string.h>
7de36baf 33#ifdef HAVE_SYS_TYPES_H
6a4a29aa 34#include <sys/types.h>
7de36baf
GB
35#endif
36#ifdef HAVE_UTIME_H
6a4a29aa 37#include <utime.h>
7de36baf 38#endif
f83131b9
MA
39#include <glib.h>
40#include <glib/gstdio.h>
4c77d5e0 41#include <glib/gi18n.h>
932f8f22 42
5c1cf59f 43#include "file_magic.h"
a3697549 44#include "compression.h"
85611cd9 45#include "download.h"
3292ba8b 46
3292ba8b 47#include "curl_download.h"
6693f5f9
GB
48#include "preferences.h"
49#include "globals.h"
fc6640a9 50#include "vik_compat.h"
85611cd9 51
388cf5a4 52static gboolean check_file_first_line(FILE* f, gchar *patterns[])
6e78a423 53{
533bbf34
MA
54 gchar **s;
55 gchar *bp;
6e78a423 56 fpos_t pos;
533bbf34 57 gchar buf[33];
6e78a423 58 size_t nr;
6e78a423 59
c44594ee 60 memset(buf, 0, sizeof(buf));
fd437981
RN
61 if ( !fgetpos(f, &pos) )
62 return FALSE;
6e78a423
QT
63 rewind(f);
64 nr = fread(buf, 1, sizeof(buf) - 1, f);
fd437981
RN
65 if ( !fgetpos(f, &pos) )
66 return FALSE;
6e78a423
QT
67 for (bp = buf; (bp < (buf + sizeof(buf) - 1)) && (nr > (bp - buf)); bp++) {
68 if (!(isspace(*bp)))
69 break;
70 }
71 if ((bp >= (buf + sizeof(buf) -1)) || ((bp - buf) >= nr))
1ac37c09 72 return FALSE;
388cf5a4 73 for (s = patterns; *s; s++) {
1918a993 74 if (strncasecmp(*s, bp, strlen(*s)) == 0)
1ac37c09 75 return TRUE;
6e78a423 76 }
1ac37c09
GB
77 return FALSE;
78}
79
388cf5a4
GB
80gboolean a_check_html_file(FILE* f)
81{
82 gchar * html_str[] = {
83 "<html",
84 "<!DOCTYPE html",
85 "<head",
86 "<title",
87 NULL
88 };
89
90 return check_file_first_line(f, html_str);
91}
92
1ac37c09
GB
93gboolean a_check_map_file(FILE* f)
94{
388cf5a4 95 /* FIXME no more true since a_check_kml_file */
1ac37c09 96 return !a_check_html_file(f);
6e78a423
QT
97}
98
ae941b4c
HMJ
99gboolean a_check_kml_file(FILE* f)
100{
388cf5a4 101 gchar * kml_str[] = {
ae941b4c
HMJ
102 "<?xml",
103 NULL
104 };
105
388cf5a4 106 return check_file_first_line(f, kml_str);
ae941b4c
HMJ
107}
108
4b992365
GB
109static GList *file_list = NULL;
110static GMutex *file_list_mutex = NULL;
111
6693f5f9 112/* spin button scales */
32dfea86
RN
113static VikLayerParamScale params_scales[] = {
114 {1, 365, 1, 0}, /* download_tile_age */
6693f5f9
GB
115};
116
32dfea86
RN
117static VikLayerParamData convert_to_display ( VikLayerParamData value )
118{
119 // From seconds into days
120 return VIK_LPD_UINT ( value.u / 86400 );
121}
122
123static VikLayerParamData convert_to_internal ( VikLayerParamData value )
124{
125 // From days into seconds
126 return VIK_LPD_UINT ( 86400 * value.u );
127}
128
6693f5f9 129static VikLayerParam prefs[] = {
32dfea86 130 { VIK_LAYER_NUM_TYPES, VIKING_PREFERENCES_NAMESPACE "download_tile_age", VIK_LAYER_PARAM_UINT, VIK_LAYER_GROUP_NONE, N_("Tile age (days):"), VIK_LAYER_WIDGET_SPINBUTTON, &params_scales[0], NULL, NULL, NULL, convert_to_display, convert_to_internal },
6693f5f9
GB
131};
132
4b992365
GB
133void a_download_init (void)
134{
6693f5f9 135 VikLayerParamData tmp;
32dfea86 136 tmp.u = VIK_CONFIG_DEFAULT_TILE_AGE / 86400; // Now in days
6693f5f9 137 a_preferences_register(prefs, tmp, VIKING_PREFERENCES_GROUP_KEY);
fc6640a9 138 file_list_mutex = vik_mutex_new();
e3da2277 139}
6693f5f9 140
e3da2277
RN
141void a_download_uninit (void)
142{
143 vik_mutex_free(file_list_mutex);
4b992365
GB
144}
145
146static gboolean lock_file(const char *fn)
147{
148 gboolean locked = FALSE;
149 g_mutex_lock(file_list_mutex);
2894744e 150 if (g_list_find_custom(file_list, fn, (GCompareFunc)g_strcmp0) == NULL)
4b992365
GB
151 {
152 // The filename is not yet locked
153 file_list = g_list_append(file_list, (gpointer)fn),
154 locked = TRUE;
155 }
156 g_mutex_unlock(file_list_mutex);
157 return locked;
158}
159
160static void unlock_file(const char *fn)
161{
162 g_mutex_lock(file_list_mutex);
163 file_list = g_list_remove(file_list, (gconstpointer)fn);
164 g_mutex_unlock(file_list_mutex);
165}
166
feef2120
RN
167/**
168 * Unzip a file - replacing the file with the unzipped contents of the self
169 */
a3697549
RN
170static void uncompress_zip ( gchar *name )
171{
172 GError *error = NULL;
173 GMappedFile *mf;
174
175 if ((mf = g_mapped_file_new ( name, FALSE, &error )) == NULL) {
176 g_critical(_("Couldn't map file %s: %s"), name, error->message);
177 g_error_free(error);
178 return;
179 }
180 gchar *file_contents = g_mapped_file_get_contents ( mf );
181
182 void *unzip_mem = NULL;
183 gulong ucsize;
184
185 if ((unzip_mem = unzip_file (file_contents, &ucsize)) == NULL) {
186 g_mapped_file_unref ( mf );
187 return;
188 }
189
feef2120 190 // This overwrites any previous file contents
a3697549
RN
191 if ( ! g_file_set_contents ( name, unzip_mem, ucsize, &error ) ) {
192 g_critical ( "Couldn't write file '%s', because of %s", name, error->message );
193 g_error_free ( error );
194 }
195}
196
197/**
198 * a_try_decompress_file:
199 * @name: The potentially compressed filename
200 *
201 * Perform magic to decide how which type of decompression to attempt
202 */
203void a_try_decompress_file (gchar *name)
204{
5c1cf59f 205 if ( file_magic_check (name, "application/zip", ".zip") ) {
a3697549
RN
206 uncompress_zip ( name );
207 }
5c1cf59f 208 else if ( file_magic_check (name, "application/x-bzip2", ".bz2") ) {
a3697549 209 gchar* bz2_name = uncompress_bzip2 ( name );
7184955f
RN
210 if ( bz2_name ) {
211 if ( g_remove ( name ) )
212 g_critical ("%s: remove file failed [%s]", __FUNCTION__, name );
213 if ( g_rename (bz2_name, name) )
214 g_critical ("%s: file rename failed [%s] to [%s]", __FUNCTION__, bz2_name, name );
215 }
a3697549 216 }
a3697549
RN
217}
218
fed82438
SW
219#define VIKING_ETAG_XATTR "xattr::viking.etag"
220
686baff0 221static gboolean get_etag_xattr(const char *fn, CurlDownloadOptions *cdo)
fed82438
SW
222{
223 gboolean result = FALSE;
224 GFileInfo *fileinfo;
225 GFile *file;
226
227 file = g_file_new_for_path(fn);
228 fileinfo = g_file_query_info(file, VIKING_ETAG_XATTR, G_FILE_QUERY_INFO_NONE, NULL, NULL);
229 if (fileinfo) {
230 const char *etag = g_file_info_get_attribute_string(fileinfo, VIKING_ETAG_XATTR);
231 if (etag) {
686baff0
RN
232 cdo->etag = g_strdup(etag);
233 result = !!cdo->etag;
fed82438
SW
234 }
235 g_object_unref(fileinfo);
236 }
237 g_object_unref(file);
238
239 if (result)
686baff0 240 g_debug("%s: Get etag (xattr) from %s: %s", __FUNCTION__, fn, cdo->etag);
fed82438
SW
241
242 return result;
243}
244
686baff0 245static gboolean get_etag_file(const char *fn, CurlDownloadOptions *cdo)
fed82438
SW
246{
247 gboolean result = FALSE;
248 gchar *etag_filename;
249
250 etag_filename = g_strdup_printf("%s.etag", fn);
251 if (etag_filename) {
686baff0 252 result = g_file_get_contents(etag_filename, &cdo->etag, NULL, NULL);
fed82438
SW
253 g_free(etag_filename);
254 }
255
256 if (result)
686baff0 257 g_debug("%s: Get etag (file) from %s: %s", __FUNCTION__, fn, cdo->etag);
fed82438
SW
258
259 return result;
260}
261
686baff0 262static void get_etag(const char *fn, CurlDownloadOptions *cdo)
fed82438
SW
263{
264 /* first try to get etag from xattr, then fall back to plain file */
686baff0 265 if (!get_etag_xattr(fn, cdo) && !get_etag_file(fn, cdo)) {
fed82438
SW
266 g_debug("%s: Failed to get etag from %s", __FUNCTION__, fn);
267 return;
268 }
269
270 /* check if etag is short enough */
686baff0
RN
271 if (strlen(cdo->etag) > 100) {
272 g_free(cdo->etag);
273 cdo->etag = NULL;
fed82438
SW
274 }
275
276 /* TODO: should check that etag is a valid string */
277}
278
686baff0 279static gboolean set_etag_xattr(const char *fn, CurlDownloadOptions *cdo)
fed82438
SW
280{
281 gboolean result = FALSE;
282 GFile *file;
283
284 file = g_file_new_for_path(fn);
686baff0 285 result = g_file_set_attribute_string(file, VIKING_ETAG_XATTR, cdo->new_etag, G_FILE_QUERY_INFO_NONE, NULL, NULL);
fed82438
SW
286 g_object_unref(file);
287
288 if (result)
686baff0 289 g_debug("%s: Set etag (xattr) on %s: %s", __FUNCTION__, fn, cdo->new_etag);
fed82438
SW
290
291 return result;
292}
293
686baff0 294static gboolean set_etag_file(const char *fn, CurlDownloadOptions *cdo)
fed82438
SW
295{
296 gboolean result = FALSE;
297 gchar *etag_filename;
298
299 etag_filename = g_strdup_printf("%s.etag", fn);
300 if (etag_filename) {
686baff0 301 result = g_file_set_contents(etag_filename, cdo->new_etag, -1, NULL);
fed82438
SW
302 g_free(etag_filename);
303 }
304
305 if (result)
686baff0 306 g_debug("%s: Set etag (file) on %s: %s", __FUNCTION__, fn, cdo->new_etag);
fed82438
SW
307
308 return result;
309}
310
686baff0 311static void set_etag(const char *fn, const char *fntmp, CurlDownloadOptions *cdo)
fed82438
SW
312{
313 /* first try to store etag in extended attribute, then fall back to plain file */
686baff0 314 if (!set_etag_xattr(fntmp, cdo) && !set_etag_file(fn, cdo)) {
fed82438
SW
315 g_debug("%s: Failed to set etag on %s", __FUNCTION__, fn);
316 }
317}
318
686baff0 319static DownloadResult_t download( const char *hostname, const char *uri, const char *fn, DownloadFileOptions *options, gboolean ftp, void *handle)
932f8f22
GB
320{
321 FILE *f;
533bbf34 322 gchar *tmpfilename;
1ac37c09 323 gboolean failure = FALSE;
686baff0 324 CurlDownloadOptions cdo = {0, NULL, NULL};
932f8f22
GB
325
326 /* Check file */
45acf79e 327 if ( g_file_test ( fn, G_FILE_TEST_EXISTS ) == TRUE )
932f8f22 328 {
8853eed9
JJ
329 if (options == NULL || (!options->check_file_server_time &&
330 !options->use_etag)) {
331 /* Nothing to do as file already exists and we don't want to check server */
4e815e90 332 return DOWNLOAD_NOT_REQUIRED;
6a4a29aa 333 }
8853eed9 334
57ecf9cb
JJ
335 time_t tile_age = a_preferences_get(VIKING_PREFERENCES_NAMESPACE "download_tile_age")->u;
336 /* Get the modified time of this file */
603b6b7e 337 GStatBuf buf;
fd437981 338 (void)g_stat ( fn, &buf );
57ecf9cb
JJ
339 time_t file_time = buf.st_mtime;
340 if ( (time(NULL) - file_time) < tile_age ) {
341 /* File cache is too recent, so return */
4e815e90 342 return DOWNLOAD_NOT_REQUIRED;
57ecf9cb
JJ
343 }
344
e69ac989 345 if (options != NULL && options->check_file_server_time) {
686baff0 346 cdo.time_condition = file_time;
6a4a29aa 347 }
e69ac989 348 if (options != NULL && options->use_etag) {
686baff0 349 get_etag(fn, &cdo);
55246377 350 }
f91cc826 351
932f8f22 352 } else {
a1618d62 353 gchar *dir = g_path_get_dirname ( fn );
5e4cce8f
RN
354 if ( g_mkdir_with_parents ( dir , 0777 ) != 0)
355 g_warning ("%s: Failed to mkdir %s", __FUNCTION__, dir );
a1618d62 356 g_free ( dir );
3335ae4e
EB
357 }
358
4dc72a1d
RN
359 // Early test for valid hostname & uri to avoid unnecessary tmp file
360 if ( !hostname && !uri ) {
361 g_warning ( "%s: Parameter error - neither hostname nor uri defined", __FUNCTION__ );
362 return DOWNLOAD_PARAMETERS_ERROR;
363 }
364
3335ae4e 365 tmpfilename = g_strdup_printf("%s.tmp", fn);
4b992365
GB
366 if (!lock_file ( tmpfilename ) )
367 {
368 g_debug("%s: Couldn't take lock on temporary file \"%s\"\n", __FUNCTION__, tmpfilename);
369 g_free ( tmpfilename );
9137c580 370 if (options->use_etag)
686baff0 371 g_free ( cdo.etag );
4e815e90 372 return DOWNLOAD_FILE_WRITE_ERROR;
4b992365
GB
373 }
374 f = g_fopen ( tmpfilename, "w+b" ); /* truncate file and open it */
3335ae4e 375 if ( ! f ) {
4b992365 376 g_warning("Couldn't open temporary file \"%s\": %s", tmpfilename, g_strerror(errno));
3335ae4e 377 g_free ( tmpfilename );
9137c580 378 if (options->use_etag)
686baff0 379 g_free ( cdo.etag );
4e815e90 380 return DOWNLOAD_FILE_WRITE_ERROR;
932f8f22
GB
381 }
382
383 /* Call the backend function */
4dc72a1d 384 CURL_download_t ret = curl_download_get_url ( hostname, uri, f, options, ftp, &cdo, handle );
6a4a29aa 385
4e815e90
RN
386 DownloadResult_t result = DOWNLOAD_SUCCESS;
387
388 if (ret != CURL_DOWNLOAD_NO_ERROR && ret != CURL_DOWNLOAD_NO_NEWER_FILE) {
1ac37c09
GB
389 g_debug("%s: download failed: curl_download_get_url=%d", __FUNCTION__, ret);
390 failure = TRUE;
4e815e90 391 result = DOWNLOAD_HTTP_ERROR;
1ac37c09
GB
392 }
393
394 if (!failure && options != NULL && options->check_file != NULL && ! options->check_file(f)) {
395 g_debug("%s: file content checking failed", __FUNCTION__);
396 failure = TRUE;
4e815e90 397 result = DOWNLOAD_CONTENT_ERROR;
1ac37c09 398 }
932f8f22 399
1ec35593
MA
400 fclose ( f );
401 f = NULL;
402
1ac37c09 403 if (failure)
932f8f22 404 {
4258f4e2 405 g_warning(_("Download error: %s"), fn);
c5ecc990
RN
406 if ( g_remove ( tmpfilename ) != 0 )
407 g_warning( ("Failed to remove: %s"), tmpfilename);
4b992365 408 unlock_file ( tmpfilename );
3335ae4e 409 g_free ( tmpfilename );
e69ac989 410 if ( options != NULL && options->use_etag ) {
686baff0
RN
411 g_free ( cdo.etag );
412 g_free ( cdo.new_etag );
55246377 413 }
4e815e90 414 return result;
932f8f22
GB
415 }
416
4e815e90 417 if (ret == CURL_DOWNLOAD_NO_NEWER_FILE) {
85e9e947 418 (void)g_remove ( tmpfilename );
73e61a6e
RN
419 // update mtime of local copy
420 // Not security critical, thus potential Time of Check Time of Use race condition is not bad
421 // coverity[toctou]
422 if ( g_utime ( fn, NULL ) != 0 )
423 g_warning ( "%s couldn't set time on: %s", __FUNCTION__, fn );
4945e425 424 } else {
0e818e49
SW
425 if ( options != NULL && options->convert_file )
426 options->convert_file ( tmpfilename );
427
428 if ( options != NULL && options->use_etag ) {
686baff0 429 if ( cdo.new_etag ) {
0e818e49 430 /* server returned an etag value */
686baff0 431 set_etag(fn, tmpfilename, &cdo);
0e818e49
SW
432 }
433 }
434
4bdc96fc
RN
435 /* move completely-downloaded file to permanent location */
436 if ( g_rename ( tmpfilename, fn ) )
437 g_warning ("%s: file rename failed [%s] to [%s]", __FUNCTION__, tmpfilename, fn );
4945e425 438 }
4b992365 439 unlock_file ( tmpfilename );
6a4a29aa 440 g_free ( tmpfilename );
1ec35593 441
e69ac989 442 if ( options != NULL && options->use_etag ) {
686baff0
RN
443 g_free ( cdo.etag );
444 g_free ( cdo.new_etag );
55246377 445 }
4e815e90 446 return DOWNLOAD_SUCCESS;
932f8f22
GB
447}
448
4e815e90
RN
449/**
450 * uri: like "/uri.html?whatever"
451 * only reason for the "wrapper" is so we can do redirects.
452 */
686baff0 453DownloadResult_t a_http_download_get_url ( const char *hostname, const char *uri, const char *fn, DownloadFileOptions *opt, void *handle )
85611cd9 454{
825413ba 455 return download ( hostname, uri, fn, opt, FALSE, handle );
0c1044e9
EB
456}
457
686baff0 458DownloadResult_t a_ftp_download_get_url ( const char *hostname, const char *uri, const char *fn, DownloadFileOptions *opt, void *handle )
0c1044e9 459{
825413ba
SW
460 return download ( hostname, uri, fn, opt, TRUE, handle );
461}
462
463void * a_download_handle_init ()
464{
465 return curl_download_handle_init ();
466}
467
468void a_download_handle_cleanup ( void *handle )
469{
470 curl_download_handle_cleanup ( handle );
85611cd9 471}
e09b94fe
RN
472
473/**
474 * a_download_url_to_tmp_file:
475 * @uri: The URI (Uniform Resource Identifier)
476 * @options: Download options (maybe NULL)
477 *
478 * returns name of the temporary file created - NULL if unsuccessful
479 * this string needs to be freed once used
480 * the file needs to be removed once used
481 */
686baff0 482gchar *a_download_uri_to_tmp_file ( const gchar *uri, DownloadFileOptions *options )
e09b94fe
RN
483{
484 FILE *tmp_file;
485 int tmp_fd;
486 gchar *tmpname;
487
488 if ( (tmp_fd = g_file_open_tmp ("viking-download.XXXXXX", &tmpname, NULL)) == -1 ) {
489 g_critical (_("couldn't open temp file"));
490 return NULL;
491 }
492
493 tmp_file = fdopen(tmp_fd, "r+");
86b25a6c
RN
494 if ( !tmp_file )
495 return NULL;
e09b94fe
RN
496
497 if ( curl_download_uri ( uri, tmp_file, options, NULL, NULL ) ) {
498 // error
499 fclose ( tmp_file );
85e9e947 500 (void)g_remove ( tmpname );
e09b94fe
RN
501 g_free ( tmpname );
502 return NULL;
503 }
504 fclose ( tmp_file );
505
506 return tmpname;
507}