This repository has been archived by the owner on Jan 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 560
/
files.go
179 lines (153 loc) · 4.01 KB
/
files.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
package release39
import (
"bytes"
"crypto/rand"
"encoding/base64"
"os"
"regexp"
"strconv"
"strings"
"text/template"
"github.com/Azure/acs-engine/pkg/openshift/certgen/release39/templates"
"github.com/Azure/acs-engine/pkg/openshift/filesystem"
"golang.org/x/crypto/bcrypt"
)
type modeinfo struct {
path *regexp.Regexp
mode os.FileMode
user string
group string
}
// These ownerships are processed in order
var ownerships = []modeinfo{
// etc/etcd directory
{path: regexp.MustCompile(`^etc/etcd$`), mode: 0755, user: "etcd", group: "etcd"},
// tmp directory
{path: regexp.MustCompile(`^tmp$`), mode: 01777, user: "root", group: "root"},
//start files
{path: regexp.MustCompile(`^etc/etcd/.*\.key$`), mode: 0600, user: "etcd", group: "etcd"},
{path: regexp.MustCompile(`^etc/etcd/.*$`), user: "etcd", group: "etcd"},
{path: regexp.MustCompile(`.*\.key$`), mode: 0600},
{path: regexp.MustCompile(`.*\.kubeconfig$`), mode: 0600},
{path: regexp.MustCompile(`^etc/origin/master/htpasswd$`), mode: 0600},
}
// GetFileInfo returns the permissions and ownership of the file if defined
func GetFileInfo(filename string) filesystem.Fileinfo {
// If filename matches a specific path then set the correct User, Group, and Mode
f := filesystem.Fileinfo{User: "root", Group: "root", Mode: 0644}
for _, owner := range ownerships {
if owner.path.MatchString(filename) {
if owner.user != "" {
f.User = owner.user
}
if owner.group != "" {
f.Group = owner.group
}
if owner.mode != 0 {
f.Mode = owner.mode
}
break
}
}
return f
}
// PrepareMasterFiles creates the shared authentication and encryption secrets
func (c *Config) PrepareMasterFiles() error {
b := make([]byte, 24)
_, err := rand.Read(b)
if err != nil {
return err
}
c.AuthSecret = base64.StdEncoding.EncodeToString(b)
_, err = rand.Read(b)
if err != nil {
return err
}
c.EncSecret = base64.StdEncoding.EncodeToString(b)
return nil
}
// WriteMasterFiles writes the templated master config
func (c *Config) WriteMasterFiles(fs filesystem.Writer) error {
// create special case directories
specialCaseDirs := map[string]filesystem.Fileinfo{
"tmp": {
User: "root",
Group: "root",
Mode: os.FileMode(01777),
},
"etc/etcd": {
Mode: os.FileMode(0755),
User: "etcd",
Group: "etcd",
},
}
for na, fi := range specialCaseDirs {
err := fs.Mkdir(na, fi)
if err != nil {
return err
}
}
for _, name := range templates.AssetNames() {
if !strings.HasPrefix(name, "master/") {
continue
}
tb := templates.MustAsset(name)
t, err := template.New("template").Funcs(template.FuncMap{
"QuoteMeta": regexp.QuoteMeta,
"Bcrypt": func(password string) (string, error) {
h, err := bcrypt.GenerateFromPassword([]byte(password), bcrypt.DefaultCost)
return string(h), err
},
"quote": strconv.Quote,
"shellQuote": func(s string) string {
return `'` + strings.Replace(s, `'`, `'\''`, -1) + `'`
},
}).Parse(string(tb))
if err != nil {
return err
}
b := &bytes.Buffer{}
err = t.Execute(b, c)
if err != nil {
return err
}
fname := strings.TrimPrefix(name, "master/")
fi := GetFileInfo(fname)
err = fs.WriteFile(fname, b.Bytes(), fi)
if err != nil {
return err
}
}
return nil
}
// WriteNodeFiles writes the templated node config
func (c *Config) WriteNodeFiles(fs filesystem.Writer) error {
for _, name := range templates.AssetNames() {
if !strings.HasPrefix(name, "node/") {
continue
}
tb := templates.MustAsset(name)
t, err := template.New("template").Funcs(template.FuncMap{
"QuoteMeta": regexp.QuoteMeta,
"quote": strconv.Quote,
"shellQuote": func(s string) string {
return `'` + strings.Replace(s, `'`, `'\''`, -1) + `'`
},
}).Parse(string(tb))
if err != nil {
return err
}
b := &bytes.Buffer{}
err = t.Execute(b, c)
if err != nil {
return err
}
fname := strings.TrimPrefix(name, "node/")
fi := GetFileInfo(fname)
err = fs.WriteFile(fname, b.Bytes(), fi)
if err != nil {
return err
}
}
return nil
}