/*************************************************************************** * CVSID: $Id$ * * hal-lock.c : Lock an interface * * Copyright (C) 2007 David Zeuthen, * * Licensed under the Academic Free License version 2.1 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * **************************************************************************/ #ifdef HAVE_CONFIG_H # include #endif #include #include #include #include #include #include #include #include #include #include #include "libhal.h" /** * usage: * @argc: Number of arguments given to program * @argv: Arguments given to program * * Print out program usage. */ static void usage (int argc, char *argv[]) { fprintf (stderr, "\n" "usage : hal-lock --interface \n" " --run \n" " [--udi ]\n" " [--exclusive]\n" " [--exit-with-lock]\n" " [--exit-with-dev]\n" " [--help] [--version]\n"); fprintf (stderr, "\n" " --interface Interface to lock\n" " --run Program to run if the lock was acquired\n" " --udi Unique Device Id of device to lock. If\n" " ommitted the global lock will be tried\n" " --exclusive Whether the lock can be held by others\n" " --exit-with-lock Kill the program if the acquired lock is lost\n" " --exit-with-dev Kill the program if the locked device is removed\n" " --version Show version and exit\n" " --help Show this information and exit\n" "\n" "This program will attempt to grab a lock on a given interface.\n" "Unless, a specific UDI is given, the global lock will be tried.\n" "If the lock was succesfully acquired the program specified by\n" "the option --run will be run and upon termination this program\n" "will exit with exit code 0. If the lock wasn't acquired or an\n" "error occured while taking the lock, this program will exit with a\n" "non-zero exit code and the given program will not be run.\n" "\n"); } static char *udi = NULL; static char *interface = NULL; static const char *unique_name; static GPid child_pid; static void guardian (GPid pid, int status, gpointer data) { /* exit along with the child */ exit (0); } static void device_removed (LibHalContext *ctx, const char *_udi) { if (strcmp (udi, _udi) == 0) { fprintf (stderr, "Lost the device; killing child...\n"); kill (child_pid, SIGTERM); } } static void interface_lock_released (LibHalContext *ctx, const char *_udi, const char *_interface, const char *lock_owner, int num_locks) { if (strcmp (udi, _udi) == 0 && strcmp (interface, _interface) == 0 && strcmp (lock_owner, unique_name) == 0) { fprintf (stderr, "Lost the lock; killing child...\n"); kill (child_pid, SIGTERM); } } /** * main: * @argc: Number of arguments given to program * @argv: Arguments given to program * * Returns: Return code * * Main entry point */ int main (int argc, char *argv[]) { char *run = NULL; dbus_bool_t is_version = FALSE; dbus_bool_t exclusive = FALSE; dbus_bool_t got_lock = FALSE; dbus_bool_t exit_with_lock = FALSE; dbus_bool_t exit_with_dev = FALSE; DBusConnection *con; DBusError error; LibHalContext *hal_ctx; int ret; GError *g_error = NULL; GMainLoop *loop; ret = 1; if (argc <= 1) { usage (argc, argv); goto out; } while (1) { int c; int option_index = 0; const char *opt; static struct option long_options[] = { {"udi", 1, NULL, 0}, {"interface", 1, NULL, 0}, {"run", 1, NULL, 0}, {"exclusive", 0, NULL, 0}, {"exit-with-lock", 0, NULL, 0}, {"exit-with-dev", 0, NULL, 0}, {"version", 0, NULL, 0}, {"help", 0, NULL, 0}, {NULL, 0, NULL, 0} }; c = getopt_long (argc, argv, "", long_options, &option_index); if (c == -1) break; switch (c) { case 0: opt = long_options[option_index].name; if (strcmp (opt, "help") == 0) { usage (argc, argv); return 0; } else if (strcmp (opt, "version") == 0) { is_version = TRUE; } else if (strcmp (opt, "udi") == 0) { udi = strdup (optarg); } else if (strcmp (opt, "run") == 0) { run = strdup (optarg); } else if (strcmp (opt, "exclusive") == 0) { exclusive = TRUE; } else if (strcmp (opt, "interface") == 0) { interface = strdup (optarg); } else if (strcmp (opt, "exit-with-lock") == 0) { exit_with_lock = TRUE; } else if (strcmp (opt, "exit-with-dev") == 0) { exit_with_dev = TRUE; } break; default: usage (argc, argv); return 1; break; } } if (is_version) { printf ("hal-lock " PACKAGE_VERSION "\n"); ret = 0; goto out; } if (interface == NULL || run == NULL) { usage (argc, argv); goto out; } if (exit_with_lock && udi == NULL) { fprintf (stderr, "--exit-with-lock requires UDI to be given.\n"); usage (argc, argv); goto out; } if (exit_with_dev && udi == NULL) { fprintf (stderr, "--exit-with-lock requires UDI to be given.\n"); usage (argc, argv); goto out; } if (exit_with_lock || exit_with_dev) loop = g_main_loop_new (NULL, FALSE); else loop = NULL; dbus_error_init (&error); if ((hal_ctx = libhal_ctx_new ()) == NULL) { fprintf (stderr, "error: libhal_ctx_new\n"); goto out; } con = dbus_bus_get (DBUS_BUS_SYSTEM, &error); if (con == NULL) { fprintf (stderr, "error: dbus_bus_get: %s: %s\n", error.name, error.message); LIBHAL_FREE_DBUS_ERROR (&error); goto out; } if (!libhal_ctx_set_dbus_connection (hal_ctx, con)) { fprintf (stderr, "error: libhal_ctx_set_dbus_connection\n"); goto out; } if (exit_with_lock || exit_with_dev) { unique_name = dbus_bus_get_unique_name (con); dbus_connection_setup_with_g_main (con, NULL); } if (exit_with_lock) libhal_ctx_set_interface_lock_released (hal_ctx, interface_lock_released); if (exit_with_dev) libhal_ctx_set_device_removed (hal_ctx, device_removed); if (!libhal_ctx_init (hal_ctx, &error)) { if (dbus_error_is_set(&error)) { fprintf (stderr, "error: libhal_ctx_init: %s: %s\n", error.name, error.message); dbus_error_free (&error); } fprintf (stderr, "Could not initialise connection to hald.\n" "Normally this means the HAL daemon (hald) is not running or not ready.\n"); goto out; } if (exit_with_lock) libhal_device_add_property_watch (hal_ctx, udi, &error); if (udi != NULL) { got_lock = libhal_device_acquire_interface_lock (hal_ctx, udi, interface, exclusive, &error); } else { got_lock = libhal_acquire_global_interface_lock (hal_ctx, interface, exclusive, &error); } if (dbus_error_is_set(&error)) { fprintf (stderr, "error: %s: %s: %s\n", udi != NULL ? "libhal_device_acquire_interface_lock" : "libhal_acquire_global_interface_lock", error.name, error.message); dbus_error_free (&error); goto out; } if (!got_lock) { goto out; } if (exit_with_lock || exit_with_dev) { int _argc; char **_argv; if (!g_shell_parse_argv (run, &_argc, &_argv, &g_error)) { fprintf (stderr, "error: g_shell_parse_argv: %s\n", g_error->message); g_error_free (g_error); goto out; } if (!g_spawn_async (NULL, _argv, NULL, G_SPAWN_SEARCH_PATH | G_SPAWN_DO_NOT_REAP_CHILD, NULL, NULL, &child_pid, &g_error)) { fprintf (stderr, "error: g_spawn_command_line_async: %s\n", g_error->message); g_error_free (g_error); goto out; } g_child_watch_add (child_pid, guardian, NULL); g_main_loop_run (loop); } else { /* now run the program while holding the lock */ if (!g_spawn_command_line_sync (run, NULL, NULL, NULL, &g_error)) { fprintf (stderr, "error: g_spawn_command_line_sync: %s\n", g_error->message); g_error_free (g_error); goto out; } } ret = 0; out: return ret; }