Sto provando a scrivere del codice per comunicare con wpa_supplicant usando DBUS. Dato che sto lavorando su un sistema embedded (ARM), vorrei evitare l'uso di Python o GLib. Mi chiedo se sono stupido perché ho davvero la sensazione che non ci sia una documentazione chiara e chiara su D-Bus. Anche con quello ufficiale, o trovo la documentazione di livello troppo alto, o gli esempi mostrati stanno usando Glib! Documentazione Ho guardato: http://www.freedesktop.org/wiki/Software/dbusTutorial D-Bus in C per comunicare con wpa_supplicant
ho trovato un bel articolo sull'utilizzo di D-Bus in C: http://www.matthew.ath.cx/articles/dbus
Tuttavia, questo articolo è piuttosto vecchio e non abbastanza completo! Ho anche trovato l'API C++ - dbus ma anche qui, non trovo NESSUNA documentazione! Sto scavando nel codice sorgente di wpa_supplicant e NetworkManager ma è un vero incubo! Ho esaminato anche le "API D-Bus di basso livello" ma questo non mi dice come estrarre un parametro stringa da un messaggio D-Bus! http://dbus.freedesktop.org/doc/api/html/index.html
Ecco un codice che ho scritto per testare un po 'ma ho davvero problemi ad estrarre i valori stringa. Ci scusiamo per il codice sorgente a lungo, ma se qualcuno vuole provare ... La mia configurazione D-Bus sembra che vada bene perché "già" catture "StateChanged" i segnali provenienti da wpa_supplicant, ma non è possibile stampare lo stato:
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <signal.h>
#include <string.h>
#include <dbus/dbus.h>
//#include "wpa_supp_dbus.h"
/* Content of wpa_supp_dbus.h */
#define WPAS_DBUS_SERVICE "fi.epitest.hostap.WPASupplicant"
#define WPAS_DBUS_PATH "/fi/epitest/hostap/WPASupplicant"
#define WPAS_DBUS_INTERFACE "fi.epitest.hostap.WPASupplicant"
#define WPAS_DBUS_PATH_INTERFACES WPAS_DBUS_PATH "/Interfaces"
#define WPAS_DBUS_IFACE_INTERFACE WPAS_DBUS_INTERFACE ".Interface"
#define WPAS_DBUS_NETWORKS_PART "Networks"
#define WPAS_DBUS_IFACE_NETWORK WPAS_DBUS_INTERFACE ".Network"
#define WPAS_DBUS_BSSIDS_PART "BSSIDs"
#define WPAS_DBUS_IFACE_BSSID WPAS_DBUS_INTERFACE ".BSSID"
int running = 1;
void stopLoop(int sig)
{
running = 0;
}
void sendScan()
{
// TODO !
}
void loop(DBusConnection* conn)
{
DBusMessage* msg;
DBusMessageIter args;
DBusMessageIter subArgs;
int argType;
int i;
int buffSize = 1024;
char strValue[buffSize];
const char* member = 0;
sendScan();
while (running)
{
// non blocking read of the next available message
dbus_connection_read_write(conn, 0);
msg = dbus_connection_pop_message(conn);
// loop again if we haven't read a message
if (!msg)
{
printf("No message received, waiting a little ...\n");
sleep(1);
continue;
}
else printf("Got a message, will analyze it ...\n");
// Print the message member
printf("Got message for interface %s\n",
dbus_message_get_interface(msg));
member = dbus_message_get_member(msg);
if(member) printf("Got message member %s\n", member);
// Check has argument
if (!dbus_message_iter_init(msg, &args))
{
printf("Message has no argument\n");
continue;
}
else
{
// Go through arguments
while(1)
{
argType = dbus_message_iter_get_arg_type(&args);
if (argType == DBUS_TYPE_STRING)
{
printf("Got string argument, extracting ...\n");
/* FIXME : got weird characters
dbus_message_iter_get_basic(&args, &strValue);
*/
/* FIXME : segmentation fault !
dbus_message_iter_get_fixed_array(
&args, &strValue, buffSize);
*/
/* FIXME : segmentation fault !
dbus_message_iter_recurse(&args, &subArgs);
*/
/* FIXME : deprecated!
if(dbus_message_iter_get_array_len(&args) > buffSize)
printf("message content to big for local buffer!");
*/
//printf("String value was %s\n", strValue);
}
else
printf("Arg type not implemented yet !\n");
if(dbus_message_iter_has_next(&args))
dbus_message_iter_next(&args);
else break;
}
printf("No more arguments!\n");
}
// free the message
dbus_message_unref(msg);
}
}
int main(int argc, char* argv[])
{
DBusError err;
DBusConnection* conn;
int ret;
char signalDesc[1024]; // Signal description as string
// Signal handling
signal(SIGKILL, stopLoop);
signal(SIGTERM, stopLoop);
// Initialize err struct
dbus_error_init(&err);
// connect to the bus
conn = dbus_bus_get(DBUS_BUS_SYSTEM, &err);
if (dbus_error_is_set(&err))
{
fprintf(stderr, "Connection Error (%s)\n", err.message);
dbus_error_free(&err);
}
if (!conn)
{
exit(1);
}
// request a name on the bus
ret = dbus_bus_request_name(conn, WPAS_DBUS_SERVICE, 0, &err);
if (dbus_error_is_set(&err))
{
fprintf(stderr, "Name Error (%s)\n", err.message);
dbus_error_free(&err);
}
/* Connect to signal */
// Interface signal ..
sprintf(signalDesc, "type='signal',interface='%s'",
WPAS_DBUS_IFACE_INTERFACE);
dbus_bus_add_match(conn, signalDesc, &err);
dbus_connection_flush(conn);
if (dbus_error_is_set(&err))
{
fprintf(stderr, "Match Error (%s)\n", err.message);
exit(1);
}
// Network signal ..
sprintf(signalDesc, "type='signal',interface='%s'",
WPAS_DBUS_IFACE_NETWORK);
dbus_bus_add_match(conn, signalDesc, &err);
dbus_connection_flush(conn);
if (dbus_error_is_set(&err))
{
fprintf(stderr, "Match Error (%s)\n", err.message);
exit(1);
}
// Bssid signal ..
sprintf(signalDesc, "type='signal',interface='%s'",
WPAS_DBUS_IFACE_BSSID);
dbus_bus_add_match(conn, signalDesc, &err);
dbus_connection_flush(conn);
if (dbus_error_is_set(&err))
{
fprintf(stderr, "Match Error (%s)\n", err.message);
exit(1);
}
// Do main loop
loop(conn);
// Main loop exited
printf("Main loop stopped, exiting ...\n");
dbus_connection_close(conn);
return 0;
}
Qualsiasi puntatore un tutorial C carino, completo e di basso livello è molto apprezzato! Sto anche pensando di fare qualche chiamata a metodo remota, quindi se il tutorial copre questo argomento sarebbe fantastico! Dire che non sono molto intelligente perché non lo capisco con il tutorial ufficiale è anche apprezzato :-p!
Oppure c'è un altro modo per comunicare con wpa_supplicant (tranne che usando wpa_cli)?
EDIT 1:
Usando 'qdbusviewer' e la capabilty introspezione, questo mi ha aiutato molto scoprire cosa e come funziona wpa_supplicant utilizzando dbus. Saltellando che questo aiuterebbe qualcun altro!
Edit 2:
probabilmente verrà quando troverò un modo per leggere i valori di stringa su D-Bus!
Hai trovato un modo per leggere i valori di stringa su D-Bus? –