/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2003 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
#include <sys/systeminfo.h>
#include <bsm/audit_uevents.h>
#include <bsm/audit_private.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <pwd.h>
#include <locale.h>
#include "generic.h"
#define AUDIT_GET_DIFFS_CRONTAB 0
char **bufptr);
int
{
int r, create = 0;
if (cannot_audit(0)) {
return (0);
} else {
char *anc_name;
return (-1);
}
if (r == AUDIT_GET_DIFFS_NO_DIFFS) {
return (0);
}
}
if (r == AUDIT_GET_DIFFS_NO_CRONTAB) {
create = 1;
aug_save_text("");
}
/*
* create an ancilary file if audit characteristics exist
* else delete an ancilary if if one exists
*/
r = -1;
else if (audit_crontab_process_not_audited()) {
} else {
}
aug_init();
aug_save_euid(geteuid());
aug_save_egid(getegid());
aug_save_uid(getuid());
aug_save_gid(getgid());
aug_save_pid(getpid());
if (aug_audit() != 0)
return (-1);
return (r);
}
}
int
{
int r = 0;
if (cannot_audit(0)) {
return (0);
} else {
char *anc_name;
} else
r = -1;
aug_init();
(void) aug_save_me();
if (aug_audit() != 0)
return (-1);
return (r);
}
}
/*
* gets differences between old and new crontab files.
* arguments:
* cf - name of crontab file
* tmp_name - name of new crontab file
* bufptr - pointer to an array of characters with
* either an error message or an output of "diff" command.
*
* results:
* AUDIT_GET_DIFFS_ERR - errors;
* file not exists (do not free *bufptr in this case)
* AUDIT_GET_DIFFS_NO_DIFFS - errors;
* file exists (do not free *bufptr in this case)
* AUDIT_GET_DIFFS_CRONTAB - OK, old crontab file exists.
* AUDIT_GET_DIFFS_NO_CRONTAB - OK. there is no crontab file.
*/
static int
{
if (seteuid(0) == -1) {
r = AUDIT_GET_DIFFS_ERR;
goto exit_diff;
}
} else {
r = AUDIT_GET_DIFFS_ERR;
"crontab: %s: stat: %s\n",
goto exit_diff;
}
len = 0;
} else
r = AUDIT_GET_DIFFS_ERR;
"crontab: %s: stat: %s\n",
goto exit_diff;
}
/* there is no difference */
goto exit_diff;
}
/* return information on create or update crontab */
switch (r) {
case AUDIT_GET_DIFFS_ERR:
break;
case AUDIT_GET_DIFFS_NO_DIFFS:
break;
case AUDIT_GET_DIFFS_CRONTAB:
} else {
}
}
break;
} else {
}
}
break;
}
return (r);
}
/*
* audit_crontab_not_allowed determines if we have a case that should be audited
* but we can't. If auditing is enabled but the current process is not
* audited, then the ruid of the user doing the editing must be the owner
* id of the file to be edited.
*
* When audit_crontab_not_allowed is called, ruid is for the crontab file
* to be modified or created.
*/
int
if (!cannot_audit(0)) { /* allow access if audit off */
rc = 0; /* editing his own crontab */
else
}
return (rc);
}
int
int rc;
rc = 0; /* audit failure: not enabled */
else
return (rc);
}