Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
The Tor Project
Core
Tor
Commits
4a740451
Commit
4a740451
authored
10 years ago
by
Nick Mathewson
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'public/bug11750'
parents
5cea500c
e9c1c3ff
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
changes/bug11750
+5
-0
5 additions, 0 deletions
changes/bug11750
src/or/circuitlist.c
+9
-1
9 additions, 1 deletion
src/or/circuitlist.c
src/test/bench.c
+25
-0
25 additions, 0 deletions
src/test/bench.c
with
39 additions
and
1 deletion
changes/bug11750
0 → 100644
+
5
−
0
View file @
4a740451
o Minor features (security):
- Apply the secure SipHash-2-4 function to the hash table mapping
circuit IDs and channels to circuits. We missed this one when we
were converting all the other hash functions to use SipHash back
in 0.2.5.3-alpha. Resolves ticket 11750.
This diff is collapsed.
Click to expand it.
src/or/circuitlist.c
+
9
−
1
View file @
4a740451
...
...
@@ -76,7 +76,15 @@ chan_circid_entries_eq_(chan_circid_circuit_map_t *a,
static
INLINE
unsigned
int
chan_circid_entry_hash_
(
chan_circid_circuit_map_t
*
a
)
{
return
((
unsigned
)
a
->
circ_id
)
^
(
unsigned
)(
uintptr_t
)(
a
->
chan
);
/* Try to squeze the siphash input into 8 bytes to save any extra siphash
* rounds. This hash function is in the critical path. */
uintptr_t
chan
=
(
uintptr_t
)
(
void
*
)
a
->
chan
;
uint32_t
array
[
2
];
array
[
0
]
=
a
->
circ_id
;
/* The low bits of the channel pointer are uninteresting, since the channel
* is a pretty big structure. */
array
[
1
]
=
(
uint32_t
)
(
chan
>>
6
);
return
(
unsigned
)
siphash24g
(
array
,
sizeof
(
array
));
}
/** Map from [chan,circid] to circuit. */
...
...
This diff is collapsed.
Click to expand it.
src/test/bench.c
+
25
−
0
View file @
4a740451
...
...
@@ -337,6 +337,30 @@ bench_dmap(void)
smartlist_free
(
sl2
);
}
static
void
bench_siphash
(
void
)
{
char
buf
[
128
];
int
lens
[]
=
{
7
,
8
,
15
,
16
,
20
,
32
,
111
,
128
,
-
1
};
int
i
,
j
;
uint64_t
total
;
uint64_t
start
,
end
;
const
int
N
=
300000
;
crypto_rand
(
buf
,
sizeof
(
buf
));
for
(
i
=
0
;
lens
[
i
]
>
0
;
++
i
)
{
total
=
0
;
reset_perftime
();
start
=
perftime
();
for
(
j
=
0
;
j
<
N
;
++
j
)
{
total
+=
siphash24g
(
buf
,
lens
[
i
]);
}
end
=
perftime
();
printf
(
"siphash24g(%d): %.2f ns per call
\n
"
,
lens
[
i
],
NANOCOUNT
(
start
,
end
,
N
));
}
}
static
void
bench_cell_ops
(
void
)
{
...
...
@@ -487,6 +511,7 @@ typedef struct benchmark_t {
static
struct
benchmark_t
benchmarks
[]
=
{
ENT
(
dmap
),
ENT
(
siphash
),
ENT
(
aes
),
ENT
(
onion_TAP
),
#ifdef CURVE25519_ENABLED
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment