forked from mirror/websocket
Various improvements to Upgrader.
- Revert back to using Subprotocols []string. The protocol negotiation using Subprotocols should meet the needs of most applications. Applications are not locked into using this negotiation. An application can pick a protocol some other way and specify the protocol using the Sec-Websocket-Protocol response header. - Parse the origin using url.Parse. This is the correct function to use when parsing a full URL. - Improve comments.
This commit is contained in:
parent
f867cb5c72
commit
df94ef6daa
5
doc.go
5
doc.go
|
@ -17,10 +17,7 @@
|
||||||
//
|
//
|
||||||
// func handler(w http.ResponseWriter, r *http.Request) {
|
// func handler(w http.ResponseWriter, r *http.Request) {
|
||||||
// conn, err := upgrader.Upgrade(w, r, nil)
|
// conn, err := upgrader.Upgrade(w, r, nil)
|
||||||
// if _, ok := err.(websocket.HandshakeError); ok {
|
// if err != nil {
|
||||||
// ... an error message already has been sent.
|
|
||||||
// return
|
|
||||||
// } else if err != nil {
|
|
||||||
// log.Println(err)
|
// log.Println(err)
|
||||||
// return
|
// return
|
||||||
// }
|
// }
|
||||||
|
|
86
server.go
86
server.go
|
@ -26,64 +26,77 @@ const (
|
||||||
defaultWriteBufferSize = 4096
|
defaultWriteBufferSize = 4096
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// Upgrader specifies parameters for upgrading an HTTP connection to a
|
||||||
|
// WebSocket connection.
|
||||||
type Upgrader struct {
|
type Upgrader struct {
|
||||||
// HandshakeTimeout specifies the duration for the handshake to complete.
|
// HandshakeTimeout specifies the duration for the handshake to complete.
|
||||||
HandshakeTimeout time.Duration
|
HandshakeTimeout time.Duration
|
||||||
|
|
||||||
// Input and output buffer sizes. If the buffer size is zero, then
|
// ReadBufferSize and WriteBufferSize specify I/O buffer sizes. If a buffer
|
||||||
// default values will be used.
|
// size is zero, then a default value of 4096 is used. The I/O buffer sizes
|
||||||
|
// do not limit the size of the messages that can be sent or received.
|
||||||
ReadBufferSize, WriteBufferSize int
|
ReadBufferSize, WriteBufferSize int
|
||||||
|
|
||||||
// NegotiateSubprotocol specifies the function to negotiate a subprotocol
|
// Subprotocols specifies the server's supported protocols in order of
|
||||||
// based on a request. If NegotiateSubprotocol is nil, then no subprotocol
|
// preference. If this field is set, then the Upgrade method negotiates a
|
||||||
// will be used.
|
// subprotocol by selecting the first match in this list with a protocol
|
||||||
NegotiateSubprotocol func(r *http.Request) (string, error)
|
// requested by the client.
|
||||||
|
Subprotocols []string
|
||||||
|
|
||||||
// Error specifies the function for generating HTTP error responses. If Error
|
// Error specifies the function for generating HTTP error responses. If Error
|
||||||
// is nil, then http.Error is used to generate the HTTP response.
|
// is nil, then http.Error is used to generate the HTTP response.
|
||||||
Error func(w http.ResponseWriter, r *http.Request, status int, reason error)
|
Error func(w http.ResponseWriter, r *http.Request, status int, reason error)
|
||||||
|
|
||||||
// CheckOrigin returns true if the request Origin header is acceptable.
|
// CheckOrigin returns true if the request Origin header is acceptable. If
|
||||||
// If CheckOrigin is nil, the host in the Origin header must match
|
// CheckOrigin is nil, the host in the Origin header must match the host of
|
||||||
// the host of the request.
|
// the request.
|
||||||
CheckOrigin func(r *http.Request) bool
|
CheckOrigin func(r *http.Request) bool
|
||||||
}
|
}
|
||||||
|
|
||||||
// Return an error depending on settings on the Upgrader
|
|
||||||
func (u *Upgrader) returnError(w http.ResponseWriter, r *http.Request, status int, reason string) (*Conn, error) {
|
func (u *Upgrader) returnError(w http.ResponseWriter, r *http.Request, status int, reason string) (*Conn, error) {
|
||||||
err := HandshakeError{reason}
|
err := HandshakeError{reason}
|
||||||
if u.Error != nil {
|
if u.Error != nil {
|
||||||
u.Error(w, r, status, err)
|
u.Error(w, r, status, err)
|
||||||
} else {
|
} else {
|
||||||
http.Error(w, reason, status)
|
http.Error(w, http.StatusText(status), status)
|
||||||
}
|
}
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check if host in Origin header matches host of request
|
// checkSameOrigin returns true if the origin is equal to the request host.
|
||||||
func (u *Upgrader) checkSameOrigin(r *http.Request) bool {
|
func checkSameOrigin(r *http.Request) bool {
|
||||||
origin := r.Header.Get("Origin")
|
origin := r.Header.Get("Origin")
|
||||||
if origin == "" {
|
if origin == "" {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
uri, err := url.ParseRequestURI(origin)
|
u, err := url.Parse(origin)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
return uri.Host == r.Host
|
return u.Host == r.Host
|
||||||
|
}
|
||||||
|
|
||||||
|
func (u *Upgrader) selectSubprotocol(r *http.Request, responseHeader http.Header) string {
|
||||||
|
if u.Subprotocols != nil {
|
||||||
|
clientProtocols := Subprotocols(r)
|
||||||
|
for _, serverProtocol := range u.Subprotocols {
|
||||||
|
for _, clientProtocol := range clientProtocols {
|
||||||
|
if clientProtocol == serverProtocol {
|
||||||
|
return clientProtocol
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else if responseHeader != nil {
|
||||||
|
return responseHeader.Get("Sec-Websocket-Protocol")
|
||||||
|
}
|
||||||
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
// Upgrade upgrades the HTTP server connection to the WebSocket protocol.
|
// Upgrade upgrades the HTTP server connection to the WebSocket protocol.
|
||||||
//
|
//
|
||||||
// The responseHeader is included in the response to the client's upgrade
|
// The responseHeader is included in the response to the client's upgrade
|
||||||
// request. Use the responseHeader to specify cookies (Set-Cookie).
|
// request. Use the responseHeader to specify cookies (Set-Cookie) and the
|
||||||
//
|
// application negotiated subprotocol (Sec-Websocket-Protocol).
|
||||||
// The connection buffers IO to the underlying network connection.
|
|
||||||
// Messages can be larger than the buffers.
|
|
||||||
//
|
|
||||||
// If the request is not a valid WebSocket handshake, then Upgrade returns an
|
|
||||||
// error of type HandshakeError. Depending on settings on the Upgrader,
|
|
||||||
// an error message already has been returned to the caller.
|
|
||||||
func (u *Upgrader) Upgrade(w http.ResponseWriter, r *http.Request, responseHeader http.Header) (*Conn, error) {
|
func (u *Upgrader) Upgrade(w http.ResponseWriter, r *http.Request, responseHeader http.Header) (*Conn, error) {
|
||||||
if values := r.Header["Sec-Websocket-Version"]; len(values) == 0 || values[0] != "13" {
|
if values := r.Header["Sec-Websocket-Version"]; len(values) == 0 || values[0] != "13" {
|
||||||
return u.returnError(w, r, http.StatusBadRequest, "websocket: version != 13")
|
return u.returnError(w, r, http.StatusBadRequest, "websocket: version != 13")
|
||||||
|
@ -99,18 +112,18 @@ func (u *Upgrader) Upgrade(w http.ResponseWriter, r *http.Request, responseHeade
|
||||||
|
|
||||||
checkOrigin := u.CheckOrigin
|
checkOrigin := u.CheckOrigin
|
||||||
if checkOrigin == nil {
|
if checkOrigin == nil {
|
||||||
checkOrigin = u.checkSameOrigin
|
checkOrigin = checkSameOrigin
|
||||||
}
|
}
|
||||||
if !checkOrigin(r) {
|
if !checkOrigin(r) {
|
||||||
return u.returnError(w, r, http.StatusForbidden, "websocket: origin not allowed")
|
return u.returnError(w, r, http.StatusForbidden, "websocket: origin not allowed")
|
||||||
}
|
}
|
||||||
|
|
||||||
var challengeKey string
|
challengeKey := r.Header.Get("Sec-Websocket-Key")
|
||||||
values := r.Header["Sec-Websocket-Key"]
|
if challengeKey == "" {
|
||||||
if len(values) == 0 || values[0] == "" {
|
|
||||||
return u.returnError(w, r, http.StatusBadRequest, "websocket: key missing or blank")
|
return u.returnError(w, r, http.StatusBadRequest, "websocket: key missing or blank")
|
||||||
}
|
}
|
||||||
challengeKey = values[0]
|
|
||||||
|
subprotocol := u.selectSubprotocol(r, responseHeader)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
netConn net.Conn
|
netConn net.Conn
|
||||||
|
@ -120,7 +133,7 @@ func (u *Upgrader) Upgrade(w http.ResponseWriter, r *http.Request, responseHeade
|
||||||
|
|
||||||
h, ok := w.(http.Hijacker)
|
h, ok := w.(http.Hijacker)
|
||||||
if !ok {
|
if !ok {
|
||||||
return nil, errors.New("websocket: response does not implement http.Hijacker")
|
return u.returnError(w, r, http.StatusInternalServerError, "websocket: response does not implement http.Hijacker")
|
||||||
}
|
}
|
||||||
var rw *bufio.ReadWriter
|
var rw *bufio.ReadWriter
|
||||||
netConn, rw, err = h.Hijack()
|
netConn, rw, err = h.Hijack()
|
||||||
|
@ -140,16 +153,7 @@ func (u *Upgrader) Upgrade(w http.ResponseWriter, r *http.Request, responseHeade
|
||||||
writeBufSize = defaultWriteBufferSize
|
writeBufSize = defaultWriteBufferSize
|
||||||
}
|
}
|
||||||
c := newConn(netConn, true, readBufSize, writeBufSize)
|
c := newConn(netConn, true, readBufSize, writeBufSize)
|
||||||
|
c.subprotocol = subprotocol
|
||||||
if u.NegotiateSubprotocol != nil {
|
|
||||||
c.subprotocol, err = u.NegotiateSubprotocol(r)
|
|
||||||
if err != nil {
|
|
||||||
netConn.Close()
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
} else if responseHeader != nil {
|
|
||||||
c.subprotocol = responseHeader.Get("Sec-Websocket-Protocol")
|
|
||||||
}
|
|
||||||
|
|
||||||
p := c.writeBuf[:0]
|
p := c.writeBuf[:0]
|
||||||
p = append(p, "HTTP/1.1 101 Switching Protocols\r\nUpgrade: websocket\r\nConnection: Upgrade\r\nSec-WebSocket-Accept: "...)
|
p = append(p, "HTTP/1.1 101 Switching Protocols\r\nUpgrade: websocket\r\nConnection: Upgrade\r\nSec-WebSocket-Accept: "...)
|
||||||
|
@ -193,6 +197,8 @@ func (u *Upgrader) Upgrade(w http.ResponseWriter, r *http.Request, responseHeade
|
||||||
|
|
||||||
// Upgrade upgrades the HTTP server connection to the WebSocket protocol.
|
// Upgrade upgrades the HTTP server connection to the WebSocket protocol.
|
||||||
//
|
//
|
||||||
|
// This function is deprecated, use websocket.Upgrader instead.
|
||||||
|
//
|
||||||
// The application is responsible for checking the request origin before
|
// The application is responsible for checking the request origin before
|
||||||
// calling Upgrade. An example implementation of the same origin policy is:
|
// calling Upgrade. An example implementation of the same origin policy is:
|
||||||
//
|
//
|
||||||
|
@ -218,8 +224,6 @@ func (u *Upgrader) Upgrade(w http.ResponseWriter, r *http.Request, responseHeade
|
||||||
// If the request is not a valid WebSocket handshake, then Upgrade returns an
|
// If the request is not a valid WebSocket handshake, then Upgrade returns an
|
||||||
// error of type HandshakeError. Applications should handle this error by
|
// error of type HandshakeError. Applications should handle this error by
|
||||||
// replying to the client with an HTTP error response.
|
// replying to the client with an HTTP error response.
|
||||||
//
|
|
||||||
// This method is deprecated, use websocket.Upgrader instead.
|
|
||||||
func Upgrade(w http.ResponseWriter, r *http.Request, responseHeader http.Header, readBufSize, writeBufSize int) (*Conn, error) {
|
func Upgrade(w http.ResponseWriter, r *http.Request, responseHeader http.Header, readBufSize, writeBufSize int) (*Conn, error) {
|
||||||
u := Upgrader{ReadBufferSize: readBufSize, WriteBufferSize: writeBufSize}
|
u := Upgrader{ReadBufferSize: readBufSize, WriteBufferSize: writeBufSize}
|
||||||
u.Error = func(w http.ResponseWriter, r *http.Request, status int, reason error) {
|
u.Error = func(w http.ResponseWriter, r *http.Request, status int, reason error) {
|
||||||
|
|
Loading…
Reference in New Issue