2 * Unix SMB/CIFS implementation.
3 * Copyright (C) Jelmer Vernooij 2005
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #include "lib/samba3/samba3.h"
23 struct samba3_domainsecrets *samba3_find_domainsecrets(struct samba3 *db, const char *name)
27 for (i = 0; i < db->secrets.domain_count; i++) {
28 if (!strcasecmp_m(db->secrets.domains[i].name, name))
29 return &db->secrets.domains[i];
35 NTSTATUS samba3_read_passdb_backends(TALLOC_CTX *ctx, const char *libdir, struct samba3 *samba3)
38 NTSTATUS status = NT_STATUS_OK;
40 const char **backends = param_get_string_list(samba3->configuration, NULL, "passdb backend", NULL);
42 /* Default to smbpasswd */
44 backends = str_list_make(ctx, "smbpasswd", LIST_SEP);
46 backends = str_list_copy(ctx, backends);
49 for (i = 0; backends[i]; i++) {
50 if (!strncmp(backends[i], "tdbsam", strlen("tdbsam"))) {
51 const char *p = strchr(backends[i], ':');
53 dbfile = talloc_strdup(ctx, p+1);
55 dbfile = talloc_asprintf(ctx, "%s/passdb.tdb", libdir);
57 samba3_read_tdbsam(dbfile, ctx, &samba3->samaccounts, &samba3->samaccount_count);
59 } else if (!strncmp(backends[i], "smbpasswd", strlen("smbpasswd"))) {
60 const char *p = strchr(backends[i], ':');
62 dbfile = talloc_strdup(ctx, p+1);
63 } else if ((p = param_get_string(samba3->configuration, NULL, "smb passwd file"))) {
64 dbfile = talloc_strdup(ctx, p);
66 dbfile = talloc_strdup(ctx, "/etc/samba/smbpasswd");
69 samba3_read_smbpasswd(dbfile, ctx, &samba3->samaccounts, &samba3->samaccount_count);
71 } else if (!strncmp(backends[i], "ldapsam", strlen("ldapsam"))) {
72 /* Will use samba3sam mapping module */
74 DEBUG(0, ("Upgrade from %s database not supported", backends[i]));
75 status = NT_STATUS_NOT_SUPPORTED;
80 talloc_free(backends);
85 NTSTATUS samba3_read(const char *libdir, const char *smbconf, TALLOC_CTX *ctx, struct samba3 **samba3)
90 ret = talloc_zero(ctx, struct samba3);
92 if (smbconf != NULL) {
93 ret->configuration = param_init(ret);
94 if (param_read(ret->configuration, smbconf) == -1) {
96 return NT_STATUS_UNSUCCESSFUL;
100 dbfile = talloc_asprintf(ctx, "%s/account_policy.tdb", libdir);
101 samba3_read_account_policy(dbfile, ctx, &ret->policy);
104 dbfile = talloc_asprintf(ctx, "%s/registry.tdb", libdir);
105 samba3_read_regdb(dbfile, ctx, &ret->registry);
108 dbfile = talloc_asprintf(ctx, "%s/secrets.tdb", libdir);
109 samba3_read_secrets(dbfile, ctx, &ret->secrets);
112 dbfile = talloc_asprintf(ctx, "%s/share_info.tdb", libdir);
113 samba3_read_share_info(dbfile, ctx, ret);
116 dbfile = talloc_asprintf(ctx, "%s/winbindd_idmap.tdb", libdir);
117 samba3_read_idmap(dbfile, ctx, &ret->idmap);
120 dbfile = talloc_asprintf(ctx, "%s/wins.dat", libdir);
121 samba3_read_winsdb(dbfile, ret, &ret->winsdb_entries, &ret->winsdb_count);
124 samba3_read_passdb_backends(ctx, libdir, ret);
126 dbfile = talloc_asprintf(ctx, "%s/group_mapping.tdb", libdir);
127 samba3_read_grouptdb(dbfile, ctx, &ret->group);