1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540
|
// Copyright 2018 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 server defines gopls' implementation of the LSP server
// interface, [protocol.Server]. Call [New] to create an instance.
package server
import (
"context"
"crypto/rand"
"embed"
"encoding/base64"
"fmt"
"log"
"net"
"net/http"
"net/url"
"os"
paths "path"
"strconv"
"strings"
"sync"
"golang.org/x/tools/gopls/internal/cache"
"golang.org/x/tools/gopls/internal/cache/metadata"
"golang.org/x/tools/gopls/internal/golang"
"golang.org/x/tools/gopls/internal/progress"
"golang.org/x/tools/gopls/internal/protocol"
"golang.org/x/tools/gopls/internal/settings"
"golang.org/x/tools/gopls/internal/util/bug"
"golang.org/x/tools/internal/event"
)
// New creates an LSP server and binds it to handle incoming client
// messages on the supplied stream.
func New(session *cache.Session, client protocol.ClientCloser, options *settings.Options) protocol.Server {
const concurrentAnalyses = 1
// If this assignment fails to compile after a protocol
// upgrade, it means that one or more new methods need new
// stub declarations in unimplemented.go.
return &server{
diagnostics: make(map[protocol.DocumentURI]*fileDiagnostics),
watchedGlobPatterns: nil, // empty
changedFiles: make(map[protocol.DocumentURI]unit),
session: session,
client: client,
diagnosticsSema: make(chan unit, concurrentAnalyses),
progress: progress.NewTracker(client),
options: options,
viewsToDiagnose: make(map[*cache.View]uint64),
}
}
type serverState int
const (
serverCreated = serverState(iota)
serverInitializing // set once the server has received "initialize" request
serverInitialized // set once the server has received "initialized" request
serverShutDown
)
func (s serverState) String() string {
switch s {
case serverCreated:
return "created"
case serverInitializing:
return "initializing"
case serverInitialized:
return "initialized"
case serverShutDown:
return "shutDown"
}
return fmt.Sprintf("(unknown state: %d)", int(s))
}
// server implements the protocol.server interface.
type server struct {
client protocol.ClientCloser
stateMu sync.Mutex
state serverState
// notifications generated before serverInitialized
notifications []*protocol.ShowMessageParams
session *cache.Session
tempDir string
// changedFiles tracks files for which there has been a textDocument/didChange.
changedFilesMu sync.Mutex
changedFiles map[protocol.DocumentURI]unit
// folders is only valid between initialize and initialized, and holds the
// set of folders to build views for when we are ready.
// Only the valid, non-empty 'file'-scheme URIs will be added.
pendingFolders []protocol.WorkspaceFolder
// watchedGlobPatterns is the set of glob patterns that we have requested
// the client watch on disk. It will be updated as the set of directories
// that the server should watch changes.
// The map field may be reassigned but the map is immutable.
watchedGlobPatternsMu sync.Mutex
watchedGlobPatterns map[protocol.RelativePattern]unit
watchRegistrationCount int
diagnosticsMu sync.Mutex // guards map and its values
diagnostics map[protocol.DocumentURI]*fileDiagnostics
// diagnosticsSema limits the concurrency of diagnostics runs, which can be
// expensive.
diagnosticsSema chan unit
progress *progress.Tracker
// When the workspace fails to load, we show its status through a progress
// report with an error message.
criticalErrorStatusMu sync.Mutex
criticalErrorStatus *progress.WorkDone
// Track an ongoing CPU profile created with the StartProfile command and
// terminated with the StopProfile command.
ongoingProfileMu sync.Mutex
ongoingProfile *os.File // if non-nil, an ongoing profile is writing to this file
// Track most recently requested options.
optionsMu sync.Mutex
options *settings.Options
// Track the most recent completion results, for measuring completion efficacy
efficacyMu sync.Mutex
efficacyURI protocol.DocumentURI
efficacyVersion int32
efficacyItems []protocol.CompletionItem
efficacyPos protocol.Position
// Web server (for package documentation, etc) associated with this
// LSP server. Opened on demand, and closed during LSP Shutdown.
webOnce sync.Once
web *web
webErr error
// # Modification tracking and diagnostics
//
// For the purpose of tracking diagnostics, we need a monotonically
// increasing clock. Each time a change occurs on the server, this clock is
// incremented and the previous diagnostics pass is cancelled. When the
// changed is processed, the Session (via DidModifyFiles) determines which
// Views are affected by the change and these views are added to the
// viewsToDiagnose set. Then the server calls diagnoseChangedViews
// in a separate goroutine. Any Views that successfully complete their
// diagnostics are removed from the viewsToDiagnose set, provided they haven't
// been subsequently marked for re-diagnosis (as determined by the latest
// modificationID referenced by viewsToDiagnose).
//
// In this way, we enforce eventual completeness of the diagnostic set: any
// views requiring diagnosis are diagnosed, though possibly at a later point
// in time. Notably, the logic in Session.DidModifyFiles to determines if a
// view needs diagnosis considers whether any packages in the view were
// invalidated. Consider the following sequence of snapshots for a given view
// V:
//
// C1 C2
// S1 -> S2 -> S3
//
// In this case, suppose that S1 was fully type checked, and then two changes
// C1 and C2 occur in rapid succession, to a file in their package graph but
// perhaps not enclosed by V's root. In this case, the logic of
// DidModifyFiles will detect that V needs to be reloaded following C1. In
// order for our eventual consistency to be sound, we need to avoid the race
// where S2 is being diagnosed, C2 arrives, and S3 is not detected as needing
// diagnosis because the relevant package has not yet been computed in S2. To
// achieve this, we only remove V from viewsToDiagnose if the diagnosis of S2
// completes before C2 is processed, which we can confirm by checking
// S2.BackgroundContext().
modificationMu sync.Mutex
cancelPrevDiagnostics func()
viewsToDiagnose map[*cache.View]uint64 // View -> modification at which it last required diagnosis
lastModificationID uint64 // incrementing clock
}
func (s *server) WorkDoneProgressCancel(ctx context.Context, params *protocol.WorkDoneProgressCancelParams) error {
ctx, done := event.Start(ctx, "lsp.Server.workDoneProgressCancel")
defer done()
return s.progress.Cancel(params.Token)
}
// web encapsulates the web server associated with an LSP server.
// It is used for package documentation and other queries
// where HTML makes more sense than a client editor UI.
//
// Example URL:
//
// http://127.0.0.1:PORT/gopls/SECRET/...
//
// where
// - PORT is the random port number;
// - "gopls" helps the reader guess which program is the server;
// - SECRET is the 64-bit token; and
// - ... is the material part of the endpoint.
//
// Valid endpoints:
//
// open?file=%s&line=%d&col=%d - open a file
// pkg/PKGPATH?view=%s - show doc for package in a given view
// assembly?pkg=%s&view=%s&symbol=%s - show assembly of specified func symbol
// freesymbols?file=%s&range=%d:%d:%d:%d:&view=%s - show report of free symbols
type web struct {
server *http.Server
addr url.URL // "http://127.0.0.1:PORT/gopls/SECRET"
mux *http.ServeMux
}
// getWeb returns the web server associated with this
// LSP server, creating it on first request.
func (s *server) getWeb() (*web, error) {
s.webOnce.Do(func() {
s.web, s.webErr = s.initWeb()
})
return s.web, s.webErr
}
// initWeb starts the local web server through which gopls
// serves package documentation and suchlike.
//
// Clients should use [getWeb].
func (s *server) initWeb() (*web, error) {
// Use 64 random bits as the base of the URL namespace.
// This ensures that URLs are unguessable to any local
// processes that connect to the server, preventing
// exfiltration of source code.
//
// (Note: depending on the LSP client, URLs that are passed to
// it via showDocument and that result in the opening of a
// browser tab may be transiently published through the argv
// array of the open(1) or xdg-open(1) command.)
token := make([]byte, 8)
if _, err := rand.Read(token); err != nil {
return nil, fmt.Errorf("generating secret token: %v", err)
}
// Pick any free port.
listener, err := net.Listen("tcp", "127.0.0.1:0")
if err != nil {
return nil, err
}
// -- There should be no early returns after this point. --
// The root mux is not authenticated.
rootMux := http.NewServeMux()
rootMux.HandleFunc("/", func(w http.ResponseWriter, req *http.Request) {
http.Error(w, "request URI lacks authentication segment", http.StatusUnauthorized)
})
rootMux.HandleFunc("/favicon.ico", func(w http.ResponseWriter, req *http.Request) {
http.Redirect(w, req, "/assets/favicon.ico", http.StatusMovedPermanently)
})
rootMux.HandleFunc("/hang", func(w http.ResponseWriter, req *http.Request) {
// This endpoint hangs until cancelled.
// It is used by JS to detect server disconnect.
<-req.Context().Done()
})
rootMux.Handle("/assets/", http.FileServer(http.FS(assets)))
secret := "/gopls/" + base64.RawURLEncoding.EncodeToString(token)
webMux := http.NewServeMux()
rootMux.Handle(secret+"/", withPanicHandler(http.StripPrefix(secret, webMux)))
webServer := &http.Server{Addr: listener.Addr().String(), Handler: rootMux}
go func() {
// This should run until LSP Shutdown, at which point
// it will return ErrServerClosed. Any other error
// means it failed to start.
if err := webServer.Serve(listener); err != nil {
if err != http.ErrServerClosed {
log.Print(err)
}
}
}()
web := &web{
server: webServer,
addr: url.URL{Scheme: "http", Host: webServer.Addr, Path: secret},
mux: webMux,
}
// The /src handler allows the browser to request that the
// LSP client editor open a file; see web.SrcURL.
webMux.HandleFunc("/src", func(w http.ResponseWriter, req *http.Request) {
if err := req.ParseForm(); err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
uri := protocol.URIFromPath(req.Form.Get("file"))
line, _ := strconv.Atoi(req.Form.Get("line")) // 1-based
col, _ := strconv.Atoi(req.Form.Get("col")) // 1-based UTF-8
posn := protocol.Position{
Line: uint32(line - 1),
Character: uint32(col - 1), // TODO(adonovan): map to UTF-16
}
openClientEditor(req.Context(), s.client, protocol.Location{
URI: uri,
Range: protocol.Range{Start: posn, End: posn},
})
})
// The /pkg/PATH&view=... handler shows package documentation for PATH.
webMux.Handle("/pkg/", http.StripPrefix("/pkg/", http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
ctx := req.Context()
if err := req.ParseForm(); err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
// Get snapshot of specified view.
view, err := s.session.View(req.Form.Get("view"))
if err != nil {
http.Error(w, err.Error(), http.StatusNotFound)
return
}
snapshot, release, err := view.Snapshot()
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
defer release()
// Find package by path.
var found *metadata.Package
for _, mp := range snapshot.MetadataGraph().Packages {
if string(mp.PkgPath) == req.URL.Path && mp.ForTest == "" {
found = mp
break
}
}
if found == nil {
// TODO(adonovan): what should we do for external test packages?
http.Error(w, "package not found", http.StatusNotFound)
return
}
// Type-check the package and render its documentation.
pkgs, err := snapshot.TypeCheck(ctx, found.ID)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
content, err := golang.PackageDocHTML(view.ID(), pkgs[0], web)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
w.Write(content)
})))
// The /freesymbols?file=...&range=...&view=... handler shows
// free symbols referenced by the selection.
webMux.HandleFunc("/freesymbols", func(w http.ResponseWriter, req *http.Request) {
ctx := req.Context()
if err := req.ParseForm(); err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
// Get snapshot of specified view.
view, err := s.session.View(req.Form.Get("view"))
if err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
snapshot, release, err := view.Snapshot()
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
defer release()
// Get selection range and type-check.
loc := protocol.Location{
URI: protocol.DocumentURI(req.Form.Get("file")),
}
if _, err := fmt.Sscanf(req.Form.Get("range"), "%d:%d:%d:%d",
&loc.Range.Start.Line,
&loc.Range.Start.Character,
&loc.Range.End.Line,
&loc.Range.End.Character,
); err != nil {
http.Error(w, "invalid range", http.StatusInternalServerError)
return
}
pkg, pgf, err := golang.NarrowestPackageForFile(ctx, snapshot, loc.URI)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
start, end, err := pgf.RangePos(loc.Range)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
// Produce report.
html := golang.FreeSymbolsHTML(view.ID(), pkg, pgf, start, end, web)
w.Write(html)
})
// The /assembly?pkg=...&view=...&symbol=... handler shows
// the assembly of the current function.
webMux.HandleFunc("/assembly", func(w http.ResponseWriter, req *http.Request) {
ctx := req.Context()
if err := req.ParseForm(); err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
// Get parameters.
var (
viewID = req.Form.Get("view")
pkgID = metadata.PackageID(req.Form.Get("pkg"))
symbol = req.Form.Get("symbol")
)
if viewID == "" || pkgID == "" || symbol == "" {
http.Error(w, "/assembly requires view, pkg, symbol", http.StatusBadRequest)
return
}
// Get snapshot of specified view.
view, err := s.session.View(viewID)
if err != nil {
http.Error(w, err.Error(), http.StatusNotFound)
return
}
snapshot, release, err := view.Snapshot()
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
defer release()
pkgs, err := snapshot.TypeCheck(ctx, pkgID)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
pkg := pkgs[0]
// Produce report.
html, err := golang.AssemblyHTML(ctx, snapshot, pkg, symbol, web)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
w.Write(html)
})
return web, nil
}
// assets holds our static web server content.
//
//go:embed assets/*
var assets embed.FS
// SrcURL returns a /src URL that, when visited, causes the client
// editor to open the specified file/line/column (in 1-based UTF-8
// coordinates).
//
// (Rendering may generate hundreds of positions across files of many
// packages, so don't convert to LSP coordinates yet: wait until the
// URL is opened.)
func (w *web) SrcURL(filename string, line, col8 int) protocol.URI {
return w.url(
"src",
fmt.Sprintf("file=%s&line=%d&col=%d", url.QueryEscape(filename), line, col8),
"")
}
// PkgURL returns a /pkg URL for the documentation of the specified package.
// The optional fragment must be of the form "Println" or "Buffer.WriteString".
func (w *web) PkgURL(viewID string, path golang.PackagePath, fragment string) protocol.URI {
return w.url(
"pkg/"+string(path),
"view="+url.QueryEscape(viewID),
fragment)
}
// freesymbolsURL returns a /freesymbols URL for a report
// on the free symbols referenced within the selection span (loc).
func (w *web) freesymbolsURL(viewID string, loc protocol.Location) protocol.URI {
return w.url(
"freesymbols",
fmt.Sprintf("file=%s&range=%d:%d:%d:%d&view=%s",
url.QueryEscape(string(loc.URI)),
loc.Range.Start.Line,
loc.Range.Start.Character,
loc.Range.End.Line,
loc.Range.End.Character,
url.QueryEscape(viewID)),
"")
}
// assemblyURL returns the URL of an assembly listing of the specified function symbol.
func (w *web) assemblyURL(viewID, packageID, symbol string) protocol.URI {
return w.url(
"assembly",
fmt.Sprintf("view=%s&pkg=%s&symbol=%s",
url.QueryEscape(viewID),
url.QueryEscape(packageID),
url.QueryEscape(symbol)),
"")
}
// url returns a URL by joining a relative path, an (encoded) query,
// and an (unencoded) fragment onto the authenticated base URL of the
// web server.
func (w *web) url(path, query, fragment string) protocol.URI {
url2 := w.addr
url2.Path = paths.Join(url2.Path, strings.TrimPrefix(path, "/"))
url2.RawQuery = query
url2.Fragment = fragment
return protocol.URI(url2.String())
}
// withPanicHandler wraps an HTTP handler with telemetry-reporting of
// panics that would otherwise be silently recovered by the net/http
// root handler.
func withPanicHandler(h http.Handler) http.HandlerFunc {
return func(w http.ResponseWriter, req *http.Request) {
panicked := true
defer func() {
if panicked {
bug.Report("panic in HTTP handler")
}
}()
h.ServeHTTP(w, req)
panicked = false
}
}
|