gcontini
2020-10-31 c8f8e0c1f0a3687539a92169735845814e18c187
src/library/os/linux/execution_environment.cpp
@@ -18,13 +18,14 @@
#include "../cpu_info.hpp"
#include "../execution_environment.hpp"
#include "../../base/file_utils.hpp"
#include "../../base/string_utils.h"
namespace license {
namespace os {
using namespace std;
// 0=NO 1=Docker/2=Lxc
static int checkContainerProc() {
static CONTAINER_TYPE checkContainerProc() {
   // in docer /proc/self/cgroups contains the "docker" or "lxc" string
   // https://stackoverflow.com/questions/23513045/how-to-check-if-a-process-is-running-inside-docker-container
   char path[MAX_PATH] = {0};
@@ -39,11 +40,11 @@
   char *line = NULL;
   size_t len = 0;
   ssize_t read;
   int result = 0;
   CONTAINER_TYPE result = CONTAINER_TYPE::NONE;
   fp = fopen(proc_path, "r");
   if (fp == NULL) {
      return 0;
      return CONTAINER_TYPE::NONE;
   }
   while ((read = getline(&line, &len, fp)) != -1 && result == 0) {
@@ -51,10 +52,10 @@
      // printf("Retrieved line of length %zu:\n", read);
      // printf("%s", line);
      if (strstr(line, "docker") != NULL) {
         result = 1;
         result = CONTAINER_TYPE::DOCKER;
      }
      if (strstr(line, "lxc") != NULL) {
         result = 2;
         result = CONTAINER_TYPE::LXC;
      }
   }
@@ -64,17 +65,17 @@
}
// 0=NO 1=Docker/2=Lxc
static int checkSystemdContainer() {
static CONTAINER_TYPE checkSystemdContainer() {
   ifstream systemd_container("/var/run/systemd/container");
   int result = 0;
   CONTAINER_TYPE result = CONTAINER_TYPE::NONE;
   if (systemd_container.good()) {
      result = 1;
      result = CONTAINER_TYPE::DOCKER;
      for (string line; getline(systemd_container, line);) {
         if (line.find("docker") != string::npos) {
            result = 1;
            result = CONTAINER_TYPE::DOCKER;
            break;
         } else if (line.find("lxc") != string::npos) {
            result = 2;
            result = CONTAINER_TYPE::LXC;
            break;
         }
      }
@@ -82,24 +83,15 @@
   return result;
}
ExecutionEnvironment::ExecutionEnvironment() {
   try {
      bios_vendor = get_file_contents("/sys/class/dmi/id/sys_vendor", 256);
   } catch (...) {
static CONTAINER_TYPE get_container_type() {
   CONTAINER_TYPE result = checkContainerProc();
   if (result == CONTAINER_TYPE::NONE) {
      result = checkSystemdContainer();
   }
   try {
      bios_description = get_file_contents("/sys/class/dmi/id/modalias", 256);
   } catch (...) {
   }
   try {
      sys_vendor = get_file_contents("/sys/class/dmi/id/sys_vendor", 256);
   } catch (...) {
   }
   return result;
}
bool ExecutionEnvironment::is_container() const { return (checkContainerProc() != 0 || checkSystemdContainer() != 0); }
bool ExecutionEnvironment::is_docker() const { return (checkContainerProc() == 1 || checkSystemdContainer() == 1); }
ExecutionEnvironment::ExecutionEnvironment() : m_container_type(get_container_type()) {}
}  // namespace os
}  // namespace license