Files
mandiant-gopacket/pkg/relay/https_server.go
T
psycep ce5ca7f159 module: rename to github.com/mandiant/gopacket
Fixes #6. The module was declared as `module gopacket` in go.mod,
which is not a canonical import path. External projects could not
`go get github.com/mandiant/gopacket` to use any of the 24
protocol packages as a library; the only workaround was to clone
the repo and add a `replace` directive to their own go.mod.

This commit:
- Sets `module github.com/mandiant/gopacket` in go.mod.
- Rewrites 434 import statements across 157 files from the bare
  `gopacket/...` prefix to `github.com/mandiant/gopacket/...`.

Pure mechanical change, no behavior difference. Makes the README's
library story (pkg/ directory, 24 reusable packages) actually
usable from external code.
2026-04-22 10:27:18 -05:00

163 lines
4.7 KiB
Go

// Copyright 2026 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package relay
import (
"crypto/ecdsa"
"crypto/elliptic"
"crypto/rand"
"crypto/tls"
"crypto/x509"
"crypto/x509/pkix"
"fmt"
"log"
"math/big"
"net"
"net/http"
"time"
"github.com/mandiant/gopacket/internal/build"
)
// HTTPSRelayServer wraps HTTPRelayServer with TLS.
// Reuses the same ServeHTTP handler — only the listener is TLS-wrapped.
type HTTPSRelayServer struct {
listenAddr string
config *Config
httpServer *HTTPRelayServer
tlsConfig *tls.Config
server *http.Server
listener net.Listener
}
// NewHTTPSRelayServer creates a new HTTPS relay server.
// If CertFile/KeyFile are set in config, loads them; otherwise generates a self-signed cert.
func NewHTTPSRelayServer(listenAddr string, config *Config) (*HTTPSRelayServer, error) {
var tlsCert tls.Certificate
var err error
if config.CertFile != "" && config.KeyFile != "" {
tlsCert, err = tls.LoadX509KeyPair(config.CertFile, config.KeyFile)
if err != nil {
return nil, fmt.Errorf("failed to load TLS cert/key: %v", err)
}
} else {
tlsCert, err = generateSelfSignedTLSCert(config.BindIP)
if err != nil {
return nil, fmt.Errorf("failed to generate self-signed cert: %v", err)
}
}
tlsConfig := &tls.Config{
Certificates: []tls.Certificate{tlsCert},
}
return &HTTPSRelayServer{
listenAddr: listenAddr,
config: config,
tlsConfig: tlsConfig,
}, nil
}
// Start begins listening for HTTPS connections, implements ProtocolServer.
func (s *HTTPSRelayServer) Start(resultChan chan<- AuthResult) error {
// Create the underlying HTTP relay server (for its handler and state)
s.httpServer = NewHTTPRelayServer(s.listenAddr, s.config)
s.httpServer.authCh = resultChan
ln, err := net.Listen("tcp", s.listenAddr)
if err != nil {
return fmt.Errorf("failed to listen on %s: %v", s.listenAddr, err)
}
tlsLn := tls.NewListener(ln, s.tlsConfig)
s.listener = tlsLn
s.server = &http.Server{
Handler: s.httpServer, // reuse HTTPRelayServer's ServeHTTP
ConnState: func(conn net.Conn, state http.ConnState) {
if state == http.StateClosed || state == http.StateHijacked {
s.httpServer.mu.Lock()
delete(s.httpServer.sessions, conn.RemoteAddr().String())
s.httpServer.mu.Unlock()
}
},
}
log.Printf("[*] HTTPS relay server listening on %s", s.listenAddr)
go func() {
if err := s.server.Serve(tlsLn); err != nil && err != http.ErrServerClosed {
if build.Debug {
log.Printf("[D] HTTPS relay server: serve error: %v", err)
}
}
}()
return nil
}
// Stop closes the HTTPS server, implements ProtocolServer.
func (s *HTTPSRelayServer) Stop() error {
if s.server != nil {
return s.server.Close()
}
return nil
}
// generateSelfSignedTLSCert creates a self-signed TLS certificate for the HTTPS relay server.
// RSA 2048, CN=localhost, SANs include localhost, 127.0.0.1, and the bind IP if provided.
func generateSelfSignedTLSCert(bindIP string) (tls.Certificate, error) {
key, err := ecdsa.GenerateKey(elliptic.P256(), rand.Reader)
if err != nil {
return tls.Certificate{}, fmt.Errorf("generate key: %v", err)
}
serialNumber, err := rand.Int(rand.Reader, new(big.Int).Lsh(big.NewInt(1), 128))
if err != nil {
return tls.Certificate{}, fmt.Errorf("generate serial: %v", err)
}
template := &x509.Certificate{
SerialNumber: serialNumber,
Subject: pkix.Name{
CommonName: "localhost",
},
NotBefore: time.Now().Add(-24 * time.Hour),
NotAfter: time.Now().Add(365 * 24 * time.Hour),
KeyUsage: x509.KeyUsageDigitalSignature | x509.KeyUsageKeyEncipherment,
ExtKeyUsage: []x509.ExtKeyUsage{x509.ExtKeyUsageServerAuth},
BasicConstraintsValid: true,
DNSNames: []string{"localhost"},
IPAddresses: []net.IP{net.ParseIP("127.0.0.1")},
}
if bindIP != "" {
if ip := net.ParseIP(bindIP); ip != nil {
template.IPAddresses = append(template.IPAddresses, ip)
}
}
certDER, err := x509.CreateCertificate(rand.Reader, template, template, &key.PublicKey, key)
if err != nil {
return tls.Certificate{}, fmt.Errorf("create cert: %v", err)
}
return tls.Certificate{
Certificate: [][]byte{certDER},
PrivateKey: key,
}, nil
}