summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | | Merge branch 'move-log' into 'main'Nick Mathewson2022-03-2112-413/+400
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Combine logging config and implementation in arti lib crate See merge request tpo/core/arti!421
| * | | | | | Tidy up filt_from_opt_strIan Jackson2022-03-211-4/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This was clumsy. Now it is brought together it can be simplified.
| * | | | | | Abolish logging filter option accessorsIan Jackson2022-03-211-19/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This de-duplicates the code that was in those accessors, and is now in filt_from_opt_str. Code motion and direct field access.
| * | | | | | Abolish easy accessors for logging configIan Jackson2022-03-211-26/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There are no longer needed, because the code that uses this configuration now lives in the same module as the configuration itself.
| * | | | | | Move logging configuration from arti_config::options to arti::loggingIan Jackson2022-03-217-132/+135
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Code motion and import fixups.
| * | | | | | Rename arti::trace module to arti::loggingIan Jackson2022-03-212-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We are going to move LoggingConfig here. We should follow the already-public name IMO.
| * | | | | | Move ArtiConfig to new arti::cfg moduleIan Jackson2022-03-2111-275/+292
|/ / / / / / | | | | | | | | | | | | | | | | | | Code motion and import fixups.
* | | | | | Merge branch 'accessors' into 'main'Nick Mathewson2022-03-184-44/+27
|\ \ \ \ \ \ | |/ / / / / |/| | | | | | | | | | | | | | | | | Abolish some accessors in drmgr See merge request tpo/core/arti!423
| * | | | | Add semver noteIan Jackson2022-03-181-0/+1
| | | | | |
| * | | | | dirmgr: Authority: Abolish v3ident accessorIan Jackson2022-03-182-11/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This makes this information crate-private. The crate can reasonably just access it.
| * | | | | dirmgr: Authority: Move a method used only for testingIan Jackson2022-03-181-6/+9
| | | | | |
| * | | | | dirmgr: Authority: Abolish two unused accessorsIan Jackson2022-03-181-9/+1
| | | | | |
| * | | | | dirmgr: NetworkConfig: Abolish accessorsIan Jackson2022-03-181-16/+8
| | | | | | | | | | | | | | | | | | | | | | | | Using accessors for crate-only fields is otiose.
| * | | | | dirmgr: NetworkConfig: Rename fallbacks struct fieldIan Jackson2022-03-181-6/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Rename this to be named the same as its accessor, and use the rename feature of builder and serde. (The shorter name is nicer in the code IMO.)
* | | | | | Merge branch 'anyhow' into 'main'Nick Mathewson2022-03-181-1/+1
|\ \ \ \ \ \ | |/ / / / / |/| | | | | | | | | | | | | | | | | Actually throw an anyhow See merge request tpo/core/arti!422
| * | | | | Actually throw an anyhowIan Jackson2022-03-181-1/+1
|/ / / / / | | | | | | | | | | | | | | | Prompted by a compiler warning which I weirdly can't seem to reproduce?
* | | | | Merge branch 'circ_path_api' into 'main'Ian Jackson2022-03-187-40/+136
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | ClientCirc: add functions to return the circuit's actual path Closes #415 See merge request tpo/core/arti!419
| * | | | Define accessors for circuit hops.Nick Mathewson2022-03-173-0/+42
| | | | | | | | | | | | | | | | | | | | Closes #415
| * | | | tor-proto: Remember peer information in circuit and channelNick Mathewson2022-03-176-36/+68
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Each channel now remembers an OwnedChanTarget. Each circuit now remembers a vector of OwnedChanTarget to represent the path that it was constructed for. Part of #415.
| * | | | ClientCirc: Move n_hops into a new Path type.Nick Mathewson2022-03-173-14/+36
| | | | | | | | | | | | | | | | | | | | This will help with #415
* | | | | Merge branch 'md_allocation' into 'main'Nick Mathewson2022-03-172-126/+116
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use less space in hashtables for microdescriptors Closes #386 See merge request tpo/core/arti!415
| * | | | | Run rustfmtIan Jackson2022-03-171-5/+6
| | | | | |
| * | | | | GetMicrodescsState: Abolish separate n_missing field inIan Jackson2022-03-171-12/+12
| | | | | |
| * | | | | GetMicrodescsState: Break out with_mdreceiver_for_missingIan Jackson2022-03-171-13/+23
| | | | | |
| * | | | | GetMicrodescsState: Dedupe slightlyIan Jackson2022-03-171-8/+9
| | | | | |
| * | | | | netdir: Use an even smaller rep for list of microdescsNick Mathewson2022-03-161-55/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Every time we want a microdescriptor, we know the index of that microdesc's corresponding routerstatus within the consensus. Therefore, we can use that index to store `Arc<Microdesc>`s in a dense array, and not have to use a HashSet here at all.
| * | | | | tor-dirmgr: Remove redundant hashtable.Nick Mathewson2022-03-162-22/+52
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We were using a hashtable to keep track of missing microdescriptor digests. But this information is redundant with the NetDir state, and there's now no longer any performance benefit to keeping a separate copy. Part of #386.
| * | | | | NetDir: Use less space in hash tablesNick Mathewson2022-03-161-61/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We previously kept missing-MD entries and present-MD entries all in the same HashSet, which resulted in using more slack space than we need. Now we use separate tables, so we can drop missing-MD entries as we move forward. Also, when constructing a NetDir, set its hash tables to their final capacities. This also lets us simplify some of our missing-md-listing code a lot.
* | | | | | Merge branch 'set_iso_group_redux' into 'main'Ian Jackson2022-03-175-5/+13
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | | | | | | | | | | | | | Alternative API for set_isolation_group(). See merge request tpo/core/arti!418
| * | | | | Alternative API for set_isolation_group().Nick Mathewson2022-03-175-5/+13
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Instead of requiring a `Box<dyn Isolation>`, it now takes either a `Box<dyn Isolation>`, or an arbitrary `T` that implements `Isolation`. This API still allows the user to pass in a `Box<dyn Isolation>` if that's what they have, but it doesn't require them to Box the isolation on their own. Part of #414.
* | | | | Update semver_status.md for isolation changesNick Mathewson2022-03-171-0/+4
| | | | |
* | | | | Merge branch 'test-isolation' into 'main'Nick Mathewson2022-03-1712-214/+460
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | new api for isolation See merge request tpo/core/arti!377
| * | | | | replace TODOs with documentationtrinity-1686a2022-03-162-3/+2
| | | | | |
| * | | | | add isolation to dns requeststrinity-1686a2022-03-162-9/+35
| | | | | |
| * | | | | accept boxed isolation in StreamPref::set_isolation_grouptrinity-1686a2022-03-163-4/+4
| | | | | |
| * | | | | add trait to help test isolation related codetrinity-1686a2022-03-163-49/+182
| | | | | |
| * | | | | add tests on Isolation and fix conditional compilation issuestrinity-1686a2022-03-163-3/+60
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | it seems I added conditional compilation without noticing it?? and there was some errors when choosing a prefered runtime depending on feature flags
| * | | | | replace IsolationMap with new Isolation traittrinity-1686a2022-03-162-102/+15
| | | | | |
| * | | | | refactor restrict_muttrinity-1686a2022-03-161-14/+15
| | | | | |
| * | | | | replace Arc with Box and use dyn-clonetrinity-1686a2022-03-164-95/+69
| | | | | | | | | | | | | | | | | | | | | | | | this also removes JoinResult
| * | | | | replace result with eithertrinity-1686a2022-03-161-5/+6
| | | | | |
| * | | | | add some documentation for new traitstrinity-1686a2022-03-161-12/+18
| | | | | |
| * | | | | replace isolated with compatibletrinity-1686a2022-03-161-13/+13
| | | | | | | | | | | | | | | | | | | | | | | | the inverted logic was too easy to mess up
| * | | | | use downcast-rs instead of our own AsAnytrinity-1686a2022-03-163-15/+17
| | | | | |
| * | | | | fix existing teststrinity-1686a2022-03-162-68/+62
| | | | | |
| * | | | | add a join() on Isolationtrinity-1686a2022-03-161-4/+65
| | | | | |
| * | | | | testing new api for isolationTrinity Pointard2022-03-163-45/+124
| | | | | |
* | | | | | Merge branch 'config-partials-transparent' into 'main'Ian Jackson2022-03-1713-153/+207
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Absolish builders for CircMgrConfig and DirMgrConfig See merge request tpo/core/arti!417
| * | | | | | semver notes.Ian Jackson2022-03-161-0/+6
| | | | | | |
| * | | | | | DirMgrConfig: abolish builder; make it transparent and exhaustiveIan Jackson2022-03-165-82/+61
| | | | | | | | | | | | | | | | | | | | | | | | | | | | See rationale in the comment.