[
https://issues.apache.org/jira/browse/MESOS-2412?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Niklas Quarfot Nielsen updated MESOS-2412:
------------------------------------------
Target Version/s: 0.23.0 (was: 0.22.1)
> Potential memleak(s) in stout/os.hpp
> ------------------------------------
>
> Key: MESOS-2412
> URL: https://issues.apache.org/jira/browse/MESOS-2412
> Project: Mesos
> Issue Type: Bug
> Components: stout
> Reporter: Joerg Schad
> Assignee: Joerg Schad
> Labels: coverity, mesosphere, twitter
> Fix For: 0.23.0
>
>
> Coverity picked up this potential memleak in os.hpp where we do not delete
> buffer in the else case. The exact same pattern occurs in getuid(const
> Option<std::string>& user = None()).
> The corresponding CID 1230371 and 1230371.
> {code}
> inline Result<gid_t> getgid(const Option<std::string>& user = None())
> ...
> while (true) {
> char* buffer = new char[size];
> if (getpwnam_r(user.get().c_str(), &passwd, buffer, size, &result) == 0) {
> ...
> delete[] buffer;
> return gid;
> } else {
> // RHEL7 (and possibly other systems) will return non-zero and
> // set one of the following errors for "The given name or uid
> // was not found." See 'man getpwnam_r'. We only check for the
> // errors explicitly listed, and do not consider the ellipsis.
> if (errno == ENOENT ||
> errno == ESRCH ||
> errno == EBADF ||
> errno == EPERM) {
> return None();
> // HERE WE DO NOT DELETE BUFFER.
> }
> ...
> // getpwnam_r set ERANGE so try again with a larger buffer.
> size *= 2;
> delete[] buffer;
> }
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)