monitor.py 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. # Monitor support
  2. # Copyright (c) 2016, Tieto Corporation
  3. #
  4. # This software may be distributed under the terms of the BSD license.
  5. # See README for more details.
  6. import time
  7. from remotehost import Host
  8. import config
  9. import re
  10. import traceback
  11. import logging
  12. logger = logging.getLogger()
  13. import hostapd
  14. # standalone monitor with multi iface support
  15. def create(devices, setup_params, refs, duts, monitors):
  16. mons= []
  17. mhosts = []
  18. hosts = duts + refs
  19. # choose only standalone monitors
  20. for monitor in monitors:
  21. if monitor not in hosts and monitor != "all":
  22. mons.append(monitor)
  23. for mon in mons:
  24. dev = config.get_device(devices, mon)
  25. if dev is None:
  26. continue
  27. host = Host(host = dev['hostname'],
  28. ifname = dev['ifname'],
  29. port = dev['port'],
  30. name = dev['name'])
  31. try:
  32. host.execute(["iw", "reg", "set", setup_params['country']])
  33. setup_hw = setup_params['setup_hw']
  34. for iface in ifaces:
  35. host.execute(setup_hw + " -I " + iface + " -R 1")
  36. except:
  37. pass
  38. mhosts.append(host)
  39. return mhosts
  40. def destroy(devices, hosts):
  41. for host in hosts:
  42. stop(host)
  43. for monitor in host.monitors:
  44. host.execute(["ifconfig", monitor, "down"])
  45. def setup(host, monitor_params):
  46. if host is None:
  47. return
  48. ifaces = re.split('; | |, ', host.ifname)
  49. count = 0
  50. for param in monitor_params:
  51. try:
  52. iface = ifaces[count]
  53. except:
  54. logger.debug(traceback.format_exc())
  55. break
  56. host.execute(["ifconfig", iface, " down"])
  57. host.execute(["iw", iface, "set type monitor"])
  58. host.execute(["ifconfig", iface, "up"])
  59. status, buf = host.execute(["iw", iface, "set", "freq", param['freq'],
  60. param['bw'], param['center_freq1'],
  61. param['center_freq2']])
  62. if status != 0:
  63. logger.debug("Could not setup monitor interface: " + buf)
  64. continue
  65. host.monitors.append(iface)
  66. count = count + 1
  67. def run(host, setup_params):
  68. monitor_res = []
  69. log_monitor = ""
  70. if host is None:
  71. return None
  72. if len(host.monitors) == 0:
  73. return None
  74. try:
  75. log_dir = setup_params['log_dir']
  76. tc_name = setup_params['tc_name']
  77. except:
  78. return None
  79. tshark = "tshark"
  80. for monitor in host.monitors:
  81. host.execute(["ifconfig", monitor, "up"])
  82. tshark = tshark + " -i " + monitor
  83. log_monitor = log_monitor + "_" + monitor
  84. log = log_dir + tc_name + "_" + host.name + log_monitor + ".pcap"
  85. host.add_log(log)
  86. thread = host.execute_run([tshark, "-w", log], monitor_res)
  87. host.thread = thread
  88. def stop(host):
  89. if host is None:
  90. return
  91. if len(host.monitors) == 0:
  92. return
  93. if host.thread is None:
  94. return
  95. host.execute(["killall", "-s", "INT", "tshark"])
  96. host.wait_execute_complete(host.thread, 5)
  97. if host.thread.isAlive():
  98. raise Exception("tshark still alive")
  99. host.thread = None
  100. # Add monitor to existing interface
  101. def add(host, monitors):
  102. if host is None:
  103. return
  104. for monitor in monitors:
  105. if monitor != "all" and monitor != host.name:
  106. continue
  107. mon = "mon_" + host.ifname
  108. status, buf = host.execute(["iw", host.ifname, "interface", "add", mon,
  109. "type", "monitor"])
  110. if status == 0:
  111. host.monitors.append(mon)
  112. host.execute(["ifconfig", mon, "up"])
  113. else:
  114. logger.debug("Could not add monitor for " + host.name)
  115. def remove(host):
  116. stop(host)
  117. for monitor in host.monitors:
  118. host.execute(["iw", monitor, "del"])
  119. host.monitors.remove(monitor)
  120. # get monitor params from hostapd/wpa_supplicant
  121. def get_monitor_params(wpa, is_p2p=False):
  122. if is_p2p:
  123. get_status_field_f = wpa.get_group_status_field
  124. else:
  125. get_status_field_f = wpa.get_status_field
  126. freq = get_status_field_f("freq")
  127. bw = "20"
  128. center_freq1=""
  129. center_freq2=""
  130. vht_oper_chwidth = get_status_field_f("vht_oper_chwidth")
  131. secondary_channel = get_status_field_f("secondary_channel")
  132. vht_oper_centr_freq_seg0_idx = get_status_field_f("vht_oper_centr_freq_seg0_idx")
  133. vht_oper_centr_freq_seg1_idx = get_status_field_f("vht_oper_centr_freq_seg1_idx")
  134. if vht_oper_chwidth == "0" or vht_oper_chwidth is None:
  135. if secondary_channel == "1":
  136. bw = "40"
  137. center_freq1 = str(int(freq) + 10)
  138. elif secondary_channel == "-1":
  139. center_freq1 = str(int(freq) - 10)
  140. else:
  141. pass
  142. elif vht_oper_chwidth == "1":
  143. bw = "80"
  144. center_freq1 = str(int(vht_oper_centr_freq_seg0_idx) * 5 + 5000)
  145. elif vht_oper_chwidth == "2":
  146. bw = "160"
  147. center_freq1 = str(int(vht_oper_centr_freq_seg0_idx) * 5 + 5000)
  148. elif vht_oper_chwidth == "3":
  149. bw = "80+80"
  150. center_freq1 = str(int(vht_oper_centr_freq_seg0_idx) * 5 + 5000)
  151. center_freq2 = str(int(vht_oper_centr_freq_seg1_idx) * 5 + 5000)
  152. else:
  153. pass
  154. monitor_params = { "freq" : freq,
  155. "bw" : bw,
  156. "center_freq1" : center_freq1,
  157. "center_freq2" : center_freq2 }
  158. return monitor_params