Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
C
Coredns
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
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
Railgun
Coredns
Commits
89dc5720
Commit
89dc5720
authored
Feb 07, 2017
by
Miek Gieben
Committed by
GitHub
Feb 07, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
And make it actually work (#508)
parent
fd4c5b57
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
23 deletions
+27
-23
middleware/proxy/google.go
middleware/proxy/google.go
+23
-19
middleware/proxy/upstream.go
middleware/proxy/upstream.go
+4
-4
No files found.
middleware/proxy/google.go
View file @
89dc5720
...
@@ -126,13 +126,7 @@ func (g *google) OnStartup(p *Proxy) error {
...
@@ -126,13 +126,7 @@ func (g *google) OnStartup(p *Proxy) error {
new
,
err
:=
g
.
bootstrapProxy
.
Lookup
(
state
,
g
.
endpoint
,
dns
.
TypeA
)
new
,
err
:=
g
.
bootstrapProxy
.
Lookup
(
state
,
g
.
endpoint
,
dns
.
TypeA
)
oldUpstream
:=
*
p
.
Upstreams
var
oldUpstream
Upstream
oldFrom
:=
""
var
oldEx
Exchanger
if
len
(
oldUpstream
)
>
0
{
oldFrom
=
oldUpstream
[
0
]
.
From
()
oldEx
=
oldUpstream
[
0
]
.
Exchanger
()
}
// ignore errors here, as we want to keep on trying.
// ignore errors here, as we want to keep on trying.
if
err
!=
nil
{
if
err
!=
nil
{
...
@@ -143,8 +137,13 @@ func (g *google) OnStartup(p *Proxy) error {
...
@@ -143,8 +137,13 @@ func (g *google) OnStartup(p *Proxy) error {
log
.
Printf
(
"[WARNING] Failed to bootstrap A records %q: %s"
,
g
.
endpoint
,
err
)
log
.
Printf
(
"[WARNING] Failed to bootstrap A records %q: %s"
,
g
.
endpoint
,
err
)
}
}
up
:=
newUpstream
(
addrs
,
oldFrom
,
oldEx
)
if
len
(
*
p
.
Upstreams
)
>
0
{
p
.
Upstreams
=
&
[]
Upstream
{
up
}
oldUpstream
=
(
*
p
.
Upstreams
)[
0
]
up
:=
newUpstream
(
addrs
,
oldUpstream
.
(
*
staticUpstream
))
p
.
Upstreams
=
&
[]
Upstream
{
up
}
}
else
{
log
.
Printf
(
"[WARNING] Failed to bootstrap upstreams %q"
,
g
.
endpoint
)
}
}
}
go
func
()
{
go
func
()
{
...
@@ -164,8 +163,11 @@ func (g *google) OnStartup(p *Proxy) error {
...
@@ -164,8 +163,11 @@ func (g *google) OnStartup(p *Proxy) error {
continue
continue
}
}
up
:=
newUpstream
(
addrs
,
oldFrom
,
oldEx
)
// TODO(miek): can this actually happen?
p
.
Upstreams
=
&
[]
Upstream
{
up
}
if
oldUpstream
!=
nil
{
up
:=
newUpstream
(
addrs
,
oldUpstream
.
(
*
staticUpstream
))
p
.
Upstreams
=
&
[]
Upstream
{
up
}
}
}
}
case
<-
g
.
quit
:
case
<-
g
.
quit
:
...
@@ -195,15 +197,17 @@ func extractAnswer(m *dns.Msg) ([]string, error) {
...
@@ -195,15 +197,17 @@ func extractAnswer(m *dns.Msg) ([]string, error) {
}
}
// newUpstream returns an upstream initialized with hosts.
// newUpstream returns an upstream initialized with hosts.
func
newUpstream
(
hosts
[]
string
,
from
string
,
ex
Exchanger
)
Upstream
{
func
newUpstream
(
hosts
[]
string
,
old
*
staticUpstream
)
Upstream
{
upstream
:=
&
staticUpstream
{
upstream
:=
&
staticUpstream
{
from
:
from
,
from
:
old
.
from
,
Hosts
:
nil
,
Hosts
:
nil
,
Policy
:
&
Random
{},
Policy
:
&
Random
{},
Spray
:
nil
,
Spray
:
nil
,
FailTimeout
:
10
*
time
.
Second
,
FailTimeout
:
10
*
time
.
Second
,
MaxFails
:
3
,
MaxFails
:
3
,
ex
:
ex
,
ex
:
old
.
ex
,
WithoutPathPrefix
:
old
.
WithoutPathPrefix
,
IgnoredSubDomains
:
old
.
IgnoredSubDomains
,
}
}
upstream
.
Hosts
=
make
([]
*
UpstreamHost
,
len
(
hosts
))
upstream
.
Hosts
=
make
([]
*
UpstreamHost
,
len
(
hosts
))
...
...
middleware/proxy/upstream.go
View file @
89dc5720
...
@@ -281,11 +281,11 @@ func (u *staticUpstream) Select() *UpstreamHost {
...
@@ -281,11 +281,11 @@ func (u *staticUpstream) Select() *UpstreamHost {
}
}
func
(
u
*
staticUpstream
)
IsAllowedDomain
(
name
string
)
bool
{
func
(
u
*
staticUpstream
)
IsAllowedDomain
(
name
string
)
bool
{
for
_
,
ignoredSubDomain
:=
range
u
.
IgnoredSubDomains
{
if
dns
.
Name
(
name
)
==
dns
.
Name
(
u
.
From
())
{
if
dns
.
Name
(
name
)
==
dns
.
Name
(
u
.
From
())
{
return
true
return
true
}
}
for
_
,
ignoredSubDomain
:=
range
u
.
IgnoredSubDomains
{
if
middleware
.
Name
(
ignoredSubDomain
)
.
Matches
(
name
)
{
if
middleware
.
Name
(
ignoredSubDomain
)
.
Matches
(
name
)
{
return
false
return
false
}
}
...
...
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