X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=plc.py;h=cb56ff490ccf9cd4e1412beab20156dc976dfbce;hb=34a4c8387ad2e397f46a03d9476096f1cd5abfc6;hp=cf9cc7645dbacd54c2160d24344b342ef454a8b8;hpb=5268b5e70cb57837a36f2fc67123825ecefb92aa;p=monitor.git diff --git a/plc.py b/plc.py index cf9cc76..cb56ff4 100644 --- a/plc.py +++ b/plc.py @@ -1,371 +1,224 @@ -#!/bin/env python +# +# plc.py # # Helper functions that minipulate the PLC api. # -# Faiyaz Ahmed -# Copyright (C) 2006, 2007 The Trustees of Princeton University +# Faiyaz Ahmed 2: - printUsage("not enough arguments") - sys.exit(1) - - nodename = argv[0] - state = argv[1] - - if auth is None: - printUsage("requires admin privs") - sys.exit(1) - - node_id = api.AnonAdmQueryNode(anon, {'node_hostname' : nodename}) - if len(node_id) == 1: - logger.info("Setting node %s to %s" %(nodename, state)) - try: - if not config.debug: - api.AdmUpdateNode(auth, node_id[0], {'boot_state': state}) - except Exception, exc: - logger.info("nodeBootState: %s" % exc) - else: - logger.info("Cant find node %s to toggle boot state" % nodename) - -def nodePOD(argv): - """Sends Ping Of Death to node.""" + sites = api.GetSites(anon, filter, None) + except Exception, exc: + print "getSiteNodes2: %s" % exc + logger.info("getSiteNodes2: %s" % exc) + return sites - global api, anon, auth - nodename = argv[0] - if auth is None: - printUsage("requires admin privs") - sys.exit(1) +def getSiteNodes2(loginbase): + api = xmlrpclib.Server(XMLRPC_SERVER, verbose=False) + nodelist = [] + anon = {'AuthMethod': "anonymous"} + try: + nodeids = api.GetSites(anon, {"login_base": loginbase})[0]['node_ids'] + nodelist += getNodes({'node_id':nodeids}) + except Exception, exc: + logger.info("getSiteNodes2: %s" % exc) + return nodelist - node_id = api.AnonAdmQueryNode(anon, {'node_hostname' : nodename}) - if len(node_id) == 1: - logger.info("Sending POD to %s" % nodename) - try: - if not config.debug: - api.AdmRebootNode(auth, node_id[0]) - except Exception, exc: +def getNodeNetworks(filter=None): + api = xmlrpclib.Server(XMLRPC_SERVER, verbose=False, allow_none=True) + nodenetworks = api.GetNodeNetworks(auth.auth, filter, None) + return nodenetworks + +def getNodes(filter=None): + api = xmlrpclib.Server(XMLRPC_SERVER, verbose=False, allow_none=True) + nodes = api.GetNodes(auth.auth, filter, ['boot_state', 'hostname', + 'site_id', 'date_created', 'node_id', 'version', 'nodenetwork_ids', + 'last_updated', 'peer_node_id', 'ssh_rsa_key' ]) + return nodes + +''' +Sets boot state of a node. +''' +def nodeBootState(nodename, state): + api = xmlrpclib.Server(XMLRPC_SERVER, verbose=False) + try: + return api.UpdateNode(auth.auth, nodename, {'boot_state': state}) + except Exception, exc: + logger.info("nodeBootState: %s" % exc) + +''' +Sends Ping Of Death to node. +''' +def nodePOD(nodename): + api = xmlrpclib.Server(XMLRPC_SERVER, verbose=False) + logger.info("Sending POD to %s" % nodename) + try: + if not config.debug: + return api.RebootNode(auth.auth, nodename) + except Exception, exc: logger.info("nodePOD: %s" % exc) - else: - logger.info("Cant find node %s to send POD." % nodename) -def suspendSlices(argv): - """Freeze all site slices.""" - - global api, anon, auth - if auth is None: - printUsage("requires admin privs") - sys.exit(1) - - if argv[0].find(".") <> -1: siteslices = slices([siteId(argv)]) - else: siteslices = slices(argv) - - for slice in siteslices: +''' +Freeze all site slices. +''' +def suspendSlices(nodename): + api = xmlrpclib.Server(XMLRPC_SERVER, verbose=False) + for slice in slices(siteId(nodename)): logger.info("Suspending slice %s" % slice) try: if not config.debug: - api.SliceAttributeAdd(auth, slice, "plc_slice_state", - {"state" : "suspended"}) + api.AddSliceAttribute(auth.auth, slice, "enabled", "0") except Exception, exc: logger.info("suspendSlices: %s" % exc) -def enableSlices(argv): - """Enable suspended site slices.""" - - global api, anon, auth - if auth is None: - printUsage("requires admin privs") - sys.exit(1) - - if argv[0].find(".") <> -1: siteslices = slices([siteId(argv)]) - else: siteslices = slices(argv) - - for slice in siteslices: - logger.info("unfreezing slice %s" % slice) - api.SliceAttributeDelete(auth, slice, "plc_slice_state") - - -def removeSliceCreation(argv): - """Removes ability to create slices. Returns previous max_slices""" - - global api, anon, auth - if auth is None: - printUsage("requires admin privs") - sys.exit(1) - - name = argv[0] - if name.find(".") <> -1: - siteid = api.AnonAdmQuerySite (anon, {"node_hostname": name}) - loginbase = siteId(name) - else: - siteid = api.AnonAdmQuerySite (anon, {"site_loginbase": name}) - loginbase = name +#I'm commenting this because this really should be a manual process. +#''' +#Enable suspended site slices. +#''' +#def enableSlices(nodename, slicelist): +# api = xmlrpclib.Server(XMLRPC_SERVER, verbose=False) +# for slice in slices(siteId(nodename)): +# logger.info("Suspending slice %s" % slice) +# api.SliceAttributeAdd(auth.auth, slice, "plc_slice_state", {"state" : "suspended"}) +# - numslices = api.AdmGetSites(auth, siteid, ["max_slices"])[0]['max_slices'] - if len(siteid) == 1: +''' +Removes ability to create slices. Returns previous max_slices +''' +def removeSliceCreation(nodename): + api = xmlrpclib.Server(XMLRPC_SERVER, verbose=False) + try: + loginbase = siteId(nodename) + #numslices = api.GetSites(auth.auth, {"login_base": loginbase}, + # ["max_slices"])[0]['max_slices'] logger.info("Removing slice creation for site %s" % loginbase) - try: - if not config.debug: - api.AdmUpdateSite(auth, siteid[0], {'max_slices': 0}) - return numslices - except Exception, exc: - logger.info("removeSliceCreation: %s" % exc) - else: - logger.debug("Cant find site for %s. Cannot revoke creation." % loginbase) - -def enableSliceCreation(argv): - """QED""" - - global api, anon, auth - if auth is None: - printUsage("requires admin privs") - sys.exit(1) - - if len(argv) < 2: - printUsage("requires maxslice arg") - sys.exit(1) - - maxslices = int(argv[1]) - name = argv[0] - if name.find(".") <> -1: - siteid = api.AnonAdmQuerySite (anon, {"node_hostname": name}) - loginbase = siteId(name) - else: - siteid = api.AnonAdmQuerySite (anon, {"site_loginbase": name}) - loginbase = name - + if not config.debug: + #api.UpdateSite(auth.auth, loginbase, {'max_slices': 0}) + api.UpdateSite(auth.auth, loginbase, {'enabled': False}) + except Exception, exc: + logger.info("removeSliceCreation: %s" % exc) + +''' +QED +''' +def enableSliceCreation(nodename, maxslices): + api = xmlrpclib.Server(XMLRPC_SERVER, verbose=False) + anon = {'AuthMethod': "anonymous"} + siteid = api.AnonAdmQuerySite (anon, {"node_hostname": nodename}) if len(siteid) == 1: - logger.info("Enabling slice creation for site %s" % loginbase) + logger.info("Enabling slice creation for site %s" % siteId(nodename)) try: if not config.debug: - api.AdmUpdateSite(auth, siteid[0], {"max_slices" : maxslices}) + api.AdmUpdateSite(auth.auth, siteid[0], {"max_slices" : maxslices}) except Exception, exc: logger.info("API: %s" % exc) else: - logger.debug("Cant find site for %s. Cannot enable creation." % loginbase) - - - -USAGE = """ -Usage: %s [-u user] [-p password] [-r role] CMD + logger.debug("Cant find site for %s. Cannot enable creation." % nodename) -Options: --u PLC account username --p PLC account password --r PLC account role --h This message -""" % sys.argv[0] - -def printUsage(error = None): - global funclist - if error <> None: - print "%s %s" %(sys.argv[0],error) - print USAGE - print "CMD:" - for name,function in funclist: - print "%20s\t%20s" % (name, function.__doc__) - def main(): - global api, auth, anon - - anon = {"AuthMethod":"anonymous"} - auth = None - user = None - password = None - role = 'admin' - - (opts, argv) = getopt.getopt(sys.argv[1:], "u:p:r:h") - if len(argv)==0: - printUsage() - sys.exit(1) - - for (opt, optval) in opts: - if opt == '-u': - user = optval - elif opt == '-p': - password = optval - elif opt == '-r': - role = optval - elif opt == '-h': - print USAGE - sys.exit(0) - - if user <> None: - if password is None: - try: - password = getpass.getpass() - except (EOFError, KeyboardInterrupt): - print( "" ) - sys.exit(1) - auth = {} - auth['Username'] = user - auth['AuthMethod'] = "password" - auth['AuthString'] = password - auth['Role'] = role - - cmd = functbl.get(argv[0], None) - if cmd is None: - printUsage() - sys.exit(1) - logger.setLevel(logging.DEBUG) ch = logging.StreamHandler() ch.setLevel(logging.DEBUG) formatter = logging.Formatter('logger - %(message)s') ch.setFormatter(formatter) logger.addHandler(ch) - result = cmd(argv[1:]) - if result <> None: - print result - -funclist = (("nodesDbg",nodesDbg), - ("siteId", siteId), - ("slices", slices), - ("pcu", getpcu), - ("siteNodes", getSiteNodes), - ("nodeBootState", nodeBootState), - ("nodePOD", nodePOD), - ("freezeSlices", suspendSlices), - ("unfreezeSlices", enableSlices), - ("disableSliceCreation",removeSliceCreation), - ("enableSliceCreation", enableSliceCreation), - ("renewAllSlices", renewAllSlices)) - -functbl = {} -for f in funclist: - functbl[f[0]]=f[1] + #print getpcu("kupl2.ittc.ku.edu") + #print getpcu("planetlab1.cse.msu.edu") + #print getpcu("alice.cs.princeton.edu") + #print nodesDbg() + #nodeBootState("alice.cs.princeton.edu", "boot") + #freezeSite("alice.cs.princeton.edu") + print removeSliceCreation("alice.cs.princeton.edu") + #enableSliceCreation("alice.cs.princeton.edu", 1024) + #print getSiteNodes("princeton") + #print siteId("alice.cs.princeton.edu") + #print nodePOD("alice.cs.princeton.edu") + #print slices("princeton") if __name__=="__main__": import reboot