summaryrefslogtreecommitdiffstats
path: root/python/samba/netcmd/domain/claim
diff options
context:
space:
mode:
Diffstat (limited to 'python/samba/netcmd/domain/claim')
-rw-r--r--python/samba/netcmd/domain/claim/__init__.py35
-rw-r--r--python/samba/netcmd/domain/claim/claim_type.py361
-rw-r--r--python/samba/netcmd/domain/claim/value_type.py105
3 files changed, 501 insertions, 0 deletions
diff --git a/python/samba/netcmd/domain/claim/__init__.py b/python/samba/netcmd/domain/claim/__init__.py
new file mode 100644
index 0000000..de7c4bb
--- /dev/null
+++ b/python/samba/netcmd/domain/claim/__init__.py
@@ -0,0 +1,35 @@
+# Unix SMB/CIFS implementation.
+#
+# claim management
+#
+# Copyright (C) Catalyst.Net Ltd. 2023
+#
+# Written by Rob van der Linde <rob@catalyst.net.nz>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# 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 License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+from samba.netcmd import SuperCommand
+
+from .claim_type import cmd_domain_claim_claim_type
+from .value_type import cmd_domain_claim_value_type
+
+
+class cmd_domain_claim(SuperCommand):
+ """Manage claims on the domain."""
+
+ subcommands = {
+ "claim-type": cmd_domain_claim_claim_type(),
+ "value-type": cmd_domain_claim_value_type(),
+ }
diff --git a/python/samba/netcmd/domain/claim/claim_type.py b/python/samba/netcmd/domain/claim/claim_type.py
new file mode 100644
index 0000000..c0825c6
--- /dev/null
+++ b/python/samba/netcmd/domain/claim/claim_type.py
@@ -0,0 +1,361 @@
+# Unix SMB/CIFS implementation.
+#
+# claim type management
+#
+# Copyright (C) Catalyst.Net Ltd. 2023
+#
+# Written by Rob van der Linde <rob@catalyst.net.nz>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# 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 License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+import binascii
+import os
+
+import samba.getopt as options
+from samba.netcmd import Command, CommandError, Option, SuperCommand
+from samba.netcmd.domain.models import AttributeSchema, ClassSchema,\
+ ClaimType, ValueType
+from samba.netcmd.domain.models.exceptions import ModelError
+
+
+class cmd_domain_claim_claim_type_create(Command):
+ """Create claim types on the domain."""
+
+ synopsis = "%prog -H <URL> [options]"
+
+ takes_optiongroups = {
+ "sambaopts": options.SambaOptions,
+ "credopts": options.CredentialsOptions,
+ "hostopts": options.HostOptions,
+ }
+
+ takes_options = [
+ Option("--attribute", help="Attribute of claim type to create (required).",
+ dest="attribute_name", action="store", type=str, required=True),
+ Option("--class", help="Object classes to set claim type to.",
+ dest="class_names", action="append", type=str, required=True),
+ Option("--name", help="Optional display name or use attribute name.",
+ dest="name", action="store", type=str),
+ Option("--description",
+ help="Optional description or use from attribute.",
+ dest="description", action="store", type=str),
+ Option("--disable", help="Disable claim type.",
+ dest="disable", action="store_true"),
+ Option("--enable", help="Enable claim type.",
+ dest="enable", action="store_true"),
+ Option("--protect",
+ help="Protect claim type from accidental deletion.",
+ dest="protect", action="store_true"),
+ Option("--unprotect",
+ help="Unprotect claim type from accidental deletion.",
+ dest="unprotect", action="store_true")
+ ]
+
+ def run(self, hostopts=None, sambaopts=None, credopts=None, name=None,
+ attribute_name=None, class_names=None, description=None,
+ disable=None, enable=None, protect=None, unprotect=None):
+
+ # mutually exclusive attributes
+ if enable and disable:
+ raise CommandError("--enable and --disable cannot be used together.")
+ if protect and unprotect:
+ raise CommandError("--protect and --unprotect cannot be used together.")
+
+ ldb = self.ldb_connect(hostopts, sambaopts, credopts)
+
+ display_name = name or attribute_name
+ try:
+ claim_type = ClaimType.get(ldb, display_name=display_name)
+ except ModelError as e:
+ raise CommandError(e)
+
+ # Check if a claim type with this display name already exists.
+ # Note: you can register the same claim type under another display name.
+ if claim_type:
+ raise CommandError(f"Claim type {display_name} already exists, "
+ "but you can use --name to use another name.")
+
+ # Lookup attribute and class names in schema.
+ try:
+ applies_to = [ClassSchema.lookup(ldb, name) for name in class_names]
+ attribute = AttributeSchema.lookup(ldb, attribute_name)
+ value_type = ValueType.lookup(ldb, attribute)
+ except (LookupError, ModelError, ValueError) as e:
+ raise CommandError(e)
+
+ # Generate the new Claim Type cn.
+ # Windows creates a random number here containing 16 hex digits.
+ # We can achieve something similar using urandom(8)
+ instance = binascii.hexlify(os.urandom(8)).decode()
+ cn = f"ad://ext/{display_name}:{instance}"
+
+ # adminDescription should be present but still have a fallback.
+ if description is None:
+ description = attribute.admin_description or display_name
+
+ # claim_is_value_space_restricted is always False because we don't
+ # yet support creating claims with a restricted possible values list.
+ claim_type = ClaimType(
+ cn=cn,
+ description=description,
+ display_name=display_name,
+ enabled=not disable,
+ claim_attribute_source=attribute.dn,
+ claim_is_single_valued=attribute.is_single_valued,
+ claim_is_value_space_restricted=False,
+ claim_source_type="AD",
+ claim_type_applies_to_class=[obj.dn for obj in applies_to],
+ claim_value_type=value_type.claim_value_type,
+ )
+
+ # Either --enable will be set or --disable but never both.
+ # The default if both are missing is enabled=True.
+ if enable is not None:
+ claim_type.enabled = enable
+ else:
+ claim_type.enabled = not disable
+
+ # Create claim type
+ try:
+ claim_type.save(ldb)
+
+ if protect:
+ claim_type.protect(ldb)
+ except ModelError as e:
+ raise CommandError(e)
+
+ # Claim type created successfully.
+ self.outf.write(f"Created claim type: {display_name}")
+ if attribute_name != display_name:
+ self.outf.write(f" ({attribute_name})\n")
+ else:
+ self.outf.write("\n")
+
+
+class cmd_domain_claim_claim_type_modify(Command):
+ """Modify claim types on the domain."""
+
+ synopsis = "%prog -H <URL> [options]"
+
+ takes_optiongroups = {
+ "sambaopts": options.SambaOptions,
+ "credopts": options.CredentialsOptions,
+ "hostopts": options.HostOptions,
+ }
+
+ takes_options = [
+ Option("--name", help="Display name of claim type to modify (required).",
+ dest="name", action="store", type=str, required=True),
+ Option("--class", help="Object classes to set claim type to.",
+ dest="class_names", action="append", type=str),
+ Option("--description", help="Set the claim type description.",
+ dest="description", action="store", type=str),
+ Option("--enable",
+ help="Enable claim type.",
+ dest="enable", action="store_true"),
+ Option("--disable",
+ help="Disable claim type.",
+ dest="disable", action="store_true"),
+ Option("--protect",
+ help="Protect claim type from accidental deletion.",
+ dest="protect", action="store_true"),
+ Option("--unprotect",
+ help="Unprotect claim type from accidental deletion.",
+ dest="unprotect", action="store_true")
+ ]
+
+ def run(self, hostopts=None, sambaopts=None, credopts=None, name=None,
+ class_names=None, description=None, enable=None, disable=None,
+ protect=None, unprotect=None):
+
+ if enable and disable:
+ raise CommandError("--enable and --disable cannot be used together.")
+ if protect and unprotect:
+ raise CommandError("--protect and --unprotect cannot be used together.")
+
+ ldb = self.ldb_connect(hostopts, sambaopts, credopts)
+
+ try:
+ claim_type = ClaimType.get(ldb, display_name=name)
+ except ModelError as e:
+ raise CommandError(e)
+
+ # Check if claim type exists.
+ if not claim_type:
+ raise CommandError(f"Claim type {name} not found.")
+
+ # Either --enable will be set or --disable but never both.
+ if enable:
+ claim_type.enabled = True
+ elif disable:
+ claim_type.enabled = False
+
+ # Update the description.
+ if description is not None:
+ claim_type.description = description
+
+ # Change class names for claim type.
+ if class_names is not None:
+ try:
+ applies_to = [ClassSchema.lookup(ldb, name)
+ for name in class_names]
+ except (LookupError, ValueError) as e:
+ raise CommandError(e)
+
+ claim_type.claim_type_applies_to_class = [obj.dn for obj in applies_to]
+
+ # Update claim type.
+ try:
+ claim_type.save(ldb)
+
+ if protect:
+ claim_type.protect(ldb)
+ elif unprotect:
+ claim_type.unprotect(ldb)
+ except ModelError as e:
+ raise CommandError(e)
+
+ # Claim type updated successfully.
+ self.outf.write(f"Updated claim type: {name}\n")
+
+
+class cmd_domain_claim_claim_type_delete(Command):
+ """Delete claim types on the domain."""
+
+ synopsis = "%prog -H <URL> [options]"
+
+ takes_optiongroups = {
+ "sambaopts": options.SambaOptions,
+ "credopts": options.CredentialsOptions,
+ "hostopts": options.HostOptions,
+ }
+
+ takes_options = [
+ Option("--name", help="Display name of claim type to delete (required).",
+ dest="name", action="store", type=str, required=True),
+ Option("--force", help="Force claim type delete even if it is protected.",
+ dest="force", action="store_true")
+ ]
+
+ def run(self, hostopts=None, sambaopts=None, credopts=None,
+ name=None, force=None):
+
+ ldb = self.ldb_connect(hostopts, sambaopts, credopts)
+
+ try:
+ claim_type = ClaimType.get(ldb, display_name=name)
+ except ModelError as e:
+ raise CommandError(e)
+
+ # Check if claim type exists first.
+ if claim_type is None:
+ raise CommandError(f"Claim type {name} not found.")
+
+ # Delete claim type.
+ try:
+ if force:
+ claim_type.unprotect(ldb)
+
+ claim_type.delete(ldb)
+ except ModelError as e:
+ if not force:
+ raise CommandError(
+ f"{e}\nTry --force to delete protected claim types.")
+ else:
+ raise CommandError(e)
+
+ # Claim type deleted successfully.
+ self.outf.write(f"Deleted claim type: {name}\n")
+
+
+class cmd_domain_claim_claim_type_list(Command):
+ """List claim types on the domain."""
+
+ synopsis = "%prog -H <URL> [options]"
+
+ takes_optiongroups = {
+ "sambaopts": options.SambaOptions,
+ "credopts": options.CredentialsOptions,
+ "hostopts": options.HostOptions,
+ }
+
+ takes_options = [
+ Option("--json", help="Output results in JSON format.",
+ dest="output_format", action="store_const", const="json"),
+ ]
+
+ def run(self, hostopts=None, sambaopts=None, credopts=None,
+ output_format=None):
+
+ ldb = self.ldb_connect(hostopts, sambaopts, credopts)
+
+ # Claim types grouped by displayName.
+ try:
+ claim_types = {claim_type.display_name: claim_type.as_dict()
+ for claim_type in ClaimType.query(ldb)}
+ except ModelError as e:
+ raise CommandError(e)
+
+ # Using json output format gives more detail.
+ if output_format == "json":
+ self.print_json(claim_types)
+ else:
+ for claim_type in claim_types.keys():
+ self.outf.write(f"{claim_type}\n")
+
+
+class cmd_domain_claim_claim_type_view(Command):
+ """View a single claim type on the domain."""
+
+ synopsis = "%prog -H <URL> [options]"
+
+ takes_optiongroups = {
+ "sambaopts": options.SambaOptions,
+ "credopts": options.CredentialsOptions,
+ "hostopts": options.HostOptions,
+ }
+
+ takes_options = [
+ Option("--name", help="Display name of claim type to view (required).",
+ dest="name", action="store", type=str, required=True),
+ ]
+
+ def run(self, hostopts=None, sambaopts=None, credopts=None, name=None):
+
+ ldb = self.ldb_connect(hostopts, sambaopts, credopts)
+
+ try:
+ claim_type = ClaimType.get(ldb, display_name=name)
+ except ModelError as e:
+ raise CommandError(e)
+
+ # Check if claim type exists first.
+ if claim_type is None:
+ raise CommandError(f"Claim type {name} not found.")
+
+ # Display claim type as JSON.
+ self.print_json(claim_type.as_dict())
+
+
+class cmd_domain_claim_claim_type(SuperCommand):
+ """Manage claim types on the domain."""
+
+ subcommands = {
+ "create": cmd_domain_claim_claim_type_create(),
+ "delete": cmd_domain_claim_claim_type_delete(),
+ "modify": cmd_domain_claim_claim_type_modify(),
+ "list": cmd_domain_claim_claim_type_list(),
+ "view": cmd_domain_claim_claim_type_view(),
+ }
diff --git a/python/samba/netcmd/domain/claim/value_type.py b/python/samba/netcmd/domain/claim/value_type.py
new file mode 100644
index 0000000..a261113
--- /dev/null
+++ b/python/samba/netcmd/domain/claim/value_type.py
@@ -0,0 +1,105 @@
+# Unix SMB/CIFS implementation.
+#
+# claim value type management
+#
+# Copyright (C) Catalyst.Net Ltd. 2023
+#
+# Written by Rob van der Linde <rob@catalyst.net.nz>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# 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 License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+import samba.getopt as options
+from samba.netcmd import Command, CommandError, Option, SuperCommand
+from samba.netcmd.domain.models import ValueType
+from samba.netcmd.domain.models.exceptions import ModelError
+
+
+class cmd_domain_claim_value_type_list(Command):
+ """List claim values types on the domain."""
+
+ synopsis = "%prog -H <URL> [options]"
+
+ takes_optiongroups = {
+ "sambaopts": options.SambaOptions,
+ "credopts": options.CredentialsOptions,
+ "hostopts": options.HostOptions,
+ }
+
+ takes_options = [
+ Option("--json", help="Output results in JSON format.",
+ dest="output_format", action="store_const", const="json"),
+ ]
+
+ def run(self, hostopts=None, sambaopts=None, credopts=None,
+ output_format=None):
+
+ ldb = self.ldb_connect(hostopts, sambaopts, credopts)
+
+ # Value types grouped by display name.
+ try:
+ value_types = {value_type.display_name: value_type.as_dict()
+ for value_type in ValueType.query(ldb)}
+ except ModelError as e:
+ raise CommandError(e)
+
+ # Using json output format gives more detail.
+ if output_format == "json":
+ self.print_json(value_types)
+ else:
+ for value_type in value_types.keys():
+ self.outf.write(f"{value_type}\n")
+
+
+class cmd_domain_claim_value_type_view(Command):
+ """View a single claim value type on the domain."""
+
+ synopsis = "%prog -H <URL> [options]"
+
+ takes_optiongroups = {
+ "sambaopts": options.SambaOptions,
+ "credopts": options.CredentialsOptions,
+ "hostopts": options.HostOptions,
+ }
+
+ takes_options = [
+ Option("--name",
+ help="Display name of claim value type to view (required).",
+ dest="name", action="store", type=str, required=True),
+ ]
+
+ def run(self, hostopts=None, sambaopts=None, credopts=None, name=None):
+
+ ldb = self.ldb_connect(hostopts, sambaopts, credopts)
+
+ try:
+ value_type = ValueType.get(ldb, display_name=name)
+ except ModelError as e:
+ raise CommandError(e)
+
+ # Check if value type exists first.
+ if value_type is None:
+ raise CommandError(f"Value type {name} not found.")
+
+ # Display vale type as JSON.
+ self.print_json(value_type.as_dict())
+
+
+class cmd_domain_claim_value_type(SuperCommand):
+ """Manage claim value types on the domain."""
+
+ subcommands = {
+ "list": cmd_domain_claim_value_type_list(),
+ "view": cmd_domain_claim_value_type_view(),
+ }