1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
|
/****************************************************************************
**
** Copyright (C) 2020 Manfred Kern. All rights reserved.
** Contact: manfred.kern@gmail.com
**
** Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are met:
**
** 1. Redistributions of source code must retain the above copyright notice,
** this list of conditions and the following disclaimer.
**
** 2. Redistributions in binary form must reproduce the above copyright
** notice, this list of conditions and the following disclaimer in the
** documentation and/or other materials provided with the distribution.
**
** 3. All advertising materials mentioning features or use of this software
** must display the following acknowledgement:
** This product includes software developed by the the organization.
**
** 4. Neither the name of the copyright holder nor the names of its
** contributors may be used to endorse or promote products derived from
** this software without specific prior written permission.
**
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
**
****************************************************************************/
#include <cstdlib>
#include <filesystem>
#include <iostream>
#include <set>
#include <vector>
#include "loaderpathresolver.h"
using namespace std;
const string OTOOL{"otool -L "};
const string SYSTEM_LIBS{"/System/Library/"};
const string LIBS{"/usr/lib"};
set<string> systemLibs;
set<string> userLibs;
const string RPATH{"@rpath"};
set<string> rpathLibs;
const string LOADER_PATH{"@loader_path"};
vector<pair<string, string>> loaderLibs; // calling dylib, referenced dylib
const string EXECUTABLE_PATH{"@executable_path"};
set<string> executableLibs;
string libFileName{}; // dynlib to parse
string pathToLibFileName{};
vector<string> options{}; // command line options
// (-v verbose, -u user libs -r rpath libs, -e executable libs, -l loader_path libs, -s system libs)
string absPath(const string &filename)
{
int index = filename.find_last_of("/\\");
return filename.substr(0, index);
}
string filenameNoPath(const string &filename)
{
int index = filename.find_last_of("/\\");
return filename.substr(index + 1);
}
string trim(const string &str)
{
size_t first = str.find_first_not_of(' ');
if (string::npos == first) {
return str;
}
size_t last = str.find_last_not_of(' ');
return str.substr(first, (last - first + 1));
}
///
/// \brief firstWord - Assumption str starts with non whitespace character
/// \param str String where to extract first word
///
void firstWord(string &str)
{
for (int i = 0; i < str.size(); i++) {
if (isspace(str[i])) {
str.erase(i, str.size());
return;
}
};
}
///
/// \brief startsWith
/// \param str - Complete string
/// \param pre - partial string to compare with str from the start
/// \return true, if str starts with pre, otherwise false
///
bool startsWith(const string &str, const string &pre)
{
return str.compare(0, pre.size(), pre) == 0 ? true : false;
}
void printLibs()
{
cout << "----------------------------------------------------------------" << endl;
cout << "*** @rpath ***" << endl;
for (const string &dylib : rpathLibs) {
cout << dylib << endl;
}
cout << "----------------------------------------------------------------" << endl;
cout << "*** @loader_path ***" << endl;
for (const pair<string, string> &dylib : loaderLibs) {
cout << dylib.first << " -- " << dylib.second << endl;
}
cout << "----------------------------------------------------------------" << endl;
cout << "*** @executabe_path ***" << endl;
for (const string &dylib : executableLibs) {
cout << dylib << endl;
}
cout << "----------------------------------------------------------------" << endl;
cout << "*** system libs ***" << endl;
for (const string &dylib : systemLibs) {
cout << dylib << endl;
}
cout << "----------------------------------------------------------------" << endl;
}
vector<string> toBeProcessedLibs;
set<string> processedLibs;
void libsReferred(const string &dylib)
{
string cmd{OTOOL};
cmd.append(dylib);
cmd.append(" | awk '{ print $1 }'");
// cout << "Calling " << cmd << endl;
FILE *fp;
char path[PATH_MAX];
fp = popen(cmd.c_str(), "r");
if (fp == nullptr) {
std::cerr << "Cannot open pipe to otool\n";
return;
}
// ignore 1st line, since it is the calling dylib
if (fgets(path, PATH_MAX, fp) == NULL) {
return;
}
while (fgets(path, PATH_MAX, fp) != NULL) {
char *pos = strchr(path, '\n');
if (pos == nullptr)
continue;
*pos = '\0';
// duplicate?
if (dylib.compare(path) == 0)
continue;
// system libs
if (startsWith(path, SYSTEM_LIBS) || startsWith(path, LIBS)) {
systemLibs.insert(path);
continue;
}
// @rpath
if (startsWith(path, RPATH)) {
// Collect for processing later on
rpathLibs.insert(path);
continue;
}
// @loader_path
if (startsWith(path, LOADER_PATH)) {
// Collect for processing later on
loaderLibs.push_back(make_pair(dylib, path));
// toBeProcessedLibs.push_back(LoaderPathResolver::loader_path(dylib, path));
continue;
}
// @executable_path
// Collect for processing later on
if (startsWith(path, EXECUTABLE_PATH)) {
executableLibs.insert(path);
continue;
}
toBeProcessedLibs.push_back(path);
}
pclose(fp);
while (!toBeProcessedLibs.empty()) {
string lib = toBeProcessedLibs.back();
toBeProcessedLibs.pop_back();
auto result = processedLibs.insert(lib);
if (result.second == true) {
cout << lib << endl;
libsReferred(lib);
}
}
}
int main(int argc, char *argv[])
{
if (argc == 1) {
std::cerr << "No dylib filename given!" << endl;
std::cerr << "usage: otoolrecursive [-vurels] <dylib file>\n";
return EXIT_FAILURE;
}
// Parsing command line arguments
for (int i = 1; i < argc; ++i) {
if (argv[i][0] == '-' && strlen(argv[i]) == 2) {
options.push_back(argv[i] + 1);
} else if (filesystem::exists(argv[i])) {
libFileName = filesystem::absolute(argv[i]);
pathToLibFileName = absPath(libFileName);
} else {
std::cerr << "usage: otoolrecursive [-vprelo] <dynlib file>\n";
return EXIT_FAILURE;
}
}
libsReferred(libFileName);
// containsLibs(libFileName);
if (std::count(options.begin(), options.end(), "v")) {
printLibs();
}
return EXIT_SUCCESS;
}
|