auth.go 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. // Copyright 2010 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. package emailer
  5. import (
  6. "crypto/hmac"
  7. "crypto/md5"
  8. "errors"
  9. "fmt"
  10. )
  11. // Auth is implemented by an SMTP authentication mechanism.
  12. type Auth interface {
  13. // Start begins an authentication with a server.
  14. // It returns the name of the authentication protocol
  15. // and optionally data to include in the initial AUTH message
  16. // sent to the server.
  17. // If it returns a non-nil error, the SMTP client aborts
  18. // the authentication attempt and closes the connection.
  19. Start(server *ServerInfo) (proto string, toServer []byte, err error)
  20. // Next continues the authentication. The server has just sent
  21. // the fromServer data. If more is true, the server expects a
  22. // response, which Next should return as toServer; otherwise
  23. // Next should return toServer == nil.
  24. // If Next returns a non-nil error, the SMTP client aborts
  25. // the authentication attempt and closes the connection.
  26. Next(fromServer []byte, more bool) (toServer []byte, err error)
  27. }
  28. // ServerInfo records information about an SMTP server.
  29. type ServerInfo struct {
  30. Name string // SMTP server name
  31. TLS bool // using TLS, with valid certificate for Name
  32. Auth []string // advertised authentication mechanisms
  33. }
  34. type plainAuth struct {
  35. identity, username, password string
  36. host string
  37. }
  38. // PlainAuth returns an Auth that implements the PLAIN authentication
  39. // mechanism as defined in RFC 4616. The returned Auth uses the given
  40. // username and password to authenticate to host and act as identity.
  41. // Usually identity should be the empty string, to act as username.
  42. //
  43. // PlainAuth will only send the credentials if the connection is using TLS
  44. // or is connected to localhost. Otherwise authentication will fail with an
  45. // error, without sending the credentials.
  46. func PlainAuth(identity, username, password, host string) Auth {
  47. return &plainAuth{identity, username, password, host}
  48. }
  49. func isLocalhost(name string) bool {
  50. return name == "localhost" || name == "127.0.0.1" || name == "::1"
  51. }
  52. func (a *plainAuth) Start(server *ServerInfo) (string, []byte, error) {
  53. // Must have TLS, or else localhost server.
  54. // Note: If TLS is not true, then we can't trust ANYTHING in ServerInfo.
  55. // In particular, it doesn't matter if the server advertises PLAIN auth.
  56. // That might just be the attacker saying
  57. // "it's ok, you can trust me with your password."
  58. if !server.TLS && !isLocalhost(server.Name) {
  59. return "", nil, errors.New("unencrypted connection")
  60. }
  61. if server.Name != a.host {
  62. return "", nil, errors.New("wrong host name")
  63. }
  64. resp := []byte(a.identity + "\x00" + a.username + "\x00" + a.password)
  65. return "PLAIN", resp, nil
  66. }
  67. func (a *plainAuth) Next(fromServer []byte, more bool) ([]byte, error) {
  68. if more {
  69. // We've already sent everything.
  70. return nil, errors.New("unexpected server challenge")
  71. }
  72. return nil, nil
  73. }
  74. type cramMD5Auth struct {
  75. username, secret string
  76. }
  77. // CRAMMD5Auth returns an Auth that implements the CRAM-MD5 authentication
  78. // mechanism as defined in RFC 2195.
  79. // The returned Auth uses the given username and secret to authenticate
  80. // to the server using the challenge-response mechanism.
  81. func CRAMMD5Auth(username, secret string) Auth {
  82. return &cramMD5Auth{username, secret}
  83. }
  84. func (a *cramMD5Auth) Start(server *ServerInfo) (string, []byte, error) {
  85. return "CRAM-MD5", nil, nil
  86. }
  87. func (a *cramMD5Auth) Next(fromServer []byte, more bool) ([]byte, error) {
  88. if more {
  89. d := hmac.New(md5.New, []byte(a.secret))
  90. d.Write(fromServer)
  91. s := make([]byte, 0, d.Size())
  92. return []byte(fmt.Sprintf("%s %x", a.username, d.Sum(s))), nil
  93. }
  94. return nil, nil
  95. }