|
19 | 19 | #define MAX_ENDPOINT_LEN 128
|
20 | 20 | #define MAX_THINGNAME_LEN 128
|
21 | 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; |
| 22 | +static bool get_proxy_variable(GglBufList aliases, GglBuffer *destination) { |
| 23 | + for (size_t i = 0; i < aliases.len; ++i) { |
| 24 | + char *name = (char *) aliases.bufs[i].data; |
| 25 | + if (name == NULL) { |
| 26 | + continue; |
| 27 | + } |
| 28 | + // This is safe as long as getenv is reentrant |
| 29 | + // and no other threads call setenv. |
| 30 | + // NOLINTNEXTLINE(concurrency-mt-unsafe) |
| 31 | + char *value = getenv(name); |
| 32 | + if (value == NULL) { |
| 33 | + continue; |
| 34 | + } |
| 35 | + GglBuffer source = ggl_buffer_from_null_term(value); |
| 36 | + if (source.len >= destination->len) { |
| 37 | + GGL_LOGW("%s too long.", name); |
| 38 | + continue; |
| 39 | + } |
| 40 | + memcpy(destination->data, source.data, source.len); |
| 41 | + destination->len = source.len; |
| 42 | + destination->data[destination->len] = '\0'; |
| 43 | + return true; |
27 | 44 | }
|
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; |
| 45 | + return false; |
| 46 | +} |
| 47 | + |
| 48 | +static void set_proxy_args(IotcoredArgs *args) { |
| 49 | + static uint8_t proxy_uri_mem[PATH_MAX] = { 0 }; |
| 50 | + if (args->proxy_uri == NULL) { |
| 51 | + GglBuffer proxy_uri = GGL_BUF(proxy_uri_mem); |
| 52 | + if (get_proxy_variable( |
| 53 | + GGL_BUF_LIST(GGL_STR("https_proxy"), GGL_STR("HTTPS_PROXY")), |
| 54 | + &proxy_uri |
| 55 | + )) { |
| 56 | + args->proxy_uri = (char *) proxy_uri_mem; |
| 57 | + } |
| 58 | + } |
| 59 | + if (args->proxy_uri == NULL) { |
| 60 | + GglBuffer proxy_uri = GGL_BUF(proxy_uri_mem); |
| 61 | + proxy_uri.len -= 1; |
| 62 | + GglError ret = ggl_gg_config_read_str( |
| 63 | + GGL_BUF_LIST( |
| 64 | + GGL_STR("services"), |
| 65 | + GGL_STR("aws.greengrass.NucleusLite"), |
| 66 | + GGL_STR("configuration"), |
| 67 | + GGL_STR("networkProxy"), |
| 68 | + GGL_STR("proxy"), |
| 69 | + GGL_STR("url") |
| 70 | + ), |
| 71 | + &proxy_uri |
| 72 | + ); |
| 73 | + if (ret == GGL_ERR_OK) { |
| 74 | + args->proxy_uri = (char *) proxy_uri_mem; |
| 75 | + } |
| 76 | + } |
| 77 | + |
| 78 | + static uint8_t no_proxy_mem[PATH_MAX] = { 0 }; |
| 79 | + if (args->no_proxy == NULL) { |
| 80 | + GglBuffer no_proxy = GGL_BUF(no_proxy_mem); |
| 81 | + if (get_proxy_variable( |
| 82 | + GGL_BUF_LIST(GGL_STR("no_proxy"), GGL_STR("NO_PROXY")), |
| 83 | + &no_proxy |
| 84 | + )) { |
| 85 | + args->no_proxy = (char *) no_proxy_mem; |
| 86 | + } |
| 87 | + } |
| 88 | + if (args->no_proxy == NULL) { |
| 89 | + GglBuffer no_proxy = GGL_BUF(no_proxy_mem); |
| 90 | + no_proxy.len -= 1; |
| 91 | + GglError ret = ggl_gg_config_read_str( |
| 92 | + GGL_BUF_LIST( |
| 93 | + GGL_STR("services"), |
| 94 | + GGL_STR("aws.greengrass.NucleusLite"), |
| 95 | + GGL_STR("configuration"), |
| 96 | + GGL_STR("networkProxy"), |
| 97 | + GGL_STR("noproxy"), |
| 98 | + ), |
| 99 | + &no_proxy |
| 100 | + ); |
| 101 | + if (ret == GGL_ERR_OK) { |
| 102 | + args->no_proxy = (char *) no_proxy_mem; |
| 103 | + } |
32 | 104 | }
|
33 |
| - memcpy(destination->data, source.data, source.len); |
34 |
| - destination->len = source.len; |
35 |
| - destination->data[destination->len] = '\0'; |
36 |
| - return true; |
37 | 105 | }
|
38 | 106 |
|
39 | 107 | GglError run_iotcored(IotcoredArgs *args) {
|
@@ -114,60 +182,7 @@ GglError run_iotcored(IotcoredArgs *args) {
|
114 | 182 | args->rootca = (char *) rootca_mem;
|
115 | 183 | }
|
116 | 184 |
|
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 |
| - } |
| 185 | + set_proxy_args(args); |
171 | 186 |
|
172 | 187 | GglError ret = iotcored_mqtt_connect(args);
|
173 | 188 | if (ret != GGL_ERR_OK) {
|
|
0 commit comments