Skip to content

Commit

Permalink
Get system timestamp less often (only after sleeping/selecting)
Browse files Browse the repository at this point in the history
  • Loading branch information
keithw committed Jul 27, 2012
1 parent 5e3ec2e commit a744004
Show file tree
Hide file tree
Showing 7 changed files with 150 additions and 44 deletions.
2 changes: 2 additions & 0 deletions src/frontend/mosh-server.cc
Expand Up @@ -64,6 +64,7 @@
#include "fatal_assert.h"
#include "locale_utils.h"
#include "select.h"
#include "timestamp.h"

#if HAVE_PTY_H
#include <pty.h>
Expand Down Expand Up @@ -114,6 +115,7 @@ void spin( void )
req.tv_sec = 0;
req.tv_nsec = 100000000; /* 0.1 sec */
nanosleep( &req, NULL );
freeze_timestamp();
}
}

Expand Down
2 changes: 2 additions & 0 deletions src/frontend/stmclient.cc
Expand Up @@ -57,6 +57,7 @@
#include "fatal_assert.h"
#include "locale_utils.h"
#include "select.h"
#include "timestamp.h"

#include "networktransport.cc"

Expand Down Expand Up @@ -431,6 +432,7 @@ void STMClient::main( void )
req.tv_sec = 0;
req.tv_nsec = 200000000; /* 0.2 sec */
nanosleep( &req, NULL );
freeze_timestamp();
} catch ( Crypto::CryptoException e ) {
if ( e.fatal ) {
throw;
Expand Down
46 changes: 3 additions & 43 deletions src/network/network.cc
Expand Up @@ -40,19 +40,13 @@
#include <errno.h>
#include <unistd.h>

#if HAVE_CLOCK_GETTIME
#include <time.h>
#elif HAVE_MACH_ABSOLUTE_TIME
#include <mach/mach_time.h>
#elif HAVE_GETTIMEOFDAY
#include <sys/time.h>
#endif

#include "dos_assert.h"
#include "byteorder.h"
#include "network.h"
#include "crypto.h"

#include "timestamp.h"

using namespace std;
using namespace Network;
using namespace Crypto;
Expand Down Expand Up @@ -386,41 +380,7 @@ int Connection::port( void ) const

uint64_t Network::timestamp( void )
{
#if HAVE_CLOCK_GETTIME
struct timespec tp;

if ( clock_gettime( CLOCK_MONOTONIC, &tp ) < 0 ) {
throw NetworkException( "clock_gettime", errno );
}

uint64_t millis = tp.tv_nsec / 1000000;
millis += uint64_t( tp.tv_sec ) * 1000;

return millis;
#elif HAVE_MACH_ABSOLUTE_TIME
static mach_timebase_info_data_t s_timebase_info;

if (s_timebase_info.denom == 0) {
mach_timebase_info(&s_timebase_info);
}

// NB: mach_absolute_time() returns "absolute time units"
// We need to apply a conversion to get milliseconds.
return ((mach_absolute_time() * s_timebase_info.numer) / (1000000 * s_timebase_info.denom));
#elif HAVE_GETTIMEOFDAY
// NOTE: If time steps backwards, timeouts may be confused.
struct timeval tv;
if ( gettimeofday(&tv, NULL) ) {
throw NetworkException( "gettimeofday", errno );
}

uint64_t millis = tv.tv_usec / 1000;
millis += uint64_t( tv.tv_sec ) * 1000;

return millis;
#else
# error "Don't know how to get a timestamp on this platform"
#endif
return frozen_timestamp();
}

uint16_t Network::timestamp16( void )
Expand Down
2 changes: 1 addition & 1 deletion src/util/Makefile.am
Expand Up @@ -2,4 +2,4 @@ AM_CXXFLAGS = $(WARNING_CXXFLAGS) $(PICKY_CXXFLAGS) $(HARDEN_CFLAGS) $(MISC_CXXF

noinst_LIBRARIES = libmoshutil.a

libmoshutil_a_SOURCES = locale_utils.cc locale_utils.h swrite.cc swrite.h dos_assert.h fatal_assert.h select.h select.cc
libmoshutil_a_SOURCES = locale_utils.cc locale_utils.h swrite.cc swrite.h dos_assert.h fatal_assert.h select.h select.cc timestamp.h timestamp.cc
3 changes: 3 additions & 0 deletions src/util/select.h
Expand Up @@ -39,6 +39,7 @@
#include <sys/select.h>

#include "fatal_assert.h"
#include "timestamp.h"

/* Convenience wrapper for pselect(2).
Expand Down Expand Up @@ -138,6 +139,8 @@ class Select {
ret = 0;
}

freeze_timestamp();

return ret;
}

Expand Down
98 changes: 98 additions & 0 deletions src/util/timestamp.cc
@@ -0,0 +1,98 @@
/*
Mosh: the mobile shell
Copyright 2012 Keith Winstein
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/>.
In addition, as a special exception, the copyright holders give
permission to link the code of portions of this program with the
OpenSSL library under certain conditions as described in each
individual source file, and distribute linked combinations including
the two.
You must obey the GNU General Public License in all respects for all
of the code used other than OpenSSL. If you modify file(s) with this
exception, you may extend this exception to your version of the
file(s), but you are not obligated to do so. If you do not wish to do
so, delete this exception statement from your version. If you delete
this exception statement from all source files in the program, then
also delete it here.
*/

#include "config.h"

#include "timestamp.h"

#include <errno.h>

#if HAVE_CLOCK_GETTIME
#include <time.h>
#elif HAVE_MACH_ABSOLUTE_TIME
#include <mach/mach_time.h>
#elif HAVE_GETTIMEOFDAY
#include <sys/time.h>
#endif

static uint64_t millis_cache = -1;

uint64_t frozen_timestamp( void )
{
if ( millis_cache == uint64_t( -1 ) ) {
freeze_timestamp();
}

return millis_cache;
}

void freeze_timestamp( void )
{
#if HAVE_CLOCK_GETTIME
struct timespec tp;

if ( clock_gettime( CLOCK_MONOTONIC, &tp ) < 0 ) {
/* did not succeed */
} else {
uint64_t millis = tp.tv_nsec / 1000000;
millis += uint64_t( tp.tv_sec ) * 1000;

millis_cache = millis;
return;
}
#elif HAVE_MACH_ABSOLUTE_TIME
static mach_timebase_info_data_t s_timebase_info;

if (s_timebase_info.denom == 0) {
mach_timebase_info(&s_timebase_info);
}

// NB: mach_absolute_time() returns "absolute time units"
// We need to apply a conversion to get milliseconds.
millis_cache = ((mach_absolute_time() * s_timebase_info.numer) / (1000000 * s_timebase_info.denom));
return;
#elif HAVE_GETTIMEOFDAY
// NOTE: If time steps backwards, timeouts may be confused.
struct timeval tv;
if ( gettimeofday(&tv, NULL) ) {
perror( "gettimeofday" );
} else {
uint64_t millis = tv.tv_usec / 1000;
millis += uint64_t( tv.tv_sec ) * 1000;

millis_cache = millis;
return;
}
#else
# error "Don't know how to get a timestamp on this platform"
#endif
}
41 changes: 41 additions & 0 deletions src/util/timestamp.h
@@ -0,0 +1,41 @@
/*
Mosh: the mobile shell
Copyright 2012 Keith Winstein
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/>.
In addition, as a special exception, the copyright holders give
permission to link the code of portions of this program with the
OpenSSL library under certain conditions as described in each
individual source file, and distribute linked combinations including
the two.
You must obey the GNU General Public License in all respects for all
of the code used other than OpenSSL. If you modify file(s) with this
exception, you may extend this exception to your version of the
file(s), but you are not obligated to do so. If you do not wish to do
so, delete this exception statement from your version. If you delete
this exception statement from all source files in the program, then
also delete it here.
*/

#ifndef TIMESTAMP_HPP
#define TIMESTAMP_HPP

#include <stdint.h>

void freeze_timestamp( void );
uint64_t frozen_timestamp( void );

#endif

0 comments on commit a744004

Please sign in to comment.