summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | tor-llcrypto: Add note about key size to RSA KeyPair::generate.Wesley Aptekar-Cassels2025-09-101-0/+4
| | |
| * | tor-llcrypto: Rename rsa::PrivateKey to rsa::KeyPair.Wesley Aptekar-Cassels2025-09-085-17/+18
| | | | | | | | | | | | As discussed with gabi on IRC today.
| * | tor-key-forge: Add RSA key types.Wesley Aptekar-Cassels2025-09-087-9/+291
| | | | | | | | | | | | | | | | | | | | | Some things I'm still considering here: * We may want to define a tor_llcrypto::pk::rsa::Signature newtype. * We likely want to rename tor_llcrypto::pk::rsa::PrivateKey to RsaKeypair.
* | | Merge branch 'doc_features_no_longer_there' into 'main'Nick Mathewson2025-09-3060-266/+58
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Remove check_doc_features and doc_auto_cfg. Closes #1514 See merge request tpo/core/arti!3294
| * | | Remove "doc_auto_cfg" incantation from all crates.Nick Mathewson2025-09-2957-57/+57
| | | | | | | | | | | | | | | | This feature has been removed from nightly, in favor of doc_cfg.
| * | | Remove check_doc_features.Nick Mathewson2025-09-293-209/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now that rust nightly has merged doc_auto_cfg into doc_cfg, and completed https://github.com/rust-lang/rust/pull/138907, it is no longer necessary. Closes #1514.
* | | | Merge branch 'suppress-warnings' into 'main'Nick Mathewson2025-09-302-3/+13
|\ \ \ \ | |_|_|/ |/| | | | | | | | | | | Fix two clippy warnings See merge request tpo/core/arti!3295
| * | | rpc: Suppress a clippy warning by making PossumCage usedIan Jackson2025-09-301-2/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes warning: struct `PossumCage` is never constructed warning: associated function `make_cast_table` is never used with cargo +stable clippy --locked --offline -p tor-rpcbase --all-targets Most of our builds happen with --all-features so we don't notice. In that case I think something to do with method printing:(`describe-methods`) is using things enough for the compiler not to complain.
| * | | rpc: Suppress a clippy false positive that appears with current betaIan Jackson2025-09-301-1/+2
| | | |
* | | | Merge branch 'sort_circ_actions' into 'main'Nick Mathewson2025-09-291-1/+48
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | Sort output events for next_circ_action. See merge request tpo/core/arti!3292
| * | | | Sort output events for next_circ_action.Nick Mathewson2025-09-291-1/+48
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | This sort makes it so that that blocking and unblocking are always ordered in a sensible way with respect to sending data. This might help simplify padding machines a bit. Prerequisite for #2190
* | | | Merge branch 'rework-chutney-test' into 'main'Jim Newsome2025-09-296-132/+219
|\ \ \ \ | |_|/ / |/| | | | | | | | | | | chutney ci: reorganize scripts, especially configuration handling See merge request tpo/core/arti!3264
| * | | chutney ci setup: encapsulate config as a wholeJim Newsome2025-09-291-23/+35
| | | | | | | | | | | | | | | | | | | | | | | | This is partly just to get more code out of "main", but also paves the way a bit for reusing this config code in the `integration-e2e-shadow` wrapper script, to support the same command-line arguments there.
| * | | chutney CI: store and use jq pathJim Newsome2025-09-292-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | Since we're validating the presence of jq, we might as well handle it consistently with the other dependencies and provide a way to specify where it is.
| * | | chutney setup: refactor config options into Resolver objectsJim Newsome2025-09-291-79/+127
| | | | | | | | | | | | | | | | | | | | | | | | Encapsulate the logic of finding and validating each option into their own objects (e.g. so that specification of corresponding command-line option goes together with other related logic).
| * | | chutney ci: remove CHUTNEY_BIN env variableJim Newsome2025-09-295-17/+10
| | | | | | | | | | | | | | | | | | | | | | | | This wasn't a pre-existing environment variable, and now it can be set via command-line if it needs to be overridden. I don't see much reason to use an environment variable here.
| * | | chutney ci setup: allow bin locations to be set by cmd lineJim Newsome2025-09-291-20/+36
| | | |
| * | | chutney setup: break into functionsJim Newsome2025-09-291-36/+50
| | | |
| * | | chutney ci: rewrite setup script in pythonJim Newsome2025-09-291-92/+75
| | | | | | | | | | | | | | | | | | | | We avoid much refactoring at this step to minimize functional changes from the shell script.
| * | | chutney CI: move benchmark from e2e script to `test` scriptJim Newsome2025-09-292-12/+7
| | | |
| * | | chutney ci: move "chutney bootstrap" from `setup` to `bootstrap`Jim Newsome2025-09-293-5/+19
| | | | | | | | | | | | | | | | | | | | | | | | This makes the `setup` script a bit more clearly single-purpose of resolving and storing the configuration, without actually acting on it yet.
| * | | chutney ci: move "chutney verify" test from `setup` to `test`Jim Newsome2025-09-292-1/+13
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | It made sense to have this as part of the setup when the chutney network itself didn't include arti; i.e. this used to be just validating the non-chutney tor network before adding chutney nodes. Now that the chutney network natively includes arti nodes, `chutney verify` is testing those nodes; i.e., testing arti.
* | | Merge branch 'opentelemetry' into 'main'wesleyac2025-09-2925-10/+709
|\ \ \ | |/ / |/| | | | | | | | Add experimental OpenTelemetry support See merge request tpo/core/arti!3239
| * | maint: Add script to check OpenTelemetry macro invocations.Wesley Aptekar-Cassels2025-09-242-0/+23
| | |
| * | arti: Add skip_all to instrument call.Wesley Aptekar-Cassels2025-09-241-1/+1
| | |
| * | docs: Add note about existing OpenTelemetry instrumentation.Wesley Aptekar-Cassels2025-09-241-1/+1
| | |
| * | arti: Make panic into error on invalid OTEL endpoint.Wesley Aptekar-Cassels2025-09-241-3/+5
| | |
| * | arti: Add note about OpenTelemetry data model.Wesley Aptekar-Cassels2025-09-241-0/+3
| | |
| * | arti: Add note about lack of filtering in OpenTelemetry layer.Wesley Aptekar-Cassels2025-09-241-0/+3
| | |
| * | docs: Add note about OpenTelemetry port.Wesley Aptekar-Cassels2025-09-241-1/+2
| | |
| * | docs: Fix typo.Wesley Aptekar-Cassels2025-09-241-1/+1
| | |
| * | docs: Note security implications of OpenTelemetry.Wesley Aptekar-Cassels2025-09-241-2/+2
| | |
| * | arti: Add skip_all to instrument macro.Wesley Aptekar-Cassels2025-09-241-1/+1
| | | | | | | | | | | | | | | | | | It's unlikely these arguments will be particularly useful, and omitting skip_all can have security implications, so it's better to avoid it to reflect good practice.
| * | arti: Add more detail about OpenTelemetry in example config.Wesley Aptekar-Cassels2025-09-241-2/+9
| | |
| * | opentelemetry: Use humantime_serde for parsing Durations.Wesley Aptekar-Cassels2025-09-241-0/+3
| | |
| * | opentelemetry: Panic if configured for non-localhost HTTP endpoint.Wesley Aptekar-Cassels2025-09-241-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | We may want to add a way to opt out of this check, if someone asks for it. Checking for "localhost" and "127.0.0.1" is not a very robust check for a loopback interface, and it's possible that there could be other situations we can't detect where HTTP is safe (private network, WireGuard tunnel, etc). But I don't expect those to be likely to come up in practice, so this should be fine for now.
| * | arti: Add more info about OpenTelemetry to example config.Wesley Aptekar-Cassels2025-09-241-2/+6
| | |
| * | opentelemetry: Add note about lack of upstream OTLP exporter.Wesley Aptekar-Cassels2025-09-241-0/+3
| | |
| * | opentelemetry: Panic on mutex poison.Wesley Aptekar-Cassels2025-09-241-8/+1
| | |
| * | docs: Add details on how to use OpenTelemetry.Wesley Aptekar-Cassels2025-09-241-0/+64
| | |
| * | opentelemetry: Add some instrument macros.Wesley Aptekar-Cassels2025-09-2416-10/+61
| | | | | | | | | | | | | | | I've added these in places that are useful for the debugging that I've been doing.
| * | arti: Add experimental support for OpenTelemetry.Wesley Aptekar-Cassels2025-09-246-0/+534
| | |
* | | Merge branch 'parse2-fixes' into 'main'Ian Jackson2025-09-2915-105/+739
|\ \ \ | | | | | | | | | | | | | | | | netdoc parse2: Overhaul and many tests See merge request tpo/core/arti!3231
| * | | netdoc parse2 tests: Avoid <String as TryFrom<Vec<u8>>> (3)Ian Jackson2025-09-291-1/+1
| | | |
| * | | netdoc parse2 tests: Avoid <String as TryFrom<Vec<u8>>> (2) (fmt)Ian Jackson2025-09-291-2/+1
| | | |
| * | | netdoc parse2 tests: Avoid <String as TryFrom<Vec<u8>>> (2)Ian Jackson2025-09-291-2/+1
| | | | | | | | | | | | | | | | Should fix the minimal versions test?
| * | | netdoc parse2 tests: Avoid <String as TryFrom<Vec<u8>>>Ian Jackson2025-09-291-1/+1
| | | | | | | | | | | | | | | | Should fix the minimal versions test?
| * | | netdoc parse2: Remove some unneeded allowsIan Jackson2025-09-291-2/+0
| | | |
| * | | netdoc parse2: Fix two clippy lintsIan Jackson2025-09-292-1/+1
| | | |
| * | | neteoc parse2: Provide Ignored valueIan Jackson2025-09-293-1/+41
| | | | | | | | | | | | | | | | | | | | This will be used for some bits of netdocs where dummy values now appear.