source: vendor/current/source3/printing/pcap.c

Last change on this file was 988, checked in by Silvan Scherrer, 9 years ago

Samba Server: update vendor to version 4.4.3

File size: 6.0 KB
Line 
1/*
2 Unix SMB/CIFS implementation.
3 printcap parsing
4 Copyright (C) Karl Auer 1993-1998
5
6 Re-working by Martin Kiff, 1994
7
8 Re-written again by Andrew Tridgell
9
10 Modified for SVID support by Norm Jacobs, 1997
11
12 Modified for CUPS support by Michael Sweet, 1999
13
14 This program is free software; you can redistribute it and/or modify
15 it under the terms of the GNU General Public License as published by
16 the Free Software Foundation; either version 3 of the License, or
17 (at your option) any later version.
18
19 This program is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 GNU General Public License for more details.
23
24 You should have received a copy of the GNU General Public License
25 along with this program. If not, see <http://www.gnu.org/licenses/>.
26*/
27
28/*
29 * Modified to call SVID/XPG4 support if printcap name is set to "lpstat"
30 * in smb.conf under Solaris.
31 *
32 * Modified to call CUPS support if printcap name is set to "cups"
33 * in smb.conf.
34 *
35 * Modified to call iPrint support if printcap name is set to "iprint"
36 * in smb.conf.
37 */
38
39#include "includes.h"
40#include "printing/pcap.h"
41#include "printer_list.h"
42
43struct pcap_cache {
44 char *name;
45 char *comment;
46 char *location;
47 struct pcap_cache *next;
48};
49
50bool pcap_cache_add_specific(struct pcap_cache **ppcache, const char *name, const char *comment, const char *location)
51{
52 struct pcap_cache *p;
53
54 if (name == NULL || ((p = SMB_MALLOC_P(struct pcap_cache)) == NULL))
55 return false;
56
57 p->name = SMB_STRDUP(name);
58 p->comment = (comment && *comment) ? SMB_STRDUP(comment) : NULL;
59 p->location = (location && *location) ? SMB_STRDUP(location) : NULL;
60
61 DEBUG(11,("pcap_cache_add_specific: Adding name %s info %s, location: %s\n",
62 p->name, p->comment ? p->comment : "",
63 p->location ? p->location : ""));
64
65 p->next = *ppcache;
66 *ppcache = p;
67
68 return true;
69}
70
71void pcap_cache_destroy_specific(struct pcap_cache **pp_cache)
72{
73 struct pcap_cache *p, *next;
74
75 for (p = *pp_cache; p != NULL; p = next) {
76 next = p->next;
77
78 SAFE_FREE(p->name);
79 SAFE_FREE(p->comment);
80 SAFE_FREE(p->location);
81 SAFE_FREE(p);
82 }
83 *pp_cache = NULL;
84}
85
86bool pcap_cache_loaded(time_t *_last_change)
87{
88 NTSTATUS status;
89 time_t last;
90
91 status = printer_list_get_last_refresh(&last);
92 if (!NT_STATUS_IS_OK(status)) {
93 return false;
94 }
95 if (_last_change != NULL) {
96 *_last_change = last;
97 }
98 return true;
99}
100
101bool pcap_cache_replace(const struct pcap_cache *pcache)
102{
103 const struct pcap_cache *p;
104 NTSTATUS status;
105 time_t t = time_mono(NULL);
106
107 status = printer_list_mark_reload();
108 if (!NT_STATUS_IS_OK(status)) {
109 DEBUG(0, ("Failed to mark printer list for reload!\n"));
110 return false;
111 }
112
113 for (p = pcache; p; p = p->next) {
114 status = printer_list_set_printer(talloc_tos(), p->name,
115 p->comment, p->location, t);
116 if (!NT_STATUS_IS_OK(status)) {
117 return false;
118 }
119 }
120
121 status = printer_list_clean_old();
122 if (!NT_STATUS_IS_OK(status)) {
123 DEBUG(0, ("Failed to cleanup printer list!\n"));
124 return false;
125 }
126
127 return true;
128}
129
130void pcap_cache_reload(struct tevent_context *ev,
131 struct messaging_context *msg_ctx,
132 void (*post_cache_fill_fn)(struct tevent_context *,
133 struct messaging_context *))
134{
135 const char *pcap_name = lp_printcapname();
136 bool pcap_reloaded = False;
137 bool post_cache_fill_fn_handled = false;
138 struct pcap_cache *pcache = NULL;
139
140 DEBUG(3, ("reloading printcap cache\n"));
141
142 /* only go looking if no printcap name supplied */
143 if (pcap_name == NULL || *pcap_name == 0) {
144 DEBUG(0, ("No printcap file name configured!\n"));
145 return;
146 }
147
148#ifdef HAVE_CUPS
149 if (strequal(pcap_name, "cups")) {
150 pcap_reloaded = cups_cache_reload(ev, msg_ctx,
151 post_cache_fill_fn);
152 /*
153 * cups_cache_reload() is async and calls post_cache_fill_fn()
154 * on successful completion
155 */
156 post_cache_fill_fn_handled = true;
157 goto done;
158 }
159#endif
160
161#ifdef HAVE_IPRINT
162 if (strequal(pcap_name, "iprint")) {
163 pcap_reloaded = iprint_cache_reload(&pcache);
164 goto done;
165 }
166#endif
167
168#if defined(SYSV) || defined(HPUX)
169 if (strequal(pcap_name, "lpstat")) {
170 pcap_reloaded = sysv_cache_reload(&pcache);
171 goto done;
172 }
173#endif
174
175#ifdef AIX
176 if (strstr_m(pcap_name, "/qconfig") != NULL) {
177 pcap_reloaded = aix_cache_reload(&pcache);
178 goto done;
179 }
180#endif
181
182 pcap_reloaded = std_pcap_cache_reload(pcap_name, &pcache);
183
184/* Fix silly compiler warning about done not being used if none of the above
185 * ifdefs are used */
186#if defined(HAVE_CUPS) || defined(HAVE_IPRINT) || defined(SYSV) || defined(HPUX) || defined(AIX)
187done:
188#endif
189 DEBUG(3, ("reload status: %s\n", (pcap_reloaded) ? "ok" : "error"));
190
191 if ((pcap_reloaded) && (post_cache_fill_fn_handled == false)) {
192 /* cleanup old entries only if the operation was successful,
193 * otherwise keep around the old entries until we can
194 * successfully reload */
195
196 if (!pcap_cache_replace(pcache)) {
197 DEBUG(0, ("Failed to replace printer list!\n"));
198 }
199
200 if (post_cache_fill_fn != NULL) {
201 post_cache_fill_fn(ev, msg_ctx);
202 }
203 }
204 pcap_cache_destroy_specific(&pcache);
205
206 return;
207}
208
209
210bool pcap_printername_ok(const char *printername)
211{
212 NTSTATUS status;
213
214 status = printer_list_get_printer(talloc_tos(), printername, NULL, NULL, 0);
215 return NT_STATUS_IS_OK(status);
216}
217
218/***************************************************************************
219run a function on each printer name in the printcap file.
220***************************************************************************/
221
222void pcap_printer_fn_specific(const struct pcap_cache *pc,
223 void (*fn)(const char *, const char *, const char *, void *),
224 void *pdata)
225{
226 const struct pcap_cache *p;
227
228 for (p = pc; p != NULL; p = p->next)
229 fn(p->name, p->comment, p->location, pdata);
230
231 return;
232}
233
234void pcap_printer_read_fn(void (*fn)(const char *, const char *, const char *, void *), void *pdata)
235{
236 NTSTATUS status;
237
238 status = printer_list_read_run_fn(fn, pdata);
239 if (!NT_STATUS_IS_OK(status)) {
240 DEBUG(3, ("Failed to run fn for all printers!\n"));
241 }
242 return;
243}
Note: See TracBrowser for help on using the repository browser.