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 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557
|
/*
* ProFTPD - FTP server daemon
* Copyright (c) 1997, 1998 Public Flood Software
* Copyright (c) 2003-2011 The ProFTPD Project team
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA.
*
* As a special exemption, the copyright holders give permission to link
* this program with OpenSSL and distribute the resulting executable without
* including the source code for OpenSSL in the source distribution.
*/
/* Use POSIX "capabilities" in modern operating systems (currently, only
* Linux is supported) to severely limit root's access. After user
* authentication, this module _completely_ gives up root, except for the
* bare minimum functionality that is required. VERY highly recommended for
* security-consious admins. See README.capabilities for more information.
*
* -- DO NOT MODIFY THE TWO LINES BELOW --
* $Libraries: -L$(top_srcdir)/lib/libcap -lcap$
* $Directories: $(top_srcdir)/lib/libcap$
* $Id: mod_cap.c,v 1.27 2011/05/23 21:11:56 castaglia Exp $
*/
#include <stdio.h>
#include <stdlib.h>
#ifdef LINUX
# ifdef __powerpc__
# define _LINUX_BYTEORDER_GENERIC_H
# endif
#include <linux/capability.h>
#include <sys/capability.h>
/* What are these for? */
# undef WNOHANG
# undef WUNTRACED
#endif /* LINUX */
#include "conf.h"
#include "privs.h"
#define MOD_CAP_VERSION "mod_cap/1.1"
static cap_t capabilities = 0;
static unsigned char have_capabilities = FALSE;
static unsigned char use_capabilities = TRUE;
static unsigned int cap_flags = 0;
#define CAP_USE_CHOWN 0x0001
#define CAP_USE_DAC_OVERRIDE 0x0002
#define CAP_USE_DAC_READ_SEARCH 0x0004
#define CAP_USE_SETUID 0x0008
#define CAP_USE_AUDIT_WRITE 0x0010
#define CAP_USE_FOWNER 0x0020
module cap_module;
/* log current capabilities */
static void lp_debug(void) {
char *res;
ssize_t len;
cap_t caps;
caps = cap_get_proc();
if (caps == NULL) {
pr_log_pri(PR_LOG_ERR, MOD_CAP_VERSION ": cap_get_proc failed: %s",
strerror(errno));
return;
}
res = cap_to_text(caps, &len);
if (res == NULL) {
pr_log_pri(PR_LOG_ERR, MOD_CAP_VERSION ": cap_to_text failed: %s",
strerror(errno));
if (cap_free(caps) < 0) {
pr_log_pri(PR_LOG_NOTICE, MOD_CAP_VERSION
": error freeing cap at line %d: %s", __LINE__ - 2, strerror(errno));
}
return;
}
pr_log_debug(DEBUG1, MOD_CAP_VERSION ": capabilities '%s'", res);
cap_free(res);
if (cap_free(caps) < 0) {
pr_log_pri(PR_LOG_NOTICE, MOD_CAP_VERSION
": error freeing cap at line %d: %s", __LINE__ - 2, strerror(errno));
}
}
/* create a new capability structure */
static int lp_init_cap(void) {
capabilities = cap_init();
if (capabilities == NULL) {
pr_log_pri(PR_LOG_ERR, MOD_CAP_VERSION ": initializing cap failed: %s",
strerror(errno));
return -1;
}
have_capabilities = TRUE;
return 0;
}
/* free the capability structure */
static void lp_free_cap(void) {
if (have_capabilities) {
if (cap_free(capabilities) < 0) {
pr_log_pri(PR_LOG_NOTICE, MOD_CAP_VERSION
": error freeing cap at line %d: %s", __LINE__ - 2, strerror(errno));
}
}
}
/* add a capability to a given set */
static int lp_add_cap(cap_value_t cap, cap_flag_t set) {
if (cap_set_flag(capabilities, set, 1, &cap, CAP_SET) == -1) {
pr_log_pri(PR_LOG_ERR, MOD_CAP_VERSION ": cap_set_flag failed: %s",
strerror(errno));
return -1;
}
return 0;
}
/* send the capabilities to the kernel */
static int lp_set_cap(void) {
if (cap_set_proc(capabilities) == -1) {
pr_log_pri(PR_LOG_ERR, MOD_CAP_VERSION ": cap_set_proc failed: %s",
strerror(errno));
return -1;
}
return 0;
}
/* Configuration handlers
*/
MODRET set_caps(cmd_rec *cmd) {
unsigned int flags = 0;
config_rec *c = NULL;
register unsigned int i = 0;
if (cmd->argc - 1 < 1)
CONF_ERROR(cmd, "need at least one parameter");
CHECK_CONF(cmd, CONF_ROOT|CONF_VIRTUAL|CONF_GLOBAL);
/* CAP_CHOWN is enabled by default. */
flags |= CAP_USE_CHOWN;
for (i = 1; i < cmd->argc; i++) {
char *cp = cmd->argv[i];
cp++;
if (*cmd->argv[i] != '+' && *cmd->argv[i] != '-')
CONF_ERROR(cmd, pstrcat(cmd->tmp_pool, ": bad option: '",
cmd->argv[i], "'", NULL));
if (strcasecmp(cp, "CAP_CHOWN") == 0) {
if (*cmd->argv[i] == '-')
flags &= ~CAP_USE_CHOWN;
} else if (strcasecmp(cp, "CAP_DAC_OVERRIDE") == 0) {
if (*cmd->argv[i] == '+')
flags |= CAP_USE_DAC_OVERRIDE;
} else if (strcasecmp(cp, "CAP_DAC_READ_SEARCH") == 0) {
if (*cmd->argv[i] == '+')
flags |= CAP_USE_DAC_READ_SEARCH;
} else if (strcasecmp(cp, "CAP_FOWNER") == 0) {
if (*cmd->argv[i] == '+')
flags |= CAP_USE_FOWNER;
} else {
CONF_ERROR(cmd, pstrcat(cmd->tmp_pool, "unknown capability: '",
cp, "'", NULL));
}
}
c = add_config_param(cmd->argv[0], 1, NULL);
c->argv[0] = pcalloc(c->pool, sizeof(unsigned int));
*((unsigned int *) c->argv[0]) = flags;
/* Make sure to set this flag, so that mod_ifsession handles these
* config_recs properly.
*/
c->flags |= CF_MULTI;
return PR_HANDLED(cmd);
}
MODRET set_capengine(cmd_rec *cmd) {
int bool = -1;
config_rec *c = NULL;
CHECK_ARGS(cmd, 1);
CHECK_CONF(cmd, CONF_ROOT|CONF_VIRTUAL|CONF_GLOBAL);
bool = get_boolean(cmd, 1);
if (bool == -1)
CONF_ERROR(cmd, "expecting Boolean parameter");
c = add_config_param(cmd->argv[0], 1, NULL);
c->argv[0] = pcalloc(c->pool, sizeof(unsigned char));
*((unsigned char *) c->argv[0]) = bool;
return PR_HANDLED(cmd);
}
/* Command handlers
*/
/* The POST_CMD handler for "PASS" is only called after PASS has
* successfully completed, which means authentication is successful,
* so we can "tweak" our root access down to almost nothing.
*/
MODRET cap_post_pass(cmd_rec *cmd) {
int res;
config_rec *c;
if (!use_capabilities)
return PR_DECLINED(cmd);
/* Check for which specific capabilities to include/exclude. */
c = find_config(main_server->conf, CONF_PARAM, "CapabilitiesSet", FALSE);
if (c != NULL) {
cap_flags |= *((unsigned int *) c->argv[0]);
if (!(cap_flags & CAP_USE_CHOWN)) {
pr_log_debug(DEBUG3, MOD_CAP_VERSION
": removing CAP_CHOWN capability");
}
if (cap_flags & CAP_USE_DAC_OVERRIDE) {
pr_log_debug(DEBUG3, MOD_CAP_VERSION
": adding CAP_DAC_OVERRIDE capability");
}
if (cap_flags & CAP_USE_DAC_READ_SEARCH) {
pr_log_debug(DEBUG3, MOD_CAP_VERSION
": adding CAP_DAC_READ_SEARCH capability");
}
if (cap_flags & CAP_USE_FOWNER) {
pr_log_debug(DEBUG3, MOD_CAP_VERSION
": adding CAP_FOWNER capability");
}
}
pr_signals_block();
#ifndef PR_DEVEL_COREDUMP
/* glibc2.1 is BROKEN, seteuid() no longer lets one set euid to uid,
* so we can't use PRIVS_ROOT/PRIVS_RELINQUISH. setreuid() is the
* workaround.
*/
if (setreuid(session.uid, 0) < 0) {
int xerrno = errno;
const char *proto;
pr_signals_unblock();
proto = pr_session_get_protocol(0);
/* If this is for an SSH2 connection, don't log the error if it is
* an EPERM.
*/
if (strcmp(proto, "ssh2") != 0 ||
xerrno != EPERM) {
pr_log_pri(PR_LOG_ERR, MOD_CAP_VERSION ": setreuid: %s",
strerror(xerrno));
}
return PR_DECLINED(cmd);
}
#endif /* PR_DEVEL_COREDUMP */
/* The only capability we need is CAP_NET_BIND_SERVICE (bind
* ports < 1024). Everything else can be discarded. We set this
* in CAP_PERMITTED set only, as when we switch away from root
* we lose CAP_EFFECTIVE anyhow, and must reset it.
*/
res = lp_init_cap();
if (res != -1)
res = lp_add_cap(CAP_NET_BIND_SERVICE, CAP_PERMITTED);
/* Add the CAP_CHOWN capability, unless explicitly configured not to. */
if (res != -1 &&
(cap_flags & CAP_USE_CHOWN)) {
res = lp_add_cap(CAP_CHOWN, CAP_PERMITTED);
}
if (res != -1 &&
(cap_flags & CAP_USE_DAC_OVERRIDE)) {
res = lp_add_cap(CAP_DAC_OVERRIDE, CAP_PERMITTED);
}
if (res != -1 &&
(cap_flags & CAP_USE_DAC_READ_SEARCH)) {
res = lp_add_cap(CAP_DAC_READ_SEARCH, CAP_PERMITTED);
}
if (res != -1 && (cap_flags & CAP_USE_SETUID)) {
res = lp_add_cap(CAP_SETUID, CAP_PERMITTED);
if (res != -1) {
res = lp_add_cap(CAP_SETGID, CAP_PERMITTED);
}
}
#ifdef CAP_AUDIT_WRITE
if (res != -1 &&
(cap_flags & CAP_USE_AUDIT_WRITE)) {
res = lp_add_cap(CAP_AUDIT_WRITE, CAP_PERMITTED);
}
#endif
if (res != -1 &&
(cap_flags & CAP_USE_FOWNER)) {
res = lp_add_cap(CAP_FOWNER, CAP_PERMITTED);
}
if (res != -1)
res = lp_set_cap();
if (setreuid(0, session.uid) == -1) {
pr_log_pri(PR_LOG_ERR, MOD_CAP_VERSION ": setreuid: %s", strerror(errno));
lp_free_cap();
pr_signals_unblock();
pr_session_disconnect(&cap_module, PR_SESS_DISCONNECT_BY_APPLICATION, NULL);
}
pr_signals_unblock();
/* Now our only capabilities consist of CAP_NET_BIND_SERVICE (and other
* configured caps), however in order to actually be able to bind to
* low-numbered ports, we need the capability to be in the effective set.
*/
if (res != -1)
res = lp_add_cap(CAP_NET_BIND_SERVICE, CAP_EFFECTIVE);
/* Add the CAP_CHOWN capability, unless explicitly configured not to. */
if (res != -1 &&
(cap_flags & CAP_USE_CHOWN)) {
res = lp_add_cap(CAP_CHOWN, CAP_EFFECTIVE);
}
if (res != -1 &&
(cap_flags & CAP_USE_DAC_OVERRIDE)) {
res = lp_add_cap(CAP_DAC_OVERRIDE, CAP_EFFECTIVE);
}
if (res != -1 &&
(cap_flags & CAP_USE_DAC_READ_SEARCH)) {
res = lp_add_cap(CAP_DAC_READ_SEARCH, CAP_EFFECTIVE);
}
if (res != -1
&& (cap_flags & CAP_USE_SETUID)) {
res = lp_add_cap(CAP_SETUID, CAP_EFFECTIVE);
if (res != -1) {
res = lp_add_cap(CAP_SETGID, CAP_EFFECTIVE);
}
}
#ifdef CAP_AUDIT_WRITE
if (res != -1 &&
(cap_flags & CAP_USE_AUDIT_WRITE)) {
res = lp_add_cap(CAP_AUDIT_WRITE, CAP_EFFECTIVE);
}
#endif
if (res != -1 &&
(cap_flags & CAP_USE_FOWNER)) {
res = lp_add_cap(CAP_FOWNER, CAP_EFFECTIVE);
}
if (res != -1)
res = lp_set_cap();
lp_free_cap();
if (res != -1) {
/* That's it! Disable all further id switching */
session.disable_id_switching = TRUE;
lp_debug();
} else {
pr_log_pri(PR_LOG_NOTICE, MOD_CAP_VERSION ": attempt to configure "
"capabilities failed, reverting to normal operation");
}
return PR_DECLINED(cmd);
}
/* Initialization routines
*/
static int cap_sess_init(void) {
/* Check to see if the lowering of capabilities has been disabled in the
* configuration file.
*/
if (use_capabilities) {
unsigned char *cap_engine;
cap_engine = get_param_ptr(main_server->conf, "CapabilitiesEngine", FALSE);
if (cap_engine &&
*cap_engine == FALSE) {
pr_log_debug(DEBUG3, MOD_CAP_VERSION
": lowering of capabilities disabled");
use_capabilities = FALSE;
}
}
if (use_capabilities) {
int use_setuid = FALSE;
/* We need to check for things which want to revoke root privs altogether:
* mod_exec, mod_sftp, and the RootRevoke directive. Revoking root privs
* completely requires the SETUID/SETGID capabilities.
*/
if (use_setuid == FALSE &&
pr_module_exists("mod_sftp.c")) {
config_rec *c;
c = find_config(main_server->conf, CONF_PARAM, "SFTPEngine", FALSE);
if (c &&
*((int *) c->argv[0]) == TRUE) {
use_setuid = TRUE;
}
}
if (use_setuid == FALSE &&
pr_module_exists("mod_exec.c")) {
config_rec *c;
c = find_config(main_server->conf, CONF_PARAM, "ExecEngine", FALSE);
if (c &&
*((unsigned char *) c->argv[0]) == TRUE) {
use_setuid = TRUE;
}
}
if (use_setuid == FALSE) {
config_rec *c;
c = find_config(main_server->conf, CONF_PARAM, "RootRevoke", FALSE);
if (c &&
*((unsigned char *) c->argv[0]) == TRUE) {
use_setuid = TRUE;
}
}
if (use_setuid) {
cap_flags |= CAP_USE_SETUID;
pr_log_debug(DEBUG3, MOD_CAP_VERSION
": adding CAP_SETUID and CAP_SETGID capabilities");
}
#ifdef CAP_AUDIT_WRITE
if (pr_module_exists("mod_auth_pam.c")) {
cap_flags |= CAP_USE_AUDIT_WRITE;
pr_log_debug(DEBUG3, MOD_CAP_VERSION
": adding CAP_AUDIT_WRITE capability");
}
#endif
}
return 0;
}
static int cap_module_init(void) {
cap_t res;
/* Attempt to determine if we are running on a kernel that supports
* capabilities. This allows binary distributions to include the module
* even if it may not work.
*/
res = cap_get_proc();
if (res == NULL &&
errno == ENOSYS) {
pr_log_debug(DEBUG2, MOD_CAP_VERSION
": kernel does not support capabilities, disabling module");
use_capabilities = FALSE;
}
if (res != 0 &&
cap_free(res) < 0) {
pr_log_pri(PR_LOG_NOTICE, MOD_CAP_VERSION
": error freeing cap at line %d: %s", __LINE__ - 2, strerror(errno));
}
return 0;
}
/* Module API tables
*/
static conftable cap_conftab[] = {
{ "CapabilitiesEngine", set_capengine, NULL },
{ "CapabilitiesSet", set_caps, NULL },
{ NULL, NULL, NULL }
};
static cmdtable cap_cmdtab[] = {
{ POST_CMD, C_PASS, G_NONE, cap_post_pass, FALSE, FALSE },
{ 0, NULL }
};
module cap_module = {
NULL, NULL,
/* Module API version */
0x20,
/* Module name */
"cap",
/* Module configuration handler table */
cap_conftab,
/* Module command handler table */
cap_cmdtab,
/* Module authentication handler table */
NULL,
/* Module initialization */
cap_module_init,
/* Session initialization */
cap_sess_init,
/* Module version */
MOD_CAP_VERSION
};
|