-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathdeployment_configuration.c
214 lines (177 loc) · 5.51 KB
/
deployment_configuration.c
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
// aws-greengrass-lite - AWS IoT Greengrass runtime for constrained devices
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
#include "deployment_configuration.h"
#include <ggl/buffer.h>
#include <ggl/core_bus/gg_config.h>
#include <ggl/error.h>
#include <ggl/log.h>
#include <ggl/object.h>
#include <ggl/vector.h>
#include <linux/limits.h>
#include <string.h>
#include <stdint.h>
DeploymentConfiguration config;
GglError get_data_endpoint(GglByteVec *endpoint) {
uint8_t resp_mem[128] = { 0 };
GglBuffer resp = GGL_BUF(resp_mem);
GglError ret = ggl_gg_config_read_str(
GGL_BUF_LIST(
GGL_STR("services"),
GGL_STR("aws.greengrass.Nucleus-Lite"),
GGL_STR("configuration"),
GGL_STR("iotDataEndpoint")
),
&resp
);
if (ret != GGL_ERR_OK) {
GGL_LOGW("Failed to get dataplane endpoint from config.");
return ret;
}
return ggl_byte_vec_append(endpoint, resp);
}
GglError get_data_port(GglByteVec *port) {
uint8_t resp_mem[16] = { 0 };
GglBuffer resp = GGL_BUF(resp_mem);
GglError ret = ggl_gg_config_read_str(
GGL_BUF_LIST(
GGL_STR("services"),
GGL_STR("aws.greengrass.Nucleus-Lite"),
GGL_STR("configuration"),
GGL_STR("greengrassDataPlanePort")
),
&resp
);
if (ret != GGL_ERR_OK) {
GGL_LOGW("Failed to get dataplane port from config.");
return ret;
}
return ggl_byte_vec_append(port, resp);
}
GglError get_region(GglByteVec *region) {
uint8_t resp_mem[30] = { 0 };
GglBuffer resp = GGL_BUF(resp_mem);
GglError ret = ggl_gg_config_read_str(
GGL_BUF_LIST(
GGL_STR("services"),
GGL_STR("aws.greengrass.Nucleus-Lite"),
GGL_STR("configuration"),
GGL_STR("awsRegion")
),
&resp
);
if (ret != GGL_ERR_OK) {
GGL_LOGW("Failed to get region from config.");
return ret;
}
ggl_byte_vec_append(region, resp);
return ret;
}
GglError get_thing_name(GglBuffer *thing_name) {
uint8_t resp_mem[128] = { 0 };
GglBuffer resp = GGL_BUF(resp_mem);
GglError ret = ggl_gg_config_read_str(
GGL_BUF_LIST(GGL_STR("system"), GGL_STR("thingName")), &resp
);
if (ret != GGL_ERR_OK) {
GGL_LOGW("Failed to get thing name from config.");
return ret;
}
memcpy(thing_name->data, resp.data, resp.len);
thing_name->len = resp.len;
return GGL_ERR_OK;
}
GglError get_root_ca_path(GglBuffer *root_ca_path) {
uint8_t resp_mem[PATH_MAX] = { 0 };
GglBuffer resp = GGL_BUF(resp_mem);
GglError ret = ggl_gg_config_read_str(
GGL_BUF_LIST(GGL_STR("system"), GGL_STR("rootCaPath")), &resp
);
if (ret != GGL_ERR_OK) {
GGL_LOGW("Failed to get rootCaPath from config.");
return ret;
}
memcpy(root_ca_path->data, resp.data, resp.len);
root_ca_path->len = resp.len;
return GGL_ERR_OK;
}
GglError get_tes_cred_url(GglBuffer *tes_cred_url) {
uint8_t resp_mem[128] = { 0 };
GglBuffer resp = GGL_BUF(resp_mem);
GglError ret = ggl_gg_config_read_str(
GGL_BUF_LIST(
GGL_STR("services"),
GGL_STR("aws.greengrass.Nucleus-Lite"),
GGL_STR("configuration"),
GGL_STR("tesCredUrl")
),
&resp
);
if (ret != GGL_ERR_OK) {
GGL_LOGW("Failed to get tesCredUrl from config.");
return ret;
}
memcpy(tes_cred_url->data, resp.data, resp.len);
tes_cred_url->len = resp.len;
return GGL_ERR_OK;
}
GglError get_posix_user(GglBuffer *posix_user) {
uint8_t resp_mem[128] = { 0 };
GglBuffer resp = GGL_BUF(resp_mem);
GglError ret = ggl_gg_config_read_str(
GGL_BUF_LIST(
GGL_STR("services"),
GGL_STR("aws.greengrass.Nucleus-Lite"),
GGL_STR("configuration"),
GGL_STR("runWithDefault"),
GGL_STR("posixUser")
),
&resp
);
if (ret != GGL_ERR_OK) {
GGL_LOGW("Failed to get posixUser from config.");
return ret;
}
memcpy(posix_user->data, resp.data, resp.len);
posix_user->len = resp.len;
return GGL_ERR_OK;
}
GglError get_private_key_path(GglByteVec *pkey_path) {
uint8_t resp_mem[PATH_MAX] = { 0 };
GglBuffer resp = GGL_BUF(resp_mem);
GglError ret = ggl_gg_config_read_str(
GGL_BUF_LIST(GGL_STR("system"), GGL_STR("privateKeyPath")), &resp
);
if (ret != GGL_ERR_OK) {
GGL_LOGW("Failed to get private key path from config.");
return ret;
}
ggl_byte_vec_append(pkey_path, resp);
return ret;
}
GglError get_cert_path(GglByteVec *cert_path) {
uint8_t resp_mem[PATH_MAX] = { 0 };
GglBuffer resp = GGL_BUF(resp_mem);
GglError ret = ggl_gg_config_read_str(
GGL_BUF_LIST(GGL_STR("system"), GGL_STR("certificateFilePath")), &resp
);
if (ret != GGL_ERR_OK) {
GGL_LOGW("Failed to get certificate path from config.");
return ret;
}
ggl_byte_vec_append(cert_path, resp);
return ret;
}
GglError get_rootca_path(GglByteVec *rootca_path) {
uint8_t resp_mem[PATH_MAX] = { 0 };
GglBuffer resp = GGL_BUF(resp_mem);
GglError ret = ggl_gg_config_read_str(
GGL_BUF_LIST(GGL_STR("system"), GGL_STR("rootCaPath")), &resp
);
if (ret != GGL_ERR_OK) {
GGL_LOGW("Failed to get rootca path from config.");
return ret;
}
ggl_byte_vec_append(rootca_path, resp);
return ret;
}