| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- /*
- * Copyright (c) 2015, Psiphon Inc.
- * All rights reserved.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program 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 General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- package transferstats
- import (
- "sync"
- )
- // TODO: Stats for a server are only removed when they are sent in a status
- // update to that server. So if there's an unexpected disconnect from serverA
- // and then a reconnect to serverB, the stats for serverA will never get sent
- // (unless there's later a reconnect to serverA). That means the stats for
- // serverA will never get deleted and the memory won't get freed. This is only
- // a small amount of memory (< 1KB, probably), but we should still probably add
- // some kind of stale-stats cleanup.
- // Per-host/domain stats.
- // Note that the bytes we're counting are the ones going into the tunnel, so do
- // not include transport overhead.
- type hostStats struct {
- numBytesSent int64
- numBytesReceived int64
- }
- // AccumulatedStats holds the Psiphon Server API status request data for a
- // given server. To accommodate status requests that may fail, and be retried,
- // the TakeOutStatsForServer/PutBackStatsForServer procedure allows the requester
- // to check out stats for reporting and merge back stats for a later retry.
- type AccumulatedStats struct {
- hostnameToStats map[string]*hostStats
- }
- // GetStatsForStatusRequest summarizes AccumulatedStats data as
- // required for the Psiphon Server API status request.
- func (stats AccumulatedStats) GetStatsForStatusRequest() (map[string]int64, int64) {
- hostBytes := make(map[string]int64)
- bytesTransferred := int64(0)
- for hostname, hostStats := range stats.hostnameToStats {
- totalBytes := hostStats.numBytesReceived + hostStats.numBytesSent
- bytesTransferred += totalBytes
- hostBytes[hostname] = totalBytes
- }
- return hostBytes, bytesTransferred
- }
- // serverStats holds per-server stats.
- // accumulatedStats data is payload for the Psiphon status request
- // which is accessed via TakeOut/PutBack.
- // recentBytes data is for tunnel monitoring which is accessed via
- // ReportRecentBytesTransferredForServer.
- type serverStats struct {
- accumulatedStats *AccumulatedStats
- recentBytesSent int64
- recentBytesReceived int64
- }
- // allStats is the root object that holds stats for all servers and all hosts,
- // as well as the mutex to access them.
- var allStats = struct {
- statsMutex sync.RWMutex
- serverIDtoStats map[string]*serverStats
- }{serverIDtoStats: make(map[string]*serverStats)}
- // statsUpdate contains new stats counts to be aggregated.
- type statsUpdate struct {
- serverID string
- hostname string
- numBytesSent int64
- numBytesReceived int64
- }
- // recordStats makes sure the given stats update is added to the global
- // collection. recentBytes are not adjusted when isPutBack is true,
- // as recentBytes aren't subject to TakeOut/PutBack.
- func recordStat(stat *statsUpdate, isPutBack bool) {
- allStats.statsMutex.Lock()
- defer allStats.statsMutex.Unlock()
- if stat.hostname == "" {
- stat.hostname = "(OTHER)"
- }
- storedServerStats := allStats.serverIDtoStats[stat.serverID]
- if storedServerStats == nil {
- storedServerStats = &serverStats{
- accumulatedStats: &AccumulatedStats{
- hostnameToStats: make(map[string]*hostStats)}}
- allStats.serverIDtoStats[stat.serverID] = storedServerStats
- }
- storedHostStats := storedServerStats.accumulatedStats.hostnameToStats[stat.hostname]
- if storedHostStats == nil {
- storedHostStats = &hostStats{}
- storedServerStats.accumulatedStats.hostnameToStats[stat.hostname] = storedHostStats
- }
- storedHostStats.numBytesSent += stat.numBytesSent
- storedHostStats.numBytesReceived += stat.numBytesReceived
- if !isPutBack {
- storedServerStats.recentBytesSent += stat.numBytesSent
- storedServerStats.recentBytesReceived += stat.numBytesReceived
- }
- }
- // ReportRecentBytesTransferredForServer returns bytes sent and received since
- // the last call to ReportRecentBytesTransferredForServer. The accumulated sent
- // and received are reset to 0 by this call.
- func ReportRecentBytesTransferredForServer(serverID string) (sent, received int64) {
- allStats.statsMutex.Lock()
- defer allStats.statsMutex.Unlock()
- stats := allStats.serverIDtoStats[serverID]
- if stats == nil {
- return
- }
- sent = stats.recentBytesSent
- received = stats.recentBytesReceived
- stats.recentBytesSent = 0
- stats.recentBytesReceived = 0
- return
- }
- // TakeOutStatsForServer borrows the AccumulatedStats for the specified
- // server. When we fail to report these stats, resubmit them with
- // PutBackStatsForServer. Stats will continue to be accumulated between
- // TakeOut and PutBack calls. The recentBytes values are unaffected by
- // TakeOut/PutBack. Returns empty stats if the serverID is not found.
- func TakeOutStatsForServer(serverID string) (accumulatedStats *AccumulatedStats) {
- allStats.statsMutex.Lock()
- defer allStats.statsMutex.Unlock()
- newAccumulatedStats := &AccumulatedStats{
- hostnameToStats: make(map[string]*hostStats)}
- // Note: for an existing serverStats, only the accumulatedStats is
- // affected; the recentBytes fields are not changed.
- serverStats := allStats.serverIDtoStats[serverID]
- if serverStats != nil {
- accumulatedStats = serverStats.accumulatedStats
- serverStats.accumulatedStats = newAccumulatedStats
- } else {
- accumulatedStats = newAccumulatedStats
- }
- return
- }
- // PutBackStatsForServer re-adds a set of server stats to the collection.
- func PutBackStatsForServer(serverID string, accumulatedStats *AccumulatedStats) {
- for hostname, hoststats := range accumulatedStats.hostnameToStats {
- recordStat(
- &statsUpdate{
- serverID: serverID,
- hostname: hostname,
- numBytesSent: hoststats.numBytesSent,
- numBytesReceived: hoststats.numBytesReceived,
- },
- true)
- }
- }
|