2 * Support code for the Common UNIX Printing System ("CUPS")
4 * Copyright 1999-2003 by Michael R Sweet.
5 * Copyright 2008 Jeremy Allison.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, see <http://www.gnu.org/licenses/>.
22 * JRA. Converted to utf8 pull/push.
29 #include <cups/cups.h>
30 #include <cups/language.h>
32 static SIG_ATOMIC_T gotalarm
;
34 /***************************************************************
35 Signal function to tell us we timed out.
36 ****************************************************************/
38 static void gotalarm_sig(void)
43 extern userdom_struct current_user_info
;
46 * 'cups_passwd_cb()' - The CUPS password callback...
49 static const char * /* O - Password or NULL */
50 cups_passwd_cb(const char *prompt
) /* I - Prompt */
53 * Always return NULL to indicate that no password is available...
59 static http_t
*cups_connect(TALLOC_CTX
*frame
)
62 char *server
= NULL
, *p
= NULL
;
64 int timeout
= lp_cups_connection_timeout();
67 if (lp_cups_server() != NULL
&& strlen(lp_cups_server()) > 0) {
68 if (!push_utf8_talloc(frame
, &server
, lp_cups_server(), &size
)) {
72 server
= talloc_strdup(frame
,cupsServer());
78 p
= strchr(server
, ':');
86 DEBUG(10, ("connecting to cups server %s:%d\n",
92 CatchSignal(SIGALRM
, SIGNAL_CAST gotalarm_sig
);
96 http
= httpConnect(server
, port
);
98 CatchSignal(SIGALRM
, SIGNAL_CAST SIG_IGN
);
102 DEBUG(0,("Unable to connect to CUPS server %s:%d - %s\n",
103 server
, port
, strerror(errno
)));
109 static void send_pcap_info(const char *name
, const char *info
, void *pd
)
112 size_t namelen
= name
? strlen(name
)+1 : 0;
113 size_t infolen
= info
? strlen(info
)+1 : 0;
115 DEBUG(11,("send_pcap_info: writing namelen %u\n", (unsigned int)namelen
));
116 if (sys_write(fd
, &namelen
, sizeof(namelen
)) != sizeof(namelen
)) {
117 DEBUG(10,("send_pcap_info: namelen write failed %s\n",
121 DEBUG(11,("send_pcap_info: writing infolen %u\n", (unsigned int)infolen
));
122 if (sys_write(fd
, &infolen
, sizeof(infolen
)) != sizeof(infolen
)) {
123 DEBUG(10,("send_pcap_info: infolen write failed %s\n",
128 DEBUG(11,("send_pcap_info: writing name %s\n", name
));
129 if (sys_write(fd
, name
, namelen
) != namelen
) {
130 DEBUG(10,("send_pcap_info: name write failed %s\n",
136 DEBUG(11,("send_pcap_info: writing info %s\n", info
));
137 if (sys_write(fd
, info
, infolen
) != infolen
) {
138 DEBUG(10,("send_pcap_info: info write failed %s\n",
145 static bool cups_cache_reload_async(int fd
)
147 TALLOC_CTX
*frame
= talloc_stackframe();
148 struct pcap_cache
*tmp_pcap_cache
= NULL
;
149 http_t
*http
= NULL
; /* HTTP connection to server */
150 ipp_t
*request
= NULL
, /* IPP Request */
151 *response
= NULL
; /* IPP Response */
152 ipp_attribute_t
*attr
; /* Current attribute */
153 cups_lang_t
*language
= NULL
; /* Default language */
154 char *name
, /* printer-name attribute */
155 *info
; /* printer-info attribute */
156 static const char *requested
[] =/* Requested attributes */
164 DEBUG(5, ("reloading cups printcap cache\n"));
167 * Make sure we don't ask for passwords...
170 cupsSetPasswordCB(cups_passwd_cb
);
173 * Try to connect to the server...
176 if ((http
= cups_connect(frame
)) == NULL
) {
181 * Build a CUPS_GET_PRINTERS request, which requires the following
185 * attributes-natural-language
186 * requested-attributes
191 request
->request
.op
.operation_id
= CUPS_GET_PRINTERS
;
192 request
->request
.op
.request_id
= 1;
194 language
= cupsLangDefault();
196 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_CHARSET
,
197 "attributes-charset", NULL
, "utf-8");
199 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_LANGUAGE
,
200 "attributes-natural-language", NULL
, language
->language
);
202 ippAddStrings(request
, IPP_TAG_OPERATION
, IPP_TAG_NAME
,
203 "requested-attributes",
204 (sizeof(requested
) / sizeof(requested
[0])),
208 * Do the request and get back a response...
211 if ((response
= cupsDoRequest(http
, request
, "/")) == NULL
) {
212 DEBUG(0,("Unable to get printer list - %s\n",
213 ippErrorString(cupsLastError())));
217 for (attr
= response
->attrs
; attr
!= NULL
;) {
219 * Skip leading attributes until we hit a printer...
222 while (attr
!= NULL
&& attr
->group_tag
!= IPP_TAG_PRINTER
)
229 * Pull the needed attributes from this printer...
235 while (attr
!= NULL
&& attr
->group_tag
== IPP_TAG_PRINTER
) {
236 if (strcmp(attr
->name
, "printer-name") == 0 &&
237 attr
->value_tag
== IPP_TAG_NAME
) {
238 if (!pull_utf8_talloc(frame
,
240 attr
->values
[0].string
.text
,
246 if (strcmp(attr
->name
, "printer-info") == 0 &&
247 attr
->value_tag
== IPP_TAG_TEXT
) {
248 if (!pull_utf8_talloc(frame
,
250 attr
->values
[0].string
.text
,
260 * See if we have everything needed...
266 if (!pcap_cache_add_specific(&tmp_pcap_cache
, name
, info
)) {
275 * Build a CUPS_GET_CLASSES request, which requires the following
279 * attributes-natural-language
280 * requested-attributes
285 request
->request
.op
.operation_id
= CUPS_GET_CLASSES
;
286 request
->request
.op
.request_id
= 1;
288 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_CHARSET
,
289 "attributes-charset", NULL
, "utf-8");
291 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_LANGUAGE
,
292 "attributes-natural-language", NULL
, language
->language
);
294 ippAddStrings(request
, IPP_TAG_OPERATION
, IPP_TAG_NAME
,
295 "requested-attributes",
296 (sizeof(requested
) / sizeof(requested
[0])),
300 * Do the request and get back a response...
303 if ((response
= cupsDoRequest(http
, request
, "/")) == NULL
) {
304 DEBUG(0,("Unable to get printer list - %s\n",
305 ippErrorString(cupsLastError())));
309 for (attr
= response
->attrs
; attr
!= NULL
;) {
311 * Skip leading attributes until we hit a printer...
314 while (attr
!= NULL
&& attr
->group_tag
!= IPP_TAG_PRINTER
)
321 * Pull the needed attributes from this printer...
327 while (attr
!= NULL
&& attr
->group_tag
== IPP_TAG_PRINTER
) {
328 if (strcmp(attr
->name
, "printer-name") == 0 &&
329 attr
->value_tag
== IPP_TAG_NAME
) {
330 if (!pull_utf8_talloc(frame
,
332 attr
->values
[0].string
.text
,
338 if (strcmp(attr
->name
, "printer-info") == 0 &&
339 attr
->value_tag
== IPP_TAG_TEXT
) {
340 if (!pull_utf8_talloc(frame
,
342 attr
->values
[0].string
.text
,
352 * See if we have everything needed...
358 if (!pcap_cache_add_specific(&tmp_pcap_cache
, name
, info
)) {
370 cupsLangFree(language
);
375 /* Send all the entries up the pipe. */
376 if (tmp_pcap_cache
) {
377 pcap_printer_fn_specific(tmp_pcap_cache
,
381 pcap_cache_destroy_specific(&tmp_pcap_cache
);
387 static struct pcap_cache
*local_pcap_copy
;
388 struct fd_event
*cache_fd_event
;
390 static bool cups_pcap_load_async(int *pfd
)
397 if (cache_fd_event
) {
398 DEBUG(3,("cups_pcap_load_async: already waiting for "
399 "a refresh event\n" ));
403 DEBUG(5,("cups_pcap_load_async: asynchronously loading cups printers\n"));
405 if (pipe(fds
) == -1) {
410 if (pid
== (pid_t
)-1) {
411 DEBUG(10,("cups_pcap_load_async: fork failed %s\n",
419 DEBUG(10,("cups_pcap_load_async: child pid = %u\n",
420 (unsigned int)pid
));
429 close_all_print_db();
431 if (!NT_STATUS_IS_OK(reinit_after_fork(smbd_messaging_context(),
432 smbd_event_context(), true))) {
433 DEBUG(0,("cups_pcap_load_async: reinit_after_fork() failed\n"));
434 smb_panic("cups_pcap_load_async: reinit_after_fork() failed");
438 cups_cache_reload_async(fds
[1]);
443 struct cups_async_cb_args
{
445 void (*post_cache_fill_fn
)(void);
448 static void cups_async_callback(struct event_context
*event_ctx
,
449 struct fd_event
*event
,
453 TALLOC_CTX
*frame
= talloc_stackframe();
454 struct cups_async_cb_args
*cb_args
= (struct cups_async_cb_args
*)p
;
455 int fd
= cb_args
->pipe_fd
;
456 struct pcap_cache
*tmp_pcap_cache
= NULL
;
459 DEBUG(5,("cups_async_callback: callback received for printer data. "
463 char *name
= NULL
, *info
= NULL
;
464 size_t namelen
= 0, infolen
= 0;
467 ret
= sys_read(fd
, &namelen
, sizeof(namelen
));
472 if (ret
!= sizeof(namelen
)) {
473 DEBUG(10,("cups_async_callback: namelen read failed %d %s\n",
474 errno
, strerror(errno
)));
479 DEBUG(11,("cups_async_callback: read namelen %u\n",
480 (unsigned int)namelen
));
482 ret
= sys_read(fd
, &infolen
, sizeof(infolen
));
487 if (ret
!= sizeof(infolen
)) {
488 DEBUG(10,("cups_async_callback: infolen read failed %s\n",
494 DEBUG(11,("cups_async_callback: read infolen %u\n",
495 (unsigned int)infolen
));
498 name
= TALLOC_ARRAY(frame
, char, namelen
);
503 ret
= sys_read(fd
, name
, namelen
);
508 if (ret
!= namelen
) {
509 DEBUG(10,("cups_async_callback: name read failed %s\n",
514 DEBUG(11,("cups_async_callback: read name %s\n",
520 info
= TALLOC_ARRAY(frame
, char, infolen
);
525 ret
= sys_read(fd
, info
, infolen
);
530 if (ret
!= infolen
) {
531 DEBUG(10,("cups_async_callback: info read failed %s\n",
536 DEBUG(11,("cups_async_callback: read info %s\n",
542 /* Add to our local pcap cache. */
543 ret_ok
= pcap_cache_add_specific(&tmp_pcap_cache
, name
, info
);
547 DEBUG(0, ("failed to add to tmp pcap cache\n"));
554 DEBUG(0,("failed to read a new printer list\n"));
555 pcap_cache_destroy_specific(&tmp_pcap_cache
);
557 /* We got a possibly empty namelist, replace our local cache. */
558 pcap_cache_destroy_specific(&local_pcap_copy
);
559 local_pcap_copy
= tmp_pcap_cache
;
561 /* And the systemwide pcap cache. */
562 pcap_cache_replace(local_pcap_copy
);
564 /* Caller may have requested post cache fill callback */
565 if (cb_args
->post_cache_fill_fn
) {
566 cb_args
->post_cache_fill_fn();
570 TALLOC_FREE(cb_args
);
571 TALLOC_FREE(cache_fd_event
);
574 bool cups_cache_reload(void (*post_cache_fill_fn
)(void))
576 struct cups_async_cb_args
*cb_args
;
579 cb_args
= TALLOC_P(NULL
, struct cups_async_cb_args
);
583 cb_args
->post_cache_fill_fn
= post_cache_fill_fn
;
584 p_pipe_fd
= &cb_args
->pipe_fd
;
587 /* Set up an async refresh. */
588 if (!cups_pcap_load_async(p_pipe_fd
)) {
589 talloc_free(cb_args
);
592 if (!local_pcap_copy
) {
593 /* We have no local cache, wait directly for
594 * async refresh to complete.
596 DEBUG(10,("cups_cache_reload: sync read on fd %d\n",
599 cups_async_callback(smbd_event_context(),
603 if (!local_pcap_copy
) {
607 /* Replace the system cache with our
609 pcap_cache_replace(local_pcap_copy
);
611 DEBUG(10,("cups_cache_reload: async read on fd %d\n",
614 /* Trigger an event when the pipe can be read. */
615 cache_fd_event
= event_add_fd(smbd_event_context(),
620 if (!cache_fd_event
) {
622 talloc_free(cb_args
);
630 * 'cups_job_delete()' - Delete a job.
633 static int cups_job_delete(const char *sharename
, const char *lprm_command
, struct printjob
*pjob
)
635 TALLOC_CTX
*frame
= talloc_stackframe();
636 int ret
= 1; /* Return value */
637 http_t
*http
= NULL
; /* HTTP connection to server */
638 ipp_t
*request
= NULL
, /* IPP Request */
639 *response
= NULL
; /* IPP Response */
640 cups_lang_t
*language
= NULL
; /* Default language */
642 char uri
[HTTP_MAX_URI
]; /* printer-uri attribute */
645 DEBUG(5,("cups_job_delete(%s, %p (%d))\n", sharename
, pjob
, pjob
->sysjob
));
648 * Make sure we don't ask for passwords...
651 cupsSetPasswordCB(cups_passwd_cb
);
654 * Try to connect to the server...
657 if ((http
= cups_connect(frame
)) == NULL
) {
662 * Build an IPP_CANCEL_JOB request, which requires the following
666 * attributes-natural-language
668 * requesting-user-name
673 request
->request
.op
.operation_id
= IPP_CANCEL_JOB
;
674 request
->request
.op
.request_id
= 1;
676 language
= cupsLangDefault();
678 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_CHARSET
,
679 "attributes-charset", NULL
, "utf-8");
681 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_LANGUAGE
,
682 "attributes-natural-language", NULL
, language
->language
);
684 slprintf(uri
, sizeof(uri
) - 1, "ipp://localhost/jobs/%d", pjob
->sysjob
);
686 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_URI
, "job-uri", NULL
, uri
);
688 if (!push_utf8_talloc(frame
, &user
, pjob
->user
, &size
)) {
692 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_NAME
, "requesting-user-name",
696 * Do the request and get back a response...
699 if ((response
= cupsDoRequest(http
, request
, "/jobs")) != NULL
) {
700 if (response
->request
.status
.status_code
>= IPP_OK_CONFLICT
) {
701 DEBUG(0,("Unable to cancel job %d - %s\n", pjob
->sysjob
,
702 ippErrorString(cupsLastError())));
707 DEBUG(0,("Unable to cancel job %d - %s\n", pjob
->sysjob
,
708 ippErrorString(cupsLastError())));
716 cupsLangFree(language
);
727 * 'cups_job_pause()' - Pause a job.
730 static int cups_job_pause(int snum
, struct printjob
*pjob
)
732 TALLOC_CTX
*frame
= talloc_stackframe();
733 int ret
= 1; /* Return value */
734 http_t
*http
= NULL
; /* HTTP connection to server */
735 ipp_t
*request
= NULL
, /* IPP Request */
736 *response
= NULL
; /* IPP Response */
737 cups_lang_t
*language
= NULL
; /* Default language */
739 char uri
[HTTP_MAX_URI
]; /* printer-uri attribute */
742 DEBUG(5,("cups_job_pause(%d, %p (%d))\n", snum
, pjob
, pjob
->sysjob
));
745 * Make sure we don't ask for passwords...
748 cupsSetPasswordCB(cups_passwd_cb
);
751 * Try to connect to the server...
754 if ((http
= cups_connect(frame
)) == NULL
) {
759 * Build an IPP_HOLD_JOB request, which requires the following
763 * attributes-natural-language
765 * requesting-user-name
770 request
->request
.op
.operation_id
= IPP_HOLD_JOB
;
771 request
->request
.op
.request_id
= 1;
773 language
= cupsLangDefault();
775 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_CHARSET
,
776 "attributes-charset", NULL
, "utf-8");
778 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_LANGUAGE
,
779 "attributes-natural-language", NULL
, language
->language
);
781 slprintf(uri
, sizeof(uri
) - 1, "ipp://localhost/jobs/%d", pjob
->sysjob
);
783 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_URI
, "job-uri", NULL
, uri
);
785 if (!push_utf8_talloc(frame
, &user
, pjob
->user
, &size
)) {
788 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_NAME
, "requesting-user-name",
792 * Do the request and get back a response...
795 if ((response
= cupsDoRequest(http
, request
, "/jobs")) != NULL
) {
796 if (response
->request
.status
.status_code
>= IPP_OK_CONFLICT
) {
797 DEBUG(0,("Unable to hold job %d - %s\n", pjob
->sysjob
,
798 ippErrorString(cupsLastError())));
803 DEBUG(0,("Unable to hold job %d - %s\n", pjob
->sysjob
,
804 ippErrorString(cupsLastError())));
812 cupsLangFree(language
);
823 * 'cups_job_resume()' - Resume a paused job.
826 static int cups_job_resume(int snum
, struct printjob
*pjob
)
828 TALLOC_CTX
*frame
= talloc_stackframe();
829 int ret
= 1; /* Return value */
830 http_t
*http
= NULL
; /* HTTP connection to server */
831 ipp_t
*request
= NULL
, /* IPP Request */
832 *response
= NULL
; /* IPP Response */
833 cups_lang_t
*language
= NULL
; /* Default language */
835 char uri
[HTTP_MAX_URI
]; /* printer-uri attribute */
838 DEBUG(5,("cups_job_resume(%d, %p (%d))\n", snum
, pjob
, pjob
->sysjob
));
841 * Make sure we don't ask for passwords...
844 cupsSetPasswordCB(cups_passwd_cb
);
847 * Try to connect to the server...
850 if ((http
= cups_connect(frame
)) == NULL
) {
855 * Build an IPP_RELEASE_JOB request, which requires the following
859 * attributes-natural-language
861 * requesting-user-name
866 request
->request
.op
.operation_id
= IPP_RELEASE_JOB
;
867 request
->request
.op
.request_id
= 1;
869 language
= cupsLangDefault();
871 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_CHARSET
,
872 "attributes-charset", NULL
, "utf-8");
874 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_LANGUAGE
,
875 "attributes-natural-language", NULL
, language
->language
);
877 slprintf(uri
, sizeof(uri
) - 1, "ipp://localhost/jobs/%d", pjob
->sysjob
);
879 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_URI
, "job-uri", NULL
, uri
);
881 if (!push_utf8_talloc(frame
, &user
, pjob
->user
, &size
)) {
884 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_NAME
, "requesting-user-name",
888 * Do the request and get back a response...
891 if ((response
= cupsDoRequest(http
, request
, "/jobs")) != NULL
) {
892 if (response
->request
.status
.status_code
>= IPP_OK_CONFLICT
) {
893 DEBUG(0,("Unable to release job %d - %s\n", pjob
->sysjob
,
894 ippErrorString(cupsLastError())));
899 DEBUG(0,("Unable to release job %d - %s\n", pjob
->sysjob
,
900 ippErrorString(cupsLastError())));
908 cupsLangFree(language
);
919 * 'cups_job_submit()' - Submit a job for printing.
922 static int cups_job_submit(int snum
, struct printjob
*pjob
)
924 TALLOC_CTX
*frame
= talloc_stackframe();
925 int ret
= 1; /* Return value */
926 http_t
*http
= NULL
; /* HTTP connection to server */
927 ipp_t
*request
= NULL
, /* IPP Request */
928 *response
= NULL
; /* IPP Response */
929 ipp_attribute_t
*attr_job_id
= NULL
; /* IPP Attribute "job-id" */
930 cups_lang_t
*language
= NULL
; /* Default language */
931 char uri
[HTTP_MAX_URI
]; /* printer-uri attribute */
932 const char *clientname
= NULL
; /* hostname of client for job-originating-host attribute */
933 char *new_jobname
= NULL
;
935 cups_option_t
*options
= NULL
;
936 char *printername
= NULL
;
938 char *jobname
= NULL
;
939 char *cupsoptions
= NULL
;
940 char *filename
= NULL
;
942 uint32_t jobid
= (uint32_t)-1;
943 char addr
[INET6_ADDRSTRLEN
];
945 DEBUG(5,("cups_job_submit(%d, %p)\n", snum
, pjob
));
948 * Make sure we don't ask for passwords...
951 cupsSetPasswordCB(cups_passwd_cb
);
954 * Try to connect to the server...
957 if ((http
= cups_connect(frame
)) == NULL
) {
962 * Build an IPP_PRINT_JOB request, which requires the following
966 * attributes-natural-language
968 * requesting-user-name
974 request
->request
.op
.operation_id
= IPP_PRINT_JOB
;
975 request
->request
.op
.request_id
= 1;
977 language
= cupsLangDefault();
979 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_CHARSET
,
980 "attributes-charset", NULL
, "utf-8");
982 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_LANGUAGE
,
983 "attributes-natural-language", NULL
, language
->language
);
985 if (!push_utf8_talloc(frame
, &printername
, PRINTERNAME(snum
), &size
)) {
988 slprintf(uri
, sizeof(uri
) - 1, "ipp://localhost/printers/%s",
991 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_URI
,
992 "printer-uri", NULL
, uri
);
994 if (!push_utf8_talloc(frame
, &user
, pjob
->user
, &size
)) {
997 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_NAME
, "requesting-user-name",
1000 clientname
= client_name(get_client_fd());
1001 if (strcmp(clientname
, "UNKNOWN") == 0) {
1002 clientname
= client_addr(get_client_fd(),addr
,sizeof(addr
));
1005 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_NAME
,
1006 "job-originating-host-name", NULL
,
1009 /* Get the jobid from the filename. */
1010 jobid
= print_parse_jobid(pjob
->filename
);
1011 if (jobid
== (uint32_t)-1) {
1012 DEBUG(0,("cups_job_submit: failed to parse jobid from name %s\n",
1017 if (!push_utf8_talloc(frame
, &jobname
, pjob
->jobname
, &size
)) {
1020 new_jobname
= talloc_asprintf(frame
,
1021 "%s%.8u %s", PRINT_SPOOL_PREFIX
,
1022 (unsigned int)jobid
,
1024 if (new_jobname
== NULL
) {
1028 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_NAME
, "job-name", NULL
,
1032 * add any options defined in smb.conf
1035 if (!push_utf8_talloc(frame
, &cupsoptions
, lp_cups_options(snum
), &size
)) {
1040 num_options
= cupsParseOptions(cupsoptions
, num_options
, &options
);
1043 cupsEncodeOptions(request
, num_options
, options
);
1046 * Do the request and get back a response...
1049 slprintf(uri
, sizeof(uri
) - 1, "/printers/%s", printername
);
1051 if (!push_utf8_talloc(frame
, &filename
, pjob
->filename
, &size
)) {
1054 if ((response
= cupsDoFileRequest(http
, request
, uri
, pjob
->filename
)) != NULL
) {
1055 if (response
->request
.status
.status_code
>= IPP_OK_CONFLICT
) {
1056 DEBUG(0,("Unable to print file to %s - %s\n", PRINTERNAME(snum
),
1057 ippErrorString(cupsLastError())));
1060 attr_job_id
= ippFindAttribute(response
, "job-id", IPP_TAG_INTEGER
);
1062 pjob
->sysjob
= attr_job_id
->values
[0].integer
;
1063 DEBUG(5,("cups_job_submit: job-id %d\n", pjob
->sysjob
));
1065 DEBUG(0,("Missing job-id attribute in IPP response"));
1069 DEBUG(0,("Unable to print file to `%s' - %s\n", PRINTERNAME(snum
),
1070 ippErrorString(cupsLastError())));
1074 unlink(pjob
->filename
);
1075 /* else print_job_end will do it for us */
1079 ippDelete(response
);
1082 cupsLangFree(language
);
1093 * 'cups_queue_get()' - Get all the jobs in the print queue.
1096 static int cups_queue_get(const char *sharename
,
1097 enum printing_types printing_type
,
1099 print_queue_struct
**q
,
1100 print_status_struct
*status
)
1102 TALLOC_CTX
*frame
= talloc_stackframe();
1103 char *printername
= NULL
;
1104 http_t
*http
= NULL
; /* HTTP connection to server */
1105 ipp_t
*request
= NULL
, /* IPP Request */
1106 *response
= NULL
; /* IPP Response */
1107 ipp_attribute_t
*attr
= NULL
; /* Current attribute */
1108 cups_lang_t
*language
= NULL
; /* Default language */
1109 char uri
[HTTP_MAX_URI
]; /* printer-uri attribute */
1110 int qcount
= 0, /* Number of active queue entries */
1111 qalloc
= 0; /* Number of queue entries allocated */
1112 print_queue_struct
*queue
= NULL
, /* Queue entries */
1113 *temp
; /* Temporary pointer for queue */
1114 char *user_name
= NULL
, /* job-originating-user-name attribute */
1115 *job_name
= NULL
; /* job-name attribute */
1116 int job_id
; /* job-id attribute */
1117 int job_k_octets
; /* job-k-octets attribute */
1118 time_t job_time
; /* time-at-creation attribute */
1119 ipp_jstate_t job_status
; /* job-status attribute */
1120 int job_priority
; /* job-priority attribute */
1122 static const char *jattrs
[] = /* Requested job attributes */
1127 "job-originating-user-name",
1132 static const char *pattrs
[] = /* Requested printer attributes */
1135 "printer-state-message"
1140 /* HACK ALERT!!! The problem with support the 'printer name'
1141 option is that we key the tdb off the sharename. So we will
1142 overload the lpq_command string to pass in the printername
1143 (which is basically what we do for non-cups printers ... using
1144 the lpq_command to get the queue listing). */
1146 if (!push_utf8_talloc(frame
, &printername
, lpq_command
, &size
)) {
1149 DEBUG(5,("cups_queue_get(%s, %p, %p)\n", lpq_command
, q
, status
));
1152 * Make sure we don't ask for passwords...
1155 cupsSetPasswordCB(cups_passwd_cb
);
1158 * Try to connect to the server...
1161 if ((http
= cups_connect(frame
)) == NULL
) {
1166 * Generate the printer URI...
1169 slprintf(uri
, sizeof(uri
) - 1, "ipp://localhost/printers/%s", printername
);
1172 * Build an IPP_GET_JOBS request, which requires the following
1175 * attributes-charset
1176 * attributes-natural-language
1177 * requested-attributes
1183 request
->request
.op
.operation_id
= IPP_GET_JOBS
;
1184 request
->request
.op
.request_id
= 1;
1186 language
= cupsLangDefault();
1188 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_CHARSET
,
1189 "attributes-charset", NULL
, "utf-8");
1191 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_LANGUAGE
,
1192 "attributes-natural-language", NULL
, language
->language
);
1194 ippAddStrings(request
, IPP_TAG_OPERATION
, IPP_TAG_NAME
,
1195 "requested-attributes",
1196 (sizeof(jattrs
) / sizeof(jattrs
[0])),
1199 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_URI
,
1200 "printer-uri", NULL
, uri
);
1203 * Do the request and get back a response...
1206 if ((response
= cupsDoRequest(http
, request
, "/")) == NULL
) {
1207 DEBUG(0,("Unable to get jobs for %s - %s\n", uri
,
1208 ippErrorString(cupsLastError())));
1212 if (response
->request
.status
.status_code
>= IPP_OK_CONFLICT
) {
1213 DEBUG(0,("Unable to get jobs for %s - %s\n", uri
,
1214 ippErrorString(response
->request
.status
.status_code
)));
1219 * Process the jobs...
1226 for (attr
= response
->attrs
; attr
!= NULL
; attr
= attr
->next
) {
1228 * Skip leading attributes until we hit a job...
1231 while (attr
!= NULL
&& attr
->group_tag
!= IPP_TAG_JOB
)
1238 * Allocate memory as needed...
1240 if (qcount
>= qalloc
) {
1243 queue
= SMB_REALLOC_ARRAY(queue
, print_queue_struct
, qalloc
);
1245 if (queue
== NULL
) {
1246 DEBUG(0,("cups_queue_get: Not enough memory!"));
1252 temp
= queue
+ qcount
;
1253 memset(temp
, 0, sizeof(print_queue_struct
));
1256 * Pull the needed attributes from this job...
1261 job_status
= IPP_JOB_PENDING
;
1267 while (attr
!= NULL
&& attr
->group_tag
== IPP_TAG_JOB
) {
1268 if (attr
->name
== NULL
) {
1273 if (strcmp(attr
->name
, "job-id") == 0 &&
1274 attr
->value_tag
== IPP_TAG_INTEGER
)
1275 job_id
= attr
->values
[0].integer
;
1277 if (strcmp(attr
->name
, "job-k-octets") == 0 &&
1278 attr
->value_tag
== IPP_TAG_INTEGER
)
1279 job_k_octets
= attr
->values
[0].integer
;
1281 if (strcmp(attr
->name
, "job-priority") == 0 &&
1282 attr
->value_tag
== IPP_TAG_INTEGER
)
1283 job_priority
= attr
->values
[0].integer
;
1285 if (strcmp(attr
->name
, "job-state") == 0 &&
1286 attr
->value_tag
== IPP_TAG_ENUM
)
1287 job_status
= (ipp_jstate_t
)(attr
->values
[0].integer
);
1289 if (strcmp(attr
->name
, "time-at-creation") == 0 &&
1290 attr
->value_tag
== IPP_TAG_INTEGER
)
1291 job_time
= attr
->values
[0].integer
;
1293 if (strcmp(attr
->name
, "job-name") == 0 &&
1294 attr
->value_tag
== IPP_TAG_NAME
) {
1295 if (!pull_utf8_talloc(frame
,
1297 attr
->values
[0].string
.text
,
1303 if (strcmp(attr
->name
, "job-originating-user-name") == 0 &&
1304 attr
->value_tag
== IPP_TAG_NAME
) {
1305 if (!pull_utf8_talloc(frame
,
1307 attr
->values
[0].string
.text
,
1317 * See if we have everything needed...
1320 if (user_name
== NULL
|| job_name
== NULL
|| job_id
== 0) {
1328 temp
->size
= job_k_octets
* 1024;
1329 temp
->status
= job_status
== IPP_JOB_PENDING
? LPQ_QUEUED
:
1330 job_status
== IPP_JOB_STOPPED
? LPQ_PAUSED
:
1331 job_status
== IPP_JOB_HELD
? LPQ_PAUSED
:
1333 temp
->priority
= job_priority
;
1334 temp
->time
= job_time
;
1335 strlcpy(temp
->fs_user
, user_name
, sizeof(temp
->fs_user
));
1336 strlcpy(temp
->fs_file
, job_name
, sizeof(temp
->fs_file
));
1344 ippDelete(response
);
1348 * Build an IPP_GET_PRINTER_ATTRIBUTES request, which requires the
1349 * following attributes:
1351 * attributes-charset
1352 * attributes-natural-language
1353 * requested-attributes
1359 request
->request
.op
.operation_id
= IPP_GET_PRINTER_ATTRIBUTES
;
1360 request
->request
.op
.request_id
= 1;
1362 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_CHARSET
,
1363 "attributes-charset", NULL
, "utf-8");
1365 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_LANGUAGE
,
1366 "attributes-natural-language", NULL
, language
->language
);
1368 ippAddStrings(request
, IPP_TAG_OPERATION
, IPP_TAG_NAME
,
1369 "requested-attributes",
1370 (sizeof(pattrs
) / sizeof(pattrs
[0])),
1373 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_URI
,
1374 "printer-uri", NULL
, uri
);
1377 * Do the request and get back a response...
1380 if ((response
= cupsDoRequest(http
, request
, "/")) == NULL
) {
1381 DEBUG(0,("Unable to get printer status for %s - %s\n", printername
,
1382 ippErrorString(cupsLastError())));
1387 if (response
->request
.status
.status_code
>= IPP_OK_CONFLICT
) {
1388 DEBUG(0,("Unable to get printer status for %s - %s\n", printername
,
1389 ippErrorString(response
->request
.status
.status_code
)));
1395 * Get the current printer status and convert it to the SAMBA values.
1398 if ((attr
= ippFindAttribute(response
, "printer-state", IPP_TAG_ENUM
)) != NULL
) {
1399 if (attr
->values
[0].integer
== IPP_PRINTER_STOPPED
)
1400 status
->status
= LPSTAT_STOPPED
;
1402 status
->status
= LPSTAT_OK
;
1405 if ((attr
= ippFindAttribute(response
, "printer-state-message",
1406 IPP_TAG_TEXT
)) != NULL
) {
1408 if (!pull_utf8_talloc(frame
, &msg
,
1409 attr
->values
[0].string
.text
,
1415 fstrcpy(status
->message
, msg
);
1419 * Return the job queue...
1426 ippDelete(response
);
1429 cupsLangFree(language
);
1440 * 'cups_queue_pause()' - Pause a print queue.
1443 static int cups_queue_pause(int snum
)
1445 TALLOC_CTX
*frame
= talloc_stackframe();
1446 int ret
= 1; /* Return value */
1447 http_t
*http
= NULL
; /* HTTP connection to server */
1448 ipp_t
*request
= NULL
, /* IPP Request */
1449 *response
= NULL
; /* IPP Response */
1450 cups_lang_t
*language
= NULL
; /* Default language */
1451 char *printername
= NULL
;
1452 char *username
= NULL
;
1453 char uri
[HTTP_MAX_URI
]; /* printer-uri attribute */
1456 DEBUG(5,("cups_queue_pause(%d)\n", snum
));
1459 * Make sure we don't ask for passwords...
1462 cupsSetPasswordCB(cups_passwd_cb
);
1465 * Try to connect to the server...
1468 if ((http
= cups_connect(frame
)) == NULL
) {
1473 * Build an IPP_PAUSE_PRINTER request, which requires the following
1476 * attributes-charset
1477 * attributes-natural-language
1479 * requesting-user-name
1484 request
->request
.op
.operation_id
= IPP_PAUSE_PRINTER
;
1485 request
->request
.op
.request_id
= 1;
1487 language
= cupsLangDefault();
1489 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_CHARSET
,
1490 "attributes-charset", NULL
, "utf-8");
1492 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_LANGUAGE
,
1493 "attributes-natural-language", NULL
, language
->language
);
1495 if (!push_utf8_talloc(frame
, &printername
, PRINTERNAME(snum
), &size
)) {
1498 slprintf(uri
, sizeof(uri
) - 1, "ipp://localhost/printers/%s",
1501 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_URI
, "printer-uri", NULL
, uri
);
1503 if (!push_utf8_talloc(frame
, &username
, current_user_info
.unix_name
, &size
)) {
1506 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_NAME
, "requesting-user-name",
1510 * Do the request and get back a response...
1513 if ((response
= cupsDoRequest(http
, request
, "/admin/")) != NULL
) {
1514 if (response
->request
.status
.status_code
>= IPP_OK_CONFLICT
) {
1515 DEBUG(0,("Unable to pause printer %s - %s\n", PRINTERNAME(snum
),
1516 ippErrorString(cupsLastError())));
1521 DEBUG(0,("Unable to pause printer %s - %s\n", PRINTERNAME(snum
),
1522 ippErrorString(cupsLastError())));
1527 ippDelete(response
);
1530 cupsLangFree(language
);
1541 * 'cups_queue_resume()' - Restart a print queue.
1544 static int cups_queue_resume(int snum
)
1546 TALLOC_CTX
*frame
= talloc_stackframe();
1547 int ret
= 1; /* Return value */
1548 http_t
*http
= NULL
; /* HTTP connection to server */
1549 ipp_t
*request
= NULL
, /* IPP Request */
1550 *response
= NULL
; /* IPP Response */
1551 cups_lang_t
*language
= NULL
; /* Default language */
1552 char *printername
= NULL
;
1553 char *username
= NULL
;
1554 char uri
[HTTP_MAX_URI
]; /* printer-uri attribute */
1557 DEBUG(5,("cups_queue_resume(%d)\n", snum
));
1560 * Make sure we don't ask for passwords...
1563 cupsSetPasswordCB(cups_passwd_cb
);
1566 * Try to connect to the server...
1569 if ((http
= cups_connect(frame
)) == NULL
) {
1574 * Build an IPP_RESUME_PRINTER request, which requires the following
1577 * attributes-charset
1578 * attributes-natural-language
1580 * requesting-user-name
1585 request
->request
.op
.operation_id
= IPP_RESUME_PRINTER
;
1586 request
->request
.op
.request_id
= 1;
1588 language
= cupsLangDefault();
1590 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_CHARSET
,
1591 "attributes-charset", NULL
, "utf-8");
1593 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_LANGUAGE
,
1594 "attributes-natural-language", NULL
, language
->language
);
1596 if (!push_utf8_talloc(frame
, &printername
, PRINTERNAME(snum
), &size
)) {
1599 slprintf(uri
, sizeof(uri
) - 1, "ipp://localhost/printers/%s",
1602 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_URI
, "printer-uri", NULL
, uri
);
1604 if (!push_utf8_talloc(frame
, &username
, current_user_info
.unix_name
, &size
)) {
1607 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_NAME
, "requesting-user-name",
1611 * Do the request and get back a response...
1614 if ((response
= cupsDoRequest(http
, request
, "/admin/")) != NULL
) {
1615 if (response
->request
.status
.status_code
>= IPP_OK_CONFLICT
) {
1616 DEBUG(0,("Unable to resume printer %s - %s\n", PRINTERNAME(snum
),
1617 ippErrorString(cupsLastError())));
1622 DEBUG(0,("Unable to resume printer %s - %s\n", PRINTERNAME(snum
),
1623 ippErrorString(cupsLastError())));
1628 ippDelete(response
);
1631 cupsLangFree(language
);
1640 /*******************************************************************
1641 * CUPS printing interface definitions...
1642 ******************************************************************/
1644 struct printif cups_printif
=
1656 bool cups_pull_comment_location(NT_PRINTER_INFO_LEVEL_2
*printer
)
1658 TALLOC_CTX
*frame
= talloc_stackframe();
1659 http_t
*http
= NULL
; /* HTTP connection to server */
1660 ipp_t
*request
= NULL
, /* IPP Request */
1661 *response
= NULL
; /* IPP Response */
1662 ipp_attribute_t
*attr
; /* Current attribute */
1663 cups_lang_t
*language
= NULL
; /* Default language */
1664 char uri
[HTTP_MAX_URI
];
1665 char *server
= NULL
;
1666 char *sharename
= NULL
;
1668 static const char *requested
[] =/* Requested attributes */
1677 DEBUG(5, ("pulling %s location\n", printer
->sharename
));
1680 * Make sure we don't ask for passwords...
1683 cupsSetPasswordCB(cups_passwd_cb
);
1686 * Try to connect to the server...
1689 if ((http
= cups_connect(frame
)) == NULL
) {
1695 request
->request
.op
.operation_id
= IPP_GET_PRINTER_ATTRIBUTES
;
1696 request
->request
.op
.request_id
= 1;
1698 language
= cupsLangDefault();
1700 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_CHARSET
,
1701 "attributes-charset", NULL
, "utf-8");
1703 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_LANGUAGE
,
1704 "attributes-natural-language", NULL
, language
->language
);
1706 if (lp_cups_server() != NULL
&& strlen(lp_cups_server()) > 0) {
1707 if (!push_utf8_talloc(frame
, &server
, lp_cups_server(), &size
)) {
1711 server
= talloc_strdup(frame
,cupsServer());
1716 if (!push_utf8_talloc(frame
, &sharename
, printer
->sharename
, &size
)) {
1719 slprintf(uri
, sizeof(uri
) - 1, "ipp://%s/printers/%s",
1722 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_URI
,
1723 "printer-uri", NULL
, uri
);
1725 ippAddStrings(request
, IPP_TAG_OPERATION
, IPP_TAG_NAME
,
1726 "requested-attributes",
1727 (sizeof(requested
) / sizeof(requested
[0])),
1731 * Do the request and get back a response...
1734 if ((response
= cupsDoRequest(http
, request
, "/")) == NULL
) {
1735 DEBUG(0,("Unable to get printer attributes - %s\n",
1736 ippErrorString(cupsLastError())));
1740 for (attr
= response
->attrs
; attr
!= NULL
;) {
1742 * Skip leading attributes until we hit a printer...
1745 while (attr
!= NULL
&& attr
->group_tag
!= IPP_TAG_PRINTER
)
1752 * Pull the needed attributes from this printer...
1755 while ( attr
&& (attr
->group_tag
== IPP_TAG_PRINTER
) ) {
1756 if (strcmp(attr
->name
, "printer-name") == 0 &&
1757 attr
->value_tag
== IPP_TAG_NAME
) {
1758 if (!pull_utf8_talloc(frame
,
1760 attr
->values
[0].string
.text
,
1766 /* Grab the comment if we don't have one */
1767 if ( (strcmp(attr
->name
, "printer-info") == 0)
1768 && (attr
->value_tag
== IPP_TAG_TEXT
)
1769 && !strlen(printer
->comment
) )
1771 char *comment
= NULL
;
1772 if (!pull_utf8_talloc(frame
,
1774 attr
->values
[0].string
.text
,
1778 DEBUG(5,("cups_pull_comment_location: Using cups comment: %s\n",
1780 strlcpy(printer
->comment
,
1782 sizeof(printer
->comment
));
1785 /* Grab the location if we don't have one */
1786 if ( (strcmp(attr
->name
, "printer-location") == 0)
1787 && (attr
->value_tag
== IPP_TAG_TEXT
)
1788 && !strlen(printer
->location
) )
1790 char *location
= NULL
;
1791 if (!pull_utf8_talloc(frame
,
1793 attr
->values
[0].string
.text
,
1797 DEBUG(5,("cups_pull_comment_location: Using cups location: %s\n",
1799 strlcpy(printer
->location
,
1801 sizeof(printer
->location
));
1808 * We have everything needed...
1819 ippDelete(response
);
1826 cupsLangFree(language
);
1836 /* this keeps fussy compilers happy */
1837 void print_cups_dummy(void);
1838 void print_cups_dummy(void) {}
1839 #endif /* HAVE_CUPS */