| Commit message (Collapse) | Author | Age | Files | Lines |
| ... | |
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This error type doesn't impement HasKind, since the kind will depend
on context.
However, the existing implementation was pretty messy and inconsistent:
Some errors had positions, some didn't.
Some took messages as str, some as String.
Some had internal errors that were somewhat orthogonal to their actual
types.
This commit refactors tor_netdoc::Error to use a ParseErrorKind, and
adds a set of convenience functions to add positions and
messages to the errors that need them.
|
| | |
| |
| |
| |
| | |
Every other case of tor_netdoc::Error means a parse failure. This one,
though, means a failure to construct a document.
|
| | |
| |
| |
| | |
Nothing creates this.
|
| |\ \
| | |
| | |
| | |
| | | |
New name and semantics for Bug (was BadArgument)
See merge request tpo/core/arti!310
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | | |
As per
https://gitlab.torproject.org/tpo/core/arti/-/merge_requests/310#note_2777626
The message from the kind is precisely right.
|
| | | |
| | |
| | |
| | | |
Now it maches the others
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
As per
https://gitlab.torproject.org/tpo/core/arti/-/merge_requests/310#note_2777519
mutatis mutandi.
And, fix a leftover instance with an old idea of what this was called.
|
| | | | |
|
| | | |
| | |
| | |
| | | |
Including supporting machinery, new kind field, etc.
|
| |/ / |
|
| |\ \
| | |
| | |
| | |
| | | |
Provide, and use From impl for InternalError
See merge request tpo/core/arti!315
|
| | | | |
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Adding this autoconversion is quite safe since every error generation
site is explicit and has its own context, and we don't really need to
add more.
This simplifies the code and will simplify future work.
|
| |\ \ \
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
More docs for IntoTorAddr
Closes #253
See merge request tpo/core/arti!305
|
| | |/ / |
|
| |\ \ \
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Simplify wait_for_bootstrap to use a Mutex.
Closes #337
See merge request tpo/core/arti!308
|
| | | |/
| |/|
| | |
| | |
| | |
| | |
| | |
| | | |
Since the only purpose of this function is to make sure that no
bootstrapping task is running, a simple futures::lock::Mutex
should do the job just fine.
Closes #337.
|
| |\ \ \
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Change deny(clippy::all) to warn(clippy::all).
Closes #338
See merge request tpo/core/arti!306
|
| | |/ /
| | |
| | |
| | | |
Closes #338.
|
| |\ \ \ |
|
| | | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
We should not generally explicitly specify a kind for errors which
contain a more detailed error which itself has a kind. Stating the
kind literally is a latent bug, which becomes a real bug if the
contained type's kind changes or starts to vary.
(There may be exceptions to this principle but this isn't one of
them.)
|
| |\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | | |
Split up ErrorKind::ProtocolViolation
See merge request tpo/core/arti!312
|
| | |/ / / |
|
| |\ \ \ \
| |_|_|/
|/| | |
| | | |
| | | | |
Split up ErrorKind::NoSupport
See merge request tpo/core/arti!311
|
| | | | | |
|
| | |/ / |
|
| |\ \ \
| | | |
| | | |
| | | |
| | | | |
Clarify ErrorKind::InvalidConfigTransition
See merge request tpo/core/arti!309
|
| | |/ / |
|
| |\ \ \
| |/ /
|/| |
| | |
| | | |
dirmgr: Remove a useless Ok(x?)
See merge request tpo/core/arti!307
|
| | |/
| |
| |
| | |
Found by nightly clippy.
|
| |\ \
| |/
|/|
| |
| | |
Use atomic set-and-check to update OptTimestamps if none.
See merge request tpo/core/arti!297
|
| | |
| |
| |
| |
| |
| |
| | |
This fixes a tiny race condition in the previous code, where we
checked whether an OptTimestamp is None a bit before we set it.
Since std::atomic gives us compare_exchange, we might as well use
it.
|
| | |
| |
| |
| | |
(Looks like this one got missed.)
|
| |\ \
| | |
| | |
| | |
| | |
| | |
| | | |
Allow creating unbootstrapped `TorClient`s (and `DirMgr`s)
Closes #293
See merge request tpo/core/arti!298
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This commit changes how the `TorClient` type works, enabling it to be
constructed synchronously without initiating the bootstrapping process.
Daemon tasks are still started on construction (although some of them
won't do anything if the client isn't bootstrapped).
The old bootstrap() methods are now reimplemented in terms of the new
create_unbootstrapped() and bootstrap_existing() methods.
This required refactoring how the `DirMgr` works to enable the same sort
of thing there.
closes #293
|
| |\ \ \
| | | |
| | | |
| | | |
| | | | |
Write some examples for TorClient::connect()
See merge request tpo/core/arti!303
|
| | | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
These should explain better what you can pass as an address, and
what you should do if you _really need_ to provide a SocketAddr or
something.
|
| |\ \ \ \
| |/ / /
|/| | |
| | | |
| | | | |
tor-socksproto: Implement HasKind
See merge request tpo/core/arti!299
|
| | | | | |
|
| | | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Refactor the Error type to remove the yucky internal hidden Truncated
variant. Instead, there's now an embedded tor_bytes::Error value.
If that tor_bytes::Error is Truncated, we bubble it up when we convert our
handshake result to the nested error struct.
Thus there is still (sadly) a variant of tor_socksproto::Error
that shouldn't be exposed to user code. But refactoring every
inner method under handshake.rs seemed like a bad idea: once we're using
Result<Result<..>>, the ? operator no longer helps us much.
|
| | | | | |
|
| | | | |
| | | |
| | | |
| | | |
| | | | |
I'm not in love with this solution; the others just seem a bit ugly
too.
|
| |/ / /
| | |
| | |
| | |
| | | |
(This error isn't yet wrapped in TorError, but it will be eventually
when we implement socks proxy and PT support.)
|
| |\ \ \
| | | |
| | | |
| | | |
| | | | |
Fix typos
See merge request tpo/core/arti!301
|
| | | | | |
|
| |\ \ \ \
| |/ / /
|/| | |
| | | |
| | | | |
tor-bytes: Use InternalError.
See merge request tpo/core/arti!300
|
| |/ / /
| | |
| | |
| | |
| | |
| | | |
This crate's Error type is too low-level to have an ErrorKind, but
it does make sense to use InternalError for the internal errors
here.
|
| |\ \ \
| |_|/
|/| |
| | |
| | | |
tor-config: Add HasKind support.
See merge request tpo/core/arti!296
|
| |/ /
| |
| |
| | |
This required a few new ErrorKinds.
|
| | |
| |
| |
| |
| |
| | |
This edge-case was there even before the migration of
595fe1ab881b94106649, but now it's more explicit and ought to be
revisited.
|