9807a6ca9db43b618e929e339cdc2a71f398f1bd
[nepi.git] / src / nepi / resources / ns3 / ns3netdevice.py
1 #
2 #    NEPI, a framework to manage network experiments
3 #    Copyright (C) 2014 INRIA
4 #
5 #    This program is free software: you can redistribute it and/or modify
6 #    it under the terms of the GNU General Public License as published by
7 #    the Free Software Foundation, either version 3 of the License, or
8 #    (at your option) any later version.
9 #
10 #    This program is distributed in the hope that it will be useful,
11 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
12 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 #    GNU General Public License for more details.
14 #
15 #    You should have received a copy of the GNU General Public License
16 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 #
18 # Author: Alina Quereilhac <alina.quereilhac@inria.fr>
19
20 from nepi.execution.attribute import Attribute, Flags
21 from nepi.execution.resource import clsinit_copy
22 from nepi.execution.trace import Trace
23 from nepi.resources.ns3.ns3base import NS3Base
24
25 import ipaddr
26
27 @clsinit_copy
28 class NS3BaseNetDevice(NS3Base):
29     _rtype = "abstract::ns3::NetDevice"
30
31     @classmethod
32     def _register_attributes(cls):
33         mac = Attribute("mac", "MAC address for device",
34                 flags = Flags.Design)
35
36         ip = Attribute("ip", "IP address for device",
37                 flags = Flags.Design)
38
39         prefix = Attribute("prefix", "Network prefix for device",
40                 flags = Flags.Design)
41
42         cls._register_attribute(mac)
43         cls._register_attribute(ip)
44         cls._register_attribute(prefix)
45
46     @classmethod
47     def _register_traces(cls):
48         pcap = Trace("pcap", "Dump traffic sniffed on the network device in Pcap format")
49         promisc_pcap = Trace("promiscPcap", "Dump traffic sniffed in promiscuous mode on the network device in Pcap format")
50         ascii = Trace("ascii", "Dump traffic sniffed on the network device in Ascii format")
51
52         cls._register_trace(pcap)
53         cls._register_trace(promisc_pcap)
54         cls._register_trace(ascii)
55
56     def __init__(self, ec, guid):
57         super(NS3BaseNetDevice, self).__init__(ec, guid)
58         self._ascii_helper_uuid = None
59         self._device_helper_uuid = None
60
61     @property
62     def node(self):
63         from nepi.resources.ns3.ns3node import NS3BaseNode
64         nodes = self.get_connected(NS3BaseNode.get_rtype())
65
66         if not nodes: 
67             msg = "Device not connected to node"
68             self.error(msg)
69             raise RuntimeError, msg
70
71         return nodes[0]
72
73     @property
74     def channel(self):
75         from nepi.resources.ns3.ns3channel import NS3BaseChannel
76         channels = self.get_connected(NS3BaseChannel.get_rtype())
77
78         if not channels: 
79             msg = "Device not connected to channel"
80             self.error(msg)
81             raise RuntimeError, msg
82
83         return channels[0]
84
85     @property
86     def queue(self):
87         from nepi.resources.ns3.ns3queue import NS3BaseQueue
88         queue = self.get_connected(NS3BaseQueue.get_rtype())
89
90         if not queue: 
91             msg = "Device not connected to queue"
92             self.error(msg)
93             raise RuntimeError, msg
94
95         return queue[0]
96
97     @property
98     def ascii_helper_uuid(self):
99         if not self._ascii_helper_uuid:
100             self._ascii_helper_uuid = self.simulation.create("AsciiTraceHelper")
101         return self._ascii_helper_uuid
102
103     @property
104     def device_helper_uuid(self):
105         if not self._device_helper_uuid:
106             rtype = self.get_rtype()
107             if rtype == "ns3::PointToPointNetDevice":
108                 classname = "PointToPointHelper"
109             elif rtype == "ns3::CsmaNetDevice":
110                 classname = "CsmaHelper"
111             elif rtype == "ns3::EmuNetDevice":
112                 classname = "EmuHelper"
113             elif rtype == "ns3::FdNetDevice":
114                 classname = "FdNetDeviceHelper"
115             elif rtype in [ "ns3::BaseStationNetDevice", "SubscriberStationNetDevice" ]:
116                 classname = "WimaxHelper"
117             elif rtype == "ns3::WifiNetDevice":
118                 classname = "YansWifiPhyHelper"
119             elif rtype == "ns3::FdNetDevice":
120                 classname = "FdNetDeviceHelper"
121
122             self._device_helper_uuid = self.simulation.create(classname)
123
124         return self._device_helper_uuid
125
126     @property
127     def _rms_to_wait(self):
128         rms = set([self.node, self.channel])
129         return rms
130
131     def _configure_object(self):
132         # Set Mac
133         self._configure_mac_address()
134
135         # Set IP address
136         self._configure_ip_address()
137         
138         # Enable traces
139         self._configure_traces()
140
141     def _configure_mac_address(self):
142         mac = self.get("mac")
143         if mac:
144             mac_uuid = self.simulation.create("Mac48Address", mac)
145         else:
146             mac_uuid = self.simulation.invoke("singleton::Mac48Address", "Allocate")
147
148         self.simulation.invoke(self.uuid, "SetAddress", mac_uuid)
149
150     def _configure_ip_address(self):
151         ip = self.get("ip")
152         prefix = self.get("prefix")
153
154         i = ipaddr.IPAddress(ip)
155         if i.version == 4:
156             # IPv4
157             ipv4 = self.node.ipv4
158             ifindex_uuid = self.simulation.invoke(ipv4.uuid, "AddInterface", 
159                     self.uuid)
160             ipv4_addr_uuid = self.simulation.create("Ipv4Address", ip)
161             ipv4_mask_uuid = self.simulation.create("Ipv4Mask", "/%s" % str(prefix))
162             inaddr_uuid = self.simulation.create("Ipv4InterfaceAddress", 
163                     ipv4_addr_uuid, ipv4_mask_uuid)
164             self.simulation.invoke(ipv4.uuid, "AddAddress", ifindex_uuid, 
165                     inaddr_uuid)
166             self.simulation.invoke(ipv4.uuid, "SetMetric", ifindex_uuid, 1)
167             self.simulation.invoke(ipv4.uuid, "SetUp", ifindex_uuid)
168         else:
169             # IPv6
170             # TODO!
171             pass
172
173     def _configure_traces(self):
174         if self.trace_enabled("pcap"):
175             helper_uuid = self.device_helper_uuid
176
177             filename = "trace-pcap-netdev-%d.pcap" % self.guid
178             self._trace_filename["pcap"] = filename
179
180             filepath = self.simulation.trace_filepath(filename)
181
182             self.simulation.invoke(helper_uuid, "EnablePcap", filepath, 
183                     self.uuid, promiscuous = False, explicitFilename = True)
184
185         if self.trace_enabled("promiscPcap"):
186             helper_uuid = self.device_helper_uuid
187
188             filename = "trace-promisc-pcap-netdev-%d.pcap" % self.guid
189             self._trace_filename["promiscPcap"] = filename
190
191             filepath = self.simulation.trace_filepath(filename)
192
193             self.simulation.invoke(helper_uuid, "EnablePcap", filepath, 
194                     self.uuid, promiscuous = True, explicitFilename = True)
195
196         if self.trace_enabled("ascii"):
197             helper_uuid = self.device_helper_uuid
198             ascii_helper_uuid = self.ascii_helper_uuid
199
200             filename = "trace-ascii-netdev-%d.tr" % self.guid
201             self._trace_filename["ascii"] = filename
202
203             filepath = self.simulation.trace_filepath(filename)
204             stream_uuid = self.simulation.invoke(ascii_helper_uuid, 
205                     "CreateFileStream", filepath) 
206             self.simulation.invoke(helper_uuid, "EnableAscii", stream_uuid,
207                     self.uuid)
208
209     def _connect_object(self):
210         node = self.node
211         if node and node.uuid not in self.connected:
212             self.simulation.invoke(node.uuid, "AddDevice", self.uuid)
213             self._connected.add(node.uuid)
214
215         channel = self.channel
216         if channel and channel.uuid not in self.connected:
217             self.simulation.invoke(self.uuid, "Attach", channel.uuid)
218             self._connected.add(channel.uuid)
219         
220         # Verify that the device has a queue. If no queue is added a segfault 
221         # error occurs
222         queue = self.queue
223