Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
shrapnel
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
shrapnel
Commits
30e9cf22
Commit
30e9cf22
authored
Mar 22, 2014
by
Sam Rushing
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of github.com:ironport/shrapnel
parents
157d9407
d141b425
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
62 additions
and
11 deletions
+62
-11
.gitignore
.gitignore
+3
-0
coro/http/server.py
coro/http/server.py
+1
-0
coro/socket.pxd
coro/socket.pxd
+13
-0
coro/socket.pyx
coro/socket.pyx
+16
-1
coro/ssh/l4_transport/coro_socket_transport.py
coro/ssh/l4_transport/coro_socket_transport.py
+13
-3
coro/ssh/test/test_coro_client.py
coro/ssh/test/test_coro_client.py
+11
-5
coro/ssh/transport/transport.py
coro/ssh/transport/transport.py
+4
-1
coro/ssl/openssl.pyx
coro/ssl/openssl.pyx
+1
-1
No files found.
.gitignore
View file @
30e9cf22
...
...
@@ -9,3 +9,6 @@ coro/dns/packet.c
coro/event_queue.cpp
*.pyc
*.so
coro.egg-info
dist
distribute-*
coro/http/server.py
View file @
30e9cf22
...
...
@@ -285,6 +285,7 @@ class http_request:
ho['
connection
'] = '
close
'
self.chunking = chunked
self.close = close_it
ho['
server
'] = '
shrapnel
httpd
/%
s
' % __version__
ho['
date
'] = http_date.build_http_date (coro.now_usec / coro.microseconds)
...
...
coro/socket.pxd
View file @
30e9cf22
...
...
@@ -32,6 +32,19 @@ cdef extern from "arpa/inet.h":
int
ntohl
(
int
)
int
ntohs
(
int
)
cdef
extern
from
"netdb.h"
:
struct
addrinfo
:
int
ai_flags
# input flags
int
ai_family
# protocol family for socket
int
ai_socktype
# socket type
int
ai_protocol
# protocol for socket
int
ai_addrlen
# length of socket-address
sockaddr
*
ai_addr
# socket-address for socket
char
*
ai_canonname
# canonical name for service location
addrinfo
*
ai_next
# pointer to next in list
int
getaddrinfo
(
const
char
*
hostname
,
const
char
*
servname
,
const
addrinfo
*
hints
,
addrinfo
**
res
)
void
freeaddrinfo
(
addrinfo
*
ai
)
cdef
extern
from
"sys/socket.h"
:
int
AF_UNSPEC
,
AF_INET
,
AF_INET6
,
AF_UNIX
int
SOCK_STREAM
,
SOCK_DGRAM
,
SOL_SOCKET
,
INADDR_ANY
...
...
coro/socket.pyx
View file @
30e9cf22
...
...
@@ -820,9 +820,24 @@ cdef public class sock [ object sock_object, type sock_type ]:
cdef
sockaddr_in6
*
sin6
=
<
sockaddr_in6
*>
sa
cdef
bytes
ip
cdef
uint16_t
port
ip
,
port
=
address
cdef
int
percent
cdef
int
flowinfo
cdef
int
scope_id
cdef
addrinfo
*
ai
if
len
(
address
)
==
4
:
# as per python return value from getaddrinfo() and arg to connect()
ip
,
port
,
flowinfo
,
scope_id
=
address
sin6
.
sin6_flowinfo
=
htonl
(
flowinfo
)
sin6
.
sin6_scope_id
=
scope_id
elif
len
(
address
)
==
2
:
ip
,
port
=
address
if
not
ip
:
ip
=
b'::'
percent
=
ip
.
find
(
'%'
)
if
percent
!=
-
1
:
ip
=
ip
[:
percent
]
# XXX hack, should make scope id an option?
sin6
.
sin6_scope_id
=
2
sin6
.
sin6_family
=
AF_INET6
IF
UNAME_SYSNAME
==
"FreeBSD"
:
sin6
.
sin6_len
=
sizeof
(
sockaddr_in6
)
...
...
coro/ssh/l4_transport/coro_socket_transport.py
View file @
30e9cf22
...
...
@@ -47,7 +47,10 @@ class coro_socket_transport(l4_transport.Transport):
self
.
bind_ip
=
bind_ip
self
.
hostname
=
hostname
if
sock
is
None
:
self
.
s
=
coro
.
make_socket
(
socket
.
AF_INET
,
socket
.
SOCK_STREAM
)
if
':'
in
ip
:
self
.
s
=
coro
.
tcp6_sock
()
else
:
self
.
s
=
coro
.
tcp_sock
()
else
:
self
.
s
=
sock
self
.
peer
=
self
.
s
.
getpeername
()
...
...
@@ -55,8 +58,15 @@ class coro_socket_transport(l4_transport.Transport):
def
connect
(
self
):
if
self
.
bind_ip
is
not
None
:
self
.
s
.
bind
((
self
.
bind_ip
,
0
))
self
.
s
.
connect
((
self
.
ip
,
self
.
port
))
if
'%'
in
self
.
ip
:
# link local address, need 4-tuple
ai
=
socket
.
getaddrinfo
(
self
.
ip
,
self
.
port
)
address
=
ai
[
0
][
4
]
ip
,
port
,
flowinfo
,
scope_id
=
address
ip
,
intf
=
ip
.
split
(
'%'
)
self
.
s
.
connect
((
ip
,
port
,
flowinfo
,
scope_id
))
else
:
self
.
s
.
connect
((
self
.
ip
,
self
.
port
))
def
read
(
self
,
bytes
):
# XXX: This could be made more efficient.
...
...
coro/ssh/test/test_coro_client.py
View file @
30e9cf22
...
...
@@ -41,12 +41,18 @@ import coro
def
usage
():
print
'test_coro_client [-l login_name] [-p port] hostname | user@hostname'
import
re
is_ip_re
=
re
.
compile
(
'[0-9]+
\
.[
0
-9]+
\
.[
0
-9]+
\
.[
0
-9]+$'
)
# cheap emulation of inet_utils.is_ip()
def
is_ip
(
s
):
return
is_ip_re
.
match
(
s
)
if
s
.
count
(
'%'
)
==
1
:
s
,
intf
=
s
.
split
(
'%'
)
try
:
socket
.
inet_pton
(
coro
.
AF
.
INET6
,
s
)
return
True
except
socket
.
error
:
try
:
socket
.
inet_pton
(
coro
.
AF
.
INET
,
s
)
return
True
except
:
return
False
oldterm
=
None
oldflags
=
None
...
...
coro/ssh/transport/transport.py
View file @
30e9cf22
...
...
@@ -651,11 +651,14 @@ class SSH_Transport:
Separate function to help with unittests.
"""
cookie
=
random
.
get_random_data
(
16
)
server_keys
=
[
x
.
name
for
x
in
self
.
self2remote
.
supported_server_keys
]
server_keys
.
reverse
()
packet
=
ssh_packet
.
pack_payload
(
ssh_packet
.
PAYLOAD_MSG_KEXINIT
,
(
SSH_MSG_KEXINIT
,
cookie
,
[
x
.
name
for
x
in
self
.
self2remote
.
supported_key_exchanges
],
[
x
.
name
for
x
in
self
.
self2remote
.
supported_server_keys
],
#[x.name for x in self.self2remote.supported_server_keys],
server_keys
,
[
x
.
name
for
x
in
self
.
c2s
.
supported_ciphers
],
[
x
.
name
for
x
in
self
.
s2c
.
supported_ciphers
],
[
x
.
name
for
x
in
self
.
c2s
.
supported_macs
],
...
...
coro/ssl/openssl.pyx
View file @
30e9cf22
...
...
@@ -1114,7 +1114,7 @@ cdef class ssl_ctx:
for
proto
in
protos
:
r
.
append
(
chr
(
len
(
proto
)))
r
.
append
(
proto
)
self
.
next_protos
=
''
.
join
(
r
)
self
.
next_protos
=
<
bytes
>
(
''
.
join
(
r
)
)
SSL_CTX_set_next_protos_advertised_cb
(
self
.
ctx
,
next_protos_server_callback
,
<
void
*>
self
)
SSL_CTX_set_next_proto_select_cb
(
self
.
ctx
,
next_protos_client_callback
,
<
void
*>
self
)
...
...
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