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 (!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 static void cups_async_callback(struct event_context
*event_ctx
,
444 struct fd_event
*event
,
448 TALLOC_CTX
*frame
= talloc_stackframe();
450 struct pcap_cache
*tmp_pcap_cache
= NULL
;
452 DEBUG(5,("cups_async_callback: callback received for printer data. "
456 char *name
= NULL
, *info
= NULL
;
457 size_t namelen
= 0, infolen
= 0;
460 ret
= sys_read(fd
, &namelen
, sizeof(namelen
));
465 if (ret
!= sizeof(namelen
)) {
466 DEBUG(10,("cups_async_callback: namelen read failed %d %s\n",
467 errno
, strerror(errno
)));
471 DEBUG(11,("cups_async_callback: read namelen %u\n",
472 (unsigned int)namelen
));
474 ret
= sys_read(fd
, &infolen
, sizeof(infolen
));
479 if (ret
!= sizeof(infolen
)) {
480 DEBUG(10,("cups_async_callback: infolen read failed %s\n",
485 DEBUG(11,("cups_async_callback: read infolen %u\n",
486 (unsigned int)infolen
));
489 name
= TALLOC_ARRAY(frame
, char, namelen
);
493 ret
= sys_read(fd
, name
, namelen
);
498 if (ret
!= namelen
) {
499 DEBUG(10,("cups_async_callback: name read failed %s\n",
503 DEBUG(11,("cups_async_callback: read name %s\n",
509 info
= TALLOC_ARRAY(frame
, char, infolen
);
513 ret
= sys_read(fd
, info
, infolen
);
518 if (ret
!= infolen
) {
519 DEBUG(10,("cups_async_callback: info read failed %s\n",
523 DEBUG(11,("cups_async_callback: read info %s\n",
529 /* Add to our local pcap cache. */
530 pcap_cache_add_specific(&tmp_pcap_cache
, name
, info
);
536 if (tmp_pcap_cache
) {
537 /* We got a namelist, replace our local cache. */
538 pcap_cache_destroy_specific(&local_pcap_copy
);
539 local_pcap_copy
= tmp_pcap_cache
;
541 /* And the systemwide pcap cache. */
542 pcap_cache_replace(local_pcap_copy
);
544 DEBUG(2,("cups_async_callback: failed to read a new "
549 TALLOC_FREE(cache_fd_event
);
552 bool cups_cache_reload(void)
554 int *p_pipe_fd
= TALLOC_P(NULL
, int);
562 /* Set up an async refresh. */
563 if (!cups_pcap_load_async(p_pipe_fd
)) {
566 if (!local_pcap_copy
) {
567 /* We have no local cache, wait directly for
568 * async refresh to complete.
570 DEBUG(10,("cups_cache_reload: sync read on fd %d\n",
573 cups_async_callback(smbd_event_context(),
577 if (!local_pcap_copy
) {
581 /* Replace the system cache with our
583 pcap_cache_replace(local_pcap_copy
);
585 DEBUG(10,("cups_cache_reload: async read on fd %d\n",
588 /* Trigger an event when the pipe can be read. */
589 cache_fd_event
= event_add_fd(smbd_event_context(),
594 if (!cache_fd_event
) {
596 TALLOC_FREE(p_pipe_fd
);
604 * 'cups_job_delete()' - Delete a job.
607 static int cups_job_delete(const char *sharename
, const char *lprm_command
, struct printjob
*pjob
)
609 TALLOC_CTX
*frame
= talloc_stackframe();
610 int ret
= 1; /* Return value */
611 http_t
*http
= NULL
; /* HTTP connection to server */
612 ipp_t
*request
= NULL
, /* IPP Request */
613 *response
= NULL
; /* IPP Response */
614 cups_lang_t
*language
= NULL
; /* Default language */
616 char uri
[HTTP_MAX_URI
]; /* printer-uri attribute */
619 DEBUG(5,("cups_job_delete(%s, %p (%d))\n", sharename
, pjob
, pjob
->sysjob
));
622 * Make sure we don't ask for passwords...
625 cupsSetPasswordCB(cups_passwd_cb
);
628 * Try to connect to the server...
631 if ((http
= cups_connect(frame
)) == NULL
) {
636 * Build an IPP_CANCEL_JOB request, which requires the following
640 * attributes-natural-language
642 * requesting-user-name
647 request
->request
.op
.operation_id
= IPP_CANCEL_JOB
;
648 request
->request
.op
.request_id
= 1;
650 language
= cupsLangDefault();
652 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_CHARSET
,
653 "attributes-charset", NULL
, "utf-8");
655 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_LANGUAGE
,
656 "attributes-natural-language", NULL
, language
->language
);
658 slprintf(uri
, sizeof(uri
) - 1, "ipp://localhost/jobs/%d", pjob
->sysjob
);
660 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_URI
, "job-uri", NULL
, uri
);
662 if (!push_utf8_talloc(frame
, &user
, pjob
->user
, &size
)) {
666 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_NAME
, "requesting-user-name",
670 * Do the request and get back a response...
673 if ((response
= cupsDoRequest(http
, request
, "/jobs")) != NULL
) {
674 if (response
->request
.status
.status_code
>= IPP_OK_CONFLICT
) {
675 DEBUG(0,("Unable to cancel job %d - %s\n", pjob
->sysjob
,
676 ippErrorString(cupsLastError())));
681 DEBUG(0,("Unable to cancel job %d - %s\n", pjob
->sysjob
,
682 ippErrorString(cupsLastError())));
690 cupsLangFree(language
);
701 * 'cups_job_pause()' - Pause a job.
704 static int cups_job_pause(int snum
, struct printjob
*pjob
)
706 TALLOC_CTX
*frame
= talloc_stackframe();
707 int ret
= 1; /* Return value */
708 http_t
*http
= NULL
; /* HTTP connection to server */
709 ipp_t
*request
= NULL
, /* IPP Request */
710 *response
= NULL
; /* IPP Response */
711 cups_lang_t
*language
= NULL
; /* Default language */
713 char uri
[HTTP_MAX_URI
]; /* printer-uri attribute */
716 DEBUG(5,("cups_job_pause(%d, %p (%d))\n", snum
, pjob
, pjob
->sysjob
));
719 * Make sure we don't ask for passwords...
722 cupsSetPasswordCB(cups_passwd_cb
);
725 * Try to connect to the server...
728 if ((http
= cups_connect(frame
)) == NULL
) {
733 * Build an IPP_HOLD_JOB request, which requires the following
737 * attributes-natural-language
739 * requesting-user-name
744 request
->request
.op
.operation_id
= IPP_HOLD_JOB
;
745 request
->request
.op
.request_id
= 1;
747 language
= cupsLangDefault();
749 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_CHARSET
,
750 "attributes-charset", NULL
, "utf-8");
752 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_LANGUAGE
,
753 "attributes-natural-language", NULL
, language
->language
);
755 slprintf(uri
, sizeof(uri
) - 1, "ipp://localhost/jobs/%d", pjob
->sysjob
);
757 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_URI
, "job-uri", NULL
, uri
);
759 if (!push_utf8_talloc(frame
, &user
, pjob
->user
, &size
)) {
762 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_NAME
, "requesting-user-name",
766 * Do the request and get back a response...
769 if ((response
= cupsDoRequest(http
, request
, "/jobs")) != NULL
) {
770 if (response
->request
.status
.status_code
>= IPP_OK_CONFLICT
) {
771 DEBUG(0,("Unable to hold job %d - %s\n", pjob
->sysjob
,
772 ippErrorString(cupsLastError())));
777 DEBUG(0,("Unable to hold job %d - %s\n", pjob
->sysjob
,
778 ippErrorString(cupsLastError())));
786 cupsLangFree(language
);
797 * 'cups_job_resume()' - Resume a paused job.
800 static int cups_job_resume(int snum
, struct printjob
*pjob
)
802 TALLOC_CTX
*frame
= talloc_stackframe();
803 int ret
= 1; /* Return value */
804 http_t
*http
= NULL
; /* HTTP connection to server */
805 ipp_t
*request
= NULL
, /* IPP Request */
806 *response
= NULL
; /* IPP Response */
807 cups_lang_t
*language
= NULL
; /* Default language */
809 char uri
[HTTP_MAX_URI
]; /* printer-uri attribute */
812 DEBUG(5,("cups_job_resume(%d, %p (%d))\n", snum
, pjob
, pjob
->sysjob
));
815 * Make sure we don't ask for passwords...
818 cupsSetPasswordCB(cups_passwd_cb
);
821 * Try to connect to the server...
824 if ((http
= cups_connect(frame
)) == NULL
) {
829 * Build an IPP_RELEASE_JOB request, which requires the following
833 * attributes-natural-language
835 * requesting-user-name
840 request
->request
.op
.operation_id
= IPP_RELEASE_JOB
;
841 request
->request
.op
.request_id
= 1;
843 language
= cupsLangDefault();
845 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_CHARSET
,
846 "attributes-charset", NULL
, "utf-8");
848 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_LANGUAGE
,
849 "attributes-natural-language", NULL
, language
->language
);
851 slprintf(uri
, sizeof(uri
) - 1, "ipp://localhost/jobs/%d", pjob
->sysjob
);
853 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_URI
, "job-uri", NULL
, uri
);
855 if (!push_utf8_talloc(frame
, &user
, pjob
->user
, &size
)) {
858 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_NAME
, "requesting-user-name",
862 * Do the request and get back a response...
865 if ((response
= cupsDoRequest(http
, request
, "/jobs")) != NULL
) {
866 if (response
->request
.status
.status_code
>= IPP_OK_CONFLICT
) {
867 DEBUG(0,("Unable to release job %d - %s\n", pjob
->sysjob
,
868 ippErrorString(cupsLastError())));
873 DEBUG(0,("Unable to release job %d - %s\n", pjob
->sysjob
,
874 ippErrorString(cupsLastError())));
882 cupsLangFree(language
);
893 * 'cups_job_submit()' - Submit a job for printing.
896 static int cups_job_submit(int snum
, struct printjob
*pjob
)
898 TALLOC_CTX
*frame
= talloc_stackframe();
899 int ret
= 1; /* Return value */
900 http_t
*http
= NULL
; /* HTTP connection to server */
901 ipp_t
*request
= NULL
, /* IPP Request */
902 *response
= NULL
; /* IPP Response */
903 cups_lang_t
*language
= NULL
; /* Default language */
904 char uri
[HTTP_MAX_URI
]; /* printer-uri attribute */
905 const char *clientname
= NULL
; /* hostname of client for job-originating-host attribute */
906 char *new_jobname
= NULL
;
908 cups_option_t
*options
= NULL
;
909 char *printername
= NULL
;
911 char *jobname
= NULL
;
912 char *cupsoptions
= NULL
;
913 char *filename
= NULL
;
915 char addr
[INET6_ADDRSTRLEN
];
917 DEBUG(5,("cups_job_submit(%d, %p (%d))\n", snum
, pjob
, pjob
->sysjob
));
920 * Make sure we don't ask for passwords...
923 cupsSetPasswordCB(cups_passwd_cb
);
926 * Try to connect to the server...
929 if ((http
= cups_connect(frame
)) == NULL
) {
934 * Build an IPP_PRINT_JOB request, which requires the following
938 * attributes-natural-language
940 * requesting-user-name
946 request
->request
.op
.operation_id
= IPP_PRINT_JOB
;
947 request
->request
.op
.request_id
= 1;
949 language
= cupsLangDefault();
951 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_CHARSET
,
952 "attributes-charset", NULL
, "utf-8");
954 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_LANGUAGE
,
955 "attributes-natural-language", NULL
, language
->language
);
957 if (!push_utf8_talloc(frame
, &printername
, PRINTERNAME(snum
), &size
)) {
960 slprintf(uri
, sizeof(uri
) - 1, "ipp://localhost/printers/%s",
963 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_URI
,
964 "printer-uri", NULL
, uri
);
966 if (!push_utf8_talloc(frame
, &user
, pjob
->user
, &size
)) {
969 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_NAME
, "requesting-user-name",
972 clientname
= client_name(get_client_fd());
973 if (strcmp(clientname
, "UNKNOWN") == 0) {
974 clientname
= client_addr(get_client_fd(),addr
,sizeof(addr
));
977 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_NAME
,
978 "job-originating-host-name", NULL
,
981 if (!push_utf8_talloc(frame
, &jobname
, pjob
->jobname
, &size
)) {
984 new_jobname
= talloc_asprintf(frame
,
985 "%s%.8u %s", PRINT_SPOOL_PREFIX
,
986 (unsigned int)pjob
->smbjob
,
988 if (new_jobname
== NULL
) {
992 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_NAME
, "job-name", NULL
,
996 * add any options defined in smb.conf
999 if (!push_utf8_talloc(frame
, &cupsoptions
, lp_cups_options(snum
), &size
)) {
1004 num_options
= cupsParseOptions(cupsoptions
, num_options
, &options
);
1007 cupsEncodeOptions(request
, num_options
, options
);
1010 * Do the request and get back a response...
1013 slprintf(uri
, sizeof(uri
) - 1, "/printers/%s", printername
);
1015 if (!push_utf8_talloc(frame
, &filename
, pjob
->filename
, &size
)) {
1018 if ((response
= cupsDoFileRequest(http
, request
, uri
, pjob
->filename
)) != NULL
) {
1019 if (response
->request
.status
.status_code
>= IPP_OK_CONFLICT
) {
1020 DEBUG(0,("Unable to print file to %s - %s\n", PRINTERNAME(snum
),
1021 ippErrorString(cupsLastError())));
1026 DEBUG(0,("Unable to print file to `%s' - %s\n", PRINTERNAME(snum
),
1027 ippErrorString(cupsLastError())));
1031 unlink(pjob
->filename
);
1032 /* else print_job_end will do it for us */
1036 ippDelete(response
);
1039 cupsLangFree(language
);
1050 * 'cups_queue_get()' - Get all the jobs in the print queue.
1053 static int cups_queue_get(const char *sharename
,
1054 enum printing_types printing_type
,
1056 print_queue_struct
**q
,
1057 print_status_struct
*status
)
1059 TALLOC_CTX
*frame
= talloc_stackframe();
1060 char *printername
= NULL
;
1061 http_t
*http
= NULL
; /* HTTP connection to server */
1062 ipp_t
*request
= NULL
, /* IPP Request */
1063 *response
= NULL
; /* IPP Response */
1064 ipp_attribute_t
*attr
= NULL
; /* Current attribute */
1065 cups_lang_t
*language
= NULL
; /* Default language */
1066 char uri
[HTTP_MAX_URI
]; /* printer-uri attribute */
1067 int qcount
= 0, /* Number of active queue entries */
1068 qalloc
= 0; /* Number of queue entries allocated */
1069 print_queue_struct
*queue
= NULL
, /* Queue entries */
1070 *temp
; /* Temporary pointer for queue */
1071 char *user_name
= NULL
, /* job-originating-user-name attribute */
1072 *job_name
= NULL
; /* job-name attribute */
1073 int job_id
; /* job-id attribute */
1074 int job_k_octets
; /* job-k-octets attribute */
1075 time_t job_time
; /* time-at-creation attribute */
1076 ipp_jstate_t job_status
; /* job-status attribute */
1077 int job_priority
; /* job-priority attribute */
1079 static const char *jattrs
[] = /* Requested job attributes */
1084 "job-originating-user-name",
1089 static const char *pattrs
[] = /* Requested printer attributes */
1092 "printer-state-message"
1097 /* HACK ALERT!!! The problem with support the 'printer name'
1098 option is that we key the tdb off the sharename. So we will
1099 overload the lpq_command string to pass in the printername
1100 (which is basically what we do for non-cups printers ... using
1101 the lpq_command to get the queue listing). */
1103 if (!push_utf8_talloc(frame
, &printername
, lpq_command
, &size
)) {
1106 DEBUG(5,("cups_queue_get(%s, %p, %p)\n", lpq_command
, q
, status
));
1109 * Make sure we don't ask for passwords...
1112 cupsSetPasswordCB(cups_passwd_cb
);
1115 * Try to connect to the server...
1118 if ((http
= cups_connect(frame
)) == NULL
) {
1123 * Generate the printer URI...
1126 slprintf(uri
, sizeof(uri
) - 1, "ipp://localhost/printers/%s", printername
);
1129 * Build an IPP_GET_JOBS request, which requires the following
1132 * attributes-charset
1133 * attributes-natural-language
1134 * requested-attributes
1140 request
->request
.op
.operation_id
= IPP_GET_JOBS
;
1141 request
->request
.op
.request_id
= 1;
1143 language
= cupsLangDefault();
1145 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_CHARSET
,
1146 "attributes-charset", NULL
, "utf-8");
1148 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_LANGUAGE
,
1149 "attributes-natural-language", NULL
, language
->language
);
1151 ippAddStrings(request
, IPP_TAG_OPERATION
, IPP_TAG_NAME
,
1152 "requested-attributes",
1153 (sizeof(jattrs
) / sizeof(jattrs
[0])),
1156 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_URI
,
1157 "printer-uri", NULL
, uri
);
1160 * Do the request and get back a response...
1163 if ((response
= cupsDoRequest(http
, request
, "/")) == NULL
) {
1164 DEBUG(0,("Unable to get jobs for %s - %s\n", uri
,
1165 ippErrorString(cupsLastError())));
1169 if (response
->request
.status
.status_code
>= IPP_OK_CONFLICT
) {
1170 DEBUG(0,("Unable to get jobs for %s - %s\n", uri
,
1171 ippErrorString(response
->request
.status
.status_code
)));
1176 * Process the jobs...
1183 for (attr
= response
->attrs
; attr
!= NULL
; attr
= attr
->next
) {
1185 * Skip leading attributes until we hit a job...
1188 while (attr
!= NULL
&& attr
->group_tag
!= IPP_TAG_JOB
)
1195 * Allocate memory as needed...
1197 if (qcount
>= qalloc
) {
1200 queue
= SMB_REALLOC_ARRAY(queue
, print_queue_struct
, qalloc
);
1202 if (queue
== NULL
) {
1203 DEBUG(0,("cups_queue_get: Not enough memory!"));
1209 temp
= queue
+ qcount
;
1210 memset(temp
, 0, sizeof(print_queue_struct
));
1213 * Pull the needed attributes from this job...
1218 job_status
= IPP_JOB_PENDING
;
1224 while (attr
!= NULL
&& attr
->group_tag
== IPP_TAG_JOB
) {
1225 if (attr
->name
== NULL
) {
1230 if (strcmp(attr
->name
, "job-id") == 0 &&
1231 attr
->value_tag
== IPP_TAG_INTEGER
)
1232 job_id
= attr
->values
[0].integer
;
1234 if (strcmp(attr
->name
, "job-k-octets") == 0 &&
1235 attr
->value_tag
== IPP_TAG_INTEGER
)
1236 job_k_octets
= attr
->values
[0].integer
;
1238 if (strcmp(attr
->name
, "job-priority") == 0 &&
1239 attr
->value_tag
== IPP_TAG_INTEGER
)
1240 job_priority
= attr
->values
[0].integer
;
1242 if (strcmp(attr
->name
, "job-state") == 0 &&
1243 attr
->value_tag
== IPP_TAG_ENUM
)
1244 job_status
= (ipp_jstate_t
)(attr
->values
[0].integer
);
1246 if (strcmp(attr
->name
, "time-at-creation") == 0 &&
1247 attr
->value_tag
== IPP_TAG_INTEGER
)
1248 job_time
= attr
->values
[0].integer
;
1250 if (strcmp(attr
->name
, "job-name") == 0 &&
1251 attr
->value_tag
== IPP_TAG_NAME
) {
1252 if (!pull_utf8_talloc(frame
,
1254 attr
->values
[0].string
.text
,
1260 if (strcmp(attr
->name
, "job-originating-user-name") == 0 &&
1261 attr
->value_tag
== IPP_TAG_NAME
) {
1262 if (!pull_utf8_talloc(frame
,
1264 attr
->values
[0].string
.text
,
1274 * See if we have everything needed...
1277 if (user_name
== NULL
|| job_name
== NULL
|| job_id
== 0) {
1285 temp
->size
= job_k_octets
* 1024;
1286 temp
->status
= job_status
== IPP_JOB_PENDING
? LPQ_QUEUED
:
1287 job_status
== IPP_JOB_STOPPED
? LPQ_PAUSED
:
1288 job_status
== IPP_JOB_HELD
? LPQ_PAUSED
:
1290 temp
->priority
= job_priority
;
1291 temp
->time
= job_time
;
1292 strlcpy(temp
->fs_user
, user_name
, sizeof(temp
->fs_user
));
1293 strlcpy(temp
->fs_file
, job_name
, sizeof(temp
->fs_file
));
1301 ippDelete(response
);
1305 * Build an IPP_GET_PRINTER_ATTRIBUTES request, which requires the
1306 * following attributes:
1308 * attributes-charset
1309 * attributes-natural-language
1310 * requested-attributes
1316 request
->request
.op
.operation_id
= IPP_GET_PRINTER_ATTRIBUTES
;
1317 request
->request
.op
.request_id
= 1;
1319 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_CHARSET
,
1320 "attributes-charset", NULL
, "utf-8");
1322 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_LANGUAGE
,
1323 "attributes-natural-language", NULL
, language
->language
);
1325 ippAddStrings(request
, IPP_TAG_OPERATION
, IPP_TAG_NAME
,
1326 "requested-attributes",
1327 (sizeof(pattrs
) / sizeof(pattrs
[0])),
1330 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_URI
,
1331 "printer-uri", NULL
, uri
);
1334 * Do the request and get back a response...
1337 if ((response
= cupsDoRequest(http
, request
, "/")) == NULL
) {
1338 DEBUG(0,("Unable to get printer status for %s - %s\n", printername
,
1339 ippErrorString(cupsLastError())));
1344 if (response
->request
.status
.status_code
>= IPP_OK_CONFLICT
) {
1345 DEBUG(0,("Unable to get printer status for %s - %s\n", printername
,
1346 ippErrorString(response
->request
.status
.status_code
)));
1352 * Get the current printer status and convert it to the SAMBA values.
1355 if ((attr
= ippFindAttribute(response
, "printer-state", IPP_TAG_ENUM
)) != NULL
) {
1356 if (attr
->values
[0].integer
== IPP_PRINTER_STOPPED
)
1357 status
->status
= LPSTAT_STOPPED
;
1359 status
->status
= LPSTAT_OK
;
1362 if ((attr
= ippFindAttribute(response
, "printer-state-message",
1363 IPP_TAG_TEXT
)) != NULL
) {
1365 if (!pull_utf8_talloc(frame
, &msg
,
1366 attr
->values
[0].string
.text
,
1370 fstrcpy(status
->message
, msg
);
1374 * Return the job queue...
1381 ippDelete(response
);
1384 cupsLangFree(language
);
1395 * 'cups_queue_pause()' - Pause a print queue.
1398 static int cups_queue_pause(int snum
)
1400 TALLOC_CTX
*frame
= talloc_stackframe();
1401 int ret
= 1; /* Return value */
1402 http_t
*http
= NULL
; /* HTTP connection to server */
1403 ipp_t
*request
= NULL
, /* IPP Request */
1404 *response
= NULL
; /* IPP Response */
1405 cups_lang_t
*language
= NULL
; /* Default language */
1406 char *printername
= NULL
;
1407 char *username
= NULL
;
1408 char uri
[HTTP_MAX_URI
]; /* printer-uri attribute */
1411 DEBUG(5,("cups_queue_pause(%d)\n", snum
));
1414 * Make sure we don't ask for passwords...
1417 cupsSetPasswordCB(cups_passwd_cb
);
1420 * Try to connect to the server...
1423 if ((http
= cups_connect(frame
)) == NULL
) {
1428 * Build an IPP_PAUSE_PRINTER request, which requires the following
1431 * attributes-charset
1432 * attributes-natural-language
1434 * requesting-user-name
1439 request
->request
.op
.operation_id
= IPP_PAUSE_PRINTER
;
1440 request
->request
.op
.request_id
= 1;
1442 language
= cupsLangDefault();
1444 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_CHARSET
,
1445 "attributes-charset", NULL
, "utf-8");
1447 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_LANGUAGE
,
1448 "attributes-natural-language", NULL
, language
->language
);
1450 if (!push_utf8_talloc(frame
, &printername
, PRINTERNAME(snum
), &size
)) {
1453 slprintf(uri
, sizeof(uri
) - 1, "ipp://localhost/printers/%s",
1456 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_URI
, "printer-uri", NULL
, uri
);
1458 if (!push_utf8_talloc(frame
, &username
, current_user_info
.unix_name
, &size
)) {
1461 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_NAME
, "requesting-user-name",
1465 * Do the request and get back a response...
1468 if ((response
= cupsDoRequest(http
, request
, "/admin/")) != NULL
) {
1469 if (response
->request
.status
.status_code
>= IPP_OK_CONFLICT
) {
1470 DEBUG(0,("Unable to pause printer %s - %s\n", PRINTERNAME(snum
),
1471 ippErrorString(cupsLastError())));
1476 DEBUG(0,("Unable to pause printer %s - %s\n", PRINTERNAME(snum
),
1477 ippErrorString(cupsLastError())));
1482 ippDelete(response
);
1485 cupsLangFree(language
);
1496 * 'cups_queue_resume()' - Restart a print queue.
1499 static int cups_queue_resume(int snum
)
1501 TALLOC_CTX
*frame
= talloc_stackframe();
1502 int ret
= 1; /* Return value */
1503 http_t
*http
= NULL
; /* HTTP connection to server */
1504 ipp_t
*request
= NULL
, /* IPP Request */
1505 *response
= NULL
; /* IPP Response */
1506 cups_lang_t
*language
= NULL
; /* Default language */
1507 char *printername
= NULL
;
1508 char *username
= NULL
;
1509 char uri
[HTTP_MAX_URI
]; /* printer-uri attribute */
1512 DEBUG(5,("cups_queue_resume(%d)\n", snum
));
1515 * Make sure we don't ask for passwords...
1518 cupsSetPasswordCB(cups_passwd_cb
);
1521 * Try to connect to the server...
1524 if ((http
= cups_connect(frame
)) == NULL
) {
1529 * Build an IPP_RESUME_PRINTER request, which requires the following
1532 * attributes-charset
1533 * attributes-natural-language
1535 * requesting-user-name
1540 request
->request
.op
.operation_id
= IPP_RESUME_PRINTER
;
1541 request
->request
.op
.request_id
= 1;
1543 language
= cupsLangDefault();
1545 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_CHARSET
,
1546 "attributes-charset", NULL
, "utf-8");
1548 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_LANGUAGE
,
1549 "attributes-natural-language", NULL
, language
->language
);
1551 if (!push_utf8_talloc(frame
, &printername
, PRINTERNAME(snum
), &size
)) {
1554 slprintf(uri
, sizeof(uri
) - 1, "ipp://localhost/printers/%s",
1557 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_URI
, "printer-uri", NULL
, uri
);
1559 if (!push_utf8_talloc(frame
, &username
, current_user_info
.unix_name
, &size
)) {
1562 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_NAME
, "requesting-user-name",
1566 * Do the request and get back a response...
1569 if ((response
= cupsDoRequest(http
, request
, "/admin/")) != NULL
) {
1570 if (response
->request
.status
.status_code
>= IPP_OK_CONFLICT
) {
1571 DEBUG(0,("Unable to resume printer %s - %s\n", PRINTERNAME(snum
),
1572 ippErrorString(cupsLastError())));
1577 DEBUG(0,("Unable to resume printer %s - %s\n", PRINTERNAME(snum
),
1578 ippErrorString(cupsLastError())));
1583 ippDelete(response
);
1586 cupsLangFree(language
);
1595 /*******************************************************************
1596 * CUPS printing interface definitions...
1597 ******************************************************************/
1599 struct printif cups_printif
=
1611 bool cups_pull_comment_location(NT_PRINTER_INFO_LEVEL_2
*printer
)
1613 TALLOC_CTX
*frame
= talloc_stackframe();
1614 http_t
*http
= NULL
; /* HTTP connection to server */
1615 ipp_t
*request
= NULL
, /* IPP Request */
1616 *response
= NULL
; /* IPP Response */
1617 ipp_attribute_t
*attr
; /* Current attribute */
1618 cups_lang_t
*language
= NULL
; /* Default language */
1619 char uri
[HTTP_MAX_URI
];
1620 char *server
= NULL
;
1621 char *sharename
= NULL
;
1623 static const char *requested
[] =/* Requested attributes */
1632 DEBUG(5, ("pulling %s location\n", printer
->sharename
));
1635 * Make sure we don't ask for passwords...
1638 cupsSetPasswordCB(cups_passwd_cb
);
1641 * Try to connect to the server...
1644 if ((http
= cups_connect(frame
)) == NULL
) {
1650 request
->request
.op
.operation_id
= IPP_GET_PRINTER_ATTRIBUTES
;
1651 request
->request
.op
.request_id
= 1;
1653 language
= cupsLangDefault();
1655 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_CHARSET
,
1656 "attributes-charset", NULL
, "utf-8");
1658 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_LANGUAGE
,
1659 "attributes-natural-language", NULL
, language
->language
);
1661 if (lp_cups_server() != NULL
&& strlen(lp_cups_server()) > 0) {
1662 if (!push_utf8_talloc(frame
, &server
, lp_cups_server(), &size
)) {
1666 server
= talloc_strdup(frame
,cupsServer());
1671 if (!push_utf8_talloc(frame
, &sharename
, printer
->sharename
, &size
)) {
1674 slprintf(uri
, sizeof(uri
) - 1, "ipp://%s/printers/%s",
1677 ippAddString(request
, IPP_TAG_OPERATION
, IPP_TAG_URI
,
1678 "printer-uri", NULL
, uri
);
1680 ippAddStrings(request
, IPP_TAG_OPERATION
, IPP_TAG_NAME
,
1681 "requested-attributes",
1682 (sizeof(requested
) / sizeof(requested
[0])),
1686 * Do the request and get back a response...
1689 if ((response
= cupsDoRequest(http
, request
, "/")) == NULL
) {
1690 DEBUG(0,("Unable to get printer attributes - %s\n",
1691 ippErrorString(cupsLastError())));
1695 for (attr
= response
->attrs
; attr
!= NULL
;) {
1697 * Skip leading attributes until we hit a printer...
1700 while (attr
!= NULL
&& attr
->group_tag
!= IPP_TAG_PRINTER
)
1707 * Pull the needed attributes from this printer...
1710 while ( attr
&& (attr
->group_tag
== IPP_TAG_PRINTER
) ) {
1711 if (strcmp(attr
->name
, "printer-name") == 0 &&
1712 attr
->value_tag
== IPP_TAG_NAME
) {
1713 if (!pull_utf8_talloc(frame
,
1715 attr
->values
[0].string
.text
,
1721 /* Grab the comment if we don't have one */
1722 if ( (strcmp(attr
->name
, "printer-info") == 0)
1723 && (attr
->value_tag
== IPP_TAG_TEXT
)
1724 && !strlen(printer
->comment
) )
1726 char *comment
= NULL
;
1727 if (!pull_utf8_talloc(frame
,
1729 attr
->values
[0].string
.text
,
1733 DEBUG(5,("cups_pull_comment_location: Using cups comment: %s\n",
1735 strlcpy(printer
->comment
,
1737 sizeof(printer
->comment
));
1740 /* Grab the location if we don't have one */
1741 if ( (strcmp(attr
->name
, "printer-location") == 0)
1742 && (attr
->value_tag
== IPP_TAG_TEXT
)
1743 && !strlen(printer
->location
) )
1745 char *location
= NULL
;
1746 if (!pull_utf8_talloc(frame
,
1748 attr
->values
[0].string
.text
,
1752 DEBUG(5,("cups_pull_comment_location: Using cups location: %s\n",
1754 strlcpy(printer
->location
,
1756 sizeof(printer
->location
));
1763 * We have everything needed...
1774 ippDelete(response
);
1781 cupsLangFree(language
);
1791 /* this keeps fussy compilers happy */
1792 void print_cups_dummy(void);
1793 void print_cups_dummy(void) {}
1794 #endif /* HAVE_CUPS */