2015-01-16 03:29:16 +03:00
|
|
|
// Copyright 2015 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// Package buildlet contains client tools for working with a buildlet
|
|
|
|
// server.
|
2015-01-21 09:25:37 +03:00
|
|
|
package buildlet // import "golang.org/x/build/buildlet"
|
2015-01-16 03:29:16 +03:00
|
|
|
|
|
|
|
import (
|
2015-02-10 00:12:20 +03:00
|
|
|
"bufio"
|
2015-01-16 20:54:03 +03:00
|
|
|
"errors"
|
2015-01-16 03:29:16 +03:00
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"io/ioutil"
|
2015-02-03 14:09:50 +03:00
|
|
|
"net"
|
2015-01-16 03:29:16 +03:00
|
|
|
"net/http"
|
2015-01-16 20:54:03 +03:00
|
|
|
"net/url"
|
2015-02-10 15:25:40 +03:00
|
|
|
"os"
|
2015-01-16 03:29:16 +03:00
|
|
|
"strings"
|
2015-02-03 15:39:25 +03:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"golang.org/x/oauth2"
|
2015-01-16 03:29:16 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
// NewClient returns a *Client that will manipulate ipPort,
|
|
|
|
// authenticated using the provided keypair.
|
|
|
|
//
|
|
|
|
// This constructor returns immediately without testing the host or auth.
|
2015-01-16 23:59:14 +03:00
|
|
|
func NewClient(ipPort string, kp KeyPair) *Client {
|
2015-01-16 03:29:16 +03:00
|
|
|
return &Client{
|
2015-01-16 23:59:14 +03:00
|
|
|
ipPort: ipPort,
|
|
|
|
tls: kp,
|
|
|
|
password: kp.Password(),
|
|
|
|
httpClient: &http.Client{
|
|
|
|
Transport: &http.Transport{
|
2015-02-03 14:09:50 +03:00
|
|
|
Dial: defaultDialer(),
|
2015-01-16 23:59:14 +03:00
|
|
|
DialTLS: kp.tlsDialer(),
|
|
|
|
},
|
|
|
|
},
|
2015-01-16 03:29:16 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-03 14:09:50 +03:00
|
|
|
// defaultDialer returns the net/http package's default Dial function.
|
|
|
|
// Notably, this sets TCP keep-alive values, so when we kill VMs
|
|
|
|
// (whose TCP stacks stop replying, forever), we don't leak file
|
|
|
|
// descriptors for otherwise forever-stalled TCP connections.
|
|
|
|
func defaultDialer() func(network, addr string) (net.Conn, error) {
|
|
|
|
if fn := http.DefaultTransport.(*http.Transport).Dial; fn != nil {
|
|
|
|
return fn
|
|
|
|
}
|
|
|
|
return net.Dial
|
|
|
|
}
|
|
|
|
|
2015-01-16 03:29:16 +03:00
|
|
|
// A Client interacts with a single buildlet.
|
|
|
|
type Client struct {
|
2015-01-16 23:59:14 +03:00
|
|
|
ipPort string
|
|
|
|
tls KeyPair
|
|
|
|
password string // basic auth password or empty for none
|
|
|
|
httpClient *http.Client
|
2015-01-16 03:29:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// URL returns the buildlet's URL prefix, without a trailing slash.
|
|
|
|
func (c *Client) URL() string {
|
2015-01-16 23:59:14 +03:00
|
|
|
if !c.tls.IsZero() {
|
|
|
|
return "https://" + strings.TrimSuffix(c.ipPort, ":443")
|
|
|
|
}
|
|
|
|
return "http://" + strings.TrimSuffix(c.ipPort, ":80")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) do(req *http.Request) (*http.Response, error) {
|
|
|
|
if c.password != "" {
|
|
|
|
req.SetBasicAuth("gomote", c.password)
|
2015-01-16 03:29:16 +03:00
|
|
|
}
|
2015-01-16 23:59:14 +03:00
|
|
|
return c.httpClient.Do(req)
|
2015-01-16 03:29:16 +03:00
|
|
|
}
|
|
|
|
|
2015-01-20 06:43:25 +03:00
|
|
|
// doOK sends the request and expects a 200 OK response.
|
|
|
|
func (c *Client) doOK(req *http.Request) error {
|
2015-01-16 23:59:14 +03:00
|
|
|
res, err := c.do(req)
|
2015-01-16 03:29:16 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer res.Body.Close()
|
2015-01-20 06:43:25 +03:00
|
|
|
if res.StatusCode != http.StatusOK {
|
2015-01-16 03:29:16 +03:00
|
|
|
slurp, _ := ioutil.ReadAll(io.LimitReader(res.Body, 4<<10))
|
|
|
|
return fmt.Errorf("%v; body: %s", res.Status, slurp)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2015-01-16 20:54:03 +03:00
|
|
|
|
2015-01-20 06:43:25 +03:00
|
|
|
// PutTar writes files to the remote buildlet, rooted at the relative
|
|
|
|
// directory dir.
|
|
|
|
// If dir is empty, they're placed at the root of the buildlet's work directory.
|
|
|
|
// The dir is created if necessary.
|
|
|
|
// The Reader must be of a tar.gz file.
|
|
|
|
func (c *Client) PutTar(r io.Reader, dir string) error {
|
|
|
|
req, err := http.NewRequest("PUT", c.URL()+"/writetgz?dir="+url.QueryEscape(dir), r)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return c.doOK(req)
|
|
|
|
}
|
|
|
|
|
|
|
|
// PutTarFromURL tells the buildlet to download the tar.gz file from tarURL
|
|
|
|
// and write it to dir, a relative directory from the workdir.
|
|
|
|
// If dir is empty, they're placed at the root of the buildlet's work directory.
|
|
|
|
// The dir is created if necessary.
|
|
|
|
// The url must be of a tar.gz file.
|
|
|
|
func (c *Client) PutTarFromURL(tarURL, dir string) error {
|
|
|
|
form := url.Values{
|
|
|
|
"url": {tarURL},
|
|
|
|
}
|
|
|
|
req, err := http.NewRequest("POST", c.URL()+"/writetgz?dir="+url.QueryEscape(dir), strings.NewReader(form.Encode()))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
|
|
|
|
return c.doOK(req)
|
|
|
|
}
|
|
|
|
|
2015-02-10 15:25:40 +03:00
|
|
|
// Put writes the provided file to path (relative to workdir) and sets mode.
|
|
|
|
func (c *Client) Put(r io.Reader, path string, mode os.FileMode) error {
|
|
|
|
param := url.Values{
|
|
|
|
"path": {path},
|
|
|
|
"mode": {fmt.Sprint(int64(mode))},
|
|
|
|
}
|
|
|
|
req, err := http.NewRequest("PUT", c.URL()+"/write?"+param.Encode(), r)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return c.doOK(req)
|
|
|
|
}
|
|
|
|
|
2015-01-20 07:53:34 +03:00
|
|
|
// GetTar returns a .tar.gz stream of the given directory, relative to the buildlet's work dir.
|
|
|
|
// The provided dir may be empty to get everything.
|
|
|
|
func (c *Client) GetTar(dir string) (tgz io.ReadCloser, err error) {
|
|
|
|
req, err := http.NewRequest("GET", c.URL()+"/tgz?dir="+url.QueryEscape(dir), nil)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
res, err := c.do(req)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if res.StatusCode != http.StatusOK {
|
|
|
|
slurp, _ := ioutil.ReadAll(io.LimitReader(res.Body, 4<<10))
|
|
|
|
res.Body.Close()
|
|
|
|
return nil, fmt.Errorf("%v; body: %s", res.Status, slurp)
|
|
|
|
}
|
|
|
|
return res.Body, nil
|
|
|
|
}
|
|
|
|
|
2015-01-16 20:54:03 +03:00
|
|
|
// ExecOpts are options for a remote command invocation.
|
|
|
|
type ExecOpts struct {
|
|
|
|
// Output is the output of stdout and stderr.
|
|
|
|
// If nil, the output is discarded.
|
|
|
|
Output io.Writer
|
|
|
|
|
2015-02-11 03:17:46 +03:00
|
|
|
// Dir is the directory from which to execute the command.
|
|
|
|
// It is optional. If not specified, it defaults to the directory of
|
|
|
|
// the command, or the work directory if SystemLevel is set.
|
|
|
|
Dir string
|
|
|
|
|
2015-01-20 07:53:34 +03:00
|
|
|
// Args are the arguments to pass to the cmd given to Client.Exec.
|
|
|
|
Args []string
|
|
|
|
|
2015-01-22 02:15:48 +03:00
|
|
|
// ExtraEnv are KEY=VALUE pairs to append to the buildlet
|
|
|
|
// process's environment.
|
|
|
|
ExtraEnv []string
|
|
|
|
|
2015-01-20 07:53:34 +03:00
|
|
|
// SystemLevel controls whether the command is run outside of
|
|
|
|
// the buildlet's environment.
|
|
|
|
SystemLevel bool
|
|
|
|
|
2015-02-10 00:12:20 +03:00
|
|
|
// Debug, if true, instructs to the buildlet to print extra debug
|
|
|
|
// info to the output before the command begins executing.
|
|
|
|
Debug bool
|
|
|
|
|
2015-01-16 20:54:03 +03:00
|
|
|
// OnStartExec is an optional hook that runs after the 200 OK
|
|
|
|
// response from the buildlet, but before the output begins
|
|
|
|
// writing to Output.
|
|
|
|
OnStartExec func()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Exec runs cmd on the buildlet.
|
|
|
|
//
|
|
|
|
// Two errors are returned: one is whether the command succeeded
|
|
|
|
// remotely (remoteErr), and the second (execErr) is whether there
|
|
|
|
// were system errors preventing the command from being started or
|
|
|
|
// seen to completition. If execErr is non-nil, the remoteErr is
|
|
|
|
// meaningless.
|
|
|
|
func (c *Client) Exec(cmd string, opts ExecOpts) (remoteErr, execErr error) {
|
2015-01-20 07:53:34 +03:00
|
|
|
var mode string
|
|
|
|
if opts.SystemLevel {
|
|
|
|
mode = "sys"
|
|
|
|
}
|
2015-01-16 23:59:14 +03:00
|
|
|
form := url.Values{
|
2015-01-20 07:53:34 +03:00
|
|
|
"cmd": {cmd},
|
|
|
|
"mode": {mode},
|
2015-02-11 03:17:46 +03:00
|
|
|
"dir": {opts.Dir},
|
2015-01-20 07:53:34 +03:00
|
|
|
"cmdArg": opts.Args,
|
2015-01-22 02:15:48 +03:00
|
|
|
"env": opts.ExtraEnv,
|
2015-02-10 00:12:20 +03:00
|
|
|
"debug": {fmt.Sprint(opts.Debug)},
|
2015-01-16 23:59:14 +03:00
|
|
|
}
|
|
|
|
req, err := http.NewRequest("POST", c.URL()+"/exec", strings.NewReader(form.Encode()))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
|
|
|
|
res, err := c.do(req)
|
2015-01-16 20:54:03 +03:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer res.Body.Close()
|
|
|
|
if res.StatusCode != http.StatusOK {
|
|
|
|
slurp, _ := ioutil.ReadAll(io.LimitReader(res.Body, 4<<10))
|
|
|
|
return nil, fmt.Errorf("buildlet: HTTP status %v: %s", res.Status, slurp)
|
|
|
|
}
|
|
|
|
condRun(opts.OnStartExec)
|
|
|
|
|
|
|
|
// Stream the output:
|
|
|
|
out := opts.Output
|
|
|
|
if out == nil {
|
|
|
|
out = ioutil.Discard
|
|
|
|
}
|
|
|
|
if _, err := io.Copy(out, res.Body); err != nil {
|
|
|
|
return nil, fmt.Errorf("error copying response: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Don't record to the dashboard unless we heard the trailer from
|
|
|
|
// the buildlet, otherwise it was probably some unrelated error
|
|
|
|
// (like the VM being killed, or the buildlet crashing due to
|
|
|
|
// e.g. https://golang.org/issue/9309, since we require a tip
|
|
|
|
// build of the buildlet to get Trailers support)
|
|
|
|
state := res.Trailer.Get("Process-State")
|
|
|
|
if state == "" {
|
|
|
|
return nil, errors.New("missing Process-State trailer from HTTP response; buildlet built with old (<= 1.4) Go?")
|
|
|
|
}
|
|
|
|
if state != "ok" {
|
|
|
|
return errors.New(state), nil
|
|
|
|
}
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2015-01-16 23:59:14 +03:00
|
|
|
// Destroy shuts down the buildlet, destroying all state immediately.
|
|
|
|
func (c *Client) Destroy() error {
|
|
|
|
req, err := http.NewRequest("POST", c.URL()+"/halt", nil)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-02-02 15:04:07 +03:00
|
|
|
return c.doOK(req)
|
|
|
|
}
|
|
|
|
|
|
|
|
// RemoveAll deletes the provided paths, relative to the work directory.
|
|
|
|
func (c *Client) RemoveAll(paths ...string) error {
|
2015-02-10 00:12:20 +03:00
|
|
|
if len(paths) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
2015-02-02 15:04:07 +03:00
|
|
|
form := url.Values{"path": paths}
|
|
|
|
req, err := http.NewRequest("POST", c.URL()+"/removeall", strings.NewReader(form.Encode()))
|
2015-01-16 23:59:14 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-02-04 18:54:43 +03:00
|
|
|
req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
|
2015-02-02 15:04:07 +03:00
|
|
|
return c.doOK(req)
|
2015-01-16 23:59:14 +03:00
|
|
|
}
|
|
|
|
|
2015-02-03 15:39:25 +03:00
|
|
|
// DestroyVM shuts down the buildlet and destroys the VM instance.
|
|
|
|
func (c *Client) DestroyVM(ts oauth2.TokenSource, proj, zone, instance string) error {
|
|
|
|
gceErrc := make(chan error, 1)
|
|
|
|
buildletErrc := make(chan error, 1)
|
|
|
|
go func() {
|
|
|
|
gceErrc <- DestroyVM(ts, proj, zone, instance)
|
|
|
|
}()
|
|
|
|
go func() {
|
|
|
|
buildletErrc <- c.Destroy()
|
|
|
|
}()
|
|
|
|
timeout := time.NewTimer(5 * time.Second)
|
|
|
|
defer timeout.Stop()
|
|
|
|
|
|
|
|
var retErr error
|
|
|
|
var gceDone, buildletDone bool
|
|
|
|
for !gceDone || !buildletDone {
|
|
|
|
select {
|
|
|
|
case err := <-gceErrc:
|
|
|
|
if err != nil {
|
|
|
|
retErr = err
|
|
|
|
}
|
|
|
|
gceDone = true
|
|
|
|
case err := <-buildletErrc:
|
|
|
|
if err != nil {
|
|
|
|
retErr = err
|
|
|
|
}
|
|
|
|
buildletDone = true
|
|
|
|
case <-timeout.C:
|
|
|
|
e := ""
|
|
|
|
if !buildletDone {
|
|
|
|
e = "timeout asking buildlet to shut down"
|
|
|
|
}
|
|
|
|
if !gceDone {
|
|
|
|
if e != "" {
|
|
|
|
e += " and "
|
|
|
|
}
|
|
|
|
e += "timeout asking GCE to delete builder VM"
|
|
|
|
}
|
|
|
|
return errors.New(e)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return retErr
|
|
|
|
}
|
|
|
|
|
2015-02-04 18:54:43 +03:00
|
|
|
// WorkDir returns the absolute path to the buildlet work directory.
|
|
|
|
func (c *Client) WorkDir() (string, error) {
|
|
|
|
req, err := http.NewRequest("GET", c.URL()+"/workdir", nil)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
resp, err := c.do(req)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
if resp.StatusCode != http.StatusOK {
|
|
|
|
return "", errors.New(resp.Status)
|
|
|
|
}
|
|
|
|
b, err := ioutil.ReadAll(resp.Body)
|
|
|
|
resp.Body.Close()
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
return string(b), nil
|
|
|
|
}
|
|
|
|
|
2015-02-10 00:12:20 +03:00
|
|
|
// DirEntry is the information about a file on a buildlet.
|
|
|
|
type DirEntry struct {
|
|
|
|
// line is of the form "drw-rw-rw\t<name>" and then if a regular file,
|
|
|
|
// also "\t<size>\t<modtime>". in either case, without trailing newline.
|
|
|
|
// TODO: break into parsed fields?
|
|
|
|
line string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (de DirEntry) String() string {
|
|
|
|
return de.line
|
|
|
|
}
|
|
|
|
|
|
|
|
func (de DirEntry) Name() string {
|
|
|
|
f := strings.Split(de.line, "\t")
|
|
|
|
if len(f) < 2 {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
return f[1]
|
|
|
|
}
|
|
|
|
|
|
|
|
func (de DirEntry) Digest() string {
|
|
|
|
f := strings.Split(de.line, "\t")
|
|
|
|
if len(f) < 5 {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
return f[4]
|
|
|
|
}
|
|
|
|
|
|
|
|
// ListDirOpts are options for Client.ListDir.
|
|
|
|
type ListDirOpts struct {
|
|
|
|
// Recursive controls whether the directory is listed
|
|
|
|
// recursively.
|
|
|
|
Recursive bool
|
|
|
|
|
|
|
|
// Skip are the directories to skip, relative to the directory
|
|
|
|
// passed to ListDir. Each item should contain only forward
|
|
|
|
// slashes and not start or end in slashes.
|
|
|
|
Skip []string
|
|
|
|
|
|
|
|
// Digest controls whether the SHA-1 digests of regular files
|
|
|
|
// are returned.
|
|
|
|
Digest bool
|
|
|
|
}
|
|
|
|
|
|
|
|
// ListDir lists the contents of a directory.
|
|
|
|
// The fn callback is run for each entry.
|
|
|
|
func (c *Client) ListDir(dir string, opts ListDirOpts, fn func(DirEntry)) error {
|
|
|
|
param := url.Values{
|
|
|
|
"dir": {dir},
|
|
|
|
"recursive": {fmt.Sprint(opts.Recursive)},
|
|
|
|
"skip": opts.Skip,
|
|
|
|
"digest": {fmt.Sprint(opts.Digest)},
|
|
|
|
}
|
|
|
|
req, err := http.NewRequest("GET", c.URL()+"/ls?"+param.Encode(), nil)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
resp, err := c.do(req)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer resp.Body.Close()
|
|
|
|
if resp.StatusCode != http.StatusOK {
|
|
|
|
return errors.New(resp.Status)
|
|
|
|
}
|
|
|
|
sc := bufio.NewScanner(resp.Body)
|
|
|
|
for sc.Scan() {
|
|
|
|
line := strings.TrimSpace(sc.Text())
|
|
|
|
fn(DirEntry{line: line})
|
|
|
|
}
|
|
|
|
return sc.Err()
|
|
|
|
}
|
|
|
|
|
2015-01-16 20:54:03 +03:00
|
|
|
func condRun(fn func()) {
|
|
|
|
if fn != nil {
|
|
|
|
fn()
|
|
|
|
}
|
|
|
|
}
|