forked from Velocidex/velociraptor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.go
82 lines (67 loc) · 2.31 KB
/
utils.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
/*
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 flows
import (
"github.com/golang/protobuf/proto"
config_proto "www.velocidex.com/golang/velociraptor/config/proto"
crypto_proto "www.velocidex.com/golang/velociraptor/crypto/proto"
datastore "www.velocidex.com/golang/velociraptor/datastore"
)
// ProduceBackwardCompatibleGrrMessage is used for messages going from
// the server to the client. In order to support old clients we
// duplicate the data in the extra fields.
func ProduceBackwardCompatibleGrrMessage(req *crypto_proto.GrrMessage) *crypto_proto.GrrMessage {
var payload proto.Message
// Only bother for server -> client messages since this we
// only support older clients on newer servers.
if req.UpdateEventTable != nil {
payload = req.UpdateEventTable
req.Name = "UpdateEventTable"
req.ArgsRdfName = "VQLEventTable"
}
if req.VQLClientAction != nil {
payload = req.VQLClientAction
req.Name = "VQLClientAction"
req.ArgsRdfName = "VQLCollectorArgs"
}
if req.UpdateForeman != nil {
payload = req.UpdateForeman
req.Name = "UpdateForeman"
req.ArgsRdfName = "ForemanCheckin"
}
if req.Cancel != nil {
payload = req.Cancel
req.Name = "Cancel"
req.ArgsRdfName = "Cancel"
}
if payload != nil {
serialized, err := proto.Marshal(payload)
if err == nil {
req.Args = serialized
}
}
return req
}
func QueueMessageForClient(
config_obj *config_proto.Config,
client_id string,
req *crypto_proto.GrrMessage) error {
req = ProduceBackwardCompatibleGrrMessage(req)
db, err := datastore.GetDB(config_obj)
if err != nil {
return err
}
return db.QueueMessageForClient(config_obj, client_id, req)
}