|
@@ -27,6 +27,7 @@
|
|
|
#include "dbus_new_handlers.h"
|
|
|
#include "dbus_dict_helpers.h"
|
|
|
#include "dbus_common_i.h"
|
|
|
+#include "drivers/driver.h"
|
|
|
|
|
|
static const char *debug_strings[] = {
|
|
|
"excessive", "msgdump", "debug", "info", "warning", "error", NULL
|
|
@@ -1401,6 +1402,88 @@ out:
|
|
|
}
|
|
|
|
|
|
|
|
|
+/**
|
|
|
+ * wpas_dbus_handler_signal_poll - Request immediate signal properties
|
|
|
+ * @message: Pointer to incoming dbus message
|
|
|
+ * @wpa_s: wpa_supplicant structure for a network interface
|
|
|
+ * Returns: NULL indicating success or DBus error message on failure
|
|
|
+ *
|
|
|
+ * Handler function for "SignalPoll" method call of a network device. Requests
|
|
|
+ * that wpa_supplicant read signal properties like RSSI, noise, and link
|
|
|
+ * speed and return them.
|
|
|
+ */
|
|
|
+DBusMessage * wpas_dbus_handler_signal_poll(DBusMessage *message,
|
|
|
+ struct wpa_supplicant *wpa_s)
|
|
|
+{
|
|
|
+ struct wpa_signal_info si;
|
|
|
+ DBusMessage *reply = NULL;
|
|
|
+ DBusMessageIter iter, iter_dict, variant_iter;
|
|
|
+ int ret;
|
|
|
+
|
|
|
+ ret = wpa_drv_signal_poll(wpa_s, &si);
|
|
|
+ if (ret) {
|
|
|
+ return dbus_message_new_error(message, DBUS_ERROR_FAILED,
|
|
|
+ "Failed to read signal");
|
|
|
+ }
|
|
|
+
|
|
|
+ reply = dbus_message_new_method_return(message);
|
|
|
+ if (reply == NULL)
|
|
|
+ goto nomem;
|
|
|
+
|
|
|
+ dbus_message_iter_init_append(reply, &iter);
|
|
|
+
|
|
|
+ if (!dbus_message_iter_open_container(&iter, DBUS_TYPE_VARIANT,
|
|
|
+ "a{sv}", &variant_iter))
|
|
|
+ goto nomem;
|
|
|
+ if (!wpa_dbus_dict_open_write(&variant_iter, &iter_dict))
|
|
|
+ goto nomem;
|
|
|
+
|
|
|
+ if (!wpa_dbus_dict_append_int32(&iter_dict, "rssi", si.current_signal))
|
|
|
+ goto nomem;
|
|
|
+ if (!wpa_dbus_dict_append_int32(&iter_dict, "linkspeed",
|
|
|
+ si.current_txrate / 1000))
|
|
|
+ goto nomem;
|
|
|
+ if (!wpa_dbus_dict_append_int32(&iter_dict, "noise", si.current_noise))
|
|
|
+ goto nomem;
|
|
|
+ if (!wpa_dbus_dict_append_uint32(&iter_dict, "frequency", si.frequency))
|
|
|
+ goto nomem;
|
|
|
+
|
|
|
+ if (si.chanwidth != CHAN_WIDTH_UNKNOWN) {
|
|
|
+ if (!wpa_dbus_dict_append_string(&iter_dict, "width",
|
|
|
+ channel_width_to_string(si.chanwidth)))
|
|
|
+ goto nomem;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (si.center_frq1 > 0 && si.center_frq2 > 0) {
|
|
|
+ if (!wpa_dbus_dict_append_int32(&iter_dict, "center-frq1",
|
|
|
+ si.center_frq1))
|
|
|
+ goto nomem;
|
|
|
+ if (!wpa_dbus_dict_append_int32(&iter_dict, "center-frq2",
|
|
|
+ si.center_frq2))
|
|
|
+ goto nomem;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (si.avg_signal) {
|
|
|
+ if (!wpa_dbus_dict_append_int32(&iter_dict, "avg-rssi",
|
|
|
+ si.avg_signal))
|
|
|
+ goto nomem;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!wpa_dbus_dict_close_write(&variant_iter, &iter_dict))
|
|
|
+ goto nomem;
|
|
|
+ if (!dbus_message_iter_close_container(&iter, &variant_iter))
|
|
|
+ goto nomem;
|
|
|
+
|
|
|
+ return reply;
|
|
|
+
|
|
|
+nomem:
|
|
|
+ if (reply)
|
|
|
+ dbus_message_unref(reply);
|
|
|
+ reply = dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY, NULL);
|
|
|
+ return reply;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
/*
|
|
|
* wpas_dbus_handler_disconnect - Terminate the current connection
|
|
|
* @message: Pointer to incoming dbus message
|