Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
47c0b1f7
Kaydet (Commit)
47c0b1f7
authored
Ock 27, 2018
tarafından
Коренберг Марк
Kaydeden (comit)
Yury Selivanov
Ock 27, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-32221: makeipaddr(): remove interface part + speedup (GH-4724)
üst
ee72ac06
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
94 additions
and
28 deletions
+94
-28
socket.rst
Doc/library/socket.rst
+15
-0
test_socket.py
Lib/test/test_socket.py
+44
-0
2017-12-06-10-10-10.bpo-32221.ideco_.rst
...S.d/next/Library/2017-12-06-10-10-10.bpo-32221.ideco_.rst
+4
-0
socketmodule.c
Modules/socketmodule.c
+31
-28
No files found.
Doc/library/socket.rst
Dosyayı görüntüle @
47c0b1f7
...
...
@@ -77,6 +77,11 @@ created. Socket addresses are represented as follows:
backward compatibility. Note, however, omission of *scopeid* can cause problems
in manipulating scoped IPv6 addresses.
.. versionchanged:: 3.7
For multicast addresses (with *scopeid* meaningful) *address* may not contain
``%scope`` (or ``zone id``) part. This information is superfluous and may
be safely omitted (recommended).
- :const:`AF_NETLINK` sockets are represented as pairs ``(pid, groups)``.
- Linux-only support for TIPC is available using the :const:`AF_TIPC`
...
...
@@ -630,6 +635,10 @@ The :mod:`socket` module also offers various network-related services:
.. versionchanged:: 3.2
parameters can now be passed using keyword arguments.
.. versionchanged:: 3.7
for IPv6 multicast addresses, string representing an address will not
contain ``%scope`` part.
.. function:: getfqdn([name])
Return a fully qualified domain name for *name*. If *name* is omitted or empty,
...
...
@@ -688,6 +697,8 @@ The :mod:`socket` module also offers various network-related services:
or numeric address representation in *host*. Similarly, *port* can contain a
string port name or a numeric port number.
For IPv6 addresses, ``%scope`` is appended to the host part if *sockaddr*
contains meaningful *scopeid*. Usually this happens for multicast addresses.
.. function:: getprotobyname(protocolname)
...
...
@@ -1178,6 +1189,10 @@ to sockets.
an exception, the method now retries the system call instead of raising
an :exc:`InterruptedError` exception (see :pep:`475` for the rationale).
.. versionchanged:: 3.7
For multicast IPv6 address, first item of *address* does not contain
``%scope`` part anymore. In order to get full IPv6 address use
:func:`getnameinfo`.
.. method:: socket.recvmsg(bufsize[, ancbufsize[, flags]])
...
...
Lib/test/test_socket.py
Dosyayı görüntüle @
47c0b1f7
...
...
@@ -1586,6 +1586,50 @@ class GeneralModuleTests(unittest.TestCase):
with
socket
.
socket
(
socket
.
AF_INET6
,
socket
.
SOCK_STREAM
)
as
s
:
self
.
assertRaises
(
OverflowError
,
s
.
bind
,
(
support
.
HOSTv6
,
0
,
-
10
))
@unittest.skipUnless
(
support
.
IPV6_ENABLED
,
'IPv6 required for this test.'
)
def
test_getaddrinfo_ipv6_basic
(
self
):
((
*
_
,
sockaddr
),)
=
socket
.
getaddrinfo
(
'ff02::1de:c0:face:8D'
,
# Note capital letter `D`.
1234
,
socket
.
AF_INET6
,
socket
.
SOCK_DGRAM
,
socket
.
IPPROTO_UDP
)
self
.
assertEqual
(
sockaddr
,
(
'ff02::1de:c0:face:8d'
,
1234
,
0
,
0
))
@unittest.skipUnless
(
support
.
IPV6_ENABLED
,
'IPv6 required for this test.'
)
@unittest.skipUnless
(
hasattr
(
socket
,
'if_nameindex'
),
'IPv6 scope id by interface name is not supported'
)
def
test_getaddrinfo_ipv6_scopeid
(
self
):
test_interface
=
'lo'
ifindex
=
socket
.
if_nametoindex
(
test_interface
)
((
*
_
,
sockaddr
),)
=
socket
.
getaddrinfo
(
'ff02::1de:c0:face:8D
%
'
+
test_interface
,
1234
,
socket
.
AF_INET6
,
socket
.
SOCK_DGRAM
,
socket
.
IPPROTO_UDP
)
# Note missing interface name part in IPv6 address
self
.
assertEqual
(
sockaddr
,
(
'ff02::1de:c0:face:8d'
,
1234
,
0
,
ifindex
))
@unittest.skipUnless
(
support
.
IPV6_ENABLED
,
'IPv6 required for this test.'
)
def
test_getaddrinfo_ipv6_scopeid_numeric
(
self
):
((
*
_
,
sockaddr
),)
=
socket
.
getaddrinfo
(
'ff02::1de:c0:face:8D
%42
'
,
1234
,
socket
.
AF_INET6
,
socket
.
SOCK_DGRAM
,
socket
.
IPPROTO_UDP
)
# Note missing interface name part in IPv6 address
self
.
assertEqual
(
sockaddr
,
(
'ff02::1de:c0:face:8d'
,
1234
,
0
,
42
))
@unittest.skipUnless
(
support
.
IPV6_ENABLED
,
'IPv6 required for this test.'
)
def
test_getnameinfo_ipv6_scopeid
(
self
):
sockaddr
=
(
'ff02::1de:c0:face:8D'
,
1234
,
0
,
100500
)
# Note capital letter `D`.
nameinfo
=
socket
.
getnameinfo
(
sockaddr
,
socket
.
NI_NUMERICHOST
|
socket
.
NI_NUMERICSERV
)
self
.
assertEqual
(
nameinfo
,
(
'ff02::1de:c0:face:8d
%100500
'
,
'1234'
))
def
test_str_for_enums
(
self
):
# Make sure that the AF_* and SOCK_* constants have enum-like string
# reprs.
...
...
Misc/NEWS.d/next/Library/2017-12-06-10-10-10.bpo-32221.ideco_.rst
0 → 100644
Dosyayı görüntüle @
47c0b1f7
Various functions returning tuple containig IPv6 addresses now omit ``%scope``
part since the same information is already encoded in *scopeid* tuple item.
Especially this speeds up :func:`socket.recvfrom` when it receives multicast
packet since useless resolving of network interface name is omitted.
Modules/socketmodule.c
Dosyayı görüntüle @
47c0b1f7
...
...
@@ -1094,25 +1094,33 @@ setipaddr(const char *name, struct sockaddr *addr_ret, size_t addr_ret_size, int
}
/* Create a string object representing an IP address.
This is always a string of the form 'dd.dd.dd.dd' (with variable
size numbers). */
/* Convert IPv4 sockaddr to a Python str. */
static
PyObject
*
make
ipaddr
(
struct
sockaddr
*
addr
,
int
addrlen
)
make
_ipv4_addr
(
const
struct
sockaddr_in
*
addr
)
{
char
buf
[
NI_MAXHOST
];
int
error
;
error
=
getnameinfo
(
addr
,
addrlen
,
buf
,
sizeof
(
buf
),
NULL
,
0
,
NI_NUMERICHOST
);
if
(
error
)
{
set_gaierror
(
error
);
char
buf
[
INET_ADDRSTRLEN
];
if
(
inet_ntop
(
AF_INET
,
&
addr
->
sin_addr
,
buf
,
sizeof
(
buf
))
==
NULL
)
{
PyErr_SetFromErrno
(
PyExc_OSError
);
return
NULL
;
}
return
PyUnicode_FromString
(
buf
);
}
#ifdef ENABLE_IPV6
/* Convert IPv6 sockaddr to a Python str. */
static
PyObject
*
make_ipv6_addr
(
const
struct
sockaddr_in6
*
addr
)
{
char
buf
[
INET6_ADDRSTRLEN
];
if
(
inet_ntop
(
AF_INET6
,
&
addr
->
sin6_addr
,
buf
,
sizeof
(
buf
))
==
NULL
)
{
PyErr_SetFromErrno
(
PyExc_OSError
);
return
NULL
;
}
return
PyUnicode_FromString
(
buf
);
}
#endif
#ifdef USE_BLUETOOTH
/* Convert a string representation of a Bluetooth address into a numeric
...
...
@@ -1177,11 +1185,10 @@ makesockaddr(SOCKET_T sockfd, struct sockaddr *addr, size_t addrlen, int proto)
case
AF_INET
:
{
struct
sockaddr_in
*
a
;
PyObject
*
addrobj
=
make
ipaddr
(
addr
,
sizeof
(
*
a
)
);
const
struct
sockaddr_in
*
a
=
(
const
struct
sockaddr_in
*
)
addr
;
PyObject
*
addrobj
=
make
_ipv4_addr
(
a
);
PyObject
*
ret
=
NULL
;
if
(
addrobj
)
{
a
=
(
struct
sockaddr_in
*
)
addr
;
ret
=
Py_BuildValue
(
"Oi"
,
addrobj
,
ntohs
(
a
->
sin_port
));
Py_DECREF
(
addrobj
);
}
...
...
@@ -1225,11 +1232,10 @@ makesockaddr(SOCKET_T sockfd, struct sockaddr *addr, size_t addrlen, int proto)
#ifdef ENABLE_IPV6
case
AF_INET6
:
{
struct
sockaddr_in6
*
a
;
PyObject
*
addrobj
=
make
ipaddr
(
addr
,
sizeof
(
*
a
)
);
const
struct
sockaddr_in6
*
a
=
(
const
struct
sockaddr_in6
*
)
addr
;
PyObject
*
addrobj
=
make
_ipv6_addr
(
a
);
PyObject
*
ret
=
NULL
;
if
(
addrobj
)
{
a
=
(
struct
sockaddr_in6
*
)
addr
;
ret
=
Py_BuildValue
(
"OiII"
,
addrobj
,
ntohs
(
a
->
sin6_port
),
...
...
@@ -5036,14 +5042,14 @@ static PyObject *
socket_gethostbyname
(
PyObject
*
self
,
PyObject
*
args
)
{
char
*
name
;
s
ock_addr_t
addrbuf
;
s
truct
sockaddr_in
addrbuf
;
PyObject
*
ret
=
NULL
;
if
(
!
PyArg_ParseTuple
(
args
,
"et:gethostbyname"
,
"idna"
,
&
name
))
return
NULL
;
if
(
setipaddr
(
name
,
SAS2SA
(
&
addrbuf
)
,
sizeof
(
addrbuf
),
AF_INET
)
<
0
)
if
(
setipaddr
(
name
,
(
struct
sockaddr
*
)
&
addrbuf
,
sizeof
(
addrbuf
),
AF_INET
)
<
0
)
goto
finally
;
ret
=
make
ipaddr
(
SAS2SA
(
&
addrbuf
),
sizeof
(
struct
sockaddr_in
)
);
ret
=
make
_ipv4_addr
(
&
addrbuf
);
finally:
PyMem_Free
(
name
);
return
ret
;
...
...
@@ -5145,7 +5151,7 @@ gethost_common(struct hostent *h, struct sockaddr *addr, size_t alen, int af)
sin
.
sin_len
=
sizeof
(
sin
);
#endif
memcpy
(
&
sin
.
sin_addr
,
*
pch
,
sizeof
(
sin
.
sin_addr
));
tmp
=
make
ipaddr
((
struct
sockaddr
*
)
&
sin
,
sizeof
(
sin
)
);
tmp
=
make
_ipv4_addr
(
&
sin
);
if
(
pch
==
h
->
h_addr_list
&&
alen
>=
sizeof
(
sin
))
memcpy
((
char
*
)
addr
,
&
sin
,
sizeof
(
sin
));
...
...
@@ -5162,8 +5168,7 @@ gethost_common(struct hostent *h, struct sockaddr *addr, size_t alen, int af)
sin6
.
sin6_len
=
sizeof
(
sin6
);
#endif
memcpy
(
&
sin6
.
sin6_addr
,
*
pch
,
sizeof
(
sin6
.
sin6_addr
));
tmp
=
makeipaddr
((
struct
sockaddr
*
)
&
sin6
,
sizeof
(
sin6
));
tmp
=
make_ipv6_addr
(
&
sin6
);
if
(
pch
==
h
->
h_addr_list
&&
alen
>=
sizeof
(
sin6
))
memcpy
((
char
*
)
addr
,
&
sin6
,
sizeof
(
sin6
));
...
...
@@ -5934,14 +5939,11 @@ socket_inet_ntop(PyObject *self, PyObject *args)
Py_buffer
packed_ip
;
const
char
*
retval
;
#ifdef ENABLE_IPV6
char
ip
[
Py_MAX
(
INET_ADDRSTRLEN
,
INET6_ADDRSTRLEN
)
+
1
];
char
ip
[
Py_MAX
(
INET_ADDRSTRLEN
,
INET6_ADDRSTRLEN
)];
#else
char
ip
[
INET_ADDRSTRLEN
+
1
];
char
ip
[
INET_ADDRSTRLEN
];
#endif
/* Guarantee NUL-termination for PyUnicode_FromString() below */
memset
((
void
*
)
&
ip
[
0
],
'\0'
,
sizeof
(
ip
));
if
(
!
PyArg_ParseTuple
(
args
,
"iy*:inet_ntop"
,
&
af
,
&
packed_ip
))
{
return
NULL
;
}
...
...
@@ -5969,6 +5971,7 @@ socket_inet_ntop(PyObject *self, PyObject *args)
return
NULL
;
}
/* inet_ntop guarantee NUL-termination of resulting string. */
retval
=
inet_ntop
(
af
,
packed_ip
.
buf
,
ip
,
sizeof
(
ip
));
PyBuffer_Release
(
&
packed_ip
);
if
(
!
retval
)
{
...
...
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