-
Notifications
You must be signed in to change notification settings - Fork 50
/
task.go
390 lines (331 loc) · 8.02 KB
/
task.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
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
package hashcatlauncher
import (
"errors"
"fmt"
"io"
"os"
"path/filepath"
"runtime"
"sort"
"strings"
"time"
"github.com/s77rt/hashcat.launcher/pkg/ansi"
"github.com/s77rt/hashcat.launcher/pkg/subprocess"
)
type Task struct {
ID string `json:"id"`
Arguments []string `json:"arguments"`
Process subprocess.Subprocess `json:"process"`
Priority int64 `json:"priority"`
CreationTime int64 `json:"creationTime"`
}
// Start() starts the task
func (task *Task) Start() error {
if task.Process.Status == subprocess.SubprocessStatusRunning {
return errors.New("Task has been started already")
}
go task.Process.Execute()
return nil
}
// Refresh() asks for a status update
func (task *Task) Refresh() error {
if task.Process.Status != subprocess.SubprocessStatusRunning {
return errors.New("Task has not been started yet")
}
if runtime.GOOS == "windows" {
task.Process.PostKey(0x53)
} else {
io.WriteString(task.Process.StdinStream, "s")
}
return nil
}
// Pause() pauses the task
func (task *Task) Pause() error {
if task.Process.Status != subprocess.SubprocessStatusRunning {
return errors.New("Task has not been started yet")
}
if runtime.GOOS == "windows" {
task.Process.PostKey(0x50)
} else {
io.WriteString(task.Process.StdinStream, "p")
}
return nil
}
// Resume() resumes the task
func (task *Task) Resume() error {
if task.Process.Status != subprocess.SubprocessStatusRunning {
return errors.New("Task has not been started yet")
}
if runtime.GOOS == "windows" {
task.Process.PostKey(0x52)
} else {
io.WriteString(task.Process.StdinStream, "r")
}
return nil
}
// Checkpoint() asks to exit on the next checkpoint
func (task *Task) Checkpoint() error {
if task.Process.Status != subprocess.SubprocessStatusRunning {
return errors.New("Task has not been started yet")
}
if runtime.GOOS == "windows" {
task.Process.PostKey(0x43)
} else {
io.WriteString(task.Process.StdinStream, "c")
}
return nil
}
// Skip() skp current guess base
func (task *Task) Skip() error {
if task.Process.Status != subprocess.SubprocessStatusRunning {
return errors.New("Task has not been started yet")
}
if runtime.GOOS == "windows" {
task.Process.PostKey(0x42)
} else {
io.WriteString(task.Process.StdinStream, "b")
}
return nil
}
// Quit() quit the task
func (task *Task) Quit() error {
if task.Process.Status != subprocess.SubprocessStatusRunning {
return errors.New("Task has not been started yet")
}
if runtime.GOOS == "windows" {
task.Process.PostKey(0x51)
} else {
io.WriteString(task.Process.StdinStream, "q")
}
return nil
}
// SwitchToRestoreMode() changes the task's arguments to use --restore
// https://hashcat.net/wiki/doku.php?id=restore
func (task *Task) SwitchToRestoreMode() error {
if task.Process.Status == subprocess.SubprocessStatusRunning {
return errors.New("Task is running")
}
task.Process.Args = []string{fmt.Sprintf("--session=%s", task.ID), "--restore"}
return nil
}
type TaskUpdate struct {
Task Task `json:"task"`
Message string `json:"message"`
Source string `json:"source"`
Timestamp int64 `json:"timestamp"`
}
func (a *App) TaskExists(taskID string) bool {
_, exists := a.Tasks[taskID]
return exists
}
func (a *App) newTaskID() (taskID string) {
for {
taskID = fmt.Sprintf("Task #%d", a.Settings.NextTaskCounter())
if !a.TaskExists(taskID) {
break
}
}
return
}
func (a *App) NewTask(args HashcatArgs, priority int64) (err error) {
task := &Task{
ID: a.newTaskID(),
CreationTime: time.Now().UnixNano(),
}
args.Session = &task.ID
task.Arguments, err = args.Build()
if err != nil {
return
}
wdir, _ := filepath.Split(a.Hashcat.BinaryFile)
task.Process = subprocess.Subprocess{
subprocess.SubprocessStatusNotStarted,
wdir,
a.Hashcat.BinaryFile,
task.Arguments,
nil,
nil,
func(s string) {
a.TaskUpdateCallback(TaskUpdate{
Task: *task,
Message: ansi.Strip(s),
Source: "stdout",
Timestamp: time.Now().UnixNano(),
})
},
func(s string) {
a.TaskUpdateCallback(TaskUpdate{
Task: *task,
Message: ansi.Strip(s),
Source: "stderr",
Timestamp: time.Now().UnixNano(),
})
},
func() {
a.TaskPreProcessCallback(TaskUpdate{
Task: *task,
Timestamp: time.Now().UnixNano(),
})
},
func() {
restoreFilePath := filepath.Join(a.HashcatDir, fmt.Sprintf("%s.restore", task.ID))
if _, err := os.Stat(restoreFilePath); err == nil {
task.SwitchToRestoreMode()
}
a.TaskPostProcessCallback(TaskUpdate{
Task: *task,
Timestamp: time.Now().UnixNano(),
})
a.StartNextTask()
},
}
task.Priority = priority
a.Tasks[task.ID] = task
a.TaskAddCallback(TaskUpdate{
Task: *task,
Timestamp: time.Now().UnixNano(),
})
if task.Priority >= 0 {
a.StartNextTask()
}
return
}
func (a *App) RestoreTask(restoreFile RestoreFile) (err error) {
_, filename := filepath.Split(restoreFile.File.Name())
task := &Task{
ID: strings.TrimSuffix(filename, RestoreFileExt),
}
if a.TaskExists(task.ID) {
err = errors.New(fmt.Sprintf("Task already exists (ID: %s)", task.ID))
return
}
task.Arguments = strings.Split(
strings.TrimSuffix(
strings.ReplaceAll(
string(restoreFile.Data.Argv),
"\r\n",
"\n",
),
"\n",
),
"\n",
)[1:]
wdir, _ := filepath.Split(a.Hashcat.BinaryFile)
task.Process = subprocess.Subprocess{
subprocess.SubprocessStatusNotStarted,
wdir,
a.Hashcat.BinaryFile,
[]string{fmt.Sprintf("--session=%s", task.ID), "--restore"},
nil,
nil,
func(s string) {
a.TaskUpdateCallback(TaskUpdate{
Task: *task,
Message: ansi.Strip(s),
Source: "stdout",
Timestamp: time.Now().UnixNano(),
})
},
func(s string) {
a.TaskUpdateCallback(TaskUpdate{
Task: *task,
Message: ansi.Strip(s),
Source: "stderr",
Timestamp: time.Now().UnixNano(),
})
},
func() {
a.TaskPreProcessCallback(TaskUpdate{
Task: *task,
Timestamp: time.Now().UnixNano(),
})
},
func() {
a.TaskPostProcessCallback(TaskUpdate{
Task: *task,
Timestamp: time.Now().UnixNano(),
})
a.StartNextTask()
},
}
task.Priority = -1
a.Tasks[task.ID] = task
a.TaskAddCallback(TaskUpdate{
Task: *task,
Timestamp: time.Now().UnixNano(),
})
if task.Priority >= 0 {
a.StartNextTask()
}
return
}
func (a *App) RestoreTasks() (err error) {
files, err := filepath.Glob(filepath.Join(a.HashcatDir, "*.restore"))
if err != nil {
return
}
for _, file := range files {
var f *os.File
f, err = os.Open(file)
if err != nil {
return
}
rf := RestoreFile{File: f}
err = rf.Unpack()
if err != nil {
return
}
err = a.RestoreTask(rf)
if err != nil {
return
}
}
return
}
// StartNextTask starts the next queued task with the highest priority
// given that the task has not been started yet and there is no other running tasks
// tasks that have a priorty less than zero are not eligible
func (a *App) StartNextTask() {
runningTasks := 0
tasks := []*Task{}
for _, task := range a.Tasks {
if task.Process.Status == subprocess.SubprocessStatusRunning {
runningTasks++
}
tasks = append(tasks, task)
}
if runningTasks > 0 {
return
}
sort.Slice(tasks, func(i, j int) bool {
if tasks[i].Priority == tasks[j].Priority {
return tasks[i].CreationTime < tasks[j].CreationTime
}
return tasks[i].Priority > tasks[j].Priority
})
for _, task := range tasks {
if task.Priority < 0 {
// since tasks are ordered by priority
// we can stop here as tasks with priority < 0 are not eligible
// for auto-start
break
}
if task.Process.Status == subprocess.SubprocessStatusNotStarted {
task.Start()
break
}
}
}
func (a *App) DeleteTask(taskID string) error {
task, ok := a.Tasks[taskID]
if !ok {
return errors.New("Task does not exist")
}
if task.Process.Status == subprocess.SubprocessStatusRunning {
return errors.New("Task is running")
}
os.Remove(filepath.Join(a.HashcatDir, fmt.Sprintf("%s.restore", task.ID)))
delete(a.Tasks, taskID)
a.TaskDeleteCallback(taskID)
return nil
}