1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330
|
/* Copyright 1988,1990,1993,1994 by Paul Vixie
* All rights reserved
*
* Distribute freely, except: don't remove my name from the source or
* documentation (don't take credit for my work), mark your changes (don't
* get me blamed for your possible bugs), don't alter or remove this
* notice. May be sold if buildable source is provided to buyer. No
* warrantee of any kind, express or implied, is included with this
* software; use at your own risk, responsibility for damages (if any) to
* anyone resulting from the use of this software rests entirely with the
* user.
*
* Send bug reports, bug fixes, enhancements, requests, flames, etc., and
* I'll try to keep a version up to date. I can be reached as follows:
* Paul Vixie <paul@vix.com> uunet!decwrl!vixie!paul
*/
#if !defined(lint) && !defined(LINT)
static char rcsid[] = "$Id: user.c,v 2.8 1994/01/15 20:43:43 vixie Exp $";
#endif
/* vix 26jan87 [log is in RCS file]
*/
#include <syslog.h>
#include <string.h>
#include "cron.h"
#ifdef WITH_SELINUX
#include <selinux/context.h>
#include <selinux/selinux.h>
#include <selinux/get_context_list.h>
static int get_security_context(char *name, int crontab_fd, security_context_t
*rcontext, char *tabname) {
security_context_t *context_list = NULL;
security_context_t current_con;
int list_count = 0;
security_context_t file_context=NULL;
struct av_decision avd;
int retval=0;
char *seuser = NULL;
char *level = NULL;
int i;
if (getcon(¤t_con)) {
log_it(name, getpid(), "Can't get current context", tabname);
return -1;
}
if (name != NULL) {
if (getseuserbyname(name, &seuser, &level)) {
log_it(name, getpid(), "getseuserbyname FAILED", tabname);
freecon(current_con);
return (security_getenforce() > 0);
}
} else {
context_t temp_con = context_new(current_con);
if (temp_con == NULL) {
log_it(name, getpid(), "context_new FAILED", tabname);
freecon(current_con);
return (security_getenforce() > 0);
}
seuser = strdup(context_user_get(temp_con));
context_free(temp_con);
}
*rcontext = NULL;
list_count = get_ordered_context_list_with_level(seuser, level, current_con, &context_list);
freecon(current_con);
free(seuser);
free(level);
if (list_count == -1) {
if (security_getenforce() > 0) {
log_it(name, getpid(), "No SELinux security context", tabname);
return -1;
} else {
log_it(name, getpid(),
"No security context but SELinux in permissive mode,"
" continuing", tabname);
return 0;
}
}
if (fgetfilecon(crontab_fd, &file_context) < OK) {
if (security_getenforce() > 0) {
log_it(name, getpid(), "getfilecon FAILED", tabname);
freeconary(context_list);
return -1;
} else {
log_it(name, getpid(), "getfilecon FAILED but SELinux in "
"permissive mode, continuing", tabname);
*rcontext = strdup(context_list[0]);
freeconary(context_list);
return 0;
}
}
/*
* Since crontab files are not directly executed,
* crond must ensure that the crontab file has
* a context that is appropriate for the context of
* the user cron job. It performs an entrypoint
* permission check for this purpose.
*/
security_class_t tclass = string_to_security_class("file");
if (!tclass) {
log_it(name, getpid(), "Failed to translate security class file", tabname);
freeconary(context_list);
if (security_deny_unknown() == 0) {
return 0;
} else {
return -1;
}
}
access_vector_t bit = string_to_av_perm(tclass, "entrypoint");
if (!bit) {
log_it(name, getpid(), "Failed to translate av perm entrypoint", tabname);
freeconary(context_list);
if (security_deny_unknown() == 0) {
return 0;
} else {
return -1;
}
}
for (i = 0; i < list_count; i++) {
retval = security_compute_av(context_list[i],
file_context,
tclass,
bit,
&avd);
if(!retval && ((bit & avd.allowed) == bit)) {
*rcontext = strdup(context_list[i]);
freecon(file_context);
freeconary(context_list);
return 0;
}
}
freecon(file_context);
if (security_getenforce() > 0) {
log_it(name, getpid(), "ENTRYPOINT FAILED", tabname);
freeconary(context_list);
return -1;
} else {
log_it(name, getpid(), "ENTRYPOINT FAILED but SELinux in permissive mode, continuing", tabname);
*rcontext = strdup(context_list[0]);
freeconary(context_list);
}
return 0;
}
#endif
/* Function used to log errors in crontabs from cron daemon. (User
crontabs are checked before they're accepted, but system crontabs
are not. */
static char *err_user = NULL;
void
crontab_error(msg)
char *msg;
{
const char *fn;
/* Figure out the file name from the username */
if (0 == strcmp(err_user, "*system*")) {
syslog(LOG_ERR|LOG_CRON, "Error: %s; while reading %s", msg, SYSCRONTAB);
} else if (0 == strncmp(err_user,"*system*",8)) {
fn = err_user+8;
syslog(LOG_ERR|LOG_CRON, "Error: %s; while reading %s/%s", msg,
SYSCRONDIR,fn);
} else {
syslog(LOG_ERR|LOG_CRON, "Error: %s; while reading crontab for user %s",
msg, err_user);
}
}
void
free_user(u)
user *u;
{
entry *e, *ne;
free(u->name);
for (e = u->crontab; e != NULL; e = ne) {
ne = e->next;
free_entry(e);
}
#ifdef WITH_SELINUX
if (u->scontext)
freecon(u->scontext);
#endif
free(u);
}
user *
load_user(crontab_fd, pw, uname, fname, tabname)
int crontab_fd;
struct passwd *pw; /* NULL implies syscrontab */
char *uname;
char *fname;
char *tabname;
{
char envstr[MAX_ENVSTR];
FILE *file;
user *u;
entry *e;
int status;
char **envp = NULL, **tenvp;
if (!(file = fdopen(crontab_fd, "r"))) {
perror("fdopen on crontab_fd in load_user");
return NULL;
}
Debug(DPARS, ("load_user()\n"))
/* file is open. build user entry, then read the crontab file.
*/
if ((u = (user *) malloc(sizeof(user))) == NULL) {
errno = ENOMEM;
return NULL;
}
if ((u->name = strdup(fname)) == NULL) {
free(u);
errno = ENOMEM;
return NULL;
}
u->crontab = NULL;
#ifdef WITH_SELINUX
u->scontext = NULL;
if (is_selinux_enabled() > 0) {
char *sname=uname;
if (pw==NULL) {
sname=NULL;
}
if (get_security_context(sname, crontab_fd,
&u->scontext, tabname) != 0 ) {
u->scontext = NULL;
free_user(u);
u = NULL;
goto done;
}
}
#endif
/*
* init environment. this will be copied/augmented for each entry.
*/
if ((envp = env_init()) == NULL) {
free(u->name);
free(u);
return NULL;
}
/*
* load the crontab
*/
Set_LineNum(1)
do {
status = load_env(envstr, file);
switch (status) {
case ERR:
/* If envstr has no content, we reached a proper EOF
* and we can return to continue regular processing.
*
* If it does have content, we reached EOF without a
* newline, so we bail out
*/
if (envstr[0] != '\0') {
log_it(u->name, getpid(), "ERROR", "Missing "
"newline before EOF, this crontab file will be "
"ignored");
free_user(u);
u = NULL;
}
goto done;
case FALSE:
err_user = fname;
e = load_entry(file, crontab_error, pw, envp);
err_user = NULL;
if (e) {
e->next = u->crontab;
u->crontab = e;
} else {
/* stop processing on syntax error */
log_it(u->name, getpid(), "ERROR", "Syntax "
"error, this crontab file will be "
"ignored");
free_user(u);
u = NULL;
goto done;
}
break;
case TRUE:
if ((tenvp = env_set(envp, envstr))) {
envp = tenvp;
} else {
free_user(u);
u = NULL;
goto done;
}
break;
}
/* When counting lines, ignore the user-hidden header part, and account
* for idiosyncrasies of LineNumber manipulation
*/
} while (status >= OK && LineNumber < MAX_TAB_LINES + NHEADER_LINES + 2);
if (LineNumber >= MAX_TAB_LINES + NHEADER_LINES + 2) {
log_it(fname, getpid(), "ERROR", "crontab must not be longer "
"than " Stringify(MAX_TAB_LINES) " lines, "
"this crontab file will be ignored");
free_user(u);
u = NULL;
goto done;
}
done:
env_free(envp);
fclose(file);
Debug(DPARS, ("...load_user() done\n"))
return u;
}
|