2002-04-30 22:22:54 +00:00
|
|
|
// The contents of this file are subject to the Mozilla Public License
|
|
|
|
// 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
|
|
|
|
// http://www.mozilla.org/MPL/
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
// under the License.
|
|
|
|
//
|
|
|
|
// The Original Code is the Berkeley Open Infrastructure for Network Computing.
|
|
|
|
//
|
|
|
|
// The Initial Developer of the Original Code is the SETI@home project.
|
|
|
|
// Portions created by the SETI@home project are Copyright (C) 2002
|
|
|
|
// University of California at Berkeley. All Rights Reserved.
|
|
|
|
//
|
|
|
|
// Contributor(s):
|
|
|
|
//
|
|
|
|
|
2002-12-03 18:57:40 +00:00
|
|
|
// The BOINC scheduling server.
|
|
|
|
// command-line options:
|
|
|
|
// -use_files // use disk files for req/reply msgs (for debugging)
|
|
|
|
|
2002-09-26 23:12:13 +00:00
|
|
|
#include <iostream>
|
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
using namespace std;
|
2002-06-07 22:59:24 +00:00
|
|
|
|
2002-04-30 22:22:54 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
2002-07-11 01:09:53 +00:00
|
|
|
#include <assert.h>
|
2002-04-30 22:22:54 +00:00
|
|
|
|
|
|
|
#include "db.h"
|
|
|
|
#include "parse.h"
|
2002-05-24 04:29:10 +00:00
|
|
|
#include "shmem.h"
|
2002-10-03 18:33:46 +00:00
|
|
|
|
|
|
|
#include "config.h"
|
2002-04-30 22:22:54 +00:00
|
|
|
#include "server_types.h"
|
|
|
|
#include "handle_request.h"
|
2002-08-25 07:54:33 +00:00
|
|
|
#include "main.h"
|
2002-04-30 22:22:54 +00:00
|
|
|
|
2002-10-09 04:56:41 +00:00
|
|
|
#define REQ_FILE_PREFIX "boinc_req_"
|
|
|
|
#define REPLY_FILE_PREFIX "boinc_reply_"
|
2002-08-25 07:54:33 +00:00
|
|
|
|
|
|
|
PROJECT gproject;
|
2002-10-04 20:35:56 +00:00
|
|
|
CONFIG config;
|
2002-04-30 22:22:54 +00:00
|
|
|
|
|
|
|
int return_error(char* p) {
|
|
|
|
fprintf(stderr, "BOINC server: %s\n", p);
|
|
|
|
printf("<error_msg>%s</error_msg>\n", p);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// the code below is convoluted because,
|
|
|
|
// instead of going from stdin to stdout directly,
|
|
|
|
// we go via a pair of disk files
|
|
|
|
// (this makes it easy to save the input,
|
|
|
|
// and to know the length of the output).
|
|
|
|
//
|
2002-12-03 18:57:40 +00:00
|
|
|
int main(int argc, char** argv) {
|
2002-04-30 22:22:54 +00:00
|
|
|
FILE* fin, *fout;
|
2002-06-01 20:26:21 +00:00
|
|
|
int i, retval, pid;
|
2002-07-07 20:39:24 +00:00
|
|
|
char req_path[256], reply_path[256], path[256];
|
2002-05-24 04:29:10 +00:00
|
|
|
SCHED_SHMEM* ssp;
|
|
|
|
void* p;
|
2002-07-02 17:51:51 +00:00
|
|
|
unsigned int counter=0;
|
2002-07-07 20:39:24 +00:00
|
|
|
char* code_sign_key;
|
2002-12-03 18:57:40 +00:00
|
|
|
bool found, use_files=false;
|
2002-10-03 18:33:46 +00:00
|
|
|
|
2002-12-03 18:57:40 +00:00
|
|
|
for (i=1; i<argc; i++) {
|
|
|
|
if (!strcmp(argv[i], "-use_files")) {
|
|
|
|
use_files = true;
|
|
|
|
}
|
|
|
|
}
|
2002-10-03 18:33:46 +00:00
|
|
|
retval = config.parse_file();
|
|
|
|
if (retval) {
|
|
|
|
fprintf(stderr, "Can't parse config file\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
2002-07-07 20:39:24 +00:00
|
|
|
|
2002-10-03 18:33:46 +00:00
|
|
|
sprintf(path, "%s/code_sign_public", config.key_dir);
|
2002-07-07 20:39:24 +00:00
|
|
|
retval = read_file_malloc(path, code_sign_key);
|
|
|
|
if (retval) {
|
|
|
|
fprintf(stderr,
|
2002-08-25 07:54:33 +00:00
|
|
|
"BOINC scheduler (%s): can't read code sign key file (%s)\n",
|
2002-10-03 18:33:46 +00:00
|
|
|
config.user_name, path
|
2002-07-07 20:39:24 +00:00
|
|
|
);
|
|
|
|
exit(1);
|
|
|
|
}
|
2002-07-01 22:41:09 +00:00
|
|
|
|
2002-10-03 18:33:46 +00:00
|
|
|
retval = attach_shmem(config.shmem_key, &p);
|
2002-05-24 04:29:10 +00:00
|
|
|
if (retval) {
|
2002-08-25 07:54:33 +00:00
|
|
|
fprintf(stderr,
|
|
|
|
"BOINC scheduler (%s): can't attach shmem\n",
|
2002-10-03 18:33:46 +00:00
|
|
|
config.user_name
|
2002-08-25 07:54:33 +00:00
|
|
|
);
|
2002-05-24 04:29:10 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
ssp = (SCHED_SHMEM*)p;
|
|
|
|
retval = ssp->verify();
|
|
|
|
if (retval) {
|
2002-08-25 07:54:33 +00:00
|
|
|
fprintf(stderr,
|
|
|
|
"BOINC scheduler (%s): shmem has wrong struct sizes - recompile\n",
|
2002-10-03 18:33:46 +00:00
|
|
|
config.user_name
|
2002-08-25 07:54:33 +00:00
|
|
|
);
|
2002-05-24 04:29:10 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
2002-06-01 20:26:21 +00:00
|
|
|
|
|
|
|
for (i=0; i<10; i++) {
|
|
|
|
if (ssp->ready) break;
|
2002-08-25 07:54:33 +00:00
|
|
|
fprintf(stderr,
|
|
|
|
"BOINC scheduler (%s): waiting for ready flag\n",
|
2002-10-03 18:33:46 +00:00
|
|
|
config.user_name
|
2002-08-25 07:54:33 +00:00
|
|
|
);
|
2002-06-01 20:26:21 +00:00
|
|
|
sleep(1);
|
|
|
|
}
|
|
|
|
if (!ssp->ready) {
|
2002-08-25 07:54:33 +00:00
|
|
|
fprintf(stderr,
|
|
|
|
"BOINC scheduler (%s): feeder doesn't seem to be running\n",
|
2002-10-03 18:33:46 +00:00
|
|
|
config.user_name
|
2002-08-25 07:54:33 +00:00
|
|
|
);
|
2002-06-01 20:26:21 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
2002-12-03 18:57:40 +00:00
|
|
|
|
2002-10-03 18:33:46 +00:00
|
|
|
retval = db_open(config.db_name, config.db_passwd);
|
2002-07-02 17:51:51 +00:00
|
|
|
if (retval) {
|
2002-08-25 07:54:33 +00:00
|
|
|
fprintf(stderr,
|
|
|
|
"BOINC scheduler (%s): can't open database\n",
|
2002-10-03 18:33:46 +00:00
|
|
|
config.user_name
|
2002-08-25 07:54:33 +00:00
|
|
|
);
|
|
|
|
return_error("can't open database");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
found = false;
|
|
|
|
while (!db_project_enum(gproject)) {
|
|
|
|
found = true;
|
2002-07-02 17:51:51 +00:00
|
|
|
}
|
2002-08-25 07:54:33 +00:00
|
|
|
if (!found) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"BOINC scheduler (%s): can't find project\n",
|
2002-10-03 18:33:46 +00:00
|
|
|
config.user_name
|
2002-08-25 07:54:33 +00:00
|
|
|
);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2002-04-30 22:22:54 +00:00
|
|
|
pid = getpid();
|
2002-07-02 17:51:51 +00:00
|
|
|
#ifdef _USING_FCGI_
|
|
|
|
while(FCGI_Accept() >= 0) {
|
|
|
|
counter++;
|
|
|
|
#endif
|
2002-04-30 22:22:54 +00:00
|
|
|
fprintf(stdout, "Content-type: text/plain\n\n");
|
2002-12-03 18:57:40 +00:00
|
|
|
if (use_files) {
|
|
|
|
sprintf(req_path, "%s%d_%u", REQ_FILE_PREFIX, pid, counter);
|
|
|
|
sprintf(reply_path, "%s%d_%u", REPLY_FILE_PREFIX, pid, counter);
|
|
|
|
fout = fopen(req_path, "w");
|
|
|
|
if (!fout) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"BOINC scheduler (%s): can't write request file",
|
|
|
|
config.user_name
|
|
|
|
);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
copy_stream(stdin, fout);
|
|
|
|
fclose(fout);
|
|
|
|
fin = fopen(req_path, "r");
|
|
|
|
if (!fin) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"BOINC scheduler (%s): can't read request file",
|
|
|
|
config.user_name
|
|
|
|
);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
fout = fopen(reply_path, "w");
|
|
|
|
if (!fout) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"BOINC scheduler (%s): can't write reply file",
|
|
|
|
config.user_name
|
|
|
|
);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
handle_request(fin, fout, *ssp, code_sign_key);
|
|
|
|
fclose(fin);
|
|
|
|
fclose(fout);
|
|
|
|
fin = fopen(reply_path, "r");
|
|
|
|
if (!fin) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"BOINC scheduler (%s): can't read reply file",
|
|
|
|
config.user_name
|
|
|
|
);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
copy_stream(fin, stdout);
|
|
|
|
fclose(fin);
|
|
|
|
//unlink(req_path);
|
|
|
|
//unlink(reply_path);
|
|
|
|
} else {
|
|
|
|
handle_request(stdin, stdout, *ssp, code_sign_key);
|
2002-04-30 22:22:54 +00:00
|
|
|
}
|
2002-07-01 22:41:09 +00:00
|
|
|
#ifdef _USING_FCGI_
|
2002-06-07 21:21:55 +00:00
|
|
|
}
|
2002-07-01 22:41:09 +00:00
|
|
|
#endif
|
2002-07-02 17:51:51 +00:00
|
|
|
db_close();
|
2002-04-30 22:22:54 +00:00
|
|
|
}
|