// Berkeley Open Infrastructure for Network Computing // http://boinc.berkeley.edu // Copyright (C) 2005 University of California // // This 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 2.1 of the License, or (at your option) any later version. // // This software 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. // // To view the GNU Lesser General Public License visit // http://www.gnu.org/copyleft/lesser.html // or write to the Free Software Foundation, Inc., // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA // Determine which platforms are supported and provide a way // of exposing that information to the rest of the client. #include "cpp.h" #ifdef _WIN32 #include "boinc_win.h" #endif #ifndef _WIN32 #include "config.h" #include #ifdef HAVE_SIGNAL_H #include #endif #ifdef HAVE_UNISTD_H #include #endif #ifdef HAVE_SYS_TYPES_H #include #endif #ifdef HAVE_SYS_WAIT_H #include #endif #endif #include "client_types.h" #include "client_state.h" #include "error_numbers.h" #include "log_flags.h" #include "str_util.h" #include "util.h" // return the primary platform id. // const char* CLIENT_STATE::get_primary_platform() { return platforms[0].name.c_str(); } // add a platform to the vector. // void CLIENT_STATE::add_platform(const char* platform) { PLATFORM pp; pp.name = platform; platforms.push_back(pp); } // determine the list of supported platforms. // void CLIENT_STATE::detect_platforms() { #if defined(_WIN32) && !defined(__CYGWIN32__) #if defined(_WIN64) && defined(_M_X64) add_platform("windows_x86_64"); add_platform("windows_intelx86"); #else add_platform("windows_intelx86"); #endif #elif defined(__APPLE__) #if defined(__x86_64__) add_platform("x86_64-apple-darwin"); #endif #if defined(__i386__) || defined(__x86_64__) // Supported on both Mac Intel architectures add_platform("i686-apple-darwin"); #endif // Supported on all 3 Mac architectures add_platform("powerpc-apple-darwin"); #elif defined(sun) // Check if we can run 64 bit binaries... #if defined(__sparc) || defined(sparc) FILE *f=fopen("/usr/bin/sparcv9/ls","r"); char *argv[3]; pid_t pid; int rv=0; argv[0]="/usr/bin/sparcv9/ls"; argv[1]=argv[0]; argv[2]=NULL; if (f) { fclose(f); if (0==(pid=fork())) { // we are in child process freopen("/dev/null","a",stderr); freopen("/dev/null","a",stdout); rv=execv(argv[0],argv); exit(rv); } else { // we are in the parent process. time_t start=time(0); int done; // wait 5 seconds or until the process exits. do { done=waitpid(pid,&rv,WNOHANG); sleep(1); } while (!done && ((time(0)-start)<5)); // if we timed out, kill the process if ((time(0)-start)>=5) { kill(pid,SIGKILL); done=-1; } // if we exited with success add the 64 bit platform if ((done == pid) && (rv == 0)) { add_platform("sparc64-sun-solaris"); } } } add_platform("sparc-sun-solaris"); // the following platform is obsolete, but we'll add it anyway. add_platform("sparc-sun-solaris2.7"); #else // defined sparc add_platform(HOSTTYPE); #ifdef HOSTTYPEALT add_platform(HOSTTYPEALT); #endif #endif // else defined sparc #else // Any other platform, fall back to the previous method add_platform(HOSTTYPE); #ifdef HOSTTYPEALT add_platform(HOSTTYPEALT); #endif #endif if (config.no_alt_platform) { PLATFORM p = platforms[0]; platforms.clear(); platforms.push_back(p); } // add platforms listed in cc_config.xml AFTER the above. // for (unsigned int i=0; i%s\n", p->anonymous_platform ? "anonymous" : get_primary_platform() ); for (unsigned int i=1; i\n" " %s\n" " \n", platform.name.c_str() ); } } bool CLIENT_STATE::is_supported_platform(const char* p) { for (unsigned int i=0; i