1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
17 "git.curoverse.com/arvados.git/sdk/go/arvados"
18 "git.curoverse.com/arvados.git/sdk/go/health"
19 "git.curoverse.com/arvados.git/sdk/go/httpserver"
24 Cluster *arvados.Cluster
25 NodeProfile *arvados.NodeProfile
28 handlerStack http.Handler
30 secureClient *http.Client
31 insecureClient *http.Client
36 func (h *Handler) ServeHTTP(w http.ResponseWriter, req *http.Request) {
37 h.setupOnce.Do(h.setup)
38 if req.Method != "GET" && req.Method != "HEAD" {
39 // http.ServeMux returns 301 with a cleaned path if
40 // the incoming request has a double slash. Some
41 // clients (including the Go standard library) change
42 // the request method to GET when following a 301
43 // redirect if the original method was not HEAD
44 // (RFC7231 6.4.2 specifically allows this in the case
45 // of POST). Thus "POST //foo" gets misdirected to
46 // "GET /foo". To avoid this, eliminate double slashes
47 // before passing the request to ServeMux.
48 for strings.Contains(req.URL.Path, "//") {
49 req.URL.Path = strings.Replace(req.URL.Path, "//", "/", -1)
52 h.handlerStack.ServeHTTP(w, req)
55 func (h *Handler) CheckHealth() error {
56 h.setupOnce.Do(h.setup)
57 _, _, err := findRailsAPI(h.Cluster, h.NodeProfile)
61 func neverRedirect(*http.Request, []*http.Request) error { return http.ErrUseLastResponse }
63 func (h *Handler) setup() {
64 mux := http.NewServeMux()
65 mux.Handle("/_health/", &health.Handler{
66 Token: h.Cluster.ManagementToken,
69 hs := http.NotFoundHandler()
70 hs = prepend(hs, h.proxyRailsAPI)
71 hs = h.setupProxyRemoteCluster(hs)
75 sc := *arvados.DefaultSecureClient
76 sc.Timeout = time.Duration(h.Cluster.HTTPRequestTimeout)
77 sc.CheckRedirect = neverRedirect
80 ic := *arvados.InsecureHTTPClient
81 ic.Timeout = time.Duration(h.Cluster.HTTPRequestTimeout)
82 ic.CheckRedirect = neverRedirect
83 h.insecureClient = &ic
86 Name: "arvados-controller",
87 RequestTimeout: time.Duration(h.Cluster.HTTPRequestTimeout),
91 var errDBConnection = errors.New("database connection error")
93 func (h *Handler) db(req *http.Request) (*sql.DB, error) {
95 defer h.pgdbMtx.Unlock()
100 db, err := sql.Open("postgres", h.Cluster.PostgreSQL.Connection.String())
102 httpserver.Logger(req).WithError(err).Error("postgresql connect failed")
103 return nil, errDBConnection
105 if p := h.Cluster.PostgreSQL.ConnectionPool; p > 0 {
106 db.SetMaxOpenConns(p)
108 if err := db.Ping(); err != nil {
109 httpserver.Logger(req).WithError(err).Error("postgresql connect succeeded but ping failed")
110 return nil, errDBConnection
116 type middlewareFunc func(http.ResponseWriter, *http.Request, http.Handler)
118 func prepend(next http.Handler, middleware middlewareFunc) http.Handler {
119 return http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
120 middleware(w, req, next)
124 // localClusterRequest sets up a request so it can be proxied to the
125 // local API server using proxy.Do(). Returns true if a response was
126 // written, false if not.
127 func (h *Handler) localClusterRequest(w http.ResponseWriter, req *http.Request, filter ResponseFilter) bool {
128 urlOut, insecure, err := findRailsAPI(h.Cluster, h.NodeProfile)
130 httpserver.Error(w, err.Error(), http.StatusInternalServerError)
134 Scheme: urlOut.Scheme,
137 RawPath: req.URL.RawPath,
138 RawQuery: req.URL.RawQuery,
140 client := h.secureClient
142 client = h.insecureClient
144 return h.proxy.Do(w, req, urlOut, client, filter)
147 func (h *Handler) proxyRailsAPI(w http.ResponseWriter, req *http.Request, next http.Handler) {
148 if !h.localClusterRequest(w, req, nil) && next != nil {
149 next.ServeHTTP(w, req)
153 // For now, findRailsAPI always uses the rails API running on this
155 func findRailsAPI(cluster *arvados.Cluster, np *arvados.NodeProfile) (*url.URL, bool, error) {
156 hostport := np.RailsAPI.Listen
157 if len(hostport) > 1 && hostport[0] == ':' && strings.TrimRight(hostport[1:], "0123456789") == "" {
158 // ":12345" => connect to indicated port on localhost
159 hostport = "localhost" + hostport
160 } else if _, _, err := net.SplitHostPort(hostport); err == nil {
161 // "[::1]:12345" => connect to indicated address & port
163 return nil, false, err
169 url, err := url.Parse(proto + "://" + hostport)
170 return url, np.RailsAPI.Insecure, err