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
3e4ccbc4
Commit
3e4ccbc4
authored
12 years ago
by
Nick Mathewson
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'public/bug5537'
parents
da820bb9
a74905ce
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
changes/bug5537
+5
-0
5 additions, 0 deletions
changes/bug5537
src/or/connection.c
+42
-23
42 additions, 23 deletions
src/or/connection.c
with
47 additions
and
23 deletions
changes/bug5537
0 → 100644
+
5
−
0
View file @
3e4ccbc4
o Minor features:
- Make the code that clients use to detect an address change be
IPv6-aware, so that it won't fill clients' logs with error
messages when trying to get the IPv4 address of an IPv6
connection. Implements ticket 5537.
This diff is collapsed.
Click to expand it.
src/or/connection.c
+
42
−
23
View file @
3e4ccbc4
...
...
@@ -74,10 +74,14 @@ static void connection_send_socks5_connect(connection_t *conn);
static
const
char
*
proxy_type_to_string
(
int
proxy_type
);
static
int
get_proxy_type
(
void
);
/** The last IPv4 address that our network interface seemed to have been
* binding to, in host order. We use this to detect when our IP changes. */
static
uint32_t
last_interface_ip
=
0
;
/** A list of uint32_ts for addresses we've used in outgoing connections.
/** The last addresses that our network interface seemed to have been
* binding to. We use this as one way to detect when our IP changes.
*
* XXX024 We should really use the entire list of interfaces here.
**/
static
tor_addr_t
*
last_interface_ipv4
=
NULL
;
static
tor_addr_t
*
last_interface_ipv6
=
NULL
;
/** A list of tor_addr_t for addresses we've used in outgoing connections.
* Used to detect IP address changes. */
static
smartlist_t
*
outgoing_addrs
=
NULL
;
...
...
@@ -3694,47 +3698,62 @@ alloc_http_authenticator(const char *authenticator)
static
void
client_check_address_changed
(
tor_socket_t
sock
)
{
uint32_t
iface_ip
,
ip_out
;
/* host order */
struct
sockaddr_in
out_addr
;
socklen_t
out_addr_len
=
(
socklen_t
)
sizeof
(
out_addr
);
uint32_t
*
ip
;
/* host order */
struct
sockaddr_storage
out_sockaddr
;
socklen_t
out_addr_len
=
(
socklen_t
)
sizeof
(
out_sockaddr
);
tor_addr_t
out_addr
,
iface_addr
;
tor_addr_t
**
last_interface_ip_ptr
;
sa_family_t
family
;
if
(
!
last_interface_ip
)
get_interface_address
(
LOG_INFO
,
&
last_interface_ip
);
if
(
!
outgoing_addrs
)
outgoing_addrs
=
smartlist_new
();
if
(
getsockname
(
sock
,
(
struct
sockaddr
*
)
&
out_addr
,
&
out_addr_len
)
<
0
)
{
if
(
getsockname
(
sock
,
(
struct
sockaddr
*
)
&
out_
sock
addr
,
&
out_addr_len
)
<
0
)
{
int
e
=
tor_socket_errno
(
sock
);
log_warn
(
LD_NET
,
"getsockname() to check for address change failed: %s"
,
tor_socket_strerror
(
e
));
return
;
}
tor_addr_from_sockaddr
(
&
out_addr
,
(
struct
sockaddr
*
)
&
out_sockaddr
,
NULL
);
family
=
tor_addr_family
(
&
out_addr
);
if
(
family
==
AF_INET
)
last_interface_ip_ptr
=
&
last_interface_ipv4
;
else
if
(
family
==
AF_INET6
)
last_interface_ip_ptr
=
&
last_interface_ipv6
;
else
return
;
if
(
!
*
last_interface_ip_ptr
)
{
tor_addr_t
*
a
=
tor_malloc_zero
(
sizeof
(
tor_addr_t
));
if
(
get_interface_address6
(
LOG_INFO
,
family
,
a
)
==
0
)
{
*
last_interface_ip_ptr
=
a
;
}
else
{
tor_free
(
a
);
}
}
/* If we've used this address previously, we're okay. */
ip_out
=
ntohl
(
out_addr
.
sin_addr
.
s_addr
);
SMARTLIST_FOREACH
(
outgoing_addrs
,
uint32_t
*
,
ip_ptr
,
if
(
*
ip_ptr
==
ip_out
)
return
;
SMARTLIST_FOREACH
(
outgoing_addrs
,
const
tor_addr_t
*
,
a_ptr
,
if
(
tor_addr_eq
(
a_ptr
,
&
out_addr
))
return
;
);
/* Uh-oh. We haven't connected from this address before. Has the interface
* address changed? */
if
(
get_interface_address
(
LOG_INFO
,
&
iface_
ip
)
<
0
)
if
(
get_interface_address
6
(
LOG_INFO
,
family
,
&
iface_
addr
)
<
0
)
return
;
ip
=
tor_malloc
(
sizeof
(
uint32_t
));
*
ip
=
ip_out
;
if
(
iface_ip
==
last_interface_ip
)
{
if
(
tor_addr_eq
(
&
iface_addr
,
*
last_interface_ip
_ptr
)
)
{
/* Nope, it hasn't changed. Add this address to the list. */
smartlist_add
(
outgoing_addrs
,
ip
);
smartlist_add
(
outgoing_addrs
,
tor_memdup
(
&
out_addr
,
sizeof
(
tor_addr_t
))
);
}
else
{
/* The interface changed. We're a client, so we need to regenerate our
* keys. First, reset the state. */
log
(
LOG_NOTICE
,
LD_NET
,
"Our IP address has changed. Rotating keys..."
);
last_interface_ip
=
iface_
ip
;
SMARTLIST_FOREACH
(
outgoing_addrs
,
void
*
,
ip
_ptr
,
tor_free
(
ip
_ptr
));
tor_addr_copy
(
*
last_interface_ip
_ptr
,
&
iface_
addr
)
;
SMARTLIST_FOREACH
(
outgoing_addrs
,
tor_addr_t
*
,
a
_ptr
,
tor_free
(
a
_ptr
));
smartlist_clear
(
outgoing_addrs
);
smartlist_add
(
outgoing_addrs
,
ip
);
smartlist_add
(
outgoing_addrs
,
tor_memdup
(
&
out_addr
,
sizeof
(
tor_addr_t
))
);
/* Okay, now change our keys. */
ip_address_changed
(
1
);
}
...
...
@@ -4234,7 +4253,7 @@ connection_free_all(void)
SMARTLIST_FOREACH
(
conns
,
connection_t
*
,
conn
,
_connection_free
(
conn
));
if
(
outgoing_addrs
)
{
SMARTLIST_FOREACH
(
outgoing_addrs
,
void
*
,
addr
,
tor_free
(
addr
));
SMARTLIST_FOREACH
(
outgoing_addrs
,
tor_addr_t
*
,
addr
,
tor_free
(
addr
));
smartlist_free
(
outgoing_addrs
);
outgoing_addrs
=
NULL
;
}
...
...
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