]> granicus.if.org Git - libevent/log
libevent
14 years agoReplace EVUTIL_CLOSESOCKET macro with a function
Sebastian Sjöberg [Wed, 14 Apr 2010 19:42:57 +0000 (15:42 -0400)]
Replace EVUTIL_CLOSESOCKET macro with a function

The EVUTIL_CLOSESOCKET() macro required you to include unistd.h in your
source for POSIX.  We might as well turn it into a function: an extra
function call is going to be cheap in comparison with the system call.

We retain the EVUTIL_CLOSESOCKET() macro as an alias for the new
evutil_closesocket() function.

(commit message from email by Nick and Sebastian)

14 years agoAdd ctags/etags files to .gitignore
Nick Mathewson [Wed, 14 Apr 2010 18:41:03 +0000 (14:41 -0400)]
Add ctags/etags files to .gitignore

14 years agoAdd void* arguments to request_new and reply_new evrpc hooks
Shuo Chen [Wed, 14 Apr 2010 18:27:29 +0000 (14:27 -0400)]
Add void* arguments to request_new and reply_new evrpc hooks

This makes evprc setup more extensible, and helps with Shuo Chen's
work on implementing Google protocol buffers rpc on top of Libevent 2
evrpc.

This patch breaks binary compatibility with previous versions of
Libevent, since it changes struct evrpc and the signature of
evrpc_register_generic().  Since all compliant code should be calling
evrpc_register_generic via EVRPC_REGISTER, it shouldn't break source
compatibility.

(Code by Shuo Chen; commit message by Nick)

14 years agoExpose the request and reply members of rpc_req_generic()
Shuo Chen [Wed, 14 Apr 2010 18:23:03 +0000 (14:23 -0400)]
Expose the request and reply members of rpc_req_generic()

This code adds two accessor functions to evprc, and helps integrate
evrpc with Google protocol buffers.

(Code by Shuo Chen; commit message by nickm)

14 years agoInitialize last_with_datap correctly in evbuffer_overlapped
Nick Mathewson [Wed, 14 Apr 2010 04:36:09 +0000 (00:36 -0400)]
Initialize last_with_datap correctly in evbuffer_overlapped

Fixes bug 2985406

14 years agoCreate shared libraries under Windows
Giuseppe Scrivano [Mon, 12 Apr 2010 10:52:31 +0000 (12:52 +0200)]
Create shared libraries under Windows

14 years agoDo not inhibit automake dependencies generation
Giuseppe Scrivano [Mon, 12 Apr 2010 10:50:17 +0000 (12:50 +0200)]
Do not inhibit automake dependencies generation

It fixes make parallel builds.

14 years agoFix compiler warnings under WIN32
Giuseppe Scrivano [Mon, 12 Apr 2010 10:18:57 +0000 (12:18 +0200)]
Fix compiler warnings under WIN32

14 years agoMerge branch 'evbuffer_copyout'
Nick Mathewson [Tue, 13 Apr 2010 05:46:29 +0000 (01:46 -0400)]
Merge branch 'evbuffer_copyout'

14 years agoAdd evbuffer_copyout to copy data from an evbuffer without draining
Nick Mathewson [Tue, 13 Apr 2010 02:24:54 +0000 (22:24 -0400)]
Add evbuffer_copyout to copy data from an evbuffer without draining

The evbuffer_remove() function copies data from the front of an
evbuffer into an array of char, and removes the data from the buffer.
This function behaves the same, but does not remove the data.  This
behavior can be handy for lots of protocols, where you want the
evbuffer to accumulate data until a complete record has arrived.

Lots of people have asked for a function more or less like this, and
though it isn't too hard to code one from evbuffer_peek(), it is
apparently annoying to do it in every app you write.  The
evbuffer_peek() function is significantly faster, but it requires that
the user be able to handle data in separate extents.

This patch also reimplements evbufer_remove() as evbuffer_copyout()
followed by evbuffer_drain().  I am reasonably confident that this
won't be a performance hit: the memcpy() overhead should dominate the
cost of walking the list an extra time.

14 years agoMerge branch 'safetimevalms'
Christopher Davis [Sat, 10 Apr 2010 18:26:53 +0000 (11:26 -0700)]
Merge branch 'safetimevalms'

14 years agoAlways round up when there's a fractional number of msecs.
Christopher Davis [Sat, 10 Apr 2010 02:16:09 +0000 (19:16 -0700)]
Always round up when there's a fractional number of msecs.

14 years agoLimit the maximum number of events on each socket to 65535
Nick Mathewson [Fri, 9 Apr 2010 23:16:49 +0000 (19:16 -0400)]
Limit the maximum number of events on each socket to 65535

This lets us use less RAM for the evmap_io structure, which in turn
can let us have fewer cache misses for evmap operations.

14 years agoMerge branch 'comment'
Nick Mathewson [Fri, 9 Apr 2010 23:14:25 +0000 (19:14 -0400)]
Merge branch 'comment'

14 years agoAdd a few more evmap/changelist comments
Nick Mathewson [Fri, 9 Apr 2010 17:32:08 +0000 (13:32 -0400)]
Add a few more evmap/changelist comments

14 years agoTest another case of evbuffer_prepend
Nick Mathewson [Fri, 9 Apr 2010 21:19:39 +0000 (17:19 -0400)]
Test another case of evbuffer_prepend

14 years agoAdd more unit tests for evbuffer_expand
Nick Mathewson [Fri, 9 Apr 2010 20:40:53 +0000 (16:40 -0400)]
Add more unit tests for evbuffer_expand

14 years agoUnit-test every evbuffer_add_file() implementation.
Nick Mathewson [Fri, 9 Apr 2010 19:28:26 +0000 (15:28 -0400)]
Unit-test every evbuffer_add_file() implementation.

Previously, we'd only test the default one, even if the others were still
compiled in.

14 years agoClean up a mistake in pointer manipulation in evbuffer_remove
Christopher Davis [Fri, 2 Apr 2010 23:08:32 +0000 (19:08 -0400)]
Clean up a mistake in pointer manipulation in evbuffer_remove

14 years agoAdd evutil_tv_to_msec for safe conversion of timevals to milliseconds.
Christopher Davis [Thu, 1 Apr 2010 03:30:55 +0000 (20:30 -0700)]
Add evutil_tv_to_msec for safe conversion of timevals to milliseconds.

This is useful for backends that require their timeout values be in
milliseconds.

14 years agoRewrite evbuffer_expand and its users
Nick Mathewson [Tue, 30 Mar 2010 20:47:37 +0000 (16:47 -0400)]
Rewrite evbuffer_expand and its users

The previous evbuffer_expand was not only incorrect; it was
inefficient too.  On all questions of time vs memory tradeoffs, it
chose to burn time in order to avoid wasting memory.  The new code
tries to be a little more balanced: it only resizes an existing chain
when doing so doesn't require too much copying, and when failing to do
so would waste a lot of the chain's space.

This patch also rewrites evbuffer_chain_insert to work properly with
last_with_datap, and adds a few convenience functions to buffer.c.

14 years agoFix a memory leak when appending/prepending to a buffer with unused space.
Nick Mathewson [Wed, 31 Mar 2010 16:03:43 +0000 (12:03 -0400)]
Fix a memory leak when appending/prepending to a buffer with unused space.

14 years agoMake the no_iovecs case of write_atmost compile
Nick Mathewson [Sat, 27 Mar 2010 04:09:25 +0000 (00:09 -0400)]
Make the no_iovecs case of write_atmost compile

Apparently nobody had tested it before on a system that had sendfile.
Why would you have sendfile and not writev?  Perhaps you're trying to
test the no-iovecs code to make sure it still works.

14 years agoTurn the increasingly complex *_CHAIN() macros into functions
Nick Mathewson [Tue, 30 Mar 2010 16:48:56 +0000 (12:48 -0400)]
Turn the increasingly complex *_CHAIN() macros into functions

14 years agoReplace last_with_data with a slightly smarter version
Nick Mathewson [Sat, 27 Mar 2010 03:18:40 +0000 (23:18 -0400)]
Replace last_with_data with a slightly smarter version

To implement evbuffer_expand() properly, you need to be able to
replace the last chunk that has data, which means that we need to keep
track of the the next pointer pointing to the last_with_data chunk,
not the last_with_data chunk itself.

14 years agoFix critical bug in evbuffer_write when writev is not available
Nick Mathewson [Wed, 31 Mar 2010 16:29:26 +0000 (12:29 -0400)]
Fix critical bug in evbuffer_write when writev is not available

evbuffer_pullup() returns NULL if you try to pull up more bytes than
are there.  But evbuffer_write_atmost would sometimes ask for more
bytes to be pulled up than it had, get a NULL, and fail.

14 years agoMake evbuffer_prepend handle empty buffers better
Nick Mathewson [Fri, 26 Mar 2010 18:51:39 +0000 (14:51 -0400)]
Make evbuffer_prepend handle empty buffers better

If the first chunk of a buffer is empty, and we're told to prepend to
the buffer, we should be willing to use the entire first chunk.
Instead, we were dependent on the value of chunk->misalign.

14 years agoDo not use evbuffer_expand() to add the first chain to a buffer
Nick Mathewson [Fri, 26 Mar 2010 18:50:45 +0000 (14:50 -0400)]
Do not use evbuffer_expand() to add the first chain to a buffer

(It's a big function, and using it this way is overkill.)

14 years agoIncrease MIN_BUFFER_SIZE to 512 (1024 on 64-bit)
Nick Mathewson [Fri, 26 Mar 2010 18:30:14 +0000 (14:30 -0400)]
Increase MIN_BUFFER_SIZE to 512 (1024 on 64-bit)

This constant decides the smallest (and typical) size of each evbuffer
chain.  Since this number includes sizeof(evbuffer_chain) overhead,
the old value (256) was just too low: on 64-bit platforms, it would
spend nearly 20% of the allocations on overhead.  The new values mean
that we'll be spending closer to 5% of evbuffer allocations on overhead.

It would be nice to get this number even lower if we can.

14 years agoFix a free(NULL) in minheap-internal.h
Nick Mathewson [Fri, 26 Mar 2010 18:20:10 +0000 (14:20 -0400)]
Fix a free(NULL) in minheap-internal.h

14 years agoFix minheap code to use replacement malloc functions
Nick Mathewson [Fri, 26 Mar 2010 17:56:01 +0000 (13:56 -0400)]
Fix minheap code to use replacement malloc functions

minheap-internal.h still had an extra realloc and an extra free that
needed to be replaced with mm_realloc and mm_free().

14 years agoRemove a needless min_heap_shift_up_() call
Nick Mathewson [Fri, 26 Mar 2010 17:46:29 +0000 (13:46 -0400)]
Remove a needless min_heap_shift_up_() call

Previously, every call to min_heap_shift_down_() would invoke
min_heap_shift_up_() at the end.  This used to be necessary in the
first version of the minheap code, since min_heap_erase() would call
min_heap_shift_down_() unconditionally.  But when patch 8b7a3b36763
from Marko Kreen fixed min_heap_erase() to be more sensible, we left
the weird behavior of min_heap_shift_down_() in place.

Fortunately, "cui" noticed this and reported it on Niels's blog.

14 years agoMake evutil_signal_active() match declaration.
Patrick Galbraith [Tue, 23 Mar 2010 20:04:59 +0000 (16:04 -0400)]
Make evutil_signal_active() match declaration.

14 years agoNever test for select() on windows
Trond Norbye [Tue, 23 Mar 2010 17:27:10 +0000 (13:27 -0400)]
Never test for select() on windows

On 64-bit windows, configure actually _finds_ select when it tests for
it, and due to the ordering of the io implementations in event.c it is
chosen over the win32select implementation.

This modification skips the test for select on win32 (we don't want
that anyway, because Windows has its own), causing my windows box to
get the win32select implementation.

(edited by Nick)

14 years agoMerge branch 'build'
Nick Mathewson [Mon, 22 Mar 2010 17:37:39 +0000 (13:37 -0400)]
Merge branch 'build'

14 years agoUse dist_bin_SCRIPTS, not EXTRA_DIST, to distribute scripts
Nick Mathewson [Mon, 22 Mar 2010 17:27:47 +0000 (13:27 -0400)]
Use dist_bin_SCRIPTS, not EXTRA_DIST, to distribute scripts

14 years agoFix infrequent memory leak in bufferevent_init_common().
Jardel Weyrich [Fri, 12 Mar 2010 09:04:56 +0000 (06:04 -0300)]
Fix infrequent memory leak in bufferevent_init_common().

14 years agoDetect and refuse reentrant event_base_loop() calls
Nick Mathewson [Sun, 21 Mar 2010 17:28:48 +0000 (13:28 -0400)]
Detect and refuse reentrant event_base_loop() calls

Calling event_base_loop on a base from inside a callback invoked by
that same base, or from two threads at once, has long been a way to
get exceedingly hard-to-diagnose errors.  This patch adds code to
detect such reentrant invocatinos, and exit quickly with a warning
that should explain what went wrong.

14 years agoFunctions to track the total bytes sent over a rate limit group.
Nick Mathewson [Sun, 21 Mar 2010 17:16:31 +0000 (13:16 -0400)]
Functions to track the total bytes sent over a rate limit group.

14 years agoMake 'main/many_events' test 70 fds, not 64.
Nick Mathewson [Tue, 16 Mar 2010 17:37:15 +0000 (13:37 -0400)]
Make 'main/many_events' test 70 fds, not 64.

This is mainly intended to ensure that we don't get hung up on
the 64-handle limit that lots of O(n) Windows functions (but FWICT
not select) like to enforce.

14 years agoSet mem_offset for every bufferevent type
Nick Mathewson [Sat, 13 Mar 2010 06:06:57 +0000 (01:06 -0500)]
Set mem_offset for every bufferevent type

14 years agoAvoid an (untriggerable so far) crash bug in bufferevent_free()
Nick Mathewson [Sat, 13 Mar 2010 06:04:30 +0000 (01:04 -0500)]
Avoid an (untriggerable so far) crash bug in bufferevent_free()

We were saying
     mm_free(bufev - bufev->be_ops->mem_offset);
when we should have said
     mm_free(((char*)bufev) - bufev->be_ops->mem_offset);

In other words, if mem_offset had ever been nonzero, then instead of
backing up mem_offset bytes to find the thing we were supposed to free, we
would have backed up mem_offset*sizeof(struct bufferevent) bytes, and freed
something completely crazy.

Spotted thanks to a conversation with Jardel Weyrich

14 years agoFix some memory leaks in the unit tests
Nick Mathewson [Sat, 13 Mar 2010 05:55:39 +0000 (00:55 -0500)]
Fix some memory leaks in the unit tests

These don't matter except inasmuch as they give real memory leaks
a place to hide.

Found with valgrind

14 years agoFree evdns_base->req_heads on evdns_base_free
Nick Mathewson [Sat, 13 Mar 2010 05:53:54 +0000 (00:53 -0500)]
Free evdns_base->req_heads on evdns_base_free

It looks like when we moved from one big inflight-requests list to an
n-heads structure, we didn't make evdns_base_free() free the array of
heads.  This patch should fix that.

Found with valgrind

14 years agoFix a write of uninitialized RAM in regression tests
Nick Mathewson [Sat, 13 Mar 2010 01:38:25 +0000 (20:38 -0500)]
Fix a write of uninitialized RAM in regression tests

Not actually harmful, but not something we should be doing.

Found by valgrind.

14 years agoDo not close(-1) when freeing an uninitialized socket bufferevent
Nick Mathewson [Fri, 12 Mar 2010 23:36:18 +0000 (18:36 -0500)]
Do not close(-1) when freeing an uninitialized socket bufferevent

14 years agoAvoid a spurious close(-1) on Linux
Nick Mathewson [Fri, 12 Mar 2010 23:35:15 +0000 (18:35 -0500)]
Avoid a spurious close(-1) on Linux

On Linux, we use only one fd to do main-thread signaling (since we have
eventfd()), so we don't need to close th_notify_fd[1] as we would if we were
using a socketpair.

14 years agoFix a possible double-free bug in SSL bufferevents with CLOSE_ON_FREE
Nick Mathewson [Sat, 13 Mar 2010 05:23:06 +0000 (00:23 -0500)]
Fix a possible double-free bug in SSL bufferevents with CLOSE_ON_FREE

With CLOSE_ON_FREE set, we were telling the BIO to free the bufferevent when
it was closed, and also freeing it ourselves.

14 years agoFix an obnoxious typo in the bufferevent_timeout_filter test
Nick Mathewson [Sat, 13 Mar 2010 05:29:15 +0000 (00:29 -0500)]
Fix an obnoxious typo in the bufferevent_timeout_filter test

We were using the same bufferevent as the child of two filtering parents,
orphaning another.  This made one get freed twice, and the other not at all.

Possible fix for bug 2963306 spotted by Doug Cuthbertson.

14 years agoImprove robustness for refcounting
Nick Mathewson [Sat, 13 Mar 2010 04:00:49 +0000 (23:00 -0500)]
Improve robustness for refcounting

Document that we do intend to double-decref underlying bufferevents under
some circumstances.  Check to make sure that we don't decref past 0.

14 years agoGive a better warning for bad automake versions.
Nick Mathewson [Fri, 12 Mar 2010 19:37:54 +0000 (14:37 -0500)]
Give a better warning for bad automake versions.

If you tried to build with automake-1.6 or earlier, we would
previously spit out pages and pages of garbage output.  Now, automake
should just say "Hey, I'm not new enough for this."

14 years agoRemove an orphaned RELEASE flag in Makefile.am
Nick Mathewson [Fri, 12 Mar 2010 19:21:52 +0000 (14:21 -0500)]
Remove an orphaned RELEASE flag in Makefile.am

14 years agoSwitch to using AM conditionals in place of AC_LIBOBJ
Nick Mathewson [Fri, 12 Mar 2010 19:16:30 +0000 (14:16 -0500)]
Switch to using AM conditionals in place of AC_LIBOBJ

AC_LIBOBJ is really only meant for defining missing library functions,
not conditional code compilation.  Sticking our conditionally compiled
modules in SYS_SRC should make stuff easier to maintain.

14 years agoRemove redundant stuff from EXTRA_DIST
Nick Mathewson [Fri, 12 Mar 2010 18:22:47 +0000 (13:22 -0500)]
Remove redundant stuff from EXTRA_DIST

To a first approximation, sources that are mentioned anywhere in an
automake file don't need to get mentioned in EXTRA_DIST.

14 years agoSupport the standard 'make check' target in place of 'make verify'
Nick Mathewson [Fri, 12 Mar 2010 18:09:28 +0000 (13:09 -0500)]
Support the standard 'make check' target in place of 'make verify'

Based on patch 2816088 from Zack Weinberg

14 years agoMerge branch 'evbuffer_insert_point'
Nick Mathewson [Fri, 12 Mar 2010 17:26:06 +0000 (12:26 -0500)]
Merge branch 'evbuffer_insert_point'

14 years agoFunctions to manipulate existing rate limiting groups.
Nick Mathewson [Fri, 12 Mar 2010 05:46:39 +0000 (00:46 -0500)]
Functions to manipulate existing rate limiting groups.

This patch adds a function to change the current rate limit of a rate
limiting group, and another to free an empty rate limiting group.

14 years agoTry to comment some of the event code more
Nick Mathewson [Thu, 11 Mar 2010 05:38:46 +0000 (00:38 -0500)]
Try to comment some of the event code more

14 years agoAdd some glass-box tests for the last_with_data code.
Nick Mathewson [Thu, 11 Mar 2010 20:39:44 +0000 (15:39 -0500)]
Add some glass-box tests for the last_with_data code.

14 years agoFix last_with_data compilation on windows
Nick Mathewson [Thu, 11 Mar 2010 19:23:02 +0000 (14:23 -0500)]
Fix last_with_data compilation on windows

14 years agoClarify Christopher Clark's status as writer of original ht code.
Nick Mathewson [Thu, 11 Mar 2010 05:18:02 +0000 (00:18 -0500)]
Clarify Christopher Clark's status as writer of original ht code.

14 years agoAllow evbuffer_read() to split across more than 2 iovecs
Nick Mathewson [Thu, 11 Mar 2010 04:39:30 +0000 (23:39 -0500)]
Allow evbuffer_read() to split across more than 2 iovecs

Previously it would only accept 2 iovecs at most, because our
previous_to_last nonsense didn't let it take any more.  This forced us
to do more reallocations in some cases when an extra small malloc
would have sufficed.

14 years agoRemove previous_to_last from evbuffer
Nick Mathewson [Thu, 11 Mar 2010 04:28:51 +0000 (23:28 -0500)]
Remove previous_to_last from evbuffer

14 years agoUse last_with_data in place of previous_to_last
Nick Mathewson [Thu, 11 Mar 2010 04:24:14 +0000 (23:24 -0500)]
Use last_with_data in place of previous_to_last

This actually makes some of the code a lot simpler.  The only
ones that actually used previous_to_last for anything were reserving
and committing space.

14 years agoRevise evbuffer to add last_with_data
Nick Mathewson [Thu, 11 Mar 2010 03:16:14 +0000 (22:16 -0500)]
Revise evbuffer to add last_with_data

This is the first patch in a series to replace previous_to_last with
last_with_data.  Currently, we can only use two partially empty chains
at the end of an evbuffer, so if we have one with 511 bytes free, and
another with 512 bytes free, and we try to do a 1024 byte read, we
can't just stick another chain on the end: we need to reallocate the
last one.  That's stupid and inefficient.

Instead, this patch adds a last_with_data pointer to eventually
replace previous_to_last.  Instead of pointing to the penultimated
chain (if any) as previous_to_last does, last_with_data points to the
last chain that has any data in it, if any.  If all chains are empty,
last_with_data points to the first chain.  If there are no chains,
last_with_data is NULL.

The next step is to start using last_with_data everywhere that we
currently use previous_to_last.  When that's done, we can remove
previous_to_last and the code that maintains it.

14 years agoMerge branch 'evport'
Nick Mathewson [Thu, 11 Mar 2010 02:21:33 +0000 (21:21 -0500)]
Merge branch 'evport'

14 years agoMake evdns use the regular logging system by default
Nick Mathewson [Wed, 10 Mar 2010 21:25:16 +0000 (16:25 -0500)]
Make evdns use the regular logging system by default

Once, for reasons that made sense at the time, we had evdns.c use its
own logging subsystem with two levels, "warn" and "debug".  This leads
to problems, since setting a log handler for Libevent wouldn't actually
trap these messages, since they weren't on by default, and since some of
the warns should really be msgs.

This patch changes the default behavior of evdns.c to log to
event_(debugx,warnx,msgx) by default, and adds a new (internal-use-only)
log level of EVDNS_LOG_MSG.  Programs that set a evdns logging
function will see no change.  Programs that don't will now see evdns
warnings reported like other warnings.

14 years agoAvoid errors in http.c when building with VC 2003 .NET
Brodie Thiesfield [Mon, 8 Mar 2010 18:46:48 +0000 (13:46 -0500)]
Avoid errors in http.c when building with VC 2003 .NET

14 years agoAvoid errors in evutil.c when building with _UNICODE defined
Brodie Thiesfield [Mon, 8 Mar 2010 18:46:04 +0000 (13:46 -0500)]
Avoid errors in evutil.c when building with _UNICODE defined

14 years agomore whitespace normalization
Nick Mathewson [Fri, 5 Mar 2010 18:00:15 +0000 (13:00 -0500)]
more whitespace normalization

14 years agoReplace users of "int fd" with "evutil_socket_t fd" in portable code
Nick Mathewson [Fri, 5 Mar 2010 17:47:46 +0000 (12:47 -0500)]
Replace users of "int fd" with "evutil_socket_t fd" in portable code

Remeber, win32 has a socket type that's actually a handle, so if
there's a chance that code is run on win32, we can't use "int" as the
socket type.

This isn't a blind search-and-replace: sometimes an fd is really in
fact for a file, and not a socket at all.

14 years agoAdd Christopher Clark and Maxim Yegorushkin to the LICENSE file
Nick Mathewson [Thu, 4 Mar 2010 06:40:32 +0000 (01:40 -0500)]
Add Christopher Clark and Maxim Yegorushkin to the LICENSE file

14 years agoUpdate all our copyright notices to say "2010"
Nick Mathewson [Thu, 4 Mar 2010 06:25:51 +0000 (01:25 -0500)]
Update all our copyright notices to say "2010"

14 years agoImprove the speed of evbuffer_readln()
Nick Mathewson [Tue, 2 Mar 2010 22:00:06 +0000 (17:00 -0500)]
Improve the speed of evbuffer_readln()

This makes some cases of bench_http about 5% faster.

Our internal evbuffer_strpbrk() function was overly general (it tried
to handle all character sets when we only used it for "\r\n"), and
not very efficient (it called memchr once for each character in the
buffer until it found a \r or a \n).  It actually showed up in some
profiles for HTTP testing, since evbuffer_readln() calls it when doing
loose CRLF detection.  This patch replaces it with a faster
implementation.

14 years agoRemove signal_assign() and signal_new() macros.
Nick Mathewson [Wed, 3 Mar 2010 17:15:15 +0000 (12:15 -0500)]
Remove signal_assign() and signal_new() macros.

These were introduced and deprecated in the same version (2.0.1-alpha),
presumably in two-stage process.  Everybody sane should be using
evsignal_assign() and evsignal_new() instead.

14 years agoVC has no getopt(), so do without in bench_http.
Christopher Davis [Tue, 2 Mar 2010 23:16:28 +0000 (15:16 -0800)]
VC has no getopt(), so do without in bench_http.

14 years agoGet bench_http to work on Windows; add a switch to enable IOCP.
Christopher Davis [Tue, 2 Mar 2010 22:34:30 +0000 (14:34 -0800)]
Get bench_http to work on Windows; add a switch to enable IOCP.

14 years agoRevert the broken part of 2cffd6c937
Nick Mathewson [Tue, 2 Mar 2010 03:12:04 +0000 (22:12 -0500)]
Revert the broken part of 2cffd6c937

It looks like I accidentally removed most of WIN32-Code/event-config.h
when I was bumping the version.  Fortunately, this happened when I
bumped to 2.0.4-alpha-dev rather than when I bumped to 2.0.4-alpha. :)

This patch restores the deleted parts of WIN32-Code/event-config.h

14 years agoDistribute libevent.pc.in, not libevent.pc
Nick Mathewson [Tue, 2 Mar 2010 03:06:12 +0000 (22:06 -0500)]
Distribute libevent.pc.in, not libevent.pc

14 years agoBump version to 2.0.4-alpha-dev
Nick Mathewson [Sun, 28 Feb 2010 21:53:42 +0000 (16:53 -0500)]
Bump version to 2.0.4-alpha-dev

14 years agoBump the version to 2.0.4-alpha release-2.0.4-alpha
Nick Mathewson [Sun, 28 Feb 2010 17:55:29 +0000 (12:55 -0500)]
Bump the version to 2.0.4-alpha

14 years agoAdd a changelog for 2.0.4-alpha from Git, sorted by hand
Nick Mathewson [Sun, 28 Feb 2010 17:49:03 +0000 (12:49 -0500)]
Add a changelog for 2.0.4-alpha from Git, sorted by hand

14 years agoFix compilation with --disable-debug-mode
Nick Mathewson [Sun, 28 Feb 2010 17:52:39 +0000 (12:52 -0500)]
Fix compilation with --disable-debug-mode

14 years agoSmall cleanups on freebsd-connect-refused patch.
Nick Mathewson [Sun, 28 Feb 2010 03:27:13 +0000 (22:27 -0500)]
Small cleanups on freebsd-connect-refused patch.

There should be no need to call be_socket_enable: that does an
event_add().  What we really want to do is event_active(), to make
sure that the writecb is executed.

Also, there was one "} if () {" that was missing an else.

I've noted that the return value for evutil_socket_connect() is
getting screwy, but since that isn't an exported function, we can fix
it whenever.

14 years agodeal with connect() failing immediately
Niels Provos [Sun, 28 Feb 2010 02:59:06 +0000 (18:59 -0800)]
deal with connect() failing immediately

14 years agoFix arc4random compilation on MSVC.
Nick Mathewson [Thu, 25 Feb 2010 22:14:41 +0000 (17:14 -0500)]
Fix arc4random compilation on MSVC.

14 years agoTry to define a sane _EVENT_SIZEOF_SIZE_T for msvc compilation
Nick Mathewson [Thu, 25 Feb 2010 22:11:28 +0000 (17:11 -0500)]
Try to define a sane _EVENT_SIZEOF_SIZE_T for msvc compilation

14 years agoFix mingw compilation
Nick Mathewson [Thu, 25 Feb 2010 21:57:57 +0000 (16:57 -0500)]
Fix mingw compilation

14 years agoDelete stack-alloced event in new unit test before returning.
Nick Mathewson [Wed, 24 Feb 2010 18:40:06 +0000 (13:40 -0500)]
Delete stack-alloced event in new unit test before returning.

14 years agoUse new timeval diff comparison function in bufferevent test
Nick Mathewson [Wed, 24 Feb 2010 04:59:26 +0000 (23:59 -0500)]
Use new timeval diff comparison function in bufferevent test

14 years agoAdd test for periodic timers that get activated for other reasons
Nick Mathewson [Wed, 24 Feb 2010 04:55:32 +0000 (23:55 -0500)]
Add test for periodic timers that get activated for other reasons

This was already independently verified by the new bufferevent
timeout tests, but it's good to explicitly check that our code
does what it should.

14 years agoAdd a test for timeouts on filtering bufferevents.
Nick Mathewson [Tue, 23 Feb 2010 21:36:52 +0000 (16:36 -0500)]
Add a test for timeouts on filtering bufferevents.

14 years agoProvide consistent, tested semantics for bufferevent timeouts
Nick Mathewson [Sat, 20 Feb 2010 23:44:35 +0000 (18:44 -0500)]
Provide consistent, tested semantics for bufferevent timeouts

The different bufferevent implementations had different behavior for
their timeouts.  Some of them kept re-triggering the timeouts
indefinitely; some disabled the event immediately the first time a
timeout triggered.  Some of them made the timeouts only count when
the bufferevent was actively trying to read or write; some did not.

The new behavior is modeled after old socket bufferevents, since
they were here first and their behavior is relatively sane.
Basically, each timeout disables the bufferevent's corresponding
read or write operation when it fires.  Timeouts are stopped
whenever we suspend writing or reading, and reset whenever we
unsuspend writing or reading.  Calling bufferevent_enable resets a
timeout, as does changing the timeout value.

14 years agoFix a bug in resetting timeouts on persistent events when IO triggers.
Nick Mathewson [Tue, 23 Feb 2010 19:24:10 +0000 (14:24 -0500)]
Fix a bug in resetting timeouts on persistent events when IO triggers.

When we fixed persistent timeouts to make them reset themselves
based on the previous scheduled time rather than the current
time... we made them do so regardless of whether the event was
triggering because of a timeout or not!

This was of course bogus.  When a _timeout_ triggers, we should
schedule the event for N seconds based on the last
_schedule_ time... but when IO triggers, we should reset the
timeout for N seconds after now.

14 years agoFix some race conditions in persistent events and event_reinit
Nick Mathewson [Tue, 23 Feb 2010 20:14:57 +0000 (15:14 -0500)]
Fix some race conditions in persistent events and event_reinit

I found these by adding an EVENT_BASE_ASSERT_LOCKED() call to most
of the functions in event.c that can only be called while holding
the lock.

event_reinit() never grabbed the lock, but it needed to.

event_persist_closure accessed the base to call event_add_internal()
and gettime() when its caller had already dropped the lock.

event_pending() called gettime() without grabbing the lock.

14 years agoMerge remote branch 'github/split_free_from_decref'
Nick Mathewson [Tue, 23 Feb 2010 05:39:02 +0000 (00:39 -0500)]
Merge remote branch 'github/split_free_from_decref'

14 years agoExpose view of current rate limit as constrained by group limit
Nick Mathewson [Tue, 23 Feb 2010 05:38:30 +0000 (00:38 -0500)]
Expose view of current rate limit as constrained by group limit

14 years agoMake bufferevent_free() clear all callbacks immediately.
Nick Mathewson [Mon, 22 Feb 2010 20:38:23 +0000 (15:38 -0500)]
Make bufferevent_free() clear all callbacks immediately.

This should end the family of bugs where we call bufferevent_free()
while a pending callback is holding a reference on the bufferevent,
and the callback tries to invoke the user callbacks before it releases
its own final reference.

This means that bufferevent_decref() is now a separate function from
bufferevent_free().

14 years agoSuspend read/write on bufferevents during hostname lookup
Nick Mathewson [Sat, 20 Feb 2010 17:55:59 +0000 (12:55 -0500)]
Suspend read/write on bufferevents during hostname lookup

When we're doing a lookup in preparation for doing a connect, we
might have an unconnected socket on hand, and mustn't actually do
any reading or writing with it.

14 years agoClean up formatting: function/keyword spacing consistency.
Nick Mathewson [Fri, 19 Feb 2010 08:39:50 +0000 (03:39 -0500)]
Clean up formatting: function/keyword spacing consistency.

- Keywords always have a space before a paren.  Functions never do.

- No more than 3 blank lines in a row.