]> git.sesse.net Git - vlc/blob - src/misc/update.c
update.c verify_signature(): remove unused parameter
[vlc] / src / misc / update.c
1 /*****************************************************************************
2  * update.c: VLC update checking and downloading
3  *****************************************************************************
4  * Copyright © 2005-2008 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Antoine Cellerier <dionoea -at- videolan -dot- org>
8  *          Rémi Duraffort <ivoire at via.ecp.fr>
9             Rafaël Carré <funman@videolanorg>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either release 2 of the License, or
14  * (at your option) any later release.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
24  *****************************************************************************/
25
26 /**
27  *   \file
28  *   This file contains functions related to VLC update management
29  */
30
31 /*****************************************************************************
32  * Preamble
33  *****************************************************************************/
34
35 #ifdef HAVE_CONFIG_H
36 # include "config.h"
37 #endif
38
39 #include <vlc/vlc.h>
40
41 #ifdef UPDATE_CHECK
42
43 #include <assert.h>
44
45 #include <vlc_update.h>
46 #include <vlc_pgpkey.h>
47 #include <vlc_stream.h>
48 #include <vlc_interface.h>
49
50
51 /*****************************************************************************
52  * Misc defines
53  *****************************************************************************/
54
55 /*
56  * Here is the format of these "status files" :
57  * First line is the last version: "X.Y.Ze" where:
58  *      * X is the major number
59  *      * Y is the minor number
60  *      * Z is the revision number
61  *      * e is an OPTIONAL extra letter
62  *      * AKA "0.8.6d" or "0.9.0"
63  * Second line is an url of the binary for this last version
64  * Third line is a description of the update (it MAY be extended to several lines, but for now it is only one line)
65  */
66
67 #if defined( UNDER_CE )
68 #   define UPDATE_VLC_STATUS_URL "http://update.videolan.org/vlc/status-ce"
69 #elif defined( WIN32 )
70 #   define UPDATE_VLC_STATUS_URL "http://update.videolan.org/vlc/status-win-x86"
71 #elif defined( __APPLE__ )
72 #   if defined( __powerpc__ ) || defined( __ppc__ ) || defined( __ppc64__ )
73 #       define UPDATE_VLC_STATUS_URL "http://update.videolan.org/vlc/status-mac-ppc"
74 #   else
75 #       define UPDATE_VLC_STATUS_URL "http://update.videolan.org/vlc/status-mac-x86"
76 #   endif
77 #elif defined( SYS_BEOS )
78 #       define UPDATE_VLC_STATUS_URL "http://update.videolan.org/vlc/status-beos-x86"
79 #else
80 #   define UPDATE_VLC_STATUS_URL "http://update.videolan.org/vlc/status"
81 #endif
82
83
84 /*****************************************************************************
85  * Local Prototypes
86  *****************************************************************************/
87 static void EmptyRelease( update_t *p_update );
88 static vlc_bool_t GetUpdateFile( update_t *p_update );
89 static int CompareReleases( const struct update_release_t *p1,
90                             const struct update_release_t *p2 );
91 static char * size_str( long int l_size );
92
93
94 /*****************************************************************************
95  * OpenPGP functions
96  *****************************************************************************/
97
98 #define packet_type( c ) ( ( c & 0x3c ) >> 2 )      /* 0x3C = 00111100 */
99 #define packet_header_len( c ) ( ( c & 0x03 ) + 1 ) /* number of bytes in a packet header */
100
101 static inline int scalar_number( uint8_t *p, int header_len )
102 {
103     if( header_len == 1 )
104         return( p[0] );
105     else if( header_len == 2 )
106         return( (p[0] << 8) + p[1] );
107     else if( header_len == 4 )
108         return( (p[0] << 24) + (p[1] << 16) + (p[2] << 8) + p[3] );
109     else
110         abort();
111 }
112
113 /* number of data bytes in a MPI */
114 #define mpi_len( mpi ) ( ( scalar_number( mpi, 2 ) + 7 ) / 8 )
115
116 /* 
117  * fill a public_key_packet_t structure from public key packet data
118  * verify that it is a version 4 public key packet, using DSA
119  */
120 static int parse_public_key_packet( public_key_packet_t *p_key, uint8_t *p_buf,
121                                     size_t i_packet_len )
122 {
123     if( i_packet_len > 418 )
124         return VLC_EGENERIC;
125
126     p_key->version   = *p_buf++;
127     if( p_key->version != 4 )
128         return VLC_EGENERIC;
129
130     /* warn when timestamp is > date ? */
131     memcpy( p_key->timestamp, p_buf, 4 ); p_buf += 4;
132
133     p_key->algo      = *p_buf++;
134     if( p_key->algo != PUBLIC_KEY_ALGO_DSA )
135         return VLC_EGENERIC;
136
137     int i_p_len = mpi_len( p_buf );
138     if( i_p_len > 128 )
139         return VLC_EGENERIC;
140     else
141     {
142         memcpy( p_key->p, p_buf, 2+i_p_len ); p_buf += 2+i_p_len;
143         if( i_p_len < 128 )
144             memmove( p_key->q, p_key->p + 2+i_p_len, 2+20 + 2+128 + 2+128 );
145     }
146
147     int i_q_len = mpi_len( p_buf );
148     if( i_q_len > 20 )
149         return VLC_EGENERIC;
150     else
151     {
152         memcpy( p_key->q, p_buf, 2+i_q_len );  p_buf += 2+i_q_len;
153         if( i_p_len < 20 )
154             memmove( p_key->g, p_key->q + 2+i_q_len, 2+128 + 2+128 );
155     }
156
157     int i_g_len = mpi_len( p_buf );
158     if( i_g_len > 128 )
159         return VLC_EGENERIC;
160     else
161     {
162         memcpy( p_key->g, p_buf, 2+i_g_len ); p_buf += 2+i_g_len;
163         if( i_g_len < 128 )
164             memmove( p_key->y, p_key->g + 2+i_g_len, 2+128 );
165     }
166     
167     int i_y_len = mpi_len( p_buf );
168     if( i_y_len > 128 )
169         return VLC_EGENERIC;
170     else
171         memcpy( p_key->y, p_buf, 2+i_y_len );
172
173     return VLC_SUCCESS;
174 }
175
176 /*
177  * fill a signature_packet_v4_t from signature packet data
178  * verify that it was used with a DSA public key, using SHA-1 digest
179  */
180 static int parse_signature_v4_packet( signature_packet_v4_t *p_sig,
181                                       uint8_t *p_buf, size_t i_sig_len )
182 {
183     if( i_sig_len < 54 )
184         return VLC_EGENERIC;
185
186     p_sig->version = *p_buf++;
187     if( p_sig->version != 4 )
188         return VLC_EGENERIC;
189
190     p_sig->type = *p_buf++;
191     if( p_sig->type < GENERIC_KEY_SIGNATURE ||
192         p_sig->type > POSITIVE_KEY_SIGNATURE )
193         return VLC_EGENERIC;
194
195     p_sig->public_key_algo = *p_buf++;
196     if( p_sig->public_key_algo != PUBLIC_KEY_ALGO_DSA )
197         return VLC_EGENERIC;
198
199     p_sig->digest_algo = *p_buf++;
200     if( p_sig->digest_algo != DIGEST_ALGO_SHA1 )
201         return VLC_EGENERIC;
202
203     memcpy( p_sig->hashed_data_len, p_buf, 2 ); p_buf += 2;
204
205     size_t i_pos = 6;
206     size_t i_hashed_data_len = scalar_number( p_sig->hashed_data_len, 2 );
207     i_pos += i_hashed_data_len;
208     if( i_pos > i_sig_len - 48 ) /* r & s are 44 bytes in total, 
209                               * + the unhashed data length (2 bytes)
210                               * + the hash verification (2 bytes) */
211         return VLC_EGENERIC;
212
213     p_sig->hashed_data = (uint8_t*) malloc( i_hashed_data_len );
214     if( !p_sig->hashed_data )
215         return VLC_ENOMEM;
216     memcpy( p_sig->hashed_data, p_buf, i_hashed_data_len );
217     p_buf += i_hashed_data_len;
218
219     memcpy( p_sig->unhashed_data_len, p_buf, 2 ); p_buf += 2;
220
221     size_t i_unhashed_data_len = scalar_number( p_sig->unhashed_data_len, 2 );
222     i_pos += 2 + i_unhashed_data_len;
223     if( i_pos != i_sig_len - 46 )
224     {
225         free( p_sig->hashed_data );
226         return VLC_EGENERIC;
227     }
228
229     p_sig->unhashed_data = (uint8_t*) malloc( i_unhashed_data_len );
230     if( !p_sig->unhashed_data )
231     {
232         free( p_sig->hashed_data );
233         return VLC_ENOMEM;
234     }
235     memcpy( p_sig->unhashed_data, p_buf, i_unhashed_data_len );
236     p_buf += i_unhashed_data_len;
237
238     memcpy( p_sig->hash_verification, p_buf, 2 ); p_buf += 2;
239
240     int i_r_len = mpi_len( p_buf );
241     if( i_r_len > 20 )
242     {
243         free( p_sig->hashed_data );
244         free( p_sig->unhashed_data );
245         return VLC_EGENERIC;
246     }
247     else
248     {
249         memcpy( p_sig->r, p_buf, 2 + i_r_len );
250         p_buf += 2 + i_r_len;
251     }
252
253     int i_s_len = mpi_len( p_buf );
254     if( i_s_len > 20 )
255     {
256         free( p_sig->hashed_data );
257         free( p_sig->unhashed_data );
258         return VLC_EGENERIC;
259     }
260     else
261     {
262         memcpy( p_sig->s, p_buf, 2 + i_s_len );
263         p_buf += 2 + i_s_len;
264     }
265
266     return VLC_SUCCESS;
267 }
268
269 /*
270  * crc_octets() was lamely copied from rfc 2440
271  * Copyright (C) The Internet Society (1998).  All Rights Reserved.
272  */
273 #define CRC24_INIT 0xB704CEL
274 #define CRC24_POLY 0x1864CFBL
275
276 static long crc_octets( uint8_t *octets, size_t len )
277 {
278     long crc = CRC24_INIT;
279     int i;
280     while (len--)
281     {
282         crc ^= (*octets++) << 16;
283         for (i = 0; i < 8; i++)
284         {
285             crc <<= 1;
286             if (crc & 0x1000000)
287                 crc ^= CRC24_POLY;
288         }
289     }
290     return crc & 0xFFFFFFL;
291 }
292
293 /*
294  * Transform an armored document in binary format
295  * Used on public keys and signatures
296  */
297 static int pgp_unarmor( char *p_ibuf, size_t i_ibuf_len,
298                         uint8_t *p_obuf, size_t i_obuf_len )
299 {
300     char *p_ipos = p_ibuf;
301     uint8_t *p_opos = p_obuf;
302     int i_end = 0;
303     int i_header_skipped = 0;
304
305     while( !i_end && p_ipos < p_ibuf + i_ibuf_len && *p_ipos != '=' )
306     {
307         if( *p_ipos == '\r' || *p_ipos == '\n' )
308         {
309             p_ipos++;
310             continue;
311         }
312
313         size_t i_line_len = strcspn( p_ipos, "\r\n" );
314         if( i_line_len == 0 )
315             continue;
316
317         if( !i_header_skipped )
318         {
319             if( !strncmp( p_ipos, "-----BEGIN PGP", 14 ) )
320                 i_header_skipped = 1;
321
322             p_ipos += i_line_len + 1;
323             continue;
324         }
325         
326         if( !strncmp( p_ipos, "Version:", 8 ) )
327         {
328             p_ipos += i_line_len + 1;
329             continue;
330         }
331
332         if( p_ipos[i_line_len - 1] == '=' )
333         {
334             i_end = 1;
335             p_ipos[i_line_len - 1] = '\0';
336         }
337         else
338             p_ipos[i_line_len] = '\0';
339
340         p_opos += vlc_b64_decode_binary_to_buffer(  p_opos,
341                         p_obuf - p_opos + i_obuf_len, p_ipos );
342         p_ipos += i_line_len + 1;
343     }
344
345     /* XXX: the CRC is OPTIONAL, really require it ? */
346     if( p_ipos + 5 > p_ibuf + i_ibuf_len || *p_ipos++ != '=' )
347         return 0;
348
349     uint8_t p_crc[3];
350     if( vlc_b64_decode_binary_to_buffer( p_crc, 3, p_ipos ) != 3 )
351         return 0;
352
353     long l_crc = crc_octets( p_obuf, p_opos - p_obuf );
354     long l_crc2 = ( 0 << 24 ) + ( p_crc[0] << 16 ) + ( p_crc[1] << 8 ) + p_crc[2];
355
356     return l_crc2 == l_crc ? p_opos - p_obuf : 0;
357 }
358
359 /*
360  * Download the signature associated to a document or a binary file.
361  * We're given the file's url, we just append ".asc" to it and download 
362  */
363 static int download_signature(  vlc_object_t *p_this,
364                                 signature_packet_v3_t *p_sig,
365                                 const char *psz_url )
366 {
367     char *psz_sig = (char*) malloc( strlen( psz_url ) + 4 + 1 ); /* ".asc" + \0 */
368     if( !psz_sig )
369         return VLC_ENOMEM;
370
371     strcpy( psz_sig, psz_url );
372     strcat( psz_sig, ".asc" );
373
374     stream_t *p_stream = stream_UrlNew( p_this, psz_sig );
375     free( psz_sig );
376
377     if( !p_stream )
378         return VLC_ENOMEM;
379
380     int64_t i_size = stream_Size( p_stream );
381     if( i_size <= 65 ) /* binary format signature */
382     {
383         msg_Dbg( p_this, "Downloading unarmored signature" );
384         int i_read = stream_Read( p_stream, p_sig, (int)i_size );
385         stream_Delete( p_stream );
386         if( i_read != i_size )
387         {
388             msg_Dbg( p_this, "Couldn't read full signature" );
389             return VLC_EGENERIC;
390         }
391         else
392             return VLC_SUCCESS;
393     }
394
395     msg_Dbg( p_this, "Downloading armored signature" );
396     char *p_buf = (char*)malloc( i_size );
397     if( !p_buf )
398     {
399         stream_Delete( p_stream );
400         return VLC_ENOMEM;
401     }
402     
403     int i_read = stream_Read( p_stream, p_buf, (int)i_size );
404
405     stream_Delete( p_stream );
406
407     if( i_read != i_size )
408     {
409         msg_Dbg( p_this, "Couldn't read full signature" );
410         free( p_buf );
411         return VLC_EGENERIC;
412     }
413     
414     int i_bytes = pgp_unarmor( p_buf, i_size, (uint8_t*)p_sig, 65 );
415     free( p_buf );
416
417     if( i_bytes > 65 )
418     {
419         msg_Dbg( p_this, "Signature is too big: %d bytes", i_bytes );
420         return VLC_EGENERIC;
421     }
422     else
423     {
424         int i_r_len = mpi_len( p_sig->r );
425         if( i_r_len > 20 )
426         {
427             msg_Dbg( p_this, "Signature invalid" );
428             return VLC_EGENERIC;
429         }
430         else if( i_r_len < 20 )
431             /* move s to the right place if r is less than 20 bytes */
432             memmove( p_sig->s, p_sig->r + 2 + i_r_len, 20 + 2 );
433
434         return VLC_SUCCESS;
435     }
436 }
437
438 /*
439  * Verify an OpenPGP signature made on some SHA-1 hash, with some DSA public key
440  */
441 static int verify_signature( uint8_t *p_r, uint8_t *p_s,
442         public_key_packet_t *p_key, uint8_t *p_hash )
443 {
444     /* the data to be verified (a SHA-1 hash) */
445     const char *hash_sexp_s = "(data(flags raw)(value %m))";
446     /* the public key */
447     const char *key_sexp_s = "(public-key(dsa(p %m)(q %m)(g %m)(y %m)))";
448     /* the signature */
449     const char *sig_sexp_s = "(sig-val(dsa(r %m )(s %m )))";
450
451     size_t erroff;
452     gcry_mpi_t p, q, g, y, r, s, hash;
453     p = q = g = y = r = s = hash = NULL;
454     gcry_sexp_t key_sexp, hash_sexp, sig_sexp;
455     key_sexp = hash_sexp = sig_sexp = NULL;
456
457     int i_p_len = mpi_len( p_key->p );
458     int i_q_len = mpi_len( p_key->q );
459     int i_g_len = mpi_len( p_key->g );
460     int i_y_len = mpi_len( p_key->y );
461     if( gcry_mpi_scan( &p, GCRYMPI_FMT_USG, p_key->p + 2, i_p_len, NULL ) ||
462         gcry_mpi_scan( &q, GCRYMPI_FMT_USG, p_key->q + 2, i_q_len, NULL ) ||
463         gcry_mpi_scan( &g, GCRYMPI_FMT_USG, p_key->g + 2, i_g_len, NULL ) ||
464         gcry_mpi_scan( &y, GCRYMPI_FMT_USG, p_key->y + 2, i_y_len, NULL ) ||
465         gcry_sexp_build( &key_sexp, &erroff, key_sexp_s, p, q, g, y ) )
466         goto problem;
467
468     int i_r_len = mpi_len( p_r );
469     int i_s_len = mpi_len( p_s );
470     if( gcry_mpi_scan( &r, GCRYMPI_FMT_USG, p_r + 2, i_r_len, NULL ) ||
471         gcry_mpi_scan( &s, GCRYMPI_FMT_USG, p_s + 2, i_s_len, NULL ) ||
472         gcry_sexp_build( &sig_sexp, &erroff, sig_sexp_s, r, s ) )
473         goto problem;
474
475     int i_hash_len = 20;
476     if( gcry_mpi_scan( &hash, GCRYMPI_FMT_USG, p_hash, i_hash_len, NULL ) ||
477         gcry_sexp_build( &hash_sexp, &erroff, hash_sexp_s, hash ) )
478         goto problem;
479
480     if( gcry_pk_verify( sig_sexp, hash_sexp, key_sexp ) )
481         goto problem;
482
483     return VLC_SUCCESS;
484
485 problem:
486     if( p ) gcry_mpi_release( p );
487     if( q ) gcry_mpi_release( q );
488     if( g ) gcry_mpi_release( g );
489     if( y ) gcry_mpi_release( y );
490     if( r ) gcry_mpi_release( r );
491     if( s ) gcry_mpi_release( s );
492     if( hash ) gcry_mpi_release( hash );
493     if( key_sexp ) gcry_sexp_release( key_sexp );
494     if( sig_sexp ) gcry_sexp_release( sig_sexp );
495     if( hash_sexp ) gcry_sexp_release( hash_sexp );
496     return VLC_EGENERIC;
497 }
498
499 /*
500  * Return the long id (8 bytes) of the public key used to generate a signature
501  */
502 static uint8_t *get_issuer_from_signature_v4( signature_packet_v4_t *p_sig )
503 {
504     uint8_t *p = p_sig->unhashed_data;
505     uint8_t *max_pos = p + scalar_number( p_sig->unhashed_data_len, 2 );
506
507     while( p < max_pos )
508     {
509         int i_subpacket_len = *p < 192 ? *p++ :
510                 *p < 255 ? ((*p++ - 192) << 8) + *p++ + 192 :
511                 ((*++p) << 24) + (*++p << 16) + (*++p << 8) + *++p;
512
513         if( p >= max_pos - 1 )
514             return NULL;
515
516         if( *p == ISSUER_SUBPACKET )
517             return p+1;
518         else
519             p += i_subpacket_len;
520     }
521     return NULL;
522 }
523
524 /*
525  * fill a public_key_t with public key data, including:
526  *   * public key packet
527  *   * signature packet issued by key which long id is p_sig_issuer
528  *   * user id packet
529  */
530 static int parse_public_key( const uint8_t *p_key_data, size_t i_key_len, public_key_t *p_key, const uint8_t *p_sig_issuer )
531 {
532     uint8_t *pos = (uint8_t*) p_key_data;
533     uint8_t *max_pos = pos + i_key_len;
534
535     int i_status = 0;
536 #define PUBLIC_KEY_FOUND    0x01
537 #define USER_ID_FOUND       0x02
538 #define SIGNATURE_FOUND     0X04
539
540     uint8_t *p_key_unarmored = NULL;
541
542     signature_packet_v4_t sig;
543
544     p_key->psz_username = NULL;
545     p_key->sig.hashed_data = p_key->sig.unhashed_data = NULL;
546
547     if( !( *pos & 0x80 ) )
548     {   /* first byte is ASCII, unarmoring */
549         p_key_unarmored = (uint8_t*)malloc( i_key_len );
550         if( !p_key_unarmored )
551             return VLC_ENOMEM;
552         int i_len = pgp_unarmor( (char*)p_key_data, i_key_len,
553                                  p_key_unarmored, i_key_len );
554
555         if( i_len == 0 )
556             goto error;
557
558         pos = p_key_unarmored;
559         max_pos = pos + i_len;
560     }
561
562     while( pos < max_pos )
563     {
564         if( !(*pos & 0x80) || *pos & 0x40 )
565             goto error;
566
567         int i_type = packet_type( *pos );
568
569         int i_header_len = packet_header_len( *pos++ );
570         if( pos + i_header_len > max_pos )
571             goto error;
572
573         int i_packet_len = scalar_number( pos, i_header_len );
574         pos += i_header_len;
575
576         if( pos + i_packet_len > max_pos )
577             goto error;
578
579         switch( i_type )
580         {
581             uint8_t *p_issuer;
582
583             case PUBLIC_KEY_PACKET:
584                 i_status |= PUBLIC_KEY_FOUND;
585                 if( parse_public_key_packet( &p_key->key, pos, i_packet_len ) != VLC_SUCCESS )
586                     goto error;
587                 break;
588
589             case SIGNATURE_PACKET:
590                 if( !p_sig_issuer || i_status & SIGNATURE_FOUND ||
591                     parse_signature_v4_packet( &sig, pos, i_packet_len ) != VLC_SUCCESS )
592                     break;
593                 p_issuer = get_issuer_from_signature_v4( &sig );
594                 if( memcmp( p_issuer, p_sig_issuer, 8 ) == 0 )
595                 {
596                     memcpy( &p_key->sig, &sig, sizeof( signature_packet_v4_t ) );
597                     i_status |= SIGNATURE_FOUND;
598                 }
599                 else
600                 {
601                     free( sig.hashed_data );
602                     free( sig.unhashed_data );
603                 }
604                 break;
605
606             case USER_ID_PACKET:
607                 if( p_key->psz_username ) /* save only the first User ID */
608                     break;
609                 i_status |= USER_ID_FOUND;
610                 p_key->psz_username = (uint8_t*)malloc( i_packet_len + 1);
611                 if( !p_key->psz_username )
612                     goto error;
613
614                 memcpy( p_key->psz_username, pos, i_packet_len );
615                 p_key->psz_username[i_packet_len] = '\0';
616                 break;
617             
618             default:
619                 break;
620         }
621         pos += i_packet_len;
622     }
623     free( p_key_unarmored );
624
625     if( !( i_status & ( PUBLIC_KEY_FOUND + USER_ID_FOUND ) ) )
626         return VLC_EGENERIC;
627
628     if( p_sig_issuer && !( i_status & SIGNATURE_FOUND ) )
629         return VLC_EGENERIC;
630
631     return VLC_SUCCESS;
632
633 error:
634     free( p_key->sig.hashed_data );
635     free( p_key->sig.unhashed_data );
636     free( p_key->psz_username );
637     free( p_key_unarmored );
638     return VLC_EGENERIC;
639 }
640
641 /*
642  * return a sha1 hash of a file
643  */
644 static uint8_t *hash_sha1_from_file( const char *psz_file,
645                             signature_packet_v3_t *p_sig )
646 {
647     FILE *f = utf8_fopen( psz_file, "r" );
648     if( !f )
649         return NULL;
650
651     uint8_t buffer[4096];
652
653     gcry_md_hd_t hd;
654     if( gcry_md_open( &hd, GCRY_MD_SHA1, 0 ) )
655     {
656         fclose( f );
657         return NULL;
658     } 
659
660     size_t i_read;
661     while( ( i_read = fread( buffer, 1, sizeof(buffer), f ) ) > 0 )
662         gcry_md_write( hd, buffer, i_read );
663
664     gcry_md_putc( hd, p_sig->type );
665     gcry_md_write( hd, &p_sig->timestamp, 4 );
666
667     fclose( f );
668     gcry_md_final( hd );
669
670     return( (uint8_t*) gcry_md_read( hd, GCRY_MD_SHA1) );
671 }
672
673 /*
674  * download a public key (the last one) from videolan server, and parse it
675  */
676 static public_key_t *download_key( vlc_object_t *p_this, const uint8_t *p_longid, const uint8_t *p_signature_issuer )
677 {
678     char *psz_url;
679     if( asprintf( &psz_url, "http://download.videolan.org/pub/keys/%.2X%.2X%.2X%.2X%.2X%.2X%.2X%.2X.asc",
680                     p_longid[0], p_longid[1], p_longid[2], p_longid[3],
681                     p_longid[4], p_longid[5], p_longid[6], p_longid[7] ) == -1 )
682         return NULL;
683
684     stream_t *p_stream = stream_UrlNew( p_this, psz_url );
685     free( psz_url );
686     if( !p_stream )
687         return NULL;
688
689     int64_t i_size = stream_Size( p_stream );
690     if( i_size < 0 )
691     {
692         stream_Delete( p_stream );
693         return NULL;
694     }
695
696     uint8_t *p_buf = (uint8_t*)malloc( i_size );
697     if( !p_buf )
698     {
699         stream_Delete( p_stream );
700         return NULL;
701     }
702
703     int i_read = stream_Read( p_stream, p_buf, (int)i_size );
704     stream_Delete( p_stream );
705
706     if( i_read != (int)i_size )
707     {
708         msg_Dbg( p_this, "Couldn't read full GPG key" );
709         free( p_buf );
710         return NULL;
711     }
712
713     public_key_t *p_pkey = (public_key_t*) malloc( sizeof( public_key_t ) );
714     if( !p_pkey )
715     {
716         free( p_buf );
717         return NULL;
718     }
719
720     int i_error = parse_public_key( p_buf, i_read, p_pkey, p_signature_issuer );
721     free( p_buf );
722
723     if( i_error != VLC_SUCCESS )
724     {
725         msg_Dbg( p_this, "Couldn't parse GPG key" );
726         free( p_pkey );
727         return NULL;
728     }
729
730     return p_pkey;
731 }
732
733 /*
734  * Generate a SHA-1 hash on a public key, to verify a signature made on that hash
735  * Note that we need the signature to compute the hash
736  */
737 static uint8_t *key_sign_hash( public_key_t *p_pkey )
738 {
739     gcry_error_t error = 0;
740     gcry_md_hd_t hd;
741
742     error = gcry_md_open( &hd, GCRY_MD_SHA1, 0 );
743     if( error )
744         return NULL;
745
746     gcry_md_putc( hd, 0x99 );
747
748     gcry_md_putc( hd, (418 >> 8) & 0xff );
749     gcry_md_putc( hd, 418 & 0xff );
750
751     gcry_md_write( hd, (uint8_t*)&p_pkey->key, 6 ); /* version,timestamp,algo */
752
753     int i_p_len = mpi_len( p_pkey->key.p );
754     gcry_md_write( hd, (uint8_t*)&p_pkey->key.p, 2 );
755     gcry_md_write( hd, (uint8_t*)&p_pkey->key.p + 2, i_p_len );
756
757     int i_g_len = mpi_len( p_pkey->key.g );
758     gcry_md_write( hd, (uint8_t*)&p_pkey->key.g, 2 );
759     gcry_md_write( hd, (uint8_t*)&p_pkey->key.g + 2, i_g_len );
760
761     int i_q_len = mpi_len( p_pkey->key.q );
762     gcry_md_write( hd, (uint8_t*)&p_pkey->key.q, 2 );
763     gcry_md_write( hd, (uint8_t*)&p_pkey->key.q + 2, i_q_len );
764
765     int i_y_len = mpi_len( p_pkey->key.y );
766     gcry_md_write( hd, (uint8_t*)&p_pkey->key.y, 2 );
767     gcry_md_write( hd, (uint8_t*)&p_pkey->key.y + 2, i_y_len );
768
769     gcry_md_putc( hd, 0xb4 );
770
771     int i_len = strlen((char*)p_pkey->psz_username);
772
773     gcry_md_putc( hd, (i_len << 24) & 0xff );
774     gcry_md_putc( hd, (i_len << 16) & 0xff );
775     gcry_md_putc( hd, (i_len << 8) & 0xff );
776     gcry_md_putc( hd, (i_len) & 0xff );
777
778     gcry_md_write( hd, p_pkey->psz_username, i_len );
779
780     size_t i_hashed_data_len = scalar_number( p_pkey->sig.hashed_data_len, 2 );
781
782     gcry_md_putc( hd, p_pkey->sig.version );
783     gcry_md_putc( hd, p_pkey->sig.type );
784     gcry_md_putc( hd, p_pkey->sig.public_key_algo );
785     gcry_md_putc( hd, p_pkey->sig.digest_algo );
786     gcry_md_write( hd, p_pkey->sig.hashed_data_len, 2 );
787     gcry_md_write( hd, p_pkey->sig.hashed_data, i_hashed_data_len );
788
789     gcry_md_putc( hd, 0x04 );
790     gcry_md_putc( hd, 0xff );
791
792     i_hashed_data_len += 6; /* hashed data + 6 bytes header */
793
794     gcry_md_putc( hd, (i_hashed_data_len << 24) & 0xff);
795     gcry_md_putc( hd, (i_hashed_data_len << 16) &0xff );
796     gcry_md_putc( hd, (i_hashed_data_len << 8) & 0xff );
797     gcry_md_putc( hd, (i_hashed_data_len) & 0xff );
798
799     gcry_md_final( hd );
800
801     uint8_t *p_hash = gcry_md_read( hd, GCRY_MD_SHA1);
802
803     if( p_hash[0] != p_pkey->sig.hash_verification[0] ||
804         p_hash[1] != p_pkey->sig.hash_verification[1] )
805     {
806         free( p_hash );
807         return NULL;
808     }
809
810     return p_hash;
811 }
812
813
814 /*****************************************************************************
815  * Update_t functions
816  *****************************************************************************/
817
818 /**
819  * Create a new update VLC struct
820  *
821  * \param p_this the calling vlc_object
822  * \return pointer to new update_t or NULL
823  */
824 update_t *__update_New( vlc_object_t *p_this )
825 {
826     update_t *p_update;
827     assert( p_this );
828
829     p_update = (update_t *)malloc( sizeof( update_t ) );
830     if( !p_update ) return NULL;
831
832     vlc_mutex_init( p_this, &p_update->lock );
833
834     p_update->p_libvlc = p_this->p_libvlc;
835
836     p_update->release.psz_url = NULL;
837     p_update->release.psz_desc = NULL;
838     
839     p_update->p_pkey = NULL;
840
841     return p_update;
842 }
843
844 /**
845  * Delete an update_t struct
846  *
847  * \param p_update update_t* pointer
848  * \return nothing
849  */
850 void update_Delete( update_t *p_update )
851 {
852     assert( p_update );
853
854     vlc_mutex_destroy( &p_update->lock );
855
856     free( p_update->release.psz_url );
857     free( p_update->release.psz_desc );
858     free( p_update->p_pkey );
859
860     free( p_update );
861 }
862
863 /**
864  * Empty the release struct
865  *
866  * \param p_update update_t* pointer
867  * \return nothing
868  */
869 static void EmptyRelease( update_t *p_update )
870 {
871     p_update->release.i_major = 0;
872     p_update->release.i_minor = 0;
873     p_update->release.i_revision = 0;
874
875     FREENULL( p_update->release.psz_url );
876     FREENULL( p_update->release.psz_desc );
877 }
878
879 /**
880  * Get the update file and parse it
881  * *p_update has to be locked when calling this function
882  *
883  * \param p_update pointer to update struct
884  * \return VLC_TRUE if the update is valid and authenticated
885  */
886 static vlc_bool_t GetUpdateFile( update_t *p_update )
887 {
888     stream_t *p_stream = NULL;
889     int i_major = 0;
890     int i_minor = 0;
891     int i_revision = 0;
892     unsigned char extra;
893     char *psz_line = NULL;
894     char *psz_version_line = NULL;
895
896     p_stream = stream_UrlNew( p_update->p_libvlc, UPDATE_VLC_STATUS_URL );
897     if( !p_stream )
898     {
899         msg_Err( p_update->p_libvlc, "Failed to open %s for reading",
900                  UPDATE_VLC_STATUS_URL );
901         goto error;
902     }
903
904     /* Try to read three lines */
905     if( !( psz_line = stream_ReadLine( p_stream ) ) )
906     {
907         msg_Err( p_update->p_libvlc, "Update file %s is corrupted : missing version",
908                  UPDATE_VLC_STATUS_URL );
909         goto error;
910     }
911
912     psz_version_line = psz_line;
913     /* first line : version number */
914     p_update->release.extra = 0;
915     switch( sscanf( psz_line, "%i.%i.%i%c", &i_major, &i_minor, &i_revision, &extra ) )
916     {
917         case 4:
918             p_update->release.extra = extra;
919         case 3:
920             p_update->release.i_major = i_major;
921             p_update->release.i_minor = i_minor;
922             p_update->release.i_revision = i_revision;
923             break;
924         default:
925             msg_Err( p_update->p_libvlc, "Update version false formated" );
926             goto error;
927     }
928
929     /* Second line : URL */
930     if( !( psz_line = stream_ReadLine( p_stream ) ) )
931     {
932         msg_Err( p_update->p_libvlc, "Update file %s is corrupted : URL missing",
933                  UPDATE_VLC_STATUS_URL );
934         goto error;
935     }
936     p_update->release.psz_url = psz_line;
937
938
939     /* Third line : description */
940     if( !( psz_line = stream_ReadLine( p_stream ) ) )
941     {
942         msg_Err( p_update->p_libvlc, "Update file %s is corrupted : description missing",
943                  UPDATE_VLC_STATUS_URL );
944         goto error;
945     }
946     p_update->release.psz_desc = psz_line;
947
948     stream_Delete( p_stream );
949     p_stream = NULL;
950
951     /* Now that we know the status is valid, we must download its signature 
952      * to authenticate it */
953     signature_packet_v3_t sign;
954     if( download_signature( VLC_OBJECT( p_update->p_libvlc ), &sign, 
955             UPDATE_VLC_STATUS_URL ) != VLC_SUCCESS )
956     {
957         msg_Err( p_update->p_libvlc, "Couldn't download signature of status file" );
958         goto error;
959     }
960
961     if( sign.type != BINARY_SIGNATURE && sign.type != TEXT_SIGNATURE )
962     {
963         msg_Err( p_update->p_libvlc, "Invalid signature type" );
964         goto error;
965     }
966
967     p_update->p_pkey = (public_key_t*)malloc( sizeof( public_key_t ) );
968     if( !p_update->p_pkey )
969         goto error;
970
971     if( parse_public_key( videolan_public_key, sizeof( videolan_public_key ),
972                         p_update->p_pkey, NULL ) != VLC_SUCCESS )
973     {
974         msg_Err( p_update->p_libvlc, "Couldn't parse embedded public key, something went really wrong..." );
975         FREENULL( p_update->p_pkey );
976         goto error;
977     }
978
979     if( memcmp( sign.issuer_longid, videolan_public_key_longid , 8 ) != 0 )
980     {
981         msg_Dbg( p_update->p_libvlc, "Need to download the GPG key" );
982         public_key_t *p_new_pkey = download_key(
983                 VLC_OBJECT(p_update->p_libvlc),
984                 sign.issuer_longid, videolan_public_key_longid );
985         if( !p_new_pkey )
986         {
987             msg_Err( p_update->p_libvlc, "Couldn't download GPG key" );
988             FREENULL( p_update->p_pkey );
989             goto error;
990         }
991
992         uint8_t *p_hash = key_sign_hash( p_new_pkey );
993         if( !p_hash )
994         {
995             msg_Err( p_update->p_libvlc, "Failed to hash signature" );
996             free( p_new_pkey );
997             FREENULL( p_update->p_pkey );
998             goto error;
999         }
1000
1001         if( verify_signature( p_new_pkey->sig.r, p_new_pkey->sig.s,
1002                     &p_update->p_pkey->key, p_hash ) == VLC_SUCCESS )
1003         {
1004             free( p_hash );
1005             msg_Info( p_update->p_libvlc, "Key authenticated" );
1006             free( p_update->p_pkey );
1007             p_update->p_pkey = p_new_pkey;
1008         }
1009         else
1010         {
1011             free( p_hash );
1012             msg_Err( p_update->p_libvlc, "Key signature invalid !\n" );
1013             goto error;
1014         }
1015     }
1016
1017     gcry_md_hd_t hd;
1018     if( gcry_md_open( &hd, GCRY_MD_SHA1, 0 ) )
1019         goto error;
1020
1021     gcry_md_write( hd, psz_version_line, strlen( psz_version_line ) );
1022     FREENULL( psz_version_line );
1023     if( sign.type == TEXT_SIGNATURE )
1024         gcry_md_putc( hd, '\r' );
1025     gcry_md_putc( hd, '\n' );
1026     gcry_md_write( hd, p_update->release.psz_url,
1027                         strlen( p_update->release.psz_url ) );
1028     if( sign.type == TEXT_SIGNATURE )
1029         gcry_md_putc( hd, '\r' );
1030     gcry_md_putc( hd, '\n' );
1031     gcry_md_write( hd, p_update->release.psz_desc,
1032                         strlen( p_update->release.psz_desc ) );
1033     if( sign.type == TEXT_SIGNATURE )
1034         gcry_md_putc( hd, '\r' );
1035     gcry_md_putc( hd, '\n' );
1036
1037     gcry_md_putc( hd, sign.type );
1038     gcry_md_write( hd, &sign.timestamp, 4 );
1039
1040     gcry_md_final( hd );
1041
1042     uint8_t *p_hash = gcry_md_read( hd, GCRY_MD_SHA1 );
1043
1044     if( p_hash[0] != sign.hash_verification[0] ||
1045         p_hash[1] != sign.hash_verification[1] )
1046     {
1047         msg_Warn( p_update->p_libvlc, "Bad SHA1 hash for status file" );
1048         free( p_hash );
1049         goto error;
1050     }
1051
1052     if( verify_signature( sign.r, sign.s, &p_update->p_pkey->key, p_hash )
1053             != VLC_SUCCESS )
1054     {
1055         msg_Err( p_update->p_libvlc, "BAD SIGNATURE for status file" );
1056         free( p_hash );
1057         goto error;
1058     }
1059     else
1060     {
1061         msg_Info( p_update->p_libvlc, "Status file authenticated" );
1062         free( p_hash );
1063         return VLC_TRUE;
1064     }
1065
1066 error:
1067     if( p_stream )
1068         stream_Delete( p_stream );
1069     free( psz_version_line );
1070     return VLC_FALSE;
1071 }
1072
1073
1074 /**
1075  * Struct to launch the check in an other thread
1076  */
1077 typedef struct
1078 {
1079     VLC_COMMON_MEMBERS
1080     update_t *p_update;
1081     void (*pf_callback)( void *, vlc_bool_t );
1082     void *p_data;
1083 } update_check_thread_t;
1084
1085 void update_CheckReal( update_check_thread_t *p_uct );
1086
1087 /**
1088  * Check for updates
1089  *
1090  * \param p_update pointer to update struct
1091  * \param pf_callback pointer to a function to call when the update_check is finished
1092  * \param p_data pointer to some datas to give to the callback
1093  * \returns nothing
1094  */
1095 void update_Check( update_t *p_update, void (*pf_callback)( void*, vlc_bool_t ), void *p_data )
1096 {
1097     assert( p_update );
1098
1099     update_check_thread_t *p_uct = vlc_object_create( p_update->p_libvlc,
1100                                             sizeof( update_check_thread_t ) );
1101     p_uct->p_update = p_update;
1102     p_uct->pf_callback = pf_callback;
1103     p_uct->p_data = p_data;
1104
1105     vlc_thread_create( p_uct, "check for update", update_CheckReal,
1106                        VLC_THREAD_PRIORITY_LOW, VLC_FALSE );
1107 }
1108
1109 void update_CheckReal( update_check_thread_t *p_uct )
1110 {
1111     vlc_bool_t b_ret;
1112     vlc_mutex_lock( &p_uct->p_update->lock );
1113
1114     EmptyRelease( p_uct->p_update );
1115     b_ret = GetUpdateFile( p_uct->p_update );
1116     vlc_mutex_unlock( &p_uct->p_update->lock );
1117
1118     if( p_uct->pf_callback )
1119         (p_uct->pf_callback)( p_uct->p_data, b_ret );
1120
1121     vlc_object_destroy( p_uct );
1122 }
1123
1124 /**
1125  * Compare two release numbers
1126  *
1127  * \param p1 first release
1128  * \param p2 second release
1129  * \return UpdateReleaseStatus(Older|Equal|Newer)
1130  */
1131 static int CompareReleases( const struct update_release_t *p1,
1132                             const struct update_release_t *p2 )
1133 {
1134     int32_t d;
1135     d = ( p1->i_major << 24 ) + ( p1->i_minor << 16 ) + ( p1->i_revision << 8 )
1136       - ( p2->i_major << 24 ) - ( p2->i_minor << 16 ) - ( p2->i_revision << 8 )
1137       + ( p1->extra ) - ( p2->extra );
1138
1139     if( d < 0 )
1140         return UpdateReleaseStatusOlder;
1141     else if( d == 0 )
1142         return UpdateReleaseStatusEqual;
1143     else
1144         return UpdateReleaseStatusNewer;
1145 }
1146
1147 /**
1148  * Compare a given release's version number to the current VLC's one
1149  *
1150  * \param p_update structure
1151  * \return UpdateReleaseStatus(Older|Equal|Newer)
1152  */
1153 int update_CompareReleaseToCurrent( update_t *p_update )
1154 {
1155     assert( p_update );
1156
1157     struct update_release_t c;
1158
1159     /* get the current version number */
1160     c.i_major = *PACKAGE_VERSION_MAJOR - '0';
1161     c.i_minor = *PACKAGE_VERSION_MINOR - '0';
1162     c.i_revision = *PACKAGE_VERSION_REVISION - '0';
1163     c.extra = *PACKAGE_VERSION_EXTRA;
1164
1165     return CompareReleases( &p_update->release, &c );
1166 }
1167
1168 /**
1169  * Convert a long int size in bytes to a string
1170  *
1171  * \param l_size the size in bytes
1172  * \return the size as a string
1173  */
1174 static char *size_str( long int l_size )
1175 {
1176     char *psz_tmp = NULL;
1177     if( l_size >> 30 )
1178         asprintf( &psz_tmp, "%.1f GB", (float)l_size/(1<<30) );
1179     else if( l_size >> 20 )
1180         asprintf( &psz_tmp, "%.1f MB", (float)l_size/(1<<20) );
1181     else if( l_size >> 10 )
1182         asprintf( &psz_tmp, "%.1f kB", (float)l_size/(1<<10) );
1183     else
1184         asprintf( &psz_tmp, "%ld B", l_size );
1185     return psz_tmp;
1186 }
1187
1188
1189 /*
1190  * Struct to launch the download in a thread
1191  */
1192 typedef struct
1193 {
1194     VLC_COMMON_MEMBERS
1195     update_t *p_update;
1196     char *psz_destdir;
1197 } update_download_thread_t;
1198
1199 void update_DownloadReal( update_download_thread_t *p_udt );
1200
1201 /**
1202  * Download the file given in the update_t
1203  *
1204  * \param p_update structure
1205  * \param dir to store the download file
1206  * \return nothing
1207  */
1208 void update_Download( update_t *p_update, char *psz_destdir )
1209 {
1210     assert( p_update );
1211
1212     update_download_thread_t *p_udt = vlc_object_create( p_update->p_libvlc,
1213                                                       sizeof( update_download_thread_t ) );
1214
1215     p_udt->p_update = p_update;
1216     p_udt->psz_destdir = psz_destdir ? strdup( psz_destdir ) : NULL;
1217
1218     vlc_thread_create( p_udt, "download update", update_DownloadReal,
1219                        VLC_THREAD_PRIORITY_LOW, VLC_FALSE );
1220 }
1221
1222 void update_DownloadReal( update_download_thread_t *p_udt )
1223 {
1224     int i_progress = 0;
1225     long int l_size;
1226     long int l_downloaded = 0;
1227     float f_progress;
1228     char *psz_status = NULL;
1229     char *psz_downloaded = NULL;
1230     char *psz_size = NULL;
1231     char *psz_destfile = NULL;
1232     char *psz_tmpdestfile = NULL;
1233
1234     FILE *p_file = NULL;
1235     stream_t *p_stream = NULL;
1236     void* p_buffer = NULL;
1237     int i_read;
1238
1239     update_t *p_update = p_udt->p_update;
1240     char *psz_destdir = p_udt->psz_destdir;
1241
1242     /* Open the stream */
1243     p_stream = stream_UrlNew( p_udt, p_update->release.psz_url );
1244     if( !p_stream )
1245     {
1246         msg_Err( p_udt, "Failed to open %s for reading", p_update->release.psz_url );
1247         goto end;
1248     }
1249
1250     /* Get the stream size */
1251     l_size = stream_Size( p_stream );
1252
1253     /* Get the file name and open it*/
1254     psz_tmpdestfile = strrchr( p_update->release.psz_url, '/' );
1255     if( !psz_tmpdestfile )
1256     {
1257         msg_Err( p_udt, "The URL %s is false formated", p_update->release.psz_url );
1258         goto end;
1259     }
1260     psz_tmpdestfile++;
1261     if( asprintf( &psz_destfile, "%s%s", psz_destdir, psz_tmpdestfile ) == -1 )
1262         goto end;
1263
1264     p_file = utf8_fopen( psz_destfile, "w" );
1265     if( !p_file )
1266     {
1267         msg_Err( p_udt, "Failed to open %s for writing", psz_destfile );
1268         goto end;
1269     }
1270
1271     /* Create a buffer and fill it with the downloaded file */
1272     p_buffer = (void *)malloc( 1 << 10 );
1273     if( !p_buffer )
1274         goto end;
1275
1276     psz_size = size_str( l_size );
1277     if( asprintf( &psz_status, "%s\nDownloading... O.O/%s %.1f%% done",  p_update->release.psz_url, psz_size, 0.0 ) != -1 )
1278     {
1279         i_progress = intf_UserProgress( p_udt, "Downloading ...", psz_status, 0.0, 0 );
1280         free( psz_status );
1281     }
1282
1283     while( ( i_read = stream_Read( p_stream, p_buffer, 1 << 10 ) ) &&
1284                                    !intf_ProgressIsCancelled( p_udt, i_progress ) )
1285     {
1286         fwrite( p_buffer, i_read, 1, p_file );
1287
1288         l_downloaded += i_read;
1289         psz_downloaded = size_str( l_downloaded );
1290         f_progress = 100.0*(float)l_downloaded/(float)l_size;
1291
1292         if( asprintf( &psz_status, "%s\nDonwloading... %s/%s %.1f%% done", p_update->release.psz_url,
1293                       psz_downloaded, psz_size, f_progress ) != -1 )
1294         {
1295             intf_ProgressUpdate( p_udt, i_progress, psz_status, f_progress, 0 );
1296             free( psz_status );
1297         }
1298         free( psz_downloaded );
1299     }
1300
1301     /* Finish the progress bar or delete the file if the user had canceled */
1302     fclose( p_file );
1303     p_file = NULL;
1304
1305     if( !intf_ProgressIsCancelled( p_udt, i_progress ) )
1306     {
1307         if( asprintf( &psz_status, "%s\nDone %s (100.0%%)", p_update->release.psz_url, psz_size ) != -1 )
1308         {
1309             intf_ProgressUpdate( p_udt, i_progress, psz_status, 100.0, 0 );
1310             free( psz_status );
1311         }
1312     }
1313     else
1314     {
1315         utf8_unlink( psz_destfile );
1316         goto end;
1317     }
1318
1319     signature_packet_v3_t sign;
1320     if( download_signature( VLC_OBJECT( p_udt ), &sign,
1321             p_update->release.psz_url ) != VLC_SUCCESS )
1322     {
1323         utf8_unlink( psz_destfile );
1324
1325         intf_UserFatal( p_udt, VLC_TRUE, _("File can not be verified"),
1326             _("It was not possible to downlaod a cryptographic signature for "
1327               "downloaded file \"%s\", and so VLC deleted it."),
1328             psz_destfile );
1329         msg_Err( p_udt, "Couldn't download signature of downloaded file" );
1330         goto end;
1331     }
1332
1333     if( sign.type != BINARY_SIGNATURE )
1334     {
1335         utf8_unlink( psz_destfile );
1336         msg_Err( p_udt, "Invalid signature type" );
1337         intf_UserFatal( p_udt, VLC_TRUE, _("Invalid signature"),
1338             _("The cryptographic signature for downloaded file \"%s\" was "
1339               "invalid and couldn't be used to securely verify it, and so "
1340               "VLC deleted it."),
1341             psz_destfile );
1342         goto end;
1343     }
1344
1345     uint8_t *p_hash = hash_sha1_from_file( psz_destfile, &sign );
1346     if( !p_hash )
1347     {
1348         msg_Err( p_udt, "Unable to hash %s", psz_destfile );
1349         utf8_unlink( psz_destfile );
1350         intf_UserFatal( p_udt, VLC_TRUE, _("File not verifiable"),
1351             _("It was not possible to securely verify downloaded file \"%s\", "
1352               "and so VLC deleted it."),
1353             psz_destfile );
1354
1355         goto end;
1356     }
1357
1358     if( p_hash[0] != sign.hash_verification[0] ||
1359         p_hash[1] != sign.hash_verification[1] )
1360     {
1361         utf8_unlink( psz_destfile );
1362         intf_UserFatal( p_udt, VLC_TRUE, _("File corrupted"),
1363             _("Downloaded file \"%s\" was corrupted, and so VLC deleted it."),
1364              psz_destfile );
1365         msg_Err( p_udt, "Bad SHA1 hash for %s", psz_destfile );
1366         free( p_hash );
1367         goto end;
1368     }
1369
1370     if( verify_signature( sign.r, sign.s, &p_update->p_pkey->key, p_hash )
1371             != VLC_SUCCESS )
1372     {
1373         utf8_unlink( psz_destfile );
1374         intf_UserFatal( p_udt, VLC_TRUE, _("File corrupted"),
1375             _("Downloaded file \"%s\" was corrupted, and so VLC deleted it."),
1376              psz_destfile );
1377         msg_Err( p_udt, "BAD SIGNATURE for %s", psz_destfile );
1378         free( p_hash );
1379         goto end;
1380     }
1381
1382     msg_Info( p_udt, "%s authenticated", psz_destfile );
1383     free( p_hash );
1384
1385 end:
1386     if( p_stream )
1387         stream_Delete( p_stream );
1388     if( p_file )
1389         fclose( p_file );
1390     free( psz_destdir );
1391     free( psz_destfile );
1392     free( p_buffer );
1393     free( psz_size );
1394
1395     vlc_object_destroy( p_udt );
1396 }
1397
1398 #endif