mirror of
https://github.com/minio/minio.git
synced 2025-11-09 21:49:46 -05:00
lock/server: Check if the lock server itself is skewed back. (#3447)
This commit is contained in:
@@ -58,9 +58,11 @@ func (l *lockServer) removeEntry(name, uid string, lri *[]lockRequesterInfo) boo
|
||||
}
|
||||
|
||||
// Validate lock args.
|
||||
// - validate time stamp.
|
||||
// - validate jwt token.
|
||||
func (l *lockServer) validateLockArgs(args *LockArgs) error {
|
||||
curTime := time.Now().UTC()
|
||||
if curTime.Sub(args.Timestamp) > globalMaxSkewTime {
|
||||
if curTime.Sub(args.Timestamp) > globalMaxSkewTime || args.Timestamp.Sub(curTime) > globalMaxSkewTime {
|
||||
return errServerTimeMismatch
|
||||
}
|
||||
if !isRPCTokenValid(args.Token) {
|
||||
|
||||
Reference in New Issue
Block a user