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
4720c5cb
Commit
4720c5cb
authored
Nov 16, 2017
by
Tatsuhiro Tsujikawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nghttpx: Make client serial available in mruby script
parent
cd55ab28
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
0 deletions
+31
-0
doc/nghttpx.h2r
doc/nghttpx.h2r
+5
-0
src/shrpx_mruby_module_env.cc
src/shrpx_mruby_module_env.cc
+26
-0
No files found.
doc/nghttpx.h2r
View file @
4720c5cb
...
...
@@ -384,6 +384,11 @@ respectively.
Return the subject name of a client certificate.
.. rb:attr_reader:: tls_client_serial
Return the serial number of a client certificate in a format
like "ff:ff:ff:ff:ff:ff:ff:ff".
.. rb:attr_reader:: tls_cipher
Return a TLS cipher negotiated in this connection.
...
...
src/shrpx_mruby_module_env.cc
View file @
4720c5cb
...
...
@@ -235,6 +235,30 @@ mrb_value env_get_tls_client_issuer_name(mrb_state *mrb, mrb_value self) {
}
}
// namespace
namespace
{
mrb_value
env_get_tls_client_serial
(
mrb_state
*
mrb
,
mrb_value
self
)
{
auto
data
=
static_cast
<
MRubyAssocData
*>
(
mrb
->
ud
);
auto
downstream
=
data
->
downstream
;
auto
upstream
=
downstream
->
get_upstream
();
auto
handler
=
upstream
->
get_client_handler
();
auto
ssl
=
handler
->
get_ssl
();
if
(
!
ssl
)
{
return
mrb_str_new_static
(
mrb
,
""
,
0
);
}
auto
x
=
SSL_get_peer_certificate
(
ssl
);
if
(
!
x
)
{
return
mrb_str_new_static
(
mrb
,
""
,
0
);
}
auto
&
balloc
=
downstream
->
get_block_allocator
();
auto
sn
=
tls
::
get_x509_serial
(
balloc
,
x
);
X509_free
(
x
);
return
mrb_str_new
(
mrb
,
sn
.
c_str
(),
sn
.
size
());
}
}
// namespace
namespace
{
mrb_value
env_get_tls_cipher
(
mrb_state
*
mrb
,
mrb_value
self
)
{
auto
data
=
static_cast
<
MRubyAssocData
*>
(
mrb
->
ud
);
...
...
@@ -348,6 +372,8 @@ void init_env_class(mrb_state *mrb, RClass *module) {
env_get_tls_client_issuer_name
,
MRB_ARGS_NONE
());
mrb_define_method
(
mrb
,
env_class
,
"tls_client_subject_name"
,
env_get_tls_client_subject_name
,
MRB_ARGS_NONE
());
mrb_define_method
(
mrb
,
env_class
,
"tls_client_serial"
,
env_get_tls_client_serial
,
MRB_ARGS_NONE
());
mrb_define_method
(
mrb
,
env_class
,
"tls_cipher"
,
env_get_tls_cipher
,
MRB_ARGS_NONE
());
mrb_define_method
(
mrb
,
env_class
,
"tls_protocol"
,
env_get_tls_protocol
,
...
...
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