plugin: Stop plugin symbol name at first .
[platform/upstream/gstreamer.git] / gst / gstplugin.c
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *                    2000 Wim Taymans <wtay@chello.be>
4  *
5  * gstplugin.c: Plugin subsystem for loading elements, types, and libs
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
20  * Boston, MA 02110-1301, USA.
21  */
22
23 /**
24  * SECTION:gstplugin
25  * @title: GstPlugin
26  * @short_description: Container for features loaded from a shared object module
27  * @see_also: #GstPluginFeature, #GstElementFactory
28  *
29  * GStreamer is extensible, so #GstElement instances can be loaded at runtime.
30  * A plugin system can provide one or more of the basic
31  * <application>GStreamer</application> #GstPluginFeature subclasses.
32  *
33  * A plugin should export a symbol <symbol>gst_plugin_desc</symbol> that is a
34  * struct of type #GstPluginDesc.
35  * the plugin loader will check the version of the core library the plugin was
36  * linked against and will create a new #GstPlugin. It will then call the
37  * #GstPluginInitFunc function that was provided in the
38  * <symbol>gst_plugin_desc</symbol>.
39  *
40  * Once you have a handle to a #GstPlugin (e.g. from the #GstRegistry), you
41  * can add any object that subclasses #GstPluginFeature.
42  *
43  * Usually plugins are always automatically loaded so you don't need to call
44  * gst_plugin_load() explicitly to bring it into memory. There are options to
45  * statically link plugins to an app or even use GStreamer without a plugin
46  * repository in which case gst_plugin_load() can be needed to bring the plugin
47  * into memory.
48  */
49
50 #ifdef HAVE_CONFIG_H
51 #include "config.h"
52 #endif
53
54 #include "gst_private.h"
55
56 #include <glib/gstdio.h>
57 #include <sys/types.h>
58 #ifdef HAVE_DIRENT_H
59 #include <dirent.h>
60 #endif
61 #ifdef HAVE_UNISTD_H
62 #include <unistd.h>
63 #endif
64 #include <signal.h>
65 #include <errno.h>
66 #include <string.h>
67
68 #include "glib-compat-private.h"
69
70 #include <gst/gst.h>
71
72 #define GST_CAT_DEFAULT GST_CAT_PLUGIN_LOADING
73
74 static guint _num_static_plugins;       /* 0    */
75 static GstPluginDesc *_static_plugins;  /* NULL */
76 static gboolean _gst_plugin_inited;
77 static gchar **_plugin_loading_whitelist;       /* NULL */
78
79 /* static variables for segfault handling of plugin loading */
80 static char *_gst_plugin_fault_handler_filename = NULL;
81
82 /* list of valid licenses.
83  * One of these must be specified or the plugin won't be loaded
84  * Please file a bug to request any additional license be added.
85  *
86  * GPL: http://www.gnu.org/copyleft/gpl.html
87  * LGPL: http://www.gnu.org/copyleft/lesser.html
88  * QPL: http://www.trolltech.com/licenses/qpl.html
89  * MPL: http://www.opensource.org/licenses/mozilla1.1.php
90  * MIT/X11: http://www.opensource.org/licenses/mit-license.php
91  * 3-clause BSD: http://www.opensource.org/licenses/bsd-license.php
92  */
93 static const gchar valid_licenses[] = "LGPL\000"        /* GNU Lesser General Public License */
94     "GPL\000"                   /* GNU General Public License */
95     "QPL\000"                   /* Trolltech Qt Public License */
96     "GPL/QPL\000"               /* Combi-license of GPL + QPL */
97     "MPL\000"                   /* MPL 1.1 license */
98     "BSD\000"                   /* 3-clause BSD license */
99     "MIT/X11\000"               /* MIT/X11 license */
100     "Proprietary\000"           /* Proprietary license */
101     GST_LICENSE_UNKNOWN;        /* some other license */
102
103 static const guint8 valid_licenses_idx[] = { 0, 5, 9, 13, 21, 25, 29, 37, 49 };
104
105 static GstPlugin *gst_plugin_register_func (GstPlugin * plugin,
106     const GstPluginDesc * desc, gpointer user_data);
107 static void gst_plugin_desc_copy (GstPluginDesc * dest,
108     const GstPluginDesc * src);
109
110 static void gst_plugin_ext_dep_free (GstPluginDep * dep);
111
112 G_DEFINE_TYPE (GstPlugin, gst_plugin, GST_TYPE_OBJECT);
113
114 static void
115 gst_plugin_init (GstPlugin * plugin)
116 {
117   plugin->priv =
118       G_TYPE_INSTANCE_GET_PRIVATE (plugin, GST_TYPE_PLUGIN, GstPluginPrivate);
119 }
120
121 static void
122 gst_plugin_finalize (GObject * object)
123 {
124   GstPlugin *plugin = GST_PLUGIN_CAST (object);
125
126   GST_DEBUG ("finalizing plugin %" GST_PTR_FORMAT, plugin);
127
128   /* FIXME: make registry add a weak ref instead */
129 #if 0
130   GstRegistry *registry = gst_registry_get ();
131   GList *g;
132   for (g = registry->plugins; g; g = g->next) {
133     if (g->data == (gpointer) plugin) {
134       g_warning ("removing plugin that is still in registry");
135     }
136   }
137 #endif
138
139   g_free (plugin->filename);
140   g_free (plugin->basename);
141
142   g_list_foreach (plugin->priv->deps, (GFunc) gst_plugin_ext_dep_free, NULL);
143   g_list_free (plugin->priv->deps);
144   plugin->priv->deps = NULL;
145
146   if (plugin->priv->cache_data) {
147     gst_structure_free (plugin->priv->cache_data);
148   }
149
150   G_OBJECT_CLASS (gst_plugin_parent_class)->finalize (object);
151 }
152
153 static void
154 gst_plugin_class_init (GstPluginClass * klass)
155 {
156   G_OBJECT_CLASS (klass)->finalize = gst_plugin_finalize;
157
158   g_type_class_add_private (klass, sizeof (GstPluginPrivate));
159 }
160
161 GQuark
162 gst_plugin_error_quark (void)
163 {
164   static GQuark quark = 0;
165
166   if (!quark)
167     quark = g_quark_from_static_string ("gst_plugin_error");
168   return quark;
169 }
170
171 /**
172  * gst_plugin_register_static:
173  * @major_version: the major version number of the GStreamer core that the
174  *     plugin was compiled for, you can just use GST_VERSION_MAJOR here
175  * @minor_version: the minor version number of the GStreamer core that the
176  *     plugin was compiled for, you can just use GST_VERSION_MINOR here
177  * @name: a unique name of the plugin (ideally prefixed with an application- or
178  *     library-specific namespace prefix in order to avoid name conflicts in
179  *     case a similar plugin with the same name ever gets added to GStreamer)
180  * @description: description of the plugin
181  * @init_func: (scope call): pointer to the init function of this plugin.
182  * @version: version string of the plugin
183  * @license: effective license of plugin. Must be one of the approved licenses
184  *     (see #GstPluginDesc above) or the plugin will not be registered.
185  * @source: source module plugin belongs to
186  * @package: shipped package plugin belongs to
187  * @origin: URL to provider of plugin
188  *
189  * Registers a static plugin, ie. a plugin which is private to an application
190  * or library and contained within the application or library (as opposed to
191  * being shipped as a separate module file).
192  *
193  * You must make sure that GStreamer has been initialised (with gst_init() or
194  * via gst_init_get_option_group()) before calling this function.
195  *
196  * Returns: %TRUE if the plugin was registered correctly, otherwise %FALSE.
197  */
198 gboolean
199 gst_plugin_register_static (gint major_version, gint minor_version,
200     const gchar * name, const gchar * description, GstPluginInitFunc init_func,
201     const gchar * version, const gchar * license, const gchar * source,
202     const gchar * package, const gchar * origin)
203 {
204   GstPluginDesc desc = { major_version, minor_version, name, description,
205     init_func, version, license, source, package, origin, NULL,
206   };
207   GstPlugin *plugin;
208   gboolean res = FALSE;
209
210   g_return_val_if_fail (name != NULL, FALSE);
211   g_return_val_if_fail (description != NULL, FALSE);
212   g_return_val_if_fail (init_func != NULL, FALSE);
213   g_return_val_if_fail (version != NULL, FALSE);
214   g_return_val_if_fail (license != NULL, FALSE);
215   g_return_val_if_fail (source != NULL, FALSE);
216   g_return_val_if_fail (package != NULL, FALSE);
217   g_return_val_if_fail (origin != NULL, FALSE);
218
219   /* make sure gst_init() has been called */
220   g_return_val_if_fail (_gst_plugin_inited != FALSE, FALSE);
221
222   GST_LOG ("attempting to load static plugin \"%s\" now...", name);
223   plugin = g_object_new (GST_TYPE_PLUGIN, NULL);
224   if (gst_plugin_register_func (plugin, &desc, NULL) != NULL) {
225     GST_INFO ("registered static plugin \"%s\"", name);
226     res = gst_registry_add_plugin (gst_registry_get (), plugin);
227     GST_INFO ("added static plugin \"%s\", result: %d", name, res);
228   }
229   return res;
230 }
231
232 /**
233  * gst_plugin_register_static_full:
234  * @major_version: the major version number of the GStreamer core that the
235  *     plugin was compiled for, you can just use GST_VERSION_MAJOR here
236  * @minor_version: the minor version number of the GStreamer core that the
237  *     plugin was compiled for, you can just use GST_VERSION_MINOR here
238  * @name: a unique name of the plugin (ideally prefixed with an application- or
239  *     library-specific namespace prefix in order to avoid name conflicts in
240  *     case a similar plugin with the same name ever gets added to GStreamer)
241  * @description: description of the plugin
242  * @init_full_func: (scope call): pointer to the init function with user data
243  *     of this plugin.
244  * @version: version string of the plugin
245  * @license: effective license of plugin. Must be one of the approved licenses
246  *     (see #GstPluginDesc above) or the plugin will not be registered.
247  * @source: source module plugin belongs to
248  * @package: shipped package plugin belongs to
249  * @origin: URL to provider of plugin
250  * @user_data: gpointer to user data
251  *
252  * Registers a static plugin, ie. a plugin which is private to an application
253  * or library and contained within the application or library (as opposed to
254  * being shipped as a separate module file) with a #GstPluginInitFullFunc
255  * which allows user data to be passed to the callback function (useful
256  * for bindings).
257  *
258  * You must make sure that GStreamer has been initialised (with gst_init() or
259  * via gst_init_get_option_group()) before calling this function.
260  *
261  * Returns: %TRUE if the plugin was registered correctly, otherwise %FALSE.
262  */
263 gboolean
264 gst_plugin_register_static_full (gint major_version, gint minor_version,
265     const gchar * name, const gchar * description,
266     GstPluginInitFullFunc init_full_func, const gchar * version,
267     const gchar * license, const gchar * source, const gchar * package,
268     const gchar * origin, gpointer user_data)
269 {
270   GstPluginDesc desc = { major_version, minor_version, name, description,
271     (GstPluginInitFunc) init_full_func, version, license, source, package,
272     origin, NULL,
273   };
274   GstPlugin *plugin;
275   gboolean res = FALSE;
276
277   g_return_val_if_fail (name != NULL, FALSE);
278   g_return_val_if_fail (description != NULL, FALSE);
279   g_return_val_if_fail (init_full_func != NULL, FALSE);
280   g_return_val_if_fail (version != NULL, FALSE);
281   g_return_val_if_fail (license != NULL, FALSE);
282   g_return_val_if_fail (source != NULL, FALSE);
283   g_return_val_if_fail (package != NULL, FALSE);
284   g_return_val_if_fail (origin != NULL, FALSE);
285
286   /* make sure gst_init() has been called */
287   g_return_val_if_fail (_gst_plugin_inited != FALSE, FALSE);
288
289   GST_LOG ("attempting to load static plugin \"%s\" now...", name);
290   plugin = g_object_new (GST_TYPE_PLUGIN, NULL);
291   if (gst_plugin_register_func (plugin, &desc, user_data) != NULL) {
292     GST_INFO ("registered static plugin \"%s\"", name);
293     res = gst_registry_add_plugin (gst_registry_get (), plugin);
294     GST_INFO ("added static plugin \"%s\", result: %d", name, res);
295   }
296   return res;
297 }
298
299 void
300 _priv_gst_plugin_initialize (void)
301 {
302   const gchar *whitelist;
303   guint i;
304
305   _gst_plugin_inited = TRUE;
306
307   whitelist = g_getenv ("GST_PLUGIN_LOADING_WHITELIST");
308   if (whitelist != NULL && *whitelist != '\0') {
309     _plugin_loading_whitelist = g_strsplit (whitelist,
310         G_SEARCHPATH_SEPARATOR_S, -1);
311     for (i = 0; _plugin_loading_whitelist[i] != NULL; ++i) {
312       GST_INFO ("plugins whitelist entry: %s", _plugin_loading_whitelist[i]);
313     }
314   }
315
316   /* now register all static plugins */
317   GST_INFO ("registering %u static plugins", _num_static_plugins);
318   for (i = 0; i < _num_static_plugins; ++i) {
319     gst_plugin_register_static (_static_plugins[i].major_version,
320         _static_plugins[i].minor_version, _static_plugins[i].name,
321         _static_plugins[i].description, _static_plugins[i].plugin_init,
322         _static_plugins[i].version, _static_plugins[i].license,
323         _static_plugins[i].source, _static_plugins[i].package,
324         _static_plugins[i].origin);
325   }
326
327   if (_static_plugins) {
328     free (_static_plugins);
329     _static_plugins = NULL;
330     _num_static_plugins = 0;
331   }
332 }
333
334 /* Whitelist entry format:
335  *
336  *   plugin1,plugin2@pathprefix or
337  *   plugin1,plugin2@* or just
338  *   plugin1,plugin2 or
339  *   source-package@pathprefix or
340  *   source-package@* or just
341  *   source-package
342  *
343  * ie. the bit before the path will be checked against both the plugin
344  * name and the plugin's source package name, to keep the format simple.
345  */
346 static gboolean
347 gst_plugin_desc_matches_whitelist_entry (const GstPluginDesc * desc,
348     const gchar * filename, const gchar * pattern)
349 {
350   const gchar *sep;
351   gboolean ret = FALSE;
352   gchar *name;
353
354   GST_LOG ("Whitelist pattern '%s', plugin: %s of %s@%s", pattern, desc->name,
355       desc->source, GST_STR_NULL (filename));
356
357   /* do we have a path prefix? */
358   sep = strchr (pattern, '@');
359   if (sep != NULL && strcmp (sep, "@*") != 0 && strcmp (sep, "@") != 0) {
360     /* paths are not canonicalised or treated with realpath() here. This
361      * should be good enough for our use case, since we just use the paths
362      * autotools uses, and those will be constructed from the same prefix. */
363     if (filename != NULL && !g_str_has_prefix (filename, sep + 1))
364       return FALSE;
365
366     GST_LOG ("%s matches path prefix %s", GST_STR_NULL (filename), sep + 1);
367   }
368
369   if (sep != NULL) {
370     name = g_strndup (pattern, (gsize) (sep - pattern));
371   } else {
372     name = g_strdup (pattern);
373   }
374
375   g_strstrip (name);
376   if (!g_ascii_isalnum (*name)) {
377     GST_WARNING ("Invalid whitelist pattern: %s", pattern);
378     goto done;
379   }
380
381   /* now check plugin names / source package name */
382   if (strchr (name, ',') == NULL) {
383     /* only a single name: either a plugin name or the source package name */
384     ret = (strcmp (desc->source, name) == 0 || strcmp (desc->name, name) == 0);
385   } else {
386     gchar **n, **names;
387
388     /* multiple names: assume these are plugin names */
389     names = g_strsplit (name, ",", -1);
390     for (n = names; n != NULL && *n != NULL; ++n) {
391       g_strstrip (*n);
392       if (strcmp (desc->name, *n) == 0) {
393         ret = TRUE;
394         break;
395       }
396     }
397     g_strfreev (names);
398   }
399
400   GST_LOG ("plugin / source package name match: %d", ret);
401
402 done:
403
404   g_free (name);
405   return ret;
406 }
407
408 gboolean
409 priv_gst_plugin_desc_is_whitelisted (const GstPluginDesc * desc,
410     const gchar * filename)
411 {
412   gchar **entry;
413
414   if (_plugin_loading_whitelist == NULL)
415     return TRUE;
416
417   for (entry = _plugin_loading_whitelist; *entry != NULL; ++entry) {
418     if (gst_plugin_desc_matches_whitelist_entry (desc, filename, *entry)) {
419       GST_LOG ("Plugin %s is in whitelist", filename);
420       return TRUE;
421     }
422   }
423
424   GST_LOG ("Plugin %s (package %s, file %s) not in whitelist", desc->name,
425       desc->source, filename);
426   return FALSE;
427 }
428
429 gboolean
430 priv_gst_plugin_loading_have_whitelist (void)
431 {
432   return (_plugin_loading_whitelist != NULL);
433 }
434
435 guint32
436 priv_gst_plugin_loading_get_whitelist_hash (void)
437 {
438   guint32 hash = 0;
439
440   if (_plugin_loading_whitelist != NULL) {
441     gchar **w;
442
443     for (w = _plugin_loading_whitelist; *w != NULL; ++w)
444       hash ^= g_str_hash (*w);
445   }
446
447   return hash;
448 }
449
450 /* this function could be extended to check if the plugin license matches the
451  * applications license (would require the app to register its license somehow).
452  * We'll wait for someone who's interested in it to code it :)
453  */
454 static gboolean
455 gst_plugin_check_license (const gchar * license)
456 {
457   gint i;
458
459   for (i = 0; i < G_N_ELEMENTS (valid_licenses_idx); ++i) {
460     if (strcmp (license, valid_licenses + valid_licenses_idx[i]) == 0)
461       return TRUE;
462   }
463   return FALSE;
464 }
465
466 static gboolean
467 gst_plugin_check_version (gint major, gint minor)
468 {
469   /* return NULL if the major and minor version numbers are not compatible */
470   /* with ours. */
471   if (major != GST_VERSION_MAJOR || minor > GST_VERSION_MINOR)
472     return FALSE;
473
474   return TRUE;
475 }
476
477 static GstPlugin *
478 gst_plugin_register_func (GstPlugin * plugin, const GstPluginDesc * desc,
479     gpointer user_data)
480 {
481   if (!gst_plugin_check_version (desc->major_version, desc->minor_version)) {
482     if (GST_CAT_DEFAULT)
483       GST_WARNING ("plugin \"%s\" has incompatible version "
484           "(plugin: %d.%d, gst: %d,%d), not loading",
485           GST_STR_NULL (plugin->filename), desc->major_version,
486           desc->minor_version, GST_VERSION_MAJOR, GST_VERSION_MINOR);
487     return NULL;
488   }
489
490   if (!desc->license || !desc->description || !desc->source ||
491       !desc->package || !desc->origin) {
492     if (GST_CAT_DEFAULT)
493       GST_WARNING ("plugin \"%s\" has missing detail in GstPluginDesc, not "
494           "loading", GST_STR_NULL (plugin->filename));
495     return NULL;
496   }
497
498   if (!gst_plugin_check_license (desc->license)) {
499     if (GST_CAT_DEFAULT)
500       GST_WARNING ("plugin \"%s\" has invalid license \"%s\", not loading",
501           GST_STR_NULL (plugin->filename), desc->license);
502     return NULL;
503   }
504
505   if (GST_CAT_DEFAULT)
506     GST_LOG ("plugin \"%s\" looks good", GST_STR_NULL (plugin->filename));
507
508   gst_plugin_desc_copy (&plugin->desc, desc);
509
510   /* make resident so we're really sure it never gets unloaded again.
511    * Theoretically this is not needed, but practically it doesn't hurt.
512    * And we're rather safe than sorry. */
513   if (plugin->module)
514     g_module_make_resident (plugin->module);
515
516   if (user_data) {
517     if (!(((GstPluginInitFullFunc) (desc->plugin_init)) (plugin, user_data))) {
518       if (GST_CAT_DEFAULT)
519         GST_WARNING ("plugin \"%s\" failed to initialise",
520             GST_STR_NULL (plugin->filename));
521       return NULL;
522     }
523   } else {
524     if (!((desc->plugin_init) (plugin))) {
525       if (GST_CAT_DEFAULT)
526         GST_WARNING ("plugin \"%s\" failed to initialise",
527             GST_STR_NULL (plugin->filename));
528       return NULL;
529     }
530   }
531
532   if (GST_CAT_DEFAULT)
533     GST_LOG ("plugin \"%s\" initialised", GST_STR_NULL (plugin->filename));
534
535   return plugin;
536 }
537
538 #ifdef HAVE_SIGACTION
539 static struct sigaction oldaction;
540 static gboolean _gst_plugin_fault_handler_is_setup = FALSE;
541
542 /*
543  * _gst_plugin_fault_handler_restore:
544  * segfault handler restorer
545  */
546 static void
547 _gst_plugin_fault_handler_restore (void)
548 {
549   if (!_gst_plugin_fault_handler_is_setup)
550     return;
551
552   _gst_plugin_fault_handler_is_setup = FALSE;
553
554   sigaction (SIGSEGV, &oldaction, NULL);
555 }
556
557 /*
558  * _gst_plugin_fault_handler_sighandler:
559  * segfault handler implementation
560  */
561 static void
562 _gst_plugin_fault_handler_sighandler (int signum)
563 {
564   /* We need to restore the fault handler or we'll keep getting it */
565   _gst_plugin_fault_handler_restore ();
566
567   switch (signum) {
568     case SIGSEGV:
569       g_print ("\nERROR: ");
570       g_print ("Caught a segmentation fault while loading plugin file:\n");
571       g_print ("%s\n\n", _gst_plugin_fault_handler_filename);
572       g_print ("Please either:\n");
573       g_print ("- remove it and restart.\n");
574       g_print
575           ("- run with --gst-disable-segtrap --gst-disable-registry-fork and debug.\n");
576       exit (-1);
577       break;
578     default:
579       g_print ("Caught unhandled signal on plugin loading\n");
580       break;
581   }
582 }
583
584 /*
585  * _gst_plugin_fault_handler_setup:
586  * sets up the segfault handler
587  */
588 static void
589 _gst_plugin_fault_handler_setup (void)
590 {
591   struct sigaction action;
592
593   /* if asked to leave segfaults alone, just return */
594   if (!gst_segtrap_is_enabled ())
595     return;
596
597   if (_gst_plugin_fault_handler_is_setup)
598     return;
599
600   _gst_plugin_fault_handler_is_setup = TRUE;
601
602   memset (&action, 0, sizeof (action));
603   action.sa_handler = _gst_plugin_fault_handler_sighandler;
604
605   sigaction (SIGSEGV, &action, &oldaction);
606 }
607 #else /* !HAVE_SIGACTION */
608 static void
609 _gst_plugin_fault_handler_restore (void)
610 {
611 }
612
613 static void
614 _gst_plugin_fault_handler_setup (void)
615 {
616 }
617 #endif /* HAVE_SIGACTION */
618
619 /* g_time_val_from_iso8601() doesn't do quite what we want */
620 static gboolean
621 check_release_datetime (const gchar * date_time)
622 {
623   guint64 val;
624
625   /* we require YYYY-MM-DD or YYYY-MM-DDTHH:MMZ format */
626   if (!g_ascii_isdigit (*date_time))
627     return FALSE;
628
629   val = g_ascii_strtoull (date_time, (gchar **) & date_time, 10);
630   if (val < 2000 || val > 2100 || *date_time != '-')
631     return FALSE;
632
633   val = g_ascii_strtoull (date_time + 1, (gchar **) & date_time, 10);
634   if (val == 0 || val > 12 || *date_time != '-')
635     return FALSE;
636
637   val = g_ascii_strtoull (date_time + 1, (gchar **) & date_time, 10);
638   if (val == 0 || val > 32)
639     return FALSE;
640
641   /* end of string or date/time separator + HH:MMZ */
642   if (*date_time == 'T' || *date_time == ' ') {
643     val = g_ascii_strtoull (date_time + 1, (gchar **) & date_time, 10);
644     if (val > 24 || *date_time != ':')
645       return FALSE;
646
647     val = g_ascii_strtoull (date_time + 1, (gchar **) & date_time, 10);
648     if (val > 59 || *date_time != 'Z')
649       return FALSE;
650
651     ++date_time;
652   }
653
654   return (*date_time == '\0');
655 }
656
657 static GMutex gst_plugin_loading_mutex;
658
659 #define CHECK_PLUGIN_DESC_FIELD(desc,field,fn)                               \
660   if (G_UNLIKELY ((desc)->field == NULL || *(desc)->field == '\0')) {        \
661     g_warning ("Plugin description for '%s' has no valid %s field", fn, G_STRINGIFY (field)); \
662     g_set_error (error, GST_PLUGIN_ERROR, GST_PLUGIN_ERROR_MODULE, \
663         "Plugin %s has invalid plugin description field '%s'", \
664         filename, G_STRINGIFY (field)); \
665     goto return_error;                                                       \
666   }
667
668 /**
669  * gst_plugin_load_file:
670  * @filename: the plugin filename to load
671  * @error: pointer to a %NULL-valued GError
672  *
673  * Loads the given plugin and refs it.  Caller needs to unref after use.
674  *
675  * Returns: (transfer full): a reference to the existing loaded GstPlugin, a
676  * reference to the newly-loaded GstPlugin, or %NULL if an error occurred.
677  */
678 GstPlugin *
679 gst_plugin_load_file (const gchar * filename, GError ** error)
680 {
681   return _priv_gst_plugin_load_file_for_registry (filename, NULL, error);
682 }
683
684 static gchar *
685 extract_symname (const char *filename)
686 {
687   gchar *bname, *name, *symname;
688   const gchar *dot;
689   gsize prefix_len = 0, len;
690   int i;
691
692   bname = g_path_get_basename (filename);
693   for (i = 0; bname[i]; ++i) {
694     if (bname[i] == '-')
695       bname[i] = '_';
696   }
697
698   if (g_str_has_prefix (bname, "libgst"))
699     prefix_len += 6;
700   else if (g_str_has_prefix (bname, "lib"))
701     prefix_len += 3;
702
703   dot = g_utf8_strchr (bname, -1, '.');
704   if (dot)
705     len = dot - bname - prefix_len;
706   else
707     len = g_utf8_strlen (bname + prefix_len, -1);
708
709   name = g_strndup (bname + prefix_len, len);
710   g_free (bname);
711
712   symname = g_strconcat ("gst_plugin_", name, "_get_desc", NULL);
713   g_free (name);
714
715   return symname;
716 }
717
718 /* Note: The return value is (transfer full) although we work with floating
719  * references here. If a new plugin instance is created, it is always sinked
720  * in the registry first and a new reference is returned
721  */
722 GstPlugin *
723 _priv_gst_plugin_load_file_for_registry (const gchar * filename,
724     GstRegistry * registry, GError ** error)
725 {
726   const GstPluginDesc *desc;
727   GstPlugin *plugin;
728   gchar *symname;
729   GModule *module;
730   gboolean ret;
731   gpointer ptr;
732   GStatBuf file_status;
733   gboolean new_plugin = TRUE;
734   GModuleFlags flags;
735
736   g_return_val_if_fail (filename != NULL, NULL);
737
738   if (registry == NULL)
739     registry = gst_registry_get ();
740
741   g_mutex_lock (&gst_plugin_loading_mutex);
742
743   plugin = gst_registry_lookup (registry, filename);
744   if (plugin) {
745     if (plugin->module) {
746       /* already loaded */
747       g_mutex_unlock (&gst_plugin_loading_mutex);
748       return plugin;
749     } else {
750       /* load plugin and update fields */
751       new_plugin = FALSE;
752     }
753   }
754
755   GST_CAT_DEBUG (GST_CAT_PLUGIN_LOADING, "attempt to load plugin \"%s\"",
756       filename);
757
758   if (!g_module_supported ()) {
759     GST_CAT_DEBUG (GST_CAT_PLUGIN_LOADING, "module loading not supported");
760     g_set_error (error,
761         GST_PLUGIN_ERROR,
762         GST_PLUGIN_ERROR_MODULE, "Dynamic loading not supported");
763     goto return_error;
764   }
765
766   if (g_stat (filename, &file_status)) {
767     GST_CAT_DEBUG (GST_CAT_PLUGIN_LOADING, "problem accessing file");
768     g_set_error (error,
769         GST_PLUGIN_ERROR,
770         GST_PLUGIN_ERROR_MODULE, "Problem accessing file %s: %s", filename,
771         g_strerror (errno));
772     goto return_error;
773   }
774
775   flags = G_MODULE_BIND_LOCAL;
776   /* libgstpython.so is the gst-python plugin loader. It needs to be loaded with
777    * G_MODULE_BIND_LAZY.
778    *
779    * Ideally there should be a generic way for plugins to specify that they
780    * need to be loaded with _LAZY.
781    * */
782   if (strstr (filename, "libgstpython"))
783     flags |= G_MODULE_BIND_LAZY;
784
785   module = g_module_open (filename, flags);
786   if (module == NULL) {
787     GST_CAT_WARNING (GST_CAT_PLUGIN_LOADING, "module_open failed: %s",
788         g_module_error ());
789     g_set_error (error,
790         GST_PLUGIN_ERROR, GST_PLUGIN_ERROR_MODULE, "Opening module failed: %s",
791         g_module_error ());
792     /* If we failed to open the shared object, then it's probably because a
793      * plugin is linked against the wrong libraries. Print out an easy-to-see
794      * message in this case. */
795     g_warning ("Failed to load plugin '%s': %s", filename, g_module_error ());
796     goto return_error;
797   }
798
799   symname = extract_symname (filename);
800   ret = g_module_symbol (module, symname, &ptr);
801
802   if (ret) {
803     GstPluginDesc *(*get_desc) (void) = ptr;
804     ptr = get_desc ();
805   } else {
806     GST_DEBUG ("Could not find symbol '%s', falling back to gst_plugin_desc",
807         symname);
808     ret = g_module_symbol (module, "gst_plugin_desc", &ptr);
809   }
810
811   g_free (symname);
812
813   if (!ret) {
814     GST_DEBUG ("Could not find plugin entry point in \"%s\"", filename);
815     g_set_error (error,
816         GST_PLUGIN_ERROR,
817         GST_PLUGIN_ERROR_MODULE,
818         "File \"%s\" is not a GStreamer plugin", filename);
819     g_module_close (module);
820     goto return_error;
821   }
822
823   desc = (const GstPluginDesc *) ptr;
824
825   if (priv_gst_plugin_loading_have_whitelist () &&
826       !priv_gst_plugin_desc_is_whitelisted (desc, filename)) {
827     GST_INFO ("Whitelist specified and plugin not in whitelist, not loading: "
828         "name=%s, package=%s, file=%s", desc->name, desc->source, filename);
829     g_set_error (error, GST_PLUGIN_ERROR, GST_PLUGIN_ERROR_MODULE,
830         "Not loading plugin file \"%s\", not in whitelist", filename);
831     g_module_close (module);
832     goto return_error;
833   }
834
835   if (new_plugin) {
836     plugin = g_object_new (GST_TYPE_PLUGIN, NULL);
837     plugin->file_mtime = file_status.st_mtime;
838     plugin->file_size = file_status.st_size;
839     plugin->filename = g_strdup (filename);
840     plugin->basename = g_path_get_basename (filename);
841   }
842
843   plugin->module = module;
844
845   if (new_plugin) {
846     /* check plugin description: complain about bad values and fail */
847     CHECK_PLUGIN_DESC_FIELD (desc, name, filename);
848     CHECK_PLUGIN_DESC_FIELD (desc, description, filename);
849     CHECK_PLUGIN_DESC_FIELD (desc, version, filename);
850     CHECK_PLUGIN_DESC_FIELD (desc, license, filename);
851     CHECK_PLUGIN_DESC_FIELD (desc, source, filename);
852     CHECK_PLUGIN_DESC_FIELD (desc, package, filename);
853     CHECK_PLUGIN_DESC_FIELD (desc, origin, filename);
854
855     if (desc->name != NULL && desc->name[0] == '"') {
856       g_warning ("Invalid plugin name '%s' - fix your GST_PLUGIN_DEFINE "
857           "(remove quotes around plugin name)", desc->name);
858     }
859
860     if (desc->release_datetime != NULL &&
861         !check_release_datetime (desc->release_datetime)) {
862       g_warning ("GstPluginDesc for '%s' has invalid datetime '%s'",
863           filename, desc->release_datetime);
864       g_set_error (error, GST_PLUGIN_ERROR, GST_PLUGIN_ERROR_MODULE,
865           "Plugin %s has invalid plugin description field 'release_datetime'",
866           filename);
867       goto return_error;
868     }
869   }
870
871   GST_LOG ("Plugin %p for file \"%s\" prepared, calling entry function...",
872       plugin, filename);
873
874   /* this is where we load the actual .so, so let's trap SIGSEGV */
875   _gst_plugin_fault_handler_setup ();
876   _gst_plugin_fault_handler_filename = plugin->filename;
877
878   GST_LOG ("Plugin %p for file \"%s\" prepared, registering...",
879       plugin, filename);
880
881   if (!gst_plugin_register_func (plugin, desc, NULL)) {
882     /* remove signal handler */
883     _gst_plugin_fault_handler_restore ();
884     GST_DEBUG ("gst_plugin_register_func failed for plugin \"%s\"", filename);
885     /* plugin == NULL */
886     g_set_error (error,
887         GST_PLUGIN_ERROR,
888         GST_PLUGIN_ERROR_MODULE,
889         "File \"%s\" appears to be a GStreamer plugin, but it failed to initialize",
890         filename);
891     goto return_error;
892   }
893
894   /* remove signal handler */
895   _gst_plugin_fault_handler_restore ();
896   _gst_plugin_fault_handler_filename = NULL;
897   GST_INFO ("plugin \"%s\" loaded", plugin->filename);
898
899   if (new_plugin) {
900     gst_object_ref (plugin);
901     gst_registry_add_plugin (registry, plugin);
902   }
903
904   g_mutex_unlock (&gst_plugin_loading_mutex);
905   return plugin;
906
907 return_error:
908   {
909     if (plugin)
910       gst_object_unref (plugin);
911     g_mutex_unlock (&gst_plugin_loading_mutex);
912     return NULL;
913   }
914 }
915
916 static void
917 gst_plugin_desc_copy (GstPluginDesc * dest, const GstPluginDesc * src)
918 {
919   dest->major_version = src->major_version;
920   dest->minor_version = src->minor_version;
921   dest->name = g_intern_string (src->name);
922   dest->description = g_intern_string (src->description);
923   dest->plugin_init = src->plugin_init;
924   dest->version = g_intern_string (src->version);
925   dest->license = g_intern_string (src->license);
926   dest->source = g_intern_string (src->source);
927   dest->package = g_intern_string (src->package);
928   dest->origin = g_intern_string (src->origin);
929   dest->release_datetime = g_intern_string (src->release_datetime);
930 }
931
932 /**
933  * gst_plugin_get_name:
934  * @plugin: plugin to get the name of
935  *
936  * Get the short name of the plugin
937  *
938  * Returns: the name of the plugin
939  */
940 const gchar *
941 gst_plugin_get_name (GstPlugin * plugin)
942 {
943   g_return_val_if_fail (plugin != NULL, NULL);
944
945   return plugin->desc.name;
946 }
947
948 /**
949  * gst_plugin_get_description:
950  * @plugin: plugin to get long name of
951  *
952  * Get the long descriptive name of the plugin
953  *
954  * Returns: the long name of the plugin
955  */
956 const gchar *
957 gst_plugin_get_description (GstPlugin * plugin)
958 {
959   g_return_val_if_fail (plugin != NULL, NULL);
960
961   return plugin->desc.description;
962 }
963
964 /**
965  * gst_plugin_get_filename:
966  * @plugin: plugin to get the filename of
967  *
968  * get the filename of the plugin
969  *
970  * Returns: the filename of the plugin
971  */
972 const gchar *
973 gst_plugin_get_filename (GstPlugin * plugin)
974 {
975   g_return_val_if_fail (plugin != NULL, NULL);
976
977   return plugin->filename;
978 }
979
980 /**
981  * gst_plugin_get_version:
982  * @plugin: plugin to get the version of
983  *
984  * get the version of the plugin
985  *
986  * Returns: the version of the plugin
987  */
988 const gchar *
989 gst_plugin_get_version (GstPlugin * plugin)
990 {
991   g_return_val_if_fail (plugin != NULL, NULL);
992
993   return plugin->desc.version;
994 }
995
996 /**
997  * gst_plugin_get_license:
998  * @plugin: plugin to get the license of
999  *
1000  * get the license of the plugin
1001  *
1002  * Returns: the license of the plugin
1003  */
1004 const gchar *
1005 gst_plugin_get_license (GstPlugin * plugin)
1006 {
1007   g_return_val_if_fail (plugin != NULL, NULL);
1008
1009   return plugin->desc.license;
1010 }
1011
1012 /**
1013  * gst_plugin_get_source:
1014  * @plugin: plugin to get the source of
1015  *
1016  * get the source module the plugin belongs to.
1017  *
1018  * Returns: the source of the plugin
1019  */
1020 const gchar *
1021 gst_plugin_get_source (GstPlugin * plugin)
1022 {
1023   g_return_val_if_fail (plugin != NULL, NULL);
1024
1025   return plugin->desc.source;
1026 }
1027
1028 /**
1029  * gst_plugin_get_package:
1030  * @plugin: plugin to get the package of
1031  *
1032  * get the package the plugin belongs to.
1033  *
1034  * Returns: the package of the plugin
1035  */
1036 const gchar *
1037 gst_plugin_get_package (GstPlugin * plugin)
1038 {
1039   g_return_val_if_fail (plugin != NULL, NULL);
1040
1041   return plugin->desc.package;
1042 }
1043
1044 /**
1045  * gst_plugin_get_origin:
1046  * @plugin: plugin to get the origin of
1047  *
1048  * get the URL where the plugin comes from
1049  *
1050  * Returns: the origin of the plugin
1051  */
1052 const gchar *
1053 gst_plugin_get_origin (GstPlugin * plugin)
1054 {
1055   g_return_val_if_fail (plugin != NULL, NULL);
1056
1057   return plugin->desc.origin;
1058 }
1059
1060 /**
1061  * gst_plugin_get_release_date_string:
1062  * @plugin: plugin to get the release date of
1063  *
1064  * Get the release date (and possibly time) in form of a string, if available.
1065  *
1066  * For normal GStreamer plugin releases this will usually just be a date in
1067  * the form of "YYYY-MM-DD", while pre-releases and builds from git may contain
1068  * a time component after the date as well, in which case the string will be
1069  * formatted like "YYYY-MM-DDTHH:MMZ" (e.g. "2012-04-30T09:30Z").
1070  *
1071  * There may be plugins that do not have a valid release date set on them.
1072  *
1073  * Returns: (nullable): the date string of the plugin, or %NULL if not
1074  * available.
1075  */
1076 const gchar *
1077 gst_plugin_get_release_date_string (GstPlugin * plugin)
1078 {
1079   g_return_val_if_fail (plugin != NULL, NULL);
1080
1081   return plugin->desc.release_datetime;
1082 }
1083
1084 /**
1085  * gst_plugin_is_loaded:
1086  * @plugin: plugin to query
1087  *
1088  * queries if the plugin is loaded into memory
1089  *
1090  * Returns: %TRUE is loaded, %FALSE otherwise
1091  */
1092 gboolean
1093 gst_plugin_is_loaded (GstPlugin * plugin)
1094 {
1095   g_return_val_if_fail (plugin != NULL, FALSE);
1096
1097   return (plugin->module != NULL || plugin->filename == NULL);
1098 }
1099
1100 /**
1101  * gst_plugin_get_cache_data:
1102  * @plugin: a plugin
1103  *
1104  * Gets the plugin specific data cache. If it is %NULL there is no cached data
1105  * stored. This is the case when the registry is getting rebuilt.
1106  *
1107  * Returns: (transfer none) (nullable): The cached data as a
1108  * #GstStructure or %NULL.
1109  */
1110 const GstStructure *
1111 gst_plugin_get_cache_data (GstPlugin * plugin)
1112 {
1113   g_return_val_if_fail (GST_IS_PLUGIN (plugin), NULL);
1114
1115   return plugin->priv->cache_data;
1116 }
1117
1118 /**
1119  * gst_plugin_set_cache_data:
1120  * @plugin: a plugin
1121  * @cache_data: (transfer full): a structure containing the data to cache
1122  *
1123  * Adds plugin specific data to cache. Passes the ownership of the structure to
1124  * the @plugin.
1125  *
1126  * The cache is flushed every time the registry is rebuilt.
1127  */
1128 void
1129 gst_plugin_set_cache_data (GstPlugin * plugin, GstStructure * cache_data)
1130 {
1131   g_return_if_fail (GST_IS_PLUGIN (plugin));
1132   g_return_if_fail (GST_IS_STRUCTURE (cache_data));
1133
1134   if (plugin->priv->cache_data) {
1135     gst_structure_free (plugin->priv->cache_data);
1136   }
1137   plugin->priv->cache_data = cache_data;
1138 }
1139
1140 #if 0
1141 /**
1142  * gst_plugin_feature_list:
1143  * @plugin: plugin to query
1144  * @filter: the filter to use
1145  * @first: only return first match
1146  * @user_data: user data passed to the filter function
1147  *
1148  * Runs a filter against all plugin features and returns a GList with
1149  * the results. If the first flag is set, only the first match is
1150  * returned (as a list with a single object).
1151  *
1152  * Returns: a GList of features, g_list_free after use.
1153  */
1154 GList *
1155 gst_plugin_feature_filter (GstPlugin * plugin,
1156     GstPluginFeatureFilter filter, gboolean first, gpointer user_data)
1157 {
1158   GList *list;
1159   GList *g;
1160
1161   list = gst_filter_run (plugin->features, (GstFilterFunc) filter, first,
1162       user_data);
1163   for (g = list; g; g = g->next) {
1164     gst_object_ref (plugin);
1165   }
1166
1167   return list;
1168 }
1169
1170 typedef struct
1171 {
1172   GstPluginFeatureFilter filter;
1173   gboolean first;
1174   gpointer user_data;
1175   GList *result;
1176 }
1177 FeatureFilterData;
1178
1179 static gboolean
1180 _feature_filter (GstPlugin * plugin, gpointer user_data)
1181 {
1182   GList *result;
1183   FeatureFilterData *data = (FeatureFilterData *) user_data;
1184
1185   result = gst_plugin_feature_filter (plugin, data->filter, data->first,
1186       data->user_data);
1187   if (result) {
1188     data->result = g_list_concat (data->result, result);
1189     return TRUE;
1190   }
1191   return FALSE;
1192 }
1193
1194 /**
1195  * gst_plugin_list_feature_filter:
1196  * @list: a #GList of plugins to query
1197  * @filter: the filter function to use
1198  * @first: only return first match
1199  * @user_data: user data passed to the filter function
1200  *
1201  * Runs a filter against all plugin features of the plugins in the given
1202  * list and returns a GList with the results.
1203  * If the first flag is set, only the first match is
1204  * returned (as a list with a single object).
1205  *
1206  * Returns: a GList of features, g_list_free after use.
1207  */
1208 GList *
1209 gst_plugin_list_feature_filter (GList * list,
1210     GstPluginFeatureFilter filter, gboolean first, gpointer user_data)
1211 {
1212   FeatureFilterData data;
1213   GList *result;
1214
1215   data.filter = filter;
1216   data.first = first;
1217   data.user_data = user_data;
1218   data.result = NULL;
1219
1220   result = gst_filter_run (list, (GstFilterFunc) _feature_filter, first, &data);
1221   g_list_free (result);
1222
1223   return data.result;
1224 }
1225
1226 /**
1227  * gst_plugin_find_feature:
1228  * @plugin: plugin to get the feature from
1229  * @name: The name of the feature to find
1230  * @type: The type of the feature to find
1231  *
1232  * Find a feature of the given name and type in the given plugin.
1233  *
1234  * Returns: a GstPluginFeature or %NULL if the feature was not found.
1235  */
1236 GstPluginFeature *
1237 gst_plugin_find_feature (GstPlugin * plugin, const gchar * name, GType type)
1238 {
1239   GList *walk;
1240   GstPluginFeature *result = NULL;
1241   GstTypeNameData data;
1242
1243   g_return_val_if_fail (name != NULL, NULL);
1244
1245   data.type = type;
1246   data.name = name;
1247
1248   walk = gst_filter_run (plugin->features,
1249       (GstFilterFunc) gst_plugin_feature_type_name_filter, TRUE, &data);
1250
1251   if (walk) {
1252     result = GST_PLUGIN_FEATURE (walk->data);
1253
1254     gst_object_ref (result);
1255     gst_plugin_feature_list_free (walk);
1256   }
1257
1258   return result;
1259 }
1260 #endif
1261
1262 #if 0
1263 static gboolean
1264 gst_plugin_feature_name_filter (GstPluginFeature * feature, const gchar * name)
1265 {
1266   return !strcmp (name, GST_PLUGIN_FEATURE_NAME (feature));
1267 }
1268 #endif
1269
1270 #if 0
1271 /**
1272  * gst_plugin_find_feature_by_name:
1273  * @plugin: plugin to get the feature from
1274  * @name: The name of the feature to find
1275  *
1276  * Find a feature of the given name in the given plugin.
1277  *
1278  * Returns: a GstPluginFeature or %NULL if the feature was not found.
1279  */
1280 GstPluginFeature *
1281 gst_plugin_find_feature_by_name (GstPlugin * plugin, const gchar * name)
1282 {
1283   GList *walk;
1284   GstPluginFeature *result = NULL;
1285
1286   g_return_val_if_fail (name != NULL, NULL);
1287
1288   walk = gst_filter_run (plugin->features,
1289       (GstFilterFunc) gst_plugin_feature_name_filter, TRUE, (void *) name);
1290
1291   if (walk) {
1292     result = GST_PLUGIN_FEATURE (walk->data);
1293
1294     gst_object_ref (result);
1295     gst_plugin_feature_list_free (walk);
1296   }
1297
1298   return result;
1299 }
1300 #endif
1301
1302 /**
1303  * gst_plugin_load_by_name:
1304  * @name: name of plugin to load
1305  *
1306  * Load the named plugin. Refs the plugin.
1307  *
1308  * Returns: (transfer full): a reference to a loaded plugin, or %NULL on error.
1309  */
1310 GstPlugin *
1311 gst_plugin_load_by_name (const gchar * name)
1312 {
1313   GstPlugin *plugin, *newplugin;
1314   GError *error = NULL;
1315
1316   GST_DEBUG ("looking up plugin %s in default registry", name);
1317   plugin = gst_registry_find_plugin (gst_registry_get (), name);
1318   if (plugin) {
1319     GST_DEBUG ("loading plugin %s from file %s", name, plugin->filename);
1320     newplugin = gst_plugin_load_file (plugin->filename, &error);
1321     gst_object_unref (plugin);
1322
1323     if (!newplugin) {
1324       GST_WARNING ("load_plugin error: %s", error->message);
1325       g_error_free (error);
1326       return NULL;
1327     }
1328     /* newplugin was reffed by load_file */
1329     return newplugin;
1330   }
1331
1332   GST_DEBUG ("Could not find plugin %s in registry", name);
1333   return NULL;
1334 }
1335
1336 /**
1337  * gst_plugin_load:
1338  * @plugin: (transfer none): plugin to load
1339  *
1340  * Loads @plugin. Note that the *return value* is the loaded plugin; @plugin is
1341  * untouched. The normal use pattern of this function goes like this:
1342  *
1343  * |[
1344  * GstPlugin *loaded_plugin;
1345  * loaded_plugin = gst_plugin_load (plugin);
1346  * // presumably, we're no longer interested in the potentially-unloaded plugin
1347  * gst_object_unref (plugin);
1348  * plugin = loaded_plugin;
1349  * ]|
1350  *
1351  * Returns: (transfer full): a reference to a loaded plugin, or %NULL on error.
1352  */
1353 GstPlugin *
1354 gst_plugin_load (GstPlugin * plugin)
1355 {
1356   GError *error = NULL;
1357   GstPlugin *newplugin;
1358
1359   if (gst_plugin_is_loaded (plugin)) {
1360     return plugin;
1361   }
1362
1363   if (!(newplugin = gst_plugin_load_file (plugin->filename, &error)))
1364     goto load_error;
1365
1366   return newplugin;
1367
1368 load_error:
1369   {
1370     GST_WARNING ("load_plugin error: %s", error->message);
1371     g_error_free (error);
1372     return NULL;
1373   }
1374 }
1375
1376 /**
1377  * gst_plugin_list_free:
1378  * @list: (transfer full) (element-type Gst.Plugin): list of #GstPlugin
1379  *
1380  * Unrefs each member of @list, then frees the list.
1381  */
1382 void
1383 gst_plugin_list_free (GList * list)
1384 {
1385   GList *g;
1386
1387   for (g = list; g; g = g->next) {
1388     gst_object_unref (GST_PLUGIN_CAST (g->data));
1389   }
1390   g_list_free (list);
1391 }
1392
1393 /* ===== plugin dependencies ===== */
1394
1395 /* Scenarios:
1396  * ENV + xyz     where ENV can contain multiple values separated by SEPARATOR
1397  *               xyz may be "" (if ENV contains path to file rather than dir)
1398  * ENV + *xyz   same as above, but xyz acts as suffix filter
1399  * ENV + xyz*   same as above, but xyz acts as prefix filter (is this needed?)
1400  * ENV + *xyz*  same as above, but xyz acts as strstr filter (is this needed?)
1401  * 
1402  * same as above, with additional paths hard-coded at compile-time:
1403  *   - only check paths + ... if ENV is not set or yields not paths
1404  *   - always check paths + ... in addition to ENV
1405  *
1406  * When user specifies set of environment variables, he/she may also use e.g.
1407  * "HOME/.mystuff/plugins", and we'll expand the content of $HOME with the
1408  * remainder 
1409  */
1410
1411 /* we store in registry:
1412  *  sets of:
1413  *   { 
1414  *     - environment variables (array of strings)
1415  *     - last hash of env variable contents (uint) (so we can avoid doing stats
1416  *       if one of the env vars has changed; premature optimisation galore)
1417  *     - hard-coded paths (array of strings)
1418  *     - xyz filename/suffix/prefix strings (array of strings)
1419  *     - flags (int)
1420  *     - last hash of file/dir stats (int)
1421  *   }
1422  *   (= struct GstPluginDep)
1423  */
1424
1425 static guint
1426 gst_plugin_ext_dep_get_env_vars_hash (GstPlugin * plugin, GstPluginDep * dep)
1427 {
1428   gchar **e;
1429   guint hash;
1430
1431   /* there's no deeper logic to what we do here; all we want to know (when
1432    * checking if the plugin needs to be rescanned) is whether the content of
1433    * one of the environment variables in the list is different from when it
1434    * was last scanned */
1435   hash = 0;
1436   for (e = dep->env_vars; e != NULL && *e != NULL; ++e) {
1437     const gchar *val;
1438     gchar env_var[256];
1439
1440     /* order matters: "val",NULL needs to yield a different hash than
1441      * NULL,"val", so do a shift here whether the var is set or not */
1442     hash = hash << 5;
1443
1444     /* want environment variable at beginning of string */
1445     if (!g_ascii_isalnum (**e)) {
1446       GST_WARNING_OBJECT (plugin, "string prefix is not a valid environment "
1447           "variable string: %s", *e);
1448       continue;
1449     }
1450
1451     /* user is allowed to specify e.g. "HOME/.pitivi/plugins" */
1452     g_strlcpy (env_var, *e, sizeof (env_var));
1453     g_strdelimit (env_var, "/\\", '\0');
1454
1455     if ((val = g_getenv (env_var)))
1456       hash += g_str_hash (val);
1457   }
1458
1459   return hash;
1460 }
1461
1462 gboolean
1463 _priv_plugin_deps_env_vars_changed (GstPlugin * plugin)
1464 {
1465   GList *l;
1466
1467   for (l = plugin->priv->deps; l != NULL; l = l->next) {
1468     GstPluginDep *dep = l->data;
1469
1470     if (dep->env_hash != gst_plugin_ext_dep_get_env_vars_hash (plugin, dep))
1471       return TRUE;
1472   }
1473
1474   return FALSE;
1475 }
1476
1477 static void
1478 gst_plugin_ext_dep_extract_env_vars_paths (GstPlugin * plugin,
1479     GstPluginDep * dep, GQueue * paths)
1480 {
1481   gchar **evars;
1482
1483   for (evars = dep->env_vars; evars != NULL && *evars != NULL; ++evars) {
1484     const gchar *e;
1485     gchar **components;
1486
1487     /* want environment variable at beginning of string */
1488     if (!g_ascii_isalnum (**evars)) {
1489       GST_WARNING_OBJECT (plugin, "string prefix is not a valid environment "
1490           "variable string: %s", *evars);
1491       continue;
1492     }
1493
1494     /* user is allowed to specify e.g. "HOME/.pitivi/plugins", which we want to
1495      * split into the env_var name component and the path component */
1496     components = g_strsplit_set (*evars, "/\\", 2);
1497     g_assert (components != NULL);
1498
1499     e = g_getenv (components[0]);
1500     GST_LOG_OBJECT (plugin, "expanding %s = '%s' (path suffix: %s)",
1501         components[0], GST_STR_NULL (e), GST_STR_NULL (components[1]));
1502
1503     if (components[1] != NULL) {
1504       g_strdelimit (components[1], "/\\", G_DIR_SEPARATOR);
1505     }
1506
1507     if (e != NULL && *e != '\0') {
1508       gchar **arr;
1509       guint i;
1510
1511       arr = g_strsplit (e, G_SEARCHPATH_SEPARATOR_S, -1);
1512
1513       for (i = 0; arr != NULL && arr[i] != NULL; ++i) {
1514         gchar *full_path;
1515
1516         if (!g_path_is_absolute (arr[i])) {
1517           GST_INFO_OBJECT (plugin, "ignoring environment variable content '%s'"
1518               ": either not an absolute path or not a path at all", arr[i]);
1519           continue;
1520         }
1521
1522         if (components[1] != NULL) {
1523           full_path = g_build_filename (arr[i], components[1], NULL);
1524         } else {
1525           full_path = g_strdup (arr[i]);
1526         }
1527
1528         if (!g_queue_find_custom (paths, full_path, (GCompareFunc) strcmp)) {
1529           GST_LOG_OBJECT (plugin, "path: '%s'", full_path);
1530           g_queue_push_tail (paths, full_path);
1531           full_path = NULL;
1532         } else {
1533           GST_LOG_OBJECT (plugin, "path: '%s' (duplicate,ignoring)", full_path);
1534           g_free (full_path);
1535         }
1536       }
1537
1538       g_strfreev (arr);
1539     }
1540
1541     g_strfreev (components);
1542   }
1543
1544   GST_LOG_OBJECT (plugin, "Extracted %d paths from environment", paths->length);
1545 }
1546
1547 static guint
1548 gst_plugin_ext_dep_get_hash_from_stat_entry (GStatBuf * s)
1549 {
1550 #ifdef S_IFBLK
1551   if (!(s->st_mode & (S_IFDIR | S_IFREG | S_IFBLK | S_IFCHR)))
1552 #else
1553   /* MSVC does not have S_IFBLK */
1554   if (!(s->st_mode & (S_IFDIR | S_IFREG | S_IFCHR)))
1555 #endif
1556     return (guint) - 1;
1557
1558   /* completely random formula */
1559   return ((s->st_size << 3) + (s->st_mtime << 5)) ^ s->st_ctime;
1560 }
1561
1562 static gboolean
1563 gst_plugin_ext_dep_direntry_matches (GstPlugin * plugin, const gchar * entry,
1564     const gchar ** filenames, GstPluginDependencyFlags flags)
1565 {
1566   /* no filenames specified, match all entries for now (could probably
1567    * optimise by just taking the dir stat hash or so) */
1568   if (filenames == NULL || *filenames == NULL || **filenames == '\0')
1569     return TRUE;
1570
1571   while (*filenames != NULL) {
1572     /* suffix match? */
1573     if (((flags & GST_PLUGIN_DEPENDENCY_FLAG_FILE_NAME_IS_SUFFIX)) &&
1574         g_str_has_suffix (entry, *filenames)) {
1575       return TRUE;
1576     } else if (((flags & GST_PLUGIN_DEPENDENCY_FLAG_FILE_NAME_IS_PREFIX)) &&
1577         g_str_has_prefix (entry, *filenames)) {
1578       return TRUE;
1579       /* else it's an exact match that's needed */
1580     } else if (strcmp (entry, *filenames) == 0) {
1581       return TRUE;
1582     }
1583     GST_LOG ("%s does not match %s, flags=0x%04x", entry, *filenames, flags);
1584     ++filenames;
1585   }
1586   return FALSE;
1587 }
1588
1589 static guint
1590 gst_plugin_ext_dep_scan_dir_and_match_names (GstPlugin * plugin,
1591     const gchar * path, const gchar ** filenames,
1592     GstPluginDependencyFlags flags, int depth)
1593 {
1594   const gchar *entry;
1595   gboolean recurse_dirs;
1596   GError *err = NULL;
1597   GDir *dir;
1598   guint hash = 0;
1599
1600   recurse_dirs = ! !(flags & GST_PLUGIN_DEPENDENCY_FLAG_RECURSE);
1601
1602   dir = g_dir_open (path, 0, &err);
1603   if (dir == NULL) {
1604     GST_DEBUG_OBJECT (plugin, "g_dir_open(%s) failed: %s", path, err->message);
1605     g_error_free (err);
1606     return (guint) - 1;
1607   }
1608
1609   /* FIXME: we're assuming here that we always get the directory entries in
1610    * the same order, and not in a random order */
1611   while ((entry = g_dir_read_name (dir))) {
1612     gboolean have_match;
1613     GStatBuf s;
1614     gchar *full_path;
1615     guint fhash;
1616
1617     have_match =
1618         gst_plugin_ext_dep_direntry_matches (plugin, entry, filenames, flags);
1619
1620     /* avoid the stat if possible */
1621     if (!have_match && !recurse_dirs)
1622       continue;
1623
1624     full_path = g_build_filename (path, entry, NULL);
1625     if (g_stat (full_path, &s) < 0) {
1626       fhash = (guint) - 1;
1627       GST_LOG_OBJECT (plugin, "stat: %s (error: %s)", full_path,
1628           g_strerror (errno));
1629     } else if (have_match) {
1630       fhash = gst_plugin_ext_dep_get_hash_from_stat_entry (&s);
1631       GST_LOG_OBJECT (plugin, "stat: %s (result: %u)", full_path, fhash);
1632     } else if ((s.st_mode & (S_IFDIR))) {
1633       fhash = gst_plugin_ext_dep_scan_dir_and_match_names (plugin, full_path,
1634           filenames, flags, depth + 1);
1635     } else {
1636       /* it's not a name match, we want to recurse, but it's not a directory */
1637       g_free (full_path);
1638       continue;
1639     }
1640
1641     hash = hash + fhash;
1642     g_free (full_path);
1643   }
1644
1645   g_dir_close (dir);
1646   return hash;
1647 }
1648
1649 static guint
1650 gst_plugin_ext_dep_scan_path_with_filenames (GstPlugin * plugin,
1651     const gchar * path, const gchar ** filenames,
1652     GstPluginDependencyFlags flags)
1653 {
1654   const gchar *empty_filenames[] = { "", NULL };
1655   gboolean recurse_into_dirs, partial_names = FALSE;
1656   guint i, hash = 0;
1657
1658   /* to avoid special-casing below (FIXME?) */
1659   if (filenames == NULL || *filenames == NULL)
1660     filenames = empty_filenames;
1661
1662   recurse_into_dirs = ! !(flags & GST_PLUGIN_DEPENDENCY_FLAG_RECURSE);
1663
1664   if ((flags & GST_PLUGIN_DEPENDENCY_FLAG_FILE_NAME_IS_SUFFIX) ||
1665       (flags & GST_PLUGIN_DEPENDENCY_FLAG_FILE_NAME_IS_PREFIX))
1666     partial_names = TRUE;
1667
1668   /* if we can construct the exact paths to check with the data we have, just
1669    * stat them one by one; this is more efficient than opening the directory
1670    * and going through each entry to see if it matches one of our filenames. */
1671   if (!recurse_into_dirs && !partial_names) {
1672     for (i = 0; filenames[i] != NULL; ++i) {
1673       GStatBuf s;
1674       gchar *full_path;
1675       guint fhash;
1676
1677       full_path = g_build_filename (path, filenames[i], NULL);
1678       if (g_stat (full_path, &s) < 0) {
1679         fhash = (guint) - 1;
1680         GST_LOG_OBJECT (plugin, "stat: %s (error: %s)", full_path,
1681             g_strerror (errno));
1682       } else {
1683         fhash = gst_plugin_ext_dep_get_hash_from_stat_entry (&s);
1684         GST_LOG_OBJECT (plugin, "stat: %s (result: %08x)", full_path, fhash);
1685       }
1686       hash += fhash;
1687       g_free (full_path);
1688     }
1689   } else {
1690     hash = gst_plugin_ext_dep_scan_dir_and_match_names (plugin, path,
1691         filenames, flags, 0);
1692   }
1693
1694   return hash;
1695 }
1696
1697 static guint
1698 gst_plugin_ext_dep_get_stat_hash (GstPlugin * plugin, GstPluginDep * dep)
1699 {
1700   gboolean paths_are_default_only;
1701   GQueue scan_paths = G_QUEUE_INIT;
1702   guint scan_hash = 0;
1703   gchar *path;
1704
1705   GST_LOG_OBJECT (plugin, "start");
1706
1707   paths_are_default_only =
1708       dep->flags & GST_PLUGIN_DEPENDENCY_FLAG_PATHS_ARE_DEFAULT_ONLY;
1709
1710   gst_plugin_ext_dep_extract_env_vars_paths (plugin, dep, &scan_paths);
1711
1712   if (g_queue_is_empty (&scan_paths) || !paths_are_default_only) {
1713     gchar **paths;
1714
1715     for (paths = dep->paths; paths != NULL && *paths != NULL; ++paths) {
1716       const gchar *path = *paths;
1717
1718       if (!g_queue_find_custom (&scan_paths, path, (GCompareFunc) strcmp)) {
1719         GST_LOG_OBJECT (plugin, "path: '%s'", path);
1720         g_queue_push_tail (&scan_paths, g_strdup (path));
1721       } else {
1722         GST_LOG_OBJECT (plugin, "path: '%s' (duplicate, ignoring)", path);
1723       }
1724     }
1725   }
1726
1727   while ((path = g_queue_pop_head (&scan_paths))) {
1728     scan_hash += gst_plugin_ext_dep_scan_path_with_filenames (plugin, path,
1729         (const gchar **) dep->names, dep->flags);
1730     g_free (path);
1731   }
1732
1733   GST_LOG_OBJECT (plugin, "done, scan_hash: %08x", scan_hash);
1734   return scan_hash;
1735 }
1736
1737 gboolean
1738 _priv_plugin_deps_files_changed (GstPlugin * plugin)
1739 {
1740   GList *l;
1741
1742   for (l = plugin->priv->deps; l != NULL; l = l->next) {
1743     GstPluginDep *dep = l->data;
1744
1745     if (dep->stat_hash != gst_plugin_ext_dep_get_stat_hash (plugin, dep))
1746       return TRUE;
1747   }
1748
1749   return FALSE;
1750 }
1751
1752 static void
1753 gst_plugin_ext_dep_free (GstPluginDep * dep)
1754 {
1755   g_strfreev (dep->env_vars);
1756   g_strfreev (dep->paths);
1757   g_strfreev (dep->names);
1758   g_slice_free (GstPluginDep, dep);
1759 }
1760
1761 static gboolean
1762 gst_plugin_ext_dep_strv_equal (gchar ** arr1, gchar ** arr2)
1763 {
1764   if (arr1 == arr2)
1765     return TRUE;
1766   if (arr1 == NULL || arr2 == NULL)
1767     return FALSE;
1768   for (; *arr1 != NULL && *arr2 != NULL; ++arr1, ++arr2) {
1769     if (strcmp (*arr1, *arr2) != 0)
1770       return FALSE;
1771   }
1772   return (*arr1 == *arr2);
1773 }
1774
1775 static gboolean
1776 gst_plugin_ext_dep_equals (GstPluginDep * dep, const gchar ** env_vars,
1777     const gchar ** paths, const gchar ** names, GstPluginDependencyFlags flags)
1778 {
1779   if (dep->flags != flags)
1780     return FALSE;
1781
1782   return gst_plugin_ext_dep_strv_equal (dep->env_vars, (gchar **) env_vars) &&
1783       gst_plugin_ext_dep_strv_equal (dep->paths, (gchar **) paths) &&
1784       gst_plugin_ext_dep_strv_equal (dep->names, (gchar **) names);
1785 }
1786
1787 /**
1788  * gst_plugin_add_dependency:
1789  * @plugin: a #GstPlugin
1790  * @env_vars: (allow-none): %NULL-terminated array of environment variables affecting the
1791  *     feature set of the plugin (e.g. an environment variable containing
1792  *     paths where to look for additional modules/plugins of a library),
1793  *     or %NULL. Environment variable names may be followed by a path component
1794  *      which will be added to the content of the environment variable, e.g.
1795  *      "HOME/.mystuff/plugins".
1796  * @paths: (allow-none): %NULL-terminated array of directories/paths where dependent files
1797  *     may be, or %NULL.
1798  * @names: (allow-none): %NULL-terminated array of file names (or file name suffixes,
1799  *     depending on @flags) to be used in combination with the paths from
1800  *     @paths and/or the paths extracted from the environment variables in
1801  *     @env_vars, or %NULL.
1802  * @flags: optional flags, or #GST_PLUGIN_DEPENDENCY_FLAG_NONE
1803  *
1804  * Make GStreamer aware of external dependencies which affect the feature
1805  * set of this plugin (ie. the elements or typefinders associated with it).
1806  *
1807  * GStreamer will re-inspect plugins with external dependencies whenever any
1808  * of the external dependencies change. This is useful for plugins which wrap
1809  * other plugin systems, e.g. a plugin which wraps a plugin-based visualisation
1810  * library and makes visualisations available as GStreamer elements, or a
1811  * codec loader which exposes elements and/or caps dependent on what external
1812  * codec libraries are currently installed.
1813  */
1814 void
1815 gst_plugin_add_dependency (GstPlugin * plugin, const gchar ** env_vars,
1816     const gchar ** paths, const gchar ** names, GstPluginDependencyFlags flags)
1817 {
1818   GstPluginDep *dep;
1819   GList *l;
1820
1821   g_return_if_fail (GST_IS_PLUGIN (plugin));
1822
1823   if ((env_vars == NULL || env_vars[0] == NULL) &&
1824       (paths == NULL || paths[0] == NULL)) {
1825     GST_DEBUG_OBJECT (plugin,
1826         "plugin registered empty dependency set. Ignoring");
1827     return;
1828   }
1829
1830   for (l = plugin->priv->deps; l != NULL; l = l->next) {
1831     if (gst_plugin_ext_dep_equals (l->data, env_vars, paths, names, flags)) {
1832       GST_LOG_OBJECT (plugin, "dependency already registered");
1833       return;
1834     }
1835   }
1836
1837   dep = g_slice_new (GstPluginDep);
1838
1839   dep->env_vars = g_strdupv ((gchar **) env_vars);
1840   dep->paths = g_strdupv ((gchar **) paths);
1841   dep->names = g_strdupv ((gchar **) names);
1842   dep->flags = flags;
1843
1844   dep->env_hash = gst_plugin_ext_dep_get_env_vars_hash (plugin, dep);
1845   dep->stat_hash = gst_plugin_ext_dep_get_stat_hash (plugin, dep);
1846
1847   plugin->priv->deps = g_list_append (plugin->priv->deps, dep);
1848
1849   GST_DEBUG_OBJECT (plugin, "added dependency:");
1850   for (; env_vars != NULL && *env_vars != NULL; ++env_vars)
1851     GST_DEBUG_OBJECT (plugin, " evar: %s", *env_vars);
1852   for (; paths != NULL && *paths != NULL; ++paths)
1853     GST_DEBUG_OBJECT (plugin, " path: %s", *paths);
1854   for (; names != NULL && *names != NULL; ++names)
1855     GST_DEBUG_OBJECT (plugin, " name: %s", *names);
1856 }
1857
1858 /**
1859  * gst_plugin_add_dependency_simple:
1860  * @plugin: the #GstPlugin
1861  * @env_vars: (allow-none): one or more environment variables (separated by ':', ';' or ','),
1862  *      or %NULL. Environment variable names may be followed by a path component
1863  *      which will be added to the content of the environment variable, e.g.
1864  *      "HOME/.mystuff/plugins:MYSTUFF_PLUGINS_PATH"
1865  * @paths: (allow-none): one ore more directory paths (separated by ':' or ';' or ','),
1866  *      or %NULL. Example: "/usr/lib/mystuff/plugins"
1867  * @names: (allow-none): one or more file names or file name suffixes (separated by commas),
1868  *      or %NULL
1869  * @flags: optional flags, or #GST_PLUGIN_DEPENDENCY_FLAG_NONE
1870  *
1871  * Make GStreamer aware of external dependencies which affect the feature
1872  * set of this plugin (ie. the elements or typefinders associated with it).
1873  *
1874  * GStreamer will re-inspect plugins with external dependencies whenever any
1875  * of the external dependencies change. This is useful for plugins which wrap
1876  * other plugin systems, e.g. a plugin which wraps a plugin-based visualisation
1877  * library and makes visualisations available as GStreamer elements, or a
1878  * codec loader which exposes elements and/or caps dependent on what external
1879  * codec libraries are currently installed.
1880  *
1881  * Convenience wrapper function for gst_plugin_add_dependency() which
1882  * takes simple strings as arguments instead of string arrays, with multiple
1883  * arguments separated by predefined delimiters (see above).
1884  */
1885 void
1886 gst_plugin_add_dependency_simple (GstPlugin * plugin,
1887     const gchar * env_vars, const gchar * paths, const gchar * names,
1888     GstPluginDependencyFlags flags)
1889 {
1890   gchar **a_evars = NULL;
1891   gchar **a_paths = NULL;
1892   gchar **a_names = NULL;
1893
1894   if (env_vars)
1895     a_evars = g_strsplit_set (env_vars, ":;,", -1);
1896   if (paths)
1897     a_paths = g_strsplit_set (paths, ":;,", -1);
1898   if (names)
1899     a_names = g_strsplit_set (names, ",", -1);
1900
1901   gst_plugin_add_dependency (plugin, (const gchar **) a_evars,
1902       (const gchar **) a_paths, (const gchar **) a_names, flags);
1903
1904   if (a_evars)
1905     g_strfreev (a_evars);
1906   if (a_paths)
1907     g_strfreev (a_paths);
1908   if (a_names)
1909     g_strfreev (a_names);
1910 }