6
6
* the LICENSE file found in the root directory of this source tree.
7
7
*/
8
8
9
- #include < pwd.h>
10
9
#include < set>
11
10
#include < string>
12
- #include < sys/types.h>
13
11
14
12
#include < boost/filesystem.hpp>
15
13
16
14
#include < osquery/filesystem/filesystem.h>
17
15
#include < osquery/logger.h>
18
16
#include < osquery/tables.h>
17
+ #include < osquery/tables/system/system_utils.h>
19
18
#include < osquery/utils/json/json.h>
20
19
21
20
namespace fs = boost::filesystem;
@@ -26,18 +25,18 @@ namespace tables {
26
25
const std::vector<std::string> kPackageKeys {
27
26
" name" , " version" , " description" , " license" , " homepage" };
28
27
29
- void genReadJSONAndAddRow (const std::string& package, QueryData& results) {
28
+ void genReadJSONAndAddRow (const std::string& uid,
29
+ const std::string& package,
30
+ QueryData& results) {
30
31
std::string json;
31
32
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 << " '" ;
34
34
return ;
35
35
}
36
36
37
37
auto doc = JSON::newObject ();
38
38
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 << " '" ;
41
40
return ;
42
41
}
43
42
@@ -51,27 +50,31 @@ void genReadJSONAndAddRow(const std::string& package, QueryData& results) {
51
50
}
52
51
// add package path manually
53
52
r[" path" ] = package;
53
+ r[" uid" ] = uid;
54
54
results.push_back (r);
55
55
}
56
56
57
57
QueryData genAtomPackages (QueryContext& context) {
58
58
QueryData results;
59
+
59
60
// 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 ;
67
68
}
69
+ confDirs.insert ({uid->second , fs::path (directory->second ) / " .atom" });
68
70
}
69
71
70
72
for (const auto & confDir : confDirs) {
71
73
std::vector<std::string> packages;
72
- resolveFilePattern (confDir / " packages" / " %" / " package.json" , packages);
74
+ resolveFilePattern (confDir.second / " packages" / " %" / " package.json" ,
75
+ packages);
73
76
for (const auto & package : packages) {
74
- genReadJSONAndAddRow (package, results);
77
+ genReadJSONAndAddRow (confDir. first , package, results);
75
78
}
76
79
}
77
80
0 commit comments