mirror of https://github.com/BOINC/boinc.git
328 lines
10 KiB
C
328 lines
10 KiB
C
// 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):
|
|
|
|
|
|
//
|
|
// validate - check and validate new results, and grant credit
|
|
// -app appname
|
|
// -quorum n // example WUs only with this many done results
|
|
// [-one_pass] // make one pass through WU table, then exit
|
|
// [-asynch] // fork, run in separate process
|
|
//
|
|
// This program must be linked with two project-specific functions:
|
|
//
|
|
// int check_set(vector<RESULT>, int& canonical, double& credit)
|
|
// Compare a set of results.
|
|
// If a canonical result is found, return its ID,
|
|
// and set the "validate_state" field of all the results
|
|
// according to whether they match the canonical result.
|
|
// Also return the "canonical credit" (e.g. the average or median)
|
|
//
|
|
// int pair_check(RESULT& new_result, RESULT& canonical, bool& valid);
|
|
// return valid=true iff the new result matches the canonical one
|
|
//
|
|
// Both functions return nonzero if an error occurred,
|
|
// in which case other outputs are undefined
|
|
|
|
using namespace std;
|
|
|
|
#include <unistd.h>
|
|
#include <math.h>
|
|
#include <vector>
|
|
|
|
#include "db.h"
|
|
#include "util.h"
|
|
#include "config.h"
|
|
#include "sched_util.h"
|
|
|
|
#define LOCKFILE "validate.out"
|
|
|
|
extern int check_set(vector<RESULT>&, int& canonical, double& credit);
|
|
extern int check_pair(RESULT&, RESULT&, bool&);
|
|
|
|
CONFIG config;
|
|
char app_name[256];
|
|
int min_quorum;
|
|
|
|
// here when a result has been validated;
|
|
// grant credit to host and user
|
|
//
|
|
int grant_credit(RESULT& result, double credit) {
|
|
USER user;
|
|
HOST host;
|
|
int retval;
|
|
|
|
retval = db_host(result.hostid, host);
|
|
if (retval) return retval;
|
|
retval = db_user(host.userid, user);
|
|
if (retval) return retval;
|
|
|
|
user.total_credit += credit;
|
|
update_average(result.sent_time, credit, user.expavg_credit, user.expavg_time);
|
|
retval = db_user_update(user);
|
|
if (retval) return retval;
|
|
|
|
host.total_credit += credit;
|
|
update_average(result.sent_time, credit, host.expavg_credit, host.expavg_time);
|
|
retval = db_host_update(host);
|
|
if (retval) return retval;
|
|
|
|
return 0;
|
|
}
|
|
|
|
void handle_wu(WORKUNIT& wu) {
|
|
RESULT result, canonical_result;
|
|
bool match, update_result;
|
|
int retval, canonicalid;
|
|
double credit;
|
|
unsigned int i;
|
|
char buf[256];
|
|
|
|
if (wu.canonical_resultid) {
|
|
sprintf(buf,
|
|
"validating WU %s; already have canonical result\n", wu.name
|
|
);
|
|
write_log(buf);
|
|
|
|
// Here if WU already has a canonical result.
|
|
// Get unchecked results and see if they match the canonical result
|
|
//
|
|
retval = db_result(wu.canonical_resultid, canonical_result);
|
|
if (retval) {
|
|
write_log("can't read canonical result\n");
|
|
return;
|
|
}
|
|
|
|
// scan this WU's results, and check the unchecked ones
|
|
//
|
|
result.workunitid = wu.id;
|
|
while (!db_result_enum_wuid(result)) {
|
|
if (result.validate_state == VALIDATE_STATE_INIT
|
|
&& result.server_state == RESULT_SERVER_STATE_OVER
|
|
&& result.outcome == RESULT_OUTCOME_SUCCESS
|
|
) {
|
|
retval = check_pair(result, canonical_result, match);
|
|
if (retval) {
|
|
sprintf(buf,
|
|
"validate: pair_check failed for result %d\n",
|
|
result.id
|
|
);
|
|
write_log(buf);
|
|
continue;
|
|
} else {
|
|
if (match) {
|
|
result.validate_state = VALIDATE_STATE_VALID;
|
|
result.granted_credit = wu.canonical_credit;
|
|
printf("setting result %d to valid; credit %f\n", result.id, result.granted_credit);
|
|
} else {
|
|
result.validate_state = VALIDATE_STATE_INVALID;
|
|
printf("setting result %d to invalid\n", result.id);
|
|
}
|
|
}
|
|
retval = db_result_update(result);
|
|
if (retval) {
|
|
write_log("Can't update result\n");
|
|
continue;
|
|
}
|
|
retval = grant_credit(result, result.granted_credit);
|
|
if (retval) {
|
|
write_log("Can't grant credit\n");
|
|
continue;
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
vector<RESULT> results;
|
|
|
|
// Here if WU doesn't have a canonical result yet.
|
|
// Try to get one
|
|
|
|
sprintf(buf, "validating WU %s; no canonical result\n", wu.name);
|
|
write_log(buf);
|
|
|
|
result.workunitid = wu.id;
|
|
while (!db_result_enum_wuid(result)) {
|
|
if (result.server_state == RESULT_SERVER_STATE_OVER
|
|
&& result.outcome == RESULT_OUTCOME_SUCCESS
|
|
) {
|
|
results.push_back(result);
|
|
}
|
|
}
|
|
sprintf(buf, "found %d successful results\n", results.size());
|
|
write_log(buf);
|
|
if (results.size() >= (unsigned int)min_quorum) {
|
|
retval = check_set(results, canonicalid, credit);
|
|
if (!retval && canonicalid) {
|
|
write_log("found a canonical result\n");
|
|
wu.canonical_resultid = canonicalid;
|
|
wu.canonical_credit = credit;
|
|
wu.assimilate_state = ASSIMILATE_READY;
|
|
for (i=0; i<results.size(); i++) {
|
|
result = results[i];
|
|
update_result = false;
|
|
|
|
// grant credit for valid results
|
|
//
|
|
if (result.validate_state == VALIDATE_STATE_VALID) {
|
|
update_result = true;
|
|
retval = grant_credit(result, credit);
|
|
if (retval) {
|
|
sprintf(buf,
|
|
"validate: grant_credit %d\n", retval
|
|
);
|
|
write_log(buf);
|
|
}
|
|
result.granted_credit = credit;
|
|
sprintf(buf,
|
|
"updating result %d to %d; credit %f\n",
|
|
result.id, result.validate_state, credit
|
|
);
|
|
write_log(buf);
|
|
}
|
|
|
|
// don't send any unsent results
|
|
//
|
|
if (result.server_state == RESULT_SERVER_STATE_UNSENT) {
|
|
update_result = true;
|
|
result.server_state = RESULT_SERVER_STATE_OVER;
|
|
result.outcome = RESULT_OUTCOME_DIDNT_NEED;
|
|
}
|
|
|
|
if (update_result) {
|
|
retval = db_result_update(result);
|
|
if (retval) {
|
|
sprintf(buf,
|
|
"validate: db_result_update %d\n", retval
|
|
);
|
|
write_log(buf);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// we've checked all results for this WU, so turn off flag
|
|
//
|
|
wu.need_validate = 0;
|
|
retval = db_workunit_update(wu);
|
|
if (retval) {
|
|
sprintf(buf, "db_workunit_update: %d\n", retval);
|
|
write_log(buf);
|
|
}
|
|
}
|
|
|
|
// make one pass through the workunits with need_validate set.
|
|
// return true if there were any
|
|
//
|
|
bool do_validate_scan(APP& app, int min_quorum) {
|
|
WORKUNIT wu;
|
|
bool found=false;
|
|
|
|
wu.appid = app.id;
|
|
while(!db_workunit_enum_app_need_validate(wu)) {
|
|
handle_wu(wu);
|
|
found = true;
|
|
}
|
|
return found;
|
|
}
|
|
|
|
int main_loop(bool one_pass) {
|
|
int retval;
|
|
APP app;
|
|
bool did_something;
|
|
char buf[256];
|
|
|
|
retval = boinc_db_open(config.db_name, config.db_passwd);
|
|
if (retval) {
|
|
sprintf(buf, "boinc_db_open: %d\n", retval);
|
|
write_log(buf);
|
|
exit(1);
|
|
}
|
|
|
|
strcpy(app.name, app_name);
|
|
retval = db_app_lookup_name(app);
|
|
if (retval) {
|
|
sprintf(buf, "can't find app %s\n", app.name);
|
|
write_log(buf);
|
|
exit(1);
|
|
}
|
|
|
|
while (1) {
|
|
check_stop_trigger();
|
|
did_something = do_validate_scan(app, min_quorum);
|
|
if (one_pass) break;
|
|
if (!did_something) {
|
|
sleep(5);
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
|
|
int main(int argc, char** argv) {
|
|
int i, retval;
|
|
bool asynch = false, one_pass = false;
|
|
char buf[256];
|
|
|
|
check_stop_trigger();
|
|
|
|
for (i=1; i<argc; i++) {
|
|
if (!strcmp(argv[i], "-asynch")) {
|
|
asynch = true;
|
|
} else if (!strcmp(argv[i], "-one_pass")) {
|
|
one_pass = true;
|
|
} else if (!strcmp(argv[i], "-app")) {
|
|
strcpy(app_name, argv[++i]);
|
|
} else if (!strcmp(argv[i], "-quorum")) {
|
|
min_quorum = atoi(argv[++i]);
|
|
} else {
|
|
sprintf(buf, "unrecognized arg: %s\n", argv[i]);
|
|
write_log(buf);
|
|
}
|
|
}
|
|
|
|
if (min_quorum < 1 || min_quorum > 10) {
|
|
sprintf(buf, "bad min_quorum: %d\n", min_quorum);
|
|
write_log(buf);
|
|
exit(1);
|
|
}
|
|
|
|
sprintf(buf, "starting validator; min_quorum %d\n", min_quorum);
|
|
write_log(buf);
|
|
|
|
retval = config.parse_file();
|
|
if (retval) {
|
|
write_log("Can't parse config file\n");
|
|
exit(1);
|
|
}
|
|
|
|
if (asynch) {
|
|
if (fork()) {
|
|
exit(0);
|
|
}
|
|
}
|
|
|
|
if (lock_file(LOCKFILE)) {
|
|
fprintf(stderr, "Another copy of validate is already running\n");
|
|
exit(1);
|
|
}
|
|
|
|
main_loop(one_pass);
|
|
}
|