/* Copyright © 2005-2006 Roger Leigh * * schroot 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. * * schroot 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 #include "sbuild-lock.h" #include #include #include #include #include using boost::format; using namespace sbuild; namespace { typedef std::pair emap; /** * This is a list of the supported error codes. It's used to * construct the real error codes map. */ emap init_errors[] = { emap(lock::TIMEOUT_HANDLER, N_("Failed to set timeout handler")), emap(lock::TIMEOUT_SET, N_("Failed to set timeout")), emap(lock::TIMEOUT_CANCEL, N_("Failed to cancel timeout")), emap(lock::LOCK, N_("Failed to acquire lock")), emap(lock::LOCK_TIMEOUT, N_("Failed to acquire lock (timed out after %4% seconds)")), emap(lock::DEVICE_LOCK, N_("Failed to acquire device lock")), emap(lock::DEVICE_LOCK_TIMEOUT, N_("Failed to acquire device lock (timed out after %4% seconds; lock held by PID %5%)")), emap(lock::DEVICE_TEST, N_("Failed to test device lock")), emap(lock::DEVICE_RELEASE, N_("Failed to release device lock")), emap(lock::DEVICE_RELEASE_TIMEOUT, N_("Failed to release device lock (timed out after %4% seconds; lock held by PID %5%)")) }; } template<> error::map_type error::error_strings (init_errors, init_errors + (sizeof(init_errors) / sizeof(init_errors[0]))); namespace { volatile bool lock_timeout = false; /** * Handle the SIGALRM signal. * * @param ignore the signal number. */ void alarm_handler (int ignore) { /* This exists so that system calls get interrupted. */ /* lock_timeout is used for polling for a timeout, rather than interruption. */ lock_timeout = true; } } lock::lock (): saved_signals() { } lock::~lock () { } void lock::set_alarm () { struct sigaction new_sa; sigemptyset(&new_sa.sa_mask); new_sa.sa_flags = 0; new_sa.sa_handler = alarm_handler; if (sigaction(SIGALRM, &new_sa, &this->saved_signals) != 0) throw error(TIMEOUT_HANDLER, strerror(errno)); } void lock::clear_alarm () { /* Restore original handler */ sigaction (SIGALRM, &this->saved_signals, NULL); } void lock::set_timer(struct itimerval const& timer) { set_alarm(); if (setitimer(ITIMER_REAL, &timer, NULL) == -1) { clear_alarm(); throw error(TIMEOUT_SET, strerror(errno)); } } void lock::unset_timer () { struct itimerval disable_timer; disable_timer.it_interval.tv_sec = disable_timer.it_interval.tv_usec = 0; disable_timer.it_value.tv_sec = disable_timer.it_value.tv_usec = 0; if (setitimer(ITIMER_REAL, &disable_timer, NULL) == -1) { clear_alarm(); throw error(TIMEOUT_CANCEL, strerror(errno)); } clear_alarm(); } file_lock::file_lock (int fd): lock(), fd(fd) { } file_lock::~file_lock () { } void file_lock::set_lock (type lock_type, unsigned int timeout) { try { struct itimerval timeout_timer; timeout_timer.it_interval.tv_sec = timeout_timer.it_interval.tv_usec = 0; timeout_timer.it_value.tv_sec = timeout; timeout_timer.it_value.tv_usec = 0; set_timer(timeout_timer); /* Now the signal handler and itimer are set, the function can't return without stopping the timer and restoring the signal handler to its original state. */ /* Wait on lock until interrupted by a signal if a timeout was set, otherwise return immediately. */ struct flock read_lock = { lock_type, SEEK_SET, 0, 0, // Lock entire file 0 }; if (fcntl(this->fd, (timeout != 0) ? F_SETLKW : F_SETLK, &read_lock) == -1) { if (errno == EINTR) throw error(LOCK_TIMEOUT, timeout); else throw error(LOCK, strerror(errno)); } unset_timer(); } catch (error const& e) { unset_timer(); throw; } } void file_lock::unset_lock () { set_lock(LOCK_NONE, 0); } device_lock::device_lock (std::string const& device): lock(), device(device) { } device_lock::~device_lock () { } void device_lock::set_lock (type lock_type, unsigned int timeout) { try { lock_timeout = false; struct itimerval timeout_timer; timeout_timer.it_interval.tv_sec = timeout_timer.it_interval.tv_usec = 0; timeout_timer.it_value.tv_sec = timeout; timeout_timer.it_value.tv_usec = 0; set_timer(timeout_timer); /* Now the signal handler and itimer are set, the function can't return without stopping the timer and restoring the signal handler to its original state. */ /* Wait on lock until interrupted by a signal if a timeout was set, otherwise return immediately. */ pid_t status = 0; while (lock_timeout == false) { if (lock_type == LOCK_SHARED || lock_type == LOCK_EXCLUSIVE) { status = dev_lock(this->device.c_str()); if (status == 0) // Success break; else if (status < 0) // Failure { throw error(DEVICE_LOCK); } } else { pid_t cur_lock_pid = dev_testlock(this->device.c_str()); if (cur_lock_pid < 0) // Test failure { throw error(DEVICE_TEST); } else if (cur_lock_pid > 0 && cur_lock_pid != getpid()) { // Another process owns the lock, so we successfully // "drop" our nonexistent lock. break; } status = dev_unlock(this->device.c_str(), getpid()); if (status == 0) // Success break; else if (status < 0) // Failure { throw error(DEVICE_RELEASE); } } } if (lock_timeout) { throw error(((lock_type == LOCK_SHARED || lock_type == LOCK_EXCLUSIVE) ? DEVICE_LOCK_TIMEOUT : DEVICE_RELEASE_TIMEOUT), timeout, status); } unset_timer(); } catch (error const& e) { unset_timer(); throw; } } void device_lock::unset_lock () { set_lock(LOCK_NONE, 0); } /* * Local Variables: * mode:C++ * End: */