Add restarting of the plugin loader and blacklisting of broken files

This commit is contained in:
Jan Schmidt 2009-01-23 21:15:43 +00:00
parent 38083fb0c8
commit ef32c11e6e
4 changed files with 238 additions and 62 deletions

View file

@ -74,7 +74,8 @@ typedef enum
typedef enum typedef enum
{ {
GST_PLUGIN_FLAG_CACHED = (1<<0) GST_PLUGIN_FLAG_CACHED = (1<<0),
GST_PLUGIN_FLAG_BLACKLISTED = (1<<1)
} GstPluginFlags; } GstPluginFlags;
/** /**

View file

@ -64,7 +64,7 @@ struct _GstPluginLoader
GstRegistry *registry; GstRegistry *registry;
GstPoll *fdset; GstPoll *fdset;
gboolean child_started; gboolean child_running;
GPid child_pid; GPid child_pid;
GstPollFD fd_w; GstPollFD fd_w;
GstPollFD fd_r; GstPollFD fd_r;
@ -83,6 +83,7 @@ struct _GstPluginLoader
guint8 *rx_buf; guint8 *rx_buf;
guint rx_buf_size; guint rx_buf_size;
gboolean rx_done; gboolean rx_done;
gboolean rx_got_sync;
/* Head and tail of the pending plugins list. List of /* Head and tail of the pending plugins list. List of
PendingPluginEntry structs */ PendingPluginEntry structs */
@ -92,7 +93,7 @@ struct _GstPluginLoader
#define PACKET_EXIT 1 #define PACKET_EXIT 1
#define PACKET_LOAD_PLUGIN 2 #define PACKET_LOAD_PLUGIN 2
#define PACKET_STARTING_LOAD 3 #define PACKET_SYNC 3
#define PACKET_PLUGIN_DETAILS 4 #define PACKET_PLUGIN_DETAILS 4
#define BUF_INIT_SIZE 512 #define BUF_INIT_SIZE 512
@ -105,6 +106,12 @@ static gboolean gst_plugin_loader_spawn (GstPluginLoader * loader);
static void put_packet (GstPluginLoader * loader, guint type, guint32 tag, static void put_packet (GstPluginLoader * loader, guint type, guint32 tag,
const guint8 * payload, guint32 payload_len); const guint8 * payload, guint32 payload_len);
static gboolean exchange_packets (GstPluginLoader * l); static gboolean exchange_packets (GstPluginLoader * l);
static gboolean plugin_loader_replay_pending (GstPluginLoader * l);
static gboolean plugin_loader_load_and_sync (GstPluginLoader * l,
PendingPluginEntry * entry);
static void plugin_loader_create_blacklist_plugin (GstPluginLoader * l,
PendingPluginEntry * entry);
static void plugin_loader_cleanup_child (GstPluginLoader * loader);
static GstPluginLoader * static GstPluginLoader *
plugin_loader_new (GstRegistry * registry) plugin_loader_new (GstRegistry * registry)
@ -136,23 +143,20 @@ plugin_loader_free (GstPluginLoader * loader)
fsync (loader->fd_w.fd); fsync (loader->fd_w.fd);
if (loader->child_started) { if (loader->child_running) {
put_packet (loader, PACKET_EXIT, 0, NULL, 0); put_packet (loader, PACKET_EXIT, 0, NULL, 0);
/* Swap packets with the child until it exits */ /* Swap packets with the child until it exits cleanly */
while (!loader->rx_done && exchange_packets (loader)) { while (!loader->rx_done) {
}; if (exchange_packets (loader) || loader->rx_done)
continue;
close (loader->fd_w.fd); if (!plugin_loader_replay_pending (loader))
close (loader->fd_r.fd); break;
put_packet (loader, PACKET_EXIT, 0, NULL, 0);
}
#ifndef G_OS_WIN32 plugin_loader_cleanup_child (loader);
GST_LOG ("waiting for child process to exit");
waitpid (loader->child_pid, NULL, 0);
#else
g_warning ("FIXME: Implement child process shutdown for Win32");
#endif
g_spawn_close_pid (loader->child_pid);
} else { } else {
close (loader->fd_w.fd); close (loader->fd_w.fd);
close (loader->fd_r.fd); close (loader->fd_r.fd);
@ -190,10 +194,8 @@ plugin_loader_load (GstPluginLoader * loader, const gchar * filename,
gint len; gint len;
PendingPluginEntry *entry; PendingPluginEntry *entry;
if (!loader->child_started) { if (!gst_plugin_loader_spawn (loader))
if (!gst_plugin_loader_spawn (loader)) return FALSE;
return FALSE;
}
/* Send a packet to the child requesting that it load the given file */ /* Send a packet to the child requesting that it load the given file */
GST_LOG_OBJECT (loader->registry, GST_LOG_OBJECT (loader->registry,
@ -216,35 +218,161 @@ plugin_loader_load (GstPluginLoader * loader, const gchar * filename,
put_packet (loader, PACKET_LOAD_PLUGIN, entry->tag, put_packet (loader, PACKET_LOAD_PLUGIN, entry->tag,
(guint8 *) filename, len + 1); (guint8 *) filename, len + 1);
if (!exchange_packets (loader)) if (!exchange_packets (loader)) {
return FALSE; if (!plugin_loader_replay_pending (loader))
return FALSE;
}
return TRUE; return TRUE;
} }
static gboolean static gboolean
gst_plugin_loader_spawn (GstPluginLoader * loader) plugin_loader_replay_pending (GstPluginLoader * l)
{ {
char *helper_bin = GList *cur, *next;
"/home/jan/devel/gstreamer/head/gstreamer/libs/gst/helpers/plugin-scanner";
char *argv[] = { helper_bin, "-l", NULL };
if (!g_spawn_async_with_pipes (NULL, argv, NULL, restart:
G_SPAWN_DO_NOT_REAP_CHILD /* | G_SPAWN_STDERR_TO_DEV_NULL */ , if (!gst_plugin_loader_spawn (l))
NULL, NULL, &loader->child_pid, &loader->fd_w.fd, &loader->fd_r.fd,
NULL, NULL))
return FALSE; return FALSE;
gst_poll_add_fd (loader->fdset, &loader->fd_w); /* Load each plugin one by one synchronously until we find the
* crashing one */
while ((cur = l->pending_plugins)) {
PendingPluginEntry *entry = (PendingPluginEntry *) (cur->data);
gst_poll_add_fd (loader->fdset, &loader->fd_r); if (!plugin_loader_load_and_sync (l, entry)) {
gst_poll_fd_ctl_read (loader->fdset, &loader->fd_r, TRUE); GST_INFO ("AHA! %s crashes on loading", entry->filename);
/* Create dummy plugin entry to block re-scanning this file */
plugin_loader_create_blacklist_plugin (l, entry);
l->got_plugin_details = TRUE;
/* Now remove this crashy plugin from the head of the list */
l->pending_plugins = g_list_delete_link (cur, cur);
if (l->pending_plugins == NULL)
l->pending_plugins_tail = NULL;
if (!gst_plugin_loader_spawn (l))
return FALSE;
break;
}
}
loader->child_started = TRUE; /* We exited after finding the crashing one. If there's any more pending,
* dispatch them post-haste, but don't wait */
for (cur = l->pending_plugins; cur != NULL; cur = next) {
PendingPluginEntry *entry = (PendingPluginEntry *) (cur->data);
next = g_list_next (cur);
put_packet (l, PACKET_LOAD_PLUGIN, entry->tag,
(guint8 *) entry->filename, strlen (entry->filename) + 1);
/* This might invalidate cur, which is why we grabbed 'next' above */
if (!exchange_packets (l))
goto restart;
}
return TRUE; return TRUE;
} }
static gboolean
plugin_loader_load_and_sync (GstPluginLoader * l, PendingPluginEntry * entry)
{
gint len;
GST_DEBUG_OBJECT (l->registry, "Synchronously loading plugin file %s",
entry->filename);
len = strlen (entry->filename);
put_packet (l, PACKET_LOAD_PLUGIN, entry->tag,
(guint8 *) entry->filename, len + 1);
put_packet (l, PACKET_SYNC, 0, NULL, 0);
l->rx_got_sync = FALSE;
while (!l->rx_got_sync) {
if (!exchange_packets (l))
return FALSE;
}
return TRUE;
}
static void
plugin_loader_create_blacklist_plugin (GstPluginLoader * l,
PendingPluginEntry * entry)
{
GstPlugin *plugin = g_object_new (GST_TYPE_PLUGIN, NULL);
plugin->filename = g_strdup (entry->filename);
plugin->file_mtime = entry->file_mtime;
plugin->file_size = entry->file_size;
plugin->flags |= GST_PLUGIN_FLAG_BLACKLISTED;
plugin->basename = g_path_get_basename (plugin->filename);
plugin->desc.name = g_intern_string (plugin->basename);
plugin->desc.description = g_strdup_printf ("Plugin for blacklisted file");
plugin->desc.version = g_intern_string ("0.0.0");
plugin->desc.license = g_intern_string ("BLACKLIST");
plugin->desc.source = plugin->desc.license;
plugin->desc.package = plugin->desc.license;
plugin->desc.origin = plugin->desc.license;
GST_DEBUG ("Adding blacklist plugin '%s'", plugin->desc.name);
gst_registry_add_plugin (l->registry, plugin);
}
static gboolean
gst_plugin_loader_spawn (GstPluginLoader * loader)
{
if (loader->child_running)
return TRUE;
{
/* FIXME: Find the plugin-scanner! */
char *helper_bin =
"/home/jan/devel/gstreamer/head/gstreamer/libs/gst/helpers/plugin-scanner";
char *argv[] = { helper_bin, "-l", NULL };
if (!g_spawn_async_with_pipes (NULL, argv, NULL,
G_SPAWN_DO_NOT_REAP_CHILD /* | G_SPAWN_STDERR_TO_DEV_NULL */ ,
NULL, NULL, &loader->child_pid, &loader->fd_w.fd, &loader->fd_r.fd,
NULL, NULL))
return FALSE;
}
gst_poll_add_fd (loader->fdset, &loader->fd_w);
gst_poll_add_fd (loader->fdset, &loader->fd_r);
gst_poll_fd_ctl_read (loader->fdset, &loader->fd_r, TRUE);
loader->tx_buf_write = loader->tx_buf_read = 0;
loader->child_running = TRUE;
return TRUE;
}
static void
plugin_loader_cleanup_child (GstPluginLoader * l)
{
if (!l->child_running || l->is_child)
return;
gst_poll_remove_fd (l->fdset, &l->fd_w);
gst_poll_remove_fd (l->fdset, &l->fd_r);
close (l->fd_w.fd);
close (l->fd_r.fd);
#ifndef G_OS_WIN32
GST_LOG ("waiting for child process to exit");
waitpid (l->child_pid, NULL, 0);
#else
g_warning ("FIXME: Implement child process shutdown for Win32");
#endif
g_spawn_close_pid (l->child_pid);
l->child_running = FALSE;
}
gboolean gboolean
_gst_plugin_loader_client_run () _gst_plugin_loader_client_run ()
{ {
@ -346,6 +474,11 @@ write_one (GstPluginLoader * l)
out += res; out += res;
} }
} while (to_write > 0 && res < 0 && (errno == EAGAIN || errno == EINTR)); } while (to_write > 0 && res < 0 && (errno == EAGAIN || errno == EINTR));
if (res < 0) {
/* Failed to write -> child died */
plugin_loader_cleanup_child (l);
return FALSE;
}
if (l->tx_buf_read == l->tx_buf_write) { if (l->tx_buf_read == l->tx_buf_write) {
gst_poll_fd_ctl_write (l->fdset, &l->fd_w, FALSE); gst_poll_fd_ctl_write (l->fdset, &l->fd_w, FALSE);
@ -361,7 +494,14 @@ do_plugin_load (GstPluginLoader * l, const gchar * filename, guint tag)
GList *chunks = NULL; GList *chunks = NULL;
GST_DEBUG ("Plugin scanner loading file %s. tag %u\n", filename, tag); GST_DEBUG ("Plugin scanner loading file %s. tag %u\n", filename, tag);
put_packet (l, PACKET_STARTING_LOAD, tag, NULL, 0);
#if 0 /* Test code - crash based on an env var */
if (strstr (filename, "coreelements") == NULL) {
g_printerr ("Crashing on file %s\n", filename);
g_printerr ("%d", *(gint *) (NULL));
}
#endif
newplugin = gst_plugin_load_file ((gchar *) filename, NULL); newplugin = gst_plugin_load_file ((gchar *) filename, NULL);
if (newplugin) { if (newplugin) {
@ -437,7 +577,6 @@ handle_rx_packet (GstPluginLoader * l,
} }
return TRUE; return TRUE;
case PACKET_LOAD_PLUGIN:{ case PACKET_LOAD_PLUGIN:{
if (!l->is_child) if (!l->is_child)
return TRUE; return TRUE;
@ -446,10 +585,6 @@ handle_rx_packet (GstPluginLoader * l,
break; break;
} }
case PACKET_STARTING_LOAD:
GST_LOG_OBJECT (l->registry,
"child started loading plugin w/ tag %u", tag);
break;
case PACKET_PLUGIN_DETAILS:{ case PACKET_PLUGIN_DETAILS:{
gchar *tmp = (gchar *) payload; gchar *tmp = (gchar *) payload;
PendingPluginEntry *entry = NULL; PendingPluginEntry *entry = NULL;
@ -495,25 +630,8 @@ handle_rx_packet (GstPluginLoader * l,
/* We got a set of plugin details - remember it for later */ /* We got a set of plugin details - remember it for later */
l->got_plugin_details = TRUE; l->got_plugin_details = TRUE;
} else if (entry != NULL) { } else if (entry != NULL) {
/* Create a dummy entry for this file to prevent scanning every time */ /* Create a blacklist entry for this file to prevent scanning every time */
GstPlugin *plugin = g_object_new (GST_TYPE_PLUGIN, NULL); plugin_loader_create_blacklist_plugin (l, entry);
plugin->filename = g_strdup (entry->filename);
plugin->file_mtime = entry->file_mtime;
plugin->file_size = entry->file_size;
plugin->basename = g_path_get_basename (plugin->filename);
plugin->desc.name = g_intern_string (plugin->basename);
plugin->desc.description = g_strdup_printf ("Dummy plugin for file %s",
plugin->filename);
plugin->desc.version = g_intern_string ("0.0.0");
plugin->desc.license = g_intern_string ("DUMMY");
plugin->desc.source = plugin->desc.license;
plugin->desc.package = plugin->desc.license;
plugin->desc.origin = plugin->desc.license;
GST_DEBUG ("Adding dummy plugin '%s'", plugin->desc.name);
gst_registry_add_plugin (l->registry, plugin);
l->got_plugin_details = TRUE; l->got_plugin_details = TRUE;
} }
@ -524,6 +642,14 @@ handle_rx_packet (GstPluginLoader * l,
break; break;
} }
case PACKET_SYNC:
if (l->is_child) {
/* Respond with our reply - also a sync */
put_packet (l, PACKET_SYNC, 0, NULL, 0);
GST_LOG ("Got SYNC in child - replying");
} else
l->rx_got_sync = TRUE;
break;
default: default:
return FALSE; /* Invalid packet -> something is wrong */ return FALSE; /* Invalid packet -> something is wrong */
} }
@ -595,13 +721,14 @@ exchange_packets (GstPluginLoader * l)
if (res < 0) if (res < 0)
return FALSE; return FALSE;
GST_DEBUG ("Poll res = %d. %d bytes pending for write", res, GST_LOG ("Poll res = %d. %d bytes pending for write", res,
l->tx_buf_write - l->tx_buf_read); l->tx_buf_write - l->tx_buf_read);
if (!l->rx_done) { if (!l->rx_done) {
if (gst_poll_fd_has_error (l->fdset, &l->fd_r) || if (gst_poll_fd_has_error (l->fdset, &l->fd_r) ||
gst_poll_fd_has_closed (l->fdset, &l->fd_r)) { gst_poll_fd_has_closed (l->fdset, &l->fd_r)) {
GST_LOG ("read fd %d closed/errored", l->fd_r.fd); GST_LOG ("read fd %d closed/errored", l->fd_r.fd);
plugin_loader_cleanup_child (l);
return FALSE; return FALSE;
} }
@ -615,6 +742,7 @@ exchange_packets (GstPluginLoader * l)
if (gst_poll_fd_has_error (l->fdset, &l->fd_w) || if (gst_poll_fd_has_error (l->fdset, &l->fd_w) ||
gst_poll_fd_has_closed (l->fdset, &l->fd_r)) { gst_poll_fd_has_closed (l->fdset, &l->fd_r)) {
GST_ERROR ("write fd %d closed/errored", l->fd_w.fd); GST_ERROR ("write fd %d closed/errored", l->fd_w.fd);
plugin_loader_cleanup_child (l);
return FALSE; return FALSE;
} }
if (gst_poll_fd_can_write (l->fdset, &l->fd_w)) { if (gst_poll_fd_can_write (l->fdset, &l->fd_w)) {

View file

@ -759,6 +759,11 @@ _priv_gst_registry_chunks_load_plugin (GstRegistry * registry, gchar ** in,
} }
g_free (cache_str); g_free (cache_str);
/* If the license string is 'BLACKLIST', mark this as a blacklisted
* plugin */
if (strcmp (plugin->desc.license, "BLACKLIST") == 0)
plugin->flags |= GST_PLUGIN_FLAG_BLACKLISTED;
plugin->basename = g_path_get_basename (plugin->filename); plugin->basename = g_path_get_basename (plugin->filename);
/* Takes ownership of plugin */ /* Takes ownership of plugin */

View file

@ -942,10 +942,35 @@ print_children_info (GstElement * element)
} }
} }
static void
print_blacklist ()
{
GList *plugins, *cur;
gint count = 0;
g_print ("%s\n", _("Blacklisted files:"));
plugins = gst_default_registry_get_plugin_list ();
for (cur = plugins; cur != NULL; cur = g_list_next (cur)) {
GstPlugin *plugin = (GstPlugin *) (cur->data);
if (plugin->flags & GST_PLUGIN_FLAG_BLACKLISTED) {
g_print (" %s\n", plugin->desc.name);
count++;
}
}
g_print ("\n");
g_print (_("Total count: "));
g_print (ngettext ("%d blacklisted file", "%d blacklisted files", count),
count);
g_print ("\n");
gst_plugin_list_free (plugins);
}
static void static void
print_element_list (gboolean print_all) print_element_list (gboolean print_all)
{ {
int plugincount = 0, featurecount = 0; int plugincount = 0, featurecount = 0, blacklistcount = 0;
GList *plugins, *orig_plugins; GList *plugins, *orig_plugins;
orig_plugins = plugins = gst_default_registry_get_plugin_list (); orig_plugins = plugins = gst_default_registry_get_plugin_list ();
@ -957,6 +982,11 @@ print_element_list (gboolean print_all)
plugins = g_list_next (plugins); plugins = g_list_next (plugins);
plugincount++; plugincount++;
if (plugin->flags & GST_PLUGIN_FLAG_BLACKLISTED) {
blacklistcount++;
continue;
}
orig_features = features = orig_features = features =
gst_registry_get_feature_list_by_plugin (gst_registry_get_default (), gst_registry_get_feature_list_by_plugin (gst_registry_get_default (),
plugin->desc.name); plugin->desc.name);
@ -1022,6 +1052,12 @@ print_element_list (gboolean print_all)
g_print ("\n"); g_print ("\n");
g_print (_("Total count: ")); g_print (_("Total count: "));
g_print (ngettext ("%d plugin", "%d plugins", plugincount), plugincount); g_print (ngettext ("%d plugin", "%d plugins", plugincount), plugincount);
if (blacklistcount) {
g_print (" (");
g_print (ngettext ("%d blacklist entry", "%d blacklist entries",
blacklistcount), blacklistcount);
g_print (" not shown)");
}
g_print (", "); g_print (", ");
g_print (ngettext ("%d feature", "%d features", featurecount), featurecount); g_print (ngettext ("%d feature", "%d features", featurecount), featurecount);
g_print ("\n"); g_print ("\n");
@ -1400,6 +1436,7 @@ int
main (int argc, char *argv[]) main (int argc, char *argv[])
{ {
gboolean print_all = FALSE; gboolean print_all = FALSE;
gboolean do_print_blacklist = FALSE;
gboolean plugin_name = FALSE; gboolean plugin_name = FALSE;
gboolean print_aii = FALSE; gboolean print_aii = FALSE;
gboolean uri_handlers = FALSE; gboolean uri_handlers = FALSE;
@ -1407,6 +1444,8 @@ main (int argc, char *argv[])
GOptionEntry options[] = { GOptionEntry options[] = {
{"print-all", 'a', 0, G_OPTION_ARG_NONE, &print_all, {"print-all", 'a', 0, G_OPTION_ARG_NONE, &print_all,
N_("Print all elements"), NULL}, N_("Print all elements"), NULL},
{"print-blacklist", 'b', 0, G_OPTION_ARG_NONE, &do_print_blacklist,
N_("Print list of blacklisted files"), NULL},
{"print-plugin-auto-install-info", '\0', 0, G_OPTION_ARG_NONE, &print_aii, {"print-plugin-auto-install-info", '\0', 0, G_OPTION_ARG_NONE, &print_aii,
N_("Print a machine-parsable list of features the specified plugin " N_("Print a machine-parsable list of features the specified plugin "
"provides.\n " "provides.\n "
@ -1463,7 +1502,10 @@ main (int argc, char *argv[])
if (uri_handlers) { if (uri_handlers) {
print_all_uri_handlers (); print_all_uri_handlers ();
} else if (argc == 1 || print_all) { } else if (argc == 1 || print_all) {
print_element_list (print_all); if (do_print_blacklist)
print_blacklist ();
else
print_element_list (print_all);
} else { } else {
/* else we try to get a factory */ /* else we try to get a factory */
GstElementFactory *factory; GstElementFactory *factory;