-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor dependency resolution out of deployment handler #636
Changes from 1 commit
5e9f388
846ffa4
22e6b11
27eded1
49526a7
518e46a
6071693
2b32a7e
29e5aa8
5673e1a
05967f4
212c8b9
9e24eba
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
#include "deployment_configuration.h" | ||
#include <assert.h> | ||
#include <ggl/buffer.h> | ||
#include <ggl/core_bus/gg_config.h> | ||
#include <ggl/error.h> | ||
|
@@ -93,6 +94,7 @@ GglError get_thing_name(GglBuffer *thing_name) { | |
return ret; | ||
} | ||
|
||
assert(thing_name->len <= resp.len); | ||
memcpy(thing_name->data, resp.data, resp.len); | ||
thing_name->len = resp.len; | ||
return GGL_ERR_OK; | ||
|
@@ -110,6 +112,7 @@ GglError get_root_ca_path(GglBuffer *root_ca_path) { | |
return ret; | ||
} | ||
|
||
assert(root_ca_path->len <= resp.len); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This assert also seems wrong no? |
||
memcpy(root_ca_path->data, resp.data, resp.len); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We need to verify that the buffer is at least as long as resp.data before copying over the data. Similarly in other places |
||
root_ca_path->len = resp.len; | ||
return GGL_ERR_OK; | ||
|
@@ -133,6 +136,7 @@ GglError get_tes_cred_url(GglBuffer *tes_cred_url) { | |
return ret; | ||
} | ||
|
||
assert(tes_cred_url->len <= resp.len); | ||
memcpy(tes_cred_url->data, resp.data, resp.len); | ||
tes_cred_url->len = resp.len; | ||
return GGL_ERR_OK; | ||
|
@@ -157,6 +161,7 @@ GglError get_posix_user(GglBuffer *posix_user) { | |
return ret; | ||
} | ||
|
||
assert(posix_user->len <= resp.len); | ||
memcpy(posix_user->data, resp.data, resp.len); | ||
posix_user->len = resp.len; | ||
return GGL_ERR_OK; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think that this assert is wrong. Should it not be
thing_name->len > resp.len
?we should also fail gracefully in case the lengths do no match.
I think it can be done as such:
This would allow us to fail gracefully even when the assert is not defined in production environments.