-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Add json parsing of ip addr show (SC-723) #1210
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
956e9c8
Add json parsing of ip addr show
TheRealFalcon a309366
be defensive with keys
TheRealFalcon a135cf4
ignore mask for ipv6 point-to-point
TheRealFalcon a135f2e
update regexes we know are broken (hopefully for the last time)
TheRealFalcon cb28c05
Add metric to netinfo test samples
TheRealFalcon 89fd664
regex is hard
TheRealFalcon ab6bb93
additional test and fix found by test
TheRealFalcon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,8 +8,10 @@ | |
| # | ||
| # This file is part of cloud-init. See LICENSE file for license information. | ||
|
|
||
| import json | ||
| import re | ||
| from copy import copy, deepcopy | ||
| from ipaddress import IPv4Network | ||
|
|
||
| from cloudinit import log as logging | ||
| from cloudinit import subp, util | ||
|
|
@@ -18,13 +20,84 @@ | |
|
|
||
| LOG = logging.getLogger() | ||
|
|
||
|
|
||
| # Example netdev format: | ||
| # {'eth0': {'hwaddr': '00:16:3e:16:db:54', | ||
| # 'ipv4': [{'bcast': '10.85.130.255', | ||
| # 'ip': '10.85.130.116', | ||
| # 'mask': '255.255.255.0', | ||
| # 'scope': 'global'}], | ||
| # 'ipv6': [{'ip': 'fd42:baa2:3dd:17a:216:3eff:fe16:db54/64', | ||
| # 'scope6': 'global'}, | ||
| # {'ip': 'fe80::216:3eff:fe16:db54/64', 'scope6': 'link'}], | ||
| # 'up': True}, | ||
| # 'lo': {'hwaddr': '', | ||
| # 'ipv4': [{'bcast': '', | ||
| # 'ip': '127.0.0.1', | ||
| # 'mask': '255.0.0.0', | ||
| # 'scope': 'host'}], | ||
| # 'ipv6': [{'ip': '::1/128', 'scope6': 'host'}], | ||
| # 'up': True}} | ||
| DEFAULT_NETDEV_INFO = {"ipv4": [], "ipv6": [], "hwaddr": "", "up": False} | ||
|
|
||
|
|
||
| def _netdev_info_iproute_json(ipaddr_json): | ||
| """Get network device dicts from ip route and ip link info. | ||
|
|
||
| ipaddr_json: Output string from 'ip --json addr' command. | ||
|
|
||
| Returns a dict of device info keyed by network device name containing | ||
| device configuration values. | ||
|
|
||
| Raises json.JSONDecodeError if json could not be decoded | ||
| """ | ||
| ipaddr_data = json.loads(ipaddr_json) | ||
| devs = {} | ||
|
|
||
| for dev in ipaddr_data: | ||
| flags = dev["flags"] if "flags" in dev else [] | ||
| address = dev["address"] if dev.get("link_type") == "ether" else "" | ||
| dev_info = { | ||
| "hwaddr": address, | ||
| "up": bool("UP" in flags and "LOWER_UP" in flags), | ||
| "ipv4": [], | ||
| "ipv6": [], | ||
| } | ||
| for addr in dev.get("addr_info", []): | ||
| if addr.get("family") == "inet": | ||
| mask = ( | ||
| str(IPv4Network(f'0.0.0.0/{addr["prefixlen"]}').netmask) | ||
| if "prefixlen" in addr | ||
| else "" | ||
| ) | ||
| parsed_addr = { | ||
| "ip": addr.get("local", ""), | ||
| "mask": mask, | ||
| "bcast": addr.get("broadcast", ""), | ||
| "scope": addr.get("scope", ""), | ||
| } | ||
| dev_info["ipv4"].append(parsed_addr) | ||
| elif addr["family"] == "inet6": | ||
| ip = addr.get("local", "") | ||
| # address here refers to a peer address, and according | ||
| # to "man 8 ip-address": | ||
| # If a peer address is specified, the local address cannot | ||
| # have a prefix length. The network prefix is associated | ||
| # with the peer rather than with the local address. | ||
| if ip and not addr.get("address"): | ||
| ip = f"{ip}/{addr.get('prefixlen', 64)}" | ||
| parsed_addr = { | ||
| "ip": ip, | ||
| "scope6": addr.get("scope", ""), | ||
| } | ||
| dev_info["ipv6"].append(parsed_addr) | ||
| devs[dev["ifname"]] = dev_info | ||
| return devs | ||
|
|
||
|
|
||
| def _netdev_info_iproute(ipaddr_out): | ||
| """ | ||
| Get network device dicts from ip route and ip link info. | ||
| DEPRECATED: Only used on distros that don't support ip json output | ||
| Use _netdev_info_iproute_json() when possible. | ||
|
|
||
| @param ipaddr_out: Output string from 'ip addr show' command. | ||
|
|
||
|
|
@@ -47,7 +120,10 @@ def _netdev_info_iproute(ipaddr_out): | |
| } | ||
| elif "inet6" in line: | ||
| m = re.match( | ||
| r"\s+inet6\s(?P<ip>\S+)\sscope\s(?P<scope6>\S+).*", line | ||
| r"\s+inet6\s(?P<ip>\S+)" | ||
| r"(\s(peer\s\S+))?" | ||
| r"\sscope\s(?P<scope6>\S+).*", | ||
| line, | ||
| ) | ||
| if not m: | ||
| LOG.warning( | ||
|
|
@@ -57,8 +133,10 @@ def _netdev_info_iproute(ipaddr_out): | |
| devs[dev_name]["ipv6"].append(m.groupdict()) | ||
| elif "inet" in line: | ||
| m = re.match( | ||
| r"\s+inet\s(?P<cidr4>\S+)(\sbrd\s(?P<bcast>\S+))?\sscope\s" | ||
| r"(?P<scope>\S+).*", | ||
| r"\s+inet\s(?P<cidr4>\S+)" | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nice, since you've added it, let's keep it. But yes no need to maintain both long-term. Ultimately, let's plan on dropping this function in 22.2 upstream release |
||
| r"(\smetric\s(?P<metric>\d+))?" | ||
| r"(\sbrd\s(?P<bcast>\S+))?" | ||
| r"\sscope\s(?P<scope>\S+).*", | ||
| line, | ||
| ) | ||
| if not m: | ||
|
|
@@ -209,8 +287,13 @@ def netdev_info(empty=""): | |
| devs = _netdev_info_ifconfig_netbsd(ifcfg_out) | ||
| elif subp.which("ip"): | ||
| # Try iproute first of all | ||
| (ipaddr_out, _err) = subp.subp(["ip", "addr", "show"]) | ||
| devs = _netdev_info_iproute(ipaddr_out) | ||
| try: | ||
| (ipaddr_out, _err) = subp.subp(["ip", "--json", "addr"]) | ||
| devs = _netdev_info_iproute_json(ipaddr_out) | ||
| except subp.ProcessExecutionError: | ||
| # Can be removed when "ip --json" is available everywhere | ||
| (ipaddr_out, _err) = subp.subp(["ip", "addr", "show"]) | ||
| devs = _netdev_info_iproute(ipaddr_out) | ||
| elif subp.which("ifconfig"): | ||
| # Fall back to net-tools if iproute2 is not present | ||
| (ifcfg_out, _err) = subp.subp(["ifconfig", "-a"], rcs=[0, 1]) | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,91 @@ | ||
| [ | ||
| { | ||
| "ifindex": 1, | ||
| "ifname": "lo", | ||
| "flags": [ | ||
| "LOOPBACK", | ||
| "UP", | ||
| "LOWER_UP" | ||
| ], | ||
| "mtu": 65536, | ||
| "qdisc": "noqueue", | ||
| "operstate": "UNKNOWN", | ||
| "group": "default", | ||
| "txqlen": 1000, | ||
| "link_type": "loopback", | ||
| "address": "00:00:00:00:00:00", | ||
| "broadcast": "00:00:00:00:00:00", | ||
| "addr_info": [ | ||
| { | ||
| "family": "inet", | ||
| "local": "127.0.0.1", | ||
| "prefixlen": 8, | ||
| "scope": "host", | ||
| "label": "lo", | ||
| "valid_life_time": 4294967295, | ||
| "preferred_life_time": 4294967295 | ||
| }, | ||
| { | ||
| "family": "inet6", | ||
| "local": "::1", | ||
| "prefixlen": 128, | ||
| "scope": "host", | ||
| "valid_life_time": 4294967295, | ||
| "preferred_life_time": 4294967295 | ||
| } | ||
| ] | ||
| }, | ||
| { | ||
| "ifindex": 23, | ||
| "link_index": 24, | ||
| "ifname": "enp0s25", | ||
| "flags": [ | ||
| "BROADCAST", | ||
| "MULTICAST", | ||
| "UP", | ||
| "LOWER_UP" | ||
| ], | ||
| "mtu": 1500, | ||
| "qdisc": "noqueue", | ||
| "operstate": "UP", | ||
| "group": "default", | ||
| "txqlen": 1000, | ||
| "link_type": "ether", | ||
| "address": "50:7b:9d:2c:af:91", | ||
| "broadcast": "ff:ff:ff:ff:ff:ff", | ||
| "link_netnsid": 0, | ||
| "addr_info": [ | ||
| { | ||
| "family": "inet", | ||
| "local": "192.168.2.18", | ||
| "prefixlen": 24, | ||
| "metric": 100, | ||
| "broadcast": "192.168.2.255", | ||
| "scope": "global", | ||
| "dynamic": true, | ||
| "label": "enp0s25", | ||
| "valid_life_time": 2339, | ||
| "preferred_life_time": 2339 | ||
| }, | ||
| { | ||
| "family": "inet6", | ||
| "local": "fe80::7777:2222:1111:eeee", | ||
| "prefixlen": 64, | ||
| "scope": "global", | ||
| "dynamic": true, | ||
| "mngtmpaddr": true, | ||
| "noprefixroute": true, | ||
| "valid_life_time": 6823, | ||
| "preferred_life_time": 3223 | ||
| }, | ||
| { | ||
| "family": "inet6", | ||
| "local": "fe80::8107:2b92:867e:f8a6", | ||
| "prefixlen": 64, | ||
| "scope": "link", | ||
| "valid_life_time": 4294967295, | ||
| "preferred_life_time": 4294967295 | ||
| } | ||
| ] | ||
| } | ||
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,57 @@ | ||
| [ | ||
| { | ||
| "ifindex": 1, | ||
| "ifname": "lo", | ||
| "flags": [ | ||
| "LOOPBACK", | ||
| "UP", | ||
| "LOWER_UP" | ||
| ], | ||
| "mtu": 65536, | ||
| "qdisc": "noqueue", | ||
| "operstate": "UNKNOWN", | ||
| "group": "default", | ||
| "txqlen": 1000, | ||
| "link_type": "loopback", | ||
| "address": "00:00:00:00:00:00", | ||
| "broadcast": "00:00:00:00:00:00", | ||
| "addr_info": [ | ||
| { | ||
| "family": "inet", | ||
| "local": "127.0.0.1", | ||
| "prefixlen": 8, | ||
| "scope": "host", | ||
| "label": "lo", | ||
| "valid_life_time": 4294967295, | ||
| "preferred_life_time": 4294967295 | ||
| }, | ||
| { | ||
| "family": "inet6", | ||
| "local": "::1", | ||
| "prefixlen": 128, | ||
| "scope": "host", | ||
| "valid_life_time": 4294967295, | ||
| "preferred_life_time": 4294967295 | ||
| } | ||
| ] | ||
| }, | ||
| { | ||
| "ifindex": 23, | ||
| "link_index": 24, | ||
| "ifname": "eth0", | ||
| "flags": [ | ||
| "BROADCAST", | ||
| "MULTICAST" | ||
| ], | ||
| "mtu": 1500, | ||
| "qdisc": "noqueue", | ||
| "operstate": "DOWN", | ||
| "group": "default", | ||
| "txqlen": 1000, | ||
| "link_type": "ether", | ||
| "address": "00:16:3e:de:51:a6", | ||
| "broadcast": "ff:ff:ff:ff:ff:ff", | ||
| "link_netnsid": 0, | ||
| "addr_info": [] | ||
| } | ||
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1 thanks for this clarification here + comments