-
Notifications
You must be signed in to change notification settings - Fork 0
/
resetpassword.go
100 lines (85 loc) · 2.53 KB
/
resetpassword.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
package app
import (
"crypto/rand"
"fmt"
"log"
"os"
"github.com/docker/docker/pkg/reexec"
"github.com/pkg/errors"
"github.com/rancher/rancher/pkg/api/customization/authn"
"github.com/rancher/types/apis/management.cattle.io/v3"
"github.com/urfave/cli"
"k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/labels"
"k8s.io/client-go/tools/clientcmd"
)
func RegisterPasswordResetCommand() {
reexec.Register("/usr/bin/reset-password", resetPassword)
reexec.Register("reset-password", resetPassword)
}
const (
length = 20
cost = 10
characters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-_"
)
func resetPassword() {
app := cli.NewApp()
app.Description = "Reset the password for the default admin user"
app.Action = func(c *cli.Context) error {
kubeConfigPath := os.ExpandEnv("$HOME/.kube/config")
if _, err := os.Stat(kubeConfigPath); err != nil {
kubeConfigPath = ""
}
conf, err := clientcmd.BuildConfigFromFlags("", kubeConfigPath)
if err != nil {
return fmt.Errorf("Couldn't get kubeconfig. %v", err)
}
client, err := v3.NewForConfig(*conf)
if err != nil {
return errors.Errorf("Couldn't get kubernetes client. %v", err)
}
set := labels.Set(map[string]string{"authz.management.cattle.io/bootstrapping": "admin-user"})
admins, err := client.Users("").List(v1.ListOptions{LabelSelector: set.String()})
if err != nil {
return errors.Errorf("Couldn't get default admin user. %v", err)
}
count := len(admins.Items)
if count != 1 {
var users []string
for _, u := range admins.Items {
users = append(users, u.Name)
}
return errors.Errorf("%v users were found with %v label. They are %v. Can only reset the default admin password when there is exactly one user with this label.",
count, set, users)
}
admin := admins.Items[0]
pass := generatePassword(length)
hashedPass, err := authn.HashPasswordString(string(pass))
if err != nil {
return err
}
admin.Password = hashedPass
admin.MustChangePassword = false
_, err = client.Users("").Update(&admin)
fmt.Fprintf(os.Stdout, "New password for default admin user (%v):\n%s\n", admin.Name, pass)
return err
}
err := app.Run(os.Args)
if err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
}
func generatePassword(length int) []byte {
bytes := make([]byte, length)
_, err := rand.Read(bytes)
if err != nil {
log.Fatal(err)
}
out := make([]byte, length)
for i := range out {
index := uint8(bytes[i]) % uint8(len(characters))
out[i] = characters[index]
}
return out
}