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