xref: /titanic_52/usr/src/cmd/print/bsd-sysv-commands/cancel.c (revision 06f61b77bc179f185bf19957b30740c246a13c0d)
1355b4669Sjacobs /*
2355b4669Sjacobs  * CDDL HEADER START
3355b4669Sjacobs  *
4355b4669Sjacobs  * The contents of this file are subject to the terms of the
5355b4669Sjacobs  * Common Development and Distribution License (the "License").
6355b4669Sjacobs  * You may not use this file except in compliance with the License.
7355b4669Sjacobs  *
8355b4669Sjacobs  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9355b4669Sjacobs  * or http://www.opensolaris.org/os/licensing.
10355b4669Sjacobs  * See the License for the specific language governing permissions
11355b4669Sjacobs  * and limitations under the License.
12355b4669Sjacobs  *
13355b4669Sjacobs  * When distributing Covered Code, include this CDDL HEADER in each
14355b4669Sjacobs  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15355b4669Sjacobs  * If applicable, add the following below this CDDL HEADER, with the
16355b4669Sjacobs  * fields enclosed by brackets "[]" replaced with your own identifying
17355b4669Sjacobs  * information: Portions Copyright [yyyy] [name of copyright owner]
18355b4669Sjacobs  *
19355b4669Sjacobs  * CDDL HEADER END
20355b4669Sjacobs  */
21355b4669Sjacobs 
22355b4669Sjacobs /*
236b5764c3Ssonam gupta - Sun Microsystems - Bangalore India  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
24355b4669Sjacobs  * Use is subject to license terms.
25355b4669Sjacobs  *
26355b4669Sjacobs  */
27355b4669Sjacobs 
28355b4669Sjacobs /* $Id: cancel.c 147 2006-04-25 16:51:06Z njacobs $ */
29355b4669Sjacobs 
30355b4669Sjacobs 
31355b4669Sjacobs #include <stdio.h>
32355b4669Sjacobs #include <stdlib.h>
33355b4669Sjacobs #include <unistd.h>
34355b4669Sjacobs #include <string.h>
35355b4669Sjacobs #include <locale.h>
36355b4669Sjacobs #include <libintl.h>
37355b4669Sjacobs #include <papi.h>
38355b4669Sjacobs #include "common.h"
39355b4669Sjacobs 
40355b4669Sjacobs static void
41355b4669Sjacobs usage(char *program)
42355b4669Sjacobs {
43355b4669Sjacobs 	char *name;
44355b4669Sjacobs 
45355b4669Sjacobs 	if ((name = strrchr(program, '/')) == NULL)
46355b4669Sjacobs 		name = program;
47355b4669Sjacobs 	else
48355b4669Sjacobs 		name++;
49355b4669Sjacobs 
50355b4669Sjacobs 	fprintf(stdout, "Usage: %s [-u user] (printer|request-id ...)\n", name);
51355b4669Sjacobs 	exit(1);
52355b4669Sjacobs }
53355b4669Sjacobs 
54f0b87b90Ssonam gupta - Sun Microsystems - Bangalore India static int32_t
55f0b87b90Ssonam gupta - Sun Microsystems - Bangalore India get_job_id_requested(papi_job_t job) {
56f0b87b90Ssonam gupta - Sun Microsystems - Bangalore India 	int32_t rid = -1;
57f0b87b90Ssonam gupta - Sun Microsystems - Bangalore India 
58f0b87b90Ssonam gupta - Sun Microsystems - Bangalore India 	papi_attribute_t **list = papiJobGetAttributeList(job);
59f0b87b90Ssonam gupta - Sun Microsystems - Bangalore India 	papiAttributeListGetInteger(list, NULL,
60f0b87b90Ssonam gupta - Sun Microsystems - Bangalore India 	    "job-id-requested", &rid);
61f0b87b90Ssonam gupta - Sun Microsystems - Bangalore India 
62f0b87b90Ssonam gupta - Sun Microsystems - Bangalore India 	return (rid);
63f0b87b90Ssonam gupta - Sun Microsystems - Bangalore India }
64f0b87b90Ssonam gupta - Sun Microsystems - Bangalore India 
65355b4669Sjacobs int
66d6083ba5Sjc144527 cancel_jobs_for_user(char *user, papi_encryption_t encryption, char *pname) {
67d6083ba5Sjc144527 
68d6083ba5Sjc144527 	papi_status_t status;
69d6083ba5Sjc144527 	papi_service_t svc = NULL;
70d6083ba5Sjc144527 	char **printers = NULL;
71d6083ba5Sjc144527 	int i, exit_code;
72d6083ba5Sjc144527 
73d6083ba5Sjc144527 	if (pname == NULL) {
746b5764c3Ssonam gupta - Sun Microsystems - Bangalore India 		status = papiServiceCreate(&svc, NULL, NULL, NULL,
75d6083ba5Sjc144527 		    cli_auth_callback, encryption, NULL);
76d6083ba5Sjc144527 		printers = interest_list(svc);
77d6083ba5Sjc144527 		papiServiceDestroy(svc);
78d6083ba5Sjc144527 	} else {
79d6083ba5Sjc144527 		list_append(&printers, strdup(pname));
80d6083ba5Sjc144527 	}
81d6083ba5Sjc144527 
82d6083ba5Sjc144527 	if (printers == NULL)
83d6083ba5Sjc144527 		exit(0);
84d6083ba5Sjc144527 
85d6083ba5Sjc144527 	for (i = 0; printers[i] != NULL; i++) {
86d6083ba5Sjc144527 		char *printer = printers[i];
87d6083ba5Sjc144527 
886b5764c3Ssonam gupta - Sun Microsystems - Bangalore India 		status = papiServiceCreate(&svc, printer, NULL, NULL,
89d6083ba5Sjc144527 		    cli_auth_callback, encryption, NULL);
90d6083ba5Sjc144527 
91d6083ba5Sjc144527 		if (status != PAPI_OK) {
92d6083ba5Sjc144527 			fprintf(stderr, gettext(
93d6083ba5Sjc144527 			    "Failed to contact service for %s: %s\n"),
94d6083ba5Sjc144527 			    printer, verbose_papi_message(svc, status));
95d6083ba5Sjc144527 			exit(1);
96d6083ba5Sjc144527 		}
97d6083ba5Sjc144527 		exit_code = berkeley_cancel_request(svc, stdout, printer, 1,
98d6083ba5Sjc144527 		    &user);
99d6083ba5Sjc144527 
100d6083ba5Sjc144527 		papiServiceDestroy(svc);
101d6083ba5Sjc144527 		if (exit_code != 0)
102d6083ba5Sjc144527 			break;
103d6083ba5Sjc144527 	}
104d6083ba5Sjc144527 	free(printers);
105d6083ba5Sjc144527 	return (exit_code);
106d6083ba5Sjc144527 }
107d6083ba5Sjc144527 
108d6083ba5Sjc144527 int
109355b4669Sjacobs main(int ac, char *av[])
110355b4669Sjacobs {
111355b4669Sjacobs 	int exit_code = 0;
112355b4669Sjacobs 	char *user = NULL;
113355b4669Sjacobs 	papi_encryption_t encryption = PAPI_ENCRYPT_NEVER;
114355b4669Sjacobs 	int c;
115dcf1b443Ssonam gupta - Sun Microsystems - Bangalore India 	int32_t rid = -1;
1162cb53ad6SKeerthi Kondaka 	int first_dest = 0;
1172cb53ad6SKeerthi Kondaka 
118355b4669Sjacobs 
119355b4669Sjacobs 	(void) setlocale(LC_ALL, "");
120355b4669Sjacobs 	(void) textdomain("SUNW_OST_OSCMD");
121355b4669Sjacobs 
122d6083ba5Sjc144527 	if (ac == 1)
123d6083ba5Sjc144527 		usage(av[0]);
124d6083ba5Sjc144527 
125355b4669Sjacobs 	while ((c = getopt(ac, av, "Eu:")) != EOF)
126355b4669Sjacobs 		switch (c) {
127355b4669Sjacobs 		case 'E':
128355b4669Sjacobs 			encryption = PAPI_ENCRYPT_REQUIRED;
129355b4669Sjacobs 			break;
130355b4669Sjacobs 		case 'u':
131355b4669Sjacobs 			user = optarg;
132355b4669Sjacobs 			break;
133355b4669Sjacobs 		default:
134355b4669Sjacobs 			usage(av[0]);
135355b4669Sjacobs 		}
136355b4669Sjacobs 
137355b4669Sjacobs 	for (c = optind; c < ac; c++) {
138355b4669Sjacobs 		papi_status_t status;
139355b4669Sjacobs 		papi_service_t svc = NULL;
140355b4669Sjacobs 		papi_job_t *jobs = NULL;
141355b4669Sjacobs 		char *printer = NULL;
142355b4669Sjacobs 		int32_t id = -1;
143355b4669Sjacobs 
1442cb53ad6SKeerthi Kondaka 		status = papiServiceCreate(&svc, av[c], NULL, NULL,
145355b4669Sjacobs 		    cli_auth_callback, encryption, NULL);
146355b4669Sjacobs 		if (status != PAPI_OK) {
1472cb53ad6SKeerthi Kondaka 			if (first_dest == 0) {
1482cb53ad6SKeerthi Kondaka 				(void) get_printer_id(av[c], &printer, &id);
1492cb53ad6SKeerthi Kondaka 				status = papiServiceCreate(&svc, printer, NULL,
1502cb53ad6SKeerthi Kondaka 				    NULL, cli_auth_callback, encryption, NULL);
1512cb53ad6SKeerthi Kondaka 			}
1522cb53ad6SKeerthi Kondaka 			if (status != PAPI_OK) {
153d6083ba5Sjc144527 				fprintf(stderr,
1542cb53ad6SKeerthi Kondaka 				    gettext("Failed to contact service for %s:"
1552cb53ad6SKeerthi Kondaka 				    " %s\n"), printer,
1562cb53ad6SKeerthi Kondaka 				    verbose_papi_message(svc, status));
157355b4669Sjacobs 				exit(1);
158355b4669Sjacobs 			}
1592cb53ad6SKeerthi Kondaka 		} else {
1602cb53ad6SKeerthi Kondaka 			first_dest = 1;
1612cb53ad6SKeerthi Kondaka 			printer = av[c];
1622cb53ad6SKeerthi Kondaka 		}
163355b4669Sjacobs 
164355b4669Sjacobs #define	OUT	((status == PAPI_OK) ? stdout : stderr)
165355b4669Sjacobs 
166355b4669Sjacobs 		if (id != -1) {	/* it's a job */
167355b4669Sjacobs 			char *mesg = "cancelled";
168355b4669Sjacobs 
169f0b87b90Ssonam gupta - Sun Microsystems - Bangalore India 			/*
170f0b87b90Ssonam gupta - Sun Microsystems - Bangalore India 			 * Check if the job-id is job-id-requested
171f0b87b90Ssonam gupta - Sun Microsystems - Bangalore India 			 * or job-id. If it is job-id-requested then find
172f0b87b90Ssonam gupta - Sun Microsystems - Bangalore India 			 * corresponding job-id and send it to cancel
173f0b87b90Ssonam gupta - Sun Microsystems - Bangalore India 			 */
174f0b87b90Ssonam gupta - Sun Microsystems - Bangalore India 			rid = job_to_be_queried(svc, printer, id);
175*06f61b77Ssonam gupta - Sun Microsystems - Bangalore India 			if (rid < 0) {
176*06f61b77Ssonam gupta - Sun Microsystems - Bangalore India 				/*
177*06f61b77Ssonam gupta - Sun Microsystems - Bangalore India 				 * Either it is a remote job which cannot be
178*06f61b77Ssonam gupta - Sun Microsystems - Bangalore India 				 * cancelled based on job-id or job-id is
179*06f61b77Ssonam gupta - Sun Microsystems - Bangalore India 				 * not found
180*06f61b77Ssonam gupta - Sun Microsystems - Bangalore India 				 */
181*06f61b77Ssonam gupta - Sun Microsystems - Bangalore India 				exit_code = 1;
182*06f61b77Ssonam gupta - Sun Microsystems - Bangalore India 				fprintf(OUT, "%s-%d: not-found\n", printer, id);
183*06f61b77Ssonam gupta - Sun Microsystems - Bangalore India 			} else {
184f0b87b90Ssonam gupta - Sun Microsystems - Bangalore India 				status = papiJobCancel(svc, printer, rid);
185d6083ba5Sjc144527 				if (status == PAPI_NOT_AUTHORIZED) {
186d6083ba5Sjc144527 					mesg = papiStatusString(status);
187d6083ba5Sjc144527 					exit_code = 1;
188d6083ba5Sjc144527 				} else if (status != PAPI_OK) {
189*06f61b77Ssonam gupta - Sun Microsystems - Bangalore India 					mesg =
190*06f61b77Ssonam gupta - Sun Microsystems - Bangalore India 					    verbose_papi_message(svc, status);
191355b4669Sjacobs 					exit_code = 1;
192355b4669Sjacobs 				}
193355b4669Sjacobs 				fprintf(OUT, "%s-%d: %s\n", printer, id, mesg);
194*06f61b77Ssonam gupta - Sun Microsystems - Bangalore India 			}
195d6083ba5Sjc144527 
196355b4669Sjacobs 		} else {	/* it's a printer */
197d6083ba5Sjc144527 			if (user == NULL) {
198d6083ba5Sjc144527 
199d6083ba5Sjc144527 				/* Remove first job from printer */
200d6083ba5Sjc144527 
201d6083ba5Sjc144527 				status = papiPrinterListJobs(svc, printer,
202d6083ba5Sjc144527 				    NULL, NULL, 0, &jobs);
203d6083ba5Sjc144527 
204355b4669Sjacobs 				if (status != PAPI_OK) {
205d6083ba5Sjc144527 					fprintf(stderr, gettext(
206d6083ba5Sjc144527 					    "ListJobs %s: %s\n"), printer,
207355b4669Sjacobs 					    verbose_papi_message(svc, status));
208355b4669Sjacobs 					exit_code = 1;
209355b4669Sjacobs 				}
210355b4669Sjacobs 
211d6083ba5Sjc144527 				if (jobs != NULL && *jobs != NULL) {
212d03e4ae8SJonathan Cowper-Andrewes 					char *mesg = "cancelled";
213d03e4ae8SJonathan Cowper-Andrewes 					id = papiJobGetId(*jobs);
214355b4669Sjacobs 
215d03e4ae8SJonathan Cowper-Andrewes 					status = papiJobCancel(svc,
216d03e4ae8SJonathan Cowper-Andrewes 					    printer, id);
217d6083ba5Sjc144527 
218d03e4ae8SJonathan Cowper-Andrewes 					if (status == PAPI_NOT_AUTHORIZED) {
219d03e4ae8SJonathan Cowper-Andrewes 						mesg = papiStatusString(status);
220d03e4ae8SJonathan Cowper-Andrewes 						exit_code = 1;
221d03e4ae8SJonathan Cowper-Andrewes 					} else if (status != PAPI_OK) {
222d03e4ae8SJonathan Cowper-Andrewes 						mesg = verbose_papi_message(
223d03e4ae8SJonathan Cowper-Andrewes 						    svc, status);
224d03e4ae8SJonathan Cowper-Andrewes 						exit_code = 1;
225d03e4ae8SJonathan Cowper-Andrewes 					}
226f0b87b90Ssonam gupta - Sun Microsystems - Bangalore India 					/*
227f0b87b90Ssonam gupta - Sun Microsystems - Bangalore India 					 * If job-id-requested exists for this
228f0b87b90Ssonam gupta - Sun Microsystems - Bangalore India 					 * job-id then that should be displayed
229f0b87b90Ssonam gupta - Sun Microsystems - Bangalore India 					 */
230f0b87b90Ssonam gupta - Sun Microsystems - Bangalore India 					rid = get_job_id_requested(*jobs);
231dcf1b443Ssonam gupta - Sun Microsystems - Bangalore India 					if (rid >= 0)
232f0b87b90Ssonam gupta - Sun Microsystems - Bangalore India 						fprintf(OUT, "%s-%d: %s\n",
233f0b87b90Ssonam gupta - Sun Microsystems - Bangalore India 						    printer, rid, mesg);
234f0b87b90Ssonam gupta - Sun Microsystems - Bangalore India 					else
235f0b87b90Ssonam gupta - Sun Microsystems - Bangalore India 						fprintf(OUT, "%s-%d: %s\n",
236f0b87b90Ssonam gupta - Sun Microsystems - Bangalore India 						    printer, id, mesg);
237355b4669Sjacobs 				}
238d6083ba5Sjc144527 				papiJobListFree(jobs);
239355b4669Sjacobs 
240d6083ba5Sjc144527 			} else {
241d6083ba5Sjc144527 				/* Purging user's print jobs */
242d6083ba5Sjc144527 				exit_code = cancel_jobs_for_user(user,
243d6083ba5Sjc144527 				    encryption, printer);
244d6083ba5Sjc144527 			}
245d6083ba5Sjc144527 		}
246355b4669Sjacobs 		papiServiceDestroy(svc);
247355b4669Sjacobs 	}
248355b4669Sjacobs 
249d6083ba5Sjc144527 	if (optind == ac)
250d6083ba5Sjc144527 		exit_code = cancel_jobs_for_user(user, encryption, NULL);
251d6083ba5Sjc144527 
252355b4669Sjacobs 	return (exit_code);
253355b4669Sjacobs }
254