xref: /illumos-gate/usr/src/cmd/rctladm/utils.c (revision 6a634c9d)
17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate  * CDDL HEADER START
37c478bd9Sstevel@tonic-gate  *
47c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
5d362b749Svk  * Common Development and Distribution License (the "License").
6d362b749Svk  * You may not use this file except in compliance with the License.
77c478bd9Sstevel@tonic-gate  *
87c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
97c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
107c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
117c478bd9Sstevel@tonic-gate  * and limitations under the License.
127c478bd9Sstevel@tonic-gate  *
137c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
147c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
157c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
167c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
177c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
187c478bd9Sstevel@tonic-gate  *
197c478bd9Sstevel@tonic-gate  * CDDL HEADER END
207c478bd9Sstevel@tonic-gate  */
21*23a1cceaSRoger A. Faulkner 
227c478bd9Sstevel@tonic-gate /*
23*23a1cceaSRoger A. Faulkner  * Copyright (c) 2001, 2010, Oracle and/or its affiliates. All rights reserved.
247c478bd9Sstevel@tonic-gate  */
257c478bd9Sstevel@tonic-gate 
267c478bd9Sstevel@tonic-gate #include <sys/param.h>
277c478bd9Sstevel@tonic-gate #include <libintl.h>
287c478bd9Sstevel@tonic-gate #include <string.h>
297c478bd9Sstevel@tonic-gate #include <stdlib.h>
307c478bd9Sstevel@tonic-gate #include <stdarg.h>
317c478bd9Sstevel@tonic-gate #include <stdio.h>
327c478bd9Sstevel@tonic-gate #include <errno.h>
337c478bd9Sstevel@tonic-gate 
347c478bd9Sstevel@tonic-gate #include "utils.h"
357c478bd9Sstevel@tonic-gate 
367c478bd9Sstevel@tonic-gate static char PNAME_FMT[] = "%s: ";
377c478bd9Sstevel@tonic-gate static char ERRNO_FMT[] = ": %s\n";
387c478bd9Sstevel@tonic-gate 
397c478bd9Sstevel@tonic-gate static char *pname;
407c478bd9Sstevel@tonic-gate 
417c478bd9Sstevel@tonic-gate /*PRINTFLIKE1*/
427c478bd9Sstevel@tonic-gate void
warn(const char * format,...)43d362b749Svk warn(const char *format, ...)
447c478bd9Sstevel@tonic-gate {
457c478bd9Sstevel@tonic-gate 	int err = errno;
467c478bd9Sstevel@tonic-gate 	va_list alist;
477c478bd9Sstevel@tonic-gate 	if (pname != NULL)
487c478bd9Sstevel@tonic-gate 		(void) fprintf(stderr, gettext(PNAME_FMT), pname);
497c478bd9Sstevel@tonic-gate 	va_start(alist, format);
507c478bd9Sstevel@tonic-gate 	(void) vfprintf(stderr, format, alist);
517c478bd9Sstevel@tonic-gate 	va_end(alist);
527c478bd9Sstevel@tonic-gate 	if (strchr(format, '\n') == NULL)
537c478bd9Sstevel@tonic-gate 		(void) fprintf(stderr, gettext(ERRNO_FMT), strerror(err));
547c478bd9Sstevel@tonic-gate }
557c478bd9Sstevel@tonic-gate 
567c478bd9Sstevel@tonic-gate /*PRINTFLIKE1*/
577c478bd9Sstevel@tonic-gate void
die(char * format,...)587c478bd9Sstevel@tonic-gate die(char *format, ...)
597c478bd9Sstevel@tonic-gate {
607c478bd9Sstevel@tonic-gate 	int err = errno;
617c478bd9Sstevel@tonic-gate 	va_list alist;
627c478bd9Sstevel@tonic-gate 
637c478bd9Sstevel@tonic-gate 	if (pname != NULL)
647c478bd9Sstevel@tonic-gate 		(void) fprintf(stderr, gettext(PNAME_FMT), pname);
657c478bd9Sstevel@tonic-gate 	va_start(alist, format);
667c478bd9Sstevel@tonic-gate 	(void) vfprintf(stderr, format, alist);
677c478bd9Sstevel@tonic-gate 	va_end(alist);
687c478bd9Sstevel@tonic-gate 	if (strchr(format, '\n') == NULL)
697c478bd9Sstevel@tonic-gate 		(void) fprintf(stderr, gettext(ERRNO_FMT), strerror(err));
707c478bd9Sstevel@tonic-gate 	exit(E_ERROR);
717c478bd9Sstevel@tonic-gate }
727c478bd9Sstevel@tonic-gate 
737c478bd9Sstevel@tonic-gate char *
setpname(char * arg0)74*23a1cceaSRoger A. Faulkner setpname(char *arg0)
757c478bd9Sstevel@tonic-gate {
767c478bd9Sstevel@tonic-gate 	char *p = strrchr(arg0, '/');
777c478bd9Sstevel@tonic-gate 
787c478bd9Sstevel@tonic-gate 	if (p == NULL)
797c478bd9Sstevel@tonic-gate 		p = arg0;
807c478bd9Sstevel@tonic-gate 	else
817c478bd9Sstevel@tonic-gate 		p++;
827c478bd9Sstevel@tonic-gate 	pname = p;
837c478bd9Sstevel@tonic-gate 	return (pname);
847c478bd9Sstevel@tonic-gate }
85