boinc/sched/main.C

197 lines
4.9 KiB
C++
Raw Normal View History

// 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):
//
#include <iostream>
#include <vector>
#include <string>
using namespace std;
#include <stdio.h>
#include <unistd.h>
#include <assert.h>
#include "db.h"
#include "parse.h"
#include "shmem.h"
#include "config.h"
#include "server_types.h"
#include "handle_request.h"
#include "main.h"
#if 1
#define REQ_FILE_PREFIX "/tmp/boinc_req_"
#define REPLY_FILE_PREFIX "/tmp/boinc_reply_"
#else
#define REQ_FILE_PREFIX "/disks/milkyway/a/users/anderson/boinc_cvs/boinc/sched/boinc_req_"
#define REPLY_FILE_PREFIX "/disks/milkyway/a/users/anderson/boinc_cvs/boinc/sched/boinc_reply_"
#endif
PROJECT gproject;
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).
//
int main() {
FILE* fin, *fout;
int i, retval, pid;
char req_path[256], reply_path[256], path[256];
SCHED_SHMEM* ssp;
void* p;
unsigned int counter=0;
char* code_sign_key;
bool found;
CONFIG config;
retval = config.parse_file();
if (retval) {
fprintf(stderr, "Can't parse config file\n");
exit(1);
}
sprintf(path, "%s/code_sign_public", config.key_dir);
retval = read_file_malloc(path, code_sign_key);
if (retval) {
fprintf(stderr,
"BOINC scheduler (%s): can't read code sign key file (%s)\n",
config.user_name, path
);
exit(1);
}
retval = attach_shmem(config.shmem_key, &p);
if (retval) {
fprintf(stderr,
"BOINC scheduler (%s): can't attach shmem\n",
config.user_name
);
exit(1);
}
ssp = (SCHED_SHMEM*)p;
retval = ssp->verify();
if (retval) {
fprintf(stderr,
"BOINC scheduler (%s): shmem has wrong struct sizes - recompile\n",
config.user_name
);
exit(1);
}
for (i=0; i<10; i++) {
if (ssp->ready) break;
fprintf(stderr,
"BOINC scheduler (%s): waiting for ready flag\n",
config.user_name
);
sleep(1);
}
if (!ssp->ready) {
fprintf(stderr,
"BOINC scheduler (%s): feeder doesn't seem to be running\n",
config.user_name
);
exit(1);
}
//fprintf(stderr, "got ready flag\n");
retval = db_open(config.db_name, config.db_passwd);
if (retval) {
fprintf(stderr,
"BOINC scheduler (%s): can't open database\n",
config.user_name
);
return_error("can't open database");
exit(1);
}
found = false;
while (!db_project_enum(gproject)) {
found = true;
}
if (!found) {
fprintf(stderr,
"BOINC scheduler (%s): can't find project\n",
config.user_name
);
exit(1);
}
pid = getpid();
#ifdef _USING_FCGI_
while(FCGI_Accept() >= 0) {
counter++;
#endif
sprintf(req_path, "%s%d_%u", REQ_FILE_PREFIX, pid, counter);
sprintf(reply_path, "%s%d_%u", REPLY_FILE_PREFIX, pid, counter);
fprintf(stdout, "Content-type: text/plain\n\n");
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);
#ifdef _USING_FCGI_
}
#endif
db_close();
}