Restconf http-data server updates
Check data paths for .., ~ and soft links Changed semantics of `CLICON_HTTP_DATA_PATH` and `_ROOT` Change URI catch-all to 404 instead of 400 Fixed some memory leaks
This commit is contained in:
parent
0ed8b836b1
commit
84d88c8ad8
12 changed files with 303 additions and 106 deletions
|
|
@ -345,7 +345,7 @@ restconf_http1_path_root(clicon_handle h,
|
|||
restconf_conn *rc)
|
||||
{
|
||||
int retval = -1;
|
||||
restconf_stream_data *sd;
|
||||
restconf_stream_data *sd = NULL;
|
||||
cvec *cvv = NULL;
|
||||
char *cn;
|
||||
char *subject = NULL;
|
||||
|
|
@ -380,6 +380,13 @@ restconf_http1_path_root(clicon_handle h,
|
|||
goto done;
|
||||
goto fail;
|
||||
}
|
||||
#if 1
|
||||
/* XXX gives mem leak in multiple requests,
|
||||
* but maybe the error is that sd is not freed.
|
||||
*/
|
||||
if (sd->sd_path != NULL)
|
||||
free(sd->sd_path);
|
||||
#endif
|
||||
if ((sd->sd_path = restconf_uripath(rc->rc_h)) == NULL)
|
||||
goto done; // XXX SHOULDNT EXIT if no REQUEST_URI
|
||||
if (rc->rc_proto_d2 == 0 && rc->rc_proto == HTTP_11)
|
||||
|
|
@ -427,7 +434,7 @@ restconf_http1_path_root(clicon_handle h,
|
|||
if (api_root_restconf(h, sd, sd->sd_qvec) < 0)
|
||||
goto done;
|
||||
}
|
||||
else if (api_path_is_data(h, NULL)){
|
||||
else if (api_path_is_data(h)){
|
||||
if (api_http_data(h, sd, sd->sd_qvec) < 0)
|
||||
goto done;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue