summaryrefslogtreecommitdiff
path: root/src/common/scm_rev.cpp.in
blob: 9e4699be183ec496ed54c6b71fe66762e5d2743c (plain)
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
// SPDX-FileCopyrightText: 2014 Citra Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#include "common/scm_rev.h"

#include <fstream>
#include <string>
#include <fmt/format.h>

#define GIT_REV "@GIT_REV@"
#define GIT_BRANCH "@GIT_BRANCH@"
#define GIT_DESC "@GIT_DESC@"
#define BUILD_NAME "@REPO_NAME@"
#define BUILD_DATE "@BUILD_DATE@"
#define BUILD_FULLNAME "@BUILD_FULLNAME@"
#define BUILD_VERSION "@BUILD_VERSION@"
#define BUILD_ID "@BUILD_ID@"
#define TITLE_BAR_FORMAT_IDLE "@TITLE_BAR_FORMAT_IDLE@"
#define TITLE_BAR_FORMAT_RUNNING "@TITLE_BAR_FORMAT_RUNNING@"

namespace Common {

const char* g_scm_rev;
const char* g_scm_branch;
const char* g_scm_desc;
const char g_build_name[] = BUILD_NAME;
const char g_build_date[] = BUILD_DATE;
const char g_build_fullname[] = BUILD_FULLNAME;
const char g_build_version[] = BUILD_VERSION;
const char g_build_id[] = BUILD_ID;
const char g_title_bar_format_idle[] = TITLE_BAR_FORMAT_IDLE;
const char g_title_bar_format_running[] = TITLE_BAR_FORMAT_RUNNING;

/// Anonymizes SCM data
/// This is quite weak. But better than nothing.
class scm_encrypt {
    std::string m_scm_rev, m_scm_branch, m_scm_desc;

public:
    scm_encrypt() {
        // Get a key that is easy to obtain when asking the person directly but (usually) hard to
        // guess
        std::string key;
#ifdef __linux__
        if (!std::getline(std::ifstream("/proc/sys/kernel/hostname"), key))
            key = "linux_error_key";
#else
        // Not a good fallback, but better than nothing I guess?
        key = g_build_date;
#endif
        // Copy strings in place
        m_scm_rev = GIT_REV;
        m_scm_branch = GIT_BRANCH;
        m_scm_desc = GIT_DESC;
        // XOR each string with key
        auto key_it = key.begin();
        for (auto& string : {&m_scm_rev, &m_scm_branch, &m_scm_desc}) {
            for (auto& c : *string) {
                c ^= *key_it;
                if (++key_it == key.end())
                    key_it = key.begin();
            }
        }
        // Make each string human-readable
        for (auto& string : {&m_scm_rev, &m_scm_branch, &m_scm_desc}) {
            const std::string original = *string;
            string->clear();
            for (const auto c : original) {
                string->append(fmt::format("{:x}", unsigned(c)));
            }
            string->pop_back();
        }
        // Set pointers
        g_scm_rev = m_scm_rev.c_str();
        g_scm_branch = m_scm_branch.c_str();
        g_scm_desc = m_scm_desc.c_str();
    }
} scm_encrypt_instance;
} // namespace Common