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
a8a862c9
Commit
a8a862c9
authored
12 years ago
by
George Kadianakis
Browse files
Options
Downloads
Patches
Plain Diff
Ignore unknown lines from managed proxies.
parent
f00a8b43
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/bug5910
+4
-0
4 additions, 0 deletions
changes/bug5910
src/or/transports.c
+2
-11
2 additions, 11 deletions
src/or/transports.c
with
6 additions
and
11 deletions
changes/bug5910
0 → 100644
+
4
−
0
View file @
a8a862c9
o Minor bugfixes:
- Don't abort the managed proxy protocol if the managed proxy
sends us an unrecognized line; ignore it instead. Fixes bug
5910; bugfix on 0.2.3.9-alpha.
This diff is collapsed.
Click to expand it.
src/or/transports.c
+
2
−
11
View file @
a8a862c9
...
...
@@ -119,10 +119,6 @@ static INLINE void free_execve_args(char **arg);
#define PROTO_CMETHODS_DONE "CMETHODS DONE"
#define PROTO_SMETHODS_DONE "SMETHODS DONE"
/* The smallest valid managed proxy protocol line that can
appear. It's the size of "VERSION 1" */
#define SMALLEST_MANAGED_LINE_SIZE 9
/** Number of environment variables for managed proxy clients/servers. */
#define ENVIRON_SIZE_CLIENT 3
#define ENVIRON_SIZE_SERVER 7
/* XXX known to be too high, but that's ok */
...
...
@@ -633,12 +629,6 @@ handle_proxy_line(const char *line, managed_proxy_t *mp)
log_info
(
LD_GENERAL
,
"Got a line from managed proxy '%s': (%s)"
,
mp
->
argv
[
0
],
line
);
if
(
strlen
(
line
)
<
SMALLEST_MANAGED_LINE_SIZE
)
{
log_warn
(
LD_GENERAL
,
"Managed proxy configuration line is too small. "
"Discarding"
);
goto
err
;
}
if
(
!
strcmpstart
(
line
,
PROTO_ENV_ERROR
))
{
if
(
mp
->
conf_state
!=
PT_PROTO_LAUNCHED
)
goto
err
;
...
...
@@ -712,7 +702,8 @@ handle_proxy_line(const char *line, managed_proxy_t *mp)
return
;
}
log_warn
(
LD_CONFIG
,
"Unknown line received by managed proxy. (%s)"
,
line
);
log_notice
(
LD_GENERAL
,
"Unknown line received by managed proxy (%s)."
,
line
);
return
;
err:
mp
->
conf_state
=
PT_PROTO_BROKEN
;
...
...
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