r9555: More updates. Everything except for secrets.c compiles now..
[kai/samba.git] / source / lib / samba3 / samba3dump.c
1 /* 
2    Unix SMB/CIFS implementation.
3    Samba3 database dump utility
4
5     Copyright (C) Jelmer Vernooij       2005
6    
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11    
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22 #include "includes.h"
23 #include "lib/samba3/samba3.h"
24 #include "lib/cmdline/popt_common.h"
25
26 static const char *libdir = "/var/lib/samba";
27
28 static NTSTATUS print_policy(void)
29 {
30         struct samba3_policy *ret;
31         char *policy_file;
32         TALLOC_CTX *mem_ctx = talloc_init(NULL);
33
34         policy_file = talloc_asprintf(mem_ctx, "%s/account_policy.tdb", libdir);
35
36         printf("Opening policy file %s\n", policy_file);
37
38         ret = samba3_read_account_policy(mem_ctx, policy_file);
39
40         if (ret == NULL) 
41                 return NT_STATUS_UNSUCCESSFUL;
42         
43         printf("Min password length: %d\n", ret->min_password_length);
44
45         talloc_free(mem_ctx);
46
47         return NT_STATUS_OK;
48 }
49
50 static NTSTATUS print_sam(void)
51 {
52         struct samba3_samaccount *accounts;
53         uint32_t count, i;
54         char *tdbsam_file;
55         NTSTATUS status;
56         
57         asprintf(&tdbsam_file, "%s/passdb.tdb", libdir);
58
59         printf("Opening TDB sam %s\n", tdbsam_file);
60
61         status = samba3_read_tdbsam(NULL, tdbsam_file, &accounts, &count);
62         if (NT_STATUS_IS_ERR(status)) {
63                 fprintf(stderr, "Error reading tdbsam database %s\n", tdbsam_file);
64                 SAFE_FREE(tdbsam_file);
65                 return status;
66         }
67         SAFE_FREE(tdbsam_file);
68
69         for (i = 0; i < count; i++) {
70                 printf("%d: %s\n", accounts[i].user_rid, accounts[i].username);
71         }
72
73         return NT_STATUS_OK;
74 }
75  
76 int main(int argc, char **argv)
77 {
78         int opt;
79         poptContext pc;
80         struct poptOption long_options[] = {
81                 POPT_AUTOHELP
82                 { "libdir", 0, POPT_ARG_STRING, &libdir, 'l', "Set libdir [/var/lib/samba]", "LIBDIR" },
83                 POPT_COMMON_SAMBA
84                 POPT_TABLEEND
85         };
86
87         pc = poptGetContext(argv[0], argc, (const char **) argv, long_options,0);
88
89         poptSetOtherOptionHelp(pc, "<smb.conf>");
90
91         while((opt = poptGetNextOpt(pc)) != -1) {
92         }
93
94         print_sam();
95         print_policy();
96
97         poptFreeContext(pc);
98
99         return 0;
100 }