-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
lock.go
225 lines (195 loc) · 6.62 KB
/
lock.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
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
/*
Copyright 2019 The Vitess Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package consultopo
import (
"context"
"fmt"
"path"
"time"
"github.com/hashicorp/consul/api"
"vitess.io/vitess/go/vt/proto/vtrpc"
"vitess.io/vitess/go/vt/vterrors"
"vitess.io/vitess/go/vt/log"
"vitess.io/vitess/go/vt/topo"
)
// consulLockDescriptor implements topo.LockDescriptor.
type consulLockDescriptor struct {
s *Server
lockPath string
lost <-chan struct{}
}
// Lock is part of the topo.Conn interface.
func (s *Server) Lock(ctx context.Context, dirPath, contents string) (topo.LockDescriptor, error) {
// We list the directory first to make sure it exists.
if _, err := s.ListDir(ctx, dirPath, false /*full*/); err != nil {
// We need to return the right error codes, like
// topo.ErrNoNode and topo.ErrInterrupted, and the
// easiest way to do this is to return convertError(err).
// It may lose some of the context, if this is an issue,
// maybe logging the error would work here.
return nil, convertError(err, dirPath)
}
return s.lock(ctx, dirPath, contents, s.lockTTL)
}
// LockWithTTL is part of the topo.Conn interface.
func (s *Server) LockWithTTL(ctx context.Context, dirPath, contents string, ttl time.Duration) (topo.LockDescriptor, error) {
// We list the directory first to make sure it exists.
if _, err := s.ListDir(ctx, dirPath, false /*full*/); err != nil {
// We need to return the right error codes, like
// topo.ErrNoNode and topo.ErrInterrupted, and the
// easiest way to do this is to return convertError(err).
// It may lose some of the context, if this is an issue,
// maybe logging the error would work here.
return nil, convertError(err, dirPath)
}
return s.lock(ctx, dirPath, contents, ttl.String())
}
// LockName is part of the topo.Conn interface.
func (s *Server) LockName(ctx context.Context, dirPath, contents string) (topo.LockDescriptor, error) {
return s.lock(ctx, dirPath, contents, topo.NamedLockTTL.String())
}
// TryLock is part of the topo.Conn interface.
func (s *Server) TryLock(ctx context.Context, dirPath, contents string) (topo.LockDescriptor, error) {
// We list all the entries under dirPath
entries, err := s.ListDir(ctx, dirPath, true)
if err != nil {
// We need to return the right error codes, like
// topo.ErrNoNode and topo.ErrInterrupted, and the
// easiest way to do this is to return convertError(err).
// It may lose some of the context, if this is an issue,
// maybe logging the error would work here.
return nil, convertError(err, dirPath)
}
// If there is a file 'lock' in it then we can assume that someone else already has a lock.
// Throw error in this case
for _, e := range entries {
if e.Name == locksFilename && e.Type == topo.TypeFile && e.Ephemeral {
return nil, topo.NewError(topo.NodeExists, fmt.Sprintf("lock already exists at path %s", dirPath))
}
}
// everything is good let's acquire the lock.
return s.lock(ctx, dirPath, contents, s.lockTTL)
}
// Lock is part of the topo.Conn interface.
func (s *Server) lock(ctx context.Context, dirPath, contents, ttl string) (topo.LockDescriptor, error) {
lockPath := path.Join(s.root, dirPath, locksFilename)
lockOpts := &api.LockOptions{
Key: lockPath,
Value: []byte(contents),
SessionOpts: &api.SessionEntry{
Name: api.DefaultLockSessionName,
TTL: api.DefaultLockSessionTTL,
},
}
lockOpts.SessionOpts.Checks = s.lockChecks
if s.lockTTL != "" {
// Override the API default with the global default from
// --topo_consul_lock_session_ttl.
lockOpts.SessionOpts.TTL = s.lockTTL
}
if ttl != "" {
// Override the global default with the one provided by the
// caller.
lockOpts.SessionOpts.TTL = ttl
}
if s.lockDelay > 0 {
lockOpts.SessionOpts.LockDelay = s.lockDelay
}
// Build the lock structure.
l, err := s.client.LockOpts(lockOpts)
if err != nil {
return nil, err
}
// Wait until we are the only ones in this client trying to
// lock that path.
s.mu.Lock()
li, ok := s.locks[lockPath]
for ok {
// Unlock, wait for something to change.
s.mu.Unlock()
select {
case <-ctx.Done():
return nil, convertError(ctx.Err(), dirPath)
case <-li.done:
}
// The original locker is gone, try to get it again
s.mu.Lock()
li, ok = s.locks[lockPath]
}
li = &lockInstance{
lock: l,
done: make(chan struct{}),
}
s.locks[lockPath] = li
s.mu.Unlock()
// We are the only ones trying to lock now.
lost, err := l.Lock(ctx.Done())
if err != nil || lost == nil {
// Failed to lock, give up our slot in locks map.
// Close the channel to unblock anyone else.
s.mu.Lock()
delete(s.locks, lockPath)
s.mu.Unlock()
close(li.done)
// Consul will return empty leaderCh with nil error if we cannot get lock before the timeout
// therefore we return a timeout error here
if lost == nil {
return nil, topo.NewError(topo.Timeout, lockPath)
}
return nil, err
}
// We got the lock, we're good.
return &consulLockDescriptor{
s: s,
lockPath: lockPath,
lost: lost,
}, nil
}
// Check is part of the topo.LockDescriptor interface.
func (ld *consulLockDescriptor) Check(ctx context.Context) error {
select {
case <-ld.lost:
return vterrors.Errorf(vtrpc.Code_INTERNAL, "lost channel closed")
default:
}
return nil
}
// Unlock is part of the topo.LockDescriptor interface.
func (ld *consulLockDescriptor) Unlock(ctx context.Context) error {
return ld.s.unlock(ctx, ld.lockPath)
}
// unlock releases a lock acquired by Lock() on the given directory.
func (s *Server) unlock(ctx context.Context, lockPath string) error {
s.mu.Lock()
li, ok := s.locks[lockPath]
s.mu.Unlock()
if !ok {
return vterrors.Errorf(vtrpc.Code_INVALID_ARGUMENT, "unlock: lock %v not held", lockPath)
}
// Try to unlock our lock. We will clean up our entry anyway.
unlockErr := li.lock.Unlock()
s.mu.Lock()
delete(s.locks, lockPath)
s.mu.Unlock()
close(li.done)
// Then try to remove the lock entirely. This will only work if
// no one else has the lock.
if err := li.lock.Destroy(); err != nil {
// If someone else has the lock, we can't remove it,
// but we don't need to.
if err != api.ErrLockInUse {
log.Warningf("failed to clean up lock file %v: %v", lockPath, err)
}
}
return unlockErr
}