blob: 23e6ec6e6b5d27b4861326317c659f93ffcbf33d [file] [log] [blame]
// Copyright 2019 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
//
// http://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.
// debugproxy connects to the target binary, and serves an RPC interface using
// the types in server/protocol to access and control it.
// +build linux
package main
import (
"flag"
"fmt"
"log"
"net/rpc"
"os"
"cloud.google.com/go/cmd/go-cloud-debug-agent/internal/debug/server"
)
var (
textFlag = flag.String("text", "", "file name of binary being debugged")
)
func main() {
log.SetFlags(0)
log.SetPrefix("debugproxy: ")
flag.Parse()
if *textFlag == "" {
flag.Usage()
os.Exit(2)
}
s, err := server.New(*textFlag)
if err != nil {
fmt.Printf("server.New: %v\n", err)
os.Exit(2)
}
err = rpc.Register(s)
if err != nil {
fmt.Printf("rpc.Register: %v\n", err)
os.Exit(2)
}
fmt.Println("OK")
log.Print("starting server")
rpc.ServeConn(&rwc{
os.Stdin,
os.Stdout,
})
log.Print("server finished")
}
// rwc creates a single io.ReadWriteCloser from a read side and a write side.
// It allows us to do RPC using standard in and standard out.
type rwc struct {
r *os.File
w *os.File
}
func (rwc *rwc) Read(p []byte) (int, error) {
return rwc.r.Read(p)
}
func (rwc *rwc) Write(p []byte) (int, error) {
return rwc.w.Write(p)
}
func (rwc *rwc) Close() error {
rerr := rwc.r.Close()
werr := rwc.w.Close()
if rerr != nil {
return rerr
}
return werr
}