modules.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:43k
源码类别:

midi

开发平台:

Unix_Linux

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