54805d314acc30bf19b98eefdf9b2fc128edced7
[infrastructure.git] / scripts / vsys_vnet_admin.py
1 #!/usr/bin/python
2
3 # vsys_vnet_admin.py - basic command-line client to show assigned network
4 # segments to the vsys_vnet tag in PlanetLab, and to assign new vsys_vnet tags
5 # using available segments
6
7 # Author: Alina Quereilhac <alina.quereilhac@inria.fr>
8 #
9
10 import ipaddr
11 from optparse import OptionParser
12 import os
13 import pprint
14 import sys
15 import xmlrpclib
16
17 def plapi(url):
18     """ Returns a XMLRPC proxy to the PLAPI service on the given url """
19     return xmlrpclib.ServerProxy(url, allow_none = True)
20
21 def get_assigned(plapi, auth):
22     """ Returns a dictionary with the assigned network segments as key
23     and the slice name as value"""
24     info = plapi.GetSliceTags(auth, {'tagname': 'vsys_vnet'}, ('name', 'value'))
25     return dict((d['value'], d['name']) for d in info)
26
27 def get_next_available(assigned, base, prefix):
28     """ Returns the next available network segment to be assigned to a 
29     new vsys_vnet tag """
30     net = ipaddr.IPNetwork(base)
31     iter_sub = net.iter_subnets(new_prefix=prefix)
32
33     print assigned
34     try:
35         while True:
36             sub = iter_sub.next()
37             print sub
38             if not [ s for s in map(ipaddr.IPNetwork, assigned.keys()) \
39                     if sub == s or s in sub or sub in s]:
40                return sub.exploded 
41     except StopIteration:
42         pass
43
44     return None
45
46 def assign_vsys_vent(plapi, auth, vsys_vnet, pl_slice):
47     return plapi.AddSliceTag(auth, pl_slice, 'vsys_vnet', vsys_vnet)
48
49 if __name__ == "__main__":
50     pl_user = os.environ.get('PL_USER')
51     pl_pwd = os.environ.get('PL_PASS')
52     pl_url = "https://www.planet-lab.eu:443/PLCAPI/"
53     pl_slice = os.environ.get('PL_SLICE')
54
55     usage = "usage: %prog -u <user> -p <password> -l <url>  --show --assign -b <base_address> -n <prefix>"
56     parser = OptionParser(usage=usage)
57     parser.add_option("-u", "--user", dest="pl_user", help="PlanetLab account user name", default=pl_user)
58     parser.add_option("-p", "--password", dest="pl_pwd", help="PlanetLab account password", default=pl_pwd)
59     parser.add_option("-l", "--url", dest="pl_url", help="PlanetLab XMLRPC url", default=pl_url)
60     parser.add_option("-b", "--base", dest="basenet", help="Base network address to perform assignment (defaults to 10.0.0.0/8)", default="10.0.0.0/8")
61     parser.add_option("-n", "--prefix", dest="prefix", help="Network prefix for segments (defaults to 21)", default = "21")
62     parser.add_option("-s", "--show", action="store_false", dest="show", default=True,
63         help="Show all assigned vsys_vnet tags")
64     parser.add_option("-a", "--assign", action="store_true", dest="assign", default=False,
65         help="Assign next available network segment as a vsys_vnet tag to the user slice")
66
67     (options, args) = parser.parse_args()
68    
69     if not options.pl_user or not options.pl_pwd:
70         print "Error: PlanetLab user and password are required to proceed."
71         sys.exit(1)
72
73     api = plapi(options.pl_url)
74     
75     auth = dict(AuthMethod='password', Username=options.pl_user, AuthString=options.pl_pwd)
76     assigned = get_assigned(api, auth)
77    
78     if options.assign:
79         vsys_vnet = get_next_available(assigned, options.basenet, int(options.prefix))
80         if not vsys_vnet:
81             print "Error: There are no available network segments at the moment to assign"
82             sys.exit(1)
83
84         print "The next available network segment is %s." % vsys_vnet
85         proceed = raw_input ("Do you wish to proceed with the assignment of the vsys_vnet tag? [y/N] ")
86         if proceed.lower() in ['yes', 'y']:
87             if not pl_slice:
88                 pl_slice = raw_input ("Please, enter your slice name \n")
89
90                 if pl_slice in assigned.values():
91                     print "Error: This slice already has a tag vsys_vnet assigned!!!"
92                     sys.exit(1)
93
94             slice_tag_id = assign_vsys_vent(api, auth, vsys_vnet, pl_slice)
95
96             if slice_tag_id and slice_tag_id > 0:
97                 print "Success: the new slice tag id is %d" % slice_tag_id
98             else:
99                 print "Error: Something wrong happened!"
100
101     else:
102         pp = pprint.PrettyPrinter(indent=4)
103         pp.pprint(assigned)
104
105
106