serve.go 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  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. "io/ioutil"
  17. defaultLog "log"
  18. "net"
  19. "net/http"
  20. "strings"
  21. "github.com/coreos/etcd/etcdserver"
  22. "github.com/coreos/etcd/etcdserver/api/v3client"
  23. "github.com/coreos/etcd/etcdserver/api/v3election"
  24. "github.com/coreos/etcd/etcdserver/api/v3election/v3electionpb"
  25. v3electiongw "github.com/coreos/etcd/etcdserver/api/v3election/v3electionpb/gw"
  26. "github.com/coreos/etcd/etcdserver/api/v3lock"
  27. "github.com/coreos/etcd/etcdserver/api/v3lock/v3lockpb"
  28. v3lockgw "github.com/coreos/etcd/etcdserver/api/v3lock/v3lockpb/gw"
  29. "github.com/coreos/etcd/etcdserver/api/v3rpc"
  30. etcdservergw "github.com/coreos/etcd/etcdserver/etcdserverpb/gw"
  31. "github.com/coreos/etcd/pkg/debugutil"
  32. "github.com/coreos/etcd/pkg/transport"
  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. secure bool
  43. insecure bool
  44. ctx context.Context
  45. cancel context.CancelFunc
  46. userHandlers map[string]http.Handler
  47. serviceRegister func(*grpc.Server)
  48. grpcServerC chan *grpc.Server
  49. }
  50. func newServeCtx() *serveCtx {
  51. ctx, cancel := context.WithCancel(context.Background())
  52. return &serveCtx{ctx: ctx, cancel: cancel, userHandlers: make(map[string]http.Handler),
  53. grpcServerC: make(chan *grpc.Server, 2), // in case sctx.insecure,sctx.secure true
  54. }
  55. }
  56. // serve accepts incoming connections on the listener l,
  57. // creating a new service goroutine for each. The service goroutines
  58. // read requests and then call handler to reply to them.
  59. func (sctx *serveCtx) serve(s *etcdserver.EtcdServer, tlsinfo *transport.TLSInfo, handler http.Handler, errHandler func(error)) error {
  60. logger := defaultLog.New(ioutil.Discard, "etcdhttp", 0)
  61. <-s.ReadyNotify()
  62. plog.Info("ready to serve client requests")
  63. m := cmux.New(sctx.l)
  64. v3c := v3client.New(s)
  65. servElection := v3election.NewElectionServer(v3c)
  66. servLock := v3lock.NewLockServer(v3c)
  67. if sctx.insecure {
  68. gs := v3rpc.Server(s, nil)
  69. sctx.grpcServerC <- gs
  70. v3electionpb.RegisterElectionServer(gs, servElection)
  71. v3lockpb.RegisterLockServer(gs, servLock)
  72. if sctx.serviceRegister != nil {
  73. sctx.serviceRegister(gs)
  74. }
  75. grpcl := m.Match(cmux.HTTP2())
  76. go func() { errHandler(gs.Serve(grpcl)) }()
  77. opts := []grpc.DialOption{
  78. grpc.WithInsecure(),
  79. }
  80. gwmux, err := sctx.registerGateway(opts)
  81. if err != nil {
  82. return err
  83. }
  84. httpmux := sctx.createMux(gwmux, handler)
  85. srvhttp := &http.Server{
  86. Handler: httpmux,
  87. ErrorLog: logger, // do not log user error
  88. }
  89. httpl := m.Match(cmux.HTTP1())
  90. go func() { errHandler(srvhttp.Serve(httpl)) }()
  91. plog.Noticef("serving insecure client requests on %s, this is strongly discouraged!", sctx.l.Addr().String())
  92. }
  93. if sctx.secure {
  94. tlscfg, tlsErr := tlsinfo.ServerConfig()
  95. if tlsErr != nil {
  96. return tlsErr
  97. }
  98. gs := v3rpc.Server(s, tlscfg)
  99. sctx.grpcServerC <- gs
  100. v3electionpb.RegisterElectionServer(gs, servElection)
  101. v3lockpb.RegisterLockServer(gs, servLock)
  102. if sctx.serviceRegister != nil {
  103. sctx.serviceRegister(gs)
  104. }
  105. handler = grpcHandlerFunc(gs, handler)
  106. dtls := tlscfg.Clone()
  107. // trust local server
  108. dtls.InsecureSkipVerify = true
  109. creds := credentials.NewTLS(dtls)
  110. opts := []grpc.DialOption{grpc.WithTransportCredentials(creds)}
  111. gwmux, err := sctx.registerGateway(opts)
  112. if err != nil {
  113. return err
  114. }
  115. tlsl, lerr := transport.NewTLSListener(m.Match(cmux.Any()), tlsinfo)
  116. if lerr != nil {
  117. return lerr
  118. }
  119. // TODO: add debug flag; enable logging when debug flag is set
  120. httpmux := sctx.createMux(gwmux, handler)
  121. srv := &http.Server{
  122. Handler: httpmux,
  123. TLSConfig: tlscfg,
  124. ErrorLog: logger, // do not log user error
  125. }
  126. go func() { errHandler(srv.Serve(tlsl)) }()
  127. plog.Infof("serving client requests on %s", sctx.l.Addr().String())
  128. }
  129. close(sctx.grpcServerC)
  130. return m.Serve()
  131. }
  132. // grpcHandlerFunc returns an http.Handler that delegates to grpcServer on incoming gRPC
  133. // connections or otherHandler otherwise. Copied from cockroachdb.
  134. func grpcHandlerFunc(grpcServer *grpc.Server, otherHandler http.Handler) http.Handler {
  135. if otherHandler == nil {
  136. return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
  137. grpcServer.ServeHTTP(w, r)
  138. })
  139. }
  140. return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
  141. if r.ProtoMajor == 2 && strings.Contains(r.Header.Get("Content-Type"), "application/grpc") {
  142. grpcServer.ServeHTTP(w, r)
  143. } else {
  144. otherHandler.ServeHTTP(w, r)
  145. }
  146. })
  147. }
  148. type registerHandlerFunc func(context.Context, *gw.ServeMux, *grpc.ClientConn) error
  149. func (sctx *serveCtx) registerGateway(opts []grpc.DialOption) (*gw.ServeMux, error) {
  150. ctx := sctx.ctx
  151. conn, err := grpc.DialContext(ctx, sctx.l.Addr().String(), opts...)
  152. if err != nil {
  153. return nil, err
  154. }
  155. gwmux := gw.NewServeMux()
  156. handlers := []registerHandlerFunc{
  157. etcdservergw.RegisterKVHandler,
  158. etcdservergw.RegisterWatchHandler,
  159. etcdservergw.RegisterLeaseHandler,
  160. etcdservergw.RegisterClusterHandler,
  161. etcdservergw.RegisterMaintenanceHandler,
  162. etcdservergw.RegisterAuthHandler,
  163. v3lockgw.RegisterLockHandler,
  164. v3electiongw.RegisterElectionHandler,
  165. }
  166. for _, h := range handlers {
  167. if err := h(ctx, gwmux, conn); err != nil {
  168. return nil, err
  169. }
  170. }
  171. go func() {
  172. <-ctx.Done()
  173. if cerr := conn.Close(); cerr != nil {
  174. plog.Warningf("failed to close conn to %s: %v", sctx.l.Addr().String(), cerr)
  175. }
  176. }()
  177. return gwmux, nil
  178. }
  179. func (sctx *serveCtx) createMux(gwmux *gw.ServeMux, handler http.Handler) *http.ServeMux {
  180. httpmux := http.NewServeMux()
  181. for path, h := range sctx.userHandlers {
  182. httpmux.Handle(path, h)
  183. }
  184. httpmux.Handle("/v3alpha/", gwmux)
  185. if handler != nil {
  186. httpmux.Handle("/", handler)
  187. }
  188. return httpmux
  189. }
  190. func (sctx *serveCtx) registerUserHandler(s string, h http.Handler) {
  191. if sctx.userHandlers[s] != nil {
  192. plog.Warningf("path %s already registered by user handler", s)
  193. return
  194. }
  195. sctx.userHandlers[s] = h
  196. }
  197. func (sctx *serveCtx) registerPprof() {
  198. for p, h := range debugutil.PProfHandlers() {
  199. sctx.registerUserHandler(p, h)
  200. }
  201. }
  202. func (sctx *serveCtx) registerTrace() {
  203. reqf := func(w http.ResponseWriter, r *http.Request) { trace.Render(w, r, true) }
  204. sctx.registerUserHandler("/debug/requests", http.HandlerFunc(reqf))
  205. evf := func(w http.ResponseWriter, r *http.Request) { trace.RenderEvents(w, r, true) }
  206. sctx.registerUserHandler("/debug/events", http.HandlerFunc(evf))
  207. }