aboutsummaryrefslogtreecommitdiffstats
path: root/src/core/function/gpg/GpgKeyManager.cpp
blob: 7afc356ae76a6a54560c2c1e9d481c7d98851caa (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
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
/**
 * Copyright (C) 2021 Saturneric <[email protected]>
 *
 * This file is part of GpgFrontend.
 *
 * GpgFrontend is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * GpgFrontend is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with GpgFrontend. If not, see <https://www.gnu.org/licenses/>.
 *
 * The initial version of the source code is inherited from
 * the gpg4usb project, which is under GPL-3.0-or-later.
 *
 * All the source code of GpgFrontend was modified and released by
 * Saturneric <[email protected]> starting on May 12, 2021.
 *
 * SPDX-License-Identifier: GPL-3.0-or-later
 *
 */

#include "GpgKeyManager.h"

#include <boost/algorithm/string.hpp>
#include <boost/date_time/posix_time/conversion.hpp>

#include "core/GpgModel.h"
#include "core/function/gpg/GpgBasicOperator.h"
#include "core/function/gpg/GpgKeyGetter.h"
#include "core/utils/GpgUtils.h"

GpgFrontend::GpgKeyManager::GpgKeyManager(int channel)
    : SingletonFunctionObject<GpgKeyManager>(channel) {}

auto GpgFrontend::GpgKeyManager::SignKey(
    const GpgFrontend::GpgKey& target, GpgFrontend::KeyArgsList& keys,
    const std::string& uid,
    const std::unique_ptr<boost::posix_time::ptime>& expires) -> bool {
  GpgBasicOperator::GetInstance().SetSigners(keys);

  unsigned int flags = 0;
  unsigned int expires_time_t = 0;

  if (expires == nullptr) {
    flags |= GPGME_KEYSIGN_NOEXPIRE;
  } else {
    expires_time_t = to_time_t(*expires);
  }

  auto err = CheckGpgError(
      gpgme_op_keysign(ctx_.DefaultContext(), static_cast<gpgme_key_t>(target),
                       uid.c_str(), expires_time_t, flags));

  return CheckGpgError(err) == GPG_ERR_NO_ERROR;
}

auto GpgFrontend::GpgKeyManager::RevSign(
    const GpgFrontend::GpgKey& key,
    const GpgFrontend::SignIdArgsListPtr& signature_id) -> bool {
  auto& key_getter = GpgKeyGetter::GetInstance();

  for (const auto& sign_id : *signature_id) {
    auto signing_key = key_getter.GetKey(sign_id.first);
    assert(signing_key.IsGood());
    auto err = CheckGpgError(
        gpgme_op_revsig(ctx_.DefaultContext(), gpgme_key_t(key),
                        gpgme_key_t(signing_key), sign_id.second.c_str(), 0));
    if (CheckGpgError(err) != GPG_ERR_NO_ERROR) return false;
  }
  return true;
}

auto GpgFrontend::GpgKeyManager::SetExpire(
    const GpgFrontend::GpgKey& key, std::unique_ptr<GpgSubKey>& subkey,
    std::unique_ptr<boost::posix_time::ptime>& expires) -> bool {
  using namespace boost::posix_time;

  unsigned long expires_time = 0;

  if (expires != nullptr) expires_time = to_time_t(ptime(*expires));

  const char* sub_fprs = nullptr;

  if (subkey != nullptr) sub_fprs = subkey->GetFingerprint().c_str();

  auto err = CheckGpgError(gpgme_op_setexpire(ctx_.DefaultContext(),
                                              static_cast<gpgme_key_t>(key),
                                              expires_time, sub_fprs, 0));

  return CheckGpgError(err) == GPG_ERR_NO_ERROR;
}

auto GpgFrontend::GpgKeyManager::SetOwnerTrustLevel(const GpgKey& key,
                                                    int trust_level) -> bool {
  if (trust_level < 0 || trust_level > 5) {
    SPDLOG_ERROR("illegal owner trust level: {}", trust_level);
  }

  AutomatonNextStateHandler next_state_handler =
      [](AutomatonState state, std::string status, std::string args) {
        SPDLOG_DEBUG("next_state_handler state: {}, gpg_status: {}, args: {}",
                     state, status, args);
        std::vector<std::string> tokens;
        boost::split(tokens, args, boost::is_any_of(" "));

        switch (state) {
          case AS_START:
            if (status == "GET_LINE" && args == "keyedit.prompt") {
              return AS_COMMAND;
            }
            return AS_ERROR;
          case AS_COMMAND:
            if (status == "GET_LINE" && args == "edit_ownertrust.value") {
              return AS_VALUE;
            }
            return AS_ERROR;
          case AS_VALUE:
            if (status == "GET_LINE" && args == "keyedit.prompt") {
              return AS_QUIT;
            } else if (status == "GET_BOOL" &&
                       args == "edit_ownertrust.set_ultimate.okay") {
              return AS_REALLY_ULTIMATE;
            }
            return AS_ERROR;
          case AS_REALLY_ULTIMATE:
            if (status == "GET_LINE" && args == "keyedit.prompt") {
              return AS_QUIT;
            }
            return AS_ERROR;
          case AS_QUIT:
            if (status == "GET_LINE" && args == "keyedit.save.okay") {
              return AS_SAVE;
            }
            return AS_ERROR;
          case AS_ERROR:
            if (status == "GET_LINE" && args == "keyedit.prompt") {
              return AS_QUIT;
            }
            return AS_ERROR;
          default:
            return AS_ERROR;
        };
      };

  AutomatonActionHandler action_handler =
      [trust_level](AutomatonHandelStruct& handler, AutomatonState state) {
        SPDLOG_DEBUG("action_handler state: {}", state);
        switch (state) {
          case AS_COMMAND:
            return std::string("trust");
          case AS_VALUE:
            handler.SetSuccess(true);
            return std::to_string(trust_level);
          case AS_REALLY_ULTIMATE:
            handler.SetSuccess(true);
            return std::string("Y");
          case AS_QUIT:
            return std::string("quit");
          case AS_SAVE:
            handler.SetSuccess(true);
            return std::string("Y");
          case AS_START:
          case AS_ERROR:
            return std::string("");
          default:
            return std::string("");
        }
        return std::string("");
      };

  auto key_fpr = key.GetFingerprint();
  AutomatonHandelStruct handel_struct(key_fpr);
  handel_struct.SetHandler(next_state_handler, action_handler);

  GpgData data_out;

  auto err = gpgme_op_interact(
      ctx_.DefaultContext(), static_cast<gpgme_key_t>(key), 0,
      GpgKeyManager::interactor_cb_fnc, (void*)&handel_struct, data_out);
  return CheckGpgError(err) == GPG_ERR_NO_ERROR && handel_struct.Success();
}

auto GpgFrontend::GpgKeyManager::interactor_cb_fnc(void* handle,
                                                   const char* status,
                                                   const char* args, int fd)
    -> gpgme_error_t {
  auto handle_struct = static_cast<AutomatonHandelStruct*>(handle);
  std::string status_s = status;
  std::string args_s = args;
  SPDLOG_DEBUG("cb start status: {}, args: {}, fd: {}, handle struct state: {}",
               status_s, args_s, fd, handle_struct->CuurentStatus());

  if (status_s == "KEY_CONSIDERED") {
    std::vector<std::string> tokens;
    boost::split(tokens, args, boost::is_any_of(" "));

    if (tokens.empty() || tokens[0] != handle_struct->KeyFpr()) {
      SPDLOG_ERROR("handle struct key fpr {} mismatch token: {}, exit...",
                   handle_struct->KeyFpr(), tokens[0]);
      return -1;
    }

    return 0;
  }

  if (status_s == "GOT_IT" || status_s.empty()) {
    SPDLOG_DEBUG("status GOT_IT, continue...");
    return 0;
  }

  AutomatonState next_state = handle_struct->NextState(status_s, args_s);
  if (next_state == AS_ERROR) {
    SPDLOG_DEBUG("handle struct next state caught error, skipping...");
    return GPG_ERR_FALSE;
  }

  if (next_state == AS_SAVE) {
    handle_struct->SetSuccess(true);
  }

  // set state and preform action
  handle_struct->SetStatus(next_state);
  Command cmd = handle_struct->Action();
  SPDLOG_DEBUG("handle struct action done, next state: {}, action cmd: {}",
               next_state, cmd);
  if (!cmd.empty()) {
    gpgme_io_write(fd, cmd.c_str(), cmd.size());
    gpgme_io_write(fd, "\n", 1);
  } else if (status_s == "GET_LINE") {
    // avoid trapping in this state
    return GPG_ERR_FALSE;
  }

  return 0;
}