forked from Velocidex/velociraptor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
magefile.go
453 lines (376 loc) · 9.44 KB
/
magefile.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
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
//+build mage
/*
Velociraptor - Hunting Evil
Copyright (C) 2019 Velocidex Innovations.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package main
import (
"fmt"
"io/ioutil"
"os"
"path/filepath"
"runtime"
"strings"
"time"
"github.com/magefile/mage/mg"
"github.com/magefile/mage/sh"
"www.velocidex.com/golang/velociraptor/constants"
)
var (
assets = map[string]string{
"artifacts/b0x.yaml": "artifacts/assets/ab0x.go",
"config/b0x.yaml": "config/ab0x.go",
"gui/velociraptor/b0x.yaml": "gui/velociraptor/ab0x.go",
}
// apt-get install gcc-mingw-w64-x86-64
mingw_xcompiler = "x86_64-w64-mingw32-gcc"
// apt-get install gcc-mingw-w64
mingw_xcompiler_32 = "i686-w64-mingw32-gcc"
name = "velociraptor"
version = "v" + constants.VERSION
base_tags = " server_vql extras "
)
type Builder struct {
goos string
arch string
extension string
extra_tags string
extra_flags []string
disable_cgo bool
// Set to override the output filename.
filename string
}
func (self *Builder) Name() string {
if self.filename != "" {
return self.filename
}
if self.goos == "windows" {
self.extension = ".exe"
}
name := fmt.Sprintf("%s-%s-%s-%s%s",
name, version,
self.goos,
self.arch,
self.extension)
if self.disable_cgo {
name += "-nocgo"
}
return name
}
func (self *Builder) Env() map[string]string {
env := make(map[string]string)
env["GOOS"] = self.goos
env["GOARCH"] = self.arch
if self.disable_cgo {
env["CGO_ENABLED"] = "0"
} else {
env["CGO_ENABLED"] = "1"
}
// If we are cross compiling, set the right compiler.
if (runtime.GOOS == "linux" || runtime.GOOS == "darwin") &&
self.goos == "windows" {
if self.arch == "amd64" {
if mingwxcompiler_exists() {
env["CC"] = mingw_xcompiler
}
} else {
if mingwxcompiler32_exists() {
env["CC"] = mingw_xcompiler_32
}
}
}
return env
}
// Make sure the correct version of the syso file is present. If we
// are building for non windows platforms we need to remove it
// completely.
func (self Builder) ensureSyso() error {
sh.Rm("bin/rsrc.syso")
if self.goos == "windows" {
switch self.arch {
case "386":
err := sh.Copy("bin/rsrc.syso", "docs/rsrc_386.syso")
if err != nil {
return err
}
case "amd64":
err := sh.Copy("bin/rsrc.syso", "docs/rsrc_amd64.syso")
if err != nil {
return err
}
}
}
return nil
}
func (self Builder) Run() error {
if err := os.Mkdir("output", 0700); err != nil && !os.IsExist(err) {
return fmt.Errorf("failed to create output: %v", err)
}
self.ensureSyso()
err := ensure_assets()
if err != nil {
return err
}
tags := base_tags + self.extra_tags
args := []string{
"build",
"-o", filepath.Join("output", self.Name()),
"-tags", tags,
"-ldflags=-s -w " + flags(),
}
args = append(args, self.extra_flags...)
args = append(args, "./bin/")
return sh.RunWith(self.Env(), mg.GoCmd(), args...)
}
func Auto() error {
return Builder{goos: runtime.GOOS,
filename: "velociraptor",
extra_tags: " release yara ",
arch: runtime.GOARCH}.Run()
}
func AutoDev() error {
return Builder{goos: runtime.GOOS,
arch: runtime.GOARCH,
extra_tags: " yara ",
filename: "velociraptor",
extra_flags: []string{"-race"}}.Run()
}
// Build all the release versions. Darwin we build separately on a
// Mac.
func Release() error {
err := Clean()
if err != nil {
return err
}
err = build_gui_files()
if err != nil {
return err
}
if runtime.GOOS == "linux" {
err := Linux()
if err != nil {
return err
}
if mingwxcompiler_exists() {
err := Windows()
if err != nil {
return err
}
return Windowsx86()
}
}
if runtime.GOOS == "darwin" {
return Darwin()
}
return Windows()
}
func Linux() error {
return Builder{
extra_tags: " release yara ",
goos: "linux",
arch: "amd64"}.Run()
}
func Freebsd() error {
return Builder{
extra_tags: " release yara ",
goos: "freebsd",
// When building on actual freebsd we should have c
// compilers, otherwise disable cgo.
disable_cgo: runtime.GOOS != "freebsd",
arch: "amd64"}.Run()
}
func Aix() error {
return Builder{
extra_tags: " release yara ",
goos: "aix",
disable_cgo: true,
arch: "ppc64",
}.Run()
}
func Arm() error {
return Builder{
extra_tags: " release yara ",
goos: "linux",
disable_cgo: true,
arch: "arm",
}.Run()
}
// Builds a Development binary. This does not embed things like GUI
// resources to allow them to be loaded from the local directory.
func Dev() error {
return Builder{goos: "linux", arch: "amd64",
extra_flags: []string{"-race"}}.Run()
}
// Cross compile the windows binary using mingw. Note that this does
// not run the race detector because the ubuntu distribution of mingw
// does not include tsan.
func Windows() error {
return Builder{
extra_tags: " release yara ",
goos: "windows",
arch: "amd64"}.Run()
}
func WindowsDev() error {
return Builder{
goos: "windows",
extra_tags: " release yara ",
filename: "velociraptor.exe",
arch: "amd64"}.Run()
}
// Windows binary with race detection. This requires building on
// windows (ie not cross compiling). You will need to install gcc
// first using https://jmeubank.github.io/tdm-gcc/ as well as the Go
// windows distribution and optionally the windows node distribution
// (for the GUI).
func WindowsTest() error {
return Builder{
goos: "windows",
extra_tags: " release yara ",
filename: "velociraptor.exe",
arch: "amd64",
extra_flags: []string{"-race"}}.Run()
}
func Windowsx86() error {
return Builder{
extra_tags: " release yara ",
goos: "windows",
arch: "386"}.Run()
}
func Darwin() error {
return Builder{goos: "darwin",
extra_tags: " release yara ",
arch: "amd64"}.Run()
}
func DarwinM1() error {
return Builder{goos: "darwin",
extra_tags: " release yara ",
arch: "arm64"}.Run()
}
func DarwinBase() error {
return Builder{goos: "darwin",
extra_tags: " release ",
disable_cgo: true,
arch: "amd64"}.Run()
}
// Build step for Appveyor.
func Appveyor() error {
err := build_gui_files()
if err != nil {
return err
}
err = Builder{
goos: "windows",
arch: "amd64",
extra_tags: " release ",
filename: "velociraptor.exe"}.Run()
if err != nil {
return err
}
return nil
// Build a linux binary on Appveyor without cgo. This is
// typically OK because it is mostly used for the server. It
// will be missing yara etc.
return Builder{
goos: "linux",
arch: "amd64",
extra_tags: " release ",
disable_cgo: true,
filename: "velociraptor-linux.elf"}.Run()
}
func Clean() error {
for _, target := range assets {
err := sh.Rm(target)
if err != nil {
return err
}
}
return nil
}
func build_gui_files() error {
cwd, err := os.Getwd()
if err != nil {
return err
}
defer os.Chdir(cwd)
err = os.Chdir("gui/velociraptor")
if err != nil {
return err
}
err = sh.RunV("npm", "install")
if err != nil {
return err
}
return sh.RunV("npm", "run", "build")
}
func flags() string {
timestamp := time.Now().Format(time.RFC3339)
return fmt.Sprintf(`-X "www.velocidex.com/golang/velociraptor/config.build_time=%s" -X "www.velocidex.com/golang/velociraptor/config.commit_hash=%s"`, timestamp, hash())
}
// hash returns the git hash for the current repo or "" if none.
func hash() string {
hash, _ := sh.Output("git", "rev-parse", "--short", "HEAD")
return hash
}
func fileb0x(asset string) error {
err := sh.Run("fileb0x", asset)
if err != nil {
err = sh.Run(mg.GoCmd(), "install", "github.com/Velocidex/fileb0x@d54f4040016051dd9657ce04d0ae6f31eab99bc6")
if err != nil {
return err
}
err = sh.Run("fileb0x", asset)
}
return err
}
func ensure_assets() error {
for asset, target := range assets {
before := timestamp_of(target)
err := fileb0x(asset)
if err != nil {
return err
}
// Only do this if the file has changed.
if before != timestamp_of(target) {
err = replace_string_in_file(target, "func init()", "func Init()")
if err != nil {
return err
}
}
}
return nil
}
func mingwxcompiler_exists() bool {
err := sh.Run(mingw_xcompiler, "--version")
return err == nil
}
func mingwxcompiler32_exists() bool {
err := sh.Run(mingw_xcompiler_32, "--version")
return err == nil
}
// Temporarily manipulate the generated file until
// https://github.com/UnnoTed/fileb0x/pull/46 goes in.
func replace_string_in_file(filename string, old string, new string) error {
read, err := ioutil.ReadFile(filename)
if err != nil {
return err
}
newContents := strings.Replace(string(read), old, new, -1)
return ioutil.WriteFile(filename, []byte(newContents), 0)
}
func timestamp_of(path string) int64 {
stat, err := os.Stat(path)
if os.IsNotExist(err) || err != nil {
return 0
}
return stat.ModTime().UnixNano()
}