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 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613
|
/*
This file is part of Icecream.
Copyright (c) 2004 Stephan Kulow <coolo@suse.de>
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include <config.h>
#include "environment.h"
#include <logging.h>
#include <errno.h>
#include <dirent.h>
#include <unistd.h>
#include <fcntl.h>
#include <stdio.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/wait.h>
#ifdef HAVE_SIGNAL_H
#include <signal.h>
#endif
#include "comm.h"
#include "exitcode.h"
using namespace std;
#if 0
static string read_fromFILE( FILE *f )
{
string output;
if ( !f ) {
log_error() << "no pipe " << strerror( errno ) << endl;
return output;
}
char buffer[100];
while ( !feof( f ) ) {
size_t bytes = fread( buffer, 1, 99, f );
buffer[bytes] = 0;
output += buffer;
}
pclose( f );
return output;
}
static bool extract_version( string &version )
{
string::size_type pos = version.find_last_of( '\n' );
if ( pos == string::npos )
return false;
while ( pos + 1 == version.size() ) {
version.resize( version.size() - 1 );
pos = version.find_last_of( '\n' );
if ( pos == string::npos )
return false;
}
version = version.substr( pos + 1);
return true;
}
#endif
size_t sumup_dir( const string &dir )
{
size_t res = 0;
DIR *envdir = opendir( dir.c_str() );
if ( !envdir )
return res;
struct stat st;
string tdir = dir + "/";
for ( struct dirent *ent = readdir(envdir); ent; ent = readdir( envdir ) )
{
if ( !strcmp( ent->d_name, "." ) || !strcmp( ent->d_name, ".." ) )
continue;
if ( lstat( ( tdir + ent->d_name ).c_str(), &st ) ) {
perror( "stat" );
continue;
}
if ( S_ISDIR( st.st_mode ) )
res += sumup_dir( tdir + ent->d_name );
else if ( S_ISREG( st.st_mode ) )
res += st.st_size;
// else ignore
}
closedir( envdir );
return res;
}
static void list_target_dirs( const string ¤t_target, const string &targetdir, Environments &envs )
{
DIR *envdir = opendir( targetdir.c_str() );
if ( !envdir )
return;
for ( struct dirent *ent = readdir(envdir); ent; ent = readdir( envdir ) )
{
string dirname = ent->d_name;
if ( !access( string( targetdir + "/" + dirname + "/usr/bin/as" ).c_str(), X_OK ) )
envs.push_back( make_pair( current_target, dirname ) );
}
closedir( envdir );
}
/* Returns true if the child exited with success */
static bool exec_and_wait( const char *const argv[] )
{
pid_t pid = fork();
if ( pid == -1 ) {
log_perror("fork");
return false;
}
if ( pid ) {
// parent
int status;
while ( waitpid( pid, &status, 0 ) < 0 && errno == EINTR )
;
return shell_exit_status(status) == 0;
}
// child
_exit(execv(argv[0], const_cast<char *const *>(argv)));
}
// Removes everything in the directory recursively, but not the directory itself.
static bool cleanup_directory( const string& directory )
{
DIR* dir = opendir( directory.c_str());
if( dir == NULL )
return false;
while( dirent* f = readdir( dir )) {
if( strcmp( f->d_name, "." ) == 0 || strcmp( f->d_name, ".." ) == 0 )
continue;
string fullpath = directory + '/' + f->d_name;
struct stat st;
if ( lstat( fullpath.c_str(), &st )) {
perror( "stat" );
return false;
}
if ( S_ISDIR( st.st_mode )) {
if( !cleanup_directory( fullpath ) || rmdir( fullpath.c_str()) != 0 )
return false;
} else {
if( unlink( fullpath.c_str()) != 0 )
return false;
}
}
closedir( dir );
return true;
}
bool cleanup_cache( const string &basedir, uid_t user_uid, gid_t user_gid )
{
flush_debug();
if ( access( basedir.c_str(), R_OK ) == 0 && !cleanup_directory( basedir )) {
log_error() << "failed to clean up envs dir" << endl;
return false;
}
if ( mkdir( basedir.c_str(), 0755 ) && errno != EEXIST ) {
if ( errno == EPERM )
log_error() << "permission denied on mkdir " << basedir << endl;
else
log_perror( "mkdir in cleanup_cache() failed" );
return false;
}
if ( chown( basedir.c_str(), user_uid, user_gid ) ||
chmod( basedir.c_str(), 0775 ) ) {
log_perror( "chown/chmod in cleanup_cache() failed" );
return false;
}
return true;
}
Environments available_environmnents(const string &basedir)
{
Environments envs;
DIR *envdir = opendir( basedir.c_str() );
if ( !envdir ) {
log_info() << "can't open envs dir " << strerror( errno ) << endl;
} else {
for ( struct dirent *target_ent = readdir(envdir); target_ent; target_ent = readdir( envdir ) )
{
string dirname = target_ent->d_name;
if ( dirname.at( 0 ) == '.' )
continue;
if ( dirname.substr( 0, 7 ) == "target=" )
{
string current_target = dirname.substr( 7, dirname.length() - 7 );
list_target_dirs( current_target, basedir + "/" + dirname, envs );
}
}
closedir( envdir );
}
return envs;
}
void save_compiler_timestamps(time_t &gcc_bin_timestamp, time_t &gpp_bin_timestamp, time_t &clang_bin_timestamp)
{
struct stat st;
if( stat( "/usr/bin/gcc", &st ) == 0 )
gcc_bin_timestamp = st.st_mtime;
else
gcc_bin_timestamp = 0;
if( stat( "/usr/bin/g++", &st ) == 0 )
gpp_bin_timestamp = st.st_mtime;
else
gpp_bin_timestamp = 0;
if( stat( "/usr/bin/clang", &st ) == 0 )
clang_bin_timestamp = st.st_mtime;
else
clang_bin_timestamp = 0;
}
bool compilers_uptodate(time_t gcc_bin_timestamp, time_t gpp_bin_timestamp, time_t clang_bin_timestamp)
{
struct stat st;
if( stat( "/usr/bin/gcc", &st ) == 0 ) {
if( st.st_mtime != gcc_bin_timestamp )
return false;
} else {
if( gcc_bin_timestamp != 0 )
return false;
}
if( stat( "/usr/bin/g++", &st ) == 0 ) {
if( st.st_mtime != gpp_bin_timestamp )
return false;
} else {
if( gpp_bin_timestamp != 0 )
return false;
}
if( stat( "/usr/bin/clang", &st ) == 0 ) {
if( st.st_mtime != clang_bin_timestamp )
return false;
} else {
if( clang_bin_timestamp != 0 )
return false;
}
return true;
}
size_t setup_env_cache(const string &basedir, string &native_environment, uid_t user_uid, gid_t user_gid,
const std::string &compiler, const list<string> &extrafiles)
{
native_environment = "";
string nativedir = basedir + "/native/";
if (compiler == "clang") {
if ( ::access( "/usr/bin/clang", X_OK ) != 0 )
return 0;
} else { // "gcc" (the default)
// Both gcc and g++ are needed in the gcc case.
if ( ::access( "/usr/bin/gcc", X_OK ) != 0 || ::access( "/usr/bin/g++", X_OK ) != 0 )
return 0;
}
if ( mkdir( nativedir.c_str(), 0775 ) && errno != EEXIST )
return 0;
if ( chown( nativedir.c_str(), user_uid, user_gid ) ||
chmod( nativedir.c_str(), 0775 ) ) {
rmdir( nativedir.c_str() );
return 0;
}
flush_debug();
int pipes[ 2 ];
pipe( pipes );
pid_t pid = fork();
if ( pid ) {
close( pipes[ 1 ] );
int status = 1;
while ( waitpid( pid, &status, 0 ) < 0 && errno == EINTR )
;
trace() << "waitpid " << status << endl;
if ( !status ) {
char buf[ 1024 ];
buf[ 0 ] = '\0';
while ( read( pipes[ 0 ], buf, 1023 ) < 0 && errno == EINTR )
;
if ( char *nl = strchr( buf, '\n' ))
*nl = '\0';
native_environment = nativedir + buf;
}
close( pipes[ 0 ] );
trace() << "native_environment " << native_environment << endl;
struct stat st;
if ( !status && !native_environment.empty()
&& stat( native_environment.c_str(), &st ) == 0 ) {
return st.st_size;
}
rmdir( nativedir.c_str() );
return 0;
}
// else
#ifndef HAVE_LIBCAP_NG
if ( setgid( user_gid ) < 0) {
log_perror("setgid failed");
_exit(143);
}
if (!geteuid() && setuid( user_uid ) < 0) {
log_perror("setuid failed");
_exit (142);
}
#endif
if ( chdir( nativedir.c_str() ) ) {
log_perror( "chdir" );
_exit(1);
}
close( pipes[ 0 ] );
dup2( pipes[ 1 ], 5 ); // icecc-create-env will write the hash there
close( pipes[ 1 ] );
const char ** argv;
argv = new const char*[ 4 + extrafiles.size() ];
int pos = 0;
argv[ pos++ ] = BINDIR "/icecc";
argv[ pos++ ] = "--build-native";
argv[ pos++ ] = strdup( compiler.c_str());
for( list<string>::const_iterator it = extrafiles.begin();
it != extrafiles.end(); ++it )
argv[ pos++ ] = strdup( it->c_str());
argv[ pos++ ] = NULL;
if ( !exec_and_wait( argv ) ) {
log_error() << BINDIR "/icecc --build-native failed\n";
_exit(1);
}
_exit( 0 );
}
pid_t start_install_environment( const std::string &basename, const std::string &target,
const std::string &name, MsgChannel *c,
int& pipe_to_stdin, FileChunkMsg*& fmsg,
uid_t user_uid, gid_t user_gid )
{
if ( !name.size() || name[0] == '.' ) {
log_error() << "illegal name for environment " << name << endl;
return 0;
}
for ( string::size_type i = 0; i < name.size(); ++i ) {
if ( isascii( name[i] ) && !isspace( name[i]) && name[i] != '/' && isprint( name[i] ) )
continue;
log_error() << "illegal char '" << name[i] << "' - rejecting environment " << name << endl;
return 0;
}
string dirname = basename + "/target=" + target;
Msg *msg = c->get_msg(30);
if ( !msg || msg->type != M_FILE_CHUNK )
{
trace() << "Expected first file chunk\n";
return 0;
}
fmsg = dynamic_cast<FileChunkMsg*>( msg );
enum { BZip2, Gzip, None} compression = None;
if ( fmsg->len > 2 )
{
if ( fmsg->buffer[0] == 037 && fmsg->buffer[1] == 0213 )
compression = Gzip;
else if ( fmsg->buffer[0] == 'B' && fmsg->buffer[1] == 'Z' )
compression = BZip2;
}
if ( mkdir( dirname.c_str(), 0770 ) && errno != EEXIST ) {
log_perror( "mkdir target" );
return 0;
}
if ( chown( dirname.c_str(), user_uid, user_gid ) ||
chmod( dirname.c_str(), 0770 ) ) {
log_perror( "chown,chmod target" );
return 0;
}
dirname = dirname + "/" + name;
if ( mkdir( dirname.c_str(), 0770 ) ) {
log_perror( "mkdir name" );
return 0;
}
if ( chown( dirname.c_str(), user_uid, user_gid ) ||
chmod( dirname.c_str(), 0770 ) ) {
log_perror( "chown,chmod name" );
return 0;
}
int fds[2];
if ( pipe( fds ) )
return 0;
flush_debug();
pid_t pid = fork();
if ( pid )
{
trace() << "pid " << pid << endl;
close( fds[0] );
pipe_to_stdin = fds[1];
return pid;
}
// else
#ifndef HAVE_LIBCAP_NG
if ( setgid( user_gid ) < 0) {
log_perror("setgid fails");
_exit(143);
}
if (!geteuid() && setuid( user_uid ) < 0) {
log_perror("setuid fails");
_exit (142);
}
#endif
// reset SIGPIPE and SIGCHILD handler so that tar
// isn't confused when gzip/bzip2 aborts
signal(SIGCHLD, SIG_DFL);
signal(SIGPIPE, SIG_DFL);
close( 0 );
close( fds[1] );
dup2( fds[0], 0 );
char **argv;
argv = new char*[6];
argv[0] = strdup( TAR );
argv[1] = strdup ("-C");
argv[2] = strdup ( dirname.c_str() );
if ( compression == BZip2 )
argv[3] = strdup( "-xjf" );
else if ( compression == Gzip )
argv[3] = strdup( "-xzf" );
else if ( compression == None )
argv[3] = strdup( "-xf" );
argv[4] = strdup( "-" );
argv[5] = 0;
_exit( execv( argv[0], argv ) );
}
size_t finalize_install_environment( const std::string &basename, const std::string &target,
pid_t pid, uid_t user_uid, gid_t user_gid)
{
int status = 1;
while ( waitpid( pid, &status, 0) < 0 && errno == EINTR)
;
if ( shell_exit_status(status) != 0 ) {
log_error() << "exit code: " << shell_exit_status(status) << endl;
remove_environment(basename, target);
return 0;
}
string dirname = basename + "/target=" + target;
mkdir( ( dirname + "/tmp" ).c_str(), 01775 );
chown( ( dirname + "/tmp" ).c_str(), user_uid, user_gid );
chmod( ( dirname + "/tmp" ).c_str(), 01775 );
return sumup_dir (dirname);
}
size_t remove_environment( const string &basename, const string &env )
{
string dirname = basename + "/target=" + env;
size_t res = sumup_dir( dirname );
flush_debug();
pid_t pid = fork();
if ( pid )
{
int status = 0;
while ( waitpid( pid, &status, 0 ) < 0 && errno == EINTR )
;
if ( WIFEXITED (status) )
return res;
// something went wrong. assume no disk space was free'd.
return 0;
}
// else
char **argv;
argv = new char*[5];
argv[0] = strdup( "/bin/rm" );
argv[1] = strdup( "-rf" );
argv[2] = strdup("--");
argv[3] = strdup( dirname.c_str() );
argv[4] = NULL;
_exit(execv(argv[0], argv));
}
size_t remove_native_environment( const string &env )
{
if ( env.empty() )
return 0;
struct stat st;
if ( stat( env.c_str(), &st ) == 0 ) {
unlink( env.c_str());
return st.st_size;
}
return 0;
}
static void
error_client( MsgChannel *client, string error )
{
if ( IS_PROTOCOL_23( client ) )
client->send_msg( StatusTextMsg( error ) );
}
void chdir_to_environment( MsgChannel *client, const string &dirname, uid_t user_uid, gid_t user_gid )
{
#ifdef HAVE_LIBCAP_NG
if ( chdir( dirname.c_str() ) < 0 ) {
error_client( client, string( "chdir to " ) + dirname + "failed" );
log_perror("chdir() failed" );
_exit(145);
}
if ( chroot( dirname.c_str() ) < 0 ) {
error_client( client, string( "chroot " ) + dirname + "failed" );
log_perror("chroot() failed" );
_exit(144);
}
(void) user_uid;
(void) user_gid;
#else
if ( getuid() == 0 ) {
// without the chdir, the chroot will escape the
// jail right away
if ( chdir( dirname.c_str() ) < 0 ) {
error_client( client, string( "chdir to " ) + dirname + "failed" );
log_perror("chdir() failed" );
_exit(145);
}
if ( chroot( dirname.c_str() ) < 0 ) {
error_client( client, string( "chroot " ) + dirname + "failed" );
log_perror("chroot() failed" );
_exit(144);
}
if ( setgid( user_gid ) < 0 ) {
error_client( client, string( "setgid failed" ));
log_perror("setgid() failed" );
_exit(143);
}
if ( setuid( user_uid ) < 0) {
error_client( client, string( "setuid failed" ));
log_perror("setuid() failed" );
_exit(142);
}
}
else {
if ( chdir( dirname.c_str() ) ) {
log_perror( "chdir" );
} else {
trace() << "chdir to " << dirname << endl;
}
}
#endif
}
// Verify that the environment works by simply running the bundled bin/true.
bool verify_env( MsgChannel *client, const string &basedir, const string& target, const string &env,
uid_t user_uid, gid_t user_gid )
{
if ( target.empty() || env.empty())
return false;
string dirname = basedir + "/target=" + target + "/" + env;
if ( ::access( string( dirname + "/bin/true" ).c_str(), X_OK ) ) {
error_client( client, dirname + "/bin/true is not executable" );
log_error() << "I don't have environment " << env << "(" << target << ") to verify." << endl;
return false;
}
flush_debug();
pid_t pid = fork();
assert(pid >= 0);
if ( pid > 0) { // parent
int status;
while ( waitpid( pid, &status, 0 ) < 0 && errno == EINTR )
;
return shell_exit_status(status) == 0;
}
// child
reset_debug(0);
chdir_to_environment( client, dirname, user_uid, user_gid );
_exit(execl("bin/true", "bin/true", (void*)NULL));
}
|