/* nmclienttest - test app for NetworkManager * * Dan Williams * * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * * (C) Copyright 2004 Red Hat, Inc. */ #include #include #include #include #include #include "NetworkManager.h" #include "nm-utils.h" /* Return codes for functions that use dbus */ enum { RETURN_SUCCESS = 1, RETURN_FAILURE = 0, RETURN_NO_NM = -1 }; /* dbus doesn't define a DBUS_TYPE_STRING_ARRAY so we fake one here for consistency */ /* FIXME: This just seems like a bad idea. The call_nm_method function * interface should just be changed to handle arrays better. */ #define NM_DBUS_TYPE_STRING_ARRAY ((DBUS_TYPE_STRING << 8) | DBUS_TYPE_ARRAY) #define NM_DBUS_TYPE_OBJECT_PATH_ARRAY ((DBUS_TYPE_OBJECT_PATH << 8) | DBUS_TYPE_ARRAY) #define DBUS_NO_SERVICE_ERROR "org.freedesktop.DBus.Error.ServiceDoesNotExist" /* * nmwa_dbus_call_nm_method * * Do a method call on NetworkManager. * * Returns: RETURN_SUCCESS on success * RETURN_FAILURE on failure * RETURN_NO_NM if NetworkManager service no longer exists */ static int nmwa_dbus_call_nm_method (DBusConnection *con, const char *path, const char *method, int arg_type, void **arg, int *item_count) { DBusMessage *message; DBusMessage *reply; DBusError error; char *dbus_string = NULL; int dbus_int = 0; gboolean dbus_bool = FALSE; char **dbus_array = NULL; int num_items = 0; dbus_bool_t ret = TRUE; g_return_val_if_fail (con != NULL, RETURN_FAILURE); g_return_val_if_fail (path != NULL, RETURN_FAILURE); g_return_val_if_fail (method != NULL, RETURN_FAILURE); g_return_val_if_fail (((arg_type == DBUS_TYPE_OBJECT_PATH) || (arg_type == DBUS_TYPE_STRING) || (arg_type == DBUS_TYPE_INT32) || (arg_type == DBUS_TYPE_UINT32) || (arg_type == DBUS_TYPE_BOOLEAN) || (arg_type == NM_DBUS_TYPE_STRING_ARRAY) || (arg_type == NM_DBUS_TYPE_OBJECT_PATH_ARRAY)), RETURN_FAILURE); g_return_val_if_fail (arg != NULL, RETURN_FAILURE); if ((arg_type == DBUS_TYPE_STRING) || (arg_type == NM_DBUS_TYPE_STRING_ARRAY) || (arg_type == DBUS_TYPE_OBJECT_PATH) || (arg_type == NM_DBUS_TYPE_OBJECT_PATH_ARRAY)) g_return_val_if_fail (*arg == NULL, RETURN_FAILURE); if ((arg_type == NM_DBUS_TYPE_STRING_ARRAY) || (arg_type == NM_DBUS_TYPE_OBJECT_PATH_ARRAY)) { g_return_val_if_fail (item_count != NULL, RETURN_FAILURE); *item_count = 0; *((char **)arg) = NULL; } if (!(message = dbus_message_new_method_call (NM_DBUS_SERVICE, path, NM_DBUS_INTERFACE, method))) { fprintf (stderr, "nmwa_dbus_call_nm_method(): Couldn't allocate the dbus message\n"); return (RETURN_FAILURE); } dbus_error_init (&error); reply = dbus_connection_send_with_reply_and_block (con, message, -1, &error); dbus_message_unref (message); if (dbus_error_is_set (&error)) { int ret = RETURN_FAILURE; if (!strcmp (error.name, DBUS_NO_SERVICE_ERROR)) ret = RETURN_NO_NM; else if (!strcmp (error.name, NM_DBUS_NO_ACTIVE_NET_ERROR)) ret = RETURN_SUCCESS; else if (!strcmp (error.name, NM_DBUS_NO_ACTIVE_DEVICE_ERROR)) ret = RETURN_SUCCESS; else if (!strcmp (error.name, NM_DBUS_NO_NETWORKS_ERROR)) ret = RETURN_SUCCESS; if ((ret != RETURN_SUCCESS) && (ret != RETURN_NO_NM)) fprintf (stderr, "nmwa_dbus_call_nm_method(): %s raised:\n %s\n\n", error.name, error.message); dbus_error_free (&error); return (ret); } if (reply == NULL) { fprintf (stderr, "nmwa_dbus_call_nm_method(): dbus reply message was NULL\n" ); return (RETURN_FAILURE); } dbus_error_init (&error); switch (arg_type) { case DBUS_TYPE_OBJECT_PATH: ret = dbus_message_get_args (reply, &error, DBUS_TYPE_OBJECT_PATH, &dbus_string, DBUS_TYPE_INVALID); break; case DBUS_TYPE_STRING: ret = dbus_message_get_args (reply, &error, DBUS_TYPE_STRING, &dbus_string, DBUS_TYPE_INVALID); break; case NM_DBUS_TYPE_OBJECT_PATH_ARRAY: ret = dbus_message_get_args (reply, &error, DBUS_TYPE_ARRAY, DBUS_TYPE_OBJECT_PATH, &dbus_array, &num_items, DBUS_TYPE_INVALID); break; case NM_DBUS_TYPE_STRING_ARRAY: ret = dbus_message_get_args (reply, &error, DBUS_TYPE_ARRAY, DBUS_TYPE_STRING, &dbus_array, &num_items, DBUS_TYPE_INVALID); break; case DBUS_TYPE_INT32: ret = dbus_message_get_args (reply, &error, DBUS_TYPE_INT32, &dbus_int, DBUS_TYPE_INVALID); break; case DBUS_TYPE_UINT32: ret = dbus_message_get_args (reply, &error, DBUS_TYPE_UINT32, &dbus_int, DBUS_TYPE_INVALID); break; case DBUS_TYPE_BOOLEAN: ret = dbus_message_get_args (reply, &error, DBUS_TYPE_BOOLEAN, &dbus_bool, DBUS_TYPE_INVALID); break; default: fprintf (stderr, "nmwa_dbus_call_nm_method(): Unknown argument type!\n"); ret = FALSE; break; } if (!ret) { fprintf (stderr, "nmwa_dbus_call_nm_method(): error while getting args: name='%s' message='%s'\n", error.name, error.message); if (dbus_error_is_set (&error)) dbus_error_free (&error); dbus_message_unref (reply); return (RETURN_FAILURE); } switch (arg_type) { case DBUS_TYPE_OBJECT_PATH: *((char **)(arg)) = nm_dbus_unescape_object_path (dbus_string); break; case NM_DBUS_TYPE_OBJECT_PATH_ARRAY: { int i; *((char ***) (arg)) = g_new0 (char *, num_items + 1); for (i = 0; i < num_items; i++) (*((char ***) (arg)))[i] = nm_dbus_unescape_object_path (dbus_array[i]); *item_count = num_items; break; } case DBUS_TYPE_STRING: *((char **)(arg)) = g_strdup (dbus_string); break; case NM_DBUS_TYPE_STRING_ARRAY: *((char ***)(arg)) = g_strdupv (dbus_array); *item_count = num_items; g_strfreev (dbus_array); break; case DBUS_TYPE_INT32: case DBUS_TYPE_UINT32: *((int *)(arg)) = dbus_int; break; case DBUS_TYPE_BOOLEAN: *((gboolean *)(arg)) = dbus_bool; break; default: g_assert_not_reached (); break; } dbus_message_unref (reply); return (RETURN_SUCCESS); } char * get_active_device (DBusConnection *connection) { int ret; char *active_device = NULL; ret = nmwa_dbus_call_nm_method (connection, NM_DBUS_PATH, "getActiveDevice", DBUS_TYPE_OBJECT_PATH, (void *)(&active_device), NULL); if (ret == RETURN_SUCCESS) return (active_device); return (NULL); } char * get_object_name (DBusConnection *connection, char *path) { int ret; char *name = NULL; char *escaped_path = nm_dbus_escape_object_path (path); ret = nmwa_dbus_call_nm_method (connection, escaped_path, "getName", DBUS_TYPE_STRING, (void *)(&name), NULL); g_free (escaped_path); if (ret == RETURN_SUCCESS) return (name); return (NULL); } int get_object_signal_strength (DBusConnection *connection, char *path) { int ret; int strength = -1; char *escaped_path = nm_dbus_escape_object_path (path); ret = nmwa_dbus_call_nm_method (connection, escaped_path, "getStrength", DBUS_TYPE_INT32, (void *)(&strength), NULL); g_free (escaped_path); if (ret == RETURN_SUCCESS) return (strength); return (-1); } NMState get_nm_state (DBusConnection *connection) { int ret; NMState state; ret = nmwa_dbus_call_nm_method (connection, NM_DBUS_PATH, "state", DBUS_TYPE_UINT32, (void *)(&state), NULL); if (ret == RETURN_SUCCESS) return (state); return (NM_STATE_UNKNOWN); } char * get_device_active_network (DBusConnection *connection, char *path) { int ret; char *net = NULL; ret = nmwa_dbus_call_nm_method (connection, path, "getActiveNetwork", DBUS_TYPE_OBJECT_PATH, (void *)(&net), NULL); if (ret == RETURN_SUCCESS) return (net); return (NULL); } int get_device_type (DBusConnection *connection, char *path) { int ret; int type = -1; ret = nmwa_dbus_call_nm_method (connection, path, "getType", DBUS_TYPE_INT32, (void *)(&type), NULL); if (ret == RETURN_SUCCESS) return (type); return (-1); } void print_device_networks (DBusConnection *connection, const char *path) { int ret; char **networks = NULL; int num_networks = 0; int i; ret = nmwa_dbus_call_nm_method (connection, path, "getNetworks", NM_DBUS_TYPE_OBJECT_PATH_ARRAY, (void **)(&networks), &num_networks); if (ret != RETURN_SUCCESS) return; fprintf( stderr, " Networks:\n" ); for (i = 0; i < num_networks; i++) { char *name = get_object_name (connection, networks[i]); fprintf( stderr, " %s (%s) Strength: %d%%\n", networks[i], name, get_object_signal_strength (connection, networks[i]) ); g_free (name); } g_strfreev (networks); } void print_devices (DBusConnection *connection) { int ret; char **devices = NULL; int num_devices = 0; int i; ret = nmwa_dbus_call_nm_method (connection, NM_DBUS_PATH, "getDevices", NM_DBUS_TYPE_OBJECT_PATH_ARRAY, (void **)(&devices), &num_devices); if (ret != RETURN_SUCCESS) return; fprintf( stderr, "Devices:\n" ); for (i = 0; i < num_devices; i++) { int type = get_device_type (connection, devices[i]); fprintf (stderr, " %s\n", devices[i]); if (type == DEVICE_TYPE_WIRELESS_ETHERNET) { char *active_network = get_device_active_network (connection, devices[i]); fprintf (stderr, " Device type: wireless\n"); fprintf (stderr, " Strength: %d%%\n", get_object_signal_strength (connection, devices[i])); fprintf (stderr, " Active Network: '%s'\n", active_network); g_free (active_network); print_device_networks (connection, devices[i]); fprintf (stderr, "\n"); } else if (type == DEVICE_TYPE_WIRED_ETHERNET) fprintf (stderr, " Device type: wired\n"); else fprintf (stderr, " Device type: unknown\n"); fprintf (stderr, "\n"); } g_strfreev (devices); } void set_device_network (DBusConnection *connection, const char *path, const char *network) { DBusMessage *message; DBusMessage *reply; DBusError error; message = dbus_message_new_method_call (NM_DBUS_SERVICE, NM_DBUS_PATH, NM_DBUS_INTERFACE, "setActiveDevice"); if (message == NULL) { fprintf (stderr, "Couldn't allocate the dbus message\n"); return; } dbus_message_append_args (message, DBUS_TYPE_STRING, path, DBUS_TYPE_STRING, network, DBUS_TYPE_INVALID); dbus_error_init (&error); reply = dbus_connection_send_with_reply_and_block (connection, message, -1, &error); if (dbus_error_is_set (&error)) { fprintf (stderr, "%s raised:\n %s\n\n", error.name, error.message); dbus_message_unref (message); dbus_error_free (&error); return; } else fprintf (stderr, "Success!!\n"); } int main( int argc, char *argv[] ) { DBusConnection *connection; DBusError error; char * path; NMState state; g_type_init (); dbus_error_init (&error); connection = dbus_bus_get (DBUS_BUS_SYSTEM, &error); if (connection == NULL) { fprintf (stderr, "Error connecting to system bus: %s\n", error.message); dbus_error_free (&error); return 1; } state = get_nm_state (connection); if (state == NM_STATE_UNKNOWN) { fprintf (stderr, "NetworkManager appears not to be running (could not get its state). Will exit.\n"); return (1); } fprintf (stderr, "NM State: %u\n", state); path = get_active_device (connection); fprintf (stderr, "Active device: '%s'\n", path ? path : "(none)"); if (path) { char *name = get_object_name (connection, path); fprintf (stderr, "Active device name: '%s'\n", name ? name : "(none)"); g_free (name); } print_devices (connection); if (path && (argc == 2) && (get_device_type (connection, path) == DEVICE_TYPE_WIRELESS_ETHERNET)) { fprintf (stderr, "Attempting to force AP '%s' for device '%s'\n", argv[1], path); set_device_network (connection, path, argv[1]); } g_free (path); return 0; }