File: mysql_ssl_rsa_setup.cc

package info (click to toggle)
mysql-8.0 8.0.43-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,273,924 kB
  • sloc: cpp: 4,684,605; ansic: 412,450; pascal: 108,398; java: 83,641; perl: 30,221; cs: 27,067; sql: 26,594; sh: 24,181; python: 21,816; yacc: 17,169; php: 11,522; xml: 7,388; javascript: 7,076; makefile: 2,194; lex: 1,075; awk: 670; asm: 520; objc: 183; ruby: 97; lisp: 86
file content (699 lines) | stat: -rw-r--r-- 21,940 bytes parent folder | download
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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
/*
   Copyright (c) 2015, 2025, Oracle and/or its affiliates.

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License, version 2.0,
   as published by the Free Software Foundation.

   This program is designed to work with certain software (including
   but not limited to OpenSSL) that is licensed under separate terms,
   as designated in a particular file or component or in included license
   documentation.  The authors of MySQL hereby grant you an additional
   permission to link the program and your derivative works with the
   separately licensed software that they have either included with
   the program or referenced in the documentation.

   This program 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, version 2.0, for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA
*/

#include "my_config.h"

#include <mysql_version.h>
#include <stdint.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <algorithm>
#include <array>
#include <cstdio>
#include <cstdlib>
#include <fstream>
#include <iostream>
#include <sstream>
#include <string>

#include "client/client_priv.h"
#include "client/logger.h"
#include "client/path.h"
#ifdef _WIN32
#include "m_ctype.h"
#endif
#include "my_alloc.h"
#include "my_compiler.h"
#include "my_dbug.h"
#include "my_default.h"
#include "my_dir.h"
#include "my_getopt.h"
#include "my_inttypes.h"
#include "my_io.h"
#include "my_macros.h"
#include "my_sys.h"
#include "mysql/service_mysql_alloc.h"
#include "print_version.h"
#include "welcome_copyright_notice.h" /* ORACLE_WELCOME_COPYRIGHT_NOTICE */

#ifdef HAVE_CHOWN
#include <pwd.h>
#endif

#include <openssl/ssl.h>

/* Forward declarations */

using namespace std;
typedef string Sql_string_t;

static Sql_string_t create_string(const char *ptr);

/* Global Variables */
enum certs {
  CA_CERT = 0,
  CA_KEY,
  CA_REQ,
  SERVER_CERT,
  SERVER_KEY,
  SERVER_REQ,
  CLIENT_CERT,
  CLIENT_KEY,
  CLIENT_REQ,
  PRIVATE_KEY,
  PUBLIC_KEY,
  OPENSSL_RND
};

enum extfiles { CAV3_EXT = 0, CERTV3_EXT };

constexpr const std::array rsa_key_sizes{2048, 2048, 2048, 3072, 7680, 15360};

Sql_string_t cert_files[] = {
    create_string("ca.pem"),          create_string("ca-key.pem"),
    create_string("ca-req.pem"),      create_string("server-cert.pem"),
    create_string("server-key.pem"),  create_string("server-req.pem"),
    create_string("client-cert.pem"), create_string("client-key.pem"),
    create_string("client-req.pem"),  create_string("private_key.pem"),
    create_string("public_key.pem"),  create_string(".rnd")};

Sql_string_t ext_files[] = {create_string("cav3.ext"),
                            create_string("certv3.ext")};

#define MAX_PATH_LEN \
  (FN_REFLEN - strlen(FN_DIRSEP) - cert_files[SERVER_CERT].length() - 1)
/*
  Highest number of fixed characters in subject line is 47:
  MySQL_SERVER_<suffix>_Auto_Generated_Server_Certificate
  Maximum size of subject is 64. So suffix can't be longer
  than 17 characters.
*/
#define MAX_SUFFIX_LEN 17

Log info(cout, "NOTE");
Log error(cerr, "ERROR");

char **defaults_argv = nullptr;
static char *opt_datadir = nullptr;
static char default_data_dir[] = MYSQL_DATADIR;
static char *opt_suffix = nullptr;
static char default_suffix[] = MYSQL_SERVER_VERSION;
#ifdef HAVE_CHOWN
static char *opt_userid = nullptr;
struct passwd *user_info = nullptr;
#endif /* HAVE_CHOWN */
Path dir_string;
Sql_string_t suffix_string;
bool opt_verbose;

static const char *load_default_groups[] = {"mysql_ssl_rsa_setup", "mysqld",
                                            nullptr};

static struct my_option my_options[] = {
    {"help", '?', "Display this help and exit.", nullptr, nullptr, nullptr,
     GET_NO_ARG, NO_ARG, 0, 0, 0, nullptr, 0, nullptr},
    {"verbose", 'v', "Be more verbose when running program", &opt_verbose,
     nullptr, nullptr, GET_BOOL, NO_ARG, false, 0, 0, nullptr, 0, nullptr},
    {"version", 'V', "Print program version and exit", nullptr, nullptr,
     nullptr, GET_NO_ARG, NO_ARG, 0, 0, 0, nullptr, 0, nullptr},
    {"datadir", 'd', "Directory to store generated files.", &opt_datadir,
     &opt_datadir, nullptr, GET_STR_ALLOC, REQUIRED_ARG,
     (longlong)&default_data_dir, 0, 0, nullptr, 0, nullptr},
    {"suffix", 's', "Suffix to be added in certificate subject line",
     &opt_suffix, &opt_suffix, nullptr, GET_STR_ALLOC, REQUIRED_ARG,
     (longlong)&default_suffix, 0, 0, nullptr, 0, nullptr},
#ifdef HAVE_CHOWN
    {"uid", 0, "The effective user id to be used for file permission",
     &opt_userid, &opt_userid, nullptr, GET_STR_ALLOC, REQUIRED_ARG, 0, 0, 0,
     nullptr, 0, nullptr},
#endif /* HAVE_CHOWN */
    /* END TOKEN */
    {nullptr, 0, nullptr, nullptr, nullptr, nullptr, GET_NO_ARG, NO_ARG, 0, 0,
     0, nullptr, 0, nullptr}};

/* Helper Functions */

/*
  Fetch the SSL security level
*/
int security_level(void) {
  int current_sec_level = 2;
#if OPENSSL_VERSION_NUMBER >= 0x10100000L
  /*
    create a temporary SSL_CTX, we're going to use it to fetch
    the current OpenSSL security level. So that we can generate
    keys accordingly.
  */
  SSL_CTX *temp_ssl_ctx = SSL_CTX_new(TLS_server_method());

  /* get the current security level */
  current_sec_level = SSL_CTX_get_security_level(temp_ssl_ctx);

  assert(current_sec_level <= 5);

  /* current range for security level is [1,5] */
  if (current_sec_level > 5)
    current_sec_level = 5;
  else if (current_sec_level <= 1)
    current_sec_level = 2;

  /* get rid of temp_ssl_ctx, we're done with it */
  SSL_CTX_free(temp_ssl_ctx);
#endif

  return current_sec_level;
}

/**
  The string class will break if constructed with a NULL pointer. This wrapper
  provides a systematic protection when importing char pointers.
 */
static Sql_string_t create_string(const char *ptr) {
  return (ptr ? Sql_string_t(ptr) : Sql_string_t(""));
}

static int execute_command(const Sql_string_t &command,
                           const Sql_string_t &error_message) {
  stringstream cmd_string;

  cmd_string << command;
  if (!opt_verbose) {
#ifndef _WIN32
    cmd_string << " > /dev/null 2>&1";
#else
    cmd_string << " > NUL 2>&1";
#endif /* _WIN32 */
  }

  info << "Executing : " << cmd_string.str() << endl;
  if (system(cmd_string.str().c_str())) {
    error << error_message << endl;
    return 1;
  }

  return 0;
}

static int set_file_pair_permission(const Sql_string_t &priv,
                                    const Sql_string_t &pub) {
  if (my_chmod(priv.c_str(), USER_READ | USER_WRITE, MYF(MY_FAE + MY_WME)) ||
      my_chmod(pub.c_str(), USER_READ | USER_WRITE | GROUP_READ | OTHERS_READ,
               MYF(MY_FAE + MY_WME))) {
    error << "Error setting file permissions for" << priv.c_str() << " and "
          << pub.c_str() << endl;
    return 1;
  }
#ifdef HAVE_CHOWN
  if (user_info) {
    if (chown(priv.c_str(), user_info->pw_uid, user_info->pw_gid) ||
        chown(pub.c_str(), user_info->pw_uid, user_info->pw_gid)) {
      error << "Failed to change file permission" << endl;
      return 1;
    }
  }
#endif /* HAVE_CHOWN */
  return 0;
}

static bool file_exists(const Sql_string_t &filename) {
  MY_STAT file_stat;
  if (my_stat(filename.c_str(), &file_stat, MYF(0)) == nullptr) return false;

  return true;
}

static int remove_file(const Sql_string_t &filename, bool report_error = true) {
  if (my_delete(filename.c_str(), MYF(0))) {
    if (report_error) error << "Error deleting : " << filename << endl;
    return 1;
  }
  return 0;
}

static void free_resources() {
  if (opt_datadir) my_free(opt_datadir);
  if (opt_suffix) my_free(opt_suffix);
#ifdef HAVE_CHOWN
  if (opt_userid) my_free(opt_userid);
#endif
}

class RSA_priv {
 public:
  explicit RSA_priv(uint32_t key_size) : m_key_size(key_size) {}

  ~RSA_priv() = default;

  Sql_string_t operator()(const Sql_string_t &key_file) {
    stringstream command;
    command << "openssl genrsa "
            << " -out " << key_file << " " << m_key_size;

    return command.str();
  }

 private:
  uint32_t m_key_size;
};

class RSA_pub {
 public:
  Sql_string_t operator()(const Sql_string_t &priv_key_file,
                          const Sql_string_t &pub_key_file) {
    stringstream command;
    command << "openssl rsa -in " << priv_key_file << " -pubout -out "
            << pub_key_file;
    return command.str();
  }
};

class X509_key {
 public:
  explicit X509_key(const Sql_string_t &version, uint32_t validity = 10 * 365L)
      : m_validity(validity) {
    m_subj_prefix << "-subj /CN=MySQL_Server_" << version;
  }

  Sql_string_t operator()(Sql_string_t suffix, const Sql_string_t &key_file,
                          const Sql_string_t &req_file,
                          const Sql_string_t &key_size) {
    stringstream command;
    command << "openssl req -newkey rsa:" << key_size << " -days " << m_validity
            << " -nodes -keyout " << key_file << " " << m_subj_prefix.str()
            << suffix << " -out " << req_file << " && openssl rsa -in "
            << key_file << " -out " << key_file;

    return command.str();
  }

 private:
  uint32_t m_validity;
  stringstream m_subj_prefix;
};

class X509v3_ext_writer {
 public:
  X509v3_ext_writer() {
    m_cav3_ext_options << "basicConstraints=CA:TRUE" << std::endl;

    m_certv3_ext_options << "basicConstraints=CA:FALSE" << std::endl;
  }
  ~X509v3_ext_writer() = default;

  bool operator()(const Sql_string_t &cav3_ext_file,
                  const Sql_string_t &certv3_ext_file) {
    if (!cav3_ext_file.length() || !certv3_ext_file.length()) return true;

    std::ofstream ext_file;

    ext_file.open(cav3_ext_file.c_str(), std::ios::out | std::ios::trunc);
    if (!ext_file.is_open()) return true;
    ext_file << m_cav3_ext_options.str();
    ext_file.close();

    ext_file.open(certv3_ext_file.c_str(), std::ios::out | std::ios::trunc);
    if (!ext_file.is_open()) {
      remove_file(cav3_ext_file.c_str(), false);
      return true;
    }
    ext_file << m_certv3_ext_options.str();
    ext_file.close();

    return false;
  }

 private:
  stringstream m_cav3_ext_options;
  stringstream m_certv3_ext_options;
};

class X509_cert {
 public:
  explicit X509_cert(uint32_t validity = 10 * 365L) : m_validity(validity) {}

  ~X509_cert() = default;

  Sql_string_t operator()(const Sql_string_t &req_file,
                          const Sql_string_t &cert_file, uint32_t serial,
                          bool self_signed, const Sql_string_t &sign_key_file,
                          const Sql_string_t &sign_cert_file,
                          const Sql_string_t &ext_file) {
    stringstream command;
    command << "openssl x509 -sha256 -days " << m_validity;
    command << " -extfile " << ext_file;
    command << " -set_serial " << serial << " -req -in " << req_file;
    if (self_signed)
      command << " -signkey " << sign_key_file;
    else
      command << " -CA " << sign_cert_file << " -CAkey " << sign_key_file;
    command << " -out " << cert_file;

    return command.str();
  }

 protected:
  uint32_t m_validity;
};

static void usage(void) {
  print_version();
  cout << (ORACLE_WELCOME_COPYRIGHT_NOTICE("2015")) << endl
       << "MySQL SSL Certificate and RSA Key Generation Utility" << endl
       << "Usage : " << my_progname << " [OPTIONS]" << endl;

  my_print_help(my_options);
  my_print_variables(my_options);
}

extern "C" {
static bool my_arguments_get_one_option(int optid, const struct my_option *,
                                        char *) {
  switch (optid) {
    case '?':
      usage();
      free_resources();
      exit(0);
    case 'V':
      print_version();
      free_resources();
      exit(0);
  }
  return false;
}
}

static inline bool is_not_alnum_underscore(char c) {
  return !(isalnum(c) || c == '_');
}

static bool check_suffix() {
  return (strcmp(opt_suffix, default_suffix) &&
          (find_if(suffix_string.begin(), suffix_string.end(),
                   is_not_alnum_underscore) != suffix_string.end()));
}

int main(int argc, char *argv[]) {
  int ret_val = 0;
  int sec_level = security_level();
  Sql_string_t openssl_check("openssl version");
  bool save_skip_unknown = my_getopt_skip_unknown;
  MEM_ROOT alloc{PSI_NOT_INSTRUMENTED, 512};

  MY_INIT(argv[0]);
  DBUG_TRACE;
  DBUG_PROCESS(argv[0]);

  CLIENT_WARN_DEPRECATED("mysql_ssl_rsa_setup", "the mysqld server");

  /* Parse options : Command Line/Config file */

#ifdef _WIN32
  /* Convert command line parameters from UTF16LE to UTF8MB4. */
  my_win_translate_command_line_args(&my_charset_utf8mb4_bin, &argc, &argv);
#endif
  my_getopt_use_args_separator = true;
  if (load_defaults("my", load_default_groups, &argc, &argv, &alloc)) {
    my_end(0);
    free_resources();
    exit(1);
  }

  MY_MODE file_creation_mode = get_file_perm(USER_READ | USER_WRITE);
  MY_MODE saved_umask = umask(~(file_creation_mode));

  defaults_argv = argv;
  my_getopt_use_args_separator = false;
  my_getopt_skip_unknown = true;

  if (handle_options(&argc, &argv, my_options, my_arguments_get_one_option)) {
    error << "Error parsing options" << endl;
    ret_val = 1;
    goto end;
  }

  my_getopt_skip_unknown = save_skip_unknown;

  /* Process opt_verbose */
  if (opt_verbose != true) info.enabled(false);

  /* Process opt_datadir */

  dir_string.path(create_string(opt_datadir));
  if (dir_string.to_str().length() > MAX_PATH_LEN) {
    error << "Dir path is too long" << endl;
    ret_val = 1;
    goto end;
  }

  if (!dir_string.normalize_path() || !dir_string.exists()) {
    error << "Failed to access directory pointed by --datadir. "
          << "Please make sure that directory exists and is "
          << "accessible by mysql_ssl_rsa_setup. Supplied value : "
          << dir_string.to_str() << endl;
    ret_val = 1;
    goto end;
  }

  info << "Destination directory: " << dir_string.to_str() << endl;

  /* Process opt_suffix */

  suffix_string.append(opt_suffix);
  if (suffix_string.length() > MAX_SUFFIX_LEN) {
    error << "Maximum number of characters allowed as the value for "
          << "--suffix are " << MAX_SUFFIX_LEN << endl;
    ret_val = 1;
    goto end;
  }

  if (check_suffix()) {
    error << "Invalid string for --suffix option. Either use default value for "
          << "the option or provide a string with alphanumeric characters "
          << "and/or _ only." << endl;
    ret_val = 1;
    goto end;
  }

  if ((ret_val = execute_command(openssl_check,
                                 "Could not find OpenSSL on the system"))) {
    goto end;
  } else {
    char save_wd[FN_REFLEN];
    bool files_exist = false;
    Sql_string_t verify("openssl verify -CAfile ");

    if (my_getwd(save_wd, FN_REFLEN - 1, MYF(MY_WME))) {
      error << "Error saving current working directory" << endl;
      ret_val = 1;
      goto end;
    }

    if (my_setwd(dir_string.to_str().c_str(), MYF(MY_WME))) {
      error << "Error changing working directory" << endl;
      ret_val = 1;
      goto end;
    }
#ifdef HAVE_CHOWN
    if (opt_userid && geteuid() == 0) {
      user_info = getpwnam(opt_userid);
      if (!user_info) {
        error << "Error fetching user information" << endl;
        ret_val = 1;
        goto end;
      }
    }
#endif /* HAVE_CHOWN */

    /*
      SSL Certificate Generation.
      1. Check for ca.pem, server_cert.pem and server_key.pem at
         the directory location provided by --dir.
      2. If none of these files are present, generate following
         files:
         ca.pem, ca_key.pem
         server_cert.pem, server_key.pem
         client_cert.pem, client_key.pem
      3. If everything goes smoothly, set permission on files.
    */

    files_exist = file_exists(cert_files[CA_CERT]) ||
                  file_exists(cert_files[SERVER_CERT]) ||
                  file_exists(cert_files[SERVER_KEY]);

    if (files_exist) {
      info << "Certificate files are present in given dir. Skipping generation."
           << endl;
    } else {
      Sql_string_t empty_string("");
      X509_key x509_key(suffix_string);
      X509_cert x509_cert;
      X509v3_ext_writer x509v3_ext_writer;

      /* Delete existing files if any */
      remove_file(cert_files[CA_REQ], false);
      remove_file(cert_files[SERVER_REQ], false);
      remove_file(cert_files[CLIENT_REQ], false);
      remove_file(cert_files[CLIENT_CERT], false);
      remove_file(cert_files[CLIENT_KEY], false);
      remove_file(cert_files[OPENSSL_RND], false);

      /* Remove existing v3 extension files */
      remove_file(ext_files[CAV3_EXT], false);
      remove_file(ext_files[CERTV3_EXT], false);

      /* Create v3 extension files */
      if (x509v3_ext_writer(ext_files[CAV3_EXT], ext_files[CERTV3_EXT]))
        goto end;

      /* Generate CA Key and Certificate */
      if ((ret_val =
               execute_command(x509_key("_Auto_Generated_CA_Certificate",
                                        cert_files[CA_KEY], cert_files[CA_REQ],
                                        to_string(rsa_key_sizes[sec_level])),
                               "Error generating ca_key.pem and ca_req.pem")))
        goto end;

      if ((ret_val = execute_command(
               x509_cert(cert_files[CA_REQ], cert_files[CA_CERT], 1, true,
                         cert_files[CA_KEY], empty_string, ext_files[CAV3_EXT]),
               "Error generating ca_cert.pem")))
        goto end;

      /* Generate Server Key and Certificate */
      if ((ret_val = execute_command(
               x509_key("_Auto_Generated_Server_Certificate",
                        cert_files[SERVER_KEY], cert_files[SERVER_REQ],
                        to_string(rsa_key_sizes[sec_level])),
               "Error generating server_key.pem and server_req.pem")))
        goto end;

      if ((ret_val = execute_command(
               x509_cert(cert_files[SERVER_REQ], cert_files[SERVER_CERT], 2,
                         false, cert_files[CA_KEY], cert_files[CA_CERT],
                         ext_files[CERTV3_EXT]),
               "Error generating server_cert.pem")))
        goto end;

      /* Generate Client Key and Certificate */
      if ((ret_val = execute_command(
               x509_key("_Auto_Generated_Client_Certificate",
                        cert_files[CLIENT_KEY], cert_files[CLIENT_REQ],
                        to_string(rsa_key_sizes[sec_level])),
               "Error generating client_key.pem and client_req.pem")))
        goto end;

      if ((ret_val = execute_command(
               x509_cert(cert_files[CLIENT_REQ], cert_files[CLIENT_CERT], 3,
                         false, cert_files[CA_KEY], cert_files[CA_CERT],
                         ext_files[CERTV3_EXT]),
               "Error generating client_cert.pem")))
        goto end;

      /* Verify generated certificates */
      verify.append(cert_files[CA_CERT]);
      verify.append(" ");
      verify.append(cert_files[SERVER_CERT]);
      verify.append(" ");
      verify.append(cert_files[CLIENT_CERT]);
      if ((ret_val = execute_command(
               verify, "Verification of X509 certificates failed.")))
        goto end;

      /* Set permission */
      if ((ret_val = (set_file_pair_permission(cert_files[CA_KEY],
                                               cert_files[CA_CERT]) |
                      set_file_pair_permission(cert_files[SERVER_KEY],
                                               cert_files[SERVER_CERT]) |
                      set_file_pair_permission(cert_files[CLIENT_KEY],
                                               cert_files[CLIENT_CERT]))))
        goto end;

      /* Remove request files : Flag an error if we can't delete them. */
      if ((ret_val = remove_file(cert_files[CA_REQ]))) goto end;

      if ((ret_val = remove_file(cert_files[SERVER_REQ]))) goto end;

      if ((ret_val = remove_file(cert_files[CLIENT_REQ]))) goto end;

      remove_file(cert_files[OPENSSL_RND], false);

      /* Remove existing v3 extension files */
      remove_file(ext_files[CAV3_EXT], false);
      remove_file(ext_files[CERTV3_EXT], false);
    }

    /*
      RSA Key pair generation.
      1. Check if private_key.pem or public_key.pem are present at
         the directory location provided by --dir.
      2. If not, generate private_key.pem, public_key.pem and
         set permission after successful generation.
    */

    files_exist = file_exists(cert_files[PRIVATE_KEY]) ||
                  file_exists(cert_files[PUBLIC_KEY]);

    if (files_exist) {
      info << "RSA key files are present in given dir. Skipping generation."
           << endl;
    } else {
      RSA_priv rsa_priv(rsa_key_sizes[sec_level]);
      RSA_pub rsa_pub;

      /* Remove existing file if any */
      remove_file(cert_files[OPENSSL_RND], false);

      if ((ret_val = execute_command(rsa_priv(cert_files[PRIVATE_KEY]),
                                     "Error generating private_key.pem")))
        goto end;

      if ((ret_val = execute_command(
               rsa_pub(cert_files[PRIVATE_KEY], cert_files[PUBLIC_KEY]),
               "Error generating public_key.pem")))
        goto end;
      /* Set Permission */
      if ((ret_val = set_file_pair_permission(cert_files[PRIVATE_KEY],
                                              cert_files[PUBLIC_KEY])))
        goto end;

      remove_file(cert_files[OPENSSL_RND], false);
    }

    if (my_setwd(save_wd, MYF(MY_WME))) {
      error << "Error changing working directory" << endl;
      ret_val = 1;
      goto end;
    }
  }

  info << "Success!" << endl;

end:

  umask(saved_umask);
  free_resources();

  return ret_val;
}