-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
330 lines (282 loc) · 6.78 KB
/
main.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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
package main
import (
"fmt"
"fyne.io/fyne"
fyneapp "fyne.io/fyne/app"
"fyne.io/fyne/layout"
"fyne.io/fyne/widget"
"runtime"
"io"
"io/ioutil"
"log"
"os"
"path"
"path/filepath"
"strings"
"time"
"github.com/pjediny/mndp/mndplib"
"github.com/pkg/sftp"
"golang.org/x/crypto/ssh"
"gopkg.in/alecthomas/kingpin.v2"
)
type peerlist []string
type rootConfig struct {
rscfile string
npkfile string
debug bool
serverip string
username string
password string
statuschan chan string
}
var version string
var config rootConfig
func discoverdevices() (discovered []string) {
tick := time.Tick(10 * time.Second)
ch := make(chan *mndplib.MNDPMessage)
listener := mndplib.NewMNDPListener()
listener.Listen(ch)
for {
select {
case msg := <-ch:
// Mac address
t, err := msg.TLV(1)
if err != nil {
continue
}
_, serial := t.Value()
t, err = msg.TLV(5)
if err != nil {
continue
}
_, name := t.Value()
address := msg.Source()
discovered = append(discovered, fmt.Sprintf("%s-%s-%s", name, serial, address))
case <-tick:
return
}
}
}
func (config *rootConfig) performresetandrunconfig() error {
// SSH to see if it works
sshconfig := &ssh.ClientConfig{
User: config.username,
Auth: []ssh.AuthMethod{
ssh.Password(config.username),
},
HostKeyCallback: ssh.InsecureIgnoreHostKey(),
}
server := config.serverip + ":22"
if config.rscfile == "" {
err := fmt.Errorf("File name must not be empty")
config.statuschan <- err.Error()
log.Println(err)
return err
}
_, err := os.Stat(config.rscfile)
if os.IsNotExist(err) {
config.statuschan <- err.Error()
log.Println(err)
return err
}
// Dialing
config.statuschan <- "Dialing.."
conn, err := ssh.Dial("tcp", server, sshconfig)
if err != nil {
config.statuschan <- "unable to connect: " + err.Error()
fmt.Println(err)
return err
}
defer conn.Close()
config.statuschan <- "Uploading file"
c, err := sftp.NewClient(conn, sftp.MaxPacket(1<<15))
if err != nil {
config.statuschan <- err.Error()
log.Printf("unable to start sftp subsytem: %v", err)
return err
}
w, err := c.Create(path.Join("flash", path.Base(config.rscfile)))
if err != nil {
config.statuschan <- err.Error()
log.Println(err)
return err
}
log.Println("Opening file")
f, err := os.Open(config.rscfile)
if err != nil {
config.statuschan <- err.Error()
log.Println(err)
return err
}
_, err = io.Copy(w, f)
if err != nil {
config.statuschan <- err.Error()
log.Println(err)
return err
}
w.Close()
f.Close()
c.Close()
config.statuschan <- "Running Command "
// Connect and reset with file
sess, err := conn.NewSession()
if err != nil {
config.statuschan <- err.Error()
log.Println(err)
return err
}
si, err := sess.StdinPipe()
if err != nil {
config.statuschan <- err.Error()
log.Println(err)
return err
}
err = sess.Shell()
if err != nil {
config.statuschan <- err.Error()
log.Println(err)
return err
}
_, err = si.Write([]byte("/system reset-configuration no-defaults=yes run-after-reset=" + path.Join("flash", path.Base(config.rscfile)) + "\n"))
if err != nil {
config.statuschan <- err.Error()
log.Println(err)
return err
}
_, err = si.Write([]byte("y"))
if err != nil {
config.statuschan <- err.Error()
log.Println(err)
return err
}
sess.Wait()
config.statuschan <- "System is resetting. Done."
return nil
}
func main() {
config = rootConfig{}
// var peersraw []string
app := kingpin.New("configui", "Mesh Config UI")
app.UsageTemplate(kingpin.CompactUsageTemplate)
app.Flag("debug", "Debug on").BoolVar(&config.debug)
app.Version(version)
kingpin.MustParse(app.Parse(os.Args[1:]))
// config.peers = peerlist(peersraw)
if config.debug {
log.Printf("%+v", config)
}
// defaults and allocations
config.statuschan = make(chan string)
config.username = "admin"
config.serverip = "192.168.88.1"
// Find all rsc and firmware files
npkfiles := []string{}
rscfiles := []string{}
localdir := "."
if runtime.GOOS == "darwin" {
homedir, err := os.UserHomeDir()
if err != nil {
log.Fatal(err)
}
localdir = filepath.Join(homedir, "Downloads")
}
localfiles, _ := ioutil.ReadDir(localdir)
for _, file := range localfiles {
if file.Mode().IsRegular() {
if filepath.Ext(file.Name()) == ".rsc" {
rscfiles = append(rscfiles, file.Name())
}
if filepath.Ext(file.Name()) == ".npk" {
rscfiles = append(rscfiles, file.Name())
}
}
}
// GUI
guiapp := fyneapp.New()
w := guiapp.NewWindow("ConfigUI")
w.Resize(fyne.Size{400, 200})
statuslabel := widget.NewLabel("Searching for Devices")
go func() {
for s := range config.statuschan {
statuslabel.SetText(s)
}
}()
ipmanualentry := widget.NewEntry()
ipmanualentry.SetPlaceHolder("Router IP")
ipmanualentry.SetText(config.serverip)
antennaip := widget.NewSelect([]string{}, nil)
go func() {
a := discoverdevices()
antennaip.Options = a
config.statuschan <- "Done searching. Select Below"
}()
ipauto := widget.NewCheck("Auto-discover routers", func(checked bool) {
if !checked {
ipmanualentry.Show()
antennaip.Hide()
return
}
ipmanualentry.Hide()
antennaip.Show()
})
ipauto.SetChecked(true)
rscentry := widget.NewSelect(rscfiles, nil)
rscentry.Hide()
npkentry := widget.NewSelect(npkfiles, nil)
npkentry.Hide()
rsccheck := widget.NewCheck("Flash Config", func(checked bool) {
if !checked {
rscentry.Hide()
return
}
rscentry.Show()
})
rsccheck.SetChecked(false)
npkcheck := widget.NewCheck("Flash Firmware", func(checked bool) {
if !checked {
npkentry.Hide()
return
}
npkentry.Show()
})
npkcheck.SetChecked(false)
form := &widget.Form{}
form.Append("Status", statuslabel)
form.Append("", ipauto)
form.Append("", antennaip)
form.Append("", ipmanualentry)
form.Append("", npkcheck)
form.Append("Firmware Files", npkentry)
form.Append("", rsccheck)
form.Append("Config Files", rscentry)
startbutton := widget.NewButton("Start Configuration", func() {
// antennaip.ReadOnly = true
config.statuschan <- "Connecting.."
if ipauto.Checked {
chopped := strings.Split(antennaip.Selected, "-")[2]
config.serverip = chopped
} else {
config.serverip = ipmanualentry.Text
}
config.serverip = antennaip.Selected
config.rscfile = rscentry.Selected
config.npkfile = npkentry.Selected
config.performresetandrunconfig()
})
startbutton.Style = widget.PrimaryButton
quitbutton := widget.NewButton("Quit", func() {
guiapp.Quit()
})
buttonrow := fyne.NewContainerWithLayout(layout.NewGridLayout(3),
startbutton,
quitbutton,
)
w.SetContent(widget.NewVBox(
widget.NewLabel("ConfigUI - Source: github.com/zgiles/configui\n"),
widget.NewVBox(form),
widget.NewLabel("WARNING. Clicking Start will wipe a device, take care it is the correct device."),
buttonrow,
))
w.ShowAndRun()
// end GUI
}