#include "content/public/browser/android/devtools_auth.h"
#include <pwd.h>
#include <sys/types.h>
#include <unistd.h>
#include <string_view>
#include "base/compiler_specific.h"
#include "base/logging.h"
namespace content {
bool CanUserConnectToDevTools(
const net::UnixDomainServerSocket::Credentials& credentials) {
struct passwd* creds = getpwuid(credentials.user_id);
if (!creds || !creds->pw_name) {
LOG(WARNING) << "DevTools: can't obtain creds for uid "
<< credentials.user_id;
return false;
}
if (credentials.group_id == credentials.user_id &&
(std::string_view("root") == creds->pw_name ||
std::string_view("shell") == creds->pw_name ||
credentials.user_id == getuid())) {
return true;
}
LOG(WARNING) << "DevTools: connection attempt from " << creds->pw_name;
return false;
}
}