Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
nghttp2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
nghttp2
Commits
f6301714
Commit
f6301714
authored
Mar 26, 2017
by
Tatsuhiro Tsujikawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nghttpx: Avoid copy of std::mt19937 which is huge
parent
7dc39b1e
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
13 additions
and
18 deletions
+13
-18
src/shrpx.cc
src/shrpx.cc
+1
-2
src/shrpx_connection_handler.cc
src/shrpx_connection_handler.cc
+2
-6
src/shrpx_worker.cc
src/shrpx_worker.cc
+2
-3
src/shrpx_worker.h
src/shrpx_worker.h
+1
-2
src/shrpx_worker_process.cc
src/shrpx_worker_process.cc
+1
-2
src/util.cc
src/util.cc
+4
-1
src/util.h
src/util.h
+2
-2
No files found.
src/shrpx.cc
View file @
f6301714
...
...
@@ -2908,8 +2908,7 @@ int process_options(Config *config,
auto
iov
=
make_byte_ref
(
config
->
balloc
,
SHRPX_OBFUSCATED_NODE_LENGTH
+
2
);
auto
p
=
iov
.
base
;
*
p
++
=
'_'
;
std
::
random_device
rd
;
auto
gen
=
util
::
make_mt19937
(
rd
);
auto
gen
=
util
::
make_mt19937
();
p
=
util
::
random_alpha_digit
(
p
,
p
+
SHRPX_OBFUSCATED_NODE_LENGTH
,
gen
);
*
p
=
'\0'
;
fwdconf
.
by_obfuscated
=
StringRef
{
iov
.
base
,
p
};
...
...
src/shrpx_connection_handler.cc
View file @
f6301714
...
...
@@ -232,11 +232,9 @@ int ConnectionHandler::create_single_worker() {
all_ssl_ctx_
.
push_back
(
session_cache_ssl_ctx
);
}
std
::
random_device
rd
;
single_worker_
=
make_unique
<
Worker
>
(
loop_
,
sv_ssl_ctx
,
cl_ssl_ctx
,
session_cache_ssl_ctx
,
cert_tree_
.
get
(),
ticket_keys_
,
this
,
config
->
conn
.
downstream
,
util
::
make_mt19937
(
rd
)
);
ticket_keys_
,
this
,
config
->
conn
.
downstream
);
#ifdef HAVE_MRUBY
if
(
single_worker_
->
create_mruby_context
()
!=
0
)
{
return
-
1
;
...
...
@@ -278,8 +276,6 @@ int ConnectionHandler::create_worker_thread(size_t num) {
++
num
;
}
std
::
random_device
rd
;
for
(
size_t
i
=
0
;
i
<
num
;
++
i
)
{
auto
loop
=
ev_loop_new
(
config
->
ev_loop_flags
);
...
...
@@ -295,7 +291,7 @@ int ConnectionHandler::create_worker_thread(size_t num) {
}
auto
worker
=
make_unique
<
Worker
>
(
loop
,
sv_ssl_ctx
,
cl_ssl_ctx
,
session_cache_ssl_ctx
,
cert_tree_
.
get
(),
ticket_keys_
,
this
,
config
->
conn
.
downstream
,
util
::
make_mt19937
(
rd
)
);
ticket_keys_
,
this
,
config
->
conn
.
downstream
);
#ifdef HAVE_MRUBY
if
(
worker
->
create_mruby_context
()
!=
0
)
{
return
-
1
;
...
...
src/shrpx_worker.cc
View file @
f6301714
...
...
@@ -114,9 +114,8 @@ Worker::Worker(struct ev_loop *loop, SSL_CTX *sv_ssl_ctx, SSL_CTX *cl_ssl_ctx,
ssl
::
CertLookupTree
*
cert_tree
,
const
std
::
shared_ptr
<
TicketKeys
>
&
ticket_keys
,
ConnectionHandler
*
conn_handler
,
std
::
shared_ptr
<
DownstreamConfig
>
downstreamconf
,
std
::
mt19937
randgen
)
:
randgen_
(
std
::
move
(
randgen
)),
std
::
shared_ptr
<
DownstreamConfig
>
downstreamconf
)
:
randgen_
(
util
::
make_mt19937
()),
worker_stat_
{},
dns_tracker_
(
loop
),
loop_
(
loop
),
...
...
src/shrpx_worker.h
View file @
f6301714
...
...
@@ -223,8 +223,7 @@ public:
ssl
::
CertLookupTree
*
cert_tree
,
const
std
::
shared_ptr
<
TicketKeys
>
&
ticket_keys
,
ConnectionHandler
*
conn_handler
,
std
::
shared_ptr
<
DownstreamConfig
>
downstreamconf
,
std
::
mt19937
randgen
);
std
::
shared_ptr
<
DownstreamConfig
>
downstreamconf
);
~
Worker
();
void
run_async
();
void
wait
();
...
...
src/shrpx_worker_process.cc
View file @
f6301714
...
...
@@ -412,8 +412,7 @@ int worker_process_event_loop(WorkerProcessConfig *wpconf) {
auto
loop
=
EV_DEFAULT
;
std
::
random_device
rd
;
auto
gen
=
util
::
make_mt19937
(
rd
);
auto
gen
=
util
::
make_mt19937
();
ConnectionHandler
conn_handler
(
loop
,
gen
);
...
...
src/util.cc
View file @
f6301714
...
...
@@ -1452,7 +1452,10 @@ StringRef extract_host(const StringRef &hostport) {
return
StringRef
{
std
::
begin
(
hostport
),
p
};
}
std
::
mt19937
make_mt19937
(
std
::
random_device
&
rd
)
{
return
std
::
mt19937
(
rd
());
}
std
::
mt19937
make_mt19937
()
{
std
::
random_device
rd
;
return
std
::
mt19937
(
rd
());
}
}
// namespace util
...
...
src/util.h
View file @
f6301714
...
...
@@ -744,8 +744,8 @@ int sha256(uint8_t *buf, const StringRef &s);
// NULL-terminated.
StringRef
extract_host
(
const
StringRef
&
hostport
);
// Returns new std::mt19937 object
, seeded by |rd|
.
std
::
mt19937
make_mt19937
(
std
::
random_device
&
rd
);
// Returns new std::mt19937 object.
std
::
mt19937
make_mt19937
();
}
// namespace util
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment