| Commit message (Expand) | Author | Age |
... | |
* | expand the scheduler to address SSL_read()'s pending bytes•••svn:r505
| Roger Dingledine | 2003-09-28 |
* | Write necessary backends for online directory generation. I think.•••svn:r503
| Nick Mathewson | 2003-09-27 |
* | clean up receiver buckets; prepare for payloads in relay_end; note a few bugs•••svn:r502
| Roger Dingledine | 2003-09-27 |
* | add Address config element, use it in descriptor•••svn:r496
| Roger Dingledine | 2003-09-27 |
* | dirservers upload their descs now too•••svn:r493
| Roger Dingledine | 2003-09-26 |
* | Refactor common file code into util.c; add published to descriptors•••svn:r487
| Nick Mathewson | 2003-09-26 |
* | first pass: obey log convention•••ERR is if something fatal just happened
WARNING is something bad happened, but we're still running. The bad thing
is either a bug in the code, an attack or buggy protocol/implementation
of the remote peer, etc. The operator should examine the bad thing and
try to correct it.
(No error or warning messages should be expected. I expect most people
to run on -l warning eventually.)
NOTICE is never ever used.
INFO means something happened (maybe bad, maybe ok), but there's nothing
you need to (or can) do about it.
DEBUG is for everything louder than INFO.
svn:r486
| Roger Dingledine | 2003-09-26 |
* | various bugfixes and updates•••redo all the config files for the new format (we'll redo them again soon)
fix (another! yuck) segfault in log_fn when input is too large
tor_tls_context_new() returns -1 for error, not NULL
fix segfault in check_conn_marked() on conn's that die during tls handshake
make ORs also initialize conn from router when we're the receiving node
make non-dirserver ORs upload descriptor to every dirserver on startup
add our local address to the descriptor
add Content-Length field to POST command
revert the Content-Length search in fetch_from_buf_http() to previous code
fix segfault in memmove in fetch_from_buf_http()
raise maximum allowed headers/body size in directory.c
svn:r484
| Roger Dingledine | 2003-09-25 |
* | Refactor buffers; implement descriptors.•••'buf_t' is now an opaque type defined in buffers.c .
Router descriptors now include all keys; routers generate keys as
needed on startup (in a newly defined "data directory"), and generate
their own descriptors. Descriptors are now self-signed.
Implementation is not complete: descriptors are never published; and
upon receiving a descriptor, the directory doesn't do anything with
it.
At least "routers.or" and orkeygen are now obsolete, BTW.
svn:r483
| Nick Mathewson | 2003-09-25 |
* | cleanups, bugfixes, more verbose logs•••Fixed up the assert_*_ok funcs some (more work remains)
Changed config so it reads either /etc/torrc or the -f arg, never both
Finally tracked down a nasty bug with our use of tls:
It turns out that if you ask SSL_read() for no more than n bytes, it
will read the entire record from the network (and maybe part of the next
record, I'm not sure), give you n bytes of it, and keep the remaining
bytes internally. This is fine, except our poll-for-read looks at the
network, and there are no bytes pending on the network, so we never know
to ask SSL_read() for more bytes. Currently I've hacked it so if we ask
for n bytes and it returns n bytes, then it reads again right then. This
will interact poorly with our rate limiting; we need a cleaner solution.
svn:r481
| Roger Dingledine | 2003-09-24 |
* | integrate assert_connection_ok() checks•••svn:r479
| Roger Dingledine | 2003-09-23 |
* | bugfixes and note missing features•••deal with content-length headers better when reading http
don't assume struct socks4_info is a packed struct
fail the socks handshake if destip is zero
flesh out conn_state_to_string() for dir conn
fix typo (bug) in connection_handle_read()
directory get is now called fetch, post is now upload
reopen logs on sighup
svn:r475
| Roger Dingledine | 2003-09-21 |
* | leave the socks handshake on the inbuf until it's complete•••this paves the way for supporting socks5 and other handshakes
it also removes those pesky AP-only variables from connection_t
also hacked a fix for a bug where some streams weren't ending properly --
maybe because marked connections weren't flushing properly?
svn:r472
| Roger Dingledine | 2003-09-18 |
* | add in directory 'post' support•••svn:r471
| Roger Dingledine | 2003-09-17 |
* | phase out non-tls handshake, now that tls is stable.•••svn:r470
| Roger Dingledine | 2003-09-16 |
* | bugfixes and refactorings•••svn:r468
| Roger Dingledine | 2003-09-16 |
* | bugfix: onion pending queue now works•••and fixed recent memory leak
svn:r456
| Roger Dingledine | 2003-09-14 |
* | finally tracked down the seg fault•••svn:r455
| Roger Dingledine | 2003-09-14 |
* | fix two more bugs•••svn:r452
| Roger Dingledine | 2003-09-13 |
* | tls infrastructure now in place, give or take•••svn:r434
| Roger Dingledine | 2003-09-08 |
* | add CertFile, Nickname•••write new certfile if you don't have one already
set up a tls context on startup
svn:r432
| Roger Dingledine | 2003-09-08 |
* | more futzing towards tls•••not there yet
svn:r429
| Roger Dingledine | 2003-09-07 |
* | general cleanup and reabstraction, to prepare for tls•••svn:r426
| Roger Dingledine | 2003-09-05 |
* | remove last vestiges of op_port•••svn:r418
| Roger Dingledine | 2003-08-27 |
* | start honoring the recommended_versions string•••your client exits if you're running a version not in the
directory's list of acceptable versions (unless you have a
config variable set to override).
svn:r408
| Roger Dingledine | 2003-08-23 |
* | implemented cpuworkers•••please poke at it and report bugs
still needs polishing, and only handles onions now (should handle
OR handshakes too)
svn:r402
| Roger Dingledine | 2003-08-20 |
* | Attempt to make sockets code work right on windows.•••svn:r398
| Nick Mathewson | 2003-08-14 |
* | Misc patches to make windows build work. Now everything is done except the s...•••svn:r393
| Nick Mathewson | 2003-08-12 |
* | don't mess with signals on windows until we know how•••svn:r391
| Roger Dingledine | 2003-08-12 |
* | reap exited dns/cpuworkers•••svn:r385
| Roger Dingledine | 2003-08-12 |
* | better log output for debugging•••svn:r375
| Roger Dingledine | 2003-08-11 |
* | patch to let poll() recognize eof on more architectures•••svn:r372
| Roger Dingledine | 2003-08-06 |
* | implemented total read rate limiting•••svn:r365
| Roger Dingledine | 2003-07-05 |
* | clean up main.c a bit•••svn:r364
| Roger Dingledine | 2003-07-05 |
* | fix memleak in dump_signed_directory_to_string•••svn:r358
| Roger Dingledine | 2003-06-26 |
* | entries in the dns cache now expire••• (expiry time set to 100 seconds so we can play with it)
exit connections are now informed when pending resolves fail
we kill off the oldest busy worker when we're under attack and need to
resolve something new
svn:r356
| Roger Dingledine | 2003-06-25 |
* | non-buggy robustness, even•••svn:r353
| Roger Dingledine | 2003-06-24 |
* | improve robustness: connection_get_by_* ignores conns marked for close•••svn:r352
| Roger Dingledine | 2003-06-24 |
* | Remove false warnings from printf checks•••svn:r340
| Nick Mathewson | 2003-06-21 |
* | question for nick about daemonizing•••svn:r334
| Roger Dingledine | 2003-06-18 |
* | Change many files to new log_fn format•••svn:r333
| Nick Mathewson | 2003-06-17 |
* | overhaul the dns farm: cut its size in half•••i've eliminated the master dns process, so now the workers just
act like regular connections and are handled by the normal pollarray.
everything seems to still work. ;)
svn:r327
| Roger Dingledine | 2003-06-17 |
* | Add RNG seeding•••svn:r318
| Nick Mathewson | 2003-06-13 |
* | OPport is gone. So is conn type OP.•••svn:r298
| Roger Dingledine | 2003-05-28 |
* | add circuit-level sendme relay cells•••remove sendme cells
replace malloc with tor_malloc
patch (but not track down) bug in onion pending list
streamline connection_ap handshake
svn:r293
| Roger Dingledine | 2003-05-20 |
* | work on versioning; new log_fn function•••svn:r288
| Nick Mathewson | 2003-05-09 |
* | make router_dump_token only for debugging; clean backslashes•••svn:r287
| Roger Dingledine | 2003-05-09 |
* | more debugging on build_directory•••svn:r281
| Nick Mathewson | 2003-05-09 |
* | more debugging on build_directory•••svn:r280
| Nick Mathewson | 2003-05-09 |
* | Thats the letter I and the number 2. (Apologies to Negativland)•••svn:r279
| Nick Mathewson | 2003-05-09 |