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 5*d362b749Svk199839 * Common Development and Distribution License (the "License"). 6*d362b749Svk199839 * 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 */ 217c478bd9Sstevel@tonic-gate /* 22*d362b749Svk199839 * Copyright 2007 Sun Microsystems, Inc. All rights reserved. 23*d362b749Svk199839 * Use is subject to license terms. 247c478bd9Sstevel@tonic-gate */ 257c478bd9Sstevel@tonic-gate 267c478bd9Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 277c478bd9Sstevel@tonic-gate 287c478bd9Sstevel@tonic-gate #include <sys/param.h> 297c478bd9Sstevel@tonic-gate #include <libintl.h> 307c478bd9Sstevel@tonic-gate #include <string.h> 317c478bd9Sstevel@tonic-gate #include <stdlib.h> 327c478bd9Sstevel@tonic-gate #include <stdarg.h> 337c478bd9Sstevel@tonic-gate #include <stdio.h> 347c478bd9Sstevel@tonic-gate #include <errno.h> 357c478bd9Sstevel@tonic-gate 367c478bd9Sstevel@tonic-gate #include "utils.h" 377c478bd9Sstevel@tonic-gate 387c478bd9Sstevel@tonic-gate static char PNAME_FMT[] = "%s: "; 397c478bd9Sstevel@tonic-gate static char ERRNO_FMT[] = ": %s\n"; 407c478bd9Sstevel@tonic-gate 417c478bd9Sstevel@tonic-gate static char *pname; 427c478bd9Sstevel@tonic-gate 437c478bd9Sstevel@tonic-gate /*PRINTFLIKE1*/ 447c478bd9Sstevel@tonic-gate void 45*d362b749Svk199839 warn(const char *format, ...) 467c478bd9Sstevel@tonic-gate { 477c478bd9Sstevel@tonic-gate int err = errno; 487c478bd9Sstevel@tonic-gate va_list alist; 497c478bd9Sstevel@tonic-gate if (pname != NULL) 507c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext(PNAME_FMT), pname); 517c478bd9Sstevel@tonic-gate va_start(alist, format); 527c478bd9Sstevel@tonic-gate (void) vfprintf(stderr, format, alist); 537c478bd9Sstevel@tonic-gate va_end(alist); 547c478bd9Sstevel@tonic-gate if (strchr(format, '\n') == NULL) 557c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext(ERRNO_FMT), strerror(err)); 567c478bd9Sstevel@tonic-gate } 577c478bd9Sstevel@tonic-gate 587c478bd9Sstevel@tonic-gate /*PRINTFLIKE1*/ 597c478bd9Sstevel@tonic-gate void 607c478bd9Sstevel@tonic-gate die(char *format, ...) 617c478bd9Sstevel@tonic-gate { 627c478bd9Sstevel@tonic-gate int err = errno; 637c478bd9Sstevel@tonic-gate va_list alist; 647c478bd9Sstevel@tonic-gate 657c478bd9Sstevel@tonic-gate if (pname != NULL) 667c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext(PNAME_FMT), pname); 677c478bd9Sstevel@tonic-gate va_start(alist, format); 687c478bd9Sstevel@tonic-gate (void) vfprintf(stderr, format, alist); 697c478bd9Sstevel@tonic-gate va_end(alist); 707c478bd9Sstevel@tonic-gate if (strchr(format, '\n') == NULL) 717c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext(ERRNO_FMT), strerror(err)); 727c478bd9Sstevel@tonic-gate exit(E_ERROR); 737c478bd9Sstevel@tonic-gate } 747c478bd9Sstevel@tonic-gate 757c478bd9Sstevel@tonic-gate char * 767c478bd9Sstevel@tonic-gate setprogname(char *arg0) 777c478bd9Sstevel@tonic-gate { 787c478bd9Sstevel@tonic-gate char *p = strrchr(arg0, '/'); 797c478bd9Sstevel@tonic-gate 807c478bd9Sstevel@tonic-gate if (p == NULL) 817c478bd9Sstevel@tonic-gate p = arg0; 827c478bd9Sstevel@tonic-gate else 837c478bd9Sstevel@tonic-gate p++; 847c478bd9Sstevel@tonic-gate pname = p; 857c478bd9Sstevel@tonic-gate return (pname); 867c478bd9Sstevel@tonic-gate } 877c478bd9Sstevel@tonic-gate 887c478bd9Sstevel@tonic-gate int 897c478bd9Sstevel@tonic-gate valid_abspath(char *p) 907c478bd9Sstevel@tonic-gate { 917c478bd9Sstevel@tonic-gate if (p[0] != '/') { 927c478bd9Sstevel@tonic-gate die(gettext("%s is not an absolute pathname\n"), p); 937c478bd9Sstevel@tonic-gate } 947c478bd9Sstevel@tonic-gate if (strlen(p) > MAXPATHLEN) { 957c478bd9Sstevel@tonic-gate errno = ENAMETOOLONG; 967c478bd9Sstevel@tonic-gate return (0); 977c478bd9Sstevel@tonic-gate } 987c478bd9Sstevel@tonic-gate return (1); 997c478bd9Sstevel@tonic-gate } 100