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
|
#!/usr/bin/env python3
# SPDX-License-Identifier: ISC
#
# Copyright (C) 2021 by
# Network Device Education Foundation, Inc. ("NetDEF")
"""
Subscribe to a multicast group so that the kernel sends an IGMP JOIN
for the multicast group we subscribed to.
"""
import argparse
import json
import ipaddress
import os
import socket
import struct
import subprocess
import sys
import time
#
# Functions
#
def interface_name_to_index(name):
"Gets the interface index using its name. Returns None on failure."
interfaces = json.loads(subprocess.check_output("ip -j link show", shell=True))
for interface in interfaces:
if interface["ifname"] == name:
return interface["ifindex"]
return None
def interface_index_to_address(index, iptype="inet"):
"Gets the interface main address using its name. Returns None on failure."
interfaces = json.loads(subprocess.check_output("ip -j addr show", shell=True))
for interface in interfaces:
if interface["ifindex"] == index:
break
for address in interface["addr_info"]:
if address["family"] == iptype:
break
local_address = ipaddress.ip_address(address["local"])
return local_address.packed
def group_source_req(ifindex, group, source):
"Packs the information into 'struct group_source_req' format."
mreq = struct.pack("<I", ifindex)
group_bytes = (
struct.pack("<IHHI", 0, socket.AF_INET6, 0, 0)
+ group.packed
+ struct.pack("<I", 0)
)
group_bytes += struct.pack(f"<{128 - len(group_bytes)}x")
source_bytes = (
struct.pack("<IHHI", 0, socket.AF_INET6, 0, 0)
+ source.packed
+ struct.pack("<I", 0)
)
source_bytes += struct.pack(f"<{128 - len(source_bytes)}x")
return mreq + group_bytes + source_bytes + struct.pack("<4x")
def multicast_join(sock, ifindex, group, port, source=None):
"Joins a multicast group."
sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
if ip_version == 4:
if source is None:
mreq = group.packed + struct.pack("@II", socket.INADDR_ANY, ifindex)
opt = socket.IP_ADD_MEMBERSHIP
else:
source = ipaddress.ip_address(source)
mreq = group.packed + interface_index_to_address(ifindex) + source.packed
opt = 39
else:
if source is None:
mreq = group.packed + struct.pack("@I", ifindex)
opt = socket.IPV6_JOIN_GROUP
else:
mreq = group_source_req(ifindex, group, ipaddress.ip_address(source))
print(mreq)
opt = 46
sock.bind((str(group), port))
sock.setsockopt(ip_proto, opt, mreq)
#
# Main code.
#
parser = argparse.ArgumentParser(description="Multicast RX utility")
parser.add_argument("group", help="Multicast IP")
parser.add_argument("interface", help="Interface name")
parser.add_argument("--port", type=int, default=1000, help="port to send to")
parser.add_argument("--ttl", type=int, default=16, help="TTL/hops for sending packets")
parser.add_argument("--socket", help="Point to topotest UNIX socket")
parser.add_argument("--source", help="Source address for multicast")
parser.add_argument(
"--send", help="Transmit instead of join with interval", type=float, default=0
)
args = parser.parse_args()
# Get interface index/validate.
ifindex = interface_name_to_index(args.interface)
if ifindex is None:
sys.stderr.write("Interface {} does not exists\n".format(args.interface))
sys.exit(1)
# We need root privileges to set up multicast.
if os.geteuid() != 0:
sys.stderr.write("ERROR: You must have root privileges\n")
sys.exit(1)
# Wait for topotest to synchronize with us.
if not args.socket:
toposock = None
else:
toposock = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM, 0)
while True:
try:
toposock.connect(args.socket)
break
except ConnectionRefusedError:
time.sleep(1)
continue
# Set topotest socket non blocking so we can multiplex the main loop.
toposock.setblocking(False)
args.group = ipaddress.ip_address(args.group)
ip_version = args.group.version
ip_family = socket.AF_INET if ip_version == 4 else socket.AF_INET6
ip_proto = socket.IPPROTO_IP if ip_version == 4 else socket.IPPROTO_IPV6
msock = socket.socket(ip_family, socket.SOCK_DGRAM, socket.IPPROTO_UDP)
if args.send > 0:
# Prepare multicast bit in that interface.
msock.setsockopt(
socket.SOL_SOCKET,
25,
struct.pack("%ds" % len(args.interface), args.interface.encode("utf-8")),
)
# Set packets TTL/hops.
ttlopt = socket.IP_MULTICAST_TTL if ip_version == 4 else socket.IPV6_MULTICAST_HOPS
if ip_version == 4:
msock.setsockopt(ip_proto, ttlopt, struct.pack("B", args.ttl))
else:
msock.setsockopt(ip_proto, ttlopt, struct.pack("I", args.ttl))
# Block to ensure packet send.
msock.setblocking(True)
else:
multicast_join(msock, ifindex, args.group, args.port, args.source)
def should_exit():
if not toposock:
# If we are sending then we have slept
if not args.send:
time.sleep(100)
return False
else:
try:
data = toposock.recv(1)
if data == b"":
print(" -> Connection closed")
return True
except BlockingIOError:
return False
counter = 0
while not should_exit():
if args.send > 0:
msock.sendto(b"test %d" % counter, (str(args.group), args.port))
counter += 1
time.sleep(args.send)
msock.close()
sys.exit(0)
|