aboutsummaryrefslogtreecommitdiff
path: root/openssl/client/client.cxx
blob: 42c4f9209c650004c757286c814c0ad21befa8b2 (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
// file      : openssl/client/client.cxx -*- C++ -*-
// copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

#include <iostream> // cin, cout

#include <libbutl/pager.mxx>

#include <openssl/protocol.hxx>
#include <openssl/diagnostics.hxx>

#include <openssl/client/options.hxx>

namespace openssl
{
  namespace client
  {
    using namespace std;
    using namespace butl;

    static int
    main (int argc, char* argv[])
    try
    {
      // Parse the command/options.
      //
      string cmd;
      options ops;

      int i (1);
      if (argc > i && *argv[i] != '-')
        cmd = argv[i++];

      cli::argv_scanner scan (i, argc, argv);

      ops.parse (scan);

      // Version.
      //
      if (ops.version ())
      {
        cout << "openssl-client " << OPENSSL_AGENT_VERSION_ID << endl
             << "libbutl " << LIBBUTL_VERSION_ID << endl
             << "Copyright (c) 2014-2018 Code Synthesis Ltd" << endl
             << "This is free software released under the MIT license."
             << endl;

        return 0;
      }

      // Help.
      //
      if (ops.help ())
      {
        pager p ("openssl-client help", false);
        print_openssl_client_usage (p.stream ());

        // If the pager failed, assume it has issued some diagnostics.
        //
        return p.wait () ? 0 : 1;
      }

      if (cmd != "rsautl")
        fail << "openssl-client command expected" <<
          info << "run '" << argv[0] << " --help' for more information";

      if (!ops.sign ())
        fail << "-sign option is required";

      if (!ops.keyform_specified ())
        fail << "-keyform option is required";

      if (ops.keyform () != "engine")
        fail << "invalid value '" << ops.keyform ()
             << "' for option -keyform";

      if (!ops.engine_specified ())
        fail << "-engine option is required";

      if (ops.engine () != "pkcs11")
        fail << "invalid value '" << ops.engine () << "' for option -engine";

      if (!ops.inkey_specified ())
        fail << "-inkey option is required";

      // Obtain the agent socket path.
      //
      path sock_path;

      try
      {
        optional<string> p (getenv ("OPENSSL_AGENT_PKCS11_SOCK"));

        if (!p)
          fail << "OPENSSL_AGENT_PKCS11_SOCK environment variable is not set";

        sock_path = path (move (*p));
      }
      catch (const invalid_path& e)
      {
        fail << "invalid OPENSSL_AGENT_PKCS11_SOCK environment variable "
             << "value '" << e.path << "'";
      }

      // Read the data to sign from stdin.
      //
      vector<char> data;

      try
      {
        stdin_fdmode (fdstream_mode::binary);

        cin.exceptions (ostream::badbit | ostream::failbit);

        data = vector<char> (istreambuf_iterator<char> (cin),
                             istreambuf_iterator<char> ());
      }
      catch (const io_error&)
      {
        fail << "unable to read data from stdin";
      }

      // Sign the data.
      //
      vector<char> signature;

      try
      {
        auto_fd sock (connect (sock_path));

        ifdstream is (fddup (sock.get ()));
        ofdstream os (move  (sock));

        string s (ops.simulate_specified ()
                  ? to_string (ops.simulate ())
                  : "");

        os << request ("sign",
                       strings ({ops.inkey (), move (s)}),
                       move (data));
        os.close ();

        response r;
        is >> r;

        if (r.status != 0)
        {
          text << r.error;
          return r.status;
        }

        signature = move (r.output);
      }
      catch (const io_error&)
      {
        fail << "unable to communicate with openssl-agent-pkcs11";
      }

      // Write it out.
      //
      try
      {
        stdout_fdmode (fdstream_mode::binary);

        cout.exceptions (ostream::badbit | ostream::failbit);
        cout.write (signature.data (), signature.size ());
      }
      catch (const io_error&)
      {
        fail << "error: unable to write signature to stdout";
      }

      return 0;
    }
    catch (const failed&)
    {
      return 1; // Diagnostics has already been issued.
    }
    catch (const cli::exception& e)
    {
      error << e;
      return 1;
    }
  }
}

int
main (int argc, char* argv[])
{
  return openssl::client::main (argc, argv);
}