]> www.infradead.org Git - users/dhowells/kafs-utils.git/commitdiff
Implement "pts listowned"
authorDavid Howells <dhowells@redhat.com>
Tue, 13 May 2014 20:16:05 +0000 (21:16 +0100)
committerDavid Howells <dhowells@redhat.com>
Tue, 13 May 2014 20:28:08 +0000 (21:28 +0100)
Signed-off-by: David Howells <dhowells@redhat.com>
suite/commands/pts/listowned.py [new file with mode: 0644]

diff --git a/suite/commands/pts/listowned.py b/suite/commands/pts/listowned.py
new file mode 100644 (file)
index 0000000..d9d0cad
--- /dev/null
@@ -0,0 +1,95 @@
+#
+# AFS Server management toolkit: Find ownership of entry
+# -*- coding: utf-8 -*-
+#
+
+__copyright__ = """
+Copyright (C) 2014 Red Hat, Inc. All Rights Reserved.
+Written by David Howells (dhowells@redhat.com)
+
+This program is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public Licence version 2 as
+published by the Free Software Foundation.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public Licence for more details.
+
+You should have received a copy of the GNU General Public Licence
+along with this program; if not, write to the Free Software
+Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+"""
+
+from afs.argparse import *
+from afs.lib.output import *
+import kafs
+import sys
+
+help = "Show the Protection Database groups owned by a user or group"
+
+command_arguments = [
+    [ "nameorid",       get_strings,            "rm",         "<user name>+" ],
+    [ "cell",           get_cell,               "os",         "<cell name>" ],
+    [ "noauth",         get_auth,               "fn" ],
+    [ "localauth",      get_auth,               "fn" ],
+    [ "verbose",        get_verbose,            "fn" ],
+    [ "encrypt",        get_dummy,              "fn" ],
+    [ "force",          get_dummy,              "fn" ],
+]
+
+cant_combine_arguments = [
+    ( "cell",           "localauth" ),
+    ( "noauth",         "localauth" ),
+]
+
+argument_size_limits = {
+    "nameorid"          : kafs.PR_MAXNAMELEN,
+}
+
+description = r"""
+Show the Protection Database groups owned by a user or group
+"""
+
+def main(params):
+    cell = params["cell"]
+
+    for name in params["nameorid"]:
+        try:
+            if name.isnumeric() or name[0] == "-" and name[1:].isnumeric():
+                uid = int(name)
+                verbose("ID ", uid, "\n")
+                # Convert the id to a name for message purposes - note that if
+                # the entry does not exist, this will just stringify the ID for
+                # us.
+                ret = cell.call_pt_server(params, kafs.PR_IDToName, [ uid ])
+                name = ret.nlist[0].prname
+            else:
+                verbose("Name ", name, "\n")
+                prname = kafs.prname()
+                prname.prname = name
+                ret = cell.call_pt_server(params, kafs.PR_NameToID, [ prname ])
+                uid = ret.ilist[0]
+                if uid == kafs.PR_ANONYMOUSID and name != "anonymous":
+                    error("User or group doesn't exist so couldn't look up id for " + name + "\n")
+                    if "force" not in params:
+                        break
+                    continue
+
+            verbose("Listing entries owned by user ", uid, " (", name, ")\n")
+            ret = cell.call_pt_server(params, kafs.PR_ListOwned, uid, 0)
+
+            output("Groups owned by ", name, " (id: ", uid, ") are:\n")
+            ret = cell.call_pt_server(params, kafs.PR_IDToName, ret.elist)
+
+            for i in ret.nlist:
+                output("  ", i.prname, "\n")
+
+        except kafs.AbortPRNOENT:
+            error("User or group doesn't exist deleting ", name, " (id ", uid, ")\n")
+            if "force" not in params:
+                break
+        except kafs.AbortPRPERM:
+            error("Permission denied deleting ", name, " (id: ", uid, ")\n")
+            if "force" not in params:
+                break