net: allow "net idmap get ranges" to list all ranges
[mat/samba.git] / source3 / utils / net_idmap.c
index 22fc13c80bb26b46c1dd561fe0c1898328637bff..de2d50975bb6d317104928844a50d8e1b60a4861 100644 (file)
@@ -27,6 +27,7 @@
 #include "../libcli/security/security.h"
 #include "net_idmap_check.h"
 #include "util_tdb.h"
+#include "idmap_autorid_tdb.h"
 
 #define ALLOC_CHECK(mem) do { \
        if (!mem) { \
@@ -40,7 +41,7 @@ enum idmap_dump_backend {
        AUTORID
 };
 
-struct idmap_dump_ctx {
+struct net_idmap_ctx {
        enum idmap_dump_backend backend;
 };
 
@@ -129,7 +130,7 @@ static int net_idmap_dump_one_tdb_entry(struct db_record *rec,
 }
 
 static const char* net_idmap_dbfile(struct net_context *c,
-                                   struct idmap_dump_ctx *ctx)
+                                   struct net_idmap_ctx *ctx)
 {
        const char* dbfile = NULL;
        const char *backend = NULL;
@@ -180,6 +181,56 @@ static const char* net_idmap_dbfile(struct net_context *c,
        return dbfile;
 }
 
+static bool net_idmap_opendb_autorid(TALLOC_CTX *mem_ctx,
+                                    struct net_context *c,
+                                    bool readonly,
+                                    struct db_context **db)
+{
+       bool ret = false;
+       const char *dbfile;
+       struct net_idmap_ctx ctx = { .backend = AUTORID };
+
+       if (c == NULL) {
+               goto done;
+       }
+
+       dbfile = net_idmap_dbfile(c, &ctx);
+       if (dbfile == NULL) {
+               goto done;
+       }
+
+       if (ctx.backend != AUTORID) {
+               d_fprintf(stderr, _("Unsupported backend\n"));
+               goto done;
+       }
+
+       if (readonly) {
+               *db = db_open(mem_ctx, dbfile, 0, TDB_DEFAULT, O_RDONLY, 0,
+                            DBWRAP_LOCK_ORDER_1);
+               if (*db == NULL) {
+                       d_fprintf(stderr,
+                                 _("Could not open autorid db (%s): %s\n"),
+                                dbfile, strerror(errno));
+                       goto done;
+               }
+       } else {
+               NTSTATUS status;
+               status = idmap_autorid_db_init(dbfile, mem_ctx, db);
+               if (!NT_STATUS_IS_OK(status)) {
+                       d_fprintf(stderr,
+                               _("Error calling idmap_autorid_db_init: %s\n"),
+                               nt_errstr(status));
+                       goto done;
+               }
+       }
+
+       ret = true;
+
+done:
+       return ret;
+}
+
+
 /***********************************************************
  Dump the current idmap
  **********************************************************/
@@ -190,7 +241,7 @@ static int net_idmap_dump(struct net_context *c, int argc, const char **argv)
        const char* dbfile;
        NTSTATUS status;
        int ret = -1;
-       struct idmap_dump_ctx ctx = { .backend = TDB };
+       struct net_idmap_ctx ctx = { .backend = TDB };
 
        if ( argc > 1  || c->display_usage) {
                d_printf("%s\n%s",
@@ -292,7 +343,7 @@ static int net_idmap_restore(struct net_context *c, int argc, const char **argv)
        struct db_context *db;
        const char *dbfile = NULL;
        int ret = 0;
-       struct idmap_dump_ctx ctx = { .backend = TDB };
+       struct net_idmap_ctx ctx = { .backend = TDB };
 
        if (c->display_usage) {
                d_printf("%s\n%s",
@@ -516,7 +567,8 @@ static bool delete_args_ok(int argc, const char **argv)
        return false;
 }
 
-static int net_idmap_delete(struct net_context *c, int argc, const char **argv)
+static int net_idmap_delete_mapping(struct net_context *c, int argc,
+                                   const char **argv)
 {
        int ret = -1;
        struct db_context *db;
@@ -524,12 +576,12 @@ static int net_idmap_delete(struct net_context *c, int argc, const char **argv)
        TDB_DATA key;
        NTSTATUS status;
        const char* dbfile;
-       struct idmap_dump_ctx ctx = { .backend = TDB };
+       struct net_idmap_ctx ctx = { .backend = TDB };
 
        if ( !delete_args_ok(argc,argv) || c->display_usage) {
                d_printf("%s\n%s",
                         _("Usage:"),
-                        _("net idmap delete [-f] [--db=<TDB>] <ID>\n"
+                        _("net idmap delete mapping [-f] [--db=<TDB>] <ID>\n"
                           "  Delete mapping of ID from TDB.\n"
                           "    -f\tforce\n"
                           "    TDB\tidmap database\n"
@@ -570,11 +622,292 @@ done:
        return ret;
 }
 
-static int net_idmap_set(struct net_context *c, int argc, const char **argv)
+static bool parse_uint32(const char *str, uint32_t *result)
+{
+       unsigned long val;
+       char *endptr;
+
+       val = strtoul(str, &endptr, 10);
+
+       if (str == endptr) {
+               return false;
+       }
+       if (*endptr != '\0') {
+               return false;
+       }
+       if ((val == ULONG_MAX) && (errno == ERANGE)) {
+               return false;
+       }
+       if ((val & UINT32_MAX) != val) {
+               /* overflow */
+               return false;
+       }
+       *result = val;          /* Potential crop */
+       return true;
+}
+
+static void net_idmap_autorid_delete_range_usage(void)
+{
+       d_printf("%s\n%s",
+                _("Usage:"),
+                _("net idmap delete range [-f] [--db=<TDB>] <RANGE>|(<SID>[ <INDEX>])\n"
+                  "  Delete a domain range mapping from the database.\n"
+                  "    -f\tforce\n"
+                  "    TDB\tidmap database\n"
+                  "    RANGE\tthe range number to delete\n"
+                  "    SID\t\tSID of the domain\n"
+                  "    INDEX\trange index number do delete for the domain\n"));
+}
+
+static int net_idmap_autorid_delete_range(struct net_context *c, int argc,
+                                         const char **argv)
+{
+       int ret = -1;
+       struct db_context *db = NULL;
+       NTSTATUS status;
+       uint32_t rangenum;
+       uint32_t range_index;
+       const char *domsid;
+       TALLOC_CTX *mem_ctx = NULL;
+       bool ok;
+       bool force = (c->opt_force != 0);
+
+       if (c->display_usage) {
+               net_idmap_autorid_delete_range_usage();
+               return 0;
+       }
+
+       if (argc < 1 || argc > 2) {
+               net_idmap_autorid_delete_range_usage();
+               return -1;
+       }
+
+       mem_ctx = talloc_stackframe();
+       if (!net_idmap_opendb_autorid(mem_ctx, c, false, &db)) {
+               goto done;
+       }
+
+       ok = parse_uint32(argv[0], &rangenum);
+       if (ok) {
+               d_printf("%s: %"PRIu32"\n", _("Deleting range number"),
+                        rangenum);
+
+               status = idmap_autorid_delete_range_by_num(db, rangenum,
+                                                          force);
+               if (!NT_STATUS_IS_OK(status)) {
+                       d_fprintf(stderr, "%s: %s\n",
+                                 _("Failed to delete domain range mapping"),
+                                 nt_errstr(status));
+               } else {
+                       ret = 0;
+               }
+
+               goto done;
+       }
+
+       domsid = argv[0];
+
+       if (argc == 2) {
+               ok = parse_uint32(argv[1], &range_index);
+               if (!ok) {
+                       d_printf("%s: %s\n",
+                                _("Invalid index specification"), argv[1]);
+                       net_idmap_autorid_delete_range_usage();
+                       goto done;
+               }
+       }
+
+       status = idmap_autorid_delete_range_by_sid(db, domsid, range_index,
+                                                  force);
+       if (!NT_STATUS_IS_OK(status)) {
+               d_fprintf(stderr, "%s: %s\n",
+                         _("Failed to delete domain range mapping"),
+                         nt_errstr(status));
+               goto done;
+       }
+
+       ret = 0;
+
+done:
+       talloc_free(mem_ctx);
+       return ret;
+}
+
+static void net_idmap_autorid_delete_ranges_usage(void)
+{
+       d_printf("%s\n%s",
+                _("Usage:"),
+                _("net idmap delete ranges [-f] [--db=<TDB>] <SID>)\n"
+                  "  Delete all domain range mappings for a given domain.\n"
+                  "    -f\tforce\n"
+                  "    TDB\tidmap database\n"
+                  "    SID\t\tSID of the domain\n"));
+}
+
+static int net_idmap_autorid_delete_ranges(struct net_context *c, int argc,
+                                          const char **argv)
+{
+       int ret = -1;
+       struct db_context *db = NULL;
+       NTSTATUS status;
+       const char *domsid;
+       TALLOC_CTX *mem_ctx = NULL;
+       bool force = (c->opt_force != 0);
+       int count = 0;
+
+       if (c->display_usage) {
+               net_idmap_autorid_delete_ranges_usage();
+               return 0;
+       }
+
+       if (argc != 1) {
+               net_idmap_autorid_delete_ranges_usage();
+               return -1;
+       }
+
+       domsid = argv[0];
+
+       mem_ctx = talloc_stackframe();
+       if (!net_idmap_opendb_autorid(mem_ctx, c, false, &db)) {
+               goto done;
+       }
+
+       status = idmap_autorid_delete_domain_ranges(db, domsid, force, &count);
+       if (!NT_STATUS_IS_OK(status)) {
+               d_fprintf(stderr, "%s %s: %s\n",
+                         _("Failed to delete domain range mappings for "
+                           "domain"),
+                         domsid,
+                         nt_errstr(status));
+               goto done;
+       }
+
+       d_printf(_("deleted %d domain mappings\n"), count);
+
+       ret = 0;
+
+done:
+       talloc_free(mem_ctx);
+       return ret;
+}
+
+static int net_idmap_delete(struct net_context *c, int argc, const char **argv)
+{
+       struct functable func[] = {
+               {
+                       "mapping",
+                       net_idmap_delete_mapping,
+                       NET_TRANSPORT_LOCAL,
+                       N_("Delete ID mapping"),
+                       N_("net idmap delete mapping <ID>\n"
+                          "  Delete ID mapping")
+               },
+               {
+                       "range",
+                       net_idmap_autorid_delete_range,
+                       NET_TRANSPORT_LOCAL,
+                       N_("Delete a domain range mapping"),
+                       N_("net idmap delete range <RANGE>|(<SID>[ <INDEX>])\n"
+                          "  Delete a domain range mapping")
+               },
+               {
+                       "ranges",
+                       net_idmap_autorid_delete_ranges,
+                       NET_TRANSPORT_LOCAL,
+                       N_("Delete all domain range mapping for a given "
+                          "domain"),
+                       N_("net idmap delete ranges <SID>\n"
+                          "  Delete a domain range mapping")
+               },
+               {NULL, NULL, 0, NULL, NULL}
+       };
+
+       return net_run_function(c, argc, argv, "net idmap delete", func);
+}
+
+
+static int net_idmap_set_mapping(struct net_context *c,
+                                int argc, const char **argv)
 {
        d_printf("%s\n", _("Not implemented yet"));
        return -1;
 }
+
+static void net_idmap_autorid_set_range_usage(void)
+{
+       d_printf("%s\n%s",
+                _("Usage:"),
+                _("net idmap set range"
+                  " <range> <SID> [<index>] [--db=<inputfile>]\n"
+                  "  Store a domain-range mapping for a given domain.\n"
+                  "    range\tRange number to be set for the domain\n"
+                  "    SID\t\tSID of the domain\n"
+                  "    index\trange-index number to be set for the domain\n"
+                  "    inputfile\tTDB file to add mapping to.\n"));
+}
+
+static int net_idmap_autorid_set_range(struct net_context *c,
+                                      int argc, const char **argv)
+{
+       int ret = -1;
+       TALLOC_CTX *mem_ctx;
+       struct db_context *db = NULL;
+       const char *domsid;
+       uint32_t rangenum;
+       uint32_t range_index = 0;
+       NTSTATUS status;
+       bool ok;
+
+       if (c->display_usage) {
+               net_idmap_autorid_set_range_usage();
+               return 0;
+       }
+
+       if (argc < 2  || argc > 3) {
+               net_idmap_autorid_set_range_usage();
+               return -1;
+       }
+
+       ok = parse_uint32(argv[0], &rangenum);
+       if (!ok) {
+               d_printf("%s: %s\n", _("Invalid range specification"),
+                        argv[0]);
+               net_idmap_autorid_set_range_usage();
+               return -1;
+       }
+
+       domsid = argv[1];
+
+       if (argc == 3) {
+               ok = parse_uint32(argv[2], &range_index);
+               if (!ok) {
+                       d_printf("%s: %s\n",
+                                _("Invalid index specification"), argv[2]);
+                       net_idmap_autorid_set_range_usage();
+                       return -1;
+               }
+       }
+
+       mem_ctx = talloc_stackframe();
+       if (!net_idmap_opendb_autorid(mem_ctx, c, false, &db)) {
+               goto done;
+       }
+
+       status = idmap_autorid_setrange(db, domsid, range_index, rangenum);
+       if (!NT_STATUS_IS_OK(status)) {
+               d_fprintf(stderr, "%s: %s\n",
+                         _("Failed to save domain mapping"),
+                         nt_errstr(status));
+               goto done;
+       }
+
+       ret = 0;
+
+done:
+       TALLOC_FREE(mem_ctx);
+       return ret;
+}
+
 static bool idmap_store_secret(const char *backend,
                               const char *domain,
                               const char *identity,
@@ -613,7 +946,7 @@ static int net_idmap_secret(struct net_context *c, int argc, const char **argv)
        if (argc != 2 || c->display_usage) {
                d_printf("%s\n%s",
                         _("Usage:\n"),
-                        _("net idmap secret <DOMAIN> <secret>\n"
+                        _("net idmap set secret <DOMAIN> <secret>\n"
                           "  Set the secret for the specified domain\n"
                           "    DOMAIN\tDomain to set secret for.\n"
                           "    secret\tNew secret to set.\n"));
@@ -664,11 +997,316 @@ static int net_idmap_secret(struct net_context *c, int argc, const char **argv)
        return 0;
 }
 
+static int net_idmap_autorid_set_config(struct net_context *c,
+                                       int argc, const char **argv)
+{
+       int ret = -1;
+       NTSTATUS status;
+       TALLOC_CTX *mem_ctx;
+       struct db_context *db = NULL;
+
+       if (argc != 1 || c->display_usage) {
+               d_printf("%s\n%s",
+                        _("Usage:"),
+                        _("net idmap set config <config>"
+                          " [--db=<inputfile>]\n"
+                          " Update CONFIG entry in autorid.\n"
+                          "    config\tConfig string to be stored\n"
+                          "    inputfile\tTDB file to update config.\n"));
+               return c->display_usage ? 0 : -1;
+       }
+
+       mem_ctx = talloc_stackframe();
+
+       if (!net_idmap_opendb_autorid(mem_ctx, c, false, &db)) {
+               goto done;
+       }
+
+       status = idmap_autorid_saveconfigstr(db, argv[0]);
+       if (!NT_STATUS_IS_OK(status)) {
+               printf("Error storing the config in the database: %s\n",
+                      nt_errstr(status));
+               goto done;
+       }
+
+       ret = 0;
+
+done:
+       TALLOC_FREE(mem_ctx);
+       return ret;
+}
+
+static int net_idmap_set(struct net_context *c, int argc, const char **argv)
+{
+       struct functable func[] = {
+               {
+                       "mapping",
+                       net_idmap_set_mapping,
+                       NET_TRANSPORT_LOCAL,
+                       N_("Not implemented yet"),
+                       N_("net idmap set mapping\n"
+                          "  Not implemented yet")
+               },
+               {
+                       "range",
+                       net_idmap_autorid_set_range,
+                       NET_TRANSPORT_LOCAL,
+                       N_("Store a domain-range mapping"),
+                       N_("net idmap set range\n"
+                          "  Store a domain-range mapping")
+               },
+               {
+                       "config",
+                       net_idmap_autorid_set_config,
+                       NET_TRANSPORT_LOCAL,
+                       N_("Save the global configuration in the autorid database"),
+                       N_("net idmap set config \n"
+                          "  Save the global configuration in the autorid database ")
+               },
+               {
+                       "secret",
+                       net_idmap_secret,
+                       NET_TRANSPORT_LOCAL,
+                       N_("Set secret for specified domain"),
+                       N_("net idmap set secret <DOMAIN> <secret>\n"
+                          "  Set secret for specified domain")
+               },
+               {NULL, NULL, 0, NULL, NULL}
+       };
+
+       return net_run_function(c, argc, argv, "net idmap set", func);
+}
+
+static void net_idmap_autorid_get_range_usage(void)
+{
+       d_printf("%s\n%s",
+                _("Usage:"),
+                _("net idmap get range <SID> [<index>] [--db=<inputfile>]\n"
+                  "  Get the range for a given domain and index.\n"
+                  "    SID\t\tSID of the domain\n"
+                  "    index\trange-index number to be retrieved\n"
+                  "    inputfile\tTDB file to add mapping to.\n"));
+}
+
+
+static int net_idmap_autorid_get_range(struct net_context *c, int argc,
+                                      const char **argv)
+{
+       int ret = -1;
+       TALLOC_CTX *mem_ctx;
+       struct db_context *db = NULL;
+       const char *domsid;
+       uint32_t rangenum;
+       uint32_t range_index = 0;
+       uint32_t low_id;
+       NTSTATUS status;
+       char *keystr;
+       bool ok;
+
+       if (c->display_usage) {
+               net_idmap_autorid_get_range_usage();
+               return 0;
+       }
+
+       if (argc < 1  || argc > 2) {
+               net_idmap_autorid_get_range_usage();
+               return -1;
+       }
+
+       domsid = argv[0];
+
+       if (argc == 2) {
+               ok = parse_uint32(argv[1], &range_index);
+               if (!ok) {
+                       d_printf("%s: %s\n",
+                                _("Invalid index specification"), argv[1]);
+                       net_idmap_autorid_get_range_usage();
+                       return -1;
+               }
+       }
+
+       mem_ctx = talloc_stackframe();
+       if (!net_idmap_opendb_autorid(mem_ctx, c, true, &db)) {
+               goto done;
+       }
+
+       status = idmap_autorid_getrange(db, domsid, range_index, &rangenum,
+                                       &low_id);
+       if (!NT_STATUS_IS_OK(status)) {
+               d_fprintf(stderr, "%s: %s\n",
+                         _("Failed to load domain range"), nt_errstr(status));
+               goto done;
+       }
+
+       if (range_index == 0) {
+               keystr = talloc_strdup(mem_ctx, domsid);
+       } else {
+               keystr = talloc_asprintf(mem_ctx, "%s#%"PRIu32, domsid,
+                                        range_index);
+       }
+
+       printf("RANGE %"PRIu32": %s (low id: %"PRIu32")\n",
+              rangenum, keystr, low_id);
+
+       ret = 0;
+
+done:
+       TALLOC_FREE(mem_ctx);
+       return ret;
+}
+
+static NTSTATUS net_idmap_autorid_print_range(struct db_context *db,
+                                             const char *domsid,
+                                             uint32_t range_index,
+                                             uint32_t rangenum,
+                                             void *private_data)
+{
+       if (range_index == 0) {
+               printf("RANGE %"PRIu32": %s\n", rangenum, domsid);
+       } else {
+               printf("RANGE %"PRIu32": %s#%"PRIu32"\n", rangenum, domsid,
+                      range_index);
+       }
+
+       return NT_STATUS_OK;
+}
+
+static void net_idmap_autorid_get_ranges_usage(void)
+{
+       d_printf("%s\n%s",
+                _("Usage:"),
+                _("net idmap get ranges [<SID>] [--db=<inputfile>]\n"
+                  "  Get all ranges for a given domain.\n"
+                  "    SID\t\tSID of the domain - list all ranges if omitted\n"
+                  "    inputfile\tTDB file to add mapping to.\n"));
+}
+
+static int net_idmap_autorid_get_ranges(struct net_context *c, int argc,
+                                       const char **argv)
+{
+       int ret = -1;
+       TALLOC_CTX *mem_ctx;
+       struct db_context *db = NULL;
+       const char *domsid;
+       NTSTATUS status;
+
+       if (c->display_usage) {
+               net_idmap_autorid_get_ranges_usage();
+               return 0;
+       }
+
+       if (argc == 0) {
+               domsid = NULL;
+       } else if (argc == 1) {
+               domsid = argv[0];
+       } else {
+               net_idmap_autorid_get_ranges_usage();
+               return -1;
+       }
+
+       mem_ctx = talloc_stackframe();
+       if (!net_idmap_opendb_autorid(mem_ctx, c, true, &db)) {
+               goto done;
+       }
+
+       status = idmap_autorid_iterate_domain_ranges_read(db,
+                                               domsid,
+                                               net_idmap_autorid_print_range,
+                                               NULL, /* private_data */
+                                               NULL  /* count */);
+       if (!NT_STATUS_IS_OK(status)) {
+               d_fprintf(stderr, "%s: %s\n",
+                         _("Error getting domain ranges"), nt_errstr(status));
+               goto done;
+       }
+
+       ret = 0;
+
+done:
+       talloc_free(mem_ctx);
+       return ret;
+}
+
+static int net_idmap_autorid_get_config(struct net_context *c, int argc,
+                                       const char **argv)
+{
+       int ret = -1;
+       char *config;
+       TALLOC_CTX *mem_ctx;
+       NTSTATUS status;
+       struct db_context *db = NULL;
+
+       if (argc > 0 || c->display_usage) {
+               d_printf("%s\n%s",
+                        _("Usage:"),
+                        _("net idmap get config"
+                          " [--db=<inputfile>]\n"
+                          " Get CONFIG entry from autorid database\n"
+                          "    inputfile\tTDB file to read config from.\n"));
+               return c->display_usage ? 0 : -1;
+       }
+
+       mem_ctx = talloc_stackframe();
+
+       if (!net_idmap_opendb_autorid(mem_ctx, c, true, &db)) {
+               goto done;
+       }
+
+       status = idmap_autorid_getconfigstr(db, mem_ctx, &config);
+       if (!NT_STATUS_IS_OK(status)) {
+               d_fprintf(stderr, "%s: %s\n",
+                         _("Error: unable to read config entry"),
+                         nt_errstr(status));
+               goto done;
+       }
+
+       printf("CONFIG: %s\n", config);
+       ret = 0;
+
+done:
+       TALLOC_FREE(mem_ctx);
+       return ret;
+}
+
+
+static int net_idmap_get(struct net_context *c, int argc, const char **argv)
+{
+       struct functable func[] = {
+               {
+                       "range",
+                       net_idmap_autorid_get_range,
+                       NET_TRANSPORT_LOCAL,
+                       N_("Get the range for a domain and range-index"),
+                       N_("net idmap get range\n"
+                          "  Get the range for a domain and range-index")
+               },
+               {
+                       "ranges",
+                       net_idmap_autorid_get_ranges,
+                       NET_TRANSPORT_LOCAL,
+                       N_("Get all ranges for a domain"),
+                       N_("net idmap get ranges <SID>\n"
+                          "  Get all ranges for a domain")
+               },
+               {
+                       "config",
+                       net_idmap_autorid_get_config,
+                       NET_TRANSPORT_LOCAL,
+                       N_("Get the global configuration from the autorid database"),
+                       N_("net idmap get config \n"
+                          "  Get the global configuration from the autorid database ")
+               },
+               {NULL, NULL, 0, NULL, NULL}
+       };
+
+       return net_run_function(c, argc, argv, "net idmap get", func);
+}
+
 static int net_idmap_check(struct net_context *c, int argc, const char **argv)
 {
        const char* dbfile;
        struct check_options opts;
-       struct idmap_dump_ctx ctx = { .backend = TDB };
+       struct net_idmap_ctx ctx = { .backend = TDB };
 
        if ( argc > 1 || c->display_usage) {
                d_printf("%s\n%s",
@@ -733,20 +1371,28 @@ int net_idmap(struct net_context *c, int argc, const char **argv)
                           "  Restore entries from stdin")
                },
                {
-                       "setmap",
+                       "get",
+                       net_idmap_get,
+                       NET_TRANSPORT_LOCAL,
+                       N_("Read data from the ID mapping database"),
+                       N_("net idmap get\n"
+                          "  Read data from the ID mapping database")
+               },
+               {
+                       "set",
                        net_idmap_set,
                        NET_TRANSPORT_LOCAL,
-                       N_("Not implemented yet"),
-                       N_("net idmap setmap\n"
-                          "  Not implemented yet")
+                       N_("Write data to the ID mapping database"),
+                       N_("net idmap set\n"
+                          "  Write data to the ID mapping database")
                },
                {
                        "delete",
                        net_idmap_delete,
                        NET_TRANSPORT_LOCAL,
-                       N_("Delete ID mapping"),
-                       N_("net idmap delete <ID>\n"
-                          "  Delete ID mapping")
+                       N_("Delete entries from the ID mapping database"),
+                       N_("net idmap delete\n"
+                          "  Delete entries from the ID mapping database")
                },
                {
                        "secret",