2004-11-20 07:32:32 +00:00
|
|
|
static volatile const char *BOINCrcsid="$Id$";
|
2003-07-01 20:37:09 +00:00
|
|
|
// The contents of this file are subject to the BOINC Public License
|
2003-03-08 00:09:40 +00:00
|
|
|
// Version 1.0 (the "License"); you may not use this file except in
|
|
|
|
// compliance with the License. You may obtain a copy of the License at
|
2003-07-01 20:37:09 +00:00
|
|
|
// http://boinc.berkeley.edu/license_1.0.txt
|
2003-07-09 23:54:45 +00:00
|
|
|
//
|
2003-03-08 00:09:40 +00:00
|
|
|
// Software distributed under the License is distributed on an "AS IS"
|
|
|
|
// basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
|
|
|
|
// License for the specific language governing rights and limitations
|
2003-07-09 23:54:45 +00:00
|
|
|
// under the License.
|
|
|
|
//
|
|
|
|
// The Original Code is the Berkeley Open Infrastructure for Network Computing.
|
|
|
|
//
|
2003-03-08 00:09:40 +00:00
|
|
|
// The Initial Developer of the Original Code is the SETI@home project.
|
2003-07-01 20:37:09 +00:00
|
|
|
// Portions created by the SETI@home project are Copyright (C) 2002
|
2003-07-09 23:54:45 +00:00
|
|
|
// University of California at Berkeley. All Rights Reserved.
|
|
|
|
//
|
2003-03-08 00:09:40 +00:00
|
|
|
// Contributor(s):
|
|
|
|
//
|
|
|
|
|
2003-03-08 00:18:33 +00:00
|
|
|
using namespace std;
|
|
|
|
|
2004-07-13 13:54:09 +00:00
|
|
|
#include <cstdlib>
|
|
|
|
#include <csignal>
|
2003-06-20 21:33:49 +00:00
|
|
|
#include <unistd.h>
|
2003-03-08 00:09:40 +00:00
|
|
|
|
2004-05-03 19:30:01 +00:00
|
|
|
#include "filesys.h"
|
2004-09-13 18:05:54 +00:00
|
|
|
#include "error_numbers.h"
|
2004-04-08 08:15:23 +00:00
|
|
|
#include "sched_msgs.h"
|
2003-03-08 00:09:40 +00:00
|
|
|
#include "sched_util.h"
|
|
|
|
|
2004-04-30 23:18:56 +00:00
|
|
|
#ifdef _USING_FCGI_
|
|
|
|
#include "fcgi_stdio.h"
|
|
|
|
#endif
|
|
|
|
|
2004-05-03 19:30:01 +00:00
|
|
|
const char* STOP_DAEMONS_FILENAME = "../stop_daemons";
|
|
|
|
// NOTE: this must be same as in the "start" script
|
|
|
|
const char* STOP_SCHED_FILENAME = "../stop_sched";
|
|
|
|
// NOTE: this must be same as in the "start" script
|
2003-12-31 23:09:21 +00:00
|
|
|
const int STOP_SIGNAL = SIGHUP;
|
2004-05-03 19:30:01 +00:00
|
|
|
// NOTE: this must be same as in the "start" script
|
2003-07-09 23:54:45 +00:00
|
|
|
|
2003-07-13 01:10:24 +00:00
|
|
|
void write_pid_file(const char* filename) {
|
2003-06-20 01:31:03 +00:00
|
|
|
FILE* fpid = fopen(filename, "w");
|
|
|
|
if (!fpid) {
|
2004-04-08 08:15:23 +00:00
|
|
|
log_messages.printf(SCHED_MSG_LOG::NORMAL, "Couldn't write pid\n");
|
2003-06-20 01:31:03 +00:00
|
|
|
return;
|
|
|
|
}
|
2003-08-12 20:58:24 +00:00
|
|
|
fprintf(fpid, "%d\n", (int)getpid());
|
2003-06-20 01:31:03 +00:00
|
|
|
fclose(fpid);
|
|
|
|
}
|
|
|
|
|
2003-10-14 23:40:50 +00:00
|
|
|
// caught_sig_int will be set to true if SIGINT is caught.
|
2003-12-31 23:09:21 +00:00
|
|
|
bool caught_stop_signal = false;
|
|
|
|
static void stop_signal_handler(int) {
|
|
|
|
fprintf(stderr, "GOT STOP SIGNAL\n");
|
|
|
|
caught_stop_signal = true;
|
2003-06-20 01:31:03 +00:00
|
|
|
}
|
|
|
|
|
2003-12-31 23:09:21 +00:00
|
|
|
void install_stop_signal_handler() {
|
|
|
|
signal(STOP_SIGNAL, stop_signal_handler);
|
|
|
|
// handler is now default again so hitting ^C again will kill the program.
|
2003-06-20 01:31:03 +00:00
|
|
|
}
|
|
|
|
|
2004-05-03 19:30:01 +00:00
|
|
|
void check_stop_daemons() {
|
2003-12-31 23:09:21 +00:00
|
|
|
if (caught_stop_signal) {
|
2004-04-08 08:15:23 +00:00
|
|
|
log_messages.printf(SCHED_MSG_LOG::CRITICAL, "Quitting due to SIGINT\n");
|
2003-06-20 01:31:03 +00:00
|
|
|
exit(0);
|
|
|
|
}
|
2004-05-03 19:30:01 +00:00
|
|
|
if (boinc_file_exists(STOP_DAEMONS_FILENAME)) {
|
2004-04-08 08:15:23 +00:00
|
|
|
log_messages.printf(SCHED_MSG_LOG::NORMAL, "Quitting due to stop trigger\n");
|
2003-06-20 01:31:03 +00:00
|
|
|
exit(0);
|
|
|
|
}
|
2003-03-08 00:09:40 +00:00
|
|
|
}
|
|
|
|
|
2004-05-03 19:30:01 +00:00
|
|
|
bool check_stop_sched() {
|
|
|
|
return boinc_file_exists(STOP_SCHED_FILENAME);
|
2003-12-10 00:54:17 +00:00
|
|
|
}
|
2004-09-13 18:05:54 +00:00
|
|
|
|
|
|
|
// try to open a file.
|
|
|
|
// On failure:
|
|
|
|
// return ERR_FOPEN if the dir is there but not file
|
|
|
|
// (this is generally a nonrecoverable failure)
|
|
|
|
// return ERR_OPENDIR if dir is not there.
|
|
|
|
// (this is generally a recoverable error,
|
|
|
|
// like NFS mount failure, that may go away later)
|
|
|
|
//
|
|
|
|
int try_fopen(char* path, FILE*& f, char* mode) {
|
|
|
|
char* p;
|
|
|
|
DIR* d;
|
|
|
|
char dirpath[256];
|
|
|
|
|
|
|
|
f = fopen(path, mode);
|
|
|
|
if (!f) {
|
|
|
|
memset(dirpath, '\0', sizeof(dirpath));
|
|
|
|
p = strrchr(path, '/');
|
|
|
|
if (p) {
|
|
|
|
strncpy(dirpath, path, (int)(p-path));
|
|
|
|
} else {
|
|
|
|
strcpy(dirpath, ".");
|
|
|
|
}
|
|
|
|
if ((d = opendir(dirpath)) == NULL) {
|
|
|
|
return ERR_OPENDIR;
|
|
|
|
} else {
|
|
|
|
closedir(d);
|
|
|
|
return ERR_FOPEN;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|