serve.go 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. // Copyright 2015 The etcd Authors
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. package embed
  15. import (
  16. "crypto/tls"
  17. "io/ioutil"
  18. defaultLog "log"
  19. "net"
  20. "net/http"
  21. "strings"
  22. "github.com/coreos/etcd/etcdserver"
  23. "github.com/coreos/etcd/etcdserver/api/v3client"
  24. "github.com/coreos/etcd/etcdserver/api/v3election"
  25. "github.com/coreos/etcd/etcdserver/api/v3election/v3electionpb"
  26. v3electiongw "github.com/coreos/etcd/etcdserver/api/v3election/v3electionpb/gw"
  27. "github.com/coreos/etcd/etcdserver/api/v3lock"
  28. "github.com/coreos/etcd/etcdserver/api/v3lock/v3lockpb"
  29. v3lockgw "github.com/coreos/etcd/etcdserver/api/v3lock/v3lockpb/gw"
  30. "github.com/coreos/etcd/etcdserver/api/v3rpc"
  31. etcdservergw "github.com/coreos/etcd/etcdserver/etcdserverpb/gw"
  32. "github.com/coreos/etcd/pkg/debugutil"
  33. "github.com/cockroachdb/cmux"
  34. gw "github.com/grpc-ecosystem/grpc-gateway/runtime"
  35. "golang.org/x/net/context"
  36. "golang.org/x/net/trace"
  37. "google.golang.org/grpc"
  38. "google.golang.org/grpc/credentials"
  39. )
  40. type serveCtx struct {
  41. l net.Listener
  42. addr string
  43. secure bool
  44. insecure bool
  45. ctx context.Context
  46. cancel context.CancelFunc
  47. userHandlers map[string]http.Handler
  48. serviceRegister func(*grpc.Server)
  49. grpcServerC chan *grpc.Server
  50. }
  51. func newServeCtx() *serveCtx {
  52. ctx, cancel := context.WithCancel(context.Background())
  53. return &serveCtx{ctx: ctx, cancel: cancel, userHandlers: make(map[string]http.Handler),
  54. grpcServerC: make(chan *grpc.Server, 2), // in case sctx.insecure,sctx.secure true
  55. }
  56. }
  57. // serve accepts incoming connections on the listener l,
  58. // creating a new service goroutine for each. The service goroutines
  59. // read requests and then call handler to reply to them.
  60. func (sctx *serveCtx) serve(
  61. s *etcdserver.EtcdServer,
  62. tlscfg *tls.Config,
  63. handler http.Handler,
  64. errHandler func(error),
  65. gopts ...grpc.ServerOption) error {
  66. logger := defaultLog.New(ioutil.Discard, "etcdhttp", 0)
  67. <-s.ReadyNotify()
  68. plog.Info("ready to serve client requests")
  69. m := cmux.New(sctx.l)
  70. v3c := v3client.New(s)
  71. servElection := v3election.NewElectionServer(v3c)
  72. servLock := v3lock.NewLockServer(v3c)
  73. if sctx.insecure {
  74. gs := v3rpc.Server(s, nil, gopts...)
  75. sctx.grpcServerC <- gs
  76. v3electionpb.RegisterElectionServer(gs, servElection)
  77. v3lockpb.RegisterLockServer(gs, servLock)
  78. if sctx.serviceRegister != nil {
  79. sctx.serviceRegister(gs)
  80. }
  81. grpcl := m.Match(cmux.HTTP2())
  82. go func() { errHandler(gs.Serve(grpcl)) }()
  83. opts := []grpc.DialOption{
  84. grpc.WithInsecure(),
  85. }
  86. gwmux, err := sctx.registerGateway(opts)
  87. if err != nil {
  88. return err
  89. }
  90. httpmux := sctx.createMux(gwmux, handler)
  91. srvhttp := &http.Server{
  92. Handler: httpmux,
  93. ErrorLog: logger, // do not log user error
  94. }
  95. httpl := m.Match(cmux.HTTP1())
  96. go func() { errHandler(srvhttp.Serve(httpl)) }()
  97. plog.Noticef("serving insecure client requests on %s, this is strongly discouraged!", sctx.l.Addr().String())
  98. }
  99. if sctx.secure {
  100. gs := v3rpc.Server(s, tlscfg, gopts...)
  101. sctx.grpcServerC <- gs
  102. v3electionpb.RegisterElectionServer(gs, servElection)
  103. v3lockpb.RegisterLockServer(gs, servLock)
  104. if sctx.serviceRegister != nil {
  105. sctx.serviceRegister(gs)
  106. }
  107. handler = grpcHandlerFunc(gs, handler)
  108. dtls := tlscfg.Clone()
  109. // trust local server
  110. dtls.InsecureSkipVerify = true
  111. creds := credentials.NewTLS(dtls)
  112. opts := []grpc.DialOption{grpc.WithTransportCredentials(creds)}
  113. gwmux, err := sctx.registerGateway(opts)
  114. if err != nil {
  115. return err
  116. }
  117. tlsl := tls.NewListener(m.Match(cmux.Any()), tlscfg)
  118. // TODO: add debug flag; enable logging when debug flag is set
  119. httpmux := sctx.createMux(gwmux, handler)
  120. srv := &http.Server{
  121. Handler: httpmux,
  122. TLSConfig: tlscfg,
  123. ErrorLog: logger, // do not log user error
  124. }
  125. go func() { errHandler(srv.Serve(tlsl)) }()
  126. plog.Infof("serving client requests on %s", sctx.l.Addr().String())
  127. }
  128. close(sctx.grpcServerC)
  129. return m.Serve()
  130. }
  131. // grpcHandlerFunc returns an http.Handler that delegates to grpcServer on incoming gRPC
  132. // connections or otherHandler otherwise. Copied from cockroachdb.
  133. func grpcHandlerFunc(grpcServer *grpc.Server, otherHandler http.Handler) http.Handler {
  134. if otherHandler == nil {
  135. return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
  136. grpcServer.ServeHTTP(w, r)
  137. })
  138. }
  139. return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
  140. if r.ProtoMajor == 2 && strings.Contains(r.Header.Get("Content-Type"), "application/grpc") {
  141. grpcServer.ServeHTTP(w, r)
  142. } else {
  143. otherHandler.ServeHTTP(w, r)
  144. }
  145. })
  146. }
  147. type registerHandlerFunc func(context.Context, *gw.ServeMux, *grpc.ClientConn) error
  148. func (sctx *serveCtx) registerGateway(opts []grpc.DialOption) (*gw.ServeMux, error) {
  149. ctx := sctx.ctx
  150. conn, err := grpc.DialContext(ctx, sctx.addr, opts...)
  151. if err != nil {
  152. return nil, err
  153. }
  154. gwmux := gw.NewServeMux()
  155. handlers := []registerHandlerFunc{
  156. etcdservergw.RegisterKVHandler,
  157. etcdservergw.RegisterWatchHandler,
  158. etcdservergw.RegisterLeaseHandler,
  159. etcdservergw.RegisterClusterHandler,
  160. etcdservergw.RegisterMaintenanceHandler,
  161. etcdservergw.RegisterAuthHandler,
  162. v3lockgw.RegisterLockHandler,
  163. v3electiongw.RegisterElectionHandler,
  164. }
  165. for _, h := range handlers {
  166. if err := h(ctx, gwmux, conn); err != nil {
  167. return nil, err
  168. }
  169. }
  170. go func() {
  171. <-ctx.Done()
  172. if cerr := conn.Close(); cerr != nil {
  173. plog.Warningf("failed to close conn to %s: %v", sctx.l.Addr().String(), cerr)
  174. }
  175. }()
  176. return gwmux, nil
  177. }
  178. func (sctx *serveCtx) createMux(gwmux *gw.ServeMux, handler http.Handler) *http.ServeMux {
  179. httpmux := http.NewServeMux()
  180. for path, h := range sctx.userHandlers {
  181. httpmux.Handle(path, h)
  182. }
  183. httpmux.Handle("/v3alpha/", gwmux)
  184. if handler != nil {
  185. httpmux.Handle("/", handler)
  186. }
  187. return httpmux
  188. }
  189. func (sctx *serveCtx) registerUserHandler(s string, h http.Handler) {
  190. if sctx.userHandlers[s] != nil {
  191. plog.Warningf("path %s already registered by user handler", s)
  192. return
  193. }
  194. sctx.userHandlers[s] = h
  195. }
  196. func (sctx *serveCtx) registerPprof() {
  197. for p, h := range debugutil.PProfHandlers() {
  198. sctx.registerUserHandler(p, h)
  199. }
  200. }
  201. func (sctx *serveCtx) registerTrace() {
  202. reqf := func(w http.ResponseWriter, r *http.Request) { trace.Render(w, r, true) }
  203. sctx.registerUserHandler("/debug/requests", http.HandlerFunc(reqf))
  204. evf := func(w http.ResponseWriter, r *http.Request) { trace.RenderEvents(w, r, true) }
  205. sctx.registerUserHandler("/debug/events", http.HandlerFunc(evf))
  206. }