1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
|
/*
* OpenVPN -- An application to securely tunnel IP networks
* over a single TCP/UDP port, with support for SSL/TLS-based
* session authentication and key exchange,
* packet encryption, packet authentication, and
* packet compression.
*
* Copyright (C) 2002-2005 OpenVPN Solutions LLC <info@openvpn.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2
* as published by the Free Software Foundation.
*
* 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 (see the file COPYING included with this
* distribution); if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifdef WIN32
#include "config-win32.h"
#else
#include "config.h"
#endif
#include "syshead.h"
#include "otime.h"
#include "memdbg.h"
volatile time_t now; /* GLOBAL */
/*
* Return a numerical string describing a struct timeval.
*/
const char *
tv_string (const struct timeval *tv, struct gc_arena *gc)
{
struct buffer out = alloc_buf_gc (64, gc);
buf_printf (&out, "[%d/%d]",
(int) tv->tv_sec,
(int )tv->tv_usec);
return BSTR (&out);
}
/*
* Return an ascii string describing an absolute
* date/time in a struct timeval.
*
*/
const char *
tv_string_abs (const struct timeval *tv, struct gc_arena *gc)
{
return time_string ((time_t) tv->tv_sec,
(int) tv->tv_usec,
true,
gc);
}
/* format a time_t as ascii, or use current time if 0 */
const char *
time_string (time_t t, int usec, bool show_usec, struct gc_arena *gc)
{
struct buffer out = alloc_buf_gc (64, gc);
struct timeval tv;
if (t)
{
tv.tv_sec = t;
tv.tv_usec = usec;
}
else
{
#ifdef HAVE_GETTIMEOFDAY
if (gettimeofday (&tv, NULL))
#endif
{
tv.tv_sec = time (NULL);
tv.tv_usec = 0;
}
}
mutex_lock_static (L_CTIME);
buf_printf (&out, "%s", ctime ((const time_t *)&tv.tv_sec));
mutex_unlock_static (L_CTIME);
buf_rmtail (&out, '\n');
if (show_usec && tv.tv_usec)
buf_printf (&out, " us=%d", (int)tv.tv_usec);
return BSTR (&out);
}
/*
* Limit the frequency of an event stream.
*
* Used to control maximum rate of new
* incoming connections.
*/
struct frequency_limit *
frequency_limit_init (int max, int per)
{
struct frequency_limit *f;
ASSERT (max >= 0 && per >= 0);
ALLOC_OBJ (f, struct frequency_limit);
f->max = max;
f->per = per;
f->n = 0;
f->reset = 0;
return f;
}
void
frequency_limit_free (struct frequency_limit *f)
{
free (f);
}
bool
frequency_limit_event_allowed (struct frequency_limit *f)
{
if (f->per)
{
bool ret;
if (now >= f->reset + f->per)
{
f->reset = now;
f->n = 0;
}
ret = (++f->n <= f->max);
return ret;
}
else
return true;
}
#ifdef WIN32
static double counterPerMicrosecond = -1.0; /* GLOBAL */
static unsigned __int64 frequency = 0; /* GLOBAL */
static unsigned __int64 timeSecOffset = 0; /* GLOBAL */
static unsigned __int64 startPerformanceCounter = 0; /* GLOBAL */
/*
* gettimeofday for windows
*
* CounterPerMicrosecond is the number of counts per microsecond.
* Double is required if we have less than 1 counter per microsecond. This has not been tested.
* On a PIII 700, I get about 3.579545. This is guaranteed not to change while the processor is running.
* We really don't need to check for loop detection. On my machine it would take about 59645564 days to loop.
* (2^64) / frequency / 60 / 60 / 24.
*
*/
int
gettimeofday(struct timeval *tv, void *tz)
{
unsigned __int64 counter;
QueryPerformanceCounter((LARGE_INTEGER *) &counter);
if (counter < startPerformanceCounter || counterPerMicrosecond == -1.0)
{
time_t t;
mutex_lock (L_GETTIMEOFDAY);
QueryPerformanceFrequency((LARGE_INTEGER *) &frequency);
counterPerMicrosecond = (double) ((__int64) frequency) / 1000000.0f;
time(&t);
QueryPerformanceCounter((LARGE_INTEGER *) &counter);
startPerformanceCounter = counter;
counter /= frequency;
timeSecOffset = t - counter;
mutex_unlock (L_GETTIMEOFDAY);
QueryPerformanceCounter((LARGE_INTEGER *) &counter);
}
tv->tv_sec = (counter / frequency) + timeSecOffset;
tv->tv_usec = ((__int64) (((__int64) counter) / counterPerMicrosecond) % 1000000);
return 0;
}
#endif /* WIN32 */
|