Disabling sliverauth
[nodemanager.git] / sm.py
diff --git a/sm.py b/sm.py
index 881b05e..62de7f9 100644 (file)
--- a/sm.py
+++ b/sm.py
@@ -15,7 +15,7 @@ import accounts
 import api
 import api_calls
 import database
-import controller 
+import controller
 import logger
 import sliver_vs
 import string,re
@@ -34,10 +34,10 @@ DEFAULT_ALLOCATION = {
     'net_i2_min_rate': bwmin / 1000, # kbps
     'net_i2_max_rate': bwmax / 1000, # kbps
     'net_i2_share': 1, # proportional share
-    'net_max_kbyte' : 5662310, #Kbyte
-    'net_thresh_kbyte': 4529848, #Kbyte
-    'net_i2_max_kbyte': 17196646,
-    'net_i2_thresh_kbyte': 13757316,
+    'net_max_kbyte' : 10546875, #Kbyte
+    'net_thresh_kbyte': 9492187, #Kbyte
+    'net_i2_max_kbyte': 31640625,
+    'net_i2_thresh_kbyte': 28476562,
     # disk space limit
     'disk_max': 5000000, # bytes
     # capabilities
@@ -54,7 +54,7 @@ DEFAULT_ALLOCATION = {
 start_requested = False  # set to True in order to request that all slivers be started
 
 @database.synchronized
-def GetSlivers(data, fullupdate=True):
+def GetSlivers(plc, data, config = None, fullupdate=True):
     """This function has two purposes.  One, convert GetSlivers() data
     into a more convenient format.  Two, even if no updates are coming
     in, use the GetSlivers() heartbeat as a cue to scan for expired
@@ -92,12 +92,16 @@ def GetSlivers(data, fullupdate=True):
         # convert attributes field to a proper dict
         attr_dict = {}
         for attr in rec.pop('attributes'): attr_dict[attr['tagname']] = attr['value']
+        rec.setdefault("attributes", attr_dict)
 
         # squash keys
         keys = rec.pop('keys')
         rec.setdefault('keys', '\n'.join([key_struct['key'] for key_struct in keys]))
 
-        if rec['instantiation'].lower() == 'nm-controller': 
+        ## 'Type' isn't returned by GetSlivers() for whatever reason.  We're overloading
+        ## instantiation here, but i suppose its the ssame thing when you think about it. -FA
+        # Handle nm controller here
+        if rec['instantiation'].lower() == 'nm-controller':
             rec.setdefault('type', attr_dict.get('type', 'controller.Controller'))
         else:
             rec.setdefault('type', attr_dict.get('type', 'sliver.VServer'))
@@ -125,6 +129,11 @@ def GetSlivers(data, fullupdate=True):
             except (KeyError, ValueError): amt = default_amt
             rspec[resname] = amt
 
+        # add in sysctl attributes into the rspec
+        for key in attr_dict.keys():
+            if key.find("sysctl.") == 0:
+                rspec[key] = attr_dict[key]
+
         database.db.deliver_record(rec)
     if fullupdate: database.db.set_min_timestamp(data['timestamp'])
     # slivers are created here.