2 Unix SMB/CIFS implementation.
3 struct samu local cache for
4 Copyright (C) Jim McDonough (jmcd@us.ibm.com) 2004.
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"
26 #define DBGC_CLASS DBGC_PASSDB
28 #define LOGIN_CACHE_FILE "login_cache.tdb"
30 #define SAM_CACHE_FORMAT "dwwd"
32 static TDB_CONTEXT
*cache
;
34 bool login_cache_init(void)
36 char* cache_fname
= NULL
;
38 /* skip file open if it's already opened */
39 if (cache
) return True
;
41 cache_fname
= cache_path(LOGIN_CACHE_FILE
);
42 if (cache_fname
== NULL
) {
43 DEBUG(0, ("Filename allocation failed.\n"));
47 DEBUG(5, ("Opening cache file at %s\n", cache_fname
));
49 cache
= tdb_open_log(cache_fname
, 0, TDB_DEFAULT
,
50 O_RDWR
|O_CREAT
, 0644);
53 DEBUG(5, ("Attempt to open %s failed.\n", cache_fname
));
55 TALLOC_FREE(cache_fname
);
57 return (cache
? True
: False
);
60 bool login_cache_shutdown(void)
62 /* tdb_close routine returns non-zero on error */
63 if (!cache
) return False
;
64 DEBUG(5, ("Closing cache file\n"));
65 return tdb_close(cache
) == 0;
68 /* if we can't read the cache, oh well, no need to return anything */
69 bool login_cache_read(struct samu
*sampass
, struct login_cache
*entry
)
73 uint32_t entry_timestamp
= 0, bad_password_time
= 0;
76 if (!login_cache_init()) {
80 if (pdb_get_nt_username(sampass
) == NULL
) {
84 keystr
= SMB_STRDUP(pdb_get_nt_username(sampass
));
85 if (!keystr
|| !keystr
[0]) {
90 DEBUG(7, ("Looking up login cache for user %s\n",
92 databuf
= tdb_fetch_bystring(cache
, keystr
);
97 if (tdb_unpack (databuf
.dptr
, databuf
.dsize
, SAM_CACHE_FORMAT
,
100 &entry
->bad_password_count
,
101 &bad_password_time
) == -1) {
102 DEBUG(7, ("No cache entry found\n"));
103 SAFE_FREE(databuf
.dptr
);
108 * Deal with 32-bit acct_ctrl. In the tdb we only store 16-bit
109 * ("w" in SAM_CACHE_FORMAT). Fixes bug 7253.
111 entry
->acct_ctrl
= acct_ctrl
;
113 /* Deal with possible 64-bit time_t. */
114 entry
->entry_timestamp
= (time_t)entry_timestamp
;
115 entry
->bad_password_time
= (time_t)bad_password_time
;
117 SAFE_FREE(databuf
.dptr
);
119 DEBUG(5, ("Found login cache entry: timestamp %12u, flags 0x%x, count %d, time %12u\n",
120 (unsigned int)entry
->entry_timestamp
, entry
->acct_ctrl
,
121 entry
->bad_password_count
, (unsigned int)entry
->bad_password_time
));
125 bool login_cache_write(const struct samu
*sampass
,
126 const struct login_cache
*entry
)
131 uint32_t entry_timestamp
;
132 uint32_t bad_password_time
= entry
->bad_password_time
;
134 if (!login_cache_init())
137 if (pdb_get_nt_username(sampass
) == NULL
) {
141 keystr
= SMB_STRDUP(pdb_get_nt_username(sampass
));
142 if (!keystr
|| !keystr
[0]) {
147 entry_timestamp
= (uint32_t)time(NULL
);
150 tdb_pack(NULL
, 0, SAM_CACHE_FORMAT
,
153 entry
->bad_password_count
,
155 databuf
.dptr
= SMB_MALLOC_ARRAY(uint8
, databuf
.dsize
);
161 if (tdb_pack(databuf
.dptr
, databuf
.dsize
, SAM_CACHE_FORMAT
,
164 entry
->bad_password_count
,
168 SAFE_FREE(databuf
.dptr
);
172 ret
= tdb_store_bystring(cache
, keystr
, databuf
, 0);
174 SAFE_FREE(databuf
.dptr
);
178 bool login_cache_delentry(const struct samu
*sampass
)
183 if (!login_cache_init())
186 if (pdb_get_nt_username(sampass
) == NULL
) {
190 keystr
= SMB_STRDUP(pdb_get_nt_username(sampass
));
191 if (!keystr
|| !keystr
[0]) {
196 DEBUG(9, ("About to delete entry for %s\n", keystr
));
197 ret
= tdb_delete_bystring(cache
, keystr
);
198 DEBUG(9, ("tdb_delete returned %d\n", ret
));