Skip to content

Commit

Permalink
asan: fix global ips memory leak bug
Browse files Browse the repository at this point in the history
  • Loading branch information
chen-guanghua authored and winlinvip committed Nov 21, 2022
1 parent 59d37ab commit 880650b
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 12 deletions.
20 changes: 9 additions & 11 deletions trunk/src/app/srs_app_tencentcloud.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ namespace tencentcloud_api_sign {
http_request_info[http_request_info.size() - 1] = '\n';
}
//printf("%s\nEOF\n", http_request_info.c_str());
char signed_time[SIGNLEN];
char signed_time[SIGNLEN] = {0};
int signed_time_len = snprintf(signed_time, SIGNLEN,
"%lu;%lu", time(0) - 60, time(0) + expire);
//snprintf(signed_time, SIGNLEN, "1510109254;1510109314");
Expand All @@ -148,16 +148,14 @@ namespace tencentcloud_api_sign {
.append(sha1(http_request_info.c_str(), http_request_info.size()))
.append("\n");
//printf("%s\nEOF\n", str_to_sign.c_str());
char c_signature[SIGNLEN];
snprintf(c_signature, SIGNLEN,
"q-sign-algorithm=sha1&q-ak=%s"
"&q-sign-time=%s&q-key-time=%s"
"&q-header-list=%s&q-url-param-list=%s&q-signature=%s",
secret_id.c_str(), signed_time, signed_time,
header_list.c_str(), uri_parm_list.c_str(),
hmac_sha1(signkey.c_str(), str_to_sign.c_str(),
str_to_sign.size()).c_str());
return c_signature;
std::stringstream c_signature;
c_signature << "q-sign-algorithm=sha1&q-ak=" << secret_id.c_str()
<< "&q-sign-time=" << signed_time
<< "&q-key-time=" << signed_time
<< "&q-header-list=" << header_list.c_str()
<< "&q-url-param-list=" << uri_parm_list.c_str()
<< "&q-signature=" << hmac_sha1(signkey.c_str(), str_to_sign.c_str(), str_to_sign.size()).c_str();
return c_signature.str();
}
}

Expand Down
9 changes: 8 additions & 1 deletion trunk/src/main/srs_main_server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@ bool _srs_config_by_env = false;
// The binary name of SRS.
const char* _srs_binary = NULL;

// Free global data, for address sanitizer.
extern void srs_free_global_system_ips();

/**
* main entrance.
*/
Expand Down Expand Up @@ -222,7 +225,9 @@ srs_error_t do_main(int argc, char** argv, char** envp)
if ((err = run_directly_or_daemon()) != srs_success) {
return srs_error_wrap(err, "run");
}


srs_free_global_system_ips();

return err;
}

Expand Down Expand Up @@ -447,6 +452,7 @@ srs_error_t run_directly_or_daemon()
int status = 0;
waitpid(pid, &status, 0);
srs_trace("grandpa process exit.");
srs_free_global_system_ips();
exit(0);
}

Expand All @@ -459,6 +465,7 @@ srs_error_t run_directly_or_daemon()

if(pid > 0) {
srs_trace("father process exit");
srs_free_global_system_ips();
exit(0);
}

Expand Down

0 comments on commit 880650b

Please sign in to comment.