]> git.sesse.net Git - vlc/blob - src/misc/update.c
avcodec: map HNM4
[vlc] / src / misc / update.c
1 /*****************************************************************************
2  * update.c: VLC update checking and downloading
3  *****************************************************************************
4  * Copyright © 2005-2008 VLC authors and VideoLAN
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 it
12  * under the terms of the GNU Lesser 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 Lesser General Public License for more details.
20  *
21  * You should have received a copy of the GNU Lesser General Public License
22  * along with this program; if not, write to the Free Software Foundation,
23  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, 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_common.h>
40 #include <vlc_update.h>
41
42 #ifdef UPDATE_CHECK
43
44 #include <assert.h>
45
46 #include <vlc_pgpkey.h>
47 #include <vlc_stream.h>
48 #include <vlc_strings.h>
49 #include <vlc_fs.h>
50 #include <vlc_dialog.h>
51 #include <vlc_interface.h>
52
53 #include <gcrypt.h>
54 #include <vlc_gcrypt.h>
55 #ifdef _WIN32
56 #include <shellapi.h>
57 #endif
58 #include "update.h"
59 #include "../libvlc.h"
60
61 /*****************************************************************************
62  * Misc defines
63  *****************************************************************************/
64
65 /*
66  * Here is the format of these "status files" :
67  * First line is the last version: "X.Y.Z.E" where:
68  *      * X is the major number
69  *      * Y is the minor number
70  *      * Z is the revision number
71  *      * .E is an OPTIONAL extra number
72  *      * IE "1.2.0" or "1.1.10.1"
73  * Second line is a url of the binary for this last version
74  * Remaining text is a required description of the update
75  */
76
77 #if defined( _WIN64 )
78 # define UPDATE_OS_SUFFIX "-win-x64"
79 #elif defined( _WIN32 )
80 # define UPDATE_OS_SUFFIX "-win-x86"
81 #else
82 # define UPDATE_OS_SUFFIX ""
83 #endif
84
85 #ifndef NDEBUG
86 # define UPDATE_VLC_STATUS_URL "http://update-test.videolan.org/vlc/status-win-x86"
87 #else
88 # define UPDATE_VLC_STATUS_URL "http://update.videolan.org/vlc/status" UPDATE_OS_SUFFIX
89 #endif
90
91 /*****************************************************************************
92  * Update_t functions
93  *****************************************************************************/
94
95 #undef update_New
96 /**
97  * Create a new update VLC struct
98  *
99  * \param p_this the calling vlc_object
100  * \return pointer to new update_t or NULL
101  */
102 update_t *update_New( vlc_object_t *p_this )
103 {
104     update_t *p_update;
105     assert( p_this );
106
107     p_update = (update_t *)malloc( sizeof( update_t ) );
108     if( !p_update ) return NULL;
109
110     vlc_mutex_init( &p_update->lock );
111
112     p_update->p_libvlc = p_this->p_libvlc;
113
114     p_update->release.psz_url = NULL;
115     p_update->release.psz_desc = NULL;
116
117     p_update->p_download = NULL;
118     p_update->p_check = NULL;
119
120     p_update->p_pkey = NULL;
121     vlc_gcrypt_init();
122
123     return p_update;
124 }
125
126 /**
127  * Delete an update_t struct
128  *
129  * \param p_update update_t* pointer
130  * \return nothing
131  */
132 void update_Delete( update_t *p_update )
133 {
134     assert( p_update );
135
136     if( p_update->p_check )
137     {
138         vlc_join( p_update->p_check->thread, NULL );
139         free( p_update->p_check );
140     }
141
142     if( p_update->p_download )
143     {
144         atomic_store( &p_update->p_download->aborted, true );
145         vlc_join( p_update->p_download->thread, NULL );
146         vlc_object_release( p_update->p_download );
147     }
148
149     vlc_mutex_destroy( &p_update->lock );
150
151     free( p_update->release.psz_url );
152     free( p_update->release.psz_desc );
153     free( p_update->p_pkey );
154
155     free( p_update );
156 }
157
158 /**
159  * Empty the release struct
160  *
161  * \param p_update update_t* pointer
162  * \return nothing
163  */
164 static void EmptyRelease( update_t *p_update )
165 {
166     p_update->release.i_major = 0;
167     p_update->release.i_minor = 0;
168     p_update->release.i_revision = 0;
169
170     FREENULL( p_update->release.psz_url );
171     FREENULL( p_update->release.psz_desc );
172 }
173
174 /**
175  * Get the update file and parse it
176  * p_update has to be locked when calling this function
177  *
178  * \param p_update pointer to update struct
179  * \return true if the update is valid and authenticated
180  */
181 static bool GetUpdateFile( update_t *p_update )
182 {
183     stream_t *p_stream = NULL;
184     char *psz_version_line = NULL;
185     char *psz_update_data = NULL;
186
187     p_stream = stream_UrlNew( p_update->p_libvlc, UPDATE_VLC_STATUS_URL );
188     if( !p_stream )
189     {
190         msg_Err( p_update->p_libvlc, "Failed to open %s for reading",
191                  UPDATE_VLC_STATUS_URL );
192         goto error;
193     }
194
195     const int64_t i_read = stream_Size( p_stream );
196     psz_update_data = malloc( i_read + 1 ); /* terminating '\0' */
197     if( !psz_update_data )
198         goto error;
199
200     if( stream_Read( p_stream, psz_update_data, i_read ) != i_read )
201     {
202         msg_Err( p_update->p_libvlc, "Couldn't download update file %s",
203                 UPDATE_VLC_STATUS_URL );
204         goto error;
205     }
206     psz_update_data[i_read] = '\0';
207
208     stream_Delete( p_stream );
209     p_stream = NULL;
210
211     /* first line : version number */
212     char *psz_update_data_parser = psz_update_data;
213     size_t i_len = strcspn( psz_update_data, "\r\n" );
214     psz_update_data_parser += i_len;
215     while( *psz_update_data_parser == '\r' || *psz_update_data_parser == '\n' )
216         psz_update_data_parser++;
217
218     if( !(psz_version_line = malloc( i_len + 1)) )
219         goto error;
220     strncpy( psz_version_line, psz_update_data, i_len );
221     psz_version_line[i_len] = '\0';
222
223     p_update->release.i_extra = 0;
224     int ret = sscanf( psz_version_line, "%i.%i.%i.%i",
225                     &p_update->release.i_major, &p_update->release.i_minor,
226                     &p_update->release.i_revision, &p_update->release.i_extra);
227     if( ret != 3 && ret != 4 )
228     {
229             msg_Err( p_update->p_libvlc, "Update version false formated" );
230             goto error;
231     }
232
233     /* second line : URL */
234     i_len = strcspn( psz_update_data_parser, "\r\n" );
235     if( i_len == 0 )
236     {
237         msg_Err( p_update->p_libvlc, "Update file %s is corrupted: URL missing",
238                  UPDATE_VLC_STATUS_URL );
239
240         goto error;
241     }
242
243     if( !(p_update->release.psz_url = malloc( i_len + 1)) )
244         goto error;
245     strncpy( p_update->release.psz_url, psz_update_data_parser, i_len );
246     p_update->release.psz_url[i_len] = '\0';
247
248     psz_update_data_parser += i_len;
249     while( *psz_update_data_parser == '\r' || *psz_update_data_parser == '\n' )
250         psz_update_data_parser++;
251
252     /* Remaining data : description */
253     i_len = strlen( psz_update_data_parser );
254     if( i_len == 0 )
255     {
256         msg_Err( p_update->p_libvlc,
257                 "Update file %s is corrupted: description missing",
258                 UPDATE_VLC_STATUS_URL );
259         goto error;
260     }
261
262     if( !(p_update->release.psz_desc = malloc( i_len + 1)) )
263         goto error;
264     strncpy( p_update->release.psz_desc, psz_update_data_parser, i_len );
265     p_update->release.psz_desc[i_len] = '\0';
266
267     /* Now that we know the status is valid, we must download its signature
268      * to authenticate it */
269     signature_packet_t sign;
270     if( download_signature( VLC_OBJECT( p_update->p_libvlc ), &sign,
271             UPDATE_VLC_STATUS_URL ) != VLC_SUCCESS )
272     {
273         msg_Err( p_update->p_libvlc, "Couldn't download signature of status file" );
274         goto error;
275     }
276
277     if( sign.type != BINARY_SIGNATURE && sign.type != TEXT_SIGNATURE )
278     {
279         msg_Err( p_update->p_libvlc, "Invalid signature type" );
280         goto error;
281     }
282
283     p_update->p_pkey = (public_key_t*)malloc( sizeof( public_key_t ) );
284     if( !p_update->p_pkey )
285         goto error;
286
287     if( parse_public_key( videolan_public_key, sizeof( videolan_public_key ),
288                         p_update->p_pkey, NULL ) != VLC_SUCCESS )
289     {
290         msg_Err( p_update->p_libvlc, "Couldn't parse embedded public key, something went really wrong..." );
291         FREENULL( p_update->p_pkey );
292         goto error;
293     }
294
295     memcpy( p_update->p_pkey->longid, videolan_public_key_longid, 8 );
296
297     if( memcmp( sign.issuer_longid, p_update->p_pkey->longid , 8 ) != 0 )
298     {
299         msg_Dbg( p_update->p_libvlc, "Need to download the GPG key" );
300         public_key_t *p_new_pkey = download_key(
301                 VLC_OBJECT(p_update->p_libvlc),
302                 sign.issuer_longid, videolan_public_key_longid );
303         if( !p_new_pkey )
304         {
305             msg_Err( p_update->p_libvlc, "Couldn't download GPG key" );
306             FREENULL( p_update->p_pkey );
307             goto error;
308         }
309
310         uint8_t *p_hash = hash_from_public_key( p_new_pkey );
311         if( !p_hash )
312         {
313             msg_Err( p_update->p_libvlc, "Failed to hash signature" );
314             free( p_new_pkey );
315             FREENULL( p_update->p_pkey );
316             goto error;
317         }
318
319         if( verify_signature( &p_new_pkey->sig,
320                     &p_update->p_pkey->key, p_hash ) == VLC_SUCCESS )
321         {
322             free( p_hash );
323             msg_Info( p_update->p_libvlc, "Key authenticated" );
324             free( p_update->p_pkey );
325             p_update->p_pkey = p_new_pkey;
326         }
327         else
328         {
329             free( p_hash );
330             msg_Err( p_update->p_libvlc, "Key signature invalid !" );
331             goto error;
332         }
333     }
334
335     uint8_t *p_hash = hash_from_text( psz_update_data, &sign );
336     if( !p_hash )
337     {
338         msg_Warn( p_update->p_libvlc, "Can't compute hash for status file" );
339         goto error;
340     }
341
342     else if( p_hash[0] != sign.hash_verification[0] ||
343         p_hash[1] != sign.hash_verification[1] )
344     {
345         msg_Warn( p_update->p_libvlc, "Bad hash for status file" );
346         free( p_hash );
347         goto error;
348     }
349
350     else if( verify_signature( &sign, &p_update->p_pkey->key, p_hash )
351             != VLC_SUCCESS )
352     {
353         msg_Err( p_update->p_libvlc, "BAD SIGNATURE for status file" );
354         free( p_hash );
355         goto error;
356     }
357
358     else
359     {
360         msg_Info( p_update->p_libvlc, "Status file authenticated" );
361         free( p_hash );
362         free( psz_version_line );
363         free( psz_update_data );
364         return true;
365     }
366
367 error:
368     if( p_stream )
369         stream_Delete( p_stream );
370     free( psz_version_line );
371     free( psz_update_data );
372     return false;
373 }
374
375 static void* update_CheckReal( void * );
376
377 /**
378  * Check for updates
379  *
380  * \param p_update pointer to update struct
381  * \param pf_callback pointer to a function to call when the update_check is finished
382  * \param p_data pointer to some datas to give to the callback
383  * \returns nothing
384  */
385 void update_Check( update_t *p_update, void (*pf_callback)( void*, bool ), void *p_data )
386 {
387     assert( p_update );
388
389     // If the object already exist, destroy it
390     if( p_update->p_check )
391     {
392         vlc_join( p_update->p_check->thread, NULL );
393         free( p_update->p_check );
394     }
395
396     update_check_thread_t *p_uct = calloc( 1, sizeof( *p_uct ) );
397     if( !p_uct ) return;
398
399     p_uct->p_update = p_update;
400     p_update->p_check = p_uct;
401     p_uct->pf_callback = pf_callback;
402     p_uct->p_data = p_data;
403
404     vlc_clone( &p_uct->thread, update_CheckReal, p_uct, VLC_THREAD_PRIORITY_LOW );
405 }
406
407 void* update_CheckReal( void *obj )
408 {
409     update_check_thread_t *p_uct = (update_check_thread_t *)obj;
410     bool b_ret;
411     int canc;
412
413     canc = vlc_savecancel ();
414     vlc_mutex_lock( &p_uct->p_update->lock );
415
416     EmptyRelease( p_uct->p_update );
417     b_ret = GetUpdateFile( p_uct->p_update );
418     vlc_mutex_unlock( &p_uct->p_update->lock );
419
420     if( p_uct->pf_callback )
421         (p_uct->pf_callback)( p_uct->p_data, b_ret );
422
423     vlc_restorecancel (canc);
424     return NULL;
425 }
426
427 bool update_NeedUpgrade( update_t *p_update )
428 {
429     assert( p_update );
430
431     static const int current[4] = {
432         PACKAGE_VERSION_MAJOR,
433         PACKAGE_VERSION_MINOR,
434         PACKAGE_VERSION_REVISION,
435         PACKAGE_VERSION_EXTRA
436     };
437     const int latest[4] = {
438         p_update->release.i_major,
439         p_update->release.i_minor,
440         p_update->release.i_revision,
441         p_update->release.i_extra
442     };
443
444     for (unsigned i = 0; i < sizeof latest / sizeof *latest; i++) {
445         /* there is a new version available */
446         if (latest[i] > current[i])
447             return true;
448
449         /* current version is more recent than the latest version ?! */
450         if (latest[i] < current[i])
451             return false;
452     }
453
454     /* current version is not a release, it's a -git or -rc version */
455     if (*PACKAGE_VERSION_DEV)
456         return true;
457
458     /* current version is latest version */
459     return false;
460 }
461
462 /**
463  * Convert a long int size in bytes to a string
464  *
465  * \param l_size the size in bytes
466  * \return the size as a string
467  */
468 static char *size_str( long int l_size )
469 {
470     char *psz_tmp = NULL;
471     int i_retval = 0;
472     if( l_size >> 30 )
473         i_retval = asprintf( &psz_tmp, _("%.1f GiB"), (float)l_size/(1<<30) );
474     else if( l_size >> 20 )
475         i_retval = asprintf( &psz_tmp, _("%.1f MiB"), (float)l_size/(1<<20) );
476     else if( l_size >> 10 )
477         i_retval = asprintf( &psz_tmp, _("%.1f KiB"), (float)l_size/(1<<10) );
478     else
479         i_retval = asprintf( &psz_tmp, _("%ld B"), l_size );
480
481     return i_retval == -1 ? NULL : psz_tmp;
482 }
483
484 static void* update_DownloadReal( void * );
485
486 /**
487  * Download the file given in the update_t
488  *
489  * \param p_update structure
490  * \param dir to store the download file
491  * \return nothing
492  */
493 void update_Download( update_t *p_update, const char *psz_destdir )
494 {
495     assert( p_update );
496
497     // If the object already exist, destroy it
498     if( p_update->p_download )
499     {
500         atomic_store( &p_update->p_download->aborted, true );
501         vlc_join( p_update->p_download->thread, NULL );
502         vlc_object_release( p_update->p_download );
503     }
504
505     update_download_thread_t *p_udt =
506         vlc_custom_create( p_update->p_libvlc, sizeof( *p_udt ),
507                            "update download" );
508     if( !p_udt )
509         return;
510
511     p_udt->p_update = p_update;
512     p_update->p_download = p_udt;
513     p_udt->psz_destdir = psz_destdir ? strdup( psz_destdir ) : NULL;
514
515     atomic_store(&p_udt->aborted, false);
516     vlc_clone( &p_udt->thread, update_DownloadReal, p_udt, VLC_THREAD_PRIORITY_LOW );
517 }
518
519 static void* update_DownloadReal( void *obj )
520 {
521     update_download_thread_t *p_udt = (update_download_thread_t *)obj;
522     dialog_progress_bar_t *p_progress = NULL;
523     long int l_size;
524     long int l_downloaded = 0;
525     float f_progress;
526     char *psz_status;
527     char *psz_downloaded = NULL;
528     char *psz_size = NULL;
529     char *psz_destfile = NULL;
530     char *psz_tmpdestfile = NULL;
531
532     FILE *p_file = NULL;
533     stream_t *p_stream = NULL;
534     void* p_buffer = NULL;
535     int i_read;
536     int canc;
537
538     update_t *p_update = p_udt->p_update;
539     char *psz_destdir = p_udt->psz_destdir;
540
541     msg_Dbg( p_udt, "Opening Stream '%s'", p_update->release.psz_url );
542     canc = vlc_savecancel ();
543
544     /* Open the stream */
545     p_stream = stream_UrlNew( p_udt, p_update->release.psz_url );
546     if( !p_stream )
547     {
548         msg_Err( p_udt, "Failed to open %s for reading", p_update->release.psz_url );
549         goto end;
550     }
551
552     /* Get the stream size */
553     l_size = stream_Size( p_stream );
554
555     /* Get the file name and open it*/
556     psz_tmpdestfile = strrchr( p_update->release.psz_url, '/' );
557     if( !psz_tmpdestfile )
558     {
559         msg_Err( p_udt, "The URL %s is badly formated",
560                  p_update->release.psz_url );
561         goto end;
562     }
563     psz_tmpdestfile++;
564     if( asprintf( &psz_destfile, "%s%s", psz_destdir, psz_tmpdestfile ) == -1 )
565         goto end;
566
567     p_file = vlc_fopen( psz_destfile, "w" );
568     if( !p_file )
569     {
570         msg_Err( p_udt, "Failed to open %s for writing", psz_destfile );
571         dialog_FatalWait( p_udt, _("Saving file failed"),
572             _("Failed to open \"%s\" for writing"),
573              psz_destfile );
574         goto end;
575     }
576
577     /* Create a buffer and fill it with the downloaded file */
578     p_buffer = (void *)malloc( 1 << 10 );
579     if( unlikely(p_buffer == NULL) )
580         goto end;
581
582     msg_Dbg( p_udt, "Downloading Stream '%s'", p_update->release.psz_url );
583
584     psz_size = size_str( l_size );
585     if( asprintf( &psz_status, _("%s\nDownloading... %s/%s %.1f%% done"),
586         p_update->release.psz_url, "0.0", psz_size, 0.0 ) == -1 )
587         goto end;
588
589     p_progress = dialog_ProgressCreate( p_udt, _( "Downloading ..."),
590                                         psz_status, _("Cancel") );
591
592     free( psz_status );
593     if( p_progress == NULL )
594         goto end;
595
596     while( !atomic_load( &p_udt->aborted ) &&
597            ( i_read = stream_Read( p_stream, p_buffer, 1 << 10 ) ) &&
598            !dialog_ProgressCancelled( p_progress ) )
599     {
600         if( fwrite( p_buffer, i_read, 1, p_file ) < 1 )
601         {
602             msg_Err( p_udt, "Failed to write into %s", psz_destfile );
603             break;
604         }
605
606         l_downloaded += i_read;
607         psz_downloaded = size_str( l_downloaded );
608         f_progress = (float)l_downloaded/(float)l_size;
609
610         if( asprintf( &psz_status, _( "%s\nDownloading... %s/%s - %.1f%% done" ),
611                       p_update->release.psz_url, psz_downloaded, psz_size,
612                       f_progress*100 ) != -1 )
613         {
614             dialog_ProgressSet( p_progress, psz_status, f_progress );
615             free( psz_status );
616         }
617         free( psz_downloaded );
618     }
619
620     /* Finish the progress bar or delete the file if the user had canceled */
621     fclose( p_file );
622     p_file = NULL;
623
624     if( !atomic_load( &p_udt->aborted ) &&
625         !dialog_ProgressCancelled( p_progress ) )
626     {
627         dialog_ProgressDestroy( p_progress );
628         p_progress = NULL;
629     }
630     else
631     {
632         vlc_unlink( psz_destfile );
633         goto end;
634     }
635
636     signature_packet_t sign;
637     if( download_signature( VLC_OBJECT( p_udt ), &sign,
638             p_update->release.psz_url ) != VLC_SUCCESS )
639     {
640         vlc_unlink( psz_destfile );
641
642         dialog_FatalWait( p_udt, _("File could not be verified"),
643             _("It was not possible to download a cryptographic signature for "
644               "the downloaded file \"%s\". Thus, it was deleted."),
645             psz_destfile );
646         msg_Err( p_udt, "Couldn't download signature of downloaded file" );
647         goto end;
648     }
649
650     if( memcmp( sign.issuer_longid, p_update->p_pkey->longid, 8 ) )
651     {
652         vlc_unlink( psz_destfile );
653         msg_Err( p_udt, "Invalid signature issuer" );
654         dialog_FatalWait( p_udt, _("Invalid signature"),
655             _("The cryptographic signature for the downloaded file \"%s\" was "
656               "invalid and could not be used to securely verify it. Thus, the "
657               "file was deleted."),
658             psz_destfile );
659         goto end;
660     }
661
662     if( sign.type != BINARY_SIGNATURE )
663     {
664         vlc_unlink( psz_destfile );
665         msg_Err( p_udt, "Invalid signature type" );
666         dialog_FatalWait( p_udt, _("Invalid signature"),
667             _("The cryptographic signature for the downloaded file \"%s\" was "
668               "invalid and could not be used to securely verify it. Thus, the "
669               "file was deleted."),
670             psz_destfile );
671         goto end;
672     }
673
674     uint8_t *p_hash = hash_from_file( psz_destfile, &sign );
675     if( !p_hash )
676     {
677         msg_Err( p_udt, "Unable to hash %s", psz_destfile );
678         vlc_unlink( psz_destfile );
679         dialog_FatalWait( p_udt, _("File not verifiable"),
680             _("It was not possible to securely verify the downloaded file"
681               " \"%s\". Thus, it was deleted."),
682             psz_destfile );
683
684         goto end;
685     }
686
687     if( p_hash[0] != sign.hash_verification[0] ||
688         p_hash[1] != sign.hash_verification[1] )
689     {
690         vlc_unlink( psz_destfile );
691         dialog_FatalWait( p_udt, _("File corrupted"),
692             _("Downloaded file \"%s\" was corrupted. Thus, it was deleted."),
693              psz_destfile );
694         msg_Err( p_udt, "Bad hash for %s", psz_destfile );
695         free( p_hash );
696         goto end;
697     }
698
699     if( verify_signature( &sign, &p_update->p_pkey->key, p_hash )
700             != VLC_SUCCESS )
701     {
702         vlc_unlink( psz_destfile );
703         dialog_FatalWait( p_udt, _("File corrupted"),
704             _("Downloaded file \"%s\" was corrupted. Thus, it was deleted."),
705              psz_destfile );
706         msg_Err( p_udt, "BAD SIGNATURE for %s", psz_destfile );
707         free( p_hash );
708         goto end;
709     }
710
711     msg_Info( p_udt, "%s authenticated", psz_destfile );
712     free( p_hash );
713
714 #ifdef _WIN32
715     int answer = dialog_Question( p_udt, _("Update VLC media player"),
716     _("The new version was successfully downloaded. Do you want to close VLC and install it now?"),
717     _("Install"), _("Cancel"), NULL);
718
719     if(answer == 1)
720     {
721         wchar_t psz_wdestfile[MAX_PATH];
722         MultiByteToWideChar( CP_UTF8, 0, psz_destfile, -1, psz_wdestfile, MAX_PATH );
723         answer = (int)ShellExecuteW( NULL, L"open", psz_wdestfile, NULL, NULL, SW_SHOW);
724         if(answer > 32)
725             libvlc_Quit(p_udt->p_libvlc);
726     }
727 #endif
728 end:
729     if( p_progress )
730         dialog_ProgressDestroy( p_progress );
731     if( p_stream )
732         stream_Delete( p_stream );
733     if( p_file )
734         fclose( p_file );
735     free( psz_destdir );
736     free( psz_destfile );
737     free( p_buffer );
738     free( psz_size );
739
740     vlc_restorecancel( canc );
741     return NULL;
742 }
743
744 update_release_t *update_GetRelease( update_t *p_update )
745 {
746     return &p_update->release;
747 }
748
749 #else
750 #undef update_New
751 update_t *update_New( vlc_object_t *p_this )
752 {
753     (void)p_this;
754     return NULL;
755 }
756
757 void update_Delete( update_t *p_update )
758 {
759     (void)p_update;
760 }
761
762 void update_Check( update_t *p_update, void (*pf_callback)( void*, bool ),
763                    void *p_data )
764 {
765     (void)p_update; (void)pf_callback; (void)p_data;
766 }
767
768 bool update_NeedUpgrade( update_t *p_update )
769 {
770     (void)p_update;
771     return false;
772 }
773
774 void update_Download( update_t *p_update, const char *psz_destdir )
775 {
776     (void)p_update; (void)psz_destdir;
777 }
778
779 update_release_t *update_GetRelease( update_t *p_update )
780 {
781     (void)p_update;
782     return NULL;
783 }
784 #endif