// 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 "windows_cpp.h" #include "error_numbers.h" #include #include #include "error_numbers.h" #include "file_names.h" #include "filesys.h" #include "hostinfo.h" #include "log_flags.h" #include "parse.h" #include "speed_stats.h" #include "client_state.h" #define SECONDS_IN_MONTH 2592000 // Global CLIENT_STATE object CLIENT_STATE gstate; CLIENT_STATE::CLIENT_STATE() { net_xfers = new NET_XFER_SET; http_ops = new HTTP_OP_SET(net_xfers); file_xfers = new FILE_XFER_SET(http_ops); pers_xfers = new PERS_FILE_XFER_SET(file_xfers); scheduler_op = new SCHEDULER_OP(http_ops); client_state_dirty = false; exit_when_idle = false; run_time_test = true; giveup_after = PERS_GIVEUP; contacted_sched_server = false; activities_suspended = false; version = VERSION; platform_name = HOST; exit_after = -1; app_started = 0; } int CLIENT_STATE::init(PREFS* p) { nslots = 1; unsigned int i; if (p==NULL) { fprintf(stderr, "error: CLIENT_STATE.init: unexpected NULL pointer p\n"); return ERR_NULL; } prefs = p; // Initialize the random number generator srand( clock() ); // copy all PROJECTs from the prefs to the client state. // for (i=0; iprojects.size(); i++) { projects.push_back(p->projects[i]); } // Then parse the client state file, // ignoring any tags (and associated stuff) // for projects not in the prefs // parse_state_file(); if (log_flags.state_debug) { print_counts(); } // Finally, set up the project and slot directories // make_project_dirs(); make_slot_dirs(); return 0; } // Returns true if time tests should be run // This is determined by seeing if the user passed the "-no_time_test" // flag or if it's been a month since we last checked time stats // bool CLIENT_STATE::run_time_tests() { return (run_time_test && ( difftime(time(0), (time_t)host_info.p_calculated) > SECONDS_IN_MONTH )); } // Updates computer statistics (roughly once a month) // int CLIENT_STATE::time_tests() { get_host_info(host_info); // this is platform dependent host_info.p_fpops = run_double_prec_test(4); //these are not host_info.p_iops = run_int_test(4); //host_info.p_membw = run_mem_bandwidth_test(4); host_info.p_membw = 100000; host_info.p_calculated = (double)time(0); //set time calculated //host_info.m_cache = check_cache_size(CACHE_MAX); return 0; } // Update the net_stats object, since it's private // void CLIENT_STATE::update_net_stats(bool is_upload, double nbytes, double nsecs) { net_stats.update( is_upload, nbytes, nsecs ); } // Insert an object into the file_xfers object, since it's private // int CLIENT_STATE::insert_file_xfer( FILE_XFER *fxp ) { return file_xfers->insert(fxp); } // Return the maximum allowed disk usage as determined by user preferences. // Since there are three different settings in the prefs, it returns the least // of the three. double CLIENT_STATE::allowed_disk_usage() { double percent_space,min_val; // Calculate allowed disk usage based on % pref percent_space = host_info.d_total*prefs->disk_max_used_pct/100.0; // Return the minimum of the three return min(min(prefs->disk_max_used_gb, percent_space),min_val); } // See if (on the basis of user prefs) we should suspend activities. // If so, suspend tasks // int CLIENT_STATE::check_suspend_activities() { bool should_suspend = false; if (prefs->dont_run_on_batteries && host_is_running_on_batteries()) { should_suspend = true; } if (should_suspend) { if (!activities_suspended) { if (log_flags.task_debug) printf("SUSPENDING ACTIVITIES\n"); active_tasks.suspend_all(); } } else { if (activities_suspended) { if (log_flags.task_debug) printf("UNSUSPENDING ACTIVITIES\n"); active_tasks.unsuspend_all(); } } activities_suspended = should_suspend; return 0; } // do_something is where all the action happens. This is part of the // finite state machine abstraction of the client. Each of the key // elements of the client is given a chance to perform work here. // return true if something happened // TODO: handle errors passed back up to here? // bool CLIENT_STATE::do_something() { int nbytes; bool action = false; check_suspend_activities(); if (!activities_suspended) { net_xfers->poll(999999, nbytes); if (nbytes) action = true; // If pers_xfers returns true, we've made a change to a // persistent transfer which must be recorded in the // client_state.xml file if (pers_xfers->poll()) { action = client_state_dirty = true; } action |= http_ops->poll(); action |= file_xfers->poll(); action |= active_tasks.poll(); action |= active_tasks.poll_time(); action |= scheduler_rpc_poll(); action |= garbage_collect(); action |= start_apps(); action |= handle_running_apps(); action |= start_file_xfers(); write_state_file_if_needed(); } if (!action) time_stats.update(true, !activities_suspended); return action; } // Parse the client_state.xml file // int CLIENT_STATE::parse_state_file() { char buf[256]; FILE* f = fopen(STATE_FILE_NAME, "r"); PROJECT temp_project, *project; int retval; if (!f) { if (log_flags.state_debug) { printf("No state file; will create one\n"); } return ERR_FOPEN; } fgets(buf, 256, f); if (!match_tag(buf, "")) return -1; while (fgets(buf, 256, f)) { if (match_tag(buf, "")) { return 0; } else if (match_tag(buf, "")) { temp_project.parse_state(f); project = lookup_project(temp_project.master_url); if (project) { project->copy_state_fields(temp_project); } else { fprintf(stderr, "Project %s found in state file but not prefs.\n", temp_project.master_url ); } } else if (match_tag(buf, "")) { APP* app = new APP; app->parse(f); if (project) { retval = link_app(project, app); if (!retval) apps.push_back(app); } else { delete app; } } else if (match_tag(buf, "")) { FILE_INFO* fip = new FILE_INFO; fip->parse(f, false); if (project) { retval = link_file_info(project, fip); if (!retval) file_infos.push_back(fip); // Init PERS_FILE_XFER and push it onto pers_file_xfer stack if (fip->pers_file_xfer) { fip->pers_file_xfer->init( fip, fip->upload_when_present ); pers_xfers->insert( fip->pers_file_xfer ); } } else { delete fip; } } else if (match_tag(buf, "")) { APP_VERSION* avp = new APP_VERSION; avp->parse(f); if (project) { retval = link_app_version(project, avp); if (!retval) app_versions.push_back(avp); } else { delete avp; } } else if (match_tag(buf, "")) { WORKUNIT* wup = new WORKUNIT; wup->parse(f); if (project) { retval = link_workunit(project, wup); if (!retval) workunits.push_back(wup); } else { delete wup; } } else if (match_tag(buf, "")) { RESULT* rp = new RESULT; rp->parse_state(f); if (project) { retval = link_result(project, rp); if (!retval) results.push_back(rp); } else { fprintf(stderr, "error: link_result failed\n"); delete rp; } } else if (match_tag(buf, "")) { host_info.parse(f); } else if (match_tag(buf, "")) { time_stats.parse(f); } else if (match_tag(buf, "")) { net_stats.parse(f); } else if (match_tag(buf, "")) { active_tasks.parse(f, this); } else if (match_tag(buf, "")) { // should match out current platform name } else if (match_tag(buf, "")) { // could put logic here to detect incompatible state files // after core client update } else { fprintf(stderr, "CLIENT_STATE::parse_state_file: unrecognized: %s\n", buf); return ERR_XML_PARSE; } } return 0; } // Make a directory for each of the projects present // in the client state // int CLIENT_STATE::make_project_dirs() { unsigned int i; for (i=0; i\n"); host_info.write(f); time_stats.write(f, false); net_stats.write(f, false); for (j=0; jwrite_state(f); for (i=0; iproject == p) apps[i]->write(f); } for (i=0; iproject == p) { file_infos[i]->write(f, false); } } for (i=0; iproject == p) app_versions[i]->write(f); } for (i=0; iproject == p) workunits[i]->write(f); } for (i=0; iproject == p) results[i]->write(f, false); } } active_tasks.write(f); fprintf(f, "%s\n" "%d\n", platform_name, version ); fprintf(f, "\n"); fclose(f); retval = rename(STATE_FILE_TEMP, STATE_FILE_NAME); if (log_flags.state_debug) { printf("Done writing state file\n"); } if (retval) return ERR_RENAME; return 0; } // See if the project specified by master_url already exists // in the client state record. // PROJECT* CLIENT_STATE::lookup_project(char* master_url) { for (unsigned int i=0; imaster_url)) { return projects[i]; } } return 0; } APP* CLIENT_STATE::lookup_app(PROJECT* p, char* name) { for (unsigned int i=0; iproject == p && !strcmp(name, app->name)) return app; } return 0; } RESULT* CLIENT_STATE::lookup_result(PROJECT* p, char* name) { for (unsigned int i=0; iproject == p && !strcmp(name, rp->name)) return rp; } return 0; } WORKUNIT* CLIENT_STATE::lookup_workunit(PROJECT* p, char* name) { for (unsigned int i=0; iproject == p && !strcmp(name, wup->name)) return wup; } return 0; } APP_VERSION* CLIENT_STATE::lookup_app_version(APP* app, int version_num) { for (unsigned int i=0; iapp == app && version_num==avp->version_num) { return avp; } } return 0; } FILE_INFO* CLIENT_STATE::lookup_file_info(PROJECT* p, char* name) { for (unsigned int i=0; iproject == p && !strcmp(fip->name, name)) { return fip; } } return 0; } // functions to create links between state objects // (which, in their XML form, reference one another by name) // int CLIENT_STATE::link_app(PROJECT* p, APP* app) { app->project = p; return 0; } int CLIENT_STATE::link_file_info(PROJECT* p, FILE_INFO* fip) { fip->project = p; return 0; } int CLIENT_STATE::link_app_version(PROJECT* p, APP_VERSION* avp) { APP* app; FILE_INFO* fip; FILE_REF file_ref; unsigned int i; avp->project = p; app = lookup_app(p, avp->app_name); if (!app) { fprintf(stderr, "app_version refers to nonexistent app: %s\n", avp->app_name ); return 1; } avp->app = app; for (i=0; iapp_files.size(); i++) { file_ref = avp->app_files[i]; fip = lookup_file_info(p, file_ref.file_name); if (!fip) { fprintf(stderr, "app_version refers to nonexistent file: %s\n", file_ref.file_name ); return 1; } // any file associated with an app version must be signed // fip->signature_required = true; avp->app_files[i].file_info = fip; } return 0; } int CLIENT_STATE::link_file_ref(PROJECT* p, FILE_REF* file_refp) { FILE_INFO* fip; fip = lookup_file_info(p, file_refp->file_name); if (!fip) { fprintf(stderr, "I/O desc links to nonexistent file: %s\n", file_refp->file_name ); return 1; } file_refp->file_info = fip; return 0; } int CLIENT_STATE::link_workunit(PROJECT* p, WORKUNIT* wup) { APP* app; APP_VERSION* avp; unsigned int i; int retval; app = lookup_app(p, wup->app_name); if (!app) { fprintf(stderr, "WU refers to nonexistent app: %s\n", wup->app_name ); return 1; } avp = lookup_app_version(app, wup->version_num); if (!avp) { fprintf(stderr, "WU refers to nonexistent app_version: %s %d\n", wup->app_name, wup->version_num ); return 1; } wup->project = p; wup->app = app; wup->avp = avp; for (i=0; iinput_files.size(); i++) { retval = link_file_ref(p, &wup->input_files[i]); if (retval) return retval; } return 0; } int CLIENT_STATE::link_result(PROJECT* p, RESULT* rp) { WORKUNIT* wup; unsigned int i; int retval; wup = lookup_workunit(p, rp->wu_name); if (!wup) { fprintf(stderr, "result refers to nonexistent WU: %s\n", rp->wu_name); return 1; } rp->project = p; rp->wup = wup; rp->app = wup->app; for (i=0; ioutput_files.size(); i++) { retval = link_file_ref(p, &rp->output_files[i]); if (retval) { fprintf(stderr, "error: link_result: link_file_ref failed\n"); return retval; } } return 0; } int CLIENT_STATE::latest_version_num(char* app_name) { unsigned int i; int best = -1; APP_VERSION* avp; for (i=0; iapp_name, app_name)) continue; if (avp->version_num < best) continue; best = avp->version_num; } if (best < 0) fprintf(stderr, "CLIENT_STATE::latest_version_num: no version\n"); return best; } // Print debugging information about how many projects/files/etc // are currently in the client state record // void CLIENT_STATE::print_counts() { if (log_flags.state_debug) { printf( "Client state file:\n" "%d projects\n" "%d file_infos\n" "%d app_versions\n" "%d workunits\n" "%d results\n", projects.size(), file_infos.size(), app_versions.size(), workunits.size(), results.size() ); } } // delete unneeded records and files // bool CLIENT_STATE::garbage_collect() { unsigned int i; PERS_FILE_XFER* pfxp; FILE_INFO* fip; RESULT* rp; WORKUNIT* wup; vector::iterator pers_iter; vector::iterator result_iter; vector::iterator wu_iter; vector::iterator fi_iter; bool action = false; // zero references counts on WUs and FILE_INFOs for (i=0; iref_cnt = 0; } for (i=0; iref_cnt = 0; } // delete PERS_FILE_XFERs that have finished and their // associated FILE_INFO and FILE_XFER objects // pers_iter = pers_xfers->pers_file_xfers.begin(); while (pers_iter != pers_xfers->pers_file_xfers.end()) { pfxp = *pers_iter; if (pfxp->xfer_done) { // TODO: *** Set the exit status of the related result // to ERR_GIVEUP. The failure will be reported to the // server and related file infos, results, and workunits // will be deleted if necessary pers_iter = pers_xfers->pers_file_xfers.erase(pers_iter); if (pfxp->fip) { pfxp->fip->pers_file_xfer = NULL; } delete pfxp; // Update the client_state file client_state_dirty = true; action = true; } else { pers_iter++; } } // delete RESULTs that have been finished and reported; // reference-count files referred to by other results // result_iter = results.begin(); while (result_iter != results.end()) { rp = *result_iter; if (rp->is_server_ack) { if (log_flags.state_debug) printf("deleting result %s\n", rp->name); delete rp; result_iter = results.erase(result_iter); action = true; } else { rp->wup->ref_cnt++; for (i=0; ioutput_files.size(); i++) { rp->output_files[i].file_info->ref_cnt++; } result_iter++; } } // delete WORKUNITs not referenced by any result; // reference-count files referred to by other WUs // wu_iter = workunits.begin(); while (wu_iter != workunits.end()) { wup = *wu_iter; if (wup->ref_cnt == 0) { if (log_flags.state_debug) { printf("deleting workunit %s\n", wup->name); } delete wup; wu_iter = workunits.erase(wu_iter); action = true; } else { for (i=0; iinput_files.size(); i++) { wup->input_files[i].file_info->ref_cnt++; } wu_iter++; } } // delete FILE_INFOs (and corresponding files) // that are not referenced by any WORKUNIT or RESULT, // and are not sticky. // fi_iter = file_infos.begin(); while (fi_iter != file_infos.end()) { fip = *fi_iter; if (fip->ref_cnt==0 && !fip->sticky && !fip->executable) { fip->delete_file(); if (log_flags.state_debug) printf("deleting file %s\n", fip->name); delete fip; fi_iter = file_infos.erase(fi_iter); action = true; } else { fi_iter++; } } // TODO: delete obsolete APP_VERSIONs return action; } // TODO: write no more often than X seconds // Write the client_state.xml file if necessary // int CLIENT_STATE::write_state_file_if_needed() { int retval; if (client_state_dirty) { retval = write_state_file(); if (retval) return retval; client_state_dirty = false; } return 0; } // Parse the command line arguments passed to the client // void CLIENT_STATE::parse_cmdline(int argc, char** argv) { int i; for (i=1; i= exit_after)) return true; if (exit_when_idle && (results.size() == 0) && contacted_sched_server) { return true; } return false; }