Skip to content

Commit ddb8d77

Browse files
committed
Check that incoming connections are actually expected.
1 parent dd6847a commit ddb8d77

File tree

2 files changed

+22
-5
lines changed

2 files changed

+22
-5
lines changed

proxy/private_server.go

+21-4
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,12 @@ var IncomingConnectionForm = forms.Form{
133133
forms.IsString{},
134134
},
135135
},
136+
{
137+
Name: "domain",
138+
Validators: []forms.Validator{
139+
forms.IsString{},
140+
},
141+
},
136142
{
137143
Name: "_client",
138144
Validators: []forms.Validator{
@@ -162,19 +168,30 @@ func (c *PrivateServer) getAnnouncements(context *jsonrpc.Context, params *GetPr
162168
}
163169

164170
type IncomingConnectionParams struct {
171+
Domain string `json:"domain"`
165172
Endpoint string `json:"endpoint"`
166173
Token []byte `json:"token"`
167174
Client *eps.ClientInfo `json:"_client"`
168175
}
169176

170177
func (c *PrivateServer) incomingConnection(context *jsonrpc.Context, params *IncomingConnectionParams) *jsonrpc.Response {
171178

172-
data, err := json.Marshal(params.Client)
179+
found := false
180+
for _, announcement := range c.announcements {
181+
if announcement.Proxy == params.Client.Name && announcement.Domain == params.Domain {
182+
// we make sure the announcement is not expired
183+
if announcement.ExpiresAt != nil && announcement.ExpiresAt.Before(time.Now()) {
184+
continue
185+
}
186+
found = true
187+
break
188+
}
189+
}
173190

174-
if err != nil {
175-
return context.InternalError()
191+
if !found {
192+
return context.Error(404, "no matching connection found", nil)
176193
}
177-
eps.Log.Info(string(data))
194+
178195
connection := MakeProxyConnection(params.Endpoint, c.settings.InternalEndpoint, params.Token)
179196

180197
go func() {

proxy/public_server.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ func (s *PublicServer) handleTlsConnection(conn net.Conn) {
443443

444444
// we tell the internal proxy about an incoming connection
445445
request := jsonrpc.MakeRequest(fmt.Sprintf("%s.incomingConnection", announcement.Operator), "", map[string]interface{}{
446-
"hostname": hostName,
446+
"domain": hostName,
447447
"token": randomStr,
448448
"endpoint": s.settings.InternalEndpoint,
449449
})

0 commit comments

Comments
 (0)