|
8 | 8 | #include <ggl/buffer.h>
|
9 | 9 | #include <ggl/core_bus/gg_config.h>
|
10 | 10 | #include <ggl/error.h>
|
| 11 | +#include <ggl/log.h> |
11 | 12 | #include <ggl/object.h>
|
12 | 13 | #include <limits.h>
|
13 | 14 | #include <string.h>
|
| 15 | +#include <stdbool.h> |
14 | 16 | #include <stdint.h>
|
| 17 | +#include <stdlib.h> |
15 | 18 |
|
16 | 19 | #define MAX_ENDPOINT_LEN 128
|
17 | 20 | #define MAX_THINGNAME_LEN 128
|
18 | 21 |
|
| 22 | +static bool getenv_copy(char *name, GglBuffer *destination) { |
| 23 | + // NOLINTNEXTLINE(concurrency-mt-unsafe) |
| 24 | + char *value = getenv(name); |
| 25 | + if (value == NULL) { |
| 26 | + return false; |
| 27 | + } |
| 28 | + GglBuffer source = ggl_buffer_from_null_term(value); |
| 29 | + if (source.len >= destination->len) { |
| 30 | + GGL_LOGW("%s too long.", name); |
| 31 | + return false; |
| 32 | + } |
| 33 | + memcpy(destination->data, source.data, source.len); |
| 34 | + destination->len = source.len; |
| 35 | + destination->data[destination->len] = '\0'; |
| 36 | + return true; |
| 37 | +} |
| 38 | + |
19 | 39 | GglError run_iotcored(IotcoredArgs *args) {
|
20 | 40 | if (args->cert == NULL) {
|
21 | 41 | static uint8_t cert_mem[PATH_MAX] = { 0 };
|
@@ -94,6 +114,61 @@ GglError run_iotcored(IotcoredArgs *args) {
|
94 | 114 | args->rootca = (char *) rootca_mem;
|
95 | 115 | }
|
96 | 116 |
|
| 117 | + static uint8_t proxy_uri_mem[PATH_MAX] = { 0 }; |
| 118 | + if (args->proxy_uri == NULL) { |
| 119 | + GglBuffer proxy_uri = GGL_BUF(proxy_uri_mem); |
| 120 | + if (getenv_copy("https_proxy", &proxy_uri)) { |
| 121 | + args->proxy_uri = (char *) proxy_uri_mem; |
| 122 | + } else if (getenv_copy("HTTPS_PROXY", &proxy_uri)) { |
| 123 | + args->proxy_uri = (char *) proxy_uri_mem; |
| 124 | + } |
| 125 | + } |
| 126 | + if (args->proxy_uri == NULL) { |
| 127 | + GglBuffer proxy_uri = GGL_BUF(proxy_uri_mem); |
| 128 | + proxy_uri.len -= 1; |
| 129 | + GglError ret = ggl_gg_config_read_str( |
| 130 | + GGL_BUF_LIST( |
| 131 | + GGL_STR("services"), |
| 132 | + GGL_STR("aws.greengrass.NucleusLite"), |
| 133 | + GGL_STR("configuration"), |
| 134 | + GGL_STR("networkProxy"), |
| 135 | + GGL_STR("proxy"), |
| 136 | + GGL_STR("url") |
| 137 | + ), |
| 138 | + &proxy_uri |
| 139 | + ); |
| 140 | + if (ret == GGL_ERR_OK) { |
| 141 | + args->proxy_uri = (char *) proxy_uri_mem; |
| 142 | + } |
| 143 | + } |
| 144 | + |
| 145 | + static uint8_t no_proxy_mem[PATH_MAX] = { 0 }; |
| 146 | + if (args->no_proxy == NULL) { |
| 147 | + GglBuffer no_proxy = GGL_BUF(no_proxy_mem); |
| 148 | + if (getenv_copy("no_proxy", &no_proxy)) { |
| 149 | + args->no_proxy = (char *) no_proxy_mem; |
| 150 | + } else if (getenv_copy("NO_PROXY", &no_proxy)) { |
| 151 | + args->no_proxy = (char *) no_proxy_mem; |
| 152 | + } |
| 153 | + } |
| 154 | + if (args->no_proxy == NULL) { |
| 155 | + GglBuffer no_proxy = GGL_BUF(no_proxy_mem); |
| 156 | + no_proxy.len -= 1; |
| 157 | + GglError ret = ggl_gg_config_read_str( |
| 158 | + GGL_BUF_LIST( |
| 159 | + GGL_STR("services"), |
| 160 | + GGL_STR("aws.greengrass.NucleusLite"), |
| 161 | + GGL_STR("configuration"), |
| 162 | + GGL_STR("networkProxy"), |
| 163 | + GGL_STR("noproxy"), |
| 164 | + ), |
| 165 | + &no_proxy |
| 166 | + ); |
| 167 | + if (ret == GGL_ERR_OK) { |
| 168 | + args->no_proxy = (char *) no_proxy_mem; |
| 169 | + } |
| 170 | + } |
| 171 | + |
97 | 172 | GglError ret = iotcored_mqtt_connect(args);
|
98 | 173 | if (ret != GGL_ERR_OK) {
|
99 | 174 | return ret;
|
|
0 commit comments