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 5d362b749Svk199839 * Common Development and Distribution License (the "License"). 6d362b749Svk199839 * 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) 2000, 2010, Oracle and/or its affiliates. All rights reserved. 247c478bd9Sstevel@tonic-gate */ 257c478bd9Sstevel@tonic-gate 26074e084fSml93401 #include <assert.h> 27074e084fSml93401 #include <sys/types.h> 28074e084fSml93401 #include <sys/acctctl.h> 297c478bd9Sstevel@tonic-gate #include <sys/param.h> 30074e084fSml93401 #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> 36074e084fSml93401 #include <strings.h> 37074e084fSml93401 #include <unistd.h> 387c478bd9Sstevel@tonic-gate #include <errno.h> 39074e084fSml93401 #include <exacct.h> 40074e084fSml93401 #include <fcntl.h> 41074e084fSml93401 #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 52d362b749Svk199839 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)); 794ac67f02SAnurag S. Maskey 804ac67f02SAnurag S. Maskey /* close the libdladm handle if it was opened */ 814ac67f02SAnurag S. Maskey if (dld_handle != NULL) 824ac67f02SAnurag S. Maskey dladm_close(dld_handle); 834ac67f02SAnurag S. Maskey 847c478bd9Sstevel@tonic-gate exit(E_ERROR); 857c478bd9Sstevel@tonic-gate } 867c478bd9Sstevel@tonic-gate 877c478bd9Sstevel@tonic-gate char * 88*23a1cceaSRoger A. Faulkner setpname(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 100074e084fSml93401 /* 101074e084fSml93401 * Return the localized name of an accounting type. 102074e084fSml93401 */ 103074e084fSml93401 const char * 104074e084fSml93401 ac_type_name(int type) 1057c478bd9Sstevel@tonic-gate { 106074e084fSml93401 switch (type) { 107074e084fSml93401 case AC_PROC: 108074e084fSml93401 return (gettext("process")); 109074e084fSml93401 case AC_FLOW: 110074e084fSml93401 return (gettext("flow")); 111074e084fSml93401 case AC_TASK: 112074e084fSml93401 return (gettext("task")); 113da14cebeSEric Cheng case AC_NET: 114da14cebeSEric Cheng return (gettext("net")); 115074e084fSml93401 default: 116074e084fSml93401 die(gettext("invalid type %d\n"), type); 1177c478bd9Sstevel@tonic-gate } 118074e084fSml93401 /* NOTREACHED */ 119074e084fSml93401 return (NULL); 120074e084fSml93401 } 121074e084fSml93401 122074e084fSml93401 /* 123074e084fSml93401 * Open an accounting file. The filename specified must be an absolute 124074e084fSml93401 * pathname and the existing contents of the file (if any) must be of the 125074e084fSml93401 * requested type. Needs euid 0 to open the root-owned accounting file. 126074e084fSml93401 * file_dac_write is required to create a new file in a directory not owned 127074e084fSml93401 * by root (/var/adm/exacct is owned by 'adm'). Assumes sys_acct privilege is 128074e084fSml93401 * already asserted by caller. 129074e084fSml93401 */ 130074e084fSml93401 int 131074e084fSml93401 open_exacct_file(const char *file, int type) 132074e084fSml93401 { 133074e084fSml93401 int rc; 134074e084fSml93401 int err; 135074e084fSml93401 136074e084fSml93401 if (file[0] != '/') { 137074e084fSml93401 warn(gettext("%s is not an absolute pathname\n"), file); 138074e084fSml93401 return (-1); 139074e084fSml93401 } 140074e084fSml93401 if (!verify_exacct_file(file, type)) { 141074e084fSml93401 warn(gettext("%s is not a %s accounting file\n"), file, 142074e084fSml93401 ac_type_name(type)); 143074e084fSml93401 return (-1); 144074e084fSml93401 } 145074e084fSml93401 if (seteuid(0) == -1 || setegid(0) == -1) { 146074e084fSml93401 warn(gettext("seteuid()/setegid() failed")); 147074e084fSml93401 return (-1); 148074e084fSml93401 } 149074e084fSml93401 assert(priv_ineffect(PRIV_SYS_ACCT)); 150074e084fSml93401 (void) priv_set(PRIV_ON, PRIV_EFFECTIVE, PRIV_FILE_DAC_WRITE, NULL); 151074e084fSml93401 rc = acctctl(type | AC_FILE_SET, (void *) file, strlen(file) + 1); 152074e084fSml93401 if (rc == -1 && (err = errno) == EBUSY) { 153074e084fSml93401 char name[MAXPATHLEN]; 154074e084fSml93401 struct stat cur; 155074e084fSml93401 struct stat new; 156074e084fSml93401 157074e084fSml93401 /* 158074e084fSml93401 * The file is already open as an accounting file somewhere. 159074e084fSml93401 * If the file we're trying to open is the same as we have 160074e084fSml93401 * currently open then we're ok. 161074e084fSml93401 */ 162074e084fSml93401 if (acctctl(type | AC_FILE_GET, name, sizeof (name)) == 0 && 163074e084fSml93401 stat(file, &new) != -1 && stat(name, &cur) != -1 && 164074e084fSml93401 new.st_dev == cur.st_dev && new.st_ino == cur.st_ino) 165074e084fSml93401 rc = 0; 166074e084fSml93401 } 167074e084fSml93401 168074e084fSml93401 /* 169074e084fSml93401 * euid 0, egid 0 and the file_dac_write privilege are no longer 170074e084fSml93401 * required; give them up permanently. 171074e084fSml93401 */ 172074e084fSml93401 (void) priv_set(PRIV_OFF, PRIV_PERMITTED, PRIV_FILE_DAC_WRITE, NULL); 173074e084fSml93401 if (setreuid(getuid(), getuid()) == -1 || 174074e084fSml93401 setregid(getgid(), getgid()) == -1) 175074e084fSml93401 die(gettext("setreuid()/setregid() failed")); 176074e084fSml93401 if (rc == 0) 1777c478bd9Sstevel@tonic-gate return (0); 178074e084fSml93401 179074e084fSml93401 warn(gettext("cannot open %s accounting file %s: %s\n"), 180074e084fSml93401 ac_type_name(type), file, strerror(err)); 181074e084fSml93401 return (-1); 1827c478bd9Sstevel@tonic-gate } 183074e084fSml93401 184074e084fSml93401 /* 185074e084fSml93401 * Verify that the file contents (if any) are extended accounting records 186074e084fSml93401 * of the desired type. 187074e084fSml93401 */ 188074e084fSml93401 boolean_t 189074e084fSml93401 verify_exacct_file(const char *file, int type) 190074e084fSml93401 { 191074e084fSml93401 ea_file_t ef; 192074e084fSml93401 ea_object_t eo; 193074e084fSml93401 struct stat st; 194074e084fSml93401 int err; 195074e084fSml93401 196074e084fSml93401 if (stat(file, &st) != -1 && st.st_size != 0) { 197074e084fSml93401 if (seteuid(0) == -1) 198074e084fSml93401 return (B_FALSE); 199074e084fSml93401 err = ea_open(&ef, file, "SunOS", EO_TAIL, O_RDONLY, 0); 200074e084fSml93401 if (seteuid(getuid()) == 1) 201074e084fSml93401 die(gettext("seteuid() failed")); 202074e084fSml93401 if (err == -1) 203074e084fSml93401 return (B_FALSE); 204074e084fSml93401 205074e084fSml93401 bzero(&eo, sizeof (eo)); 206074e084fSml93401 if (ea_previous_object(&ef, &eo) == EO_ERROR) { 207074e084fSml93401 /* 208074e084fSml93401 * EXR_EOF indicates there are no non-header objects 209074e084fSml93401 * in the file. It can't be determined that this 210074e084fSml93401 * file is or is not the proper type of extended 211074e084fSml93401 * accounting file, which isn't necessarily an error. 212074e084fSml93401 * Since it is a proper (albeit empty) extended 213074e084fSml93401 * accounting file, it matches any desired type. 214074e084fSml93401 * 215074e084fSml93401 * if ea_previous_object() failed for any other reason 216074e084fSml93401 * than EXR_EOF, the file must be corrupt. 217074e084fSml93401 */ 218074e084fSml93401 if (ea_error() != EXR_EOF) { 219074e084fSml93401 (void) ea_close(&ef); 220074e084fSml93401 return (B_FALSE); 221074e084fSml93401 } 222074e084fSml93401 } else { 223074e084fSml93401 /* 224074e084fSml93401 * 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_* 228074e084fSml93401 */ 229074e084fSml93401 uint_t c = eo.eo_catalog & EXD_DATA_MASK; 230074e084fSml93401 231074e084fSml93401 if (eo.eo_type != EO_GROUP || 232074e084fSml93401 (eo.eo_catalog & EXC_CATALOG_MASK) != EXC_NONE || 233074e084fSml93401 (!(c == EXD_GROUP_PROC && type == AC_PROC || 234074e084fSml93401 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))) { 241074e084fSml93401 (void) ea_close(&ef); 242074e084fSml93401 return (B_FALSE); 243074e084fSml93401 } 244074e084fSml93401 } 245074e084fSml93401 (void) ea_close(&ef); 246074e084fSml93401 } 247074e084fSml93401 return (B_TRUE); 2487c478bd9Sstevel@tonic-gate } 249