2 Unix SMB/CIFS implementation.
3 Share Database of available printers.
4 Copyright (C) Simo Sorce 2010
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"
22 #include "dbwrap/dbwrap.h"
23 #include "dbwrap/dbwrap_open.h"
25 #include "printer_list.h"
27 #define PL_DB_NAME() lock_path("printer_list.tdb")
28 #define PL_KEY_PREFIX "PRINTERLIST/PRN/"
29 #define PL_KEY_FORMAT PL_KEY_PREFIX"%s"
30 #define PL_TIMESTAMP_KEY "PRINTERLIST/GLOBAL/LAST_REFRESH"
31 #define PL_DATA_FORMAT "ddPPP"
32 #define PL_TSTAMP_FORMAT "dd"
34 static struct db_context
*get_printer_list_db(void)
36 static struct db_context
*db
;
41 db
= db_open(NULL
, PL_DB_NAME(), 0,
42 TDB_DEFAULT
|TDB_CLEAR_IF_FIRST
|TDB_INCOMPATIBLE_HASH
,
43 O_RDWR
|O_CREAT
, 0644, DBWRAP_LOCK_ORDER_1
,
48 bool printer_list_parent_init(void)
50 struct db_context
*db
;
53 * Open the tdb in the parent process (smbd) so that our
54 * CLEAR_IF_FIRST optimization in tdb_reopen_all can properly
58 db
= get_printer_list_db();
60 DEBUG(1, ("could not open Printer List Database: %s\n",
67 NTSTATUS
printer_list_get_printer(TALLOC_CTX
*mem_ctx
,
70 const char **location
,
73 struct db_context
*db
;
76 uint32_t time_h
, time_l
;
83 db
= get_printer_list_db();
85 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
88 key
= talloc_asprintf(mem_ctx
, PL_KEY_FORMAT
, name
);
90 DEBUG(0, ("Failed to allocate key name!\n"));
91 return NT_STATUS_NO_MEMORY
;
94 status
= dbwrap_fetch_bystring_upper(db
, key
, key
, &data
);
95 if (!NT_STATUS_IS_OK(status
)) {
96 DEBUG(6, ("Failed to fetch record! "
97 "The printer database is empty?\n"));
101 ret
= tdb_unpack(data
.dptr
, data
.dsize
,
103 &time_h
, &time_l
, &nstr
, &cstr
, &lstr
);
105 DEBUG(1, ("Failed to un pack printer data"));
106 status
= NT_STATUS_INTERNAL_DB_CORRUPTION
;
111 *last_refresh
= (time_t)(((uint64_t)time_h
<< 32) + time_l
);
115 *comment
= talloc_strdup(mem_ctx
, cstr
);
117 DEBUG(1, ("Failed to strdup comment!\n"));
118 status
= NT_STATUS_NO_MEMORY
;
124 *location
= talloc_strdup(mem_ctx
, lstr
);
125 if (*location
== NULL
) {
126 DEBUG(1, ("Failed to strdup location!\n"));
127 status
= NT_STATUS_NO_MEMORY
;
132 status
= NT_STATUS_OK
;
142 NTSTATUS
printer_list_set_printer(TALLOC_CTX
*mem_ctx
,
145 const char *location
,
148 struct db_context
*db
;
152 uint32_t time_h
, time_l
;
156 db
= get_printer_list_db();
158 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
161 key
= talloc_asprintf(mem_ctx
, PL_KEY_FORMAT
, name
);
163 DEBUG(0, ("Failed to allocate key name!\n"));
164 return NT_STATUS_NO_MEMORY
;
167 if (comment
== NULL
) {
171 if (location
== NULL
) {
175 time_64
= last_refresh
;
176 time_l
= time_64
& 0xFFFFFFFFL
;
177 time_h
= time_64
>> 32;
179 len
= tdb_pack(NULL
, 0,
187 data
.dptr
= talloc_array(key
, uint8_t, len
);
189 DEBUG(0, ("Failed to allocate tdb data buffer!\n"));
190 status
= NT_STATUS_NO_MEMORY
;
195 len
= tdb_pack(data
.dptr
, data
.dsize
,
203 status
= dbwrap_store_bystring_upper(db
, key
, data
, TDB_REPLACE
);
210 NTSTATUS
printer_list_get_last_refresh(time_t *last_refresh
)
212 struct db_context
*db
;
214 uint32_t time_h
, time_l
;
218 db
= get_printer_list_db();
220 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
225 status
= dbwrap_fetch_bystring(db
, talloc_tos(), PL_TIMESTAMP_KEY
, &data
);
226 if (!NT_STATUS_IS_OK(status
)) {
227 DEBUG(1, ("Failed to fetch record!\n"));
231 ret
= tdb_unpack(data
.dptr
, data
.dsize
,
232 PL_TSTAMP_FORMAT
, &time_h
, &time_l
);
234 DEBUG(1, ("Failed to un pack printer data"));
235 status
= NT_STATUS_INTERNAL_DB_CORRUPTION
;
239 *last_refresh
= (time_t)(((uint64_t)time_h
<< 32) + time_l
);
240 status
= NT_STATUS_OK
;
246 NTSTATUS
printer_list_mark_reload(void)
248 struct db_context
*db
;
250 uint32_t time_h
, time_l
;
251 time_t now
= time_mono(NULL
);
255 db
= get_printer_list_db();
257 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
260 time_l
= ((uint64_t)now
) & 0xFFFFFFFFL
;
261 time_h
= ((uint64_t)now
) >> 32;
263 len
= tdb_pack(NULL
, 0, PL_TSTAMP_FORMAT
, time_h
, time_l
);
265 data
.dptr
= talloc_array(talloc_tos(), uint8_t, len
);
267 DEBUG(0, ("Failed to allocate tdb data buffer!\n"));
268 status
= NT_STATUS_NO_MEMORY
;
273 len
= tdb_pack(data
.dptr
, data
.dsize
,
274 PL_TSTAMP_FORMAT
, time_h
, time_l
);
276 status
= dbwrap_store_bystring(db
, PL_TIMESTAMP_KEY
,
280 TALLOC_FREE(data
.dptr
);
284 typedef int (printer_list_trv_fn_t
)(struct db_record
*, void *);
286 static NTSTATUS
printer_list_traverse(printer_list_trv_fn_t
*fn
,
289 struct db_context
*db
;
292 db
= get_printer_list_db();
294 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
297 status
= dbwrap_traverse(db
, fn
, private_data
, NULL
);
302 struct printer_list_clean_state
{
307 static int printer_list_clean_fn(struct db_record
*rec
, void *private_data
)
309 struct printer_list_clean_state
*state
=
310 (struct printer_list_clean_state
*)private_data
;
311 uint32_t time_h
, time_l
;
320 key
= dbwrap_record_get_key(rec
);
322 /* skip anything that does not contain PL_DATA_FORMAT data */
323 if (strncmp((char *)key
.dptr
,
324 PL_KEY_PREFIX
, sizeof(PL_KEY_PREFIX
)-1)) {
328 value
= dbwrap_record_get_value(rec
);
330 ret
= tdb_unpack(value
.dptr
, value
.dsize
,
331 PL_DATA_FORMAT
, &time_h
, &time_l
, &name
, &comment
,
334 DEBUG(1, ("Failed to un pack printer data"));
335 state
->status
= NT_STATUS_INTERNAL_DB_CORRUPTION
;
343 refresh
= (time_t)(((uint64_t)time_h
<< 32) + time_l
);
345 if (refresh
< state
->last_refresh
) {
346 state
->status
= dbwrap_record_delete(rec
);
347 if (!NT_STATUS_IS_OK(state
->status
)) {
355 NTSTATUS
printer_list_clean_old(void)
357 struct printer_list_clean_state state
;
360 status
= printer_list_get_last_refresh(&state
.last_refresh
);
361 if (!NT_STATUS_IS_OK(status
)) {
365 state
.status
= NT_STATUS_OK
;
367 status
= printer_list_traverse(printer_list_clean_fn
, &state
);
368 if (NT_STATUS_EQUAL(status
, NT_STATUS_UNSUCCESSFUL
) &&
369 !NT_STATUS_IS_OK(state
.status
)) {
370 status
= state
.status
;
376 struct printer_list_exec_state
{
377 void (*fn
)(const char *, const char *, const char *, void *);
382 static int printer_list_exec_fn(struct db_record
*rec
, void *private_data
)
384 struct printer_list_exec_state
*state
=
385 (struct printer_list_exec_state
*)private_data
;
386 uint32_t time_h
, time_l
;
394 key
= dbwrap_record_get_key(rec
);
396 /* always skip PL_TIMESTAMP_KEY key */
397 if (strequal((const char *)key
.dptr
, PL_TIMESTAMP_KEY
)) {
401 value
= dbwrap_record_get_value(rec
);
403 ret
= tdb_unpack(value
.dptr
, value
.dsize
,
404 PL_DATA_FORMAT
, &time_h
, &time_l
, &name
, &comment
,
407 DEBUG(1, ("Failed to un pack printer data"));
408 state
->status
= NT_STATUS_INTERNAL_DB_CORRUPTION
;
412 state
->fn(name
, comment
, location
, state
->private_data
);
420 NTSTATUS
printer_list_run_fn(void (*fn
)(const char *, const char *, const char *, void *),
423 struct printer_list_exec_state state
;
427 state
.private_data
= private_data
;
428 state
.status
= NT_STATUS_OK
;
430 status
= printer_list_traverse(printer_list_exec_fn
, &state
);
431 if (NT_STATUS_EQUAL(status
, NT_STATUS_UNSUCCESSFUL
) &&
432 !NT_STATUS_IS_OK(state
.status
)) {
433 status
= state
.status
;