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