mirror of https://github.com/k3s-io/k3s
Merge pull request #1235 from ibuildthecloud/master
Fix uint64 truncation issue in dqlitepull/1243/head
commit
9421746ccf
|
@ -33,6 +33,13 @@ func (d *DQLite) Test(ctx context.Context) error {
|
|||
return nil
|
||||
}
|
||||
|
||||
func nodeIDsEqual(testID, currentID uint64) bool {
|
||||
// this is a test for a bug in v1.0.0. In future versions we don't
|
||||
// generate node ID higher than 1<<20 so this doesn't matter. But
|
||||
// basically just ignore the first 32 bits.
|
||||
return uint32(testID) == uint32(currentID)
|
||||
}
|
||||
|
||||
func (d *DQLite) Join(ctx context.Context, nodes []client.NodeInfo) error {
|
||||
if len(nodes) > 0 {
|
||||
if err := d.NodeStore.Set(ctx, nodes); err != nil {
|
||||
|
@ -51,22 +58,25 @@ func (d *DQLite) Join(ctx context.Context, nodes []client.NodeInfo) error {
|
|||
return err
|
||||
}
|
||||
|
||||
for _, testNode := range current {
|
||||
if testNode.Address == d.NodeInfo.Address {
|
||||
nodeID, err := getClusterID(false, d.DataDir)
|
||||
if err != nil {
|
||||
return errors.Wrap(err, "get cluster ID")
|
||||
}
|
||||
if testNode.ID != nodeID {
|
||||
for _, testNode := range current {
|
||||
if testNode.Address == d.NodeInfo.Address {
|
||||
if !nodeIDsEqual(testNode.ID, nodeID) {
|
||||
if err := d.node.Close(); err != nil {
|
||||
return errors.Wrap(err, "node close for id reset")
|
||||
}
|
||||
if err := writeClusterID(testNode.ID, d.DataDir); err != nil {
|
||||
return errors.Wrap(err, "restart node to reset ID")
|
||||
}
|
||||
return fmt.Errorf("reseting node ID from %d to %d, please restart", nodeID, testNode.ID)
|
||||
logrus.Fatalf("resetting node ID from %d to %d, please restart", nodeID, testNode.ID)
|
||||
}
|
||||
return nil
|
||||
} else if nodeIDsEqual(testNode.ID, nodeID) {
|
||||
deleteClusterID(d.DataDir)
|
||||
logrus.Fatalf("node ID %d is in use, please restart", nodeID)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -214,6 +214,10 @@ func writeClusterID(id uint64, dataDir string) error {
|
|||
return ioutil.WriteFile(idFile, []byte(strconv.FormatUint(id, 10)), 0644)
|
||||
}
|
||||
|
||||
func deleteClusterID(dataDir string) {
|
||||
os.Remove(filepath.Join(GetDBDir(dataDir), NodeIDFile))
|
||||
}
|
||||
|
||||
func getClusterID(initCluster bool, dataDir string) (uint64, error) {
|
||||
idFile := filepath.Join(GetDBDir(dataDir), NodeIDFile)
|
||||
content, err := ioutil.ReadFile(idFile)
|
||||
|
@ -225,7 +229,7 @@ func getClusterID(initCluster bool, dataDir string) (uint64, error) {
|
|||
|
||||
idStr := strings.TrimSpace(string(content))
|
||||
if idStr == "" {
|
||||
id := rand.Uint64()
|
||||
id := uint64(rand.Intn(1 << 20))
|
||||
if initCluster {
|
||||
id = 1
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue