]> git.sesse.net Git - vlc/blob - src/misc/modules.c
443d88526e36a7967868589de6d866662b7d10c4
[vlc] / src / misc / modules.c
1 /*****************************************************************************
2  * modules.c : Builtin and plugin modules management functions
3  *****************************************************************************
4  * Copyright (C) 2001-2004 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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
25  *****************************************************************************/
26
27 /* Some faulty libcs have a broken struct dirent when _FILE_OFFSET_BITS
28  * is set to 64. Don't try to be cleverer. */
29 #ifdef _FILE_OFFSET_BITS
30 #undef _FILE_OFFSET_BITS
31 #endif
32
33 #include <stdlib.h>                                      /* free(), strtol() */
34 #include <stdio.h>                                              /* sprintf() */
35 #include <string.h>                                              /* strdup() */
36
37 #include <vlc/vlc.h>
38 #include <vlc/input.h>
39
40 #ifdef HAVE_DIRENT_H
41 #   include <dirent.h>
42 #endif
43
44 #ifdef HAVE_SYS_TYPES_H
45 #   include <sys/types.h>
46 #endif
47 #ifdef HAVE_SYS_STAT_H
48 #   include <sys/stat.h>
49 #endif
50 #ifdef HAVE_UNISTD_H
51 #   include <unistd.h>
52 #endif
53
54 #if !defined(HAVE_DYNAMIC_PLUGINS)
55     /* no support for plugins */
56 #elif defined(HAVE_DL_DYLD)
57 #   if defined(HAVE_MACH_O_DYLD_H)
58 #       include <mach-o/dyld.h>
59 #   endif
60 #elif defined(HAVE_DL_BEOS)
61 #   if defined(HAVE_IMAGE_H)
62 #       include <image.h>
63 #   endif
64 #elif defined(HAVE_DL_WINDOWS)
65 #   include <windows.h>
66 #elif defined(HAVE_DL_DLOPEN)
67 #   if defined(HAVE_DLFCN_H) /* Linux, BSD, Hurd */
68 #       include <dlfcn.h>
69 #   endif
70 #   if defined(HAVE_SYS_DL_H)
71 #       include <sys/dl.h>
72 #   endif
73 #elif defined(HAVE_DL_SHL_LOAD)
74 #   if defined(HAVE_DL_H)
75 #       include <dl.h>
76 #   endif
77 #endif
78
79 #include "vlc_error.h"
80
81 #include "vlc_interface.h"
82 #include "intf_eject.h"
83
84 #include "vlc_playlist.h"
85
86 #include "vlc_video.h"
87 #include "video_output.h"
88 #include "vout_synchro.h"
89 #include "vlc_spu.h"
90
91 #include "audio_output.h"
92 #include "aout_internal.h"
93
94 #include "stream_output.h"
95 #include "osd.h"
96 #include "vlc_httpd.h"
97 #include "vlc_acl.h"
98 #include "vlc_tls.h"
99 #include "vlc_md5.h"
100 #include "vlc_xml.h"
101
102 #include "iso_lang.h"
103 #include "charset.h"
104
105 #include "vlc_block.h"
106
107 #include "vlc_vlm.h"
108
109 #include "vlc_image.h"
110
111 #if defined( _MSC_VER ) && defined( UNDER_CE )
112 #    include "modules_builtin_evc.h"
113 #elif defined( _MSC_VER )
114 #    include "modules_builtin_msvc.h"
115 #else
116 #    include "modules_builtin.h"
117 #endif
118 #include "network.h"
119
120 #if defined( WIN32 ) || defined( UNDER_CE )
121     /* Avoid name collisions */
122 #   define LoadModule(a,b,c) LoadVlcModule(a,b,c)
123 #endif
124
125 /*****************************************************************************
126  * Local prototypes
127  *****************************************************************************/
128 #ifdef HAVE_DYNAMIC_PLUGINS
129 static void AllocateAllPlugins  ( vlc_object_t * );
130 static void AllocatePluginDir   ( vlc_object_t *, const char *, int );
131 static int  AllocatePluginFile  ( vlc_object_t *, char *, int64_t, int64_t );
132 static module_t * AllocatePlugin( vlc_object_t *, char * );
133 #endif
134 static int  AllocateBuiltinModule( vlc_object_t *, int ( * ) ( module_t * ) );
135 static int  DeleteModule ( module_t * );
136 #ifdef HAVE_DYNAMIC_PLUGINS
137 static void   DupModule        ( module_t * );
138 static void   UndupModule      ( module_t * );
139 static int    CallEntry        ( module_t * );
140 static int    LoadModule       ( vlc_object_t *, char *, module_handle_t * );
141 static void   CloseModule      ( module_handle_t );
142 static void * GetSymbol        ( module_handle_t, const char * );
143 static void   CacheLoad        ( vlc_object_t * );
144 static int    CacheLoadConfig  ( module_t *, FILE * );
145 static void   CacheSave        ( vlc_object_t * );
146 static void   CacheSaveConfig  ( module_t *, FILE * );
147 static char * CacheName        ( void );
148 static void   CacheMerge       ( vlc_object_t *, module_t *, module_t * );
149 static module_cache_t * CacheFind( vlc_object_t *, char *, int64_t, int64_t );
150
151 #if defined(HAVE_DL_WINDOWS)
152 static char * GetWindowsError  ( void );
153 #endif
154 #endif
155
156
157 /* Sub-version number
158  * (only used to avoid breakage in dev version when cache structure changes) */
159 #define CACHE_SUBVERSION_NUM 1
160
161 /*****************************************************************************
162  * module_InitBank: create the module bank.
163  *****************************************************************************
164  * This function creates a module bank structure which will be filled later
165  * on with all the modules found.
166  *****************************************************************************/
167 void __module_InitBank( vlc_object_t *p_this )
168 {
169     module_bank_t *p_bank;
170     vlc_value_t  lockval;
171
172     var_Create( p_this->p_libvlc, "libvlc", VLC_VAR_MUTEX );
173     var_Get( p_this->p_libvlc, "libvlc", &lockval );
174     vlc_mutex_lock( lockval.p_address );
175     if( p_this->p_libvlc->p_module_bank )
176     {
177         p_this->p_libvlc->p_module_bank->i_usage++;
178         vlc_mutex_unlock( lockval.p_address );
179         var_Destroy( p_this->p_libvlc, "libvlc" );
180         return;
181     }
182     vlc_mutex_unlock( lockval.p_address );
183     var_Destroy( p_this->p_libvlc, "libvlc" );
184
185     p_bank = vlc_object_create( p_this, sizeof(module_bank_t) );
186     p_bank->psz_object_name = "module bank";
187     p_bank->i_usage = 1;
188     p_bank->i_cache = p_bank->i_loaded_cache = 0;
189     p_bank->pp_cache = p_bank->pp_loaded_cache = 0;
190     p_bank->b_cache = p_bank->b_cache_dirty =
191         p_bank->b_cache_delete = VLC_FALSE;
192
193     /*
194      * Store the symbols to be exported
195      */
196 #ifdef HAVE_DYNAMIC_PLUGINS
197     STORE_SYMBOLS( &p_bank->symbols );
198 #endif
199
200     /* Everything worked, attach the object */
201     p_this->p_libvlc->p_module_bank = p_bank;
202     vlc_object_attach( p_bank, p_this->p_libvlc );
203
204     module_LoadMain( p_this );
205
206     return;
207 }
208
209 /*****************************************************************************
210  * module_ResetBank: reset the module bank.
211  *****************************************************************************
212  * This function resets the module bank by unloading all unused plugin
213  * modules.
214  *****************************************************************************/
215 void __module_ResetBank( vlc_object_t *p_this )
216 {
217     msg_Err( p_this, "FIXME: module_ResetBank unimplemented" );
218     return;
219 }
220
221 /*****************************************************************************
222  * module_EndBank: empty the module bank.
223  *****************************************************************************
224  * This function unloads all unused plugin modules and empties the module
225  * bank in case of success.
226  *****************************************************************************/
227 void __module_EndBank( vlc_object_t *p_this )
228 {
229     module_t * p_next;
230     vlc_value_t lockval;
231
232     var_Create( p_this->p_libvlc, "libvlc", VLC_VAR_MUTEX );
233     var_Get( p_this->p_libvlc, "libvlc", &lockval );
234     vlc_mutex_lock( lockval.p_address );
235     if( !p_this->p_libvlc->p_module_bank )
236     {
237         vlc_mutex_unlock( lockval.p_address );
238         var_Destroy( p_this->p_libvlc, "libvlc" );
239         return;
240     }
241     if( --p_this->p_libvlc->p_module_bank->i_usage )
242     {
243         vlc_mutex_unlock( lockval.p_address );
244         var_Destroy( p_this->p_libvlc, "libvlc" );
245         return;
246     }
247     vlc_mutex_unlock( lockval.p_address );
248     var_Destroy( p_this->p_libvlc, "libvlc" );
249
250     config_AutoSaveConfigFile( p_this );
251
252 #ifdef HAVE_DYNAMIC_PLUGINS
253 #define p_bank p_this->p_libvlc->p_module_bank
254     if( p_bank->b_cache ) CacheSave( p_this );
255     while( p_bank->i_loaded_cache-- )
256     {
257         free( p_bank->pp_loaded_cache[p_bank->i_loaded_cache]->psz_file );
258         free( p_bank->pp_loaded_cache[p_bank->i_loaded_cache] );
259     }
260     if( p_bank->pp_loaded_cache )
261         free( p_bank->pp_loaded_cache );
262
263     while( p_bank->i_cache-- )
264     {
265         free( p_bank->pp_cache[p_bank->i_cache]->psz_file );
266         free( p_bank->pp_cache[p_bank->i_cache] );
267     }
268     if( p_bank->pp_cache )
269         free( p_bank->pp_cache );
270 #undef p_bank
271 #endif
272
273     vlc_object_detach( p_this->p_libvlc->p_module_bank );
274
275     while( p_this->p_libvlc->p_module_bank->i_children )
276     {
277         p_next = (module_t *)p_this->p_libvlc->p_module_bank->pp_children[0];
278
279         if( DeleteModule( p_next ) )
280         {
281             /* Module deletion failed */
282             msg_Err( p_this, "module \"%s\" can't be removed, trying harder",
283                      p_next->psz_object_name );
284
285             /* We just free the module by hand. Niahahahahaha. */
286             vlc_object_detach( p_next );
287             vlc_object_destroy( p_next );
288         }
289     }
290
291     vlc_object_destroy( p_this->p_libvlc->p_module_bank );
292     p_this->p_libvlc->p_module_bank = NULL;
293
294     return;
295 }
296
297 /*****************************************************************************
298  * module_LoadMain: load the main program info into the module bank.
299  *****************************************************************************
300  * This function fills the module bank structure with the main module infos.
301  * This is very useful as it will allow us to consider the main program just
302  * as another module, and for instance the configuration options of main will
303  * be available in the module bank structure just as for every other module.
304  *****************************************************************************/
305 void __module_LoadMain( vlc_object_t *p_this )
306 {
307     vlc_value_t lockval;
308
309     var_Create( p_this->p_libvlc, "libvlc", VLC_VAR_MUTEX );
310     var_Get( p_this->p_libvlc, "libvlc", &lockval );
311     vlc_mutex_lock( lockval.p_address );
312     if( p_this->p_libvlc->p_module_bank->b_main )
313     {
314         vlc_mutex_unlock( lockval.p_address );
315         var_Destroy( p_this->p_libvlc, "libvlc" );
316         return;
317     }
318     p_this->p_libvlc->p_module_bank->b_main = VLC_TRUE;
319     vlc_mutex_unlock( lockval.p_address );
320     var_Destroy( p_this->p_libvlc, "libvlc" );
321
322     AllocateBuiltinModule( p_this, vlc_entry__main );
323 }
324
325 /*****************************************************************************
326  * module_LoadBuiltins: load all modules which we built with.
327  *****************************************************************************
328  * This function fills the module bank structure with the builtin modules.
329  *****************************************************************************/
330 void __module_LoadBuiltins( vlc_object_t * p_this )
331 {
332     vlc_value_t lockval;
333
334     var_Create( p_this->p_libvlc, "libvlc", VLC_VAR_MUTEX );
335     var_Get( p_this->p_libvlc, "libvlc", &lockval );
336     vlc_mutex_lock( lockval.p_address );
337     if( p_this->p_libvlc->p_module_bank->b_builtins )
338     {
339         vlc_mutex_unlock( lockval.p_address );
340         var_Destroy( p_this->p_libvlc, "libvlc" );
341         return;
342     }
343     p_this->p_libvlc->p_module_bank->b_builtins = VLC_TRUE;
344     vlc_mutex_unlock( lockval.p_address );
345     var_Destroy( p_this->p_libvlc, "libvlc" );
346
347     msg_Dbg( p_this, "checking builtin modules" );
348     ALLOCATE_ALL_BUILTINS();
349 }
350
351 /*****************************************************************************
352  * module_LoadPlugins: load all plugin modules we can find.
353  *****************************************************************************
354  * This function fills the module bank structure with the plugin modules.
355  *****************************************************************************/
356 void __module_LoadPlugins( vlc_object_t * p_this )
357 {
358 #ifdef HAVE_DYNAMIC_PLUGINS
359     vlc_value_t lockval;
360
361     var_Create( p_this->p_libvlc, "libvlc", VLC_VAR_MUTEX );
362     var_Get( p_this->p_libvlc, "libvlc", &lockval );
363     vlc_mutex_lock( lockval.p_address );
364     if( p_this->p_libvlc->p_module_bank->b_plugins )
365     {
366         vlc_mutex_unlock( lockval.p_address );
367         var_Destroy( p_this->p_libvlc, "libvlc" );
368         return;
369     }
370     p_this->p_libvlc->p_module_bank->b_plugins = VLC_TRUE;
371     vlc_mutex_unlock( lockval.p_address );
372     var_Destroy( p_this->p_libvlc, "libvlc" );
373
374     msg_Dbg( p_this, "checking plugin modules" );
375
376     if( config_GetInt( p_this, "plugins-cache" ) )
377         p_this->p_libvlc->p_module_bank->b_cache = VLC_TRUE;
378
379     if( p_this->p_libvlc->p_module_bank->b_cache ||
380         p_this->p_libvlc->p_module_bank->b_cache_delete ) CacheLoad( p_this );
381
382     AllocateAllPlugins( p_this );
383 #endif
384 }
385
386 /*****************************************************************************
387  * module_Need: return the best module function, given a capability list.
388  *****************************************************************************
389  * This function returns the module that best fits the asked capabilities.
390  *****************************************************************************/
391 module_t * __module_Need( vlc_object_t *p_this, const char *psz_capability,
392                           const char *psz_name, vlc_bool_t b_strict )
393 {
394     typedef struct module_list_t module_list_t;
395
396     struct module_list_t
397     {
398         module_t *p_module;
399         int i_score;
400         vlc_bool_t b_force;
401         module_list_t *p_next;
402     };
403
404     module_list_t *p_list, *p_first, *p_tmp;
405     vlc_list_t *p_all;
406
407     int i_which_module, i_index = 0;
408     vlc_bool_t b_intf = VLC_FALSE;
409
410     module_t *p_module;
411
412     int   i_shortcuts = 0;
413     char *psz_shortcuts = NULL, *psz_var = NULL;
414     vlc_bool_t b_force_backup = p_this->b_force;
415
416
417     /* Deal with variables */
418     if( psz_name && psz_name[0] == '$' )
419     {
420         vlc_value_t val;
421         var_Create( p_this, psz_name + 1, VLC_VAR_MODULE | VLC_VAR_DOINHERIT );
422         var_Get( p_this, psz_name + 1, &val );
423         psz_var = val.psz_string;
424         psz_name = psz_var;
425     }
426
427     /* Count how many different shortcuts were asked for */
428     if( psz_name && *psz_name )
429     {
430         char *psz_parser, *psz_last_shortcut;
431
432         /* If the user wants none, give him none. */
433         if( !strcmp( psz_name, "none" ) )
434         {
435             if( psz_var ) free( psz_var );
436             return NULL;
437         }
438
439         i_shortcuts++;
440         psz_shortcuts = psz_last_shortcut = strdup( psz_name );
441
442         for( psz_parser = psz_shortcuts; *psz_parser; psz_parser++ )
443         {
444             if( *psz_parser == ',' )
445             {
446                  *psz_parser = '\0';
447                  i_shortcuts++;
448                  psz_last_shortcut = psz_parser + 1;
449             }
450         }
451
452         /* Check if the user wants to override the "strict" mode */
453         if( psz_last_shortcut )
454         {
455             if( !strcmp(psz_last_shortcut, "none") )
456             {
457                 b_strict = VLC_TRUE;
458                 i_shortcuts--;
459             }
460             else if( !strcmp(psz_last_shortcut, "any") )
461             {
462                 b_strict = VLC_FALSE;
463                 i_shortcuts--;
464             }
465         }
466     }
467
468     /* Sort the modules and test them */
469     p_all = vlc_list_find( p_this, VLC_OBJECT_MODULE, FIND_ANYWHERE );
470     p_list = malloc( p_all->i_count * sizeof( module_list_t ) );
471     p_first = NULL;
472
473     /* Parse the module list for capabilities and probe each of them */
474     for( i_which_module = 0; i_which_module < p_all->i_count; i_which_module++ )
475     {
476         int i_shortcut_bonus = 0;
477
478         p_module = (module_t *)p_all->p_values[i_which_module].p_object;
479
480         /* Test that this module can do what we need */
481         if( strcmp( p_module->psz_capability, psz_capability ) )
482         {
483             /* Don't recurse through the sub-modules because vlc_list_find()
484              * will list them anyway. */
485             continue;
486         }
487
488         /* Test if we have the required CPU */
489         if( (p_module->i_cpu & p_this->p_libvlc->i_cpu) != p_module->i_cpu )
490         {
491             continue;
492         }
493
494         /* If we required a shortcut, check this plugin provides it. */
495         if( i_shortcuts > 0 )
496         {
497             vlc_bool_t b_trash;
498             int i_dummy, i_short = i_shortcuts;
499             char *psz_name = psz_shortcuts;
500
501             /* Let's drop modules with a <= 0 score (unless they are
502              * explicitly requested) */
503             b_trash = p_module->i_score <= 0;
504
505             while( i_short > 0 )
506             {
507                 for( i_dummy = 0; p_module->pp_shortcuts[i_dummy]; i_dummy++ )
508                 {
509                     if( !strcasecmp( psz_name,
510                                      p_module->pp_shortcuts[i_dummy] ) )
511                     {
512                         /* Found it */
513                         b_trash = VLC_FALSE;
514                         i_shortcut_bonus = i_short * 10000;
515                         break;
516                     }
517                 }
518
519                 if( i_shortcut_bonus )
520                 {
521                     /* We found it... remember ? */
522                     break;
523                 }
524
525                 /* Go to the next shortcut... This is so lame! */
526                 while( *psz_name )
527                 {
528                     psz_name++;
529                 }
530                 psz_name++;
531                 i_short--;
532             }
533
534             /* If we are in "strict" mode and we couldn't
535              * find the module in the list of provided shortcuts,
536              * then kick the bastard out of here!!! */
537             if( i_short == 0 && b_strict )
538             {
539                 b_trash = VLC_TRUE;
540             }
541
542             if( b_trash )
543             {
544                 continue;
545             }
546         }
547         /* If we didn't require a shortcut, trash <= 0 scored plugins */
548         else if( p_module->i_score <= 0 )
549         {
550             continue;
551         }
552
553         /* Special case: test if we requested a particular intf plugin */
554         if( !i_shortcuts && p_module->psz_program
555              && !strcmp( psz_capability, "interface" )
556              && !strcmp( p_module->psz_program,
557                          p_this->p_vlc->psz_object_name ) )
558         {
559             if( !b_intf )
560             {
561                 /* Remove previous non-matching plugins */
562                 i_index = 0;
563                 b_intf = VLC_TRUE;
564             }
565         }
566         else if( b_intf )
567         {
568             /* This one doesn't match */
569             continue;
570         }
571
572         /* Store this new module */
573         p_list[ i_index ].p_module = p_module;
574         p_list[ i_index ].i_score = p_module->i_score + i_shortcut_bonus;
575         p_list[ i_index ].b_force = !!i_shortcut_bonus;
576
577         /* Add it to the modules-to-probe list */
578         if( i_index == 0 )
579         {
580             p_list[ 0 ].p_next = NULL;
581             p_first = p_list;
582         }
583         else
584         {
585             /* Ok, so at school you learned that quicksort is quick, and
586              * bubble sort sucks raw eggs. But that's when dealing with
587              * thousands of items. Here we have barely 50. */
588             module_list_t *p_newlist = p_first;
589
590             if( p_first->i_score < p_list[ i_index ].i_score )
591             {
592                 p_list[ i_index ].p_next = p_first;
593                 p_first = &p_list[ i_index ];
594             }
595             else
596             {
597                 while( p_newlist->p_next != NULL &&
598                     p_newlist->p_next->i_score >= p_list[ i_index ].i_score )
599                 {
600                     p_newlist = p_newlist->p_next;
601                 }
602
603                 p_list[ i_index ].p_next = p_newlist->p_next;
604                 p_newlist->p_next = &p_list[ i_index ];
605             }
606         }
607
608         i_index++;
609     }
610
611     msg_Dbg( p_this, "looking for %s module: %i candidate%s", psz_capability,
612                                             i_index, i_index == 1 ? "" : "s" );
613
614     /* Lock all candidate modules */
615     p_tmp = p_first;
616     while( p_tmp != NULL )
617     {
618         vlc_object_yield( p_tmp->p_module );
619         p_tmp = p_tmp->p_next;
620     }
621
622     /* We can release the list, interesting modules were yielded */
623     vlc_list_release( p_all );
624
625     /* Parse the linked list and use the first successful module */
626     p_tmp = p_first;
627     while( p_tmp != NULL )
628     {
629 #ifdef HAVE_DYNAMIC_PLUGINS
630         /* Make sure the module is loaded in mem */
631         module_t *p_module = p_tmp->p_module->b_submodule ?
632             (module_t *)p_tmp->p_module->p_parent : p_tmp->p_module;
633         if( !p_module->b_builtin && !p_module->b_loaded )
634         {
635             module_t *p_new_module =
636                 AllocatePlugin( p_this, p_module->psz_filename );
637             if( p_new_module )
638             {
639                 CacheMerge( p_this, p_module, p_new_module );
640                 vlc_object_attach( p_new_module, p_module );
641                 DeleteModule( p_new_module );
642             }
643         }
644 #endif
645
646         p_this->b_force = p_tmp->b_force;
647         if( p_tmp->p_module->pf_activate
648              && p_tmp->p_module->pf_activate( p_this ) == VLC_SUCCESS )
649         {
650             break;
651         }
652
653         vlc_object_release( p_tmp->p_module );
654         p_tmp = p_tmp->p_next;
655     }
656
657     /* Store the locked module value */
658     if( p_tmp != NULL )
659     {
660         p_module = p_tmp->p_module;
661         p_tmp = p_tmp->p_next;
662     }
663     else
664     {
665         p_module = NULL;
666     }
667
668     /* Unlock the remaining modules */
669     while( p_tmp != NULL )
670     {
671         vlc_object_release( p_tmp->p_module );
672         p_tmp = p_tmp->p_next;
673     }
674
675     free( p_list );
676     p_this->b_force = b_force_backup;
677
678     if( p_module != NULL )
679     {
680         msg_Dbg( p_module, "using %s module \"%s\"",
681                  psz_capability, p_module->psz_object_name );
682     }
683     else if( p_first == NULL )
684     {
685         if( !strcmp( psz_capability, "access_demux" ) )
686         {
687             msg_Warn( p_this, "no %s module matched \"%s\"",
688                  psz_capability, (psz_name && *psz_name) ? psz_name : "any" );
689         }
690         else
691         {  
692             msg_Err( p_this, "no %s module matched \"%s\"",
693                  psz_capability, (psz_name && *psz_name) ? psz_name : "any" );
694         }
695     }
696     else if( psz_name != NULL && *psz_name )
697     {
698         msg_Warn( p_this, "no %s module matching \"%s\" could be loaded",
699                   psz_capability, (psz_name && *psz_name) ? psz_name : "any" );
700     }
701
702     if( psz_shortcuts )
703     {
704         free( psz_shortcuts );
705     }
706
707     if( psz_var )
708     {
709         free( psz_var );
710     }
711
712     /* Don't forget that the module is still locked */
713     return p_module;
714 }
715
716 /*****************************************************************************
717  * module_Unneed: decrease the usage count of a module.
718  *****************************************************************************
719  * This function must be called by the thread that called module_Need, to
720  * decrease the reference count and allow for hiding of modules.
721  *****************************************************************************/
722 void __module_Unneed( vlc_object_t * p_this, module_t * p_module )
723 {
724     /* Use the close method */
725     if( p_module->pf_deactivate )
726     {
727         p_module->pf_deactivate( p_this );
728     }
729
730     msg_Dbg( p_module, "unlocking module \"%s\"", p_module->psz_object_name );
731
732     vlc_object_release( p_module );
733
734     return;
735 }
736
737 /*****************************************************************************
738  * Following functions are local.
739  *****************************************************************************/
740
741 /*****************************************************************************
742  * AllocateAllPlugins: load all plugin modules we can find.
743  *****************************************************************************/
744 #ifdef HAVE_DYNAMIC_PLUGINS
745 static void AllocateAllPlugins( vlc_object_t *p_this )
746 {
747     /* Yes, there are two NULLs because we replace one with "plugin-path". */
748 #if defined( WIN32 ) || defined( UNDER_CE )
749     char *path[] = { "modules", "", "plugins", 0, 0 };
750 #else
751     char *path[] = { "modules", PLUGIN_PATH, "plugins", 0, 0 };
752 #endif
753
754     char **ppsz_path = path;
755     char *psz_fullpath;
756
757     /* If the user provided a plugin path, we add it to the list */
758     path[ sizeof(path)/sizeof(char*) - 2 ] =
759         config_GetPsz( p_this, "plugin-path" );
760
761     for( ; *ppsz_path != NULL ; ppsz_path++ )
762     {
763         if( !(*ppsz_path)[0] ) continue;
764
765 #if defined( SYS_BEOS ) || defined( SYS_DARWIN ) || defined( WIN32 )
766
767         /* Handle relative as well as absolute paths */
768 #ifdef WIN32
769         if( (*ppsz_path)[0] != '\\' && (*ppsz_path)[0] != '/' &&
770             (*ppsz_path)[1] != ':' )
771 #else
772         if( (*ppsz_path)[0] != '/' )
773 #endif
774         {
775             int i_dirlen = strlen( *ppsz_path );
776             i_dirlen += strlen( p_this->p_libvlc->psz_vlcpath ) + 2;
777
778             psz_fullpath = malloc( i_dirlen );
779             if( psz_fullpath == NULL )
780             {
781                 continue;
782             }
783 #ifdef WIN32
784             sprintf( psz_fullpath, "%s\\%s",
785                      p_this->p_libvlc->psz_vlcpath, *ppsz_path );
786 #else
787             sprintf( psz_fullpath, "%s/%s",
788                      p_this->p_libvlc->psz_vlcpath, *ppsz_path );
789 #endif
790         }
791         else
792 #endif
793         {
794             psz_fullpath = strdup( *ppsz_path );
795         }
796
797         msg_Dbg( p_this, "recursively browsing `%s'", psz_fullpath );
798
799         /* Don't go deeper than 5 subdirectories */
800         AllocatePluginDir( p_this, psz_fullpath, 5 );
801
802         free( psz_fullpath );
803     }
804
805     /* Free plugin-path */
806     if( path[ sizeof(path)/sizeof(char*) - 2 ] )
807         free( path[ sizeof(path)/sizeof(char*) - 2 ] );
808     path[ sizeof(path)/sizeof(char*) - 2 ] = NULL;
809 }
810
811 /*****************************************************************************
812  * AllocatePluginDir: recursively parse a directory to look for plugins
813  *****************************************************************************/
814 static void AllocatePluginDir( vlc_object_t *p_this, const char *psz_dir,
815                                int i_maxdepth )
816 {
817 #if defined( UNDER_CE ) || defined( _MSC_VER )
818 #ifdef UNDER_CE
819     wchar_t psz_wpath[MAX_PATH + 256];
820     wchar_t psz_wdir[MAX_PATH];
821 #endif
822     char psz_path[MAX_PATH + 256];
823     WIN32_FIND_DATA finddata;
824     HANDLE handle;
825     int rc;
826 #else
827     int    i_dirlen;
828     DIR *  dir;
829     struct dirent * file;
830 #endif
831     char * psz_file;
832
833     if( p_this->p_vlc->b_die || i_maxdepth < 0 )
834     {
835         return;
836     }
837
838 #if defined( UNDER_CE ) || defined( _MSC_VER )
839 #ifdef UNDER_CE
840     MultiByteToWideChar( CP_ACP, 0, psz_dir, -1, psz_wdir, MAX_PATH );
841
842     rc = GetFileAttributes( psz_wdir );
843     if( rc<0 || !(rc&FILE_ATTRIBUTE_DIRECTORY) ) return; /* Not a directory */
844
845     /* Parse all files in the directory */
846     swprintf( psz_wpath, L"%ls\\*", psz_wdir );
847 #else
848     rc = GetFileAttributes( psz_dir );
849     if( rc<0 || !(rc&FILE_ATTRIBUTE_DIRECTORY) ) return; /* Not a directory */
850 #endif
851
852     /* Parse all files in the directory */
853     sprintf( psz_path, "%s\\*", psz_dir );
854
855 #ifdef UNDER_CE
856     handle = FindFirstFile( psz_wpath, &finddata );
857 #else
858     handle = FindFirstFile( psz_path, &finddata );
859 #endif
860     if( handle == INVALID_HANDLE_VALUE )
861     {
862         /* Empty directory */
863         return;
864     }
865
866     /* Parse the directory and try to load all files it contains. */
867     do
868     {
869 #ifdef UNDER_CE
870         unsigned int i_len = wcslen( finddata.cFileName );
871         swprintf( psz_wpath, L"%ls\\%ls", psz_wdir, finddata.cFileName );
872         sprintf( psz_path, "%s\\%ls", psz_dir, finddata.cFileName );
873 #else
874         unsigned int i_len = strlen( finddata.cFileName );
875         sprintf( psz_path, "%s\\%s", psz_dir, finddata.cFileName );
876 #endif
877
878         /* Skip ".", ".." and anything starting with "." */
879         if( !*finddata.cFileName || *finddata.cFileName == '.' )
880         {
881             if( !FindNextFile( handle, &finddata ) ) break;
882             continue;
883         }
884
885 #ifdef UNDER_CE
886         if( GetFileAttributes( psz_wpath ) & FILE_ATTRIBUTE_DIRECTORY )
887 #else
888         if( GetFileAttributes( psz_path ) & FILE_ATTRIBUTE_DIRECTORY )
889 #endif
890         {
891             AllocatePluginDir( p_this, psz_path, i_maxdepth - 1 );
892         }
893         else if( i_len > strlen( LIBEXT )
894                   /* We only load files ending with LIBEXT */
895                   && !strncasecmp( psz_path + strlen( psz_path)
896                                    - strlen( LIBEXT ),
897                                    LIBEXT, strlen( LIBEXT ) ) )
898         {
899             WIN32_FILE_ATTRIBUTE_DATA attrbuf;
900             int64_t i_time = 0, i_size = 0;
901
902 #ifdef UNDER_CE
903             if( GetFileAttributesEx( psz_wpath, GetFileExInfoStandard,
904                                      &attrbuf ) )
905 #else
906             if( GetFileAttributesEx( psz_path, GetFileExInfoStandard,
907                                      &attrbuf ) )
908 #endif
909             {
910                 i_time = attrbuf.ftLastWriteTime.dwHighDateTime;
911                 i_time <<= 32;
912                 i_time |= attrbuf.ftLastWriteTime.dwLowDateTime;
913                 i_size = attrbuf.nFileSizeHigh;
914                 i_size <<= 32;
915                 i_size |= attrbuf.nFileSizeLow;
916             }
917             psz_file = psz_path;
918
919             AllocatePluginFile( p_this, psz_file, i_time, i_size );
920         }
921     }
922     while( !p_this->p_vlc->b_die && FindNextFile( handle, &finddata ) );
923
924     /* Close the directory */
925     FindClose( handle );
926
927 #else
928     dir = opendir( psz_dir );
929     if( !dir )
930     {
931         return;
932     }
933
934     i_dirlen = strlen( psz_dir );
935
936     /* Parse the directory and try to load all files it contains. */
937     while( !p_this->p_vlc->b_die && (file = readdir( dir )) )
938     {
939         struct stat statbuf;
940         unsigned int i_len;
941         int i_stat;
942
943         /* Skip ".", ".." and anything starting with "." */
944         if( !*file->d_name || *file->d_name == '.' )
945         {
946             continue;
947         }
948
949         i_len = strlen( file->d_name );
950         psz_file = malloc( i_dirlen + 1 + i_len + 1 );
951 #ifdef WIN32
952         sprintf( psz_file, "%s\\%s", psz_dir, file->d_name );
953 #else
954         sprintf( psz_file, "%s/%s", psz_dir, file->d_name );
955 #endif
956
957         i_stat = stat( psz_file, &statbuf );
958         if( !i_stat && statbuf.st_mode & S_IFDIR )
959         {
960             AllocatePluginDir( p_this, psz_file, i_maxdepth - 1 );
961         }
962         else if( i_len > strlen( LIBEXT )
963                   /* We only load files ending with LIBEXT */
964                   && !strncasecmp( file->d_name + i_len - strlen( LIBEXT ),
965                                    LIBEXT, strlen( LIBEXT ) ) )
966         {
967             int64_t i_time = 0, i_size = 0;
968
969             if( !i_stat )
970             {
971                 i_time = statbuf.st_mtime;
972                 i_size = statbuf.st_size;
973             }
974
975             AllocatePluginFile( p_this, psz_file, i_time, i_size );
976         }
977
978         free( psz_file );
979     }
980
981     /* Close the directory */
982     closedir( dir );
983
984 #endif
985 }
986
987 /*****************************************************************************
988  * AllocatePluginFile: load a module into memory and initialize it.
989  *****************************************************************************
990  * This function loads a dynamically loadable module and allocates a structure
991  * for its information data. The module can then be handled by module_Need
992  * and module_Unneed. It can be removed by DeleteModule.
993  *****************************************************************************/
994 static int AllocatePluginFile( vlc_object_t * p_this, char * psz_file,
995                                int64_t i_file_time, int64_t i_file_size )
996 {
997     module_t * p_module;
998     module_cache_t *p_cache_entry = NULL;
999
1000     /*
1001      * Check our plugins cache first then load plugin if needed
1002      */
1003     p_cache_entry =
1004         CacheFind( p_this, psz_file, i_file_time, i_file_size );
1005
1006     if( !p_cache_entry )
1007     {
1008         p_module = AllocatePlugin( p_this, psz_file );
1009     }
1010     else
1011     {
1012         /* If junk dll, don't try to load it */
1013         if( p_cache_entry->b_junk )
1014         {
1015             p_module = NULL;
1016         }
1017         else
1018         {
1019             module_config_t *p_item;
1020
1021             p_module = p_cache_entry->p_module;
1022             p_module->b_loaded = VLC_FALSE;
1023
1024             /* For now we force loading if the module's config contains
1025              * callbacks or actions.
1026              * Could be optimized by adding an API call.*/
1027             for( p_item = p_module->p_config;
1028                  p_item->i_type != CONFIG_HINT_END; p_item++ )
1029             {
1030                 if( p_item->pf_callback || p_item->i_action )
1031                     p_module = AllocatePlugin( p_this, psz_file );
1032             }
1033         }
1034     }
1035
1036     if( p_module )
1037     {
1038         /* Everything worked fine !
1039          * The module is ready to be added to the list. */
1040         p_module->b_builtin = VLC_FALSE;
1041
1042         /* msg_Dbg( p_this, "plugin \"%s\", %s",
1043                     p_module->psz_object_name, p_module->psz_longname ); */
1044
1045         vlc_object_attach( p_module, p_this->p_libvlc->p_module_bank );
1046     }
1047
1048     if( !p_this->p_libvlc->p_module_bank->b_cache ) return 0;
1049
1050     /* Add entry to cache */
1051 #define p_bank p_this->p_libvlc->p_module_bank
1052     p_bank->pp_cache =
1053         realloc( p_bank->pp_cache, (p_bank->i_cache + 1) * sizeof(void *) );
1054     p_bank->pp_cache[p_bank->i_cache] = malloc( sizeof(module_cache_t) );
1055     p_bank->pp_cache[p_bank->i_cache]->psz_file = strdup( psz_file );
1056     p_bank->pp_cache[p_bank->i_cache]->i_time = i_file_time;
1057     p_bank->pp_cache[p_bank->i_cache]->i_size = i_file_size;
1058     p_bank->pp_cache[p_bank->i_cache]->b_junk = p_module ? 0 : 1;
1059     p_bank->pp_cache[p_bank->i_cache]->p_module = p_module;
1060     p_bank->i_cache++;
1061
1062     return p_module ? 0 : -1;
1063 }
1064
1065 /*****************************************************************************
1066  * AllocatePlugin: load a module into memory and initialize it.
1067  *****************************************************************************
1068  * This function loads a dynamically loadable module and allocates a structure
1069  * for its information data. The module can then be handled by module_Need
1070  * and module_Unneed. It can be removed by DeleteModule.
1071  *****************************************************************************/
1072 static module_t * AllocatePlugin( vlc_object_t * p_this, char * psz_file )
1073 {
1074     module_t * p_module;
1075     module_handle_t handle;
1076
1077     if( LoadModule( p_this, psz_file, &handle ) ) return NULL;
1078
1079     /* Now that we have successfully loaded the module, we can
1080      * allocate a structure for it */
1081     p_module = vlc_object_create( p_this, VLC_OBJECT_MODULE );
1082     if( p_module == NULL )
1083     {
1084         msg_Err( p_this, "out of memory" );
1085         CloseModule( handle );
1086         return NULL;
1087     }
1088
1089     /* We need to fill these since they may be needed by CallEntry() */
1090     p_module->psz_filename = psz_file;
1091     p_module->handle = handle;
1092     p_module->p_symbols = &p_this->p_libvlc->p_module_bank->symbols;
1093     p_module->b_loaded = VLC_TRUE;
1094
1095     /* Initialize the module: fill p_module, default config */
1096     if( CallEntry( p_module ) != 0 )
1097     {
1098         /* We couldn't call module_init() */
1099         vlc_object_destroy( p_module );
1100         CloseModule( handle );
1101         return NULL;
1102     }
1103
1104     DupModule( p_module );
1105     p_module->psz_filename = strdup( p_module->psz_filename );
1106
1107     /* Everything worked fine ! The module is ready to be added to the list. */
1108     p_module->b_builtin = VLC_FALSE;
1109
1110     return p_module;
1111 }
1112
1113 /*****************************************************************************
1114  * DupModule: make a plugin module standalone.
1115  *****************************************************************************
1116  * This function duplicates all strings in the module, so that the dynamic
1117  * object can be unloaded. It acts recursively on submodules.
1118  *****************************************************************************/
1119 static void DupModule( module_t *p_module )
1120 {
1121     char **pp_shortcut;
1122     int i_submodule;
1123
1124     for( pp_shortcut = p_module->pp_shortcuts ; *pp_shortcut ; pp_shortcut++ )
1125     {
1126         *pp_shortcut = strdup( *pp_shortcut );
1127     }
1128
1129     /* We strdup() these entries so that they are still valid when the
1130      * module is unloaded. */
1131     p_module->psz_object_name = strdup( p_module->psz_object_name );
1132     p_module->psz_capability = strdup( p_module->psz_capability );
1133     p_module->psz_shortname = p_module->psz_shortname ?
1134                                  strdup( p_module->psz_shortname ) : NULL;
1135     p_module->psz_longname = strdup( p_module->psz_longname );
1136
1137     if( p_module->psz_program != NULL )
1138     {
1139         p_module->psz_program = strdup( p_module->psz_program );
1140     }
1141
1142     for( i_submodule = 0; i_submodule < p_module->i_children; i_submodule++ )
1143     {
1144         DupModule( (module_t*)p_module->pp_children[ i_submodule ] );
1145     }
1146 }
1147
1148 /*****************************************************************************
1149  * UndupModule: free a duplicated module.
1150  *****************************************************************************
1151  * This function frees the allocations done in DupModule().
1152  *****************************************************************************/
1153 static void UndupModule( module_t *p_module )
1154 {
1155     char **pp_shortcut;
1156     int i_submodule;
1157
1158     for( i_submodule = 0; i_submodule < p_module->i_children; i_submodule++ )
1159     {
1160         UndupModule( (module_t*)p_module->pp_children[ i_submodule ] );
1161     }
1162
1163     for( pp_shortcut = p_module->pp_shortcuts ; *pp_shortcut ; pp_shortcut++ )
1164     {
1165         free( *pp_shortcut );
1166     }
1167
1168     free( p_module->psz_object_name );
1169     free( p_module->psz_capability );
1170     if( p_module->psz_shortname ) free( p_module->psz_shortname );
1171     free( p_module->psz_longname );
1172
1173     if( p_module->psz_program != NULL )
1174     {
1175         free( p_module->psz_program );
1176     }
1177 }
1178
1179 #endif /* HAVE_DYNAMIC_PLUGINS */
1180
1181 /*****************************************************************************
1182  * AllocateBuiltinModule: initialize a builtin module.
1183  *****************************************************************************
1184  * This function registers a builtin module and allocates a structure
1185  * for its information data. The module can then be handled by module_Need
1186  * and module_Unneed. It can be removed by DeleteModule.
1187  *****************************************************************************/
1188 static int AllocateBuiltinModule( vlc_object_t * p_this,
1189                                   int ( *pf_entry ) ( module_t * ) )
1190 {
1191     module_t * p_module;
1192
1193     /* Now that we have successfully loaded the module, we can
1194      * allocate a structure for it */
1195     p_module = vlc_object_create( p_this, VLC_OBJECT_MODULE );
1196     if( p_module == NULL )
1197     {
1198         msg_Err( p_this, "out of memory" );
1199         return -1;
1200     }
1201
1202     /* Initialize the module : fill p_module->psz_object_name, etc. */
1203     if( pf_entry( p_module ) != 0 )
1204     {
1205         /* With a well-written module we shouldn't have to print an
1206          * additional error message here, but just make sure. */
1207         msg_Err( p_this, "failed calling entry point in builtin module" );
1208         vlc_object_destroy( p_module );
1209         return -1;
1210     }
1211
1212     /* Everything worked fine ! The module is ready to be added to the list. */
1213     p_module->b_builtin = VLC_TRUE;
1214
1215     /* msg_Dbg( p_this, "builtin \"%s\", %s",
1216                 p_module->psz_object_name, p_module->psz_longname ); */
1217
1218     vlc_object_attach( p_module, p_this->p_libvlc->p_module_bank );
1219
1220     return 0;
1221 }
1222
1223 /*****************************************************************************
1224  * DeleteModule: delete a module and its structure.
1225  *****************************************************************************
1226  * This function can only be called if the module isn't being used.
1227  *****************************************************************************/
1228 static int DeleteModule( module_t * p_module )
1229 {
1230     vlc_object_detach( p_module );
1231
1232     /* We free the structures that we strdup()ed in Allocate*Module(). */
1233 #ifdef HAVE_DYNAMIC_PLUGINS
1234     if( !p_module->b_builtin )
1235     {
1236         if( p_module->b_loaded && p_module->b_unloadable )
1237         {
1238             CloseModule( p_module->handle );
1239         }
1240         UndupModule( p_module );
1241         free( p_module->psz_filename );
1242     }
1243 #endif
1244
1245     /* Free and detach the object's children */
1246     while( p_module->i_children )
1247     {
1248         vlc_object_t *p_this = p_module->pp_children[0];
1249         vlc_object_detach( p_this );
1250         vlc_object_destroy( p_this );
1251     }
1252
1253     config_Free( p_module );
1254     vlc_object_destroy( p_module );
1255
1256     return 0;
1257 }
1258
1259 #ifdef HAVE_DYNAMIC_PLUGINS
1260 /*****************************************************************************
1261  * CallEntry: call an entry point.
1262  *****************************************************************************
1263  * This function calls a symbol given its name and a module structure. The
1264  * symbol MUST refer to a function returning int and taking a module_t* as
1265  * an argument.
1266  *****************************************************************************/
1267 static int CallEntry( module_t * p_module )
1268 {
1269     static char *psz_name = "vlc_entry" MODULE_SUFFIX;
1270     int (* pf_symbol) ( module_t * p_module );
1271
1272     /* Try to resolve the symbol */
1273     pf_symbol = (int (*)(module_t *)) GetSymbol( p_module->handle, psz_name );
1274
1275     if( pf_symbol == NULL )
1276     {
1277 #if defined(HAVE_DL_DYLD) || defined(HAVE_DL_BEOS)
1278         msg_Warn( p_module, "cannot find symbol \"%s\" in file `%s'",
1279                             psz_name, p_module->psz_filename );
1280 #elif defined(HAVE_DL_WINDOWS)
1281         char *psz_error = GetWindowsError();
1282         msg_Warn( p_module, "cannot find symbol \"%s\" in file `%s' (%s)",
1283                             psz_name, p_module->psz_filename, psz_error );
1284         free( psz_error );
1285 #elif defined(HAVE_DL_DLOPEN)
1286         msg_Warn( p_module, "cannot find symbol \"%s\" in file `%s' (%s)",
1287                             psz_name, p_module->psz_filename, dlerror() );
1288 #elif defined(HAVE_DL_SHL_LOAD)
1289         msg_Warn( p_module, "cannot find symbol \"%s\" in file `%s' (%s)",
1290                             psz_name, p_module->psz_filename, strerror(errno) );
1291 #else
1292 #   error "Something is wrong in modules.c"
1293 #endif
1294         return -1;
1295     }
1296
1297     /* We can now try to call the symbol */
1298     if( pf_symbol( p_module ) != 0 )
1299     {
1300         /* With a well-written module we shouldn't have to print an
1301          * additional error message here, but just make sure. */
1302         msg_Err( p_module, "failed calling symbol \"%s\" in file `%s'",
1303                            psz_name, p_module->psz_filename );
1304         return -1;
1305     }
1306
1307     /* Everything worked fine, we can return */
1308     return 0;
1309 }
1310
1311 /*****************************************************************************
1312  * LoadModule: loads a dynamic library
1313  *****************************************************************************
1314  * This function loads a dynamically linked library using a system dependant
1315  * method. Will return 0 on success as well as the module handle.
1316  *****************************************************************************/
1317 static int LoadModule( vlc_object_t *p_this, char *psz_file,
1318                        module_handle_t *p_handle )
1319 {
1320     module_handle_t handle;
1321
1322 #if defined(HAVE_DL_DYLD)
1323     NSObjectFileImage image;
1324     NSObjectFileImageReturnCode ret;
1325
1326     ret = NSCreateObjectFileImageFromFile( psz_file, &image );
1327
1328     if( ret != NSObjectFileImageSuccess )
1329     {
1330         msg_Warn( p_this, "cannot create image from `%s'", psz_file );
1331         return -1;
1332     }
1333
1334     /* Open the dynamic module */
1335     handle = NSLinkModule( image, psz_file,
1336                            NSLINKMODULE_OPTION_RETURN_ON_ERROR );
1337
1338     if( !handle )
1339     {
1340         NSLinkEditErrors errors;
1341         const char *psz_file, *psz_err;
1342         int i_errnum;
1343         NSLinkEditError( &errors, &i_errnum, &psz_file, &psz_err );
1344         msg_Warn( p_this, "cannot link module `%s' (%s)", psz_file, psz_err );
1345         NSDestroyObjectFileImage( image );
1346         return -1;
1347     }
1348
1349     /* Destroy our image, we won't need it */
1350     NSDestroyObjectFileImage( image );
1351
1352 #elif defined(HAVE_DL_BEOS)
1353     handle = load_add_on( psz_file );
1354     if( handle < 0 )
1355     {
1356         msg_Warn( p_this, "cannot load module `%s'", psz_file );
1357         return -1;
1358     }
1359
1360 #elif defined(HAVE_DL_WINDOWS)
1361 #ifdef UNDER_CE
1362     {
1363         wchar_t psz_wfile[MAX_PATH];
1364         MultiByteToWideChar( CP_ACP, 0, psz_file, -1, psz_wfile, MAX_PATH );
1365         handle = LoadLibrary( psz_wfile );
1366     }
1367 #else
1368     handle = LoadLibrary( psz_file );
1369 #endif
1370     if( handle == NULL )
1371     {
1372         char *psz_err = GetWindowsError();
1373         msg_Warn( p_this, "cannot load module `%s' (%s)", psz_file, psz_err );
1374         free( psz_err );
1375         return -1;
1376     }
1377
1378 #elif defined(HAVE_DL_DLOPEN) && defined(RTLD_NOW)
1379     /* static is OK, we are called atomically */
1380
1381 #   if defined(SYS_LINUX)
1382     /* XXX HACK #1 - we should NOT open modules with RTLD_GLOBAL, or we
1383      * are going to get namespace collisions when two modules have common
1384      * public symbols, but ALSA is being a pest here. */
1385     if( strstr( psz_file, "alsa_plugin" ) )
1386     {
1387         handle = dlopen( psz_file, RTLD_NOW | RTLD_GLOBAL );
1388         if( handle == NULL )
1389         {
1390             msg_Warn( p_this, "cannot load module `%s' (%s)",
1391                               psz_file, dlerror() );
1392             return -1;
1393         }
1394     }
1395 #   endif
1396
1397     handle = dlopen( psz_file, RTLD_NOW );
1398     if( handle == NULL )
1399     {
1400         msg_Warn( p_this, "cannot load module `%s' (%s)",
1401                           psz_file, dlerror() );
1402         return -1;
1403     }
1404
1405 #elif defined(HAVE_DL_DLOPEN)
1406 #   if defined(DL_LAZY)
1407     handle = dlopen( psz_file, DL_LAZY );
1408 #   else
1409     handle = dlopen( psz_file, 0 );
1410 #   endif
1411     if( handle == NULL )
1412     {
1413         msg_Warn( p_this, "cannot load module `%s' (%s)",
1414                           psz_file, dlerror() );
1415         return -1;
1416     }
1417
1418 #elif defined(HAVE_DL_SHL_LOAD)
1419     handle = shl_load( psz_file, BIND_IMMEDIATE | BIND_NONFATAL, NULL );
1420     if( handle == NULL )
1421     {
1422         msg_Warn( p_this, "cannot load module `%s' (%s)",
1423                           psz_file, strerror(errno) );
1424         return -1;
1425     }
1426
1427 #else
1428 #   error "Something is wrong in modules.c"
1429
1430 #endif
1431
1432     *p_handle = handle;
1433     return 0;
1434 }
1435
1436 /*****************************************************************************
1437  * CloseModule: unload a dynamic library
1438  *****************************************************************************
1439  * This function unloads a previously opened dynamically linked library
1440  * using a system dependant method. No return value is taken in consideration,
1441  * since some libraries sometimes refuse to close properly.
1442  *****************************************************************************/
1443 static void CloseModule( module_handle_t handle )
1444 {
1445 #if defined(HAVE_DL_DYLD)
1446     NSUnLinkModule( handle, FALSE );
1447
1448 #elif defined(HAVE_DL_BEOS)
1449     unload_add_on( handle );
1450
1451 #elif defined(HAVE_DL_WINDOWS)
1452     FreeLibrary( handle );
1453
1454 #elif defined(HAVE_DL_DLOPEN)
1455     dlclose( handle );
1456
1457 #elif defined(HAVE_DL_SHL_LOAD)
1458     shl_unload( handle );
1459
1460 #endif
1461     return;
1462 }
1463
1464 /*****************************************************************************
1465  * GetSymbol: get a symbol from a dynamic library
1466  *****************************************************************************
1467  * This function queries a loaded library for a symbol specified in a
1468  * string, and returns a pointer to it. We don't check for dlerror() or
1469  * similar functions, since we want a non-NULL symbol anyway.
1470  *****************************************************************************/
1471 static void * _module_getsymbol( module_handle_t, const char * );
1472
1473 static void * GetSymbol( module_handle_t handle, const char * psz_function )
1474 {
1475     void * p_symbol = _module_getsymbol( handle, psz_function );
1476
1477     /* MacOS X dl library expects symbols to begin with "_". So do
1478      * some other operating systems. That's really lame, but hey, what
1479      * can we do ? */
1480     if( p_symbol == NULL )
1481     {
1482         char *psz_call = malloc( strlen( psz_function ) + 2 );
1483
1484         strcpy( psz_call + 1, psz_function );
1485         psz_call[ 0 ] = '_';
1486         p_symbol = _module_getsymbol( handle, psz_call );
1487         free( psz_call );
1488     }
1489
1490     return p_symbol;
1491 }
1492
1493 static void * _module_getsymbol( module_handle_t handle,
1494                                  const char * psz_function )
1495 {
1496 #if defined(HAVE_DL_DYLD)
1497     NSSymbol sym = NSLookupSymbolInModule( handle, psz_function );
1498     return NSAddressOfSymbol( sym );
1499
1500 #elif defined(HAVE_DL_BEOS)
1501     void * p_symbol;
1502     if( B_OK == get_image_symbol( handle, psz_function,
1503                                   B_SYMBOL_TYPE_TEXT, &p_symbol ) )
1504     {
1505         return p_symbol;
1506     }
1507     else
1508     {
1509         return NULL;
1510     }
1511
1512 #elif defined(HAVE_DL_WINDOWS) && defined(UNDER_CE)
1513     wchar_t psz_real[256];
1514     MultiByteToWideChar( CP_ACP, 0, psz_function, -1, psz_real, 256 );
1515
1516     return (void *)GetProcAddress( handle, psz_real );
1517
1518 #elif defined(HAVE_DL_WINDOWS) && defined(WIN32)
1519     return (void *)GetProcAddress( handle, (char *)psz_function );
1520
1521 #elif defined(HAVE_DL_DLOPEN)
1522     return dlsym( handle, psz_function );
1523
1524 #elif defined(HAVE_DL_SHL_LOAD)
1525     void *p_sym;
1526     shl_findsym( &handle, psz_function, TYPE_UNDEFINED, &p_sym );
1527     return p_sym;
1528
1529 #endif
1530 }
1531
1532 #if defined(HAVE_DL_WINDOWS)
1533 static char * GetWindowsError( void )
1534 {
1535 #if defined(UNDER_CE)
1536     wchar_t psz_tmp[MAX_PATH];
1537     char * psz_buffer = malloc( MAX_PATH );
1538 #else
1539     char * psz_tmp = malloc( MAX_PATH );
1540 #endif
1541     int i = 0, i_error = GetLastError();
1542
1543     FormatMessage( FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
1544                    NULL, i_error, MAKELANGID (LANG_NEUTRAL, SUBLANG_DEFAULT),
1545                    (LPTSTR)psz_tmp, MAX_PATH, NULL );
1546
1547     /* Go to the end of the string */
1548     while( psz_tmp[i] && psz_tmp[i] != _T('\r') && psz_tmp[i] != _T('\n') )
1549     {
1550         i++;
1551     }
1552
1553     if( psz_tmp[i] )
1554     {
1555 #if defined(UNDER_CE)
1556         swprintf( psz_tmp + i, L" (error %i)", i_error );
1557         psz_tmp[ 255 ] = L'\0';
1558 #else
1559         snprintf( psz_tmp + i, 256 - i, " (error %i)", i_error );
1560         psz_tmp[ 255 ] = '\0';
1561 #endif
1562     }
1563
1564 #if defined(UNDER_CE)
1565     wcstombs( psz_buffer, psz_tmp, MAX_PATH );
1566     return psz_buffer;
1567 #else
1568     return psz_tmp;
1569 #endif
1570 }
1571 #endif /* HAVE_DL_WINDOWS */
1572
1573 /*****************************************************************************
1574  * LoadPluginsCache: loads the plugins cache file
1575  *****************************************************************************
1576  * This function will load the plugin cache if present and valid. This cache
1577  * will in turn be queried by AllocateAllPlugins() to see if it needs to
1578  * actually load the dynamically loadable module.
1579  * This allows us to only fully load plugins when they are actually used.
1580  *****************************************************************************/
1581 static void CacheLoad( vlc_object_t *p_this )
1582 {
1583     char *psz_filename, *psz_homedir;
1584     FILE *file;
1585     int i, j, i_size, i_read;
1586     char p_cachestring[sizeof(PLUGINSCACHE_DIR COPYRIGHT_MESSAGE)];
1587     char p_cachelang[6], p_lang[6];
1588     int i_cache;
1589     module_cache_t **pp_cache = 0;
1590     int32_t i_file_size, i_marker;
1591
1592     psz_homedir = p_this->p_vlc->psz_homedir;
1593     if( !psz_homedir )
1594     {
1595         msg_Err( p_this, "psz_homedir is null" );
1596         return;
1597     }
1598
1599     i_size = asprintf( &psz_filename, "%s/%s/%s/%s", psz_homedir, CONFIG_DIR,
1600                        PLUGINSCACHE_DIR, CacheName() );
1601     if( i_size <= 0 )
1602     {
1603         msg_Err( p_this, "out of memory" );
1604         return;
1605     }
1606
1607     if( p_this->p_libvlc->p_module_bank->b_cache_delete )
1608     {
1609 #if !defined( UNDER_CE )
1610         unlink( psz_filename );
1611 #else
1612         wchar_t psz_wf[MAX_PATH];
1613         MultiByteToWideChar( CP_ACP, 0, psz_filename, -1, psz_wf, MAX_PATH );
1614         DeleteFile( psz_wf );
1615 #endif
1616         msg_Dbg( p_this, "removing plugins cache file %s", psz_filename );
1617         free( psz_filename );
1618         return;
1619     }
1620
1621     msg_Dbg( p_this, "loading plugins cache file %s", psz_filename );
1622
1623     file = fopen( psz_filename, "rb" );
1624     if( !file )
1625     {
1626         msg_Warn( p_this, "could not open plugins cache file %s for reading",
1627                   psz_filename );
1628         free( psz_filename );
1629         return;
1630     }
1631     free( psz_filename );
1632
1633     /* Check the file size */
1634     i_read = fread( &i_file_size, sizeof(char), sizeof(i_file_size), file );
1635     if( i_read != sizeof(i_file_size) )
1636     {
1637         msg_Warn( p_this, "This doesn't look like a valid plugins cache "
1638                   "(too short)" );
1639         fclose( file );
1640         return;
1641     }
1642
1643     fseek( file, 0, SEEK_END );
1644     if( ftell( file ) != i_file_size )
1645     {
1646         msg_Warn( p_this, "This doesn't look like a valid plugins cache "
1647                   "(corrupted size)" );
1648         fclose( file );
1649         return;
1650     }
1651     fseek( file, sizeof(i_file_size), SEEK_SET );
1652
1653     /* Check the file is a plugins cache */
1654     i_size = sizeof(PLUGINSCACHE_DIR COPYRIGHT_MESSAGE) - 1;
1655     i_read = fread( p_cachestring, sizeof(char), i_size, file );
1656     if( i_read != i_size ||
1657         memcmp( p_cachestring, PLUGINSCACHE_DIR COPYRIGHT_MESSAGE, i_size ) )
1658     {
1659         msg_Warn( p_this, "This doesn't look like a valid plugins cache" );
1660         fclose( file );
1661         return;
1662     }
1663
1664     /* Check Sub-version number */
1665     i_read = fread( &i_marker, sizeof(char), sizeof(i_marker), file );
1666     if( i_read != sizeof(i_marker) || i_marker != CACHE_SUBVERSION_NUM )
1667     {
1668         msg_Warn( p_this, "This doesn't look like a valid plugins cache "
1669                   "(corrupted header)" );
1670         fclose( file );
1671         return;
1672     }
1673
1674     /* Check the language hasn't changed */
1675     sprintf( p_lang, "%5.5s", _("C") ); i_size = 5;
1676     i_read = fread( p_cachelang, sizeof(char), i_size, file );
1677     if( i_read != i_size || memcmp( p_cachelang, p_lang, i_size ) )
1678     {
1679         msg_Warn( p_this, "This doesn't look like a valid plugins cache "
1680                   "(language changed)" );
1681         fclose( file );
1682         return;
1683     }
1684
1685     /* Check header marker */
1686     i_read = fread( &i_marker, sizeof(char), sizeof(i_marker), file );
1687     if( i_read != sizeof(i_marker) ||
1688         i_marker != ftell( file ) - (int)sizeof(i_marker) )
1689     {
1690         msg_Warn( p_this, "This doesn't look like a valid plugins cache "
1691                   "(corrupted header)" );
1692         fclose( file );
1693         return;
1694     }
1695
1696     p_this->p_libvlc->p_module_bank->i_loaded_cache = 0;
1697     fread( &i_cache, sizeof(char), sizeof(i_cache), file );
1698     if( i_cache )
1699         pp_cache = p_this->p_libvlc->p_module_bank->pp_loaded_cache =
1700                    malloc( i_cache * sizeof(void *) );
1701
1702 #define LOAD_IMMEDIATE(a) \
1703     if( fread( &a, sizeof(char), sizeof(a), file ) != sizeof(a) ) goto error
1704 #define LOAD_STRING(a) \
1705     { if( fread( &i_size, sizeof(char), sizeof(i_size), file ) \
1706           != sizeof(i_size) ) goto error; \
1707       if( i_size && i_size < 16384 ) { \
1708           a = malloc( i_size ); \
1709           if( fread( a, sizeof(char), i_size, file ) != (size_t)i_size ) \
1710               goto error; \
1711           if( a[i_size-1] ) { \
1712               free( a ); a = 0; \
1713               goto error; } \
1714       } else a = 0; \
1715     } while(0)
1716
1717
1718     for( i = 0; i < i_cache; i++ )
1719     {
1720         int16_t i_size;
1721         int i_submodules;
1722
1723         pp_cache[i] = malloc( sizeof(module_cache_t) );
1724         p_this->p_libvlc->p_module_bank->i_loaded_cache++;
1725
1726         /* Load common info */
1727         LOAD_STRING( pp_cache[i]->psz_file );
1728         LOAD_IMMEDIATE( pp_cache[i]->i_time );
1729         LOAD_IMMEDIATE( pp_cache[i]->i_size );
1730         LOAD_IMMEDIATE( pp_cache[i]->b_junk );
1731
1732         if( pp_cache[i]->b_junk ) continue;
1733
1734         pp_cache[i]->p_module = vlc_object_create( p_this, VLC_OBJECT_MODULE );
1735
1736         /* Load additional infos */
1737         LOAD_STRING( pp_cache[i]->p_module->psz_object_name );
1738         LOAD_STRING( pp_cache[i]->p_module->psz_shortname );
1739         LOAD_STRING( pp_cache[i]->p_module->psz_longname );
1740         LOAD_STRING( pp_cache[i]->p_module->psz_program );
1741         for( j = 0; j < MODULE_SHORTCUT_MAX; j++ )
1742         {
1743             LOAD_STRING( pp_cache[i]->p_module->pp_shortcuts[j] ); // FIX
1744         }
1745         LOAD_STRING( pp_cache[i]->p_module->psz_capability );
1746         LOAD_IMMEDIATE( pp_cache[i]->p_module->i_score );
1747         LOAD_IMMEDIATE( pp_cache[i]->p_module->i_cpu );
1748         LOAD_IMMEDIATE( pp_cache[i]->p_module->b_unloadable );
1749         LOAD_IMMEDIATE( pp_cache[i]->p_module->b_reentrant );
1750         LOAD_IMMEDIATE( pp_cache[i]->p_module->b_submodule );
1751
1752         /* Config stuff */
1753         if( CacheLoadConfig( pp_cache[i]->p_module, file ) != VLC_SUCCESS )
1754             goto error;
1755
1756         LOAD_STRING( pp_cache[i]->p_module->psz_filename );
1757
1758         LOAD_IMMEDIATE( i_submodules );
1759
1760         while( i_submodules-- )
1761         {
1762             module_t *p_module = vlc_object_create( p_this, VLC_OBJECT_MODULE);
1763             vlc_object_attach( p_module, pp_cache[i]->p_module );
1764             p_module->b_submodule = VLC_TRUE;
1765
1766             LOAD_STRING( p_module->psz_object_name );
1767             LOAD_STRING( p_module->psz_shortname );
1768             LOAD_STRING( p_module->psz_longname );
1769             LOAD_STRING( p_module->psz_program );
1770             for( j = 0; j < MODULE_SHORTCUT_MAX; j++ )
1771             {
1772                 LOAD_STRING( p_module->pp_shortcuts[j] ); // FIX
1773             }
1774             LOAD_STRING( p_module->psz_capability );
1775             LOAD_IMMEDIATE( p_module->i_score );
1776             LOAD_IMMEDIATE( p_module->i_cpu );
1777             LOAD_IMMEDIATE( p_module->b_unloadable );
1778             LOAD_IMMEDIATE( p_module->b_reentrant );
1779         }
1780     }
1781
1782     fclose( file );
1783     return;
1784
1785  error:
1786
1787     msg_Warn( p_this, "plugins cache not loaded (corrupted)" );
1788
1789     /* TODO: cleanup */
1790     p_this->p_libvlc->p_module_bank->i_loaded_cache = 0;
1791
1792     fclose( file );
1793     return;
1794 }
1795
1796 int CacheLoadConfig( module_t *p_module, FILE *file )
1797 {
1798     int i, j, i_lines;
1799     int16_t i_size;
1800
1801     /* Calculate the structure length */
1802     LOAD_IMMEDIATE( p_module->i_config_items );
1803     LOAD_IMMEDIATE( p_module->i_bool_items );
1804
1805     LOAD_IMMEDIATE( i_lines );
1806
1807     /* Allocate memory */
1808     p_module->p_config =
1809         (module_config_t *)malloc( sizeof(module_config_t) * (i_lines + 1));
1810     if( p_module->p_config == NULL )
1811     {
1812         msg_Err( p_module, "config error: can't duplicate p_config" );
1813         return VLC_ENOMEM;
1814     }
1815
1816     /* Do the duplication job */
1817     for( i = 0; i < i_lines ; i++ )
1818     {
1819         LOAD_IMMEDIATE( p_module->p_config[i] );
1820
1821         LOAD_STRING( p_module->p_config[i].psz_type );
1822         LOAD_STRING( p_module->p_config[i].psz_name );
1823         LOAD_STRING( p_module->p_config[i].psz_text );
1824         LOAD_STRING( p_module->p_config[i].psz_longtext );
1825         LOAD_STRING( p_module->p_config[i].psz_current );
1826         LOAD_STRING( p_module->p_config[i].psz_value_orig );
1827
1828         p_module->p_config[i].psz_value =
1829             p_module->p_config[i].psz_value_orig ?
1830                 strdup( p_module->p_config[i].psz_value_orig ) : 0;
1831         p_module->p_config[i].i_value = p_module->p_config[i].i_value_orig;
1832         p_module->p_config[i].f_value = p_module->p_config[i].f_value_orig;
1833         p_module->p_config[i].i_value_saved = p_module->p_config[i].i_value;
1834         p_module->p_config[i].f_value_saved = p_module->p_config[i].f_value;
1835         p_module->p_config[i].psz_value_saved = 0;
1836         p_module->p_config[i].b_dirty = VLC_FALSE;
1837
1838         p_module->p_config[i].p_lock = &p_module->object_lock;
1839
1840         if( p_module->p_config[i].i_list )
1841         {
1842             if( p_module->p_config[i].ppsz_list )
1843             {
1844                 p_module->p_config[i].ppsz_list =
1845                     malloc( (p_module->p_config[i].i_list+1) * sizeof(char *));
1846                 if( p_module->p_config[i].ppsz_list )
1847                 {
1848                     for( j = 0; j < p_module->p_config[i].i_list; j++ )
1849                         LOAD_STRING( p_module->p_config[i].ppsz_list[j] );
1850                     p_module->p_config[i].ppsz_list[j] = NULL;
1851                 }
1852             }
1853             if( p_module->p_config[i].ppsz_list_text )
1854             {
1855                 p_module->p_config[i].ppsz_list_text =
1856                     malloc( (p_module->p_config[i].i_list+1) * sizeof(char *));
1857                 if( p_module->p_config[i].ppsz_list_text )
1858                 {
1859                   for( j = 0; j < p_module->p_config[i].i_list; j++ )
1860                       LOAD_STRING( p_module->p_config[i].ppsz_list_text[j] );
1861                   p_module->p_config[i].ppsz_list_text[j] = NULL;
1862                 }
1863             }
1864             if( p_module->p_config[i].pi_list )
1865             {
1866                 p_module->p_config[i].pi_list =
1867                     malloc( (p_module->p_config[i].i_list + 1) * sizeof(int) );
1868                 if( p_module->p_config[i].pi_list )
1869                 {
1870                     for( j = 0; j < p_module->p_config[i].i_list; j++ )
1871                         LOAD_IMMEDIATE( p_module->p_config[i].pi_list[j] );
1872                 }
1873             }
1874         }
1875
1876         if( p_module->p_config[i].i_action )
1877         {
1878             p_module->p_config[i].ppf_action =
1879                 malloc( p_module->p_config[i].i_action * sizeof(void *) );
1880             p_module->p_config[i].ppsz_action_text =
1881                 malloc( p_module->p_config[i].i_action * sizeof(char *) );
1882
1883             for( j = 0; j < p_module->p_config[i].i_action; j++ )
1884             {
1885                 p_module->p_config[i].ppf_action[j] = 0;
1886                 LOAD_STRING( p_module->p_config[i].ppsz_action_text[j] );
1887             }
1888         }
1889
1890         LOAD_IMMEDIATE( p_module->p_config[i].pf_callback );
1891     }
1892
1893     p_module->p_config[i].i_type = CONFIG_HINT_END;
1894
1895     return VLC_SUCCESS;
1896
1897  error:
1898
1899     return VLC_EGENERIC;
1900 }
1901
1902 /*****************************************************************************
1903  * SavePluginsCache: saves the plugins cache to a file
1904  *****************************************************************************/
1905 static void CacheSave( vlc_object_t *p_this )
1906 {
1907     static char const psz_tag[] =
1908         "Signature: 8a477f597d28d172789f06886806bc55\r\n"
1909         "# This file is a cache directory tag created by VLC.\r\n"
1910         "# For information about cache directory tags, see:\r\n"
1911         "#   http://www.brynosaurus.com/cachedir/\r\n";
1912
1913     char *psz_filename, *psz_homedir;
1914     FILE *file;
1915     int i, j, i_cache;
1916     module_cache_t **pp_cache;
1917     int32_t i_file_size = 0;
1918
1919     psz_homedir = p_this->p_vlc->psz_homedir;
1920     if( !psz_homedir )
1921     {
1922         msg_Err( p_this, "psz_homedir is null" );
1923         return;
1924     }
1925     psz_filename =
1926        (char *)malloc( sizeof("/" CONFIG_DIR "/" PLUGINSCACHE_DIR "/" ) +
1927                        strlen(psz_homedir) + strlen(CacheName()) );
1928
1929     if( !psz_filename )
1930     {
1931         msg_Err( p_this, "out of memory" );
1932         return;
1933     }
1934
1935     sprintf( psz_filename, "%s/%s", psz_homedir, CONFIG_DIR );
1936
1937     config_CreateDir( p_this, psz_filename );
1938
1939     strcat( psz_filename, "/" PLUGINSCACHE_DIR );
1940
1941     config_CreateDir( p_this, psz_filename );
1942
1943     strcat( psz_filename, "/CACHEDIR.TAG" );
1944
1945     file = fopen( psz_filename, "wb" );
1946     if( file )
1947     {
1948         fwrite( psz_tag, 1, strlen(psz_tag), file );
1949         fclose( file );
1950     }
1951
1952     sprintf( psz_filename, "%s/%s/%s/%s", psz_homedir, CONFIG_DIR,
1953              PLUGINSCACHE_DIR, CacheName() );
1954
1955     msg_Dbg( p_this, "saving plugins cache file %s", psz_filename );
1956
1957     file = fopen( psz_filename, "wb" );
1958     if( !file )
1959     {
1960         msg_Warn( p_this, "could not open plugins cache file %s for writing",
1961                   psz_filename );
1962         free( psz_filename );
1963         return;
1964     }
1965     free( psz_filename );
1966
1967     /* Empty space for file size */
1968     fwrite( &i_file_size, sizeof(char), sizeof(i_file_size), file );
1969
1970     /* Contains version number */
1971     fprintf( file, "%s", PLUGINSCACHE_DIR COPYRIGHT_MESSAGE );
1972
1973     /* Sub-version number (to avoid breakage in the dev version when cache
1974      * structure changes) */
1975     i_file_size = CACHE_SUBVERSION_NUM;
1976     fwrite( &i_file_size, sizeof(char), sizeof(i_file_size), file );
1977
1978     /* Language */
1979     fprintf( file, "%5.5s", _("C") );
1980
1981     /* Header marker */
1982     i_file_size = ftell( file );
1983     fwrite( &i_file_size, sizeof(char), sizeof(i_file_size), file );
1984
1985     i_cache = p_this->p_libvlc->p_module_bank->i_cache;
1986     pp_cache = p_this->p_libvlc->p_module_bank->pp_cache;
1987
1988     fwrite( &i_cache, sizeof(char), sizeof(i_cache), file );
1989
1990 #define SAVE_IMMEDIATE(a) \
1991     fwrite( &a, sizeof(char), sizeof(a), file )
1992 #define SAVE_STRING(a) \
1993     { i_size = a ? strlen( a ) + 1 : 0; \
1994       fwrite( &i_size, sizeof(char), sizeof(i_size), file ); \
1995       if( a ) fwrite( a, sizeof(char), i_size, file ); \
1996     } while(0)
1997
1998     for( i = 0; i < i_cache; i++ )
1999     {
2000         int16_t i_size;
2001         int32_t i_submodule;
2002
2003         /* Save common info */
2004         SAVE_STRING( pp_cache[i]->psz_file );
2005         SAVE_IMMEDIATE( pp_cache[i]->i_time );
2006         SAVE_IMMEDIATE( pp_cache[i]->i_size );
2007         SAVE_IMMEDIATE( pp_cache[i]->b_junk );
2008
2009         if( pp_cache[i]->b_junk ) continue;
2010
2011         /* Save additional infos */
2012         SAVE_STRING( pp_cache[i]->p_module->psz_object_name );
2013         SAVE_STRING( pp_cache[i]->p_module->psz_shortname );
2014         SAVE_STRING( pp_cache[i]->p_module->psz_longname );
2015         SAVE_STRING( pp_cache[i]->p_module->psz_program );
2016         for( j = 0; j < MODULE_SHORTCUT_MAX; j++ )
2017         {
2018             SAVE_STRING( pp_cache[i]->p_module->pp_shortcuts[j] ); // FIX
2019         }
2020         SAVE_STRING( pp_cache[i]->p_module->psz_capability );
2021         SAVE_IMMEDIATE( pp_cache[i]->p_module->i_score );
2022         SAVE_IMMEDIATE( pp_cache[i]->p_module->i_cpu );
2023         SAVE_IMMEDIATE( pp_cache[i]->p_module->b_unloadable );
2024         SAVE_IMMEDIATE( pp_cache[i]->p_module->b_reentrant );
2025         SAVE_IMMEDIATE( pp_cache[i]->p_module->b_submodule );
2026
2027         /* Config stuff */
2028         CacheSaveConfig( pp_cache[i]->p_module, file );
2029
2030         SAVE_STRING( pp_cache[i]->p_module->psz_filename );
2031
2032         i_submodule = pp_cache[i]->p_module->i_children;
2033         SAVE_IMMEDIATE( i_submodule );
2034         for( i_submodule = 0; i_submodule < pp_cache[i]->p_module->i_children;
2035              i_submodule++ )
2036         {
2037             module_t *p_module =
2038                 (module_t *)pp_cache[i]->p_module->pp_children[i_submodule];
2039
2040             SAVE_STRING( p_module->psz_object_name );
2041             SAVE_STRING( p_module->psz_shortname );
2042             SAVE_STRING( p_module->psz_longname );
2043             SAVE_STRING( p_module->psz_program );
2044             for( j = 0; j < MODULE_SHORTCUT_MAX; j++ )
2045             {
2046                 SAVE_STRING( p_module->pp_shortcuts[j] ); // FIX
2047             }
2048             SAVE_STRING( p_module->psz_capability );
2049             SAVE_IMMEDIATE( p_module->i_score );
2050             SAVE_IMMEDIATE( p_module->i_cpu );
2051             SAVE_IMMEDIATE( p_module->b_unloadable );
2052             SAVE_IMMEDIATE( p_module->b_reentrant );
2053         }
2054     }
2055
2056     /* Fill-up file size */
2057     i_file_size = ftell( file );
2058     fseek( file, 0, SEEK_SET );
2059     fwrite( &i_file_size, sizeof(char), sizeof(i_file_size), file );
2060
2061     fclose( file );
2062
2063     return;
2064 }
2065
2066 void CacheSaveConfig( module_t *p_module, FILE *file )
2067 {
2068     int i, j, i_lines = 0;
2069     module_config_t *p_item;
2070     int16_t i_size;
2071
2072     SAVE_IMMEDIATE( p_module->i_config_items );
2073     SAVE_IMMEDIATE( p_module->i_bool_items );
2074
2075     for( p_item = p_module->p_config; p_item->i_type != CONFIG_HINT_END;
2076          p_item++ ) i_lines++;
2077
2078     SAVE_IMMEDIATE( i_lines );
2079
2080     for( i = 0; i < i_lines ; i++ )
2081     {
2082         SAVE_IMMEDIATE( p_module->p_config[i] );
2083
2084         SAVE_STRING( p_module->p_config[i].psz_type );
2085         SAVE_STRING( p_module->p_config[i].psz_name );
2086         SAVE_STRING( p_module->p_config[i].psz_text );
2087         SAVE_STRING( p_module->p_config[i].psz_longtext );
2088         SAVE_STRING( p_module->p_config[i].psz_current );
2089         SAVE_STRING( p_module->p_config[i].psz_value_orig );
2090
2091         if( p_module->p_config[i].i_list )
2092         {
2093             if( p_module->p_config[i].ppsz_list )
2094             {
2095                 for( j = 0; j < p_module->p_config[i].i_list; j++ )
2096                     SAVE_STRING( p_module->p_config[i].ppsz_list[j] );
2097             }
2098
2099             if( p_module->p_config[i].ppsz_list_text )
2100             {
2101                 for( j = 0; j < p_module->p_config[i].i_list; j++ )
2102                     SAVE_STRING( p_module->p_config[i].ppsz_list_text[j] );
2103             }
2104             if( p_module->p_config[i].pi_list )
2105             {
2106                 for( j = 0; j < p_module->p_config[i].i_list; j++ )
2107                     SAVE_IMMEDIATE( p_module->p_config[i].pi_list[j] );
2108             }
2109         }
2110
2111         for( j = 0; j < p_module->p_config[i].i_action; j++ )
2112             SAVE_STRING( p_module->p_config[i].ppsz_action_text[j] );
2113
2114         SAVE_IMMEDIATE( p_module->p_config[i].pf_callback );
2115     }
2116 }
2117
2118 /*****************************************************************************
2119  * CacheName: Return the cache file name for this platform.
2120  *****************************************************************************/
2121 static char *CacheName( void )
2122 {
2123     static char psz_cachename[32];
2124     static vlc_bool_t b_initialised = VLC_FALSE;
2125
2126     if( !b_initialised )
2127     {
2128         /* Code int size, pointer size and endianness in the filename */
2129         int32_t x = 0xbe00001e;
2130         sprintf( psz_cachename, "plugins-%.2x%.2x%.2x.dat", sizeof(int),
2131                  sizeof(void *), (unsigned int)((unsigned char *)&x)[0] );
2132         b_initialised = VLC_TRUE;
2133     }
2134
2135     return psz_cachename;
2136 }
2137
2138 /*****************************************************************************
2139  * CacheMerge: Merge a cache module descriptor with a full module descriptor.
2140  *****************************************************************************/
2141 static void CacheMerge( vlc_object_t *p_this, module_t *p_cache,
2142                         module_t *p_module )
2143 {
2144     int i_submodule;
2145
2146     p_cache->pf_activate = p_module->pf_activate;
2147     p_cache->pf_deactivate = p_module->pf_deactivate;
2148     p_cache->p_symbols = p_module->p_symbols;
2149     p_cache->handle = p_module->handle;
2150
2151     for( i_submodule = 0; i_submodule < p_module->i_children; i_submodule++ )
2152     {
2153         module_t *p_child = (module_t*)p_module->pp_children[i_submodule];
2154         module_t *p_cchild = (module_t*)p_cache->pp_children[i_submodule];
2155         p_cchild->pf_activate = p_child->pf_activate;
2156         p_cchild->pf_deactivate = p_child->pf_deactivate;
2157         p_cchild->p_symbols = p_child->p_symbols;
2158     }
2159
2160     p_cache->b_loaded = VLC_TRUE;
2161     p_module->b_loaded = VLC_FALSE;
2162 }
2163
2164 /*****************************************************************************
2165  * FindPluginCache: finds the cache entry corresponding to a file
2166  *****************************************************************************/
2167 static module_cache_t *CacheFind( vlc_object_t *p_this, char *psz_file,
2168                                   int64_t i_time, int64_t i_size )
2169 {
2170     module_cache_t **pp_cache;
2171     int i_cache, i;
2172
2173     pp_cache = p_this->p_libvlc->p_module_bank->pp_loaded_cache;
2174     i_cache = p_this->p_libvlc->p_module_bank->i_loaded_cache;
2175
2176     for( i = 0; i < i_cache; i++ )
2177     {
2178         if( !strcmp( pp_cache[i]->psz_file, psz_file ) &&
2179             pp_cache[i]->i_time == i_time &&
2180             pp_cache[i]->i_size == i_size ) return pp_cache[i];
2181     }
2182
2183     return NULL;
2184 }
2185
2186 #endif /* HAVE_DYNAMIC_PLUGINS */