// Copyright (c) 2012-2014 Jeremy Latt // Copyright (c) 2014-2015 Edmund Huber // Copyright (c) 2017 Daniel Oaks // released under the MIT license package irc import ( "errors" "net" "github.com/oragono/oragono/irc/modes" "github.com/oragono/oragono/irc/utils" ) var ( errBadGatewayAddress = errors.New("PROXY/WEBIRC commands are not accepted from this IP address") errBadProxyLine = errors.New("Invalid PROXY/WEBIRC command") ) const ( // https://www.haproxy.org/download/1.8/doc/proxy-protocol.txt // "a 108-byte buffer is always enough to store all the line and a trailing zero // for string processing." maxProxyLineLen = 107 ) type webircConfig struct { PasswordString string `yaml:"password"` Password []byte `yaml:"password-bytes"` Fingerprint string Hosts []string allowedNets []net.IPNet } // Populate fills out our password or fingerprint. func (wc *webircConfig) Populate() (err error) { if wc.Fingerprint == "" && wc.PasswordString == "" { err = ErrNoFingerprintOrPassword } if err == nil && wc.PasswordString != "" { wc.Password, err = decodeLegacyPasswordHash(wc.PasswordString) } if err == nil && wc.Fingerprint != "" { wc.Fingerprint, err = utils.NormalizeCertfp(wc.Fingerprint) } if err == nil { wc.allowedNets, err = utils.ParseNetList(wc.Hosts) } return err } // ApplyProxiedIP applies the given IP to the client. func (client *Client) ApplyProxiedIP(session *Session, proxiedIP net.IP, tls bool) (err error, quitMsg string) { // PROXY and WEBIRC are never accepted from a Tor listener, even if the address itself // is whitelisted. Furthermore, don't accept PROXY or WEBIRC if we already accepted // a proxied IP from any source (PROXY, WEBIRC, or X-Forwarded-For): if session.isTor || session.proxiedIP != nil { return errBadProxyLine, "" } // ensure IP is sane if proxiedIP == nil { return errBadProxyLine, "proxied IP is not valid" } proxiedIP = proxiedIP.To16() isBanned, banMsg := client.server.checkBans(proxiedIP) if isBanned { return errBanned, banMsg } // successfully added a limiter entry for the proxied IP; // remove the entry for the real IP if applicable (#197) client.server.connectionLimiter.RemoveClient(session.realIP) // given IP is sane! override the client's current IP client.server.logger.Info("connect-ip", "Accepted proxy IP for client", proxiedIP.String()) client.stateMutex.Lock() defer client.stateMutex.Unlock() client.proxiedIP = proxiedIP session.proxiedIP = proxiedIP // nickmask will be updated when the client completes registration // set tls info session.certfp = "" client.SetMode(modes.TLS, tls) return nil, "" } // handle the PROXY command: http://www.haproxy.org/download/1.8/doc/proxy-protocol.txt // PROXY must be sent as the first message in the session and has the syntax: // PROXY TCP[46] SOURCEIP DESTIP SOURCEPORT DESTPORT\r\n // unfortunately, an ipv6 SOURCEIP can start with a double colon; in this case, // the message is invalid IRC and can't be parsed normally, hence the special handling. func handleProxyCommand(server *Server, client *Client, session *Session, line string) (err error) { var quitMsg string defer func() { if err != nil { if quitMsg == "" { quitMsg = client.t("Bad or unauthorized PROXY command") } client.Quit(quitMsg, session) } }() ip, err := utils.ParseProxyLine(line) if err != nil { return err } if utils.IPInNets(client.realIP, server.Config().Server.proxyAllowedFromNets) { // assume PROXY connections are always secure err, quitMsg = client.ApplyProxiedIP(session, ip, true) return } else { // real source IP is not authorized to issue PROXY: return errBadGatewayAddress } }