osquery-1/osquery/tables/system/linux/users.cpp
2015-05-11 23:31:13 -07:00

55 lines
1.3 KiB
C++

/*
* Copyright (c) 2014, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
*/
#include <set>
#include <mutex>
#include <vector>
#include <string>
#include <pwd.h>
#include <osquery/core.h>
#include <osquery/tables.h>
namespace osquery {
namespace tables {
std::mutex pwdEnumerationMutex;
QueryData genUsers(QueryContext& context) {
std::lock_guard<std::mutex> lock(pwdEnumerationMutex);
QueryData results;
struct passwd *pwd = nullptr;
std::set<long> users_in;
while ((pwd = getpwent()) != nullptr) {
if (std::find(users_in.begin(), users_in.end(), pwd->pw_uid) ==
users_in.end()) {
Row r;
r["uid"] = BIGINT(pwd->pw_uid);
r["gid"] = BIGINT(pwd->pw_gid);
r["uid_signed"] = BIGINT((int32_t) pwd->pw_uid);
r["gid_signed"] = BIGINT((int32_t) pwd->pw_gid);
r["username"] = TEXT(pwd->pw_name);
r["description"] = TEXT(pwd->pw_gecos);
r["directory"] = TEXT(pwd->pw_dir);
r["shell"] = TEXT(pwd->pw_shell);
results.push_back(r);
users_in.insert(pwd->pw_uid);
}
}
endpwent();
users_in.clear();
return results;
}
}
}