2015-05-14 13:05:39 -04:00
|
|
|
package plugins
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
2015-06-05 16:09:53 -04:00
|
|
|
"io"
|
2015-05-14 13:05:39 -04:00
|
|
|
"io/ioutil"
|
|
|
|
"net/http"
|
2016-03-01 20:16:40 -05:00
|
|
|
"net/url"
|
2015-05-14 13:05:39 -04:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/Sirupsen/logrus"
|
2016-03-01 20:16:40 -05:00
|
|
|
"github.com/docker/docker/pkg/plugins/transport"
|
2015-12-29 19:27:12 -05:00
|
|
|
"github.com/docker/go-connections/sockets"
|
|
|
|
"github.com/docker/go-connections/tlsconfig"
|
2015-05-14 13:05:39 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2016-03-01 20:16:40 -05:00
|
|
|
defaultTimeOut = 30
|
2015-05-14 13:05:39 -04:00
|
|
|
)
|
|
|
|
|
2015-07-25 04:35:07 -04:00
|
|
|
// NewClient creates a new plugin client (http).
|
2016-05-16 11:50:55 -04:00
|
|
|
func NewClient(addr string, tlsConfig *tlsconfig.Options) (*Client, error) {
|
2015-05-14 13:05:39 -04:00
|
|
|
tr := &http.Transport{}
|
2015-05-27 18:21:18 -04:00
|
|
|
|
2016-05-16 11:50:55 -04:00
|
|
|
if tlsConfig != nil {
|
|
|
|
c, err := tlsconfig.Client(*tlsConfig)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
tr.TLSClientConfig = c
|
2015-05-27 18:21:18 -04:00
|
|
|
}
|
|
|
|
|
2016-03-01 20:16:40 -05:00
|
|
|
u, err := url.Parse(addr)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
socket := u.Host
|
|
|
|
if socket == "" {
|
|
|
|
// valid local socket addresses have the host empty.
|
|
|
|
socket = u.Path
|
|
|
|
}
|
|
|
|
if err := sockets.ConfigureTransport(tr, u.Scheme, socket); err != nil {
|
2016-02-16 13:05:05 -05:00
|
|
|
return nil, err
|
|
|
|
}
|
2016-03-01 20:16:40 -05:00
|
|
|
scheme := httpScheme(u)
|
2015-09-22 15:54:29 -04:00
|
|
|
|
2016-03-01 20:16:40 -05:00
|
|
|
clientTransport := transport.NewHTTPTransport(tr, scheme, socket)
|
|
|
|
return NewClientWithTransport(clientTransport), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewClientWithTransport creates a new plugin client with a given transport.
|
|
|
|
func NewClientWithTransport(tr transport.Transport) *Client {
|
|
|
|
return &Client{
|
|
|
|
http: &http.Client{
|
|
|
|
Transport: tr,
|
|
|
|
},
|
|
|
|
requestFactory: tr,
|
2015-09-22 15:54:29 -04:00
|
|
|
}
|
2015-05-14 13:05:39 -04:00
|
|
|
}
|
|
|
|
|
2015-07-25 04:35:07 -04:00
|
|
|
// Client represents a plugin client.
|
2015-05-14 13:05:39 -04:00
|
|
|
type Client struct {
|
2016-03-01 20:16:40 -05:00
|
|
|
http *http.Client // http client to use
|
|
|
|
requestFactory transport.RequestFactory
|
2015-05-14 13:05:39 -04:00
|
|
|
}
|
|
|
|
|
2015-07-25 04:35:07 -04:00
|
|
|
// Call calls the specified method with the specified arguments for the plugin.
|
|
|
|
// It will retry for 30 seconds if a failure occurs when calling.
|
2015-05-14 13:05:39 -04:00
|
|
|
func (c *Client) Call(serviceMethod string, args interface{}, ret interface{}) error {
|
2015-06-05 16:09:53 -04:00
|
|
|
var buf bytes.Buffer
|
2015-12-05 02:55:50 -05:00
|
|
|
if args != nil {
|
|
|
|
if err := json.NewEncoder(&buf).Encode(args); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-06-05 16:09:53 -04:00
|
|
|
}
|
|
|
|
body, err := c.callWithRetry(serviceMethod, &buf, true)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer body.Close()
|
2015-12-05 02:55:50 -05:00
|
|
|
if ret != nil {
|
|
|
|
if err := json.NewDecoder(body).Decode(&ret); err != nil {
|
|
|
|
logrus.Errorf("%s: error reading plugin resp: %v", serviceMethod, err)
|
|
|
|
return err
|
|
|
|
}
|
2015-10-08 11:51:41 -04:00
|
|
|
}
|
|
|
|
return nil
|
2015-05-19 16:05:25 -04:00
|
|
|
}
|
|
|
|
|
2015-06-05 16:09:53 -04:00
|
|
|
// Stream calls the specified method with the specified arguments for the plugin and returns the response body
|
|
|
|
func (c *Client) Stream(serviceMethod string, args interface{}) (io.ReadCloser, error) {
|
2015-05-14 13:05:39 -04:00
|
|
|
var buf bytes.Buffer
|
|
|
|
if err := json.NewEncoder(&buf).Encode(args); err != nil {
|
2015-06-05 16:09:53 -04:00
|
|
|
return nil, err
|
2015-05-14 13:05:39 -04:00
|
|
|
}
|
2015-06-05 16:09:53 -04:00
|
|
|
return c.callWithRetry(serviceMethod, &buf, true)
|
|
|
|
}
|
2015-05-14 13:05:39 -04:00
|
|
|
|
2015-06-05 16:09:53 -04:00
|
|
|
// SendFile calls the specified method, and passes through the IO stream
|
|
|
|
func (c *Client) SendFile(serviceMethod string, data io.Reader, ret interface{}) error {
|
|
|
|
body, err := c.callWithRetry(serviceMethod, data, true)
|
2015-05-14 13:05:39 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-03-16 11:38:13 -04:00
|
|
|
defer body.Close()
|
2015-10-08 11:51:41 -04:00
|
|
|
if err := json.NewDecoder(body).Decode(&ret); err != nil {
|
|
|
|
logrus.Errorf("%s: error reading plugin resp: %v", serviceMethod, err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
2015-06-05 16:09:53 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) callWithRetry(serviceMethod string, data io.Reader, retry bool) (io.ReadCloser, error) {
|
2016-03-01 20:16:40 -05:00
|
|
|
req, err := c.requestFactory.NewRequest(serviceMethod, data)
|
2015-06-05 16:09:53 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-05-14 13:05:39 -04:00
|
|
|
|
|
|
|
var retries int
|
|
|
|
start := time.Now()
|
|
|
|
|
|
|
|
for {
|
|
|
|
resp, err := c.http.Do(req)
|
|
|
|
if err != nil {
|
2015-05-19 16:05:25 -04:00
|
|
|
if !retry {
|
2015-06-05 16:09:53 -04:00
|
|
|
return nil, err
|
2015-05-19 16:05:25 -04:00
|
|
|
}
|
|
|
|
|
2015-05-14 13:05:39 -04:00
|
|
|
timeOff := backoff(retries)
|
2015-05-19 16:05:25 -04:00
|
|
|
if abort(start, timeOff) {
|
2015-06-05 16:09:53 -04:00
|
|
|
return nil, err
|
2015-05-14 13:05:39 -04:00
|
|
|
}
|
|
|
|
retries++
|
2016-06-12 11:23:19 -04:00
|
|
|
logrus.Warnf("Unable to connect to plugin: %s%s: %v, retrying in %v", req.URL.Host, req.URL.Path, err, timeOff)
|
2015-05-14 13:05:39 -04:00
|
|
|
time.Sleep(timeOff)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if resp.StatusCode != http.StatusOK {
|
2015-12-15 11:51:48 -05:00
|
|
|
b, err := ioutil.ReadAll(resp.Body)
|
2016-02-24 20:09:51 -05:00
|
|
|
resp.Body.Close()
|
2015-05-14 13:05:39 -04:00
|
|
|
if err != nil {
|
2016-01-20 22:31:46 -05:00
|
|
|
return nil, &statusError{resp.StatusCode, serviceMethod, err.Error()}
|
2015-05-14 13:05:39 -04:00
|
|
|
}
|
2015-12-15 11:51:48 -05:00
|
|
|
|
|
|
|
// Plugins' Response(s) should have an Err field indicating what went
|
|
|
|
// wrong. Try to unmarshal into ResponseErr. Otherwise fallback to just
|
|
|
|
// return the string(body)
|
|
|
|
type responseErr struct {
|
|
|
|
Err string
|
|
|
|
}
|
|
|
|
remoteErr := responseErr{}
|
2016-01-06 11:29:40 -05:00
|
|
|
if err := json.Unmarshal(b, &remoteErr); err == nil {
|
|
|
|
if remoteErr.Err != "" {
|
2016-01-20 22:31:46 -05:00
|
|
|
return nil, &statusError{resp.StatusCode, serviceMethod, remoteErr.Err}
|
2016-01-06 11:29:40 -05:00
|
|
|
}
|
2015-12-15 11:51:48 -05:00
|
|
|
}
|
|
|
|
// old way...
|
2016-01-20 22:31:46 -05:00
|
|
|
return nil, &statusError{resp.StatusCode, serviceMethod, string(b)}
|
2015-05-14 13:05:39 -04:00
|
|
|
}
|
2015-06-05 16:09:53 -04:00
|
|
|
return resp.Body, nil
|
2015-05-14 13:05:39 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func backoff(retries int) time.Duration {
|
2015-05-19 16:05:25 -04:00
|
|
|
b, max := 1, defaultTimeOut
|
2015-05-14 13:05:39 -04:00
|
|
|
for b < max && retries > 0 {
|
|
|
|
b *= 2
|
|
|
|
retries--
|
|
|
|
}
|
|
|
|
if b > max {
|
|
|
|
b = max
|
|
|
|
}
|
2015-05-19 16:05:25 -04:00
|
|
|
return time.Duration(b) * time.Second
|
|
|
|
}
|
|
|
|
|
|
|
|
func abort(start time.Time, timeOff time.Duration) bool {
|
2015-07-09 19:31:43 -04:00
|
|
|
return timeOff+time.Since(start) >= time.Duration(defaultTimeOut)*time.Second
|
2015-05-14 13:05:39 -04:00
|
|
|
}
|
2016-03-01 20:16:40 -05:00
|
|
|
|
|
|
|
func httpScheme(u *url.URL) string {
|
|
|
|
scheme := u.Scheme
|
|
|
|
if scheme != "https" {
|
|
|
|
scheme = "http"
|
|
|
|
}
|
|
|
|
return scheme
|
|
|
|
}
|