// This file is part of BOINC. // http://boinc.berkeley.edu // Copyright (C) 2008 University of California // // BOINC is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation, // either version 3 of the License, or (at your option) any later version. // // BOINC is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. // See the GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License // along with BOINC. If not, see . // SCHED_SHMEM is the structure of a chunk of memory shared between // the feeder (which reads from the database) // and instances of the scheduling server #include "config.h" #include #include #include #include #include #include using std::vector; #include "boinc_db.h" #include "error_numbers.h" #include "filesys.h" #ifdef _USING_FCGI_ #include "boinc_fcgi.h" #endif #include "sched_config.h" #include "sched_msgs.h" #include "sched_types.h" #include "sched_util.h" #include "sched_shmem.h" void SCHED_SHMEM::init(int nwu_results) { int size = sizeof(SCHED_SHMEM) + nwu_results*sizeof(WU_RESULT); memset(this, 0, size); ss_size = size; platform_size = sizeof(PLATFORM); app_size = sizeof(APP); app_version_size = sizeof(APP_VERSION); assignment_size = sizeof(ASSIGNMENT); wu_result_size = sizeof(WU_RESULT); max_platforms = MAX_PLATFORMS; max_apps = MAX_APPS; max_app_versions = MAX_APP_VERSIONS; max_assignments = MAX_ASSIGNMENTS; max_wu_results = nwu_results; } static int error_return(const char* p) { fprintf(stderr, "Error in structure: %s\n", p); return ERR_SCHED_SHMEM; } int SCHED_SHMEM::verify() { int size = sizeof(SCHED_SHMEM) + max_wu_results*sizeof(WU_RESULT); if (ss_size != size) return error_return("shmem"); if (platform_size != sizeof(PLATFORM)) return error_return("platform"); if (app_size != sizeof(APP)) return error_return("app"); if (app_version_size != sizeof(APP_VERSION)) return error_return("app_version"); if (assignment_size != sizeof(ASSIGNMENT)) return error_return("assignment"); if (wu_result_size != sizeof(WU_RESULT)) return error_return("wu_result"); if (max_platforms != MAX_PLATFORMS) return error_return("max platform"); if (max_apps != MAX_APPS) return error_return("max apps"); if (max_app_versions != MAX_APP_VERSIONS) return error_return("max app versions"); if (max_assignments != MAX_ASSIGNMENTS) return error_return("max assignments"); return 0; } static void overflow(const char* table, const char* param_name) { log_messages.printf(MSG_CRITICAL, "The SCHED_SHMEM structure is too small for the %s table.\n" "Either increase the %s parameter in sched_shmem.h and recompile,\n" "or prune old rows from the table.\n" "Then restart the project.\n", table, param_name ); exit(1); } int SCHED_SHMEM::scan_tables() { DB_PLATFORM platform; DB_APP app; DB_APP_VERSION app_version; DB_ASSIGNMENT assignment; int i, j, n; n = 0; while (!platform.enumerate("where deprecated=0")) { platforms[n++] = platform; if (n == MAX_PLATFORMS) { overflow("platforms", "MAX_PLATFORMS"); } } nplatforms = n; n = 0; app_weight_sum = 0; while (!app.enumerate("where deprecated=0")) { if (n == MAX_APPS) { overflow("apps", "MAX_APPS"); } app_weight_sum += app.weight; if (app.locality_scheduling == LOCALITY_SCHED_LITE) { locality_sched_lite = true; } if (app.non_cpu_intensive) { have_nci_app = true; } if (config.non_cpu_intensive) { have_nci_app = true; app.non_cpu_intensive = true; } if (app.n_size_classes > 1) { char path[MAXPATHLEN]; sprintf(path, "../size_census_%s", app.name); #ifndef _USING_FCGI_ FILE* f = fopen(path, "r"); #else FCGI_FILE* f = FCGI::fopen(path, "r"); #endif if (!f) { log_messages.printf(MSG_CRITICAL, "Missing size census file for app %s\n", app.name ); return ERR_FOPEN; } for (int i=0; i avs; char query[1024]; sprintf(query, "where appid=%d and platformid=%d and deprecated=0", sapp.id, splatform.id ); while (!app_version.enumerate(query)) { avs.push_back(app_version); } for (unsigned int k=0; k av2.version_num) { av2.deprecated = 1; } } } for (unsigned int k=0; k 0")) { assignments[n++] = assignment; if (n == MAX_ASSIGNMENTS) { overflow("assignments", "MAX_ASSIGNMENTS"); } } nassignments = n; return 0; } PLATFORM* SCHED_SHMEM::lookup_platform(char* name) { for (int i=0; iid == id) { return avp; } } return NULL; } APP_VERSION* SCHED_SHMEM::lookup_app_version_platform_plan_class( int platformid, char* plan_class ) { APP_VERSION* avp; for (int i=0; iplatformid == platformid && !strcmp(avp->plan_class, plan_class)) { return avp; } } return NULL; } // see if there's any work. // If there is, reserve it for this process // (if we don't do this, there's a race condition where lots // of servers try to get a single work item) // bool SCHED_SHMEM::no_work(int pid) { if (!ready) return true; for (int i=0; iname:"missing"; delta_t = dtime() - wu_result.time_added_to_shared_memory; fprintf(f, "%4d %12.12s %10d %10d %10d %8d %10d %7ds %9d %12s %9d\n", i, appname, wu_result.workunit.id, wu_result.resultid, wu_result.workunit.batch, wu_result.workunit.hr_class, wu_result.res_priority, delta_t, wu_result.workunit.size_class, wu_result.need_reliable?"yes":"no", wu_result.infeasible_count ); break; case WR_STATE_EMPTY: fprintf(f, "%4d: ---\n", i); break; default: fprintf(f, "%4d: PID %d: result %u\n", i, wu_result.state, wu_result.resultid); } } } const char *BOINC_RCSID_e548c94703 = "$Id$";