Serious refactoring of TUN/TAP and tunnel code. Linux udp/gre tunnels not yet functional
[nepi.git] / src / nepi / resources / linux / scripts / linux-tap-delete.py
1 #
2 #    NEPI, a framework to manage network experiments
3 #    Copyright (C) 2013 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 import base64
21 import socket
22
23 from optparse import OptionParser
24
25 STOP_MSG = "STOP"
26
27 def get_options():
28     usage = ("usage: %prog -N <vif-name> -S <socket-name>")
29     
30     parser = OptionParser(usage = usage)
31
32     parser.add_option("-N", "--vif-name", dest="vif_name",
33         help = "The name of the virtual interface, or a "
34                 "unique numeric identifier to name the interface "
35                 "if GRE mode is used.",
36         type="str")
37
38     parser.add_option("-S", "--socket-name", dest="socket_name",
39         help = "Name for the unix socket used to interact with this process", 
40         type="str")
41
42     (options, args) = parser.parse_args()
43    
44     return (options.socket_name, options.vif_name)
45
46 if __name__ == '__main__':
47
48     (socket_name, vif_name) = get_options()
49
50     # If a socket name is sent, send the STOP message and wait for a reply
51     sock = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
52     try:
53         sock.connect(socket_name)
54         encoded = base64.b64encode(STOP_MSG)
55         sock.send("%s\n" % encoded)
56         reply = sock.recv(1024)
57         reply = base64.b64decode(reply)
58         print reply
59     except:
60         print "Did not properly shutdown device"
61