Skip to content

Commit

Permalink
[netdevice] Add "ifname" setting
Browse files Browse the repository at this point in the history
Expose the network interface name (e.g. "net0") as a setting.  This
allows a script to obtain the name of the most recently opened network
interface via ${netX/ifname}.

Signed-off-by: Andrew Widdersheim <amwiddersheim@gmail.com>
Modified-by: Michael Brown <mcb30@ipxe.org>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
  • Loading branch information
awiddersheim authored and mcb30 committed Jan 18, 2016
1 parent cc25260 commit 3fd8179
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions src/net/netdev_settings.c
Expand Up @@ -65,6 +65,11 @@ const struct setting chip_setting __setting ( SETTING_NETDEV, chip ) = {
.description = "Chip",
.type = &setting_type_string,
};
const struct setting ifname_setting __setting ( SETTING_NETDEV, ifname ) = {
.name = "ifname",
.description = "Interface name",
.type = &setting_type_string,
};

/**
* Store MAC address setting
Expand Down Expand Up @@ -199,6 +204,22 @@ static int netdev_fetch_chip ( struct net_device *netdev, void *data,
return strlen ( chip );
}

/**
* Fetch ifname setting
*
* @v netdev Network device
* @v data Buffer to fill with setting data
* @v len Length of buffer
* @ret len Length of setting data, or negative error
*/
static int netdev_fetch_ifname ( struct net_device *netdev, void *data,
size_t len ) {
const char *ifname = netdev->name;

strncpy ( data, ifname, len );
return strlen ( ifname );
}

/** A network device setting operation */
struct netdev_setting_operation {
/** Setting */
Expand Down Expand Up @@ -229,6 +250,7 @@ static struct netdev_setting_operation netdev_setting_operations[] = {
{ &busloc_setting, NULL, netdev_fetch_busloc },
{ &busid_setting, NULL, netdev_fetch_busid },
{ &chip_setting, NULL, netdev_fetch_chip },
{ &ifname_setting, NULL, netdev_fetch_ifname },
};

/**
Expand Down

0 comments on commit 3fd8179

Please sign in to comment.