-
Notifications
You must be signed in to change notification settings - Fork 0
/
pdb_pgsql.c
688 lines (551 loc) · 19.2 KB
/
pdb_pgsql.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
/*
* PostgresSQL password backend for samba
* Copyright (C) Hamish Friedlander 2003
* Copyright (C) Jelmer Vernooij 2004-2006
* Copyright (C) Wilco Baan Hofman 2006
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free
* Software Foundation; either version 3 of the License, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along with
* this program; if not, write to the Free Software Foundation, Inc., 675
* Mass Ave, Cambridge, MA 02139, USA.
*
* TODO
* * Volker commited Trust domain passwords to be included in the pdb.
* These need to be added here:
* bool get_trusteddom_pw(struct pdb_methods *methods, const char *domain, char **pwd, struct dom_sid *sid, time_t *pass_last_set_time)
* bool set_trusteddom_pw(struct pdb_methods *methods, const char *domain, const char *pwd, const struct dom_sid *sid)
* bool del_trusteddom_pw(struct pdb_methods *methods, const char *domain)
* NTSTATUS enum_trusteddoms(struct pdb_methods *methods, TALLOC_CTX *mem_ctx, uint32 *num_domains, struct trustdom_info ***domains)
*/
#include "pdb_sql.h"
#include "libcli/security/dom_sid.h"
#include <libpq-fe.h>
/* To prevent duplicate defines */
#undef PACKAGE_BUGREPORT
#undef PACKAGE_NAME
#undef PACKAGE_STRING
#undef PACKAGE_VERSION
#undef PACKAGE_TARNAME
#include <pg_config.h>
#define CONFIG_HOST_DEFAULT "localhost"
#define CONFIG_USER_DEFAULT "samba"
#define CONFIG_PASS_DEFAULT ""
#define CONFIG_PORT_DEFAULT DEF_PGPORT_STR
#define CONFIG_DB_DEFAULT "samba"
static int pgsqlsam_debug_level = DBGC_ALL;
#undef DBGC_CLASS
#define DBGC_CLASS pgsqlsam_debug_level
/* handles for doing db transactions */
typedef struct pdb_pgsql_data {
PGconn *handle;
PGresult *pwent;
long currow;
const char *db;
const char *host;
const char *port;
const char *user;
const char *pass;
const char *location;
} pdb_pgsql_data;
/* Store the data needed for the _search_next_entry iterator */
typedef struct pdb_pgsql_search_state {
uint32_t acct_flags;
PGresult *pwent;
long currow;
} pdb_pgsql_search_state;
#define SET_DATA(data,methods) { \
if(!methods){ \
DEBUG(0, ("invalid methods!\n")); \
return NT_STATUS_INVALID_PARAMETER; \
} \
data = (struct pdb_pgsql_data *)methods->private_data; \
}
#define SET_DATA_QUIET(data,methods) { \
if(!methods){ \
DEBUG(0, ("invalid methods!\n")); \
return; \
} \
data = (struct pdb_pgsql_data *)methods->private_data; \
}
#define config_value(data, name, default_value) \
lp_parm_const_string(GLOBAL_SECTION_SNUM, (data)->location, name, default_value)
static PGconn *pgsqlsam_connect(struct pdb_pgsql_data *data)
{
PGconn *handle;
DEBUG(1, ("Connecting to database server, host: %s, user: %s, password: XXXXXX, database: %s, port: %s\n",
data->host, data->user, data->db, data->port));
/* Do the pgsql initialization */
handle = PQsetdbLogin(
data->host,
data->port,
NULL,
NULL,
data->db,
data->user,
data->pass);
if (handle != NULL && PQstatus(handle) != CONNECTION_OK) {
DEBUG(0, ("Failed to connect to pgsql database: error: %s\n",
(handle != NULL ? PQerrorMessage(handle) : "")));
return NULL;
}
DEBUG(5, ("Connected to pgsql database\n"));
return handle;
}
static PGresult *pdb_pgsql_query(struct pdb_pgsql_data *data, char *query, bool expect_resultset)
{
PGresult *result;
/* Connect to the DB. */
if (data->handle == NULL) {
DEBUG(0, ("Unable to obtain handle, trying to connect\n"));
data->handle = pgsqlsam_connect(data);
if (data->handle == NULL)
{
DEBUG(0, ("Failed again, stopping\n"));
return NULL;
}
}
/* Execute query */
DEBUG(5, ("Executing query %s\n", query));
result = PQexec(data->handle, query);
/* Result? */
if (result == NULL) {
/* Will happen mostly because the server has been disconnected */
DEBUG(1, ("Error executing %s, %s (trying to recover with reconnect)\n", query, PQerrorMessage(data->handle)));
PQreset(data->handle);
} else {
if (PQresultStatus(result) != (expect_resultset ? PGRES_TUPLES_OK : PGRES_COMMAND_OK)) {
DEBUG(1, ("Error executing %s, %s\n", query, PQresultErrorMessage(result)));
PQclear(result);
result = NULL;
}
}
return result;
}
static long PQgetlong(PGresult *r, long row, long col)
{
if (PQgetisnull(r, row, col)) {
return 0;
}
return atol(PQgetvalue(r, row, col));
}
static NTSTATUS row_to_sam_account (PGresult *r, long row, struct samu *u)
{
unsigned char temp[16];
struct dom_sid sid;
unsigned char *hours;
size_t hours_len = 0;
if (row >= PQntuples(r)) {
return NT_STATUS_INVALID_PARAMETER;
}
pdb_set_logon_time (u, PQgetlong (r, row, 0), PDB_SET);
pdb_set_logoff_time (u, PQgetlong (r, row, 1), PDB_SET);
pdb_set_kickoff_time (u, PQgetlong (r, row, 2), PDB_SET);
pdb_set_pass_last_set_time (u, PQgetlong (r, row, 3), PDB_SET);
pdb_set_pass_can_change_time (u, PQgetlong (r, row, 4), PDB_SET);
pdb_set_pass_must_change_time(u, PQgetlong (r, row, 5), PDB_SET);
pdb_set_username (u, PQgetvalue(r, row, 6), PDB_SET);
pdb_set_domain (u, PQgetvalue(r, row, 7), PDB_SET);
pdb_set_nt_username (u, PQgetvalue(r, row, 8), PDB_SET);
pdb_set_fullname (u, PQgetvalue(r, row, 9), PDB_SET);
pdb_set_homedir (u, PQgetvalue(r, row, 10), PDB_SET);
pdb_set_dir_drive (u, PQgetvalue(r, row, 11), PDB_SET);
pdb_set_logon_script (u, PQgetvalue(r, row, 12), PDB_SET);
pdb_set_profile_path (u, PQgetvalue(r, row, 13), PDB_SET);
pdb_set_acct_desc (u, PQgetvalue(r, row, 14), PDB_SET);
pdb_set_workstations (u, PQgetvalue(r, row, 15), PDB_SET);
pdb_set_comment (u, PQgetvalue(r, row, 16), PDB_SET);
pdb_set_munged_dial (u, PQgetvalue(r, row, 17), PDB_SET);
pdb_set_acct_ctrl (u, PQgetlong (r, row, 23), PDB_SET);
pdb_set_logon_divs (u, PQgetlong (r, row, 24), PDB_SET);
pdb_set_hours_len (u, PQgetlong (r, row, 25), PDB_SET);
pdb_set_bad_password_count (u, PQgetlong (r, row, 26), PDB_SET);
pdb_set_logon_count (u, PQgetlong (r, row, 27), PDB_SET);
pdb_set_unknown_6 (u, PQgetlong (r, row, 28), PDB_SET);
hours = (unsigned char *) PQgetvalue(r, row, 29);
if (hours != NULL) {
hours = PQunescapeBytea(hours, &hours_len);
if (hours_len > 0) {
pdb_set_hours(u, hours, PQgetlong(r, row, 25), PDB_SET);
}
}
if (!PQgetisnull(r, row, 18)) {
string_to_sid(&sid, PQgetvalue(r, row, 18));
pdb_set_user_sid(u, &sid, PDB_SET);
}
if (!PQgetisnull(r, row, 19)) {
string_to_sid(&sid, PQgetvalue(r, row, 19));
pdb_set_group_sid(u, &sid, PDB_SET);
}
if (pdb_gethexpwd(PQgetvalue(r, row, 20), temp)) {
pdb_set_lanman_passwd(u, temp, PDB_SET);
}
if (pdb_gethexpwd(PQgetvalue(r, row, 21), temp)) {
pdb_set_nt_passwd(u, temp, PDB_SET);
}
/* Set password history field */
if (!PQgetisnull(r, row, 30)) {
uint8 pwhist[MAX_PW_HISTORY_LEN * PW_HISTORY_ENTRY_LEN];
int i;
char *history_string = PQgetvalue(r, row, 30);
memset(&pwhist, 0, MAX_PW_HISTORY_LEN * PW_HISTORY_ENTRY_LEN);
for (i = 0; i < MAX_PW_HISTORY_LEN && i < strlen(history_string)/64; i++) {
pdb_gethexpwd(&(history_string)[i*64], &pwhist[i*PW_HISTORY_ENTRY_LEN]);
pdb_gethexpwd(&(history_string)[i*64+32],
&pwhist[i*PW_HISTORY_ENTRY_LEN+PW_HISTORY_SALT_LEN]);
}
pdb_set_pw_history(u, pwhist, strlen(history_string)/64, PDB_SET);
}
/* Only use plaintext password storage when lanman and nt are NOT used */
if (PQgetisnull(r, row, 20) || PQgetisnull(r, row, 21)) {
pdb_set_plaintext_passwd(u, PQgetvalue(r, row, 22));
}
return NT_STATUS_OK;
}
static NTSTATUS pgsqlsam_select_by_field(struct pdb_methods *methods, struct samu *user, enum sql_search_field field, const char *sname)
{
struct pdb_pgsql_data *data;
char *esc;
char *query;
PGresult *result;
NTSTATUS retval;
SET_DATA(data, methods);
if (user == NULL) {
DEBUG(0, ("pdb_getsampwnam: struct samu is NULL.\n"));
return NT_STATUS_INVALID_PARAMETER;
}
DEBUG(5, ("pgsqlsam_select_by_field: getting data where %d = %s(nonescaped)\n", field, sname));
/* Escape sname */
esc = talloc_array(NULL, char, strlen(sname) * 2 + 1);
if (!esc) {
DEBUG(0, ("Can't allocate memory to store escaped name\n"));
return NT_STATUS_NO_MEMORY;
}
/* tmp_sname = smb_xstrdup(sname); */
PQescapeString(esc, sname, strlen(sname));
query = sql_account_query_select(NULL, data->location, true, field, esc);
result = pdb_pgsql_query(data, query, true);
/* Result? */
if (result == NULL)
{
retval = NT_STATUS_UNSUCCESSFUL;
}
else
{
retval = row_to_sam_account(result, 0, user);
PQclear(result);
}
talloc_free(esc);
talloc_free(query);
return retval;
}
/******************************************************************
Lookup a name in the SAM database
******************************************************************/
static NTSTATUS pgsqlsam_getsampwnam(struct pdb_methods *methods, struct samu *user, const char *sname)
{
struct pdb_pgsql_data *data;
size_t i, l;
char *lowercasename;
NTSTATUS result;
SET_DATA(data, methods);
if (!sname) {
DEBUG(0, ("invalid name specified"));
return NT_STATUS_INVALID_PARAMETER;
}
lowercasename = talloc_strdup(data, sname);
l = strlen(lowercasename);
for(i = 0; i < l; i++) {
smb_ucs2_t uc = tolower_w(UCS2_CHAR(lowercasename[i]));
lowercasename[i] = UCS2_TO_CHAR(uc);
}
result = pgsqlsam_select_by_field(methods, user, SQL_SEARCH_USER_NAME, lowercasename);
talloc_free(lowercasename);
return result;
}
/***************************************************************************
Search by sid
**************************************************************************/
static NTSTATUS pgsqlsam_getsampwsid(struct pdb_methods *methods, struct samu *user, const struct dom_sid *sid)
{
fstring sid_str;
sid_to_fstring(sid_str, sid);
return pgsqlsam_select_by_field(methods, user, SQL_SEARCH_USER_SID, sid_str);
}
/***************************************************************************
Delete a struct samu
****************************************************************************/
static NTSTATUS pgsqlsam_delete_sam_account(struct pdb_methods *methods, struct samu *sam_pass)
{
struct pdb_pgsql_data *data;
const char *sname = pdb_get_username(sam_pass);
char *esc;
char *query;
PGresult *result;
NTSTATUS retval;
SET_DATA(data, methods);
if (!sname) {
DEBUG(0, ("invalid name specified\n"));
return NT_STATUS_INVALID_PARAMETER;
}
/* Escape sname */
esc = talloc_array(NULL, char, strlen(sname) * 2 + 1);
if (!esc) {
DEBUG(0, ("Can't allocate memory to store escaped name\n"));
return NT_STATUS_NO_MEMORY;
}
PQescapeString(esc, sname, strlen(sname));
query = sql_account_query_delete(NULL, data->location, esc);
result = pdb_pgsql_query(data, query, false);
if (result == NULL) {
retval = NT_STATUS_UNSUCCESSFUL;
} else {
DEBUG(5, ("User '%s' deleted\n", sname));
retval = NT_STATUS_OK;
PQclear(result);
}
talloc_free(esc);
talloc_free(query);
return retval;
}
static NTSTATUS pgsqlsam_replace_sam_account(struct pdb_methods *methods, struct samu *newpwd, char isupdate)
{
struct pdb_pgsql_data *data;
char *query;
PGresult *result;
NTSTATUS retval;
if (!methods) {
DEBUG(0, ("invalid methods!\n"));
return NT_STATUS_INVALID_PARAMETER;
}
data = (struct pdb_pgsql_data *) methods->private_data;
if (data == NULL) {
DEBUG(0, ("invalid handle!\n"));
return NT_STATUS_INVALID_HANDLE;
}
query = sql_account_query_update(NULL, data->location, newpwd, isupdate);
if (query == NULL) {
/* Nothing to update. */
return NT_STATUS_OK;
}
/* Execute the query */
result = pdb_pgsql_query(data, query, false);
if (result == NULL) {
retval = NT_STATUS_INVALID_PARAMETER;
} else {
PQclear(result);
retval = NT_STATUS_OK;
}
talloc_free(query);
return retval;
}
static NTSTATUS pgsqlsam_add_sam_account(struct pdb_methods *methods, struct samu *newpwd)
{
return pgsqlsam_replace_sam_account(methods, newpwd, 0);
}
static NTSTATUS pgsqlsam_update_sam_account(struct pdb_methods *methods, struct samu *newpwd)
{
return pgsqlsam_replace_sam_account(methods, newpwd, 1);
}
static NTSTATUS pgsqlsam_rename_sam_account(struct pdb_methods *methods,
struct samu *old_acct,
const char *newname)
{
struct samu *newpwd;
NTSTATUS res;
newpwd = talloc_memdup(NULL, old_acct, sizeof(struct samu));
if (newpwd == NULL) {
DEBUG(0, ("Can't allocate memory to store new user\n"));
return NT_STATUS_NO_MEMORY;
}
if (!pdb_set_username(newpwd, newname, PDB_SET)) {
DEBUG(1, ("Unable to change username\n"));
res = NT_STATUS_UNSUCCESSFUL;
} else {
res = pgsqlsam_replace_sam_account(methods, newpwd, 1);
}
talloc_free(newpwd);
return res;
}
static uint32_t pgsqlsam_capabilities(struct pdb_methods *pdb_methods)
{
return PDB_CAP_ADS;
}
/* Iterate through search results, if a new entry is available: store in
* entry and return true. Otherwise: return false
*/
static bool pgsqlsam_search_next_entry(struct pdb_search *search,
struct samr_displayentry *entry)
{
struct pdb_pgsql_search_state *search_state;
struct dom_sid sid;
PGresult *r;
long row;
search_state = (struct pdb_pgsql_search_state *)search->private_data;
r = search_state->pwent;
row = search_state->currow;
if (r == NULL) {
DEBUG(0, ("invalid query result pointer\n"));
return false;
}
if (row >= PQntuples(r)) {
/* We've reached the end */
return false;
}
/* Now why do we need to fill entry as rid is enough? Okay, it is a bit
* of a hack, but I don't see the point in filling everything when we
* never read it.
*/
if (!PQgetisnull(r, row, 18)) {
string_to_sid(&sid, PQgetvalue(r, row, 18));
entry->rid = sid.sub_auths[4];
}
entry->acct_flags = atoi(PQgetvalue(r, row, 23));
entry->account_name = talloc_strdup(search, PQgetvalue(r, row, 6));
entry->fullname = talloc_strdup(search, PQgetvalue(r, row, 9));
entry->description = talloc_strdup(search, PQgetvalue(r, row, 14));
search_state->currow++;
if (entry->account_name == NULL) {
DEBUG(0, ("talloc_strdup failed\n"));
return false;
}
if ((entry->acct_flags & search_state->acct_flags) != search_state->acct_flags) {
return pgsqlsam_search_next_entry(search, entry);
}
return true;
}
/* Free the memory after a search, reset some default values */
static void pgsqlsam_search_end(struct pdb_search *search)
{
struct pdb_pgsql_search_state *search_state;
search_state = (struct pdb_pgsql_search_state *)search->private_data;
if (search_state->pwent != NULL) {
PQclear(search_state->pwent);
}
search_state->pwent = NULL;
search_state->currow = 0;
talloc_free(search);
DEBUG(5, ("pgsqlsam_search_end called\n"));
}
/* Prepare a search object for iterating through the users */
static bool pgsqlsam_search_users(struct pdb_methods *pdb_methods,
struct pdb_search *search, uint32_t acct_flags)
{
struct pdb_pgsql_data *data;
struct pdb_pgsql_search_state *search_state;
char *query;
data = (struct pdb_pgsql_data *) pdb_methods->private_data;
search_state = TALLOC_ZERO_P(search, struct pdb_pgsql_search_state);
if (search_state == NULL) {
DEBUG(0, ("talloc failed\n"));
return false;
}
search_state->acct_flags = acct_flags;
if (!pdb_methods) {
DEBUG(0, ("invalid methods!\n"));
return false;
}
/* The query to select all the users */
query = sql_account_query_select(NULL, data->location, false, SQL_SEARCH_NONE, NULL);
search_state->pwent = pdb_pgsql_query(data, query, true);
search_state->currow = 0;
talloc_free(query);
/* Check results */
if (search_state->pwent == NULL) {
return false;
} else {
DEBUG(5, ("pgsqlsam_search_users succeeded(%d results)!\n", PQntuples(search_state->pwent)));
}
search->private_data = search_state;
search->next_entry = pgsqlsam_search_next_entry;
search->search_end = pgsqlsam_search_end;
return true;
}
/* Dummy search_ functions. Maybe they should really work XXXX */
/* Courtesy of Gary Mills */
static bool pgsqlsam_search_groups(struct pdb_methods *methods,
struct pdb_search *search)
{
talloc_set_destructor(search, NULL);
return false;
}
static bool pgsqlsam_search_aliases(struct pdb_methods *methods,
struct pdb_search *search,
const struct dom_sid *sid)
{
talloc_set_destructor(search, NULL);
return false;
}
static void pgsqlsam_free_private_data(void **vp)
{
struct pdb_pgsql_data **data = (struct pdb_pgsql_data**)vp;
*data = NULL;
/* No need to free any further, as it is talloc()ed */
}
static NTSTATUS pgsqlsam_init(struct pdb_methods **pdb_method, const char *location)
{
NTSTATUS nt_status;
struct pdb_pgsql_data *data;
pgsqlsam_debug_level = debug_add_class("pgsqlsam");
if (pgsqlsam_debug_level == -1) {
pgsqlsam_debug_level = DBGC_ALL;
DEBUG(0,
("pgsqlsam: Couldn't register custom debugging class!\n"));
}
if ( !NT_STATUS_IS_OK(nt_status = make_pdb_method( pdb_method )) ) {
return nt_status;
}
(*pdb_method)->name = "pgsqlsam";
(*pdb_method)->search_users = pgsqlsam_search_users;
(*pdb_method)->search_groups = pgsqlsam_search_groups;
(*pdb_method)->search_aliases = pgsqlsam_search_aliases;
(*pdb_method)->getsampwnam = pgsqlsam_getsampwnam;
(*pdb_method)->getsampwsid = pgsqlsam_getsampwsid;
(*pdb_method)->add_sam_account = pgsqlsam_add_sam_account;
(*pdb_method)->update_sam_account = pgsqlsam_update_sam_account;
(*pdb_method)->rename_sam_account = pgsqlsam_rename_sam_account;
(*pdb_method)->delete_sam_account = pgsqlsam_delete_sam_account;
(*pdb_method)->capabilities = pgsqlsam_capabilities;
if (!(data = TALLOC_ZERO_P(*pdb_method, struct pdb_pgsql_data)))
{
DEBUG(0, ("talloc() failed for pdbsql private_data!\n"));
return NT_STATUS_NO_MEMORY;
}
(*pdb_method)->private_data = data;
(*pdb_method)->free_private_data = pgsqlsam_free_private_data;
data->handle = NULL;
data->pwent = NULL;
if (!location) {
DEBUG(0, ("No identifier specified. Check the Samba HOWTO Collection for details\n"));
return NT_STATUS_INVALID_PARAMETER;
}
data->location = talloc_strdup(data, location);
if(!sql_account_config_valid(data->location)) {
return NT_STATUS_INVALID_PARAMETER;
}
DEBUG(1, ("Database server parameters: host: %s, user: %s, password: XXXX, database: %s, port: %s\n",
config_value(data, "pgsql host" , CONFIG_HOST_DEFAULT),
config_value(data, "pgsql user" , CONFIG_USER_DEFAULT),
config_value(data, "pgsql database", CONFIG_DB_DEFAULT ),
config_value(data, "pgsql port" , CONFIG_PORT_DEFAULT)));
/* Save the parameters. */
data->db = config_value(data, "pgsql database", CONFIG_DB_DEFAULT );
data->host = config_value(data, "pgsql host" , CONFIG_HOST_DEFAULT);
data->port = config_value(data, "pgsql port" , CONFIG_PORT_DEFAULT);
data->user = config_value(data, "pgsql user" , CONFIG_USER_DEFAULT);
data->pass = config_value(data, "pgsql password", CONFIG_PASS_DEFAULT);
DEBUG(5, ("Pgsql module initialized\n"));
return NT_STATUS_OK;
}
NTSTATUS init_samba_module(void)
{
return smb_register_passdb(PASSDB_INTERFACE_VERSION, "pgsql", pgsqlsam_init);
}