Home | History | Annotate | Download | only in bsd-sysv-commands
      1 /*
      2  * CDDL HEADER START
      3  *
      4  * The contents of this file are subject to the terms of the
      5  * Common Development and Distribution License (the "License").
      6  * You may not use this file except in compliance with the License.
      7  *
      8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
      9  * or http://www.opensolaris.org/os/licensing.
     10  * See the License for the specific language governing permissions
     11  * and limitations under the License.
     12  *
     13  * When distributing Covered Code, include this CDDL HEADER in each
     14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
     15  * If applicable, add the following below this CDDL HEADER, with the
     16  * fields enclosed by brackets "[]" replaced with your own identifying
     17  * information: Portions Copyright [yyyy] [name of copyright owner]
     18  *
     19  * CDDL HEADER END
     20  */
     21 
     22 /*
     23  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
     24  * Use is subject to license terms.
     25  *
     26  */
     27 
     28 /* $Id: reject.c 146 2006-03-24 00:26:54Z njacobs $ */
     29 
     30 
     31 #include <stdio.h>
     32 #include <stdlib.h>
     33 #include <unistd.h>
     34 #include <string.h>
     35 #include <locale.h>
     36 #include <libintl.h>
     37 #include <papi.h>
     38 #include "common.h"
     39 
     40 static void
     41 usage(char *program)
     42 {
     43 	char *name;
     44 
     45 	if ((name = strrchr(program, '/')) == NULL)
     46 		name = program;
     47 	else
     48 		name++;
     49 
     50 	fprintf(stdout,
     51 	    gettext("Usage: %s destination ...\n"),
     52 	    name);
     53 	exit(1);
     54 }
     55 
     56 int
     57 main(int ac, char *av[])
     58 {
     59 	papi_status_t status;
     60 	papi_service_t svc = NULL;
     61 	papi_encryption_t encryption = PAPI_ENCRYPT_NEVER;
     62 	char *reason = NULL;
     63 	int exit_status = 0;
     64 	int c = 1;
     65 
     66 	(void) setlocale(LC_ALL, "");
     67 	(void) textdomain("SUNW_OST_OSCMD");
     68 
     69 	while ((c = getopt(ac, av, "Er:")) != EOF)
     70 		switch (c) {
     71 		case 'r':	/* reason */
     72 			reason = optarg;
     73 			break;
     74 		case 'E':
     75 			encryption = PAPI_ENCRYPT_ALWAYS;
     76 			break;
     77 		default:
     78 			usage(av[0]);
     79 		}
     80 
     81 	if (ac <= optind)
     82 		usage(av[0]);
     83 
     84 	while (optind < ac) {
     85 		char *printer = av[optind++];
     86 
     87 		status = papiServiceCreate(&svc, printer, NULL, NULL,
     88 		    cli_auth_callback, encryption, NULL);
     89 		if (status != PAPI_OK) {
     90 			fprintf(stderr, gettext(
     91 			    "Failed to contact service for %s: %s\n"),
     92 			    printer, verbose_papi_message(svc, status));
     93 			exit_status = 1;
     94 		}
     95 
     96 		status = papiPrinterPause(svc, printer, reason);
     97 		if (status == PAPI_OK) {
     98 			printf(gettext(
     99 			    "Destination \"%s\" will no longer "
    100 			    "accept requests\n"), printer);
    101 		} else if (status == PAPI_NOT_ACCEPTING) {
    102 			fprintf(stderr, gettext(
    103 			    "Destination \"%s\" was already not "
    104 			    "accepting requests.\n"), printer);
    105 			exit_status = 1;
    106 		} else {
    107 			/* The operation is not supported in lpd protocol */
    108 			if (status == PAPI_OPERATION_NOT_SUPPORTED) {
    109 				fprintf(stderr,
    110 				    verbose_papi_message(svc, status));
    111 			} else {
    112 				fprintf(stderr, gettext("reject: %s: %s\n"),
    113 				    printer, verbose_papi_message(svc, status));
    114 			}
    115 			exit_status = 1;
    116 		}
    117 
    118 		papiServiceDestroy(svc);
    119 	}
    120 
    121 	return (exit_status);
    122 }
    123