forked from go-zeromq/zmq4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
security.go
105 lines (83 loc) · 2.75 KB
/
security.go
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
// Copyright 2018 The go-zeromq 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 zmq4
import (
"io"
"golang.org/x/xerrors"
)
// Security is an interface for ZMTP security mechanisms
type Security interface {
// Type returns the security mechanism type.
Type() SecurityType
// Handshake implements the ZMTP security handshake according to
// this security mechanism.
// see:
// https://rfc.zeromq.org/spec:23/ZMTP/
// https://rfc.zeromq.org/spec:24/ZMTP-PLAIN/
// https://rfc.zeromq.org/spec:25/ZMTP-CURVE/
Handshake(conn *Conn, server bool) error
// Encrypt writes the encrypted form of data to w.
Encrypt(w io.Writer, data []byte) (int, error)
// Decrypt writes the decrypted form of data to w.
Decrypt(w io.Writer, data []byte) (int, error)
}
// SecurityType denotes types of ZMTP security mechanisms
type SecurityType string
const (
// NullSecurityType is an empty security mechanism
// that does no authentication nor encryption.
NullSecurity SecurityType = "NULL"
// PlainSecurity is a security mechanism that uses
// plaintext passwords. It is a reference implementation and
// should not be used to anything important.
PlainSecurity SecurityType = "PLAIN"
// CurveSecurity uses ZMQ_CURVE for authentication
// and encryption.
CurveSecurity SecurityType = "CURVE"
)
// security implements the NULL security mechanism.
type nullSecurity struct{}
// Type returns the security mechanism type.
func (nullSecurity) Type() SecurityType {
return NullSecurity
}
// Handshake implements the ZMTP security handshake according to
// this security mechanism.
// see:
// https://rfc.zeromq.org/spec:23/ZMTP/
// https://rfc.zeromq.org/spec:24/ZMTP-PLAIN/
// https://rfc.zeromq.org/spec:25/ZMTP-CURVE/
func (nullSecurity) Handshake(conn *Conn, server bool) error {
raw, err := conn.Meta.MarshalZMTP()
if err != nil {
return xerrors.Errorf("zmq4: could not marshal metadata: %w", err)
}
err = conn.SendCmd(CmdReady, raw)
if err != nil {
return xerrors.Errorf("zmq4: could not send metadata to peer: %w", err)
}
cmd, err := conn.RecvCmd()
if err != nil {
return xerrors.Errorf("zmq4: could not recv metadata from peer: %w", err)
}
if cmd.Name != CmdReady {
return ErrBadCmd
}
err = conn.Peer.Meta.UnmarshalZMTP(cmd.Body)
if err != nil {
return xerrors.Errorf("zmq4: could not unmarshal peer metadata: %w", err)
}
return nil
}
// Encrypt writes the encrypted form of data to w.
func (nullSecurity) Encrypt(w io.Writer, data []byte) (int, error) {
return w.Write(data)
}
// Decrypt writes the decrypted form of data to w.
func (nullSecurity) Decrypt(w io.Writer, data []byte) (int, error) {
return w.Write(data)
}
var (
_ Security = (*nullSecurity)(nil)
)