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/>.
22 #include "utils/net.h"
26 #include "../libcli/security/security.h"
28 #define ALLOC_CHECK(mem) do { \
30 d_fprintf(stderr, _("Out of memory!\n")); \
35 /***********************************************************
36 Helper function for net_idmap_dump. Dump one entry.
37 **********************************************************/
38 static int net_idmap_dump_one_entry(struct db_record
*rec
,
41 if (strcmp((char *)rec
->key
.dptr
, "USER HWM") == 0) {
42 printf(_("USER HWM %d\n"), IVAL(rec
->value
.dptr
,0));
46 if (strcmp((char *)rec
->key
.dptr
, "GROUP HWM") == 0) {
47 printf(_("GROUP HWM %d\n"), IVAL(rec
->value
.dptr
,0));
51 if (strncmp((char *)rec
->key
.dptr
, "S-", 2) != 0)
54 printf("%s %s\n", rec
->value
.dptr
, rec
->key
.dptr
);
58 static const char* net_idmap_dbfile(struct net_context
*c
)
60 const char* dbfile
= NULL
;
62 if (c
->opt_db
!= NULL
) {
63 dbfile
= talloc_strdup(talloc_tos(), c
->opt_db
);
65 d_fprintf(stderr
, _("Out of memory!\n"));
67 } else if (strequal(lp_idmap_backend(), "tdb")) {
68 dbfile
= state_path("winbindd_idmap.tdb");
70 d_fprintf(stderr
, _("Out of memory!\n"));
72 } else if (strequal(lp_idmap_backend(), "tdb2")) {
73 dbfile
= lp_parm_talloc_string(-1, "tdb", "idmap2.tdb", NULL
);
75 dbfile
= talloc_asprintf(talloc_tos(), "%s/idmap2.tdb",
79 d_fprintf(stderr
, _("Out of memory!\n"));
82 char* backend
= talloc_strdup(talloc_tos(), lp_idmap_backend());
83 char* args
= strchr(backend
, ':');
88 d_printf(_("Sorry, 'idmap backend = %s' is currently not supported\n"),
97 /***********************************************************
98 Dump the current idmap
99 **********************************************************/
100 static int net_idmap_dump(struct net_context
*c
, int argc
, const char **argv
)
102 struct db_context
*db
;
107 if ( argc
> 1 || c
->display_usage
) {
110 _("net idmap dump [[--db=]<inputfile>]\n"
111 " Dump current ID mapping.\n"
112 " inputfile\tTDB file to read mappings from.\n"));
113 return c
->display_usage
?0:-1;
116 mem_ctx
= talloc_stackframe();
118 dbfile
= (argc
> 0) ? argv
[0] : net_idmap_dbfile(c
);
119 if (dbfile
== NULL
) {
122 d_fprintf(stderr
, _("dumping id mapping from %s\n"), dbfile
);
124 db
= db_open(mem_ctx
, dbfile
, 0, TDB_DEFAULT
, O_RDONLY
, 0);
126 d_fprintf(stderr
, _("Could not open idmap db (%s): %s\n"),
127 dbfile
, strerror(errno
));
131 db
->traverse_read(db
, net_idmap_dump_one_entry
, NULL
);
135 talloc_free(mem_ctx
);
139 /***********************************************************
140 Write entries from stdin to current local idmap
141 **********************************************************/
143 static int net_idmap_store_id_mapping(struct db_context
*db
,
146 const char *sid_string
)
153 idstr
= talloc_asprintf(talloc_tos(), "UID %lu", idval
);
156 idstr
= talloc_asprintf(talloc_tos(), "GID %lu", idval
);
159 d_fprintf(stderr
, "Invalid id mapping type: %d\n", type
);
163 status
= dbwrap_store_bystring(db
, idstr
,
164 string_term_tdb_data(sid_string
),
166 if (!NT_STATUS_IS_OK(status
)) {
167 d_fprintf(stderr
, "Error storing ID -> SID: "
168 "%s\n", nt_errstr(status
));
172 status
= dbwrap_store_bystring(db
, sid_string
,
173 string_term_tdb_data(idstr
),
175 if (!NT_STATUS_IS_OK(status
)) {
176 d_fprintf(stderr
, "Error storing SID -> ID: "
177 "%s\n", nt_errstr(status
));
185 static int net_idmap_restore(struct net_context
*c
, int argc
, const char **argv
)
189 struct db_context
*db
;
190 const char *dbfile
= NULL
;
193 if (c
->display_usage
) {
196 _("net idmap restore [--db=<TDB>] [<inputfile>]\n"
197 " Restore ID mappings from file\n"
198 " TDB\tFile to store ID mappings to."
199 " inputfile\tFile to load ID mappings from. If not "
200 "given, load data from stdin.\n"));
204 mem_ctx
= talloc_stackframe();
206 dbfile
= net_idmap_dbfile(c
);
208 if (dbfile
== NULL
) {
213 d_fprintf(stderr
, _("restoring id mapping to %s\n"), dbfile
);
216 input
= fopen(argv
[0], "r");
218 d_fprintf(stderr
, _("Could not open input file (%s): %s\n"),
219 argv
[0], strerror(errno
));
227 db
= db_open(mem_ctx
, dbfile
, 0, TDB_DEFAULT
, O_RDWR
|O_CREAT
, 0644);
229 d_fprintf(stderr
, _("Could not open idmap db (%s): %s\n"),
230 dbfile
, strerror(errno
));
235 if (db
->transaction_start(db
) != 0) {
236 d_fprintf(stderr
, _("Failed to start transaction.\n"));
241 while (!feof(input
)) {
242 char line
[128], sid_string
[128];
246 if (fgets(line
, 127, input
) == NULL
)
251 if ( (len
> 0) && (line
[len
-1] == '\n') )
254 if (sscanf(line
, "GID %lu %128s", &idval
, sid_string
) == 2)
256 ret
= net_idmap_store_id_mapping(db
, ID_TYPE_GID
,
261 } else if (sscanf(line
, "UID %lu %128s", &idval
, sid_string
) == 2)
263 ret
= net_idmap_store_id_mapping(db
, ID_TYPE_UID
,
268 } else if (sscanf(line
, "USER HWM %lu", &idval
) == 1) {
269 ret
= dbwrap_store_int32(db
, "USER HWM", idval
);
271 d_fprintf(stderr
, _("Could not store USER HWM.\n"));
274 } else if (sscanf(line
, "GROUP HWM %lu", &idval
) == 1) {
275 ret
= dbwrap_store_int32(db
, "GROUP HWM", idval
);
278 _("Could not store GROUP HWM.\n"));
282 d_fprintf(stderr
, _("ignoring invalid line [%s]\n"),
289 if(db
->transaction_commit(db
) != 0) {
290 d_fprintf(stderr
, _("Failed to commit transaction.\n"));
294 if (db
->transaction_cancel(db
) != 0) {
295 d_fprintf(stderr
, _("Failed to cancel transaction.\n"));
300 if ((input
!= NULL
) && (input
!= stdin
)) {
304 talloc_free(mem_ctx
);
309 NTSTATUS
dbwrap_delete_mapping(struct db_context
*db
, TDB_DATA key1
, bool force
)
311 TALLOC_CTX
* mem_ctx
= talloc_tos();
312 struct db_record
*rec1
=NULL
, *rec2
=NULL
;
314 bool is_valid_mapping
;
315 NTSTATUS status
= NT_STATUS_OK
;
317 rec1
= db
->fetch_locked(db
, mem_ctx
, key1
);
319 DEBUG(1, ("failed to fetch: %.*s\n", (int)key1
.dsize
, key1
.dptr
));
320 status
= NT_STATUS_NO_MEMORY
;
324 if (key2
.dptr
== NULL
) {
325 DEBUG(1, ("could not find %.*s\n", (int)key1
.dsize
, key1
.dptr
));
326 status
= NT_STATUS_NOT_FOUND
;
330 DEBUG(2, ("mapping: %.*s -> %.*s\n",
331 (int)key1
.dsize
, key1
.dptr
, (int)key2
.dsize
, key2
.dptr
));
333 rec2
= db
->fetch_locked(db
, mem_ctx
, key2
);
335 DEBUG(1, ("failed to fetch: %.*s\n", (int)key2
.dsize
, key2
.dptr
));
336 status
= NT_STATUS_NO_MEMORY
;
340 is_valid_mapping
= tdb_data_equal(key1
, rec2
->value
);
342 if (!is_valid_mapping
) {
343 DEBUG(1, ("invalid mapping: %.*s -> %.*s -> %.*s\n",
344 (int)key1
.dsize
, key1
.dptr
, (int)key2
.dsize
, key2
.dptr
,
345 (int)rec2
->value
.dsize
, rec2
->value
.dptr
));
347 status
= NT_STATUS_FILE_INVALID
;
352 status
= rec1
->delete_rec(rec1
);
353 if (!NT_STATUS_IS_OK(status
)) {
354 DEBUG(1, ("failed to delete: %.*s\n", (int)key1
.dsize
, key1
.dptr
));
358 if (is_valid_mapping
) {
359 status
= rec2
->delete_rec(rec2
);
360 if (!NT_STATUS_IS_OK(status
)) {
361 DEBUG(1, ("failed to delete: %.*s\n", (int)key2
.dsize
, key2
.dptr
));
371 NTSTATUS
delete_mapping_action(struct db_context
*db
, void* data
)
373 return dbwrap_delete_mapping(db
, *(TDB_DATA
*)data
, false);
376 NTSTATUS
delete_mapping_action_force(struct db_context
*db
, void* data
)
378 return dbwrap_delete_mapping(db
, *(TDB_DATA
*)data
, true);
381 /***********************************************************
382 Delete a SID mapping from a winbindd_idmap.tdb
383 **********************************************************/
384 static bool delete_args_ok(int argc
, const char **argv
)
388 if (strncmp(argv
[0], "S-", 2) == 0)
390 if (strncmp(argv
[0], "GID ", 4) == 0)
392 if (strncmp(argv
[0], "UID ", 4) == 0)
397 static int net_idmap_delete(struct net_context
*c
, int argc
, const char **argv
)
400 struct db_context
*db
;
406 if ( !delete_args_ok(argc
,argv
) || c
->display_usage
) {
409 _("net idmap delete [-f] [--db=<TDB>] <ID>\n"
410 " Delete mapping of ID from TDB.\n"
412 " TDB\tidmap database\n"
413 " ID\tSID|GID|UID\n"));
414 return c
->display_usage
? 0 : -1;
417 mem_ctx
= talloc_stackframe();
419 dbfile
= net_idmap_dbfile(c
);
420 if (dbfile
== NULL
) {
423 d_fprintf(stderr
, _("deleting id mapping from %s\n"), dbfile
);
425 db
= db_open(mem_ctx
, dbfile
, 0, TDB_DEFAULT
, O_RDWR
, 0);
427 d_fprintf(stderr
, _("Could not open idmap db (%s): %s\n"),
428 dbfile
, strerror(errno
));
432 key
= string_term_tdb_data(argv
[0]);
434 status
= dbwrap_trans_do(db
, (c
->opt_force
435 ? delete_mapping_action_force
436 : delete_mapping_action
), &key
);
438 if (!NT_STATUS_IS_OK(status
)) {
439 d_fprintf(stderr
, _("could not delete mapping: %s\n"),
445 talloc_free(mem_ctx
);
449 static int net_idmap_set(struct net_context
*c
, int argc
, const char **argv
)
451 d_printf("%s\n", _("Not implemented yet"));
454 static bool idmap_store_secret(const char *backend
,
456 const char *identity
,
463 r
= asprintf(&tmp
, "IDMAP_%s_%s", backend
, domain
);
465 if (r
< 0) return false;
467 strupper_m(tmp
); /* make sure the key is case insensitive */
468 ret
= secrets_store_generic(tmp
, identity
, secret
);
475 static int net_idmap_secret(struct net_context
*c
, int argc
, const char **argv
)
485 if (argc
!= 2 || c
->display_usage
) {
488 _("net idmap secret <DOMAIN> <secret>\n"
489 " Set the secret for the specified domain\n"
490 " DOMAIN\tDomain to set secret for.\n"
491 " secret\tNew secret to set.\n"));
492 return c
->display_usage
?0:-1;
497 ctx
= talloc_new(NULL
);
500 domain
= talloc_strdup(ctx
, argv
[0]);
503 opt
= talloc_asprintf(ctx
, "idmap config %s", domain
);
506 backend
= talloc_strdup(ctx
, lp_parm_const_string(-1, opt
, "backend", "tdb"));
507 ALLOC_CHECK(backend
);
509 if ( ( ! backend
) || ( ! strequal(backend
, "ldap"))) {
511 _("The only currently supported backend is LDAP\n"));
516 dn
= lp_parm_const_string(-1, opt
, "ldap_user_dn", NULL
);
519 _("Missing ldap_user_dn option for domain %s\n"),
525 ret
= idmap_store_secret("ldap", domain
, dn
, secret
);
528 d_fprintf(stderr
, _("Failed to store secret\n"));
533 d_printf(_("Secret stored\n"));
537 static int net_idmap_aclmapset(struct net_context
*c
, int argc
, const char **argv
)
541 struct dom_sid src_sid
, dst_sid
;
543 struct db_context
*db
;
544 struct db_record
*rec
;
547 if (argc
!= 3 || c
->display_usage
) {
548 d_fprintf(stderr
, "%s net idmap aclmapset <tdb> "
549 "<src-sid> <dst-sid>\n", _("Usage:"));
553 if (!(mem_ctx
= talloc_init("net idmap aclmapset"))) {
554 d_fprintf(stderr
, _("talloc_init failed\n"));
558 if (!(db
= db_open(mem_ctx
, argv
[0], 0, TDB_DEFAULT
,
559 O_RDWR
|O_CREAT
, 0600))) {
560 d_fprintf(stderr
, _("db_open failed: %s\n"), strerror(errno
));
564 if (!string_to_sid(&src_sid
, argv
[1])) {
565 d_fprintf(stderr
, _("%s is not a valid sid\n"), argv
[1]);
569 if (!string_to_sid(&dst_sid
, argv
[2])) {
570 d_fprintf(stderr
, _("%s is not a valid sid\n"), argv
[2]);
574 if (!(src
= sid_string_talloc(mem_ctx
, &src_sid
))
575 || !(dst
= sid_string_talloc(mem_ctx
, &dst_sid
))) {
576 d_fprintf(stderr
, _("talloc_strdup failed\n"));
580 if (!(rec
= db
->fetch_locked(
581 db
, mem_ctx
, string_term_tdb_data(src
)))) {
582 d_fprintf(stderr
, _("could not fetch db record\n"));
586 status
= rec
->store(rec
, string_term_tdb_data(dst
), 0);
589 if (!NT_STATUS_IS_OK(status
)) {
590 d_fprintf(stderr
, _("could not store record: %s\n"),
597 TALLOC_FREE(mem_ctx
);
601 /***********************************************************
602 Look at the current idmap
603 **********************************************************/
604 int net_idmap(struct net_context
*c
, int argc
, const char **argv
)
606 struct functable func
[] = {
611 N_("Dump the current ID mappings"),
612 N_("net idmap dump\n"
613 " Dump the current ID mappings")
619 N_("Restore entries from stdin"),
620 N_("net idmap restore\n"
621 " Restore entries from stdin")
627 N_("Not implemented yet"),
628 N_("net idmap setmap\n"
629 " Not implemented yet")
635 N_("Delete ID mapping"),
636 N_("net idmap delete <ID>\n"
637 " Delete ID mapping")
643 N_("Set secret for specified domain"),
644 N_("net idmap secret <DOMAIN> <secret>\n"
645 " Set secret for specified domain")
652 N_("net idmap aclmapset\n"
655 {NULL
, NULL
, 0, NULL
, NULL
}
658 return net_run_function(c
, argc
, argv
, "net idmap", func
);