1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
|
#!/usr/bin/python3
#
# Integration tests for wireless devices
#
# These need to be run in a VM and do change the system
# configuration.
#
# Copyright (C) 2018-2021 Canonical, Ltd.
# Author: Mathieu Trudel-Lapierre <mathieu.trudel-lapierre@canonical.com>
# Author: Lukas Märdian <slyon@ubuntu.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 3.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import sys
import subprocess
import unittest
from base import IntegrationTestsWifi, test_backends
class _CommonTests():
@unittest.skip("Unsupported matching by driver / wifi matching makes this untestable for now")
def test_mapping_for_driver(self):
self.setup_ap('hw_mode=b\nchannel=1\nssid=fake net', None)
with open(self.config, 'w') as f:
f.write('''network:
renderer: %(r)s
wifis:
wifi_ifs:
match:
driver: mac80211_hwsim
dhcp4: yes
access-points:
"fake net": {}
decoy: {}''' % {'r': self.backend})
self.generate_and_settle([self.state_dhcp4(self.dev_w_client)])
p = subprocess.Popen(['netplan', 'generate', '--mapping', 'mac80211_hwsim'],
stdout=subprocess.PIPE)
out = p.communicate()[0]
self.assertEquals(p.returncode, 1)
self.assertIn(b'mac80211_hwsim', out)
def test_wifi_ipv4_open(self):
self.setup_ap('hw_mode=b\nchannel=1\nssid=fake net', None)
with open(self.config, 'w') as f:
f.write('''network:
renderer: %(r)s
wifis:
%(wc)s:
dhcp4: yes
access-points:
"fake net": {}
decoy: {}''' % {'r': self.backend, 'wc': self.dev_w_client})
self.generate_and_settle([self.state_dhcp4(self.dev_w_client)])
self.assert_iface_up(self.dev_w_client, ['inet 192.168.5.[0-9]+/24'])
self.assertIn(b'default via 192.168.5.1', # from DHCP
subprocess.check_output(['ip', 'route', 'show', 'dev', self.dev_w_client]))
if self.backend == 'NetworkManager':
out = subprocess.check_output(['nmcli', 'dev', 'show', self.dev_w_client],
text=True)
self.assertRegex(out, 'GENERAL.CONNECTION.*netplan-%s-fake net' % self.dev_w_client)
self.assertRegex(out, 'IP4.DNS.*192.168.5.1')
else:
out = subprocess.check_output(['networkctl', 'status', self.dev_w_client],
text=True)
self.assertRegex(out, 'DNS.*192.168.5.1')
def test_wifi_ipv4_wpa2(self):
self.setup_ap('''hw_mode=g
channel=1
ssid=fake net
wpa=1
wpa_key_mgmt=WPA-PSK
wpa_pairwise=TKIP
wpa_passphrase=12345678
''', None)
with open(self.config, 'w') as f:
f.write('''network:
renderer: %(r)s
wifis:
%(wc)s:
dhcp4: yes
access-points:
"fake net":
password: 12345678
decoy: {}''' % {'r': self.backend, 'wc': self.dev_w_client})
self.generate_and_settle([self.state_dhcp4(self.dev_w_client)])
self.assert_iface_up(self.dev_w_client, ['inet 192.168.5.[0-9]+/24'])
self.assertIn(b'default via 192.168.5.1', # from DHCP
subprocess.check_output(['ip', 'route', 'show', 'dev', self.dev_w_client]))
if self.backend == 'NetworkManager':
out = subprocess.check_output(['nmcli', 'dev', 'show', self.dev_w_client],
text=True)
self.assertRegex(out, 'GENERAL.CONNECTION.*netplan-%s-fake net' % self.dev_w_client)
self.assertRegex(out, 'IP4.DNS.*192.168.5.1')
else:
out = subprocess.check_output(['networkctl', 'status', self.dev_w_client],
text=True)
self.assertRegex(out, 'DNS.*192.168.5.1')
def test_wifi_ipv4_wpa2_psk_sha256_only(self):
self.setup_ap('''hw_mode=g
channel=1
ssid=fake net
wpa=2
wpa_key_mgmt=WPA-PSK-SHA256
wpa_pairwise=CCMP
ieee80211w=2
wpa_passphrase=12345678
''', None)
with open(self.config, 'w') as f:
f.write('''network:
renderer: %(r)s
wifis:
%(wc)s:
dhcp4: yes
access-points:
"fake net":
auth:
key-management: psk-sha256
password: 12345678
decoy: {}''' % {'r': self.backend, 'wc': self.dev_w_client})
self.generate_and_settle([self.state_dhcp4(self.dev_w_client)])
self.assert_iface_up(self.dev_w_client, ['inet 192.168.5.[0-9]+/24'])
self.assertIn(b'default via 192.168.5.1', # from DHCP
subprocess.check_output(['ip', 'route', 'show', 'dev', self.dev_w_client]))
if self.backend == 'NetworkManager':
out = subprocess.check_output(['nmcli', 'dev', 'show', self.dev_w_client],
text=True)
self.assertRegex(out, 'GENERAL.CONNECTION.*netplan-%s-fake net' % self.dev_w_client)
self.assertRegex(out, 'IP4.DNS.*192.168.5.1')
else:
out = subprocess.check_output(['networkctl', 'status', self.dev_w_client],
text=True)
self.assertRegex(out, 'DNS.*192.168.5.1')
def test_wifi_regdom(self):
self.setup_ap('''hw_mode=g
channel=1
ssid=fake net
wpa=1
wpa_key_mgmt=WPA-PSK
wpa_pairwise=TKIP
wpa_passphrase=12345678
''', None)
out = subprocess.check_output(['iw', 'reg', 'get'], text=True)
self.assertNotIn('country GB', out)
with open(self.config, 'w') as f:
f.write('''network:
renderer: %(r)s
wifis:
%(wc)s:
addresses: ["192.168.1.42/24"]
regulatory-domain: GB
access-points:
"fake net":
password: 12345678''' % {'r': self.backend, 'wc': self.dev_w_client})
self.generate_and_settle([self.dev_w_client])
self.assert_iface_up(self.dev_w_client, ['inet 192.168.1.42/24'])
out = subprocess.check_output(['iw', 'reg', 'get'], text=True)
self.assertIn('global\ncountry GB', out)
@unittest.skipIf("networkd" not in test_backends,
"skipping as networkd backend tests are disabled")
class TestNetworkd(IntegrationTestsWifi, _CommonTests):
backend = 'networkd'
@unittest.skipIf("NetworkManager" not in test_backends,
"skipping as NetworkManager backend tests are disabled")
class TestNetworkManager(IntegrationTestsWifi, _CommonTests):
backend = 'NetworkManager'
def test_wifi_ap_open(self):
# we use dev_w_client and dev_w_ap in switched roles here, to keep the
# existing device denylisting in NM; i. e. dev_w_client is the
# NM-managed AP, and dev_w_ap the manually managed client
with open(self.config, 'w') as f:
f.write('''network:
wifis:
renderer: NetworkManager
%(wc)s:
dhcp4: yes
access-points:
"fake net":
mode: ap''' % {'wc': self.dev_w_client})
self.generate_and_settle([self.state(self.dev_w_client, 'inet 10.')])
out = subprocess.check_output(['iw', 'dev', self.dev_w_client, 'info'],
text=True)
self.assertIn('type AP', out)
self.assertIn('ssid fake net', out)
# connect the other end
subprocess.check_call(['ip', 'link', 'set', self.dev_w_ap, 'up'])
subprocess.check_call(['iw', 'dev', self.dev_w_ap, 'connect', 'fake net'])
out = subprocess.check_output(['dhcpcd', '-w', '-d', self.dev_w_ap],
stderr=subprocess.STDOUT, text=True)
self.assertIn('acknowledged 10.', out)
out = subprocess.check_output(['iw', 'dev', self.dev_w_ap, 'info'],
text=True)
self.assertIn('type managed', out)
self.assertIn('ssid fake net', out)
self.assert_iface_up(self.dev_w_ap, ['inet 10.'])
@unittest.skip("Test if flaky. NM might generate a different MAC address.")
def test_wifi_cloned_macaddress_stable_ssid(self):
self.setup_ap('''hw_mode=g
channel=1
ssid=fake net
wpa=1
wpa_key_mgmt=WPA-PSK
wpa_pairwise=TKIP
wpa_passphrase=12345678
''', None)
with open(self.config, 'w') as f:
f.write('''network:
renderer: NetworkManager
wifis:
%(wc)s:
addresses: ["192.168.1.42/24"]
dhcp4: false
dhcp6: false
macaddress: stable-ssid
access-points:
"fake net":
password: 12345678''' % {'wc': self.dev_w_client})
subprocess.check_call(['systemctl', 'start', 'NetworkManager'])
# Make the generated MAC address predictable
# See nm_utils_hw_addr_gen_stable_eth() in NM for details
# TODO: save and restore these files to avoid any impact on the
# entire test suite.
with open('/etc/machine-id', 'w') as f:
f.write('ee7ac3602b6306061bd984a41eb1c045\n')
with open('/var/lib/NetworkManager/secret_key', 'w') as f:
f.write('nm-v2:hnIHoHp4p9kaEWU5/+dO+gFREirN1AsMoO1MPaoYxCc=')
subprocess.check_call(['systemctl', 'restart', 'NetworkManager'])
self.generate_and_settle([self.state_up(self.dev_w_client)])
self.assert_iface_up(self.dev_w_client, ['ether 5e:ba:fe:fd:89:03'])
unittest.main(testRunner=unittest.TextTestRunner(stream=sys.stdout, verbosity=2))
|