wpa_supplicant / hostapd
2.5
|
WPA Supplicant / Configuration file structures. More...
#include "config_ssid.h"
#include "wps/wps.h"
#include "common/ieee802_11_defs.h"
#include "common/ieee802_11_common.h"
Go to the source code of this file.
Data Structures | |
struct | wpa_cred |
struct | wpa_cred::excluded_ssid |
struct | wpa_cred::roaming_partner |
struct | wpa_config |
wpa_supplicant configuration data More... | |
Functions | |
void | wpa_config_free (struct wpa_config *ssid) |
Free configuration data. More... | |
void | wpa_config_free_ssid (struct wpa_ssid *ssid) |
Free network/ssid configuration data. More... | |
void | wpa_config_foreach_network (struct wpa_config *config, void(*func)(void *, struct wpa_ssid *), void *arg) |
Iterate over each configured network. More... | |
struct wpa_ssid * | wpa_config_get_network (struct wpa_config *config, int id) |
Get configured network based on id. More... | |
struct wpa_ssid * | wpa_config_add_network (struct wpa_config *config) |
Add a new network with empty configuration. More... | |
int | wpa_config_remove_network (struct wpa_config *config, int id) |
Remove a configured network based on id. More... | |
void | wpa_config_set_network_defaults (struct wpa_ssid *ssid) |
Set network default values. More... | |
int | wpa_config_set (struct wpa_ssid *ssid, const char *var, const char *value, int line) |
Set a variable in network configuration. More... | |
int | wpa_config_set_quoted (struct wpa_ssid *ssid, const char *var, const char *value) |
int | wpa_config_dump_values (struct wpa_config *config, char *buf, size_t buflen) |
int | wpa_config_get_value (const char *name, struct wpa_config *config, char *buf, size_t buflen) |
char ** | wpa_config_get_all (struct wpa_ssid *ssid, int get_keys) |
Get all options from network configuration. More... | |
char * | wpa_config_get (struct wpa_ssid *ssid, const char *var) |
Get a variable in network configuration. More... | |
char * | wpa_config_get_no_key (struct wpa_ssid *ssid, const char *var) |
Get a variable in network configuration (no keys) More... | |
void | wpa_config_update_psk (struct wpa_ssid *ssid) |
Update WPA PSK based on passphrase and SSID. More... | |
int | wpa_config_add_prio_network (struct wpa_config *config, struct wpa_ssid *ssid) |
Add a network to priority lists. More... | |
int | wpa_config_update_prio_list (struct wpa_config *config) |
Update network priority list. More... | |
const struct wpa_config_blob * | wpa_config_get_blob (struct wpa_config *config, const char *name) |
Get a named configuration blob. More... | |
void | wpa_config_set_blob (struct wpa_config *config, struct wpa_config_blob *blob) |
Set or add a named configuration blob. More... | |
void | wpa_config_free_blob (struct wpa_config_blob *blob) |
Free blob data. More... | |
int | wpa_config_remove_blob (struct wpa_config *config, const char *name) |
Remove a named configuration blob. More... | |
void | wpa_config_flush_blobs (struct wpa_config *config) |
struct wpa_cred * | wpa_config_get_cred (struct wpa_config *config, int id) |
struct wpa_cred * | wpa_config_add_cred (struct wpa_config *config) |
int | wpa_config_remove_cred (struct wpa_config *config, int id) |
void | wpa_config_free_cred (struct wpa_cred *cred) |
int | wpa_config_set_cred (struct wpa_cred *cred, const char *var, const char *value, int line) |
char * | wpa_config_get_cred_no_key (struct wpa_cred *cred, const char *var) |
struct wpa_config * | wpa_config_alloc_empty (const char *ctrl_interface, const char *driver_param) |
Allocate an empty configuration. More... | |
void | wpa_config_debug_dump_networks (struct wpa_config *config) |
Debug dump of configured networks. More... | |
int | wpa_config_process_global (struct wpa_config *config, char *pos, int line) |
struct wpa_config * | wpa_config_read (const char *name, struct wpa_config *cfgp) |
Read and parse configuration database. More... | |
int | wpa_config_write (const char *name, struct wpa_config *config) |
Write or update configuration data. More... | |
WPA Supplicant / Configuration file structures.
struct wpa_ssid* wpa_config_add_network | ( | struct wpa_config * | config | ) |
Add a new network with empty configuration.
config | Configuration data from wpa_config_read() |
int wpa_config_add_prio_network | ( | struct wpa_config * | config, |
struct wpa_ssid * | ssid | ||
) |
Add a network to priority lists.
config | Configuration data from wpa_config_read() |
ssid | Pointer to the network configuration to be added to the list |
This function is used to add a network block to the priority list of networks. This must be called for each network when reading in the full configuration. In addition, this can be used indirectly when updating priorities by calling wpa_config_update_prio_list().
struct wpa_config* wpa_config_alloc_empty | ( | const char * | ctrl_interface, |
const char * | driver_param | ||
) |
Allocate an empty configuration.
ctrl_interface | Control interface parameters, e.g., path to UNIX domain socket |
driver_param | Driver parameters |
void wpa_config_debug_dump_networks | ( | struct wpa_config * | config | ) |
Debug dump of configured networks.
config | Configuration data from wpa_config_read() |
void wpa_config_foreach_network | ( | struct wpa_config * | config, |
void(*)(void *, struct wpa_ssid *) | func, | ||
void * | arg | ||
) |
Iterate over each configured network.
config | Configuration data from wpa_config_read() |
func | Callback function to process each network |
arg | Opaque argument to pass to callback function |
Iterate over the set of configured networks calling the specified function for each item. We guard against callbacks removing the supplied network.
void wpa_config_free | ( | struct wpa_config * | config | ) |
Free configuration data.
config | Configuration data from wpa_config_read() |
This function frees all resources allocated for the configuration data by wpa_config_read().
void wpa_config_free_blob | ( | struct wpa_config_blob * | blob | ) |
Free blob data.
blob | Pointer to blob to be freed |
void wpa_config_free_ssid | ( | struct wpa_ssid * | ssid | ) |
Free network/ssid configuration data.
ssid | Configuration data for the network |
This function frees all resources allocated for the network configuration data.
char* wpa_config_get | ( | struct wpa_ssid * | ssid, |
const char * | var | ||
) |
Get a variable in network configuration.
ssid | Pointer to network configuration data |
var | Variable name, e.g., "ssid" |
This function can be used to get network configuration variables. The returned value is a copy of the configuration variable in text format, i.e,. the same format that the text-based configuration file and wpa_config_set() are using for the value. The caller is responsible for freeing the returned value.
char** wpa_config_get_all | ( | struct wpa_ssid * | ssid, |
int | get_keys | ||
) |
Get all options from network configuration.
ssid | Pointer to network configuration data |
get_keys | Determines if keys/passwords will be included in returned list (if they may be exported) |
This function can be used to get list of all configured network properties. The caller is responsible for freeing the returned list and all its elements.
const struct wpa_config_blob* wpa_config_get_blob | ( | struct wpa_config * | config, |
const char * | name | ||
) |
Get a named configuration blob.
config | Configuration data from wpa_config_read() |
name | Name of the blob |
struct wpa_ssid* wpa_config_get_network | ( | struct wpa_config * | config, |
int | id | ||
) |
Get configured network based on id.
config | Configuration data from wpa_config_read() |
id | Unique network id to search for |
char* wpa_config_get_no_key | ( | struct wpa_ssid * | ssid, |
const char * | var | ||
) |
Get a variable in network configuration (no keys)
ssid | Pointer to network configuration data |
var | Variable name, e.g., "ssid" |
This function can be used to get network configuration variable like wpa_config_get(). The only difference is that this functions does not expose key/password material from the configuration. In case a key/password field is requested, the returned value is an empty string or NULL if the variable is not set or "*" if the variable is set (regardless of its value). The returned value is a copy of the configuration variable in text format, i.e,. the same format that the text-based configuration file and wpa_config_set() are using for the value. The caller is responsible for freeing the returned value.
struct wpa_config* wpa_config_read | ( | const char * | name, |
struct wpa_config * | cfgp | ||
) |
Read and parse configuration database.
name | Name of the configuration (e.g., path and file name for the configuration file) |
cfgp | Pointer to previously allocated configuration data or NULL if none |
This function reads configuration data, parses its contents, and allocates data structures needed for storing configuration information. The allocated data can be freed with wpa_config_free().
Each configuration backend needs to implement this function.
int wpa_config_remove_blob | ( | struct wpa_config * | config, |
const char * | name | ||
) |
Remove a named configuration blob.
config | Configuration data from wpa_config_read() |
name | Name of the blob to remove |
int wpa_config_remove_network | ( | struct wpa_config * | config, |
int | id | ||
) |
Remove a configured network based on id.
config | Configuration data from wpa_config_read() |
id | Unique network id to search for |
int wpa_config_set | ( | struct wpa_ssid * | ssid, |
const char * | var, | ||
const char * | value, | ||
int | line | ||
) |
Set a variable in network configuration.
ssid | Pointer to network configuration data |
var | Variable name, e.g., "ssid" |
value | Variable value |
line | Line number in configuration file or 0 if not used |
This function can be used to set network configuration variables based on both the configuration file and management interface input. The value parameter must be in the same format as the text-based configuration file is using. For example, strings are using double quotation marks.
void wpa_config_set_blob | ( | struct wpa_config * | config, |
struct wpa_config_blob * | blob | ||
) |
Set or add a named configuration blob.
config | Configuration data from wpa_config_read() |
blob | New value for the blob |
Adds a new configuration blob or replaces the current value of an existing blob.
void wpa_config_set_network_defaults | ( | struct wpa_ssid * | ssid | ) |
Set network default values.
ssid | Pointer to network configuration data |
int wpa_config_update_prio_list | ( | struct wpa_config * | config | ) |
Update network priority list.
config | Configuration data from wpa_config_read() |
This function is called to update the priority list of networks in the configuration when a network is being added or removed. This is also called if a priority for a network is changed.
void wpa_config_update_psk | ( | struct wpa_ssid * | ssid | ) |
Update WPA PSK based on passphrase and SSID.
ssid | Pointer to network configuration data |
This function must be called to update WPA PSK when either SSID or the passphrase has changed for the network configuration.
int wpa_config_write | ( | const char * | name, |
struct wpa_config * | config | ||
) |
Write or update configuration data.
name | Name of the configuration (e.g., path and file name for the configuration file) |
config | Configuration data from wpa_config_read() |
This function write all configuration data into an external database (e.g., a text file) in a format that can be read with wpa_config_read(). This can be used to allow wpa_supplicant to update its configuration, e.g., when a new network is added or a password is changed.
Each configuration backend needs to implement this function.