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
|
/*
Copyright (C) 2021 The Falco Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#include "podman.h"
#include "container_engine/docker/lookup_request.h"
#include "procfs_utils.h"
#include "runc.h"
#include "sinsp.h"
#include <fstream>
using namespace libsinsp::container_engine;
using namespace libsinsp::runc;
std::string podman::m_api_sock = "/run/podman/podman.sock";
namespace {
constexpr const cgroup_layout ROOT_PODMAN_CGROUP_LAYOUT[] = {
{"/libpod-", ".scope"}, // podman
{nullptr, nullptr}
};
std::string get_systemd_cgroup(const sinsp_threadinfo *tinfo)
{
// the kernel driver does not return cgroups without subsystems (e.g. name=systemd)
// in the cgroups field, so we have to do a check here, and load /proc/pid/cgroups
// ourselves if needed
for(const auto& it : tinfo->m_cgroups)
{
if(it.first == "name=systemd")
{
return it.second;
}
}
std::stringstream cgroups_file;
cgroups_file << scap_get_host_root() << "/proc/" << tinfo->m_tid << "/cgroup";
std::ifstream cgroups(cgroups_file.str());
return libsinsp::procfs_utils::get_systemd_cgroup(cgroups);
}
int get_userns_root_uid(const sinsp_threadinfo *tinfo)
{
std::stringstream uid_map_file;
uid_map_file << scap_get_host_root() << "/proc/" << tinfo->m_tid << "/uid_map";
std::ifstream uid_map(uid_map_file.str());
return libsinsp::procfs_utils::get_userns_root_uid(uid_map);
}
// Check whether `tinfo` belongs to a podman container
//
// Returns the uid of the container owner:
// 0 for root containers,
// >0 for rootless containers,
// NO_MATCH if the process is not in a podman container
int detect_podman(const sinsp_threadinfo *tinfo, std::string& container_id)
{
std::string cgroup;
if(matches_runc_cgroups(tinfo, ROOT_PODMAN_CGROUP_LAYOUT, container_id, cgroup))
{
// User: /user.slice/user-1000.slice/user@1000.service/user.slice/libpod-$ID.scope/container
// Root: /machine.slice/libpod-$ID.scope/container
int uid;
if (sscanf(cgroup.c_str(), "/user.slice/user-%d.slice/", &uid) == 1)
{
return uid;
}
return 0; // root
}
std::string systemd_cgroup = get_systemd_cgroup(tinfo);
if(systemd_cgroup.empty())
{
// can't get the cgroup name
return libsinsp::procfs_utils::NO_MATCH;
}
size_t pos = systemd_cgroup.find("podman-");
if(pos == std::string::npos)
{
return libsinsp::procfs_utils::NO_MATCH;
}
int podman_pid; // unused except to set the sscanf return value
char c; // ^ same
if(sscanf(systemd_cgroup.c_str() + pos, "podman-%d.scope/%c", &podman_pid, &c) != 2)
{
// cgroup doesn't match the expected pattern
return libsinsp::procfs_utils::NO_MATCH;
}
if(!match_one_container_id(systemd_cgroup, ".scope/", "", container_id))
{
return libsinsp::procfs_utils::NO_MATCH;
}
int uid = get_userns_root_uid(tinfo);
if(uid == 0)
{
// root doesn't spawn rootless containers
return libsinsp::procfs_utils::NO_MATCH;
}
return uid;
}
}
bool podman::resolve(sinsp_threadinfo *tinfo, bool query_os_for_missing_info)
{
std::string container_id, api_sock;
int uid = detect_podman(tinfo, container_id);
switch(uid)
{
case 0: // root, use the default socket
api_sock = m_api_sock;
break;
case libsinsp::procfs_utils::NO_MATCH:
return false;
default: // rootless container, use the user's socket
api_sock = "/run/user/" + std::to_string(uid) + "/podman/podman.sock";
break;
}
docker_lookup_request request(container_id, api_sock, CT_PODMAN, uid, false);
return resolve_impl(tinfo, request, query_os_for_missing_info);
}
|