-
Notifications
You must be signed in to change notification settings - Fork 2
/
csi_realTimeAmp.py
164 lines (123 loc) · 4.19 KB
/
csi_realTimeAmp.py
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
import pcap
import dpkt
import keyboard
import numpy as np
import cfg
import matplotlib.pyplot as plt
from matplotlib.artist import Artist
from math import log10
#selected_mac = sys.argv[1]
BANDWIDTH = cfg.EXTRACTOR_CONFIG['bandwidth']
SAMPLE_RATE = int(log10(cfg.EXTRACTOR_CONFIG['SAMPLE']))
# number of subcarrier
NSUB = int(BANDWIDTH * 3.2)
selected_mac = cfg.EXTRACTOR_CONFIG['TX_MAC']
show_packet_length = 100
GAP_PACKET_NUM = 20
# for sampling
def truncate(num, n):
integer = int(num * (10 ** n)) / (10 ** n)
return float(integer)
def sniffing(nicname, mac_address=None):
print('Start Sniifing... @', nicname, 'UDP, Port 5500')
sniffer = pcap.pcap(name=nicname, promisc=True, immediate=True, timeout_ms=50)
sniffer.setfilter('udp and port 5500')
before_ts = 0.0
# ####### RealTime plot ###############
x = np.arange(0, show_packet_length, 1)
y_list = []
for i in range(0, NSUB):
y_list.append([0 for j in range(0, show_packet_length)])
plt.ion()
fig, ax = plt.subplots(figsize=(12, 8))
line_list = []
for y in y_list:
line, = ax.plot(x, y, alpha=0.5)
line_list.append(line)
if mac_address is None:
title = 'realTimeAmp'
else:
title = mac_address
plt.title('{}'.format(title), fontsize=18)
plt.ylabel('Signal Amplitude', fontsize=16)
plt.xlabel('Packet', fontsize=16)
plt.ylim(0, 1500)
# Amp Min-Max gap text on plot figure
txt = ax.text(40, 1600, 'Amp Min-Max Gap: None', fontsize=14)
gap_count = 0
minmax = []
idx = show_packet_length - 1
# ####################################################
for ts, pkt in sniffer:
if int(ts) == int(before_ts):
cur_ts = truncate(ts, SAMPLE_RATE)
bef_ts = truncate(before_ts, SAMPLE_RATE)
if cur_ts == bef_ts:
before_ts = ts
continue
eth = dpkt.ethernet.Ethernet(pkt)
ip = eth.data
udp = ip.data
# MAC Address 추출
# UDP Payload에서 Four Magic Byte (0x11111111) 이후 6 Byte는 추출된 Mac Address 의미
mac = udp.data[4:10].hex()
if mac_address is not None:
if mac != mac_address:
continue
# Four Magic Byte + 6 Byte Mac Address + 2 Byte Sequence Number + 2 Byte Core and Spatial Stream Number + 2 Byte Chanspac + 2 Byte Chip Version 이후 CSI
# 4 + 6 + 2 + 2 + 2 + 2 = 18 Byte 이후 CSI 데이터
csi = udp.data[18:]
bandwidth = ip.__hdr__[2][2]
nsub = int(bandwidth * 3.2)
# Convert CSI bytes to numpy array
csi_np = np.frombuffer(
csi,
dtype=np.int16,
count=nsub * 2
)
# Cast numpy 1-d array to matrix
csi_np = csi_np.reshape((1, nsub * 2))
# Convert csi into complex numbers
csi_cmplx = np.fft.fftshift(
csi_np[:1, ::2] + 1.j * csi_np[:1, 1::2], axes=(1,)
)
csi_data = list(np.abs(csi_cmplx)[0])
# real time plot
idx += 1
for i, y in enumerate(y_list):
del y[0]
new_y = csi_data[i]
y.append(new_y)
line_list[i].set_xdata(x)
line_list[i].set_ydata(y)
# Min-Max Gap
if gap_count == 0:
minmax.append([new_y, new_y])
else:
# Update min
if minmax[i][0] > new_y:
minmax[i][0] = new_y
# Update max
if minmax[i][1] < new_y:
minmax[i][1] = new_y
gap_list = []
for mm in minmax:
gap_list.append(mm[1] - mm[0])
gap = max(gap_list)
Artist.remove(txt)
txt = ax.text(40, 1600, 'Amp Min-Max Gap: {}'.format(gap), fontsize=14)
gap_count += 1
if gap_count == 20:
gap_count = 0
minmax = []
fig.canvas.draw()
fig.canvas.flush_events()
before_ts = ts
if keyboard.is_pressed('s'):
print("Stop Collecting...")
exit()
if __name__ == '__main__':
if cfg.EXTRACTOR_CONFIG['use_TX_MAC']:
sniffing('wlan0', selected_mac)
else:
sniffing('wlan0')