]> git.sesse.net Git - vlc/blob - src/modules/modules.c
0f39d63904f5a7b63bb5b7629b643d7688527f89
[vlc] / src / modules / modules.c
1 /*****************************************************************************
2  * modules.c : Builtin and plugin modules management functions
3  *****************************************************************************
4  * Copyright (C) 2001-2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Sam Hocevar <sam@zoy.org>
8  *          Ethan C. Baldridge <BaldridgeE@cadmus.com>
9  *          Hans-Peter Jansen <hpj@urpla.net>
10  *          Gildas Bazin <gbazin@videolan.org>
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
25  *****************************************************************************/
26
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <vlc_common.h>
32 #include <vlc_plugin.h>
33 #include "libvlc.h"
34
35 /* Some faulty libcs have a broken struct dirent when _FILE_OFFSET_BITS
36  * is set to 64. Don't try to be cleverer. */
37 #ifdef _FILE_OFFSET_BITS
38 #undef _FILE_OFFSET_BITS
39 #endif
40
41 #include <stdlib.h>                                      /* free(), strtol() */
42 #include <stdio.h>                                              /* sprintf() */
43 #include <string.h>                                              /* strdup() */
44 #include <assert.h>
45
46 #ifdef HAVE_DIRENT_H
47 #   include <dirent.h>
48 #endif
49
50 #ifdef HAVE_SYS_TYPES_H
51 #   include <sys/types.h>
52 #endif
53 #ifdef HAVE_SYS_STAT_H
54 #   include <sys/stat.h>
55 #endif
56 #ifdef HAVE_UNISTD_H
57 #   include <unistd.h>
58 #endif
59
60 #if !defined(HAVE_DYNAMIC_PLUGINS)
61     /* no support for plugins */
62 #elif defined(HAVE_DL_DYLD)
63 #   if defined(HAVE_MACH_O_DYLD_H)
64 #       include <mach-o/dyld.h>
65 #   endif
66 #elif defined(HAVE_DL_BEOS)
67 #   if defined(HAVE_IMAGE_H)
68 #       include <image.h>
69 #   endif
70 #elif defined(HAVE_DL_WINDOWS)
71 #   include <windows.h>
72 #elif defined(HAVE_DL_DLOPEN)
73 #   if defined(HAVE_DLFCN_H) /* Linux, BSD, Hurd */
74 #       include <dlfcn.h>
75 #   endif
76 #   if defined(HAVE_SYS_DL_H)
77 #       include <sys/dl.h>
78 #   endif
79 #elif defined(HAVE_DL_SHL_LOAD)
80 #   if defined(HAVE_DL_H)
81 #       include <dl.h>
82 #   endif
83 #endif
84
85 #include "config/configuration.h"
86
87 #include "vlc_charset.h"
88 #include "vlc_arrays.h"
89
90 #include "modules/modules.h"
91 #include "modules/builtin.h"
92
93 static module_bank_t *p_module_bank = NULL;
94 static vlc_mutex_t module_lock = VLC_STATIC_MUTEX;
95
96 /*****************************************************************************
97  * Local prototypes
98  *****************************************************************************/
99 #ifdef HAVE_DYNAMIC_PLUGINS
100 static void AllocateAllPlugins  ( vlc_object_t * );
101 static void AllocatePluginDir   ( vlc_object_t *, const char *, int );
102 static int  AllocatePluginFile  ( vlc_object_t *, char *, int64_t, int64_t );
103 static module_t * AllocatePlugin( vlc_object_t *, char * );
104 #endif
105 static int  AllocateBuiltinModule( vlc_object_t *, int ( * ) ( module_t * ) );
106 static void DeleteModule ( module_bank_t *, module_t * );
107 #ifdef HAVE_DYNAMIC_PLUGINS
108 static void   DupModule        ( module_t * );
109 static void   UndupModule      ( module_t * );
110 #endif
111
112 /**
113  * Init bank
114  *
115  * Creates a module bank structure which will be filled later
116  * on with all the modules found.
117  * \param p_this vlc object structure
118  * \return nothing
119  */
120 void __module_InitBank( vlc_object_t *p_this )
121 {
122     module_bank_t *p_bank = NULL;
123
124     vlc_mutex_lock( &module_lock );
125
126     if( p_module_bank == NULL )
127     {
128         p_bank = calloc (1, sizeof(*p_bank));
129         p_bank->i_usage = 1;
130         p_bank->i_cache = p_bank->i_loaded_cache = 0;
131         p_bank->pp_cache = p_bank->pp_loaded_cache = NULL;
132         p_bank->b_cache = p_bank->b_cache_dirty = false;
133         p_bank->head = NULL;
134
135         /* Everything worked, attach the object */
136         p_module_bank = p_bank;
137
138         /* Fills the module bank structure with the main module infos.
139          * This is very useful as it will allow us to consider the main
140          * library just as another module, and for instance the configuration
141          * options of main will be available in the module bank structure just
142          * as for every other module. */
143         AllocateBuiltinModule( p_this, vlc_entry__main );
144     }
145     else
146         p_module_bank->i_usage++;
147
148     vlc_mutex_unlock( &module_lock );
149 }
150
151
152 /**
153  * End bank
154  *
155  * Unloads all unused plugin modules and empties the module
156  * bank in case of success.
157  * \param p_this vlc object structure
158  * \return nothing
159  */
160 void __module_EndBank( vlc_object_t *p_this )
161 {
162     module_bank_t *p_bank;
163
164     /* Save the configuration */
165     config_AutoSaveConfigFile( p_this );
166
167     vlc_mutex_lock( &module_lock );
168     p_bank = p_module_bank;
169     assert (p_bank != NULL);
170     if( --p_bank->i_usage > 0 )
171     {
172         vlc_mutex_unlock( &module_lock );
173         return;
174     }
175     p_module_bank = NULL;
176     vlc_mutex_unlock( &module_lock );
177
178 #ifdef HAVE_DYNAMIC_PLUGINS
179     if( p_bank->b_cache )
180         CacheSave( p_this, p_bank );
181     while( p_bank->i_loaded_cache-- )
182     {
183         if( p_bank->pp_loaded_cache[p_bank->i_loaded_cache] )
184         {
185             DeleteModule( p_bank,
186                     p_bank->pp_loaded_cache[p_bank->i_loaded_cache]->p_module );
187             free( p_bank->pp_loaded_cache[p_bank->i_loaded_cache]->psz_file );
188             free( p_bank->pp_loaded_cache[p_bank->i_loaded_cache] );
189             p_bank->pp_loaded_cache[p_bank->i_loaded_cache] = NULL;
190         }
191     }
192     if( p_bank->pp_loaded_cache )
193     {
194         free( p_bank->pp_loaded_cache );
195         p_bank->pp_loaded_cache = NULL;
196     }
197     while( p_bank->i_cache-- )
198     {
199         free( p_bank->pp_cache[p_bank->i_cache]->psz_file );
200         free( p_bank->pp_cache[p_bank->i_cache] );
201         p_bank->pp_cache[p_bank->i_cache] = NULL;
202     }
203     if( p_bank->pp_cache )
204     {
205         free( p_bank->pp_cache );
206         p_bank->pp_cache = NULL;
207     }
208 #endif
209
210     while( p_bank->head != NULL )
211         DeleteModule( p_bank, p_bank->head );
212
213     free( p_bank );
214 }
215
216 /**
217  * Load all modules which we built with.
218  *
219  * Fills the module bank structure with the builtin modules.
220  * \param p_this vlc object structure
221  * \return nothing
222  */
223 void __module_LoadBuiltins( vlc_object_t * p_this )
224 {
225     vlc_mutex_lock( &module_lock );
226     if( p_module_bank->b_builtins )
227     {
228         vlc_mutex_unlock( &module_lock );
229         return;
230     }
231     p_module_bank->b_builtins = true;
232     vlc_mutex_unlock( &module_lock );
233
234     msg_Dbg( p_this, "checking builtin modules" );
235     /* FIXME: race here - do this under the lock!! */
236     ALLOCATE_ALL_BUILTINS();
237 }
238
239 #undef module_LoadPlugins
240 /**
241  * Load all plugins
242  *
243  * Load all plugin modules we can find.
244  * Fills the module bank structure with the plugin modules.
245  * \param p_this vlc object structure
246  * \return nothing
247  */
248 void module_LoadPlugins( vlc_object_t * p_this, bool b_cache_delete )
249 {
250 #ifdef HAVE_DYNAMIC_PLUGINS
251     vlc_mutex_lock( &module_lock );
252     if( p_module_bank->b_plugins )
253     {
254         vlc_mutex_unlock( &module_lock );
255         return;
256     }
257     p_module_bank->b_plugins = true;
258     vlc_mutex_unlock( &module_lock );
259
260     msg_Dbg( p_this, "checking plugin modules" );
261     p_module_bank->b_cache = config_GetInt( p_this, "plugins-cache" ) > 0;
262
263     if( p_module_bank->b_cache || b_cache_delete )
264         CacheLoad( p_this, p_module_bank, b_cache_delete );
265
266     /* FIXME: race - do this under the lock */
267     AllocateAllPlugins( p_this );
268 #endif
269 }
270
271 /**
272  * Checks whether a module implements a capability.
273  *
274  * \param m the module
275  * \param cap the capability to check
276  * \return TRUE if the module have the capability
277  */
278 bool module_provides( const module_t *m, const char *cap )
279 {
280     return !strcmp( m->psz_capability, cap );
281 }
282
283 /**
284  * Get the internal name of a module
285  *
286  * \param m the module
287  * \return the module name
288  */
289 const char *module_get_object( const module_t *m )
290 {
291     return m->psz_object_name;
292 }
293
294 /**
295  * Get the human-friendly name of a module.
296  *
297  * \param m the module
298  * \param long_name TRUE to have the long name of the module
299  * \return the short or long name of the module
300  */
301 const char *module_get_name( const module_t *m, bool long_name )
302 {
303     if( long_name && ( m->psz_longname != NULL) )
304         return m->psz_longname;
305
306     return m->psz_shortname ?: m->psz_object_name;
307 }
308
309 /**
310  * Get the help for a module
311  *
312  * \param m the module
313  * \return the help
314  */
315 const char *module_get_help( const module_t *m )
316 {
317     return m->psz_help;
318 }
319
320 module_t *module_hold (module_t *m)
321 {
322     vlc_hold (&m->vlc_gc_data);
323     return m;
324 }
325
326 void module_release (module_t *m)
327 {
328     vlc_release (&m->vlc_gc_data);
329 }
330
331 /**
332  * Frees the flat list of VLC modules.
333  * @param list list obtained by module_list_get()
334  * @param length number of items on the list
335  * @return nothing.
336  */
337 void module_list_free (module_t **list)
338 {
339     if (list == NULL)
340         return;
341
342     for (size_t i = 0; list[i] != NULL; i++)
343          module_release (list[i]);
344     free (list);
345 }
346
347 /**
348  * Gets the flat list of VLC modules.
349  * @param n [OUT] pointer to the number of modules or NULL
350  * @return NULL-terminated table of module pointers
351  *         (release with module_list_free()), or NULL in case of error.
352  */
353 module_t **module_list_get (size_t *n)
354 {
355     /* TODO: this whole module lookup is quite inefficient */
356     /* Remove this and improve module_need */
357     module_t **tab = NULL;
358     size_t i = 0;
359
360     assert (p_module_bank);
361     for (module_t *mod = p_module_bank->head; mod; mod = mod->next)
362     {
363          module_t **nt;
364          nt  = realloc (tab, (i + 2 + mod->submodule_count) * sizeof (*tab));
365          if (nt == NULL)
366          {
367              module_list_free (tab);
368              return NULL;
369          }
370
371          tab = nt;
372          tab[i++] = module_hold (mod);
373          for (module_t *subm = mod->submodule; subm; subm = subm->next)
374              tab[i++] = module_hold (subm);
375          tab[i] = NULL;
376     }
377     if (n != NULL)
378         *n = i;
379     return tab;
380 }
381
382 typedef struct module_list_t
383 {
384     module_t *p_module;
385     int16_t  i_score;
386     bool     b_force;
387 } module_list_t;
388
389 static int modulecmp (const void *a, const void *b)
390 {
391     const module_list_t *la = a, *lb = b;
392     /* Note that qsort() uses _ascending_ order,
393      * so the smallest module is the one with the biggest score. */
394     return lb->i_score - la->i_score;
395 }
396
397 /**
398  * module Need
399  *
400  * Return the best module function, given a capability list.
401  *
402  * If the p_this object doesn't have it's psz_object_name set, then
403  * psz_object_name will be set to the module's name, unless the user
404  * provided an alias using the "module name@alias" syntax in which case
405  * psz_object_name will be set to the alias.
406  *
407  * \param p_this the vlc object
408  * \param psz_capability list of capabilities needed
409  * \param psz_name name of the module asked
410  * \param b_strict TRUE yto use the strict mode
411  * \return the module or NULL in case of a failure
412  */
413 module_t * __module_need( vlc_object_t *p_this, const char *psz_capability,
414                           const char *psz_name, bool b_strict )
415 {
416     stats_TimerStart( p_this, "module_need()", STATS_TIMER_MODULE_NEED );
417
418     module_list_t *p_list;
419     module_t *p_module;
420     int i_shortcuts = 0;
421     char *psz_shortcuts = NULL, *psz_var = NULL, *psz_alias = NULL;
422     bool b_force_backup = p_this->b_force;
423
424     /* Deal with variables */
425     if( psz_name && psz_name[0] == '$' )
426     {
427         psz_name = psz_var = var_CreateGetString( p_this, psz_name + 1 );
428     }
429
430     /* Count how many different shortcuts were asked for */
431     if( psz_name && *psz_name )
432     {
433         char *psz_parser, *psz_last_shortcut;
434
435         /* If the user wants none, give him none. */
436         if( !strcmp( psz_name, "none" ) )
437         {
438             free( psz_var );
439             stats_TimerStop( p_this, STATS_TIMER_MODULE_NEED );
440             stats_TimerDump( p_this, STATS_TIMER_MODULE_NEED );
441             stats_TimerClean( p_this, STATS_TIMER_MODULE_NEED );
442             return NULL;
443         }
444
445         i_shortcuts++;
446         psz_shortcuts = psz_last_shortcut = strdup( psz_name );
447
448         for( psz_parser = psz_shortcuts; *psz_parser; psz_parser++ )
449         {
450             if( *psz_parser == ',' )
451             {
452                  *psz_parser = '\0';
453                  i_shortcuts++;
454                  psz_last_shortcut = psz_parser + 1;
455             }
456         }
457
458         /* Check if the user wants to override the "strict" mode */
459         if( psz_last_shortcut )
460         {
461             if( !strcmp(psz_last_shortcut, "none") )
462             {
463                 b_strict = true;
464                 i_shortcuts--;
465             }
466             else if( !strcmp(psz_last_shortcut, "any") )
467             {
468                 b_strict = false;
469                 i_shortcuts--;
470             }
471         }
472     }
473
474     /* Sort the modules and test them */
475     size_t count;
476     module_t **p_all = module_list_get (&count);
477     p_list = malloc( count * sizeof( module_list_t ) );
478     unsigned i_cpu = vlc_CPU();
479
480     /* Parse the module list for capabilities and probe each of them */
481     count = 0;
482     for (size_t i = 0; (p_module = p_all[i]) != NULL; i++)
483     {
484         bool b_shortcut_bonus = false;
485
486         /* Test that this module can do what we need */
487         if( !module_provides( p_module, psz_capability ) )
488             continue;
489         /* Test if we have the required CPU */
490         if( (p_module->i_cpu & i_cpu) != p_module->i_cpu )
491             continue;
492
493         /* If we required a shortcut, check this plugin provides it. */
494         if( i_shortcuts > 0 )
495         {
496             const char *psz_name = psz_shortcuts;
497
498             for( unsigned i_short = i_shortcuts; i_short > 0; i_short-- )
499             {
500                 for( unsigned i = 0; p_module->pp_shortcuts[i]; i++ )
501                 {
502                     char *c;
503                     if( ( c = strchr( psz_name, '@' ) )
504                         ? !strncasecmp( psz_name, p_module->pp_shortcuts[i],
505                                         c-psz_name )
506                         : !strcasecmp( psz_name, p_module->pp_shortcuts[i] ) )
507                     {
508                         /* Found it */
509                         if( c && c[1] )
510                             psz_alias = c+1;
511                         b_shortcut_bonus = true;
512                         goto found_shortcut;
513                     }
514                 }
515
516                 /* Go to the next shortcut... This is so lame! */
517                 psz_name += strlen( psz_name ) + 1;
518             }
519
520             /* If we are in "strict" mode and we couldn't
521              * find the module in the list of provided shortcuts,
522              * then kick the bastard out of here!!! */
523             if( b_strict )
524                 continue;
525         }
526         /* If we didn't require a shortcut, trash <= 0 scored plugins */
527         else if( p_module->i_score <= 0 )
528         {
529             continue;
530         }
531
532 found_shortcut:
533         /* Store this new module */
534         p_list[count].p_module = module_hold (p_module);
535         p_list[count].i_score = p_module->i_score;
536         if( b_shortcut_bonus )
537             p_list[count].i_score += 10000;
538         p_list[count].b_force = b_shortcut_bonus && b_strict;
539         count++;
540     }
541
542     /* We can release the list, interesting modules are held */
543     module_list_free (p_all);
544
545     /* Sort candidates by descending score */
546     qsort (p_list, count, sizeof (p_list[0]), modulecmp);
547 #ifdef WIN32
548     /* FIXME: Remove this hack after finding a general solution for %z's */
549     msg_Dbg( p_this, "looking for %s module: %u candidate%s", psz_capability,
550              count, count == 1 ? "" : "s" );
551 #else
552     msg_Dbg( p_this, "looking for %s module: %zu candidate%s", psz_capability,
553              count, count == 1 ? "" : "s" );
554 #endif
555
556     /* Parse the linked list and use the first successful module */
557     p_module = NULL;
558     for (size_t i = 0; (i < count) && (p_module == NULL); i++)
559     {
560         module_t *p_cand = p_list[i].p_module;
561 #ifdef HAVE_DYNAMIC_PLUGINS
562         /* Make sure the module is loaded in mem */
563         module_t *p_real = p_cand->b_submodule ? p_cand->parent : p_cand;
564
565         if( !p_real->b_builtin && !p_real->b_loaded )
566         {
567             module_t *p_new_module =
568                 AllocatePlugin( p_this, p_real->psz_filename );
569             if( p_new_module )
570             {
571                 CacheMerge( p_this, p_real, p_new_module );
572                 DeleteModule( p_module_bank, p_new_module );
573             }
574         }
575 #endif
576
577         p_this->b_force = p_list[i].b_force;
578         if( p_cand->pf_activate
579          && p_cand->pf_activate( p_this ) == VLC_SUCCESS )
580         {
581             p_module = p_cand;
582             /* Release the remaining modules */
583             while (++i < count)
584                 module_release (p_list[i].p_module);
585         }
586         else
587             module_release( p_cand );
588     }
589
590     free( p_list );
591     p_this->b_force = b_force_backup;
592
593     if( p_module != NULL )
594     {
595         msg_Dbg( p_this, "using %s module \"%s\"",
596                  psz_capability, p_module->psz_object_name );
597         if( !p_this->psz_object_name )
598         {
599             /* This assumes that p_this is the object which will be using the
600              * module. That's not always the case ... but it is in most cases.
601              */
602             if( psz_alias )
603                 p_this->psz_object_name = strdup( psz_alias );
604             else
605                 p_this->psz_object_name = strdup( p_module->psz_object_name );
606         }
607     }
608     else if( count == 0 )
609     {
610         if( !strcmp( psz_capability, "access_demux" )
611          || !strcmp( psz_capability, "stream_filter" )
612          || !strcmp( psz_capability, "vout_window" ) )
613         {
614             msg_Dbg( p_this, "no %s module matched \"%s\"",
615                 psz_capability, (psz_name && *psz_name) ? psz_name : "any" );
616         }
617         else
618         {
619             msg_Err( p_this, "no %s module matched \"%s\"",
620                  psz_capability, (psz_name && *psz_name) ? psz_name : "any" );
621
622             msg_StackSet( VLC_EGENERIC, "no %s module matched \"%s\"",
623                  psz_capability, (psz_name && *psz_name) ? psz_name : "any" );
624         }
625     }
626     else if( psz_name != NULL && *psz_name )
627     {
628         msg_Warn( p_this, "no %s module matching \"%s\" could be loaded",
629                   psz_capability, (psz_name && *psz_name) ? psz_name : "any" );
630     }
631     else
632         msg_StackSet( VLC_EGENERIC, "no suitable %s module", psz_capability );
633
634     free( psz_shortcuts );
635     free( psz_var );
636
637     stats_TimerStop( p_this, STATS_TIMER_MODULE_NEED );
638     stats_TimerDump( p_this, STATS_TIMER_MODULE_NEED );
639     stats_TimerClean( p_this, STATS_TIMER_MODULE_NEED );
640
641     /* Don't forget that the module is still locked */
642     return p_module;
643 }
644
645 /**
646  * Module unneed
647  *
648  * This function must be called by the thread that called module_need, to
649  * decrease the reference count and allow for hiding of modules.
650  * \param p_this vlc object structure
651  * \param p_module the module structure
652  * \return nothing
653  */
654 void __module_unneed( vlc_object_t * p_this, module_t * p_module )
655 {
656     /* Use the close method */
657     if( p_module->pf_deactivate )
658     {
659         p_module->pf_deactivate( p_this );
660     }
661
662     msg_Dbg( p_this, "removing module \"%s\"", p_module->psz_object_name );
663
664     module_release( p_module );
665 }
666
667 /**
668  * Get a pointer to a module_t given it's name.
669  *
670  * \param p_this vlc object structure
671  * \param psz_name the name of the module
672  * \return a pointer to the module or NULL in case of a failure
673  */
674 module_t *module_find( const char * psz_name )
675 {
676     module_t **list, *module;
677
678     list = module_list_get (NULL);
679     if (!list)
680         return NULL;
681
682     for (size_t i = 0; (module = list[i]) != NULL; i++)
683     {
684         const char *psz_module_name = module->psz_object_name;
685
686         if( psz_module_name && !strcmp( psz_module_name, psz_name ) )
687         {
688             module_hold (module);
689             break;
690         }
691     }
692     module_list_free (list);
693     return module;
694 }
695
696 /**
697  * Tell if a module exists and release it in thic case
698  *
699  * \param p_this vlc object structure
700  * \param psz_name th name of the module
701  * \return TRUE if the module exists
702  */
703 bool module_exists (const char * psz_name)
704 {
705     module_t *p_module = module_find (psz_name);
706     if( p_module )
707         module_release (p_module);
708     return p_module != NULL;
709 }
710
711 /**
712  * GetModuleNamesForCapability
713  *
714  * Return a NULL terminated array with the names of the modules
715  * that have a certain capability.
716  * Free after uses both the string and the table.
717  * \param psz_capability the capability asked
718  * \param pppsz_longname an pointer to an array of string to contain
719     the long names of the modules. If set to NULL the function don't use it.
720  * \return the NULL terminated array
721  */
722 char ** module_GetModulesNamesForCapability( const char *psz_capability,
723                                              char ***pppsz_longname )
724 {
725     size_t count = 0;
726     char **psz_ret;
727
728     module_t **list = module_list_get (NULL);
729
730     /* Do it in two passes : count the number of modules before */
731     for (size_t i = 0; list[i]; i++)
732     {
733         module_t *p_module = list[i];
734         const char *psz_module_capability = p_module->psz_capability;
735
736         if( psz_module_capability && !strcmp( psz_module_capability, psz_capability ) )
737             count++;
738     }
739
740     psz_ret = malloc( sizeof(char*) * (count+1) );
741     if( pppsz_longname )
742         *pppsz_longname = malloc( sizeof(char*) * (count+1) );
743     if( !psz_ret || ( pppsz_longname && *pppsz_longname == NULL ) )
744     {
745         free( psz_ret );
746         if( pppsz_longname )
747         {
748             free( *pppsz_longname );
749             *pppsz_longname = NULL;
750         }
751         module_list_free (list);
752         return NULL;
753     }
754
755     for (size_t i = 0, j = 0; list[i]; i++)
756     {
757         module_t *p_module = list[i];
758         const char *psz_module_capability = p_module->psz_capability;
759
760         if( psz_module_capability && !strcmp( psz_module_capability, psz_capability ) )
761         {
762             int k = -1; /* hack to handle submodules properly */
763             if( p_module->b_submodule )
764             {
765                 while( p_module->pp_shortcuts[++k] != NULL );
766                 k--;
767             }
768             psz_ret[j] = strdup( k>=0?p_module->pp_shortcuts[k]
769                                      :p_module->psz_object_name );
770             if( pppsz_longname )
771                 (*pppsz_longname)[j] = strdup( module_get_name( p_module, true ) );
772             j++;
773         }
774     }
775     psz_ret[count] = NULL;
776
777     module_list_free (list);
778
779     return psz_ret;
780 }
781
782 /**
783  * Get the configuration of a module
784  *
785  * \param module the module
786  * \param psize the size of the configuration returned
787  * \return the configuration as an array
788  */
789 module_config_t *module_config_get( const module_t *module, unsigned *restrict psize )
790 {
791     unsigned i,j;
792     unsigned size = module->confsize;
793     module_config_t *config = malloc( size * sizeof( *config ) );
794
795     assert( psize != NULL );
796     *psize = 0;
797
798     if( !config )
799         return NULL;
800
801     for( i = 0, j = 0; i < size; i++ )
802     {
803         const module_config_t *item = module->p_config + i;
804         if( item->b_internal /* internal option */
805          || item->b_unsaveable /* non-modifiable option */
806          || item->b_removed /* removed option */ )
807             continue;
808
809         memcpy( config + j, item, sizeof( *config ) );
810         j++;
811     }
812     *psize = j;
813
814     return config;
815 }
816
817 /**
818  * Release the configuration
819  *
820  * \param the configuration
821  * \return nothing
822  */
823 void module_config_free( module_config_t *config )
824 {
825     free( config );
826 }
827
828 /*****************************************************************************
829  * Following functions are local.
830  *****************************************************************************/
831
832  /*****************************************************************************
833  * copy_next_paths_token: from a PATH_SEP_CHAR (a ':' or a ';') separated paths
834  * return first path.
835  *****************************************************************************/
836 static char * copy_next_paths_token( char * paths, char ** remaining_paths )
837 {
838     char * path;
839     int i, done;
840     bool escaped = false;
841
842     assert( paths );
843
844     /* Alloc a buffer to store the path */
845     path = malloc( strlen( paths ) + 1 );
846     if( !path ) return NULL;
847
848     /* Look for PATH_SEP_CHAR (a ':' or a ';') */
849     for( i = 0, done = 0 ; paths[i]; i++ )
850     {
851         /* Take care of \\ and \: or \; escapement */
852         if( escaped )
853         {
854             escaped = false;
855             path[done++] = paths[i];
856         }
857 #ifdef WIN32
858         else if( paths[i] == '/' )
859             escaped = true;
860 #else
861         else if( paths[i] == '\\' )
862             escaped = true;
863 #endif
864         else if( paths[i] == PATH_SEP_CHAR )
865             break;
866         else
867             path[done++] = paths[i];
868     }
869     path[done++] = 0;
870
871     /* Return the remaining paths */
872     if( remaining_paths ) {
873         *remaining_paths = paths[i] ? &paths[i]+1 : NULL;
874     }
875
876     return path;
877 }
878
879 char *psz_vlcpath = NULL;
880
881 /*****************************************************************************
882  * AllocateAllPlugins: load all plugin modules we can find.
883  *****************************************************************************/
884 #ifdef HAVE_DYNAMIC_PLUGINS
885 static void AllocateAllPlugins( vlc_object_t *p_this )
886 {
887     const char *vlcpath = psz_vlcpath;
888     int count,i;
889     char * path;
890     vlc_array_t *arraypaths = vlc_array_new();
891
892     /* Contruct the special search path for system that have a relocatable
893      * executable. Set it to <vlc path>/modules and <vlc path>/plugins. */
894
895     if( vlcpath && asprintf( &path, "%s" DIR_SEP "modules", vlcpath ) != -1 )
896         vlc_array_append( arraypaths, path );
897     if( vlcpath && asprintf( &path, "%s" DIR_SEP "plugins", vlcpath ) != -1 )
898         vlc_array_append( arraypaths, path );
899 #ifndef WIN32
900     vlc_array_append( arraypaths, strdup( PLUGIN_PATH ) );
901 #endif
902
903     /* If the user provided a plugin path, we add it to the list */
904     char *userpaths = config_GetPsz( p_this, "plugin-path" );
905     char *paths_iter;
906
907     for( paths_iter = userpaths; paths_iter; )
908     {
909         path = copy_next_paths_token( paths_iter, &paths_iter );
910         if( path )
911             vlc_array_append( arraypaths, path );
912     }
913
914     count = vlc_array_count( arraypaths );
915     for( i = 0 ; i < count ; i++ )
916     {
917         path = vlc_array_item_at_index( arraypaths, i );
918         if( !path )
919             continue;
920
921         msg_Dbg( p_this, "recursively browsing `%s'", path );
922
923         /* Don't go deeper than 5 subdirectories */
924         AllocatePluginDir( p_this, path, 5 );
925
926         free( path );
927     }
928
929     vlc_array_destroy( arraypaths );
930     free( userpaths );
931 }
932
933 /*****************************************************************************
934  * AllocatePluginDir: recursively parse a directory to look for plugins
935  *****************************************************************************/
936 static void AllocatePluginDir( vlc_object_t *p_this, const char *psz_dir,
937                                int i_maxdepth )
938 {
939 /* FIXME: Needs to be ported to wide char on ALL Windows builds */
940 #ifdef WIN32
941 # undef opendir
942 # undef closedir
943 # undef readdir
944 #endif
945 #if defined( UNDER_CE ) || defined( _MSC_VER )
946 #ifdef UNDER_CE
947     wchar_t psz_wpath[MAX_PATH + 256];
948     wchar_t psz_wdir[MAX_PATH];
949 #endif
950     char psz_path[MAX_PATH + 256];
951     WIN32_FIND_DATA finddata;
952     HANDLE handle;
953     int rc;
954 #else
955     int    i_dirlen;
956     DIR *  dir;
957     struct dirent * file;
958 #endif
959     char * psz_file;
960
961     if( p_this->p_libvlc->b_die || i_maxdepth < 0 )
962     {
963         return;
964     }
965
966 #if defined( UNDER_CE ) || defined( _MSC_VER )
967 #ifdef UNDER_CE
968     MultiByteToWideChar( CP_ACP, 0, psz_dir, -1, psz_wdir, MAX_PATH );
969
970     rc = GetFileAttributes( psz_wdir );
971     if( rc<0 || !(rc&FILE_ATTRIBUTE_DIRECTORY) ) return; /* Not a directory */
972
973     /* Parse all files in the directory */
974     swprintf( psz_wpath, L"%ls\\*", psz_wdir );
975 #else
976     rc = GetFileAttributes( psz_dir );
977     if( rc<0 || !(rc&FILE_ATTRIBUTE_DIRECTORY) ) return; /* Not a directory */
978 #endif
979
980     /* Parse all files in the directory */
981     sprintf( psz_path, "%s\\*", psz_dir );
982
983 #ifdef UNDER_CE
984     handle = FindFirstFile( psz_wpath, &finddata );
985 #else
986     handle = FindFirstFile( psz_path, &finddata );
987 #endif
988     if( handle == INVALID_HANDLE_VALUE )
989     {
990         /* Empty directory */
991         return;
992     }
993
994     /* Parse the directory and try to load all files it contains. */
995     do
996     {
997 #ifdef UNDER_CE
998         unsigned int i_len = wcslen( finddata.cFileName );
999         swprintf( psz_wpath, L"%ls\\%ls", psz_wdir, finddata.cFileName );
1000         sprintf( psz_path, "%s\\%ls", psz_dir, finddata.cFileName );
1001 #else
1002         unsigned int i_len = strlen( finddata.cFileName );
1003         sprintf( psz_path, "%s\\%s", psz_dir, finddata.cFileName );
1004 #endif
1005
1006         /* Skip ".", ".." */
1007         if( !*finddata.cFileName || !strcmp( finddata.cFileName, "." )
1008          || !strcmp( finddata.cFileName, ".." ) )
1009         {
1010             if( !FindNextFile( handle, &finddata ) ) break;
1011             continue;
1012         }
1013
1014 #ifdef UNDER_CE
1015         if( GetFileAttributes( psz_wpath ) & FILE_ATTRIBUTE_DIRECTORY )
1016 #else
1017         if( GetFileAttributes( psz_path ) & FILE_ATTRIBUTE_DIRECTORY )
1018 #endif
1019         {
1020             AllocatePluginDir( p_this, psz_path, i_maxdepth - 1 );
1021         }
1022         else if( i_len > strlen( LIBEXT )
1023                   /* We only load files ending with LIBEXT */
1024                   && !strncasecmp( psz_path + strlen( psz_path)
1025                                    - strlen( LIBEXT ),
1026                                    LIBEXT, strlen( LIBEXT ) ) )
1027         {
1028             WIN32_FILE_ATTRIBUTE_DATA attrbuf;
1029             int64_t i_time = 0, i_size = 0;
1030
1031 #ifdef UNDER_CE
1032             if( GetFileAttributesEx( psz_wpath, GetFileExInfoStandard,
1033                                      &attrbuf ) )
1034 #else
1035             if( GetFileAttributesEx( psz_path, GetFileExInfoStandard,
1036                                      &attrbuf ) )
1037 #endif
1038             {
1039                 i_time = attrbuf.ftLastWriteTime.dwHighDateTime;
1040                 i_time <<= 32;
1041                 i_time |= attrbuf.ftLastWriteTime.dwLowDateTime;
1042                 i_size = attrbuf.nFileSizeHigh;
1043                 i_size <<= 32;
1044                 i_size |= attrbuf.nFileSizeLow;
1045             }
1046             psz_file = psz_path;
1047
1048             AllocatePluginFile( p_this, psz_file, i_time, i_size );
1049         }
1050     }
1051     while( !p_this->p_libvlc->b_die && FindNextFile( handle, &finddata ) );
1052
1053     /* Close the directory */
1054     FindClose( handle );
1055
1056 #else
1057     dir = opendir( psz_dir );
1058     if( !dir )
1059     {
1060         return;
1061     }
1062
1063     i_dirlen = strlen( psz_dir );
1064
1065     /* Parse the directory and try to load all files it contains. */
1066     while( !p_this->p_libvlc->b_die && ( file = readdir( dir ) ) )
1067     {
1068         struct stat statbuf;
1069         unsigned int i_len;
1070         int i_stat;
1071
1072         /* Skip ".", ".." */
1073         if( !*file->d_name || !strcmp( file->d_name, "." )
1074          || !strcmp( file->d_name, ".." ) )
1075         {
1076             continue;
1077         }
1078
1079         i_len = strlen( file->d_name );
1080         psz_file = malloc( i_dirlen + 1 + i_len + 1 );
1081         sprintf( psz_file, "%s"DIR_SEP"%s", psz_dir, file->d_name );
1082
1083         i_stat = stat( psz_file, &statbuf );
1084         if( !i_stat && statbuf.st_mode & S_IFDIR )
1085         {
1086             AllocatePluginDir( p_this, psz_file, i_maxdepth - 1 );
1087         }
1088         else if( i_len > strlen( LIBEXT )
1089                   /* We only load files ending with LIBEXT */
1090                   && !strncasecmp( file->d_name + i_len - strlen( LIBEXT ),
1091                                    LIBEXT, strlen( LIBEXT ) ) )
1092         {
1093             int64_t i_time = 0, i_size = 0;
1094
1095             if( !i_stat )
1096             {
1097                 i_time = statbuf.st_mtime;
1098                 i_size = statbuf.st_size;
1099             }
1100
1101             AllocatePluginFile( p_this, psz_file, i_time, i_size );
1102         }
1103
1104         free( psz_file );
1105     }
1106
1107     /* Close the directory */
1108     closedir( dir );
1109
1110 #endif
1111 }
1112
1113 /*****************************************************************************
1114  * AllocatePluginFile: load a module into memory and initialize it.
1115  *****************************************************************************
1116  * This function loads a dynamically loadable module and allocates a structure
1117  * for its information data. The module can then be handled by module_need
1118  * and module_unneed. It can be removed by DeleteModule.
1119  *****************************************************************************/
1120 static int AllocatePluginFile( vlc_object_t * p_this, char * psz_file,
1121                                int64_t i_file_time, int64_t i_file_size )
1122 {
1123     module_t * p_module = NULL;
1124     module_cache_t *p_cache_entry = NULL;
1125
1126     /*
1127      * Check our plugins cache first then load plugin if needed
1128      */
1129     p_cache_entry =
1130         CacheFind( p_module_bank, psz_file, i_file_time, i_file_size );
1131
1132     if( !p_cache_entry )
1133     {
1134         p_module = AllocatePlugin( p_this, psz_file );
1135     }
1136     else
1137     {
1138         /* If junk dll, don't try to load it */
1139         if( p_cache_entry->b_junk )
1140         {
1141             p_module = NULL;
1142         }
1143         else
1144         {
1145             module_config_t *p_item = NULL, *p_end = NULL;
1146
1147             p_module = p_cache_entry->p_module;
1148             p_module->b_loaded = false;
1149
1150             /* For now we force loading if the module's config contains
1151              * callbacks or actions.
1152              * Could be optimized by adding an API call.*/
1153             for( p_item = p_module->p_config, p_end = p_item + p_module->confsize;
1154                  p_item < p_end; p_item++ )
1155             {
1156                 if( p_item->pf_callback || p_item->i_action )
1157                 {
1158                     p_module = AllocatePlugin( p_this, psz_file );
1159                     break;
1160                 }
1161             }
1162             if( p_module == p_cache_entry->p_module )
1163                 p_cache_entry->b_used = true;
1164         }
1165     }
1166
1167     if( p_module )
1168     {
1169         /* Everything worked fine !
1170          * The module is ready to be added to the list. */
1171         p_module->b_builtin = false;
1172
1173         /* msg_Dbg( p_this, "plugin \"%s\", %s",
1174                     p_module->psz_object_name, p_module->psz_longname ); */
1175         p_module->next = p_module_bank->head;
1176         p_module_bank->head = p_module;
1177
1178         if( !p_module_bank->b_cache )
1179             return 0;
1180
1181 #define p_bank p_module_bank
1182         /* Add entry to cache */
1183         p_bank->pp_cache =
1184             realloc( p_bank->pp_cache, (p_bank->i_cache + 1) * sizeof(void *) );
1185         p_bank->pp_cache[p_bank->i_cache] = malloc( sizeof(module_cache_t) );
1186         if( !p_bank->pp_cache[p_bank->i_cache] )
1187             return -1;
1188         p_bank->pp_cache[p_bank->i_cache]->psz_file = strdup( psz_file );
1189         p_bank->pp_cache[p_bank->i_cache]->i_time = i_file_time;
1190         p_bank->pp_cache[p_bank->i_cache]->i_size = i_file_size;
1191         p_bank->pp_cache[p_bank->i_cache]->b_junk = p_module ? 0 : 1;
1192         p_bank->pp_cache[p_bank->i_cache]->b_used = true;
1193         p_bank->pp_cache[p_bank->i_cache]->p_module = p_module;
1194         p_bank->i_cache++;
1195 #undef p_bank
1196     }
1197
1198     return p_module ? 0 : -1;
1199 }
1200
1201 /*****************************************************************************
1202  * AllocatePlugin: load a module into memory and initialize it.
1203  *****************************************************************************
1204  * This function loads a dynamically loadable module and allocates a structure
1205  * for its information data. The module can then be handled by module_need
1206  * and module_unneed. It can be removed by DeleteModule.
1207  *****************************************************************************/
1208 static module_t * AllocatePlugin( vlc_object_t * p_this, char * psz_file )
1209 {
1210     module_t * p_module = NULL;
1211     module_handle_t handle;
1212
1213     if( module_Load( p_this, psz_file, &handle ) )
1214         return NULL;
1215
1216     /* Now that we have successfully loaded the module, we can
1217      * allocate a structure for it */
1218     p_module = vlc_module_create( p_this );
1219     if( p_module == NULL )
1220     {
1221         module_Unload( handle );
1222         return NULL;
1223     }
1224
1225     /* We need to fill these since they may be needed by module_Call() */
1226     p_module->psz_filename = psz_file;
1227     p_module->handle = handle;
1228     p_module->b_loaded = true;
1229
1230     /* Initialize the module: fill p_module, default config */
1231     if( module_Call( p_this, p_module ) != 0 )
1232     {
1233         /* We couldn't call module_init() */
1234         module_release( p_module );
1235         module_Unload( handle );
1236         return NULL;
1237     }
1238
1239     DupModule( p_module );
1240     p_module->psz_filename = strdup( p_module->psz_filename );
1241
1242     /* Everything worked fine ! The module is ready to be added to the list. */
1243     p_module->b_builtin = false;
1244
1245     return p_module;
1246 }
1247
1248 /*****************************************************************************
1249  * DupModule: make a plugin module standalone.
1250  *****************************************************************************
1251  * This function duplicates all strings in the module, so that the dynamic
1252  * object can be unloaded. It acts recursively on submodules.
1253  *****************************************************************************/
1254 static void DupModule( module_t *p_module )
1255 {
1256     char **pp_shortcut;
1257
1258     for( pp_shortcut = p_module->pp_shortcuts ; *pp_shortcut ; pp_shortcut++ )
1259     {
1260         *pp_shortcut = strdup( *pp_shortcut );
1261     }
1262
1263     /* We strdup() these entries so that they are still valid when the
1264      * module is unloaded. */
1265     p_module->psz_capability = strdup( p_module->psz_capability );
1266     p_module->psz_shortname = p_module->psz_shortname ?
1267                                  strdup( p_module->psz_shortname ) : NULL;
1268     p_module->psz_longname = strdup( p_module->psz_longname );
1269     p_module->psz_help = p_module->psz_help ? strdup( p_module->psz_help )
1270                                             : NULL;
1271
1272     for (module_t *subm = p_module->submodule; subm; subm = subm->next)
1273         DupModule (subm);
1274 }
1275
1276 /*****************************************************************************
1277  * UndupModule: free a duplicated module.
1278  *****************************************************************************
1279  * This function frees the allocations done in DupModule().
1280  *****************************************************************************/
1281 static void UndupModule( module_t *p_module )
1282 {
1283     char **pp_shortcut;
1284
1285     for (module_t *subm = p_module->submodule; subm; subm = subm->next)
1286         UndupModule (subm);
1287
1288     for( pp_shortcut = p_module->pp_shortcuts ; *pp_shortcut ; pp_shortcut++ )
1289     {
1290         free( *pp_shortcut );
1291     }
1292
1293     free( p_module->psz_capability );
1294     FREENULL( p_module->psz_shortname );
1295     free( p_module->psz_longname );
1296     FREENULL( p_module->psz_help );
1297 }
1298
1299 #endif /* HAVE_DYNAMIC_PLUGINS */
1300
1301 /*****************************************************************************
1302  * AllocateBuiltinModule: initialize a builtin module.
1303  *****************************************************************************
1304  * This function registers a builtin module and allocates a structure
1305  * for its information data. The module can then be handled by module_need
1306  * and module_unneed. It can be removed by DeleteModule.
1307  *****************************************************************************/
1308 static int AllocateBuiltinModule( vlc_object_t * p_this,
1309                                   int ( *pf_entry ) ( module_t * ) )
1310 {
1311     module_t * p_module;
1312
1313     /* Now that we have successfully loaded the module, we can
1314      * allocate a structure for it */
1315     p_module = vlc_module_create( p_this );
1316     if( p_module == NULL )
1317         return -1;
1318
1319     /* Initialize the module : fill p_module->psz_object_name, etc. */
1320     if( pf_entry( p_module ) != 0 )
1321     {
1322         /* With a well-written module we shouldn't have to print an
1323          * additional error message here, but just make sure. */
1324         msg_Err( p_this, "failed calling entry point in builtin module" );
1325         module_release( p_module );
1326         return -1;
1327     }
1328
1329     /* Everything worked fine ! The module is ready to be added to the list. */
1330     p_module->b_builtin = true;
1331     /* LOCK */
1332     p_module->next = p_module_bank->head;
1333     p_module_bank->head = p_module;
1334     /* UNLOCK */
1335
1336     /* msg_Dbg( p_this, "builtin \"%s\", %s",
1337                 p_module->psz_object_name, p_module->psz_longname ); */
1338
1339     return 0;
1340 }
1341
1342 /*****************************************************************************
1343  * DeleteModule: delete a module and its structure.
1344  *****************************************************************************
1345  * This function can only be called if the module isn't being used.
1346  *****************************************************************************/
1347 static void DeleteModule( module_bank_t *p_bank, module_t * p_module )
1348 {
1349     assert( p_module );
1350
1351     /* Unlist the module (if it is in the list) */
1352     module_t **pp_self = &p_bank->head;
1353     while (*pp_self != NULL && *pp_self != p_module)
1354         pp_self = &((*pp_self)->next);
1355     if (*pp_self)
1356         *pp_self = p_module->next;
1357
1358     /* We free the structures that we strdup()ed in Allocate*Module(). */
1359 #ifdef HAVE_DYNAMIC_PLUGINS
1360     if( !p_module->b_builtin )
1361     {
1362         if( p_module->b_loaded && p_module->b_unloadable )
1363         {
1364             module_Unload( p_module->handle );
1365         }
1366         UndupModule( p_module );
1367         free( p_module->psz_filename );
1368     }
1369 #endif
1370
1371     /* Free and detach the object's children */
1372     while (p_module->submodule)
1373     {
1374         module_t *submodule = p_module->submodule;
1375         p_module->submodule = submodule->next;
1376         module_release (submodule);
1377     }
1378
1379     config_Free( p_module );
1380     module_release( p_module );
1381 }