s3:libnetapi: Add NetComposeOfflineDomainJoin() to API.
[Samba.git] / source3 / libsmb / libsmb_printjob.c
blobcb567231fcefdc6c9924df908084c660432f6207
1 /*
2 Unix SMB/Netbios implementation.
3 SMB client library implementation
4 Copyright (C) Andrew Tridgell 1998
5 Copyright (C) Richard Sharpe 2000, 2002
6 Copyright (C) John Terpstra 2000
7 Copyright (C) Tom Jansen (Ninja ISD) 2002
8 Copyright (C) Derrell Lipman 2003-2008
9 Copyright (C) Jeremy Allison 2007, 2008
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 3 of the License, or
14 (at your option) any later version.
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with this program. If not, see <http://www.gnu.org/licenses/>.
25 #include "includes.h"
26 #include "libsmb/libsmb.h"
27 #include "libsmbclient.h"
28 #include "libsmb_internal.h"
32 * Open a print file to be written to by other calls
35 SMBCFILE *
36 SMBC_open_print_job_ctx(SMBCCTX *context,
37 const char *fname)
39 char *server = NULL;
40 char *share = NULL;
41 char *user = NULL;
42 char *password = NULL;
43 char *path = NULL;
44 uint16_t port = 0;
45 TALLOC_CTX *frame = talloc_stackframe();
47 if (!context || !context->internal->initialized) {
48 errno = EINVAL;
49 TALLOC_FREE(frame);
50 return NULL;
53 if (!fname) {
54 errno = EINVAL;
55 TALLOC_FREE(frame);
56 return NULL;
59 DEBUG(4, ("SMBC_open_print_job_ctx(%s)\n", fname));
61 if (SMBC_parse_path(frame,
62 context,
63 fname,
64 NULL,
65 &server,
66 &port,
67 &share,
68 &path,
69 &user,
70 &password,
71 NULL)) {
72 errno = EINVAL;
73 TALLOC_FREE(frame);
74 return NULL;
77 /* What if the path is empty, or the file exists? */
79 TALLOC_FREE(frame);
80 return smbc_getFunctionOpen(context)(context, fname, O_WRONLY, 666);
84 * Routine to print a file on a remote server ...
86 * We open the file, which we assume to be on a remote server, and then
87 * copy it to a print file on the share specified by printq.
90 int
91 SMBC_print_file_ctx(SMBCCTX *c_file,
92 const char *fname,
93 SMBCCTX *c_print,
94 const char *printq)
96 SMBCFILE *fid1;
97 SMBCFILE *fid2;
98 smbc_open_fn f_open1;
99 smbc_open_print_job_fn f_open_pj2;
100 int bytes;
101 int saverr;
102 int tot_bytes = 0;
103 char buf[4096];
104 TALLOC_CTX *frame = talloc_stackframe();
106 if (!c_file || !c_file->internal->initialized ||
107 !c_print || !c_print->internal->initialized) {
108 errno = EINVAL;
109 TALLOC_FREE(frame);
110 return -1;
113 if (!fname && !printq) {
114 errno = EINVAL;
115 TALLOC_FREE(frame);
116 return -1;
119 /* Try to open the file for reading ... */
120 f_open1 = smbc_getFunctionOpen(c_file);
121 if (f_open1 == NULL) {
122 errno = EINVAL;
123 TALLOC_FREE(frame);
124 return -1;
127 fid1 = f_open1(c_file, fname, O_RDONLY, 0666);
128 if (fid1 == NULL) {
129 DEBUG(3, ("Error, fname=%s, errno=%i\n", fname, errno));
130 TALLOC_FREE(frame);
131 return -1; /* smbc_open sets errno */
134 /* Now, try to open the printer file for writing */
135 f_open_pj2 = smbc_getFunctionOpenPrintJob(c_print);
136 if (f_open_pj2 == NULL) {
137 errno = EINVAL;
138 TALLOC_FREE(frame);
139 return -1;
142 fid2 = f_open_pj2(c_print, printq);
143 if (fid2 == NULL) {
144 saverr = errno; /* Save errno */
145 smbc_getFunctionClose(c_file)(c_file, fid1);
146 errno = saverr;
147 TALLOC_FREE(frame);
148 return -1;
151 while ((bytes = smbc_getFunctionRead(c_file)(c_file, fid1,
152 buf, sizeof(buf))) > 0) {
153 tot_bytes += bytes;
155 if ((smbc_getFunctionWrite(c_print)(c_print, fid2,
156 buf, bytes)) < 0) {
157 saverr = errno;
158 smbc_getFunctionClose(c_file)(c_file, fid1);
159 smbc_getFunctionClose(c_print)(c_print, fid2);
160 errno = saverr;
164 saverr = errno;
166 smbc_getFunctionClose(c_file)(c_file, fid1);
167 smbc_getFunctionClose(c_print)(c_print, fid2);
169 if (bytes < 0) {
170 errno = saverr;
171 TALLOC_FREE(frame);
172 return -1;
175 TALLOC_FREE(frame);
176 return tot_bytes;
180 * Routine to list print jobs on a printer share ...
184 SMBC_list_print_jobs_ctx(SMBCCTX *context,
185 const char *fname,
186 smbc_list_print_job_fn fn)
188 SMBCSRV *srv = NULL;
189 char *server = NULL;
190 char *share = NULL;
191 char *user = NULL;
192 char *password = NULL;
193 char *workgroup = NULL;
194 char *path = NULL;
195 uint16_t port = 0;
196 TALLOC_CTX *frame = talloc_stackframe();
197 NTSTATUS status;
199 if (!context || !context->internal->initialized) {
200 errno = EINVAL;
201 TALLOC_FREE(frame);
202 return -1;
205 if (!fname) {
206 errno = EINVAL;
207 TALLOC_FREE(frame);
208 return -1;
211 DEBUG(4, ("smbc_list_print_jobs(%s)\n", fname));
213 if (SMBC_parse_path(frame,
214 context,
215 fname,
216 &workgroup,
217 &server,
218 &port,
219 &share,
220 &path,
221 &user,
222 &password,
223 NULL)) {
224 errno = EINVAL;
225 TALLOC_FREE(frame);
226 return -1;
229 if (!user || user[0] == (char)0) {
230 user = talloc_strdup(frame, smbc_getUser(context));
231 if (!user) {
232 errno = ENOMEM;
233 TALLOC_FREE(frame);
234 return -1;
238 srv = SMBC_server(frame, context, True,
239 server, port, share, &workgroup, &user, &password);
241 if (!srv) {
242 TALLOC_FREE(frame);
243 return -1; /* errno set by SMBC_server */
246 status = cli_print_queue(srv->cli,
247 (void (*)(struct print_job_info *))fn);
248 if (!NT_STATUS_IS_OK(status)) {
249 TALLOC_FREE(frame);
250 errno = cli_status_to_errno(status);
251 return -1;
254 TALLOC_FREE(frame);
255 return 0;
259 * Delete a print job from a remote printer share
263 SMBC_unlink_print_job_ctx(SMBCCTX *context,
264 const char *fname,
265 int id)
267 SMBCSRV *srv = NULL;
268 char *server = NULL;
269 char *share = NULL;
270 char *user = NULL;
271 char *password = NULL;
272 char *workgroup = NULL;
273 char *path = NULL;
274 int err;
275 uint16_t port = 0;
276 TALLOC_CTX *frame = talloc_stackframe();
278 if (!context || !context->internal->initialized) {
279 errno = EINVAL;
280 TALLOC_FREE(frame);
281 return -1;
284 if (!fname) {
285 errno = EINVAL;
286 TALLOC_FREE(frame);
287 return -1;
290 DEBUG(4, ("smbc_unlink_print_job(%s)\n", fname));
292 if (SMBC_parse_path(frame,
293 context,
294 fname,
295 &workgroup,
296 &server,
297 &port,
298 &share,
299 &path,
300 &user,
301 &password,
302 NULL)) {
303 errno = EINVAL;
304 TALLOC_FREE(frame);
305 return -1;
308 if (!user || user[0] == (char)0) {
309 user = talloc_strdup(frame, smbc_getUser(context));
310 if (!user) {
311 errno = ENOMEM;
312 TALLOC_FREE(frame);
313 return -1;
317 srv = SMBC_server(frame, context, True,
318 server, port, share, &workgroup, &user, &password);
320 if (!srv) {
321 TALLOC_FREE(frame);
322 return -1; /* errno set by SMBC_server */
325 if ((err = cli_printjob_del(srv->cli, id)) != 0) {
326 if (err < 0)
327 errno = SMBC_errno(context, srv->cli);
328 else if (err == ERRnosuchprintjob)
329 errno = EINVAL;
330 TALLOC_FREE(frame);
331 return -1;
334 TALLOC_FREE(frame);
335 return 0;