Populate the USERS metadata for windows images
authorNikos Skalkotos <skalkoto@grnet.gr>
Mon, 3 Jun 2013 15:16:04 +0000 (18:16 +0300)
committerNikos Skalkotos <skalkoto@grnet.gr>
Mon, 3 Jun 2013 15:19:15 +0000 (18:19 +0300)
For windows images check the appropriate registry keys to find out
the system users

image_creator/os_type/windows.py

index f1e6921..6ba200e 100644 (file)
 
 from image_creator.os_type import OSBase
 
+import hivex
+import tempfile
+import os
+
 
 class Windows(OSBase):
     """OS class for Windows"""
-    pass
+    def __init__(self, rootdev, ghandler, output):
+        super(Windows, self).__init__(rootdev, ghandler, output)
+
+        self.meta["USERS"] = " ".join(self._get_users())
+
+    def _get_users(self):
+        samfd, sam = tempfile.mkstemp()
+        try:
+            systemroot = self.g.inspect_get_windows_systemroot(self.root)
+            path = "%s/system32/config/sam" % systemroot
+            path = self.g.case_sensitive_path(path)
+            self.g.download(path, sam)
+
+            h = hivex.Hivex(sam)
+
+            key = h.root()
+
+            # Navigate to /SAM/Domains/Account/Users/Names
+            for child in ('SAM', 'Domains', 'Account', 'Users', 'Names'):
+                key = h.node_get_child(key, child)
+
+            users = [h.node_name(x) for x in h.node_children(key)]
+
+        finally:
+            os.unlink(sam)
+
+        # Filter out the guest account
+        return filter(lambda x: x != "Guest", users)
 
 # vim: set sta sts=4 shiftwidth=4 sw=4 et ai :