-
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
Conversation
@@ -107,12 +110,13 @@ GglError get_root_ca_path(char **root_ca_path) { | |||
return ret; | |||
} | |||
|
|||
*root_ca_path = (char *) resp.data; | |||
memcpy(root_ca_path->data, resp.data, resp.len); |
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.
We need to verify that the buffer is at least as long as resp.data before copying over the data. Similarly in other places
@@ -93,6 +94,7 @@ GglError get_thing_name(GglBuffer *thing_name) { | |||
return ret; | |||
} | |||
|
|||
assert(thing_name->len <= resp.len); |
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:
if(thing_name->len <= resp.len) {
assert(false);
return GGL_ERR_FAILURE;
}
This would allow us to fail gracefully even when the assert is not defined in production environments.
@@ -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 comment
The reason will be displayed to describe this comment to others. Learn more.
This assert also seems wrong no?
452e90d
to
2b32a7e
Compare
PR #762 covers it |
Issue #, if available:
Description of changes:
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.