2 Samba Unix/Linux SMB client library
3 Distributed SMB/CIFS Server Management Utility
4 Copyright (C) 2003 Andrew Bartlett (abartlet@samba.org)
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "system/filesys.h"
22 #include "utils/net.h"
25 #include "dbwrap/dbwrap.h"
26 #include "dbwrap/dbwrap_open.h"
27 #include "../libcli/security/security.h"
28 #include "net_idmap_check.h"
30 #include "idmap_autorid_tdb.h"
32 #define ALLOC_CHECK(mem) do { \
34 d_fprintf(stderr, _("Out of memory!\n")); \
39 enum idmap_dump_backend
{
44 struct net_idmap_ctx
{
45 enum idmap_dump_backend backend
;
48 static int net_idmap_dump_one_autorid_entry(struct db_record
*rec
,
54 key
= dbwrap_record_get_key(rec
);
55 value
= dbwrap_record_get_value(rec
);
57 if (strncmp((char *)key
.dptr
, "CONFIG", 6) == 0) {
58 char *config
= talloc_array(talloc_tos(), char, value
.dsize
+1);
59 memcpy(config
, value
.dptr
, value
.dsize
);
60 config
[value
.dsize
] = '\0';
61 printf("CONFIG: %s\n", config
);
66 if (strncmp((char *)key
.dptr
, "NEXT RANGE", 10) == 0) {
67 printf("RANGE HWM: %"PRIu32
"\n", IVAL(value
.dptr
, 0));
71 if (strncmp((char *)key
.dptr
, "NEXT ALLOC UID", 14) == 0) {
72 printf("UID HWM: %"PRIu32
"\n", IVAL(value
.dptr
, 0));
76 if (strncmp((char *)key
.dptr
, "NEXT ALLOC GID", 14) == 0) {
77 printf("GID HWM: %"PRIu32
"\n", IVAL(value
.dptr
, 0));
81 if (strncmp((char *)key
.dptr
, "UID", 3) == 0 ||
82 strncmp((char *)key
.dptr
, "GID", 3) == 0)
84 /* mapped entry from allocation pool */
85 printf("%s %s\n", value
.dptr
, key
.dptr
);
89 if ((strncmp((char *)key
.dptr
, "S-1-5-", 6) == 0 ||
90 strncmp((char *)key
.dptr
, "ALLOC", 5) == 0) &&
91 value
.dsize
== sizeof(uint32_t))
93 /* this is a domain range assignment */
94 uint32_t range
= IVAL(value
.dptr
, 0);
95 printf("RANGE %"PRIu32
": %s\n", range
, key
.dptr
);
102 /***********************************************************
103 Helper function for net_idmap_dump. Dump one entry.
104 **********************************************************/
105 static int net_idmap_dump_one_tdb_entry(struct db_record
*rec
,
111 key
= dbwrap_record_get_key(rec
);
112 value
= dbwrap_record_get_value(rec
);
114 if (strcmp((char *)key
.dptr
, "USER HWM") == 0) {
115 printf(_("USER HWM %d\n"), IVAL(value
.dptr
,0));
119 if (strcmp((char *)key
.dptr
, "GROUP HWM") == 0) {
120 printf(_("GROUP HWM %d\n"), IVAL(value
.dptr
,0));
124 if (strncmp((char *)key
.dptr
, "S-", 2) != 0) {
128 printf("%s %s\n", value
.dptr
, key
.dptr
);
132 /* returns db path for idmap backend alloced on talloc_tos */
133 static char *net_idmap_dbfile(struct net_context
*c
,
134 struct net_idmap_ctx
*ctx
)
137 const char *backend
= NULL
;
139 backend
= lp_idmap_default_backend();
141 d_printf(_("Internal error: 'idmap config * : backend' is not set!\n"));
145 if (c
->opt_db
!= NULL
) {
146 dbfile
= talloc_strdup(talloc_tos(), c
->opt_db
);
147 if (dbfile
== NULL
) {
148 d_fprintf(stderr
, _("Out of memory!\n"));
150 } else if (strequal(backend
, "tdb")) {
151 dbfile
= state_path("winbindd_idmap.tdb");
152 if (dbfile
== NULL
) {
153 d_fprintf(stderr
, _("Out of memory!\n"));
156 } else if (strequal(backend
, "tdb2")) {
157 dbfile
= talloc_asprintf(talloc_tos(), "%s/idmap2.tdb",
159 if (dbfile
== NULL
) {
160 d_fprintf(stderr
, _("Out of memory!\n"));
163 } else if (strequal(backend
, "autorid")) {
164 dbfile
= state_path("autorid.tdb");
165 if (dbfile
== NULL
) {
166 d_fprintf(stderr
, _("Out of memory!\n"));
168 ctx
->backend
= AUTORID
;
170 char *_backend
= talloc_strdup(talloc_tos(), backend
);
171 char* args
= strchr(_backend
, ':');
176 d_printf(_("Sorry, 'idmap backend = %s' is currently not supported\n"),
179 talloc_free(_backend
);
185 static bool net_idmap_opendb_autorid(TALLOC_CTX
*mem_ctx
,
186 struct net_context
*c
,
188 struct db_context
**db
)
192 struct net_idmap_ctx ctx
= { .backend
= AUTORID
};
198 dbfile
= net_idmap_dbfile(c
, &ctx
);
199 if (dbfile
== NULL
) {
203 if (ctx
.backend
!= AUTORID
) {
204 d_fprintf(stderr
, _("Unsupported backend\n"));
209 *db
= db_open(mem_ctx
, dbfile
, 0, TDB_DEFAULT
, O_RDONLY
, 0,
210 DBWRAP_LOCK_ORDER_1
, DBWRAP_FLAG_NONE
);
213 _("Could not open autorid db (%s): %s\n"),
214 dbfile
, strerror(errno
));
219 status
= idmap_autorid_db_init(dbfile
, mem_ctx
, db
);
220 if (!NT_STATUS_IS_OK(status
)) {
222 _("Error calling idmap_autorid_db_init: %s\n"),
236 /***********************************************************
237 Dump the current idmap
238 **********************************************************/
239 static int net_idmap_dump(struct net_context
*c
, int argc
, const char **argv
)
241 struct db_context
*db
;
246 struct net_idmap_ctx ctx
= { .backend
= TDB
};
248 if ( argc
> 1 || c
->display_usage
) {
251 _("net idmap dump [[--db=]<inputfile>]\n"
252 " Dump current ID mapping.\n"
253 " inputfile\tTDB file to read mappings from.\n"));
254 return c
->display_usage
?0:-1;
257 mem_ctx
= talloc_stackframe();
259 dbfile
= (argc
> 0) ? argv
[0] : net_idmap_dbfile(c
, &ctx
);
260 if (dbfile
== NULL
) {
263 d_fprintf(stderr
, _("dumping id mapping from %s\n"), dbfile
);
265 db
= db_open(mem_ctx
, dbfile
, 0, TDB_DEFAULT
, O_RDONLY
, 0,
266 DBWRAP_LOCK_ORDER_1
, DBWRAP_FLAG_NONE
);
268 d_fprintf(stderr
, _("Could not open idmap db (%s): %s\n"),
269 dbfile
, strerror(errno
));
273 if (ctx
.backend
== AUTORID
) {
274 status
= dbwrap_traverse_read(db
,
275 net_idmap_dump_one_autorid_entry
,
278 status
= dbwrap_traverse_read(db
,
279 net_idmap_dump_one_tdb_entry
,
282 if (!NT_STATUS_IS_OK(status
)) {
283 d_fprintf(stderr
, _("error traversing the database\n"));
291 talloc_free(mem_ctx
);
295 /***********************************************************
296 Write entries from stdin to current local idmap
297 **********************************************************/
299 static int net_idmap_store_id_mapping(struct db_context
*db
,
302 const char *sid_string
)
309 idstr
= talloc_asprintf(talloc_tos(), "UID %lu", idval
);
312 idstr
= talloc_asprintf(talloc_tos(), "GID %lu", idval
);
315 d_fprintf(stderr
, "Invalid id mapping type: %d\n", type
);
319 status
= dbwrap_store_bystring(db
, idstr
,
320 string_term_tdb_data(sid_string
),
322 if (!NT_STATUS_IS_OK(status
)) {
323 d_fprintf(stderr
, "Error storing ID -> SID: "
324 "%s\n", nt_errstr(status
));
328 status
= dbwrap_store_bystring(db
, sid_string
,
329 string_term_tdb_data(idstr
),
331 if (!NT_STATUS_IS_OK(status
)) {
332 d_fprintf(stderr
, "Error storing SID -> ID: "
333 "%s\n", nt_errstr(status
));
341 static int net_idmap_restore(struct net_context
*c
, int argc
, const char **argv
)
345 struct db_context
*db
;
346 const char *dbfile
= NULL
;
348 struct net_idmap_ctx ctx
= { .backend
= TDB
};
350 if (c
->display_usage
) {
353 _("net idmap restore [--db=<TDB>] [<inputfile>]\n"
354 " Restore ID mappings from file\n"
355 " TDB\tFile to store ID mappings to."
356 " inputfile\tFile to load ID mappings from. If not "
357 "given, load data from stdin.\n"));
361 mem_ctx
= talloc_stackframe();
363 dbfile
= net_idmap_dbfile(c
, &ctx
);
365 if (dbfile
== NULL
) {
370 if (ctx
.backend
!= TDB
) {
371 d_fprintf(stderr
, _("Sorry, restoring of non-TDB databases is "
372 "currently not supported\n"));
377 d_fprintf(stderr
, _("restoring id mapping to %s\n"), dbfile
);
380 input
= fopen(argv
[0], "r");
382 d_fprintf(stderr
, _("Could not open input file (%s): %s\n"),
383 argv
[0], strerror(errno
));
391 db
= db_open(mem_ctx
, dbfile
, 0, TDB_DEFAULT
, O_RDWR
|O_CREAT
, 0644,
392 DBWRAP_LOCK_ORDER_1
, DBWRAP_FLAG_NONE
);
394 d_fprintf(stderr
, _("Could not open idmap db (%s): %s\n"),
395 dbfile
, strerror(errno
));
400 if (dbwrap_transaction_start(db
) != 0) {
401 d_fprintf(stderr
, _("Failed to start transaction.\n"));
406 while (!feof(input
)) {
407 char line
[128], sid_string
[128];
412 if (fgets(line
, 127, input
) == NULL
)
417 if ( (len
> 0) && (line
[len
-1] == '\n') )
420 if (sscanf(line
, "GID %lu %128s", &idval
, sid_string
) == 2)
422 ret
= net_idmap_store_id_mapping(db
, ID_TYPE_GID
,
427 } else if (sscanf(line
, "UID %lu %128s", &idval
, sid_string
) == 2)
429 ret
= net_idmap_store_id_mapping(db
, ID_TYPE_UID
,
434 } else if (sscanf(line
, "USER HWM %lu", &idval
) == 1) {
435 status
= dbwrap_store_int32_bystring(
436 db
, "USER HWM", idval
);
437 if (!NT_STATUS_IS_OK(status
)) {
439 _("Could not store USER HWM: %s\n"),
443 } else if (sscanf(line
, "GROUP HWM %lu", &idval
) == 1) {
444 status
= dbwrap_store_int32_bystring(
445 db
, "GROUP HWM", idval
);
446 if (!NT_STATUS_IS_OK(status
)) {
448 _("Could not store GROUP HWM: %s\n"),
453 d_fprintf(stderr
, _("ignoring invalid line [%s]\n"),
460 if(dbwrap_transaction_commit(db
) != 0) {
461 d_fprintf(stderr
, _("Failed to commit transaction.\n"));
465 if (dbwrap_transaction_cancel(db
) != 0) {
466 d_fprintf(stderr
, _("Failed to cancel transaction.\n"));
471 if ((input
!= NULL
) && (input
!= stdin
)) {
475 talloc_free(mem_ctx
);
480 NTSTATUS
dbwrap_delete_mapping(struct db_context
*db
, TDB_DATA key1
, bool force
)
482 TALLOC_CTX
*mem_ctx
= talloc_stackframe();
483 bool is_valid_mapping
;
484 NTSTATUS status
= NT_STATUS_OK
;
490 status
= dbwrap_fetch(db
, mem_ctx
, key1
, &val1
);
491 if (!NT_STATUS_IS_OK(status
)) {
492 DEBUG(1, ("failed to fetch: %.*s\n", (int)key1
.dsize
, key1
.dptr
));
496 if (val1
.dptr
== NULL
) {
497 DEBUG(1, ("invalid mapping: %.*s -> empty value\n",
498 (int)key1
.dsize
, key1
.dptr
));
499 status
= NT_STATUS_FILE_INVALID
;
503 DEBUG(2, ("mapping: %.*s -> %.*s\n",
504 (int)key1
.dsize
, key1
.dptr
, (int)val1
.dsize
, val1
.dptr
));
506 status
= dbwrap_fetch(db
, mem_ctx
, val1
, &val2
);
507 if (!NT_STATUS_IS_OK(status
)) {
508 DEBUG(1, ("failed to fetch: %.*s\n", (int)val1
.dsize
, val1
.dptr
));
512 is_valid_mapping
= tdb_data_equal(key1
, val2
);
514 if (!is_valid_mapping
) {
515 DEBUG(1, ("invalid mapping: %.*s -> %.*s -> %.*s\n",
516 (int)key1
.dsize
, key1
.dptr
,
517 (int)val1
.dsize
, val1
.dptr
,
518 (int)val2
.dsize
, val2
.dptr
));
520 status
= NT_STATUS_FILE_INVALID
;
525 status
= dbwrap_delete(db
, key1
);
526 if (!NT_STATUS_IS_OK(status
)) {
527 DEBUG(1, ("failed to delete: %.*s\n", (int)key1
.dsize
, key1
.dptr
));
531 if (!is_valid_mapping
) {
535 status
= dbwrap_delete(db
, val1
);
536 if (!NT_STATUS_IS_OK(status
)) {
537 DEBUG(1, ("failed to delete: %.*s\n", (int)val1
.dsize
, val1
.dptr
));
541 talloc_free(mem_ctx
);
546 NTSTATUS
delete_mapping_action(struct db_context
*db
, void* data
)
548 return dbwrap_delete_mapping(db
, *(TDB_DATA
*)data
, false);
551 NTSTATUS
delete_mapping_action_force(struct db_context
*db
, void* data
)
553 return dbwrap_delete_mapping(db
, *(TDB_DATA
*)data
, true);
556 /***********************************************************
557 Delete a SID mapping from a winbindd_idmap.tdb
558 **********************************************************/
559 static bool delete_args_ok(int argc
, const char **argv
)
563 if (strncmp(argv
[0], "S-", 2) == 0)
565 if (strncmp(argv
[0], "GID ", 4) == 0)
567 if (strncmp(argv
[0], "UID ", 4) == 0)
572 static int net_idmap_delete_mapping(struct net_context
*c
, int argc
,
576 struct db_context
*db
;
581 struct net_idmap_ctx ctx
= { .backend
= TDB
};
583 if ( !delete_args_ok(argc
,argv
) || c
->display_usage
) {
586 _("net idmap delete mapping [-f] [--db=<TDB>] <ID>\n"
587 " Delete mapping of ID from TDB.\n"
589 " TDB\tidmap database\n"
590 " ID\tSID|GID|UID\n"));
591 return c
->display_usage
? 0 : -1;
594 mem_ctx
= talloc_stackframe();
596 dbfile
= net_idmap_dbfile(c
, &ctx
);
597 if (dbfile
== NULL
) {
600 d_fprintf(stderr
, _("deleting id mapping from %s\n"), dbfile
);
602 db
= db_open(mem_ctx
, dbfile
, 0, TDB_DEFAULT
, O_RDWR
, 0,
603 DBWRAP_LOCK_ORDER_1
, DBWRAP_FLAG_NONE
);
605 d_fprintf(stderr
, _("Could not open idmap db (%s): %s\n"),
606 dbfile
, strerror(errno
));
610 key
= string_term_tdb_data(argv
[0]);
612 status
= dbwrap_trans_do(db
, (c
->opt_force
613 ? delete_mapping_action_force
614 : delete_mapping_action
), &key
);
616 if (!NT_STATUS_IS_OK(status
)) {
617 d_fprintf(stderr
, _("could not delete mapping: %s\n"),
623 talloc_free(mem_ctx
);
627 static bool parse_uint32(const char *str
, uint32_t *result
)
632 val
= strtoul(str
, &endptr
, 10);
637 if (*endptr
!= '\0') {
640 if ((val
== ULONG_MAX
) && (errno
== ERANGE
)) {
643 if ((val
& UINT32_MAX
) != val
) {
647 *result
= val
; /* Potential crop */
651 static void net_idmap_autorid_delete_range_usage(void)
655 _("net idmap delete range [-f] [--db=<TDB>] <RANGE>|(<SID>[ <INDEX>])\n"
656 " Delete a domain range mapping from the database.\n"
658 " TDB\tidmap database\n"
659 " RANGE\tthe range number to delete\n"
660 " SID\t\tSID of the domain\n"
661 " INDEX\trange index number do delete for the domain\n"));
664 static int net_idmap_autorid_delete_range(struct net_context
*c
, int argc
,
668 struct db_context
*db
= NULL
;
671 uint32_t range_index
;
673 TALLOC_CTX
*mem_ctx
= NULL
;
675 bool force
= (c
->opt_force
!= 0);
677 if (c
->display_usage
) {
678 net_idmap_autorid_delete_range_usage();
682 if (argc
< 1 || argc
> 2) {
683 net_idmap_autorid_delete_range_usage();
687 mem_ctx
= talloc_stackframe();
688 if (!net_idmap_opendb_autorid(mem_ctx
, c
, false, &db
)) {
692 ok
= parse_uint32(argv
[0], &rangenum
);
694 d_printf("%s: %"PRIu32
"\n", _("Deleting range number"),
697 status
= idmap_autorid_delete_range_by_num(db
, rangenum
,
699 if (!NT_STATUS_IS_OK(status
)) {
700 d_fprintf(stderr
, "%s: %s\n",
701 _("Failed to delete domain range mapping"),
714 ok
= parse_uint32(argv
[1], &range_index
);
717 _("Invalid index specification"), argv
[1]);
718 net_idmap_autorid_delete_range_usage();
723 status
= idmap_autorid_delete_range_by_sid(db
, domsid
, range_index
,
725 if (!NT_STATUS_IS_OK(status
)) {
726 d_fprintf(stderr
, "%s: %s\n",
727 _("Failed to delete domain range mapping"),
735 talloc_free(mem_ctx
);
739 static void net_idmap_autorid_delete_ranges_usage(void)
743 _("net idmap delete ranges [-f] [--db=<TDB>] <SID>\n"
744 " Delete all domain range mappings for a given domain.\n"
746 " TDB\tidmap database\n"
747 " SID\t\tSID of the domain\n"));
750 static int net_idmap_autorid_delete_ranges(struct net_context
*c
, int argc
,
754 struct db_context
*db
= NULL
;
757 TALLOC_CTX
*mem_ctx
= NULL
;
758 bool force
= (c
->opt_force
!= 0);
761 if (c
->display_usage
) {
762 net_idmap_autorid_delete_ranges_usage();
767 net_idmap_autorid_delete_ranges_usage();
773 mem_ctx
= talloc_stackframe();
774 if (!net_idmap_opendb_autorid(mem_ctx
, c
, false, &db
)) {
778 status
= idmap_autorid_delete_domain_ranges(db
, domsid
, force
, &count
);
779 if (!NT_STATUS_IS_OK(status
)) {
780 d_fprintf(stderr
, "%s %s: %s\n",
781 _("Failed to delete domain range mappings for "
788 d_printf(_("deleted %d domain mappings\n"), count
);
793 talloc_free(mem_ctx
);
797 static int net_idmap_delete(struct net_context
*c
, int argc
, const char **argv
)
799 struct functable func
[] = {
802 net_idmap_delete_mapping
,
804 N_("Delete ID mapping"),
805 N_("net idmap delete mapping <ID>\n"
806 " Delete ID mapping")
810 net_idmap_autorid_delete_range
,
812 N_("Delete a domain range mapping"),
813 N_("net idmap delete range <RANGE>|(<SID>[ <INDEX>])\n"
814 " Delete a domain range mapping")
818 net_idmap_autorid_delete_ranges
,
820 N_("Delete all domain range mappings for a given "
822 N_("net idmap delete ranges <SID>\n"
823 " Delete a domain range mapping")
825 {NULL
, NULL
, 0, NULL
, NULL
}
828 return net_run_function(c
, argc
, argv
, "net idmap delete", func
);
832 static int net_idmap_set_mapping(struct net_context
*c
,
833 int argc
, const char **argv
)
835 d_printf("%s\n", _("Not implemented yet"));
839 static void net_idmap_autorid_set_range_usage(void)
843 _("net idmap set range"
844 " <range> <SID> [<index>] [--db=<inputfile>]\n"
845 " Store a domain-range mapping for a given domain.\n"
846 " range\tRange number to be set for the domain\n"
847 " SID\t\tSID of the domain\n"
848 " index\trange-index number to be set for the domain\n"
849 " inputfile\tTDB file to add mapping to.\n"));
852 static int net_idmap_autorid_set_range(struct net_context
*c
,
853 int argc
, const char **argv
)
857 struct db_context
*db
= NULL
;
860 uint32_t range_index
= 0;
864 if (c
->display_usage
) {
865 net_idmap_autorid_set_range_usage();
869 if (argc
< 2 || argc
> 3) {
870 net_idmap_autorid_set_range_usage();
874 ok
= parse_uint32(argv
[0], &rangenum
);
876 d_printf("%s: %s\n", _("Invalid range specification"),
878 net_idmap_autorid_set_range_usage();
885 ok
= parse_uint32(argv
[2], &range_index
);
888 _("Invalid index specification"), argv
[2]);
889 net_idmap_autorid_set_range_usage();
894 mem_ctx
= talloc_stackframe();
895 if (!net_idmap_opendb_autorid(mem_ctx
, c
, false, &db
)) {
899 status
= idmap_autorid_setrange(db
, domsid
, range_index
, rangenum
);
900 if (!NT_STATUS_IS_OK(status
)) {
901 d_fprintf(stderr
, "%s: %s\n",
902 _("Failed to save domain mapping"),
910 TALLOC_FREE(mem_ctx
);
914 static bool idmap_store_secret(const char *backend
,
916 const char *identity
,
923 r
= asprintf(&tmp
, "IDMAP_%s_%s", backend
, domain
);
925 if (r
< 0) return false;
927 /* make sure the key is case insensitive */
928 if (!strupper_m(tmp
)) {
932 ret
= secrets_store_generic(tmp
, identity
, secret
);
939 static int net_idmap_secret(struct net_context
*c
, int argc
, const char **argv
)
949 if (argc
!= 2 || c
->display_usage
) {
952 _("net idmap set secret <DOMAIN> <secret>\n"
953 " Set the secret for the specified domain\n"
954 " DOMAIN\tDomain to set secret for.\n"
955 " secret\tNew secret to set.\n"));
956 return c
->display_usage
?0:-1;
961 ctx
= talloc_new(NULL
);
964 domain
= talloc_strdup(ctx
, argv
[0]);
967 opt
= talloc_asprintf(ctx
, "idmap config %s", domain
);
970 backend
= talloc_strdup(ctx
, lp_parm_const_string(-1, opt
, "backend", "tdb"));
971 ALLOC_CHECK(backend
);
973 if ((!backend
) || (!strequal(backend
, "ldap") &&
974 !strequal(backend
, "rfc2307"))) {
976 _("The only currently supported backend are LDAP "
982 dn
= lp_parm_const_string(-1, opt
, "ldap_user_dn", NULL
);
985 _("Missing ldap_user_dn option for domain %s\n"),
991 ret
= idmap_store_secret("ldap", domain
, dn
, secret
);
994 d_fprintf(stderr
, _("Failed to store secret\n"));
999 d_printf(_("Secret stored\n"));
1003 static int net_idmap_autorid_set_config(struct net_context
*c
,
1004 int argc
, const char **argv
)
1008 TALLOC_CTX
*mem_ctx
;
1009 struct db_context
*db
= NULL
;
1011 if (argc
!= 1 || c
->display_usage
) {
1014 _("net idmap set config <config>"
1015 " [--db=<inputfile>]\n"
1016 " Update CONFIG entry in autorid.\n"
1017 " config\tConfig string to be stored\n"
1018 " inputfile\tTDB file to update config.\n"));
1019 return c
->display_usage
? 0 : -1;
1022 mem_ctx
= talloc_stackframe();
1024 if (!net_idmap_opendb_autorid(mem_ctx
, c
, false, &db
)) {
1028 status
= idmap_autorid_saveconfigstr(db
, argv
[0]);
1029 if (!NT_STATUS_IS_OK(status
)) {
1030 printf("Error storing the config in the database: %s\n",
1038 TALLOC_FREE(mem_ctx
);
1042 static int net_idmap_set(struct net_context
*c
, int argc
, const char **argv
)
1044 struct functable func
[] = {
1047 net_idmap_set_mapping
,
1048 NET_TRANSPORT_LOCAL
,
1049 N_("Not implemented yet"),
1050 N_("net idmap set mapping\n"
1051 " Not implemented yet")
1055 net_idmap_autorid_set_range
,
1056 NET_TRANSPORT_LOCAL
,
1057 N_("Store a domain-range mapping"),
1058 N_("net idmap set range\n"
1059 " Store a domain-range mapping")
1063 net_idmap_autorid_set_config
,
1064 NET_TRANSPORT_LOCAL
,
1065 N_("Save the global configuration in the autorid database"),
1066 N_("net idmap set config \n"
1067 " Save the global configuration in the autorid database ")
1072 NET_TRANSPORT_LOCAL
,
1073 N_("Set secret for specified domain"),
1074 N_("net idmap set secret <DOMAIN> <secret>\n"
1075 " Set secret for specified domain")
1077 {NULL
, NULL
, 0, NULL
, NULL
}
1080 return net_run_function(c
, argc
, argv
, "net idmap set", func
);
1083 static void net_idmap_autorid_get_range_usage(void)
1087 _("net idmap get range <SID> [<index>] [--db=<inputfile>]\n"
1088 " Get the range for a given domain and index.\n"
1089 " SID\t\tSID of the domain\n"
1090 " index\trange-index number to be retrieved\n"
1091 " inputfile\tTDB file to add mapping to.\n"));
1095 static int net_idmap_autorid_get_range(struct net_context
*c
, int argc
,
1099 TALLOC_CTX
*mem_ctx
;
1100 struct db_context
*db
= NULL
;
1103 uint32_t range_index
= 0;
1109 if (c
->display_usage
) {
1110 net_idmap_autorid_get_range_usage();
1114 if (argc
< 1 || argc
> 2) {
1115 net_idmap_autorid_get_range_usage();
1122 ok
= parse_uint32(argv
[1], &range_index
);
1124 d_printf("%s: %s\n",
1125 _("Invalid index specification"), argv
[1]);
1126 net_idmap_autorid_get_range_usage();
1131 mem_ctx
= talloc_stackframe();
1132 if (!net_idmap_opendb_autorid(mem_ctx
, c
, true, &db
)) {
1136 status
= idmap_autorid_getrange(db
, domsid
, range_index
, &rangenum
,
1138 if (!NT_STATUS_IS_OK(status
)) {
1139 d_fprintf(stderr
, "%s: %s\n",
1140 _("Failed to load domain range"), nt_errstr(status
));
1144 if (range_index
== 0) {
1145 keystr
= talloc_strdup(mem_ctx
, domsid
);
1147 keystr
= talloc_asprintf(mem_ctx
, "%s#%"PRIu32
, domsid
,
1151 printf("RANGE %"PRIu32
": %s (low id: %"PRIu32
")\n",
1152 rangenum
, keystr
, low_id
);
1157 TALLOC_FREE(mem_ctx
);
1161 static NTSTATUS
net_idmap_autorid_print_range(struct db_context
*db
,
1163 uint32_t range_index
,
1167 if (range_index
== 0) {
1168 printf("RANGE %"PRIu32
": %s\n", rangenum
, domsid
);
1170 printf("RANGE %"PRIu32
": %s#%"PRIu32
"\n", rangenum
, domsid
,
1174 return NT_STATUS_OK
;
1177 static void net_idmap_autorid_get_ranges_usage(void)
1181 _("net idmap get ranges [<SID>] [--db=<inputfile>]\n"
1182 " Get all ranges for a given domain.\n"
1183 " SID\t\tSID of the domain - list all ranges if omitted\n"
1184 " inputfile\tTDB file to add mapping to.\n"));
1187 static int net_idmap_autorid_get_ranges(struct net_context
*c
, int argc
,
1191 TALLOC_CTX
*mem_ctx
;
1192 struct db_context
*db
= NULL
;
1196 if (c
->display_usage
) {
1197 net_idmap_autorid_get_ranges_usage();
1203 } else if (argc
== 1) {
1206 net_idmap_autorid_get_ranges_usage();
1210 mem_ctx
= talloc_stackframe();
1211 if (!net_idmap_opendb_autorid(mem_ctx
, c
, true, &db
)) {
1215 status
= idmap_autorid_iterate_domain_ranges_read(db
,
1217 net_idmap_autorid_print_range
,
1218 NULL
, /* private_data */
1220 if (!NT_STATUS_IS_OK(status
)) {
1221 d_fprintf(stderr
, "%s: %s\n",
1222 _("Error getting domain ranges"), nt_errstr(status
));
1229 talloc_free(mem_ctx
);
1233 static int net_idmap_autorid_get_config(struct net_context
*c
, int argc
,
1238 TALLOC_CTX
*mem_ctx
;
1240 struct db_context
*db
= NULL
;
1242 if (argc
> 0 || c
->display_usage
) {
1245 _("net idmap get config"
1246 " [--db=<inputfile>]\n"
1247 " Get CONFIG entry from autorid database\n"
1248 " inputfile\tTDB file to read config from.\n"));
1249 return c
->display_usage
? 0 : -1;
1252 mem_ctx
= talloc_stackframe();
1254 if (!net_idmap_opendb_autorid(mem_ctx
, c
, true, &db
)) {
1258 status
= idmap_autorid_getconfigstr(db
, mem_ctx
, &config
);
1259 if (!NT_STATUS_IS_OK(status
)) {
1260 d_fprintf(stderr
, "%s: %s\n",
1261 _("Error: unable to read config entry"),
1266 printf("CONFIG: %s\n", config
);
1270 TALLOC_FREE(mem_ctx
);
1275 static int net_idmap_get(struct net_context
*c
, int argc
, const char **argv
)
1277 struct functable func
[] = {
1280 net_idmap_autorid_get_range
,
1281 NET_TRANSPORT_LOCAL
,
1282 N_("Get the range for a domain and range-index"),
1283 N_("net idmap get range\n"
1284 " Get the range for a domain and range-index")
1288 net_idmap_autorid_get_ranges
,
1289 NET_TRANSPORT_LOCAL
,
1290 N_("Get all ranges for a domain"),
1291 N_("net idmap get ranges <SID>\n"
1292 " Get all ranges for a domain")
1296 net_idmap_autorid_get_config
,
1297 NET_TRANSPORT_LOCAL
,
1298 N_("Get the global configuration from the autorid database"),
1299 N_("net idmap get config \n"
1300 " Get the global configuration from the autorid database ")
1302 {NULL
, NULL
, 0, NULL
, NULL
}
1305 return net_run_function(c
, argc
, argv
, "net idmap get", func
);
1308 static int net_idmap_check(struct net_context
*c
, int argc
, const char **argv
)
1311 struct check_options opts
;
1312 struct net_idmap_ctx ctx
= { .backend
= TDB
};
1315 if ( argc
> 1 || c
->display_usage
) {
1318 _("net idmap check [-v] [-r] [-a] [-T] [-f] [-l] [[--db=]<TDB>]\n"
1319 " Check an idmap database.\n"
1320 " --verbose,-v\tverbose\n"
1321 " --repair,-r\trepair\n"
1322 " --auto,-a\tnoninteractive mode\n"
1323 " --test,-T\tdry run\n"
1324 " --fore,-f\tforce\n"
1325 " --lock,-l\tlock db while doing the check\n"
1326 " TDB\tidmap database\n"));
1327 return c
->display_usage
? 0 : -1;
1331 dbfile
= talloc_strdup(talloc_tos(), argv
[0]);
1333 dbfile
= net_idmap_dbfile(c
, &ctx
);
1335 if (dbfile
== NULL
) {
1339 if (ctx
.backend
!= TDB
) {
1340 d_fprintf(stderr
, _("Sorry, checking of non-TDB databases is "
1341 "currently not supported\n"));
1342 talloc_free(dbfile
);
1346 d_fprintf(stderr
, _("check database: %s\n"), dbfile
);
1348 opts
= (struct check_options
) {
1349 .lock
= c
->opt_lock
|| c
->opt_long_list_entries
,
1350 .test
= c
->opt_testmode
,
1351 .automatic
= c
->opt_auto
,
1352 .verbose
= c
->opt_verbose
,
1353 .force
= c
->opt_force
,
1354 .repair
= c
->opt_repair
|| c
->opt_reboot
,
1357 ret
= net_idmap_check_db(dbfile
, &opts
);
1358 talloc_free(dbfile
);
1362 /***********************************************************
1363 Look at the current idmap
1364 **********************************************************/
1365 int net_idmap(struct net_context
*c
, int argc
, const char **argv
)
1367 struct functable func
[] = {
1371 NET_TRANSPORT_LOCAL
,
1372 N_("Dump the current ID mapping database"),
1373 N_("net idmap dump\n"
1374 " Dump the current ID mappings")
1379 NET_TRANSPORT_LOCAL
,
1380 N_("Restore entries from a file or stdin"),
1381 N_("net idmap restore\n"
1382 " Restore entries from stdin")
1387 NET_TRANSPORT_LOCAL
,
1388 N_("Read data from the ID mapping database"),
1389 N_("net idmap get\n"
1390 " Read data from the ID mapping database")
1395 NET_TRANSPORT_LOCAL
,
1396 N_("Write data to the ID mapping database"),
1397 N_("net idmap set\n"
1398 " Write data to the ID mapping database")
1403 NET_TRANSPORT_LOCAL
,
1404 N_("Delete entries from the ID mapping database"),
1405 N_("net idmap delete\n"
1406 " Delete entries from the ID mapping database")
1411 NET_TRANSPORT_LOCAL
,
1412 N_("Check id mappings"),
1413 N_("net idmap check\n"
1414 " Check id mappings")
1416 {NULL
, NULL
, 0, NULL
, NULL
}
1419 return net_run_function(c
, argc
, argv
, "net idmap", func
);