]> git.sesse.net Git - vlc/blob - src/modules/cache.c
Introduce realloc_or_free() to src/*, and add assert() to mark unhandled ENOMEM error...
[vlc] / src / modules / cache.c
1 /*****************************************************************************
2  * cache.c: Plugins cache
3  *****************************************************************************
4  * Copyright (C) 2001-2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Sam Hocevar <sam@zoy.org>
8  *          Ethan C. Baldridge <BaldridgeE@cadmus.com>
9  *          Hans-Peter Jansen <hpj@urpla.net>
10  *          Gildas Bazin <gbazin@videolan.org>
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
25  *****************************************************************************/
26
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <vlc_common.h>
32 #include "libvlc.h"
33
34 #include <stdlib.h>                                      /* free(), strtol() */
35 #include <stdio.h>                                              /* sprintf() */
36 #include <string.h>                                              /* strdup() */
37 #include <vlc_plugin.h>
38
39 #ifdef HAVE_SYS_TYPES_H
40 #   include <sys/types.h>
41 #endif
42 #ifdef HAVE_UNISTD_H
43 #   include <unistd.h>
44 #endif
45
46 #if !defined(HAVE_DYNAMIC_PLUGINS)
47     /* no support for plugins */
48 #elif defined(HAVE_DL_DYLD)
49 #   if defined(HAVE_MACH_O_DYLD_H)
50 #       include <mach-o/dyld.h>
51 #   endif
52 #elif defined(HAVE_DL_BEOS)
53 #   if defined(HAVE_IMAGE_H)
54 #       include <image.h>
55 #   endif
56 #elif defined(HAVE_DL_WINDOWS)
57 #   include <windows.h>
58 #elif defined(HAVE_DL_DLOPEN)
59 #   if defined(HAVE_DLFCN_H) /* Linux, BSD, Hurd */
60 #       include <dlfcn.h>
61 #   endif
62 #   if defined(HAVE_SYS_DL_H)
63 #       include <sys/dl.h>
64 #   endif
65 #elif defined(HAVE_DL_SHL_LOAD)
66 #   if defined(HAVE_DL_H)
67 #       include <dl.h>
68 #   endif
69 #endif
70
71 #include "config/configuration.h"
72
73 #include "vlc_charset.h"
74
75 #include "modules/modules.h"
76
77
78 /*****************************************************************************
79  * Local prototypes
80  *****************************************************************************/
81 #ifdef HAVE_DYNAMIC_PLUGINS
82 static int    CacheLoadConfig  ( module_t *, FILE * );
83 static int    CacheSaveConfig  ( module_t *, FILE * );
84
85 /* Sub-version number
86  * (only used to avoid breakage in dev version when cache structure changes) */
87 #define CACHE_SUBVERSION_NUM 5
88
89 /* Format string for the cache filename */
90 #define CACHENAME_FORMAT \
91     "plugins-%.2zx%.2zx%.2"PRIx8".dat"
92 /* Magic for the cache filename */
93 #define CACHENAME_VALUES \
94     sizeof(int), sizeof(void *), *(uint8_t *)&(uint16_t){ 0xbe1e }
95
96
97 /*****************************************************************************
98  * LoadPluginsCache: loads the plugins cache file
99  *****************************************************************************
100  * This function will load the plugin cache if present and valid. This cache
101  * will in turn be queried by AllocateAllPlugins() to see if it needs to
102  * actually load the dynamically loadable module.
103  * This allows us to only fully load plugins when they are actually used.
104  *****************************************************************************/
105 void CacheLoad( vlc_object_t *p_this, module_bank_t *p_bank, bool b_delete )
106 {
107     char *psz_filename, *psz_cachedir = config_GetUserDir(VLC_CACHE_DIR);
108     FILE *file;
109     int i, j, i_size, i_read;
110     char p_cachestring[sizeof("cache " COPYRIGHT_MESSAGE)];
111     int i_cache;
112     module_cache_t **pp_cache = 0;
113     int32_t i_file_size, i_marker;
114
115     if( !psz_cachedir ) /* XXX: this should never happen */
116     {
117         msg_Err( p_this, "Unable to get cache directory" );
118         return;
119     }
120
121     if( asprintf( &psz_filename, "%s"DIR_SEP CACHENAME_FORMAT,
122                   psz_cachedir, CACHENAME_VALUES ) == -1 )
123     {
124         free( psz_cachedir );
125         return;
126     }
127     free( psz_cachedir );
128
129     if( b_delete )
130     {
131 #if !defined( UNDER_CE )
132         unlink( psz_filename );
133 #else
134         wchar_t psz_wf[MAX_PATH];
135         MultiByteToWideChar( CP_ACP, 0, psz_filename, -1, psz_wf, MAX_PATH );
136         DeleteFile( psz_wf );
137 #endif
138         msg_Dbg( p_this, "removing plugins cache file %s", psz_filename );
139         free( psz_filename );
140         return;
141     }
142
143     msg_Dbg( p_this, "loading plugins cache file %s", psz_filename );
144
145     file = utf8_fopen( psz_filename, "rb" );
146     if( !file )
147     {
148         msg_Warn( p_this, "could not open plugins cache file %s for reading",
149                   psz_filename );
150         free( psz_filename );
151         return;
152     }
153     free( psz_filename );
154
155     /* Check the file size */
156     i_read = fread( &i_file_size, 1, sizeof(i_file_size), file );
157     if( i_read != sizeof(i_file_size) )
158     {
159         msg_Warn( p_this, "This doesn't look like a valid plugins cache "
160                   "(too short)" );
161         fclose( file );
162         return;
163     }
164
165     fseek( file, 0, SEEK_END );
166     if( ftell( file ) != i_file_size )
167     {
168         msg_Warn( p_this, "This doesn't look like a valid plugins cache "
169                   "(corrupted size)" );
170         fclose( file );
171         return;
172     }
173     fseek( file, sizeof(i_file_size), SEEK_SET );
174
175     /* Check the file is a plugins cache */
176     i_size = sizeof("cache " COPYRIGHT_MESSAGE) - 1;
177     i_read = fread( p_cachestring, 1, i_size, file );
178     if( i_read != i_size ||
179         memcmp( p_cachestring, "cache " COPYRIGHT_MESSAGE, i_size ) )
180     {
181         msg_Warn( p_this, "This doesn't look like a valid plugins cache" );
182         fclose( file );
183         return;
184     }
185
186 #ifdef DISTRO_VERSION
187     /* Check for distribution specific version */
188     char p_distrostring[sizeof( DISTRO_VERSION )];
189     i_size = sizeof( DISTRO_VERSION ) - 1;
190     i_read = fread( p_distrostring, 1, i_size, file );
191     if( i_read != i_size ||
192         memcmp( p_distrostring, DISTRO_VERSION, i_size ) )
193     {
194         msg_Warn( p_this, "This doesn't look like a valid plugins cache" );
195         fclose( file );
196         return;
197     }
198 #endif
199
200     /* Check Sub-version number */
201     i_read = fread( &i_marker, 1, sizeof(i_marker), file );
202     if( i_read != sizeof(i_marker) || i_marker != CACHE_SUBVERSION_NUM )
203     {
204         msg_Warn( p_this, "This doesn't look like a valid plugins cache "
205                   "(corrupted header)" );
206         fclose( file );
207         return;
208     }
209
210     /* Check header marker */
211     i_read = fread( &i_marker, 1, sizeof(i_marker), file );
212     if( i_read != sizeof(i_marker) ||
213         i_marker != ftell( file ) - (int)sizeof(i_marker) )
214     {
215         msg_Warn( p_this, "This doesn't look like a valid plugins cache "
216                   "(corrupted header)" );
217         fclose( file );
218         return;
219     }
220
221     p_bank->i_loaded_cache = 0;
222     if (fread( &i_cache, 1, sizeof(i_cache), file ) != sizeof(i_cache) )
223     {
224         msg_Warn( p_this, "This doesn't look like a valid plugins cache "
225                   "(file too short)" );
226         fclose( file );
227         return;
228     }
229
230     if( i_cache )
231         pp_cache = p_bank->pp_loaded_cache =
232                    malloc( i_cache * sizeof(void *) );
233
234 #define LOAD_IMMEDIATE(a) \
235     if( fread( (void *)&a, sizeof(char), sizeof(a), file ) != sizeof(a) ) goto error
236 #define LOAD_STRING(a) \
237 { \
238     a = NULL; \
239     if( ( fread( &i_size, sizeof(i_size), 1, file ) != 1 ) \
240      || ( i_size > 16384 ) ) \
241         goto error; \
242     if( i_size ) { \
243         char *psz = malloc( i_size ); \
244         if( fread( psz, i_size, 1, file ) != 1 ) { \
245             free( psz ); \
246             goto error; \
247         } \
248         if( psz[i_size-1] ) { \
249             free( psz ); \
250             goto error; \
251         } \
252         a = psz; \
253     } \
254 }
255
256     for( i = 0; i < i_cache; i++ )
257     {
258         uint16_t i_size;
259         int i_submodules;
260
261         pp_cache[i] = malloc( sizeof(module_cache_t) );
262         p_bank->i_loaded_cache++;
263
264         /* Load common info */
265         LOAD_STRING( pp_cache[i]->psz_file );
266         LOAD_IMMEDIATE( pp_cache[i]->i_time );
267         LOAD_IMMEDIATE( pp_cache[i]->i_size );
268         LOAD_IMMEDIATE( pp_cache[i]->b_junk );
269         pp_cache[i]->b_used = false;
270
271         if( pp_cache[i]->b_junk ) continue;
272
273         pp_cache[i]->p_module = vlc_module_create( p_this );
274
275         /* Load additional infos */
276         free( pp_cache[i]->p_module->psz_object_name );
277         LOAD_STRING( pp_cache[i]->p_module->psz_object_name );
278         LOAD_STRING( pp_cache[i]->p_module->psz_shortname );
279         LOAD_STRING( pp_cache[i]->p_module->psz_longname );
280         LOAD_STRING( pp_cache[i]->p_module->psz_help );
281         for( j = 0; j < MODULE_SHORTCUT_MAX; j++ )
282         {
283             LOAD_STRING( pp_cache[i]->p_module->pp_shortcuts[j] ); // FIX
284         }
285         LOAD_STRING( pp_cache[i]->p_module->psz_capability );
286         LOAD_IMMEDIATE( pp_cache[i]->p_module->i_score );
287         LOAD_IMMEDIATE( pp_cache[i]->p_module->i_cpu );
288         LOAD_IMMEDIATE( pp_cache[i]->p_module->b_unloadable );
289         LOAD_IMMEDIATE( pp_cache[i]->p_module->b_reentrant );
290         LOAD_IMMEDIATE( pp_cache[i]->p_module->b_submodule );
291
292         /* Config stuff */
293         if( CacheLoadConfig( pp_cache[i]->p_module, file ) != VLC_SUCCESS )
294             goto error;
295
296         LOAD_STRING( pp_cache[i]->p_module->psz_filename );
297
298         LOAD_IMMEDIATE( i_submodules );
299
300         while( i_submodules-- )
301         {
302             module_t *p_module = vlc_submodule_create( pp_cache[i]->p_module );
303             free( p_module->psz_object_name );
304             LOAD_STRING( p_module->psz_object_name );
305             LOAD_STRING( p_module->psz_shortname );
306             LOAD_STRING( p_module->psz_longname );
307             LOAD_STRING( p_module->psz_help );
308             for( j = 0; j < MODULE_SHORTCUT_MAX; j++ )
309             {
310                 LOAD_STRING( p_module->pp_shortcuts[j] ); // FIX
311             }
312             LOAD_STRING( p_module->psz_capability );
313             LOAD_IMMEDIATE( p_module->i_score );
314             LOAD_IMMEDIATE( p_module->i_cpu );
315             LOAD_IMMEDIATE( p_module->b_unloadable );
316             LOAD_IMMEDIATE( p_module->b_reentrant );
317         }
318     }
319
320     fclose( file );
321     return;
322
323  error:
324
325     msg_Warn( p_this, "plugins cache not loaded (corrupted)" );
326
327     /* TODO: cleanup */
328     p_bank->i_loaded_cache = 0;
329
330     fclose( file );
331     return;
332 }
333
334
335 static int CacheLoadConfig( module_t *p_module, FILE *file )
336 {
337     uint32_t i_lines;
338     uint16_t i_size;
339
340     /* Calculate the structure length */
341     LOAD_IMMEDIATE( p_module->i_config_items );
342     LOAD_IMMEDIATE( p_module->i_bool_items );
343
344     LOAD_IMMEDIATE( i_lines );
345
346     /* Allocate memory */
347     if (i_lines)
348     {
349         p_module->p_config =
350             (module_config_t *)calloc( i_lines, sizeof(module_config_t) );
351         if( p_module->p_config == NULL )
352         {
353             p_module->confsize = 0;
354             return VLC_ENOMEM;
355         }
356     }
357     p_module->confsize = i_lines;
358
359     /* Do the duplication job */
360     for (size_t i = 0; i < i_lines; i++ )
361     {
362         LOAD_IMMEDIATE( p_module->p_config[i] );
363
364         LOAD_STRING( p_module->p_config[i].psz_type );
365         LOAD_STRING( p_module->p_config[i].psz_name );
366         LOAD_STRING( p_module->p_config[i].psz_text );
367         LOAD_STRING( p_module->p_config[i].psz_longtext );
368         LOAD_STRING( p_module->p_config[i].psz_oldname );
369         LOAD_IMMEDIATE( p_module->p_config[i].b_removed );
370
371         if (IsConfigStringType (p_module->p_config[i].i_type))
372         {
373             LOAD_STRING (p_module->p_config[i].orig.psz);
374             p_module->p_config[i].value.psz =
375                     (p_module->p_config[i].orig.psz != NULL)
376                         ? strdup (p_module->p_config[i].orig.psz) : NULL;
377             p_module->p_config[i].saved.psz = NULL;
378         }
379         else
380         {
381             memcpy (&p_module->p_config[i].value, &p_module->p_config[i].orig,
382                     sizeof (p_module->p_config[i].value));
383             memcpy (&p_module->p_config[i].saved, &p_module->p_config[i].orig,
384                     sizeof (p_module->p_config[i].saved));
385         }
386
387         p_module->p_config[i].b_dirty = false;
388
389         p_module->p_config[i].p_lock = &p_module->lock;
390
391         if( p_module->p_config[i].i_list )
392         {
393             if( p_module->p_config[i].ppsz_list )
394             {
395                 int j;
396                 p_module->p_config[i].ppsz_list =
397                     malloc( (p_module->p_config[i].i_list+1) * sizeof(char *));
398                 if( p_module->p_config[i].ppsz_list )
399                 {
400                     for( j = 0; j < p_module->p_config[i].i_list; j++ )
401                         LOAD_STRING( p_module->p_config[i].ppsz_list[j] );
402                     p_module->p_config[i].ppsz_list[j] = NULL;
403                 }
404             }
405             if( p_module->p_config[i].ppsz_list_text )
406             {
407                 int j;
408                 p_module->p_config[i].ppsz_list_text =
409                     malloc( (p_module->p_config[i].i_list+1) * sizeof(char *));
410                 if( p_module->p_config[i].ppsz_list_text )
411                 {
412                   for( j = 0; j < p_module->p_config[i].i_list; j++ )
413                       LOAD_STRING( p_module->p_config[i].ppsz_list_text[j] );
414                   p_module->p_config[i].ppsz_list_text[j] = NULL;
415                 }
416             }
417             if( p_module->p_config[i].pi_list )
418             {
419                 p_module->p_config[i].pi_list =
420                     malloc( (p_module->p_config[i].i_list + 1) * sizeof(int) );
421                 if( p_module->p_config[i].pi_list )
422                 {
423                     for (int j = 0; j < p_module->p_config[i].i_list; j++)
424                         LOAD_IMMEDIATE( p_module->p_config[i].pi_list[j] );
425                 }
426             }
427         }
428
429         if( p_module->p_config[i].i_action )
430         {
431             p_module->p_config[i].ppf_action =
432                 malloc( p_module->p_config[i].i_action * sizeof(void *) );
433             p_module->p_config[i].ppsz_action_text =
434                 malloc( p_module->p_config[i].i_action * sizeof(char *) );
435
436             for (int j = 0; j < p_module->p_config[i].i_action; j++)
437             {
438                 p_module->p_config[i].ppf_action[j] = 0;
439                 LOAD_STRING( p_module->p_config[i].ppsz_action_text[j] );
440             }
441         }
442
443         LOAD_IMMEDIATE( p_module->p_config[i].pf_callback );
444     }
445
446     return VLC_SUCCESS;
447
448  error:
449
450     return VLC_EGENERIC;
451 }
452
453 static int CacheSaveSubmodule( FILE *file, module_t *p_module );
454
455 /*****************************************************************************
456  * SavePluginsCache: saves the plugins cache to a file
457  *****************************************************************************/
458 void CacheSave( vlc_object_t *p_this, module_bank_t *p_bank )
459 {
460     static char const psz_tag[] =
461         "Signature: 8a477f597d28d172789f06886806bc55\r\n"
462         "# This file is a cache directory tag created by VLC.\r\n"
463         "# For information about cache directory tags, see:\r\n"
464         "#   http://www.brynosaurus.com/cachedir/\r\n";
465
466     char *psz_cachedir = config_GetUserDir(VLC_CACHE_DIR);
467     FILE *file;
468     int i, j, i_cache;
469     module_cache_t **pp_cache;
470     uint32_t i_file_size = 0;
471
472     if( !psz_cachedir ) /* XXX: this should never happen */
473     {
474         msg_Err( p_this, "unable to get cache directory" );
475         return;
476     }
477
478     char psz_filename[sizeof(DIR_SEP) + 32 + strlen(psz_cachedir)];
479     config_CreateDir( p_this, psz_cachedir );
480
481     snprintf( psz_filename, sizeof( psz_filename ),
482               "%s"DIR_SEP"CACHEDIR.TAG", psz_cachedir );
483     file = utf8_fopen( psz_filename, "wb" );
484     if (file != NULL)
485     {
486         if (fwrite (psz_tag, 1, sizeof (psz_tag) - 1, file) != 1)
487             clearerr (file); /* what else can we do? */
488         fclose( file );
489     }
490
491     snprintf( psz_filename, sizeof( psz_filename ),
492               "%s"DIR_SEP CACHENAME_FORMAT, psz_cachedir,
493               CACHENAME_VALUES );
494     free( psz_cachedir );
495     msg_Dbg( p_this, "writing plugins cache %s", psz_filename );
496
497     char psz_tmpname[sizeof (psz_filename) + 12];
498     snprintf (psz_tmpname, sizeof (psz_tmpname), "%s.%"PRIu32, psz_filename,
499               (uint32_t)getpid ());
500     file = utf8_fopen( psz_tmpname, "wb" );
501     if (file == NULL)
502         goto error;
503
504     /* Empty space for file size */
505     if (fwrite (&i_file_size, sizeof (i_file_size), 1, file) != 1)
506         goto error;
507
508     /* Contains version number */
509     if (fputs ("cache "COPYRIGHT_MESSAGE, file) == EOF)
510         goto error;
511 #ifdef DISTRO_VERSION
512     /* Allow binary maintaner to pass a string to detect new binary version*/
513     if (fputs( DISTRO_VERSION, file ) == EOF)
514         goto error;
515 #endif
516     /* Sub-version number (to avoid breakage in the dev version when cache
517      * structure changes) */
518     i_file_size = CACHE_SUBVERSION_NUM;
519     if (fwrite (&i_file_size, sizeof (i_file_size), 1, file) != 1 )
520         goto error;
521
522     /* Header marker */
523     i_file_size = ftell( file );
524     if (fwrite (&i_file_size, sizeof (i_file_size), 1, file) != 1)
525         goto error;
526
527     i_cache = p_bank->i_cache;
528     pp_cache = p_bank->pp_cache;
529
530     if (fwrite( &i_cache, sizeof (i_cache), 1, file) != 1)
531         goto error;
532
533 #define SAVE_IMMEDIATE( a ) \
534     if (fwrite (&a, sizeof(a), 1, file) != 1) \
535         goto error
536 #define SAVE_STRING( a ) \
537     { \
538         uint16_t i_size = (a != NULL) ? (strlen (a) + 1) : 0; \
539         if ((fwrite (&i_size, sizeof (i_size), 1, file) != 1) \
540          || (a && (fwrite (a, 1, i_size, file) != i_size))) \
541             goto error; \
542     } while(0)
543
544     for( i = 0; i < i_cache; i++ )
545     {
546         uint32_t i_submodule;
547
548         /* Save common info */
549         SAVE_STRING( pp_cache[i]->psz_file );
550         SAVE_IMMEDIATE( pp_cache[i]->i_time );
551         SAVE_IMMEDIATE( pp_cache[i]->i_size );
552         SAVE_IMMEDIATE( pp_cache[i]->b_junk );
553
554         if( pp_cache[i]->b_junk ) continue;
555
556         /* Save additional infos */
557         SAVE_STRING( pp_cache[i]->p_module->psz_object_name );
558         SAVE_STRING( pp_cache[i]->p_module->psz_shortname );
559         SAVE_STRING( pp_cache[i]->p_module->psz_longname );
560         SAVE_STRING( pp_cache[i]->p_module->psz_help );
561         for( j = 0; j < MODULE_SHORTCUT_MAX; j++ )
562         {
563             SAVE_STRING( pp_cache[i]->p_module->pp_shortcuts[j] ); // FIX
564         }
565         SAVE_STRING( pp_cache[i]->p_module->psz_capability );
566         SAVE_IMMEDIATE( pp_cache[i]->p_module->i_score );
567         SAVE_IMMEDIATE( pp_cache[i]->p_module->i_cpu );
568         SAVE_IMMEDIATE( pp_cache[i]->p_module->b_unloadable );
569         SAVE_IMMEDIATE( pp_cache[i]->p_module->b_reentrant );
570         SAVE_IMMEDIATE( pp_cache[i]->p_module->b_submodule );
571
572         /* Config stuff */
573         if (CacheSaveConfig (pp_cache[i]->p_module, file))
574             goto error;
575
576         SAVE_STRING( pp_cache[i]->p_module->psz_filename );
577
578         i_submodule = pp_cache[i]->p_module->submodule_count;
579         SAVE_IMMEDIATE( i_submodule );
580         if( CacheSaveSubmodule( file, pp_cache[i]->p_module->submodule ) )
581             goto error;
582     }
583
584     /* Fill-up file size */
585     i_file_size = ftell( file );
586     fseek( file, 0, SEEK_SET );
587     if (fwrite (&i_file_size, sizeof (i_file_size), 1, file) != 1
588      || fflush (file)) /* flush libc buffers */
589         goto error;
590
591 #ifndef WIN32
592     utf8_rename (psz_tmpname, psz_filename); /* atomically replace old cache */
593     fclose (file);
594 #else
595     utf8_unlink (psz_filename);
596     fclose (file);
597     utf8_rename (psz_tmpname, psz_filename);
598 #endif
599     return; /* success! */
600
601 error:
602     msg_Warn (p_this, "could not write plugins cache %s (%m)",
603               psz_filename);
604     if (file != NULL)
605     {
606         clearerr (file);
607         fclose (file);
608     }
609 }
610
611 static int CacheSaveSubmodule( FILE *file, module_t *p_module )
612 {
613     if( !p_module )
614         return 0;
615     if( CacheSaveSubmodule( file, p_module->next ) )
616         goto error;
617
618     SAVE_STRING( p_module->psz_object_name );
619     SAVE_STRING( p_module->psz_shortname );
620     SAVE_STRING( p_module->psz_longname );
621     SAVE_STRING( p_module->psz_help );
622     for( unsigned j = 0; j < MODULE_SHORTCUT_MAX; j++ )
623          SAVE_STRING( p_module->pp_shortcuts[j] ); // FIXME
624
625     SAVE_STRING( p_module->psz_capability );
626     SAVE_IMMEDIATE( p_module->i_score );
627     SAVE_IMMEDIATE( p_module->i_cpu );
628     SAVE_IMMEDIATE( p_module->b_unloadable );
629     SAVE_IMMEDIATE( p_module->b_reentrant );
630     return 0;
631
632 error:
633     return -1;
634 }
635
636
637 static int CacheSaveConfig( module_t *p_module, FILE *file )
638 {
639     uint32_t i_lines = p_module->confsize;
640
641     SAVE_IMMEDIATE( p_module->i_config_items );
642     SAVE_IMMEDIATE( p_module->i_bool_items );
643     SAVE_IMMEDIATE( i_lines );
644
645     for (size_t i = 0; i < i_lines ; i++)
646     {
647         SAVE_IMMEDIATE( p_module->p_config[i] );
648
649         SAVE_STRING( p_module->p_config[i].psz_type );
650         SAVE_STRING( p_module->p_config[i].psz_name );
651         SAVE_STRING( p_module->p_config[i].psz_text );
652         SAVE_STRING( p_module->p_config[i].psz_longtext );
653         SAVE_STRING( p_module->p_config[i].psz_oldname );
654         SAVE_IMMEDIATE( p_module->p_config[i].b_removed );
655
656         if (IsConfigStringType (p_module->p_config[i].i_type))
657             SAVE_STRING( p_module->p_config[i].orig.psz );
658
659         if( p_module->p_config[i].i_list )
660         {
661             if( p_module->p_config[i].ppsz_list )
662             {
663                 for (int j = 0; j < p_module->p_config[i].i_list; j++)
664                     SAVE_STRING( p_module->p_config[i].ppsz_list[j] );
665             }
666
667             if( p_module->p_config[i].ppsz_list_text )
668             {
669                 for (int j = 0; j < p_module->p_config[i].i_list; j++)
670                     SAVE_STRING( p_module->p_config[i].ppsz_list_text[j] );
671             }
672             if( p_module->p_config[i].pi_list )
673             {
674                 for (int j = 0; j < p_module->p_config[i].i_list; j++)
675                     SAVE_IMMEDIATE( p_module->p_config[i].pi_list[j] );
676             }
677         }
678
679         for (int j = 0; j < p_module->p_config[i].i_action; j++)
680             SAVE_STRING( p_module->p_config[i].ppsz_action_text[j] );
681
682         SAVE_IMMEDIATE( p_module->p_config[i].pf_callback );
683     }
684     return 0;
685
686 error:
687     return -1;
688 }
689
690 /*****************************************************************************
691  * CacheMerge: Merge a cache module descriptor with a full module descriptor.
692  *****************************************************************************/
693 void CacheMerge( vlc_object_t *p_this, module_t *p_cache, module_t *p_module )
694 {
695     (void)p_this;
696
697     p_cache->pf_activate = p_module->pf_activate;
698     p_cache->pf_deactivate = p_module->pf_deactivate;
699     p_cache->handle = p_module->handle;
700
701     /* FIXME: This looks too simplistic an algorithm to me. What if the module
702      * file was altered such that the number of order of submodules was
703      * altered... after VLC started -- Courmisch, 09/2008 */
704     module_t *p_child = p_module->submodule,
705              *p_cchild = p_cache->submodule;
706     while( p_child && p_cchild )
707     {
708         p_cchild->pf_activate = p_child->pf_activate;
709         p_cchild->pf_deactivate = p_child->pf_deactivate;
710         p_child = p_child->next;
711         p_cchild = p_cchild->next;
712     }
713
714     p_cache->b_loaded = true;
715     p_module->b_loaded = false;
716 }
717
718 /*****************************************************************************
719  * CacheFind: finds the cache entry corresponding to a file
720  *****************************************************************************/
721 module_cache_t *CacheFind( module_bank_t *p_bank, const char *psz_file,
722                            int64_t i_time, int64_t i_size )
723 {
724     module_cache_t **pp_cache;
725     int i_cache, i;
726
727     pp_cache = p_bank->pp_loaded_cache;
728     i_cache = p_bank->i_loaded_cache;
729
730     for( i = 0; i < i_cache; i++ )
731     {
732         if( !strcmp( pp_cache[i]->psz_file, psz_file ) &&
733             pp_cache[i]->i_time == i_time &&
734             pp_cache[i]->i_size == i_size ) return pp_cache[i];
735     }
736
737     return NULL;
738 }
739
740 #endif /* HAVE_DYNAMIC_PLUGINS */