Skip to content

Commit 07afc4e

Browse files
theopolismuffins
authored andcommitted
tables: Change atom_packages to use user constraints (osquery#6052)
1 parent 3e437d5 commit 07afc4e

File tree

2 files changed

+22
-16
lines changed

2 files changed

+22
-16
lines changed

osquery/tables/applications/atom_packages.cpp

+19-16
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,15 @@
66
* the LICENSE file found in the root directory of this source tree.
77
*/
88

9-
#include <pwd.h>
109
#include <set>
1110
#include <string>
12-
#include <sys/types.h>
1311

1412
#include <boost/filesystem.hpp>
1513

1614
#include <osquery/filesystem/filesystem.h>
1715
#include <osquery/logger.h>
1816
#include <osquery/tables.h>
17+
#include <osquery/tables/system/system_utils.h>
1918
#include <osquery/utils/json/json.h>
2019

2120
namespace fs = boost::filesystem;
@@ -26,18 +25,18 @@ namespace tables {
2625
const std::vector<std::string> kPackageKeys{
2726
"name", "version", "description", "license", "homepage"};
2827

29-
void genReadJSONAndAddRow(const std::string& package, QueryData& results) {
28+
void genReadJSONAndAddRow(const std::string& uid,
29+
const std::string& package,
30+
QueryData& results) {
3031
std::string json;
3132
if (!readFile(package, json).ok()) {
32-
LOG(WARNING) << "Could not read Atom's package.json from '" << package
33-
<< "'";
33+
LOG(WARNING) << "Could not read Atom package.json from '" << package << "'";
3434
return;
3535
}
3636

3737
auto doc = JSON::newObject();
3838
if (!doc.fromString(json) || !doc.doc().IsObject()) {
39-
LOG(WARNING) << "Could not parse Atom's package.json from " << package
40-
<< "'";
39+
LOG(WARNING) << "Could not parse Atom package.json from " << package << "'";
4140
return;
4241
}
4342

@@ -51,27 +50,31 @@ void genReadJSONAndAddRow(const std::string& package, QueryData& results) {
5150
}
5251
// add package path manually
5352
r["path"] = package;
53+
r["uid"] = uid;
5454
results.push_back(r);
5555
}
5656

5757
QueryData genAtomPackages(QueryContext& context) {
5858
QueryData results;
59+
5960
// find atom config directories
60-
std::set<fs::path> confDirs;
61-
struct passwd* pwd;
62-
while ((pwd = getpwent()) != NULL) {
63-
fs::path confDir{pwd->pw_dir};
64-
confDir /= ".atom";
65-
if (isDirectory(confDir)) {
66-
confDirs.insert(confDir);
61+
std::set<std::pair<std::string, fs::path>> confDirs;
62+
auto users = usersFromContext(context);
63+
for (const auto& row : users) {
64+
auto uid = row.find("uid");
65+
auto directory = row.find("directory");
66+
if (directory == row.end() || uid == row.end()) {
67+
continue;
6768
}
69+
confDirs.insert({uid->second, fs::path(directory->second) / ".atom"});
6870
}
6971

7072
for (const auto& confDir : confDirs) {
7173
std::vector<std::string> packages;
72-
resolveFilePattern(confDir / "packages" / "%" / "package.json", packages);
74+
resolveFilePattern(confDir.second / "packages" / "%" / "package.json",
75+
packages);
7376
for (const auto& package : packages) {
74-
genReadJSONAndAddRow(package, results);
77+
genReadJSONAndAddRow(confDir.first, package, results);
7578
}
7679
}
7780

specs/atom_packages.table

+3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@ schema([
77
Column("path", TEXT, "Package's package.json path"),
88
Column("license", TEXT, "License for package"),
99
Column("homepage", TEXT, "Package supplied homepage"),
10+
Column("uid", BIGINT, "The local user that owns the plugin",
11+
index=True),
1012
])
13+
attributes(user_data=True)
1114
implementation("applications/atom_packages@genAtomPackages")
1215
examples([
1316
"select * from atom_packages",

0 commit comments

Comments
 (0)