2005-01-20 23:22:22 +00:00
|
|
|
// Berkeley Open Infrastructure for Network Computing
|
|
|
|
// http://boinc.berkeley.edu
|
|
|
|
// Copyright (C) 2005 University of California
|
2004-07-13 13:54:09 +00:00
|
|
|
//
|
2005-01-20 23:22:22 +00:00
|
|
|
// 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.
|
2004-07-13 13:54:09 +00:00
|
|
|
//
|
2005-01-20 23:22:22 +00:00
|
|
|
// 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.
|
2002-04-30 22:22:54 +00:00
|
|
|
//
|
2005-01-20 23:22:22 +00:00
|
|
|
// To view the GNU Lesser General Public License visit
|
|
|
|
// http://www.gnu.org/copyleft/lesser.html
|
|
|
|
// or write to the Free Software Foundation, Inc.,
|
2007-10-09 11:35:47 +00:00
|
|
|
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2002-04-30 22:22:54 +00:00
|
|
|
|
2003-02-26 00:47:57 +00:00
|
|
|
// NET_STATS estimates average network throughput,
|
|
|
|
// i.e. the average total throughput in both the up and down directions.
|
2007-08-17 18:05:39 +00:00
|
|
|
//
|
|
|
|
// NET_STATUS keeps track of whether we have a physical connection,
|
|
|
|
// and whether we need one
|
2003-02-26 00:47:57 +00:00
|
|
|
|
2003-10-16 19:03:49 +00:00
|
|
|
#include "cpp.h"
|
2004-03-04 11:41:43 +00:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
2004-06-16 23:16:08 +00:00
|
|
|
#include "boinc_win.h"
|
2007-08-17 18:05:39 +00:00
|
|
|
#else
|
2005-11-21 18:34:44 +00:00
|
|
|
#include "config.h"
|
2004-07-13 13:54:09 +00:00
|
|
|
#include <cstring>
|
|
|
|
#include <cmath>
|
2004-03-04 11:41:43 +00:00
|
|
|
#endif
|
2003-02-26 01:04:42 +00:00
|
|
|
|
2002-04-30 22:22:54 +00:00
|
|
|
#include "parse.h"
|
|
|
|
#include "time.h"
|
2007-02-21 16:26:51 +00:00
|
|
|
#include "str_util.h"
|
2002-07-11 01:09:53 +00:00
|
|
|
#include "error_numbers.h"
|
2007-08-17 18:05:39 +00:00
|
|
|
#include "util.h"
|
2006-12-28 18:24:21 +00:00
|
|
|
|
2004-04-08 08:15:23 +00:00
|
|
|
#include "client_msgs.h"
|
2005-06-07 19:22:50 +00:00
|
|
|
#include "client_state.h"
|
2006-12-28 18:24:21 +00:00
|
|
|
#include "file_names.h"
|
2003-07-03 05:01:29 +00:00
|
|
|
|
2002-04-30 22:22:54 +00:00
|
|
|
#include "net_stats.h"
|
|
|
|
|
2007-08-17 18:05:39 +00:00
|
|
|
#define NET_RATE_HALF_LIFE (7*86400)
|
2002-04-30 22:22:54 +00:00
|
|
|
|
2006-07-17 22:18:17 +00:00
|
|
|
NET_STATUS net_status;
|
|
|
|
|
2002-04-30 22:22:54 +00:00
|
|
|
NET_STATS::NET_STATS() {
|
2003-02-26 00:47:57 +00:00
|
|
|
memset(&up, 0, sizeof(up));
|
|
|
|
memset(&down, 0, sizeof(down));
|
2002-04-30 22:22:54 +00:00
|
|
|
}
|
|
|
|
|
2007-08-17 18:05:39 +00:00
|
|
|
// called after file xfer to update rates
|
|
|
|
//
|
|
|
|
void NET_INFO::update(double nbytes, double dt) {
|
|
|
|
if (nbytes == 0 || dt==0) return;
|
|
|
|
double bytes_sec = nbytes/dt;
|
|
|
|
if (max_rate == 0) {
|
|
|
|
max_rate = bytes_sec; // first time
|
2006-01-06 19:27:12 +00:00
|
|
|
} else {
|
2007-08-17 18:05:39 +00:00
|
|
|
// somewhat arbitrary weighting formula
|
|
|
|
//
|
|
|
|
double w = log(nbytes)/500;
|
|
|
|
if (w>1) w = 1;
|
|
|
|
max_rate = w*bytes_sec + (1-w)*max_rate;
|
2003-02-26 00:47:57 +00:00
|
|
|
}
|
2007-08-17 18:05:39 +00:00
|
|
|
double start_time = gstate.now - dt;
|
|
|
|
update_average(
|
|
|
|
start_time,
|
|
|
|
nbytes,
|
|
|
|
NET_RATE_HALF_LIFE,
|
|
|
|
avg_rate,
|
|
|
|
avg_time
|
2005-11-25 18:17:09 +00:00
|
|
|
);
|
2002-04-30 22:22:54 +00:00
|
|
|
}
|
|
|
|
|
2004-09-22 21:08:26 +00:00
|
|
|
int NET_STATS::write(MIOFILE& out) {
|
2004-06-12 04:45:36 +00:00
|
|
|
out.printf(
|
2002-04-30 22:22:54 +00:00
|
|
|
"<net_stats>\n"
|
2007-08-17 18:05:39 +00:00
|
|
|
" <bwup>%f</bwup>\n"
|
|
|
|
" <avg_up>%f</avg_up>\n"
|
|
|
|
" <avg_time_up>%f</avg_time_up>\n"
|
|
|
|
" <bwdown>%f</bwdown>\n"
|
|
|
|
" <avg_down>%f</avg_down>\n"
|
|
|
|
" <avg_time_down>%f</avg_time_down>\n"
|
2003-02-26 00:47:57 +00:00
|
|
|
"</net_stats>\n",
|
2007-08-17 18:05:39 +00:00
|
|
|
up.max_rate,
|
|
|
|
up.avg_rate,
|
|
|
|
up.avg_time,
|
|
|
|
down.max_rate,
|
|
|
|
down.avg_rate,
|
|
|
|
down.avg_time
|
2002-04-30 22:22:54 +00:00
|
|
|
);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-06-12 04:45:36 +00:00
|
|
|
int NET_STATS::parse(MIOFILE& in) {
|
2002-04-30 22:22:54 +00:00
|
|
|
char buf[256];
|
2002-08-15 22:03:41 +00:00
|
|
|
|
2002-04-30 22:22:54 +00:00
|
|
|
memset(this, 0, sizeof(NET_STATS));
|
2004-06-12 04:45:36 +00:00
|
|
|
while (in.fgets(buf, 256)) {
|
2002-04-30 22:22:54 +00:00
|
|
|
if (match_tag(buf, "</net_stats>")) return 0;
|
2007-08-17 18:05:39 +00:00
|
|
|
if (parse_double(buf, "<bwup>", up.max_rate)) continue;
|
|
|
|
if (parse_double(buf, "<avg_up>", up.avg_rate)) continue;
|
|
|
|
if (parse_double(buf, "<avg_time_up>", up.avg_time)) continue;
|
|
|
|
if (parse_double(buf, "<bwdown>", down.max_rate)) continue;
|
|
|
|
if (parse_double(buf, "<avg_down>", down.avg_rate)) continue;
|
|
|
|
if (parse_double(buf, "<avg_time_down>", down.avg_time)) continue;
|
|
|
|
if (log_flags.unparsed_xml) {
|
|
|
|
msg_printf(NULL, MSG_INFO,
|
|
|
|
"[unparsed_xml] Unrecognized network statistics line: %s", buf
|
|
|
|
);
|
2003-02-26 00:47:57 +00:00
|
|
|
}
|
2002-04-30 22:22:54 +00:00
|
|
|
}
|
2004-01-30 22:19:19 +00:00
|
|
|
return ERR_XML_PARSE;
|
2002-04-30 22:22:54 +00:00
|
|
|
}
|
2004-12-08 00:40:19 +00:00
|
|
|
|
2006-07-17 22:18:17 +00:00
|
|
|
// Return:
|
2007-05-14 21:45:02 +00:00
|
|
|
// ONLINE if we have network connections open
|
|
|
|
// WANT_CONNECTION if we need a physical connection
|
|
|
|
// WANT_DISCONNECT if we don't have any connections, and don't need any
|
|
|
|
// LOOKUP_PENDING if a website lookup is pending (try again later)
|
2006-07-17 22:18:17 +00:00
|
|
|
//
|
|
|
|
// There's a 10-second slop factor;
|
|
|
|
// if we've done network comm in the last 10 seconds,
|
|
|
|
// we act as if we're doing it now.
|
2006-12-28 18:24:21 +00:00
|
|
|
// (so that polling mechanisms have a chance to start other xfers,
|
|
|
|
// in the case of a modem connection waiting to be closed by the mgr)
|
2006-07-17 22:18:17 +00:00
|
|
|
//
|
|
|
|
int NET_STATUS::network_status() {
|
2006-08-29 18:18:36 +00:00
|
|
|
int retval;
|
2006-07-17 22:18:17 +00:00
|
|
|
|
|
|
|
if (gstate.http_ops->nops()) {
|
|
|
|
last_comm_time = gstate.now;
|
|
|
|
}
|
2006-12-28 18:24:21 +00:00
|
|
|
if (gstate.lookup_website_op.error_num == ERR_IN_PROGRESS) {
|
|
|
|
retval = NETWORK_STATUS_LOOKUP_PENDING;
|
|
|
|
} else if (gstate.now - last_comm_time < 10) {
|
2006-08-29 18:18:36 +00:00
|
|
|
retval = NETWORK_STATUS_ONLINE;
|
|
|
|
} else if (need_physical_connection) {
|
|
|
|
retval = NETWORK_STATUS_WANT_CONNECTION;
|
|
|
|
} else if (gstate.active_tasks.want_network()) {
|
|
|
|
retval = NETWORK_STATUS_WANT_CONNECTION;
|
|
|
|
} else {
|
|
|
|
have_sporadic_connection = false;
|
|
|
|
retval = NETWORK_STATUS_WANT_DISCONNECT;
|
|
|
|
}
|
|
|
|
if (log_flags.network_status_debug) {
|
2006-09-07 20:39:25 +00:00
|
|
|
msg_printf(NULL, MSG_INFO, "[network_status_debug] status: %s", network_status_string(retval));
|
2006-08-29 18:18:36 +00:00
|
|
|
}
|
|
|
|
return retval;
|
2006-07-17 22:18:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// There's now a network connection, after some period of disconnection.
|
|
|
|
// Do all communication that we can.
|
|
|
|
//
|
|
|
|
void NET_STATUS::network_available() {
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
have_sporadic_connection = true;
|
|
|
|
for (i=0; i<gstate.pers_file_xfers->pers_file_xfers.size(); i++) {
|
|
|
|
PERS_FILE_XFER* pfx = gstate.pers_file_xfers->pers_file_xfers[i];
|
|
|
|
pfx->next_request_time = 0;
|
|
|
|
}
|
|
|
|
for (i=0; i<gstate.projects.size(); i++) {
|
|
|
|
PROJECT* p = gstate.projects[i];
|
|
|
|
p->min_rpc_time = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// tell active tasks that network is available (for Folding@home)
|
|
|
|
//
|
|
|
|
gstate.active_tasks.network_available();
|
|
|
|
}
|
|
|
|
|
|
|
|
// An HTTP operation failed;
|
|
|
|
// it could be because there's no physical network connection.
|
|
|
|
// Find out for sure by trying to contact google
|
|
|
|
//
|
|
|
|
void NET_STATUS::got_http_error() {
|
|
|
|
if ((gstate.lookup_website_op.error_num != ERR_IN_PROGRESS)
|
|
|
|
&& !need_physical_connection
|
2007-05-14 21:45:02 +00:00
|
|
|
&& gstate.now > gstate.last_wakeup_time + 30
|
|
|
|
// for 30 seconds after wakeup, the network system (DNS etc.)
|
|
|
|
// may still be coming up, so don't worry for now
|
2007-07-09 16:00:10 +00:00
|
|
|
&& !config.dont_contact_ref_site
|
2006-07-17 22:18:17 +00:00
|
|
|
) {
|
2007-06-01 22:55:00 +00:00
|
|
|
if (log_flags.network_status_debug) {
|
|
|
|
msg_printf(0, MSG_INFO,
|
|
|
|
"[network_status_debug] got http error and not still waking up"
|
|
|
|
);
|
|
|
|
}
|
2006-08-29 18:18:36 +00:00
|
|
|
need_to_contact_reference_site = true;
|
2007-02-10 04:13:08 +00:00
|
|
|
show_ref_message = true;
|
2006-07-17 22:18:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-08-29 18:18:36 +00:00
|
|
|
void NET_STATUS::contact_reference_site() {
|
|
|
|
std::string url = "http://www.google.com";
|
2006-09-07 20:39:25 +00:00
|
|
|
if (log_flags.network_status_debug) {
|
2007-01-25 23:39:06 +00:00
|
|
|
msg_printf(0, MSG_INFO,
|
2006-09-07 20:39:25 +00:00
|
|
|
"[network_status_debug] need_phys_conn %d; trying google", need_physical_connection
|
2006-08-29 18:18:36 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
gstate.lookup_website_op.do_rpc(url);
|
|
|
|
need_to_contact_reference_site = false;
|
|
|
|
}
|
|
|
|
|
2006-12-28 18:24:21 +00:00
|
|
|
int LOOKUP_WEBSITE_OP::do_rpc(string& url) {
|
|
|
|
int retval;
|
|
|
|
|
2007-02-10 04:13:08 +00:00
|
|
|
if (net_status.show_ref_message) {
|
|
|
|
msg_printf(0, MSG_INFO, "Project communication failed: attempting access to reference site");
|
|
|
|
}
|
2007-09-27 21:28:32 +00:00
|
|
|
retval = gui_http->do_rpc(this, url, LOOKUP_WEBSITE_FILENAME);
|
2006-12-28 18:24:21 +00:00
|
|
|
if (retval) {
|
|
|
|
error_num = retval;
|
|
|
|
net_status.need_physical_connection = true;
|
|
|
|
net_status.last_comm_time = 0;
|
2007-01-25 23:39:06 +00:00
|
|
|
msg_printf(0, MSG_USER_ERROR,
|
2007-10-04 17:30:28 +00:00
|
|
|
"BOINC can't access Internet - check network connection or proxy configuration."
|
2006-12-28 18:24:21 +00:00
|
|
|
);
|
|
|
|
} else {
|
|
|
|
error_num = ERR_IN_PROGRESS;
|
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
void LOOKUP_WEBSITE_OP::handle_reply(int http_op_retval) {
|
|
|
|
error_num = http_op_retval;
|
|
|
|
|
|
|
|
// if we couldn't contact a reference web site,
|
|
|
|
// we can assume there's a problem that requires user attention
|
|
|
|
// (usually no physical network connection).
|
|
|
|
// Set a flag that will signal the Manager to that effect
|
|
|
|
//
|
|
|
|
if (http_op_retval) {
|
|
|
|
net_status.need_physical_connection = true;
|
|
|
|
net_status.last_comm_time = 0;
|
2007-01-25 23:39:06 +00:00
|
|
|
msg_printf(0, MSG_USER_ERROR,
|
2007-10-04 17:30:28 +00:00
|
|
|
"BOINC can't access Internet - check network connection or proxy configuration."
|
2006-12-28 18:24:21 +00:00
|
|
|
);
|
|
|
|
} else {
|
2007-02-10 04:13:08 +00:00
|
|
|
if (net_status.show_ref_message) {
|
|
|
|
msg_printf(0, MSG_INFO,
|
2007-10-04 17:30:28 +00:00
|
|
|
"Internet access OK - project servers may be temporarily down."
|
2007-02-10 04:13:08 +00:00
|
|
|
);
|
|
|
|
}
|
2006-12-28 18:24:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-17 18:05:39 +00:00
|
|
|
void NET_STATUS::poll() {
|
|
|
|
if (net_status.need_to_contact_reference_site && gstate.gui_http.state==GUI_HTTP_STATE_IDLE) {
|
|
|
|
net_status.contact_reference_site();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-01-02 18:29:53 +00:00
|
|
|
const char *BOINC_RCSID_733b4006f5 = "$Id$";
|