xref: /illumos-gate/usr/src/cmd/acctadm/utils.c (revision 4ac67f0276a8313b5cefec38af347b94b7bfb526)
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  */
217c478bd9Sstevel@tonic-gate /*
22074e084fSml  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
23d362b749Svk  * Use is subject to license terms.
247c478bd9Sstevel@tonic-gate  */
257c478bd9Sstevel@tonic-gate 
26074e084fSml #include <assert.h>
27074e084fSml #include <sys/types.h>
28074e084fSml #include <sys/acctctl.h>
297c478bd9Sstevel@tonic-gate #include <sys/param.h>
30074e084fSml #include <sys/stat.h>
317c478bd9Sstevel@tonic-gate #include <libintl.h>
327c478bd9Sstevel@tonic-gate #include <string.h>
337c478bd9Sstevel@tonic-gate #include <stdlib.h>
347c478bd9Sstevel@tonic-gate #include <stdarg.h>
357c478bd9Sstevel@tonic-gate #include <stdio.h>
36074e084fSml #include <strings.h>
37074e084fSml #include <unistd.h>
387c478bd9Sstevel@tonic-gate #include <errno.h>
39074e084fSml #include <exacct.h>
40074e084fSml #include <fcntl.h>
41074e084fSml #include <priv.h>
427c478bd9Sstevel@tonic-gate 
437c478bd9Sstevel@tonic-gate #include "utils.h"
447c478bd9Sstevel@tonic-gate 
457c478bd9Sstevel@tonic-gate static char PNAME_FMT[] = "%s: ";
467c478bd9Sstevel@tonic-gate static char ERRNO_FMT[] = ": %s\n";
477c478bd9Sstevel@tonic-gate 
487c478bd9Sstevel@tonic-gate static char *pname;
497c478bd9Sstevel@tonic-gate 
507c478bd9Sstevel@tonic-gate /*PRINTFLIKE1*/
517c478bd9Sstevel@tonic-gate void
52d362b749Svk warn(const char *format, ...)
537c478bd9Sstevel@tonic-gate {
547c478bd9Sstevel@tonic-gate 	int err = errno;
557c478bd9Sstevel@tonic-gate 	va_list alist;
567c478bd9Sstevel@tonic-gate 	if (pname != NULL)
577c478bd9Sstevel@tonic-gate 		(void) fprintf(stderr, gettext(PNAME_FMT), pname);
587c478bd9Sstevel@tonic-gate 	va_start(alist, format);
597c478bd9Sstevel@tonic-gate 	(void) vfprintf(stderr, format, alist);
607c478bd9Sstevel@tonic-gate 	va_end(alist);
617c478bd9Sstevel@tonic-gate 	if (strchr(format, '\n') == NULL)
627c478bd9Sstevel@tonic-gate 		(void) fprintf(stderr, gettext(ERRNO_FMT), strerror(err));
637c478bd9Sstevel@tonic-gate }
647c478bd9Sstevel@tonic-gate 
657c478bd9Sstevel@tonic-gate /*PRINTFLIKE1*/
667c478bd9Sstevel@tonic-gate void
677c478bd9Sstevel@tonic-gate die(char *format, ...)
687c478bd9Sstevel@tonic-gate {
697c478bd9Sstevel@tonic-gate 	int err = errno;
707c478bd9Sstevel@tonic-gate 	va_list alist;
717c478bd9Sstevel@tonic-gate 
727c478bd9Sstevel@tonic-gate 	if (pname != NULL)
737c478bd9Sstevel@tonic-gate 		(void) fprintf(stderr, gettext(PNAME_FMT), pname);
747c478bd9Sstevel@tonic-gate 	va_start(alist, format);
757c478bd9Sstevel@tonic-gate 	(void) vfprintf(stderr, format, alist);
767c478bd9Sstevel@tonic-gate 	va_end(alist);
777c478bd9Sstevel@tonic-gate 	if (strchr(format, '\n') == NULL)
787c478bd9Sstevel@tonic-gate 		(void) fprintf(stderr, gettext(ERRNO_FMT), strerror(err));
79*4ac67f02SAnurag S. Maskey 
80*4ac67f02SAnurag S. Maskey 	/* close the libdladm handle if it was opened */
81*4ac67f02SAnurag S. Maskey 	if (dld_handle != NULL)
82*4ac67f02SAnurag S. Maskey 		dladm_close(dld_handle);
83*4ac67f02SAnurag S. Maskey 
847c478bd9Sstevel@tonic-gate 	exit(E_ERROR);
857c478bd9Sstevel@tonic-gate }
867c478bd9Sstevel@tonic-gate 
877c478bd9Sstevel@tonic-gate char *
887c478bd9Sstevel@tonic-gate setprogname(char *arg0)
897c478bd9Sstevel@tonic-gate {
907c478bd9Sstevel@tonic-gate 	char *p = strrchr(arg0, '/');
917c478bd9Sstevel@tonic-gate 
927c478bd9Sstevel@tonic-gate 	if (p == NULL)
937c478bd9Sstevel@tonic-gate 		p = arg0;
947c478bd9Sstevel@tonic-gate 	else
957c478bd9Sstevel@tonic-gate 		p++;
967c478bd9Sstevel@tonic-gate 	pname = p;
977c478bd9Sstevel@tonic-gate 	return (pname);
987c478bd9Sstevel@tonic-gate }
997c478bd9Sstevel@tonic-gate 
100074e084fSml /*
101074e084fSml  * Return the localized name of an accounting type.
102074e084fSml  */
103074e084fSml const char *
104074e084fSml ac_type_name(int type)
105074e084fSml {
106074e084fSml 	switch (type) {
107074e084fSml 	case AC_PROC:
108074e084fSml 		return (gettext("process"));
109074e084fSml 	case AC_FLOW:
110074e084fSml 		return (gettext("flow"));
111074e084fSml 	case AC_TASK:
112074e084fSml 		return (gettext("task"));
113da14cebeSEric Cheng 	case AC_NET:
114da14cebeSEric Cheng 		return (gettext("net"));
115074e084fSml 	default:
116074e084fSml 		die(gettext("invalid type %d\n"), type);
117074e084fSml 	}
118074e084fSml 	/* NOTREACHED */
119074e084fSml 	return (NULL);
120074e084fSml }
121074e084fSml 
122074e084fSml /*
123074e084fSml  * Open an accounting file.  The filename specified must be an absolute
124074e084fSml  * pathname and the existing contents of the file (if any) must be of the
125074e084fSml  * requested type.  Needs euid 0 to open the root-owned accounting file.
126074e084fSml  * file_dac_write is required to create a new file in a directory not owned
127074e084fSml  * by root (/var/adm/exacct is owned by 'adm').  Assumes sys_acct privilege is
128074e084fSml  * already asserted by caller.
129074e084fSml  */
1307c478bd9Sstevel@tonic-gate int
131074e084fSml open_exacct_file(const char *file, int type)
1327c478bd9Sstevel@tonic-gate {
133074e084fSml 	int rc;
134074e084fSml 	int err;
135074e084fSml 
136074e084fSml 	if (file[0] != '/') {
137074e084fSml 		warn(gettext("%s is not an absolute pathname\n"), file);
138074e084fSml 		return (-1);
1397c478bd9Sstevel@tonic-gate 	}
140074e084fSml 	if (!verify_exacct_file(file, type)) {
141074e084fSml 		warn(gettext("%s is not a %s accounting file\n"), file,
142074e084fSml 		    ac_type_name(type));
143074e084fSml 		return (-1);
144074e084fSml 	}
145074e084fSml 	if (seteuid(0) == -1 || setegid(0) == -1) {
146074e084fSml 		warn(gettext("seteuid()/setegid() failed"));
147074e084fSml 		return (-1);
148074e084fSml 	}
149074e084fSml 	assert(priv_ineffect(PRIV_SYS_ACCT));
150074e084fSml 	(void) priv_set(PRIV_ON, PRIV_EFFECTIVE, PRIV_FILE_DAC_WRITE, NULL);
151074e084fSml 	rc = acctctl(type | AC_FILE_SET, (void *) file, strlen(file) + 1);
152074e084fSml 	if (rc == -1 && (err = errno) == EBUSY) {
153074e084fSml 		char name[MAXPATHLEN];
154074e084fSml 		struct stat cur;
155074e084fSml 		struct stat new;
156074e084fSml 
157074e084fSml 		/*
158074e084fSml 		 * The file is already open as an accounting file somewhere.
159074e084fSml 		 * If the file we're trying to open is the same as we have
160074e084fSml 		 * currently open then we're ok.
161074e084fSml 		 */
162074e084fSml 		if (acctctl(type | AC_FILE_GET, name, sizeof (name)) == 0 &&
163074e084fSml 		    stat(file, &new) != -1 && stat(name, &cur) != -1 &&
164074e084fSml 		    new.st_dev == cur.st_dev && new.st_ino == cur.st_ino)
165074e084fSml 			rc = 0;
166074e084fSml 	}
167074e084fSml 
168074e084fSml 	/*
169074e084fSml 	 * euid 0, egid 0 and the file_dac_write privilege are no longer
170074e084fSml 	 * required; give them up permanently.
171074e084fSml 	 */
172074e084fSml 	(void) priv_set(PRIV_OFF, PRIV_PERMITTED, PRIV_FILE_DAC_WRITE, NULL);
173074e084fSml 	if (setreuid(getuid(), getuid()) == -1 ||
174074e084fSml 	    setregid(getgid(), getgid()) == -1)
175074e084fSml 		die(gettext("setreuid()/setregid() failed"));
176074e084fSml 	if (rc == 0)
1777c478bd9Sstevel@tonic-gate 		return (0);
178074e084fSml 
179074e084fSml 	warn(gettext("cannot open %s accounting file %s: %s\n"),
180074e084fSml 	    ac_type_name(type), file, strerror(err));
181074e084fSml 	return (-1);
182074e084fSml }
183074e084fSml 
184074e084fSml /*
185074e084fSml  * Verify that the file contents (if any) are extended accounting records
186074e084fSml  * of the desired type.
187074e084fSml  */
188074e084fSml boolean_t
189074e084fSml verify_exacct_file(const char *file, int type)
190074e084fSml {
191074e084fSml 	ea_file_t ef;
192074e084fSml 	ea_object_t eo;
193074e084fSml 	struct stat st;
194074e084fSml 	int err;
195074e084fSml 
196074e084fSml 	if (stat(file, &st) != -1 && st.st_size != 0) {
197074e084fSml 		if (seteuid(0) == -1)
198074e084fSml 			return (B_FALSE);
199074e084fSml 		err = ea_open(&ef, file, "SunOS", EO_TAIL, O_RDONLY, 0);
200074e084fSml 		if (seteuid(getuid()) == 1)
201074e084fSml 			die(gettext("seteuid() failed"));
202074e084fSml 		if (err == -1)
203074e084fSml 			return (B_FALSE);
204074e084fSml 
205074e084fSml 		bzero(&eo, sizeof (eo));
206074e084fSml 		if (ea_previous_object(&ef, &eo) == EO_ERROR) {
207074e084fSml 			/*
208074e084fSml 			 * EXR_EOF indicates there are no non-header objects
209074e084fSml 			 * in the file.  It can't be determined that this
210074e084fSml 			 * file is or is not the proper type of extended
211074e084fSml 			 * accounting file, which isn't necessarily an error.
212074e084fSml 			 * Since it is a proper (albeit empty) extended
213074e084fSml 			 * accounting file, it matches any desired type.
214074e084fSml 			 *
215074e084fSml 			 * if ea_previous_object() failed for any other reason
216074e084fSml 			 * than EXR_EOF, the file must be corrupt.
217074e084fSml 			 */
218074e084fSml 			if (ea_error() != EXR_EOF) {
219074e084fSml 				(void) ea_close(&ef);
220074e084fSml 				return (B_FALSE);
221074e084fSml 			}
222074e084fSml 		} else {
223074e084fSml 			/*
224074e084fSml 			 * A non-header object exists.  Insist that it be
225da14cebeSEric Cheng 			 * either a process, task, flow  or net accounting
226da14cebeSEric Cheng 			 * record, the same type as is desired.
227da14cebeSEric Cheng 			 * xxx-venu:check 101 merge for EXD_GROUP_NET_*
228074e084fSml 			 */
229074e084fSml 			uint_t c = eo.eo_catalog & EXD_DATA_MASK;
230074e084fSml 
231074e084fSml 			if (eo.eo_type != EO_GROUP ||
232074e084fSml 			    (eo.eo_catalog & EXC_CATALOG_MASK) != EXC_NONE ||
233074e084fSml 			    (!(c == EXD_GROUP_PROC && type == AC_PROC ||
234074e084fSml 			    c == EXD_GROUP_TASK && type == AC_TASK ||
235da14cebeSEric Cheng 			    c == EXD_GROUP_FLOW && type == AC_FLOW ||
236da14cebeSEric Cheng 			    (c == EXD_GROUP_NET_LINK_DESC ||
237da14cebeSEric Cheng 			    c == EXD_GROUP_NET_FLOW_DESC ||
238da14cebeSEric Cheng 			    c == EXD_GROUP_NET_LINK_STATS ||
239da14cebeSEric Cheng 			    c == EXD_GROUP_NET_FLOW_STATS) &&
240da14cebeSEric Cheng 			    type == AC_NET))) {
241074e084fSml 				(void) ea_close(&ef);
242074e084fSml 				return (B_FALSE);
243074e084fSml 			}
244074e084fSml 		}
245074e084fSml 		(void) ea_close(&ef);
2467c478bd9Sstevel@tonic-gate 	}
247074e084fSml 	return (B_TRUE);
2487c478bd9Sstevel@tonic-gate }
249