[BACK]Return to ca.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / openssl

Annotation of src/usr.bin/openssl/ca.c, Revision 1.50

1.50    ! tb          1: /* $OpenBSD: ca.c,v 1.49 2021/09/05 04:05:14 inoguchi Exp $ */
1.1       jsing       2: /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
                      3:  * All rights reserved.
                      4:  *
                      5:  * This package is an SSL implementation written
                      6:  * by Eric Young (eay@cryptsoft.com).
                      7:  * The implementation was written so as to conform with Netscapes SSL.
                      8:  *
                      9:  * This library is free for commercial and non-commercial use as long as
                     10:  * the following conditions are aheared to.  The following conditions
                     11:  * apply to all code found in this distribution, be it the RC4, RSA,
                     12:  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
                     13:  * included with this distribution is covered by the same copyright terms
                     14:  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
                     15:  *
                     16:  * Copyright remains Eric Young's, and as such any Copyright notices in
                     17:  * the code are not to be removed.
                     18:  * If this package is used in a product, Eric Young should be given attribution
                     19:  * as the author of the parts of the library used.
                     20:  * This can be in the form of a textual message at program startup or
                     21:  * in documentation (online or textual) provided with the package.
                     22:  *
                     23:  * Redistribution and use in source and binary forms, with or without
                     24:  * modification, are permitted provided that the following conditions
                     25:  * are met:
                     26:  * 1. Redistributions of source code must retain the copyright
                     27:  *    notice, this list of conditions and the following disclaimer.
                     28:  * 2. Redistributions in binary form must reproduce the above copyright
                     29:  *    notice, this list of conditions and the following disclaimer in the
                     30:  *    documentation and/or other materials provided with the distribution.
                     31:  * 3. All advertising materials mentioning features or use of this software
                     32:  *    must display the following acknowledgement:
                     33:  *    "This product includes cryptographic software written by
                     34:  *     Eric Young (eay@cryptsoft.com)"
                     35:  *    The word 'cryptographic' can be left out if the rouines from the library
                     36:  *    being used are not cryptographic related :-).
                     37:  * 4. If you include any Windows specific code (or a derivative thereof) from
                     38:  *    the apps directory (application code) you must include an acknowledgement:
                     39:  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
                     40:  *
                     41:  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
                     42:  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
                     43:  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
                     44:  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
                     45:  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
                     46:  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
                     47:  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
                     48:  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
                     49:  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
                     50:  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
                     51:  * SUCH DAMAGE.
                     52:  *
                     53:  * The licence and distribution terms for any publically available version or
                     54:  * derivative of this code cannot be changed.  i.e. this code cannot simply be
                     55:  * copied and put under another distribution licence
                     56:  * [including the GNU Public Licence.]
                     57:  */
                     58:
                     59: /* The PPKI stuff has been donated by Jeff Barber <jeffb@issl.atl.hp.com> */
                     60:
                     61: #include <sys/types.h>
                     62:
                     63: #include <ctype.h>
                     64: #include <stdio.h>
                     65: #include <stdlib.h>
                     66: #include <limits.h>
                     67: #include <string.h>
                     68: #include <unistd.h>
                     69:
                     70: #include "apps.h"
                     71:
                     72: #include <openssl/bio.h>
                     73: #include <openssl/bn.h>
                     74: #include <openssl/conf.h>
                     75: #include <openssl/err.h>
                     76: #include <openssl/evp.h>
                     77: #include <openssl/objects.h>
                     78: #include <openssl/ocsp.h>
                     79: #include <openssl/pem.h>
                     80: #include <openssl/txt_db.h>
                     81: #include <openssl/x509.h>
                     82: #include <openssl/x509v3.h>
                     83:
                     84: #define BASE_SECTION           "ca"
                     85:
                     86: #define ENV_DEFAULT_CA         "default_ca"
                     87:
                     88: #define STRING_MASK            "string_mask"
                     89: #define UTF8_IN                        "utf8"
                     90:
                     91: #define ENV_NEW_CERTS_DIR      "new_certs_dir"
                     92: #define ENV_CERTIFICATE        "certificate"
                     93: #define ENV_SERIAL             "serial"
                     94: #define ENV_CRLNUMBER          "crlnumber"
                     95: #define ENV_PRIVATE_KEY                "private_key"
                     96: #define ENV_DEFAULT_DAYS       "default_days"
                     97: #define ENV_DEFAULT_STARTDATE  "default_startdate"
                     98: #define ENV_DEFAULT_ENDDATE    "default_enddate"
                     99: #define ENV_DEFAULT_CRL_DAYS   "default_crl_days"
                    100: #define ENV_DEFAULT_CRL_HOURS  "default_crl_hours"
                    101: #define ENV_DEFAULT_MD         "default_md"
                    102: #define ENV_DEFAULT_EMAIL_DN   "email_in_dn"
                    103: #define ENV_PRESERVE           "preserve"
                    104: #define ENV_POLICY             "policy"
                    105: #define ENV_EXTENSIONS         "x509_extensions"
                    106: #define ENV_CRLEXT             "crl_extensions"
                    107: #define ENV_MSIE_HACK          "msie_hack"
                    108: #define ENV_NAMEOPT            "name_opt"
                    109: #define ENV_CERTOPT            "cert_opt"
                    110: #define ENV_EXTCOPY            "copy_extensions"
                    111: #define ENV_UNIQUE_SUBJECT     "unique_subject"
                    112:
                    113: #define ENV_DATABASE           "database"
                    114:
                    115: /* Additional revocation information types */
                    116:
                    117: #define REV_NONE               0       /* No addditional information */
                    118: #define REV_CRL_REASON         1       /* Value is CRL reason code */
                    119: #define REV_HOLD               2       /* Value is hold instruction */
                    120: #define REV_KEY_COMPROMISE     3       /* Value is cert key compromise time */
                    121: #define REV_CA_COMPROMISE      4       /* Value is CA key compromise time */
                    122:
                    123: static void lookup_fail(const char *name, const char *tag);
1.31      inoguchi  124: static int certify(X509 **xret, char *infile, EVP_PKEY *pkey, X509 *x509,
                    125:     const EVP_MD *dgst, STACK_OF(OPENSSL_STRING) *sigopts,
                    126:     STACK_OF(CONF_VALUE) *policy, CA_DB *db, BIGNUM *serial, char *subj,
1.1       jsing     127:     unsigned long chtype, int multirdn, int email_dn, char *startdate,
1.31      inoguchi  128:     char *enddate, long days, int batch, char *ext_sect, CONF *conf,
1.1       jsing     129:     int verbose, unsigned long certopt, unsigned long nameopt,
                    130:     int default_op, int ext_copy, int selfsign);
1.31      inoguchi  131: static int certify_cert(X509 **xret, char *infile, EVP_PKEY *pkey,
                    132:     X509 *x509, const EVP_MD *dgst, STACK_OF(OPENSSL_STRING) *sigopts,
                    133:     STACK_OF(CONF_VALUE) *policy, CA_DB *db, BIGNUM *serial, char *subj,
1.1       jsing     134:     unsigned long chtype, int multirdn, int email_dn, char *startdate,
1.31      inoguchi  135:     char *enddate, long days, int batch, char *ext_sect, CONF *conf,
1.1       jsing     136:     int verbose, unsigned long certopt, unsigned long nameopt, int default_op,
1.12      bcook     137:     int ext_copy);
1.31      inoguchi  138: static int certify_spkac(X509 **xret, char *infile, EVP_PKEY *pkey,
                    139:     X509 *x509, const EVP_MD *dgst, STACK_OF(OPENSSL_STRING) *sigopts,
                    140:     STACK_OF(CONF_VALUE) *policy, CA_DB *db, BIGNUM *serial, char *subj,
1.1       jsing     141:     unsigned long chtype, int multirdn, int email_dn, char *startdate,
1.31      inoguchi  142:     char *enddate, long days, char *ext_sect, CONF *conf, int verbose,
1.1       jsing     143:     unsigned long certopt, unsigned long nameopt, int default_op, int ext_copy);
1.36      inoguchi  144: static int write_new_certificate(BIO *bp, X509 *x, int output_der,
1.1       jsing     145:     int notext);
1.31      inoguchi  146: static int do_body(X509 **xret, EVP_PKEY *pkey, X509 *x509,
                    147:     const EVP_MD *dgst, STACK_OF(OPENSSL_STRING) *sigopts,
                    148:     STACK_OF(CONF_VALUE) *policy, CA_DB *db, BIGNUM *serial, char *subj,
1.1       jsing     149:     unsigned long chtype, int multirdn, int email_dn, char *startdate,
1.31      inoguchi  150:     char *enddate, long days, int batch, int verbose, X509_REQ *req,
                    151:     char *ext_sect, CONF *conf, unsigned long certopt, unsigned long nameopt,
1.1       jsing     152:     int default_op, int ext_copy, int selfsign);
1.31      inoguchi  153: static int do_revoke(X509 *x509, CA_DB *db, int ext, char *extval);
                    154: static int get_certificate_status(const char *serial, CA_DB *db);
                    155: static int do_updatedb(CA_DB *db);
1.1       jsing     156: static int check_time_format(const char *str);
1.31      inoguchi  157: static char *bin2hex(unsigned char *, size_t);
1.1       jsing     158: char *make_revocation_str(int rev_type, char *rev_arg);
1.31      inoguchi  159: int make_revoked(X509_REVOKED *rev, const char *str);
                    160: int old_entry_print(BIO *bp, ASN1_OBJECT *obj, ASN1_STRING *str);
1.29      inoguchi  161:
1.1       jsing     162: static CONF *conf = NULL;
                    163: static CONF *extconf = NULL;
                    164:
1.29      inoguchi  165: static struct {
                    166:        int batch;
                    167:        char *certfile;
                    168:        unsigned long chtype;
                    169:        char *configfile;
1.30      inoguchi  170:        int create_serial;
1.29      inoguchi  171:        char *crl_ext;
                    172:        long crldays;
                    173:        long crlhours;
                    174:        long crlsec;
                    175:        long days;
                    176:        int dorevoke;
                    177:        int doupdatedb;
                    178:        int email_dn;
                    179:        char *enddate;
                    180:        char *extensions;
                    181:        char *extfile;
                    182:        int gencrl;
                    183:        char *infile;
                    184:        char **infiles;
                    185:        int infiles_num;
                    186:        char *key;
                    187:        char *keyfile;
                    188:        int keyform;
                    189:        char *md;
                    190:        int multirdn;
                    191:        int msie_hack;
                    192:        int notext;
                    193:        char *outdir;
                    194:        char *outfile;
                    195:        char *passargin;
                    196:        char *policy;
                    197:        int preserve;
                    198:        int req;
                    199:        char *rev_arg;
                    200:        int rev_type;
1.30      inoguchi  201:        char *serial_status;
1.29      inoguchi  202:        char *section;
                    203:        int selfsign;
1.31      inoguchi  204:        STACK_OF(OPENSSL_STRING) *sigopts;
1.29      inoguchi  205:        char *spkac_file;
                    206:        char *ss_cert_file;
                    207:        char *startdate;
                    208:        char *subj;
                    209:        int verbose;
                    210: } ca_config;
                    211:
                    212: static int
                    213: ca_opt_chtype_utf8(void)
                    214: {
                    215:        ca_config.chtype = MBSTRING_UTF8;
                    216:        return (0);
                    217: }
                    218:
                    219: static int
                    220: ca_opt_crl_ca_compromise(char *arg)
                    221: {
                    222:        ca_config.rev_arg = arg;
                    223:        ca_config.rev_type = REV_CA_COMPROMISE;
                    224:        return (0);
                    225: }
                    226:
                    227: static int
                    228: ca_opt_crl_compromise(char *arg)
                    229: {
                    230:        ca_config.rev_arg = arg;
                    231:        ca_config.rev_type = REV_KEY_COMPROMISE;
                    232:        return (0);
                    233: }
                    234:
                    235: static int
                    236: ca_opt_crl_hold(char *arg)
                    237: {
                    238:        ca_config.rev_arg = arg;
                    239:        ca_config.rev_type = REV_HOLD;
                    240:        return (0);
                    241: }
                    242:
                    243: static int
                    244: ca_opt_crl_reason(char *arg)
                    245: {
                    246:        ca_config.rev_arg = arg;
                    247:        ca_config.rev_type = REV_CRL_REASON;
                    248:        return (0);
                    249: }
1.1       jsing     250:
1.29      inoguchi  251: static int
                    252: ca_opt_in(char *arg)
                    253: {
                    254:        ca_config.infile = arg;
                    255:        ca_config.req = 1;
                    256:        return (0);
                    257: }
                    258:
                    259: static int
                    260: ca_opt_infiles(int argc, char **argv, int *argsused)
                    261: {
                    262:        ca_config.infiles_num = argc - 1;
                    263:        if (ca_config.infiles_num < 1)
                    264:                return (1);
                    265:        ca_config.infiles = argv + 1;
                    266:        ca_config.req = 1;
                    267:        *argsused = argc;
                    268:        return (0);
                    269: }
                    270:
                    271: static int
                    272: ca_opt_revoke(char *arg)
                    273: {
                    274:        ca_config.infile = arg;
                    275:        ca_config.dorevoke = 1;
                    276:        return (0);
                    277: }
                    278:
                    279: static int
                    280: ca_opt_sigopt(char *arg)
                    281: {
                    282:        if (ca_config.sigopts == NULL)
                    283:                ca_config.sigopts = sk_OPENSSL_STRING_new_null();
                    284:        if (ca_config.sigopts == NULL)
                    285:                return (1);
                    286:        if (!sk_OPENSSL_STRING_push(ca_config.sigopts, arg))
                    287:                return (1);
                    288:        return (0);
                    289: }
                    290:
                    291: static int
                    292: ca_opt_spkac(char *arg)
                    293: {
                    294:        ca_config.spkac_file = arg;
                    295:        ca_config.req = 1;
                    296:        return (0);
                    297: }
                    298:
                    299: static int
                    300: ca_opt_ss_cert(char *arg)
                    301: {
                    302:        ca_config.ss_cert_file = arg;
                    303:        ca_config.req = 1;
                    304:        return (0);
                    305: }
                    306:
                    307: static const struct option ca_options[] = {
                    308:        {
                    309:                .name = "batch",
                    310:                .desc = "Operate in batch mode",
                    311:                .type = OPTION_FLAG,
                    312:                .opt.flag = &ca_config.batch,
                    313:        },
                    314:        {
                    315:                .name = "cert",
                    316:                .argname = "file",
                    317:                .desc = "File containing the CA certificate",
                    318:                .type = OPTION_ARG,
                    319:                .opt.arg = &ca_config.certfile,
                    320:        },
                    321:        {
                    322:                .name = "config",
                    323:                .argname = "file",
                    324:                .desc = "Specify an alternative configuration file",
                    325:                .type = OPTION_ARG,
                    326:                .opt.arg = &ca_config.configfile,
                    327:        },
                    328:        {
                    329:                .name = "create_serial",
                    330:                .desc = "If reading serial fails, create a new random serial",
                    331:                .type = OPTION_FLAG,
1.30      inoguchi  332:                .opt.flag = &ca_config.create_serial,
1.29      inoguchi  333:        },
                    334:        {
                    335:                .name = "crl_CA_compromise",
                    336:                .argname = "time",
                    337:                .desc = "Set the compromise time and the revocation reason to\n"
                    338:                    "CACompromise",
                    339:                .type = OPTION_ARG_FUNC,
                    340:                .opt.argfunc = ca_opt_crl_ca_compromise,
                    341:        },
                    342:        {
                    343:                .name = "crl_compromise",
                    344:                .argname = "time",
                    345:                .desc = "Set the compromise time and the revocation reason to\n"
                    346:                    "keyCompromise",
                    347:                .type = OPTION_ARG_FUNC,
                    348:                .opt.argfunc = ca_opt_crl_compromise,
                    349:        },
                    350:        {
                    351:                .name = "crl_hold",
                    352:                .argname = "instruction",
                    353:                .desc = "Set the hold instruction and the revocation reason to\n"
                    354:                    "certificateHold",
                    355:                .type = OPTION_ARG_FUNC,
                    356:                .opt.argfunc = ca_opt_crl_hold,
                    357:        },
                    358:        {
                    359:                .name = "crl_reason",
                    360:                .argname = "reason",
                    361:                .desc = "Revocation reason",
                    362:                .type = OPTION_ARG_FUNC,
                    363:                .opt.argfunc = ca_opt_crl_reason,
                    364:        },
                    365:        {
                    366:                .name = "crldays",
                    367:                .argname = "days",
                    368:                .desc = "Number of days before the next CRL is due",
                    369:                .type = OPTION_ARG_LONG,
                    370:                .opt.lvalue = &ca_config.crldays,
                    371:        },
                    372:        {
                    373:                .name = "crlexts",
                    374:                .argname = "section",
                    375:                .desc = "CRL extension section (override value in config file)",
                    376:                .type = OPTION_ARG,
                    377:                .opt.arg = &ca_config.crl_ext,
                    378:        },
                    379:        {
                    380:                .name = "crlhours",
                    381:                .argname = "hours",
                    382:                .desc = "Number of hours before the next CRL is due",
                    383:                .type = OPTION_ARG_LONG,
                    384:                .opt.lvalue = &ca_config.crlhours,
                    385:        },
                    386:        {
                    387:                .name = "crlsec",
                    388:                .argname = "seconds",
                    389:                .desc = "Number of seconds before the next CRL is due",
                    390:                .type = OPTION_ARG_LONG,
                    391:                .opt.lvalue = &ca_config.crlsec,
                    392:        },
                    393:        {
                    394:                .name = "days",
                    395:                .argname = "arg",
                    396:                .desc = "Number of days to certify the certificate for",
                    397:                .type = OPTION_ARG_LONG,
                    398:                .opt.lvalue = &ca_config.days,
                    399:        },
                    400:        {
                    401:                .name = "enddate",
                    402:                .argname = "YYMMDDHHMMSSZ",
                    403:                .desc = "Certificate validity notAfter (overrides -days)",
                    404:                .type = OPTION_ARG,
                    405:                .opt.arg = &ca_config.enddate,
                    406:        },
                    407:        {
                    408:                .name = "extensions",
                    409:                .argname = "section",
                    410:                .desc = "Extension section (override value in config file)",
                    411:                .type = OPTION_ARG,
                    412:                .opt.arg = &ca_config.extensions,
                    413:        },
                    414:        {
                    415:                .name = "extfile",
                    416:                .argname = "file",
                    417:                .desc = "Configuration file with X509v3 extentions to add",
                    418:                .type = OPTION_ARG,
                    419:                .opt.arg = &ca_config.extfile,
                    420:        },
                    421:        {
                    422:                .name = "gencrl",
                    423:                .desc = "Generate a new CRL",
                    424:                .type = OPTION_FLAG,
                    425:                .opt.flag = &ca_config.gencrl,
                    426:        },
                    427:        {
                    428:                .name = "in",
                    429:                .argname = "file",
                    430:                .desc = "Input file containing a single certificate request",
                    431:                .type = OPTION_ARG_FUNC,
                    432:                .opt.argfunc = ca_opt_in,
                    433:        },
                    434:        {
                    435:                .name = "infiles",
                    436:                .argname = "...",
                    437:                .desc = "The last argument, certificate requests to process",
                    438:                .type = OPTION_ARGV_FUNC,
                    439:                .opt.argvfunc = ca_opt_infiles,
                    440:        },
                    441:        {
                    442:                .name = "key",
                    443:                .argname = "password",
                    444:                .desc = "Key to decode the private key if it is encrypted",
                    445:                .type = OPTION_ARG,
                    446:                .opt.arg = &ca_config.key,
                    447:        },
                    448:        {
                    449:                .name = "keyfile",
                    450:                .argname = "file",
                    451:                .desc = "Private key file",
                    452:                .type = OPTION_ARG,
                    453:                .opt.arg = &ca_config.keyfile,
                    454:        },
                    455:        {
                    456:                .name = "keyform",
                    457:                .argname = "fmt",
                    458:                .desc = "Private key file format (DER or PEM (default))",
                    459:                .type = OPTION_ARG_FORMAT,
                    460:                .opt.value = &ca_config.keyform,
                    461:        },
                    462:        {
                    463:                .name = "md",
                    464:                .argname = "alg",
                    465:                .desc = "Message digest to use",
                    466:                .type = OPTION_ARG,
                    467:                .opt.arg = &ca_config.md,
                    468:        },
                    469:        {
                    470:                .name = "msie_hack",
                    471:                .type = OPTION_FLAG,
                    472:                .opt.flag = &ca_config.msie_hack,
                    473:        },
                    474:        {
                    475:                .name = "multivalue-rdn",
                    476:                .desc = "Enable support for multivalued RDNs",
                    477:                .type = OPTION_FLAG,
                    478:                .opt.flag = &ca_config.multirdn,
                    479:        },
                    480:        {
                    481:                .name = "name",
                    482:                .argname = "section",
                    483:                .desc = "Specifies the configuration file section to use",
                    484:                .type = OPTION_ARG,
                    485:                .opt.arg = &ca_config.section,
                    486:        },
                    487:        {
                    488:                .name = "noemailDN",
                    489:                .desc = "Do not add the EMAIL field to the DN",
                    490:                .type = OPTION_VALUE,
                    491:                .opt.value = &ca_config.email_dn,
                    492:                .value = 0,
                    493:        },
                    494:        {
                    495:                .name = "notext",
                    496:                .desc = "Do not print the generated certificate",
                    497:                .type = OPTION_FLAG,
                    498:                .opt.flag = &ca_config.notext,
                    499:        },
                    500:        {
                    501:                .name = "out",
                    502:                .argname = "file",
                    503:                .desc = "Output file (default stdout)",
                    504:                .type = OPTION_ARG,
                    505:                .opt.arg = &ca_config.outfile,
                    506:        },
                    507:        {
                    508:                .name = "outdir",
                    509:                .argname = "directory",
                    510:                .desc = " Directory to output certificates to",
                    511:                .type = OPTION_ARG,
                    512:                .opt.arg = &ca_config.outdir,
                    513:        },
                    514:        {
                    515:                .name = "passin",
                    516:                .argname = "src",
                    517:                .desc = "Private key input password source",
                    518:                .type = OPTION_ARG,
                    519:                .opt.arg = &ca_config.passargin,
                    520:        },
                    521:        {
                    522:                .name = "policy",
                    523:                .argname = "name",
                    524:                .desc = "The CA 'policy' to support",
                    525:                .type = OPTION_ARG,
                    526:                .opt.arg = &ca_config.policy,
                    527:        },
                    528:        {
                    529:                .name = "preserveDN",
                    530:                .desc = "Do not re-order the DN",
                    531:                .type = OPTION_FLAG,
                    532:                .opt.flag = &ca_config.preserve,
                    533:        },
                    534:        {
                    535:                .name = "revoke",
                    536:                .argname = "file",
                    537:                .desc = "Revoke a certificate (given in file)",
                    538:                .type = OPTION_ARG_FUNC,
                    539:                .opt.argfunc = ca_opt_revoke,
                    540:        },
                    541:        {
                    542:                .name = "selfsign",
                    543:                .desc = "Sign a certificate using the key associated with it",
                    544:                .type = OPTION_FLAG,
                    545:                .opt.flag = &ca_config.selfsign,
                    546:        },
                    547:        {
                    548:                .name = "sigopt",
                    549:                .argname = "nm:v",
                    550:                .desc = "Signature parameter in nm:v form",
                    551:                .type = OPTION_ARG_FUNC,
                    552:                .opt.argfunc = ca_opt_sigopt,
                    553:        },
                    554:        {
                    555:                .name = "spkac",
                    556:                .argname = "file",
                    557:                .desc = "File contains DN and signed public key and challenge",
                    558:                .type = OPTION_ARG_FUNC,
                    559:                .opt.argfunc = ca_opt_spkac,
                    560:        },
                    561:        {
                    562:                .name = "ss_cert",
                    563:                .argname = "file",
                    564:                .desc = "File contains a self signed certificate to sign",
                    565:                .type = OPTION_ARG_FUNC,
                    566:                .opt.argfunc = ca_opt_ss_cert,
                    567:        },
                    568:        {
                    569:                .name = "startdate",
                    570:                .argname = "YYMMDDHHMMSSZ",
                    571:                .desc = "Certificate validity notBefore",
                    572:                .type = OPTION_ARG,
                    573:                .opt.arg = &ca_config.startdate,
                    574:        },
                    575:        {
                    576:                .name = "status",
                    577:                .argname = "serial",
                    578:                .desc = "Shows certificate status given the serial number",
                    579:                .type = OPTION_ARG,
1.30      inoguchi  580:                .opt.arg = &ca_config.serial_status,
1.29      inoguchi  581:        },
                    582:        {
                    583:                .name = "subj",
                    584:                .argname = "arg",
                    585:                .desc = "Use arg instead of request's subject",
                    586:                .type = OPTION_ARG,
                    587:                .opt.arg = &ca_config.subj,
                    588:        },
                    589:        {
                    590:                .name = "updatedb",
                    591:                .desc = "Updates db for expired certificates",
                    592:                .type = OPTION_FLAG,
                    593:                .opt.flag = &ca_config.doupdatedb,
                    594:        },
                    595:        {
                    596:                .name = "utf8",
                    597:                .desc = "Input characters are in UTF-8 (default ASCII)",
                    598:                .type = OPTION_FUNC,
                    599:                .opt.func = ca_opt_chtype_utf8,
                    600:        },
                    601:        {
                    602:                .name = "verbose",
                    603:                .desc = "Verbose output during processing",
                    604:                .type = OPTION_FLAG,
                    605:                .opt.flag = &ca_config.verbose,
                    606:        },
                    607:        { NULL },
                    608: };
1.1       jsing     609:
1.24      beck      610: /*
                    611:  * Set a certificate time based on user provided input. Make sure
                    612:  * what we put in the certificate is legit for RFC 5280. Returns
                    613:  * 0 on success, -1 on an invalid time string. Strings must be
                    614:  * YYYYMMDDHHMMSSZ for post 2050 dates. YYYYMMDDHHMMSSZ or
                    615:  * YYMMDDHHMMSSZ is accepted for pre 2050 dates, and fixed up to
                    616:  * be the correct format in the certificate.
                    617:  */
                    618: static int
                    619: setCertificateTime(ASN1_TIME *x509time, char *timestring)
                    620: {
1.25      beck      621:        struct tm tm1;
1.28      tb        622:
1.25      beck      623:        if (ASN1_time_parse(timestring, strlen(timestring), &tm1, 0) == -1)
1.24      beck      624:                return (-1);
1.25      beck      625:        if (!ASN1_TIME_set_tm(x509time, &tm1))
1.24      beck      626:                return (-1);
1.25      beck      627:        return 0;
1.24      beck      628: }
                    629:
1.29      inoguchi  630: static void
                    631: ca_usage(void)
                    632: {
                    633:        fprintf(stderr,
                    634:            "usage: ca  [-batch] [-cert file] [-config file] [-create_serial]\n"
                    635:            "    [-crl_CA_compromise time] [-crl_compromise time]\n"
                    636:            "    [-crl_hold instruction] [-crl_reason reason] [-crldays days]\n"
                    637:            "    [-crlexts section] [-crlhours hours] [-crlsec seconds]\n"
                    638:            "    [-days arg] [-enddate date] [-extensions section]\n"
                    639:            "    [-extfile file] [-gencrl] [-in file] [-infiles]\n"
                    640:            "    [-key password] [-keyfile file] [-keyform pem | der]\n"
                    641:            "    [-md alg] [-multivalue-rdn] [-name section]\n"
                    642:            "    [-noemailDN] [-notext] [-out file] [-outdir directory]\n"
                    643:            "    [-passin arg] [-policy name] [-preserveDN] [-revoke file]\n"
                    644:            "    [-selfsign] [-sigopt nm:v] [-spkac file] [-ss_cert file]\n"
                    645:            "    [-startdate date] [-status serial] [-subj arg] [-updatedb]\n"
                    646:            "    [-utf8] [-verbose]\n\n");
                    647:        options_usage(ca_options);
                    648:        fprintf(stderr, "\n");
                    649: }
                    650:
1.1       jsing     651: int
                    652: ca_main(int argc, char **argv)
                    653: {
                    654:        int free_key = 0;
                    655:        int total = 0;
                    656:        int total_done = 0;
                    657:        int ret = 1;
                    658:        long errorline = -1;
                    659:        EVP_PKEY *pkey = NULL;
                    660:        int output_der = 0;
                    661:        char *serialfile = NULL;
                    662:        char *crlnumberfile = NULL;
                    663:        char *tmp_email_dn = NULL;
                    664:        BIGNUM *serial = NULL;
                    665:        BIGNUM *crlnumber = NULL;
                    666:        unsigned long nameopt = 0, certopt = 0;
                    667:        int default_op = 1;
                    668:        int ext_copy = EXT_COPY_NONE;
                    669:        X509 *x509 = NULL, *x509p = NULL;
                    670:        X509 *x = NULL;
                    671:        BIO *in = NULL, *out = NULL, *Sout = NULL, *Cout = NULL;
                    672:        char *dbfile = NULL;
                    673:        CA_DB *db = NULL;
                    674:        X509_CRL *crl = NULL;
                    675:        X509_REVOKED *r = NULL;
1.39      inoguchi  676:        ASN1_TIME *tmptm = NULL;
1.30      inoguchi  677:        ASN1_INTEGER *tmpserial;
1.1       jsing     678:        char *f;
                    679:        const char *p;
1.31      inoguchi  680:        char *const *pp;
1.1       jsing     681:        int i, j;
                    682:        const EVP_MD *dgst = NULL;
1.31      inoguchi  683:        STACK_OF(CONF_VALUE) *attribs = NULL;
                    684:        STACK_OF(X509) *cert_sk = NULL;
1.1       jsing     685:        char *tofree = NULL;
                    686:        DB_ATTR db_attr;
1.17      doug      687:
                    688:        if (single_execution) {
1.23      deraadt   689:                if (pledge("stdio cpath wpath rpath tty", NULL) == -1) {
1.17      doug      690:                        perror("pledge");
1.19      doug      691:                        exit(1);
                    692:                }
1.17      doug      693:        }
1.1       jsing     694:
1.29      inoguchi  695:        memset(&ca_config, 0, sizeof(ca_config));
                    696:        ca_config.email_dn = 1;
                    697:        ca_config.keyform = FORMAT_PEM;
                    698:        ca_config.chtype = MBSTRING_ASC;
                    699:        ca_config.rev_type = REV_NONE;
                    700:
1.1       jsing     701:        conf = NULL;
                    702:
1.29      inoguchi  703:        if (options_parse(argc, argv, ca_options, NULL, NULL) != 0) {
                    704:                ca_usage();
1.1       jsing     705:                goto err;
                    706:        }
                    707:
                    708:        /*****************************************************************/
                    709:        tofree = NULL;
1.29      inoguchi  710:        if (ca_config.configfile == NULL)
                    711:                ca_config.configfile = getenv("OPENSSL_CONF");
                    712:        if (ca_config.configfile == NULL) {
1.1       jsing     713:                if ((tofree = make_config_name()) == NULL) {
                    714:                        BIO_printf(bio_err, "error making config file name\n");
                    715:                        goto err;
                    716:                }
1.29      inoguchi  717:                ca_config.configfile = tofree;
1.1       jsing     718:        }
1.33      inoguchi  719:        BIO_printf(bio_err, "Using configuration from %s\n",
                    720:            ca_config.configfile);
1.1       jsing     721:        conf = NCONF_new(NULL);
1.29      inoguchi  722:        if (NCONF_load(conf, ca_config.configfile, &errorline) <= 0) {
1.1       jsing     723:                if (errorline <= 0)
                    724:                        BIO_printf(bio_err,
                    725:                            "error loading the config file '%s'\n",
1.29      inoguchi  726:                            ca_config.configfile);
1.1       jsing     727:                else
                    728:                        BIO_printf(bio_err,
                    729:                            "error on line %ld of config file '%s'\n",
1.29      inoguchi  730:                            errorline, ca_config.configfile);
1.1       jsing     731:                goto err;
                    732:        }
                    733:        free(tofree);
                    734:        tofree = NULL;
                    735:
                    736:        /* Lets get the config section we are using */
1.29      inoguchi  737:        if (ca_config.section == NULL) {
1.33      inoguchi  738:                ca_config.section = NCONF_get_string(conf, BASE_SECTION,
                    739:                    ENV_DEFAULT_CA);
1.29      inoguchi  740:                if (ca_config.section == NULL) {
1.1       jsing     741:                        lookup_fail(BASE_SECTION, ENV_DEFAULT_CA);
                    742:                        goto err;
                    743:                }
                    744:        }
                    745:        if (conf != NULL) {
                    746:                p = NCONF_get_string(conf, NULL, "oid_file");
                    747:                if (p == NULL)
                    748:                        ERR_clear_error();
                    749:                if (p != NULL) {
                    750:                        BIO *oid_bio;
                    751:
                    752:                        oid_bio = BIO_new_file(p, "r");
                    753:                        if (oid_bio == NULL) {
                    754:                                /*
                    755:                                BIO_printf(bio_err,
                    756:                                    "problems opening %s for extra oid's\n", p);
                    757:                                ERR_print_errors(bio_err);
                    758:                                */
                    759:                                ERR_clear_error();
                    760:                        } else {
                    761:                                OBJ_create_objects(oid_bio);
                    762:                                BIO_free(oid_bio);
                    763:                        }
                    764:                }
                    765:                if (!add_oid_section(bio_err, conf)) {
                    766:                        ERR_print_errors(bio_err);
                    767:                        goto err;
                    768:                }
                    769:        }
1.29      inoguchi  770:        f = NCONF_get_string(conf, ca_config.section, STRING_MASK);
1.32      inoguchi  771:        if (f == NULL)
1.1       jsing     772:                ERR_clear_error();
                    773:
1.32      inoguchi  774:        if (f != NULL && !ASN1_STRING_set_default_mask_asc(f)) {
1.1       jsing     775:                BIO_printf(bio_err,
                    776:                    "Invalid global string mask setting %s\n", f);
                    777:                goto err;
                    778:        }
1.29      inoguchi  779:        if (ca_config.chtype != MBSTRING_UTF8) {
                    780:                f = NCONF_get_string(conf, ca_config.section, UTF8_IN);
1.32      inoguchi  781:                if (f == NULL)
1.1       jsing     782:                        ERR_clear_error();
1.35      inoguchi  783:                else if (strcmp(f, "yes") == 0)
1.29      inoguchi  784:                        ca_config.chtype = MBSTRING_UTF8;
1.1       jsing     785:        }
                    786:        db_attr.unique_subject = 1;
1.29      inoguchi  787:        p = NCONF_get_string(conf, ca_config.section, ENV_UNIQUE_SUBJECT);
1.32      inoguchi  788:        if (p != NULL) {
1.1       jsing     789:                db_attr.unique_subject = parse_yesno(p, 1);
                    790:        } else
                    791:                ERR_clear_error();
                    792:
                    793:        in = BIO_new(BIO_s_file());
                    794:        out = BIO_new(BIO_s_file());
                    795:        Sout = BIO_new(BIO_s_file());
                    796:        Cout = BIO_new(BIO_s_file());
                    797:        if ((in == NULL) || (out == NULL) || (Sout == NULL) || (Cout == NULL)) {
                    798:                ERR_print_errors(bio_err);
                    799:                goto err;
                    800:        }
                    801:        /*****************************************************************/
                    802:        /* report status of cert with serial number given on command line */
1.30      inoguchi  803:        if (ca_config.serial_status) {
1.29      inoguchi  804:                if ((dbfile = NCONF_get_string(conf, ca_config.section,
1.1       jsing     805:                    ENV_DATABASE)) == NULL) {
1.29      inoguchi  806:                        lookup_fail(ca_config.section, ENV_DATABASE);
1.1       jsing     807:                        goto err;
                    808:                }
                    809:                db = load_index(dbfile, &db_attr);
                    810:                if (db == NULL)
                    811:                        goto err;
                    812:
                    813:                if (!index_index(db))
                    814:                        goto err;
                    815:
1.30      inoguchi  816:                if (get_certificate_status(ca_config.serial_status, db) != 1)
1.1       jsing     817:                        BIO_printf(bio_err, "Error verifying serial %s!\n",
1.30      inoguchi  818:                            ca_config.serial_status);
1.1       jsing     819:                goto err;
                    820:        }
                    821:        /*****************************************************************/
                    822:        /* we definitely need a private key, so let's get it */
                    823:
1.33      inoguchi  824:        if ((ca_config.keyfile == NULL) &&
                    825:            ((ca_config.keyfile = NCONF_get_string(conf, ca_config.section,
                    826:            ENV_PRIVATE_KEY)) == NULL)) {
1.29      inoguchi  827:                lookup_fail(ca_config.section, ENV_PRIVATE_KEY);
1.1       jsing     828:                goto err;
                    829:        }
1.32      inoguchi  830:        if (ca_config.key == NULL) {
1.1       jsing     831:                free_key = 1;
1.33      inoguchi  832:                if (!app_passwd(bio_err, ca_config.passargin, NULL,
                    833:                    &ca_config.key, NULL)) {
1.1       jsing     834:                        BIO_printf(bio_err, "Error getting password\n");
                    835:                        goto err;
                    836:                }
                    837:        }
1.33      inoguchi  838:        pkey = load_key(bio_err, ca_config.keyfile, ca_config.keyform, 0,
                    839:            ca_config.key, "CA private key");
1.32      inoguchi  840:        if (ca_config.key != NULL)
1.29      inoguchi  841:                explicit_bzero(ca_config.key, strlen(ca_config.key));
1.1       jsing     842:        if (pkey == NULL) {
                    843:                /* load_key() has already printed an appropriate message */
                    844:                goto err;
                    845:        }
                    846:        /*****************************************************************/
                    847:        /* we need a certificate */
1.33      inoguchi  848:        if (!ca_config.selfsign || ca_config.spkac_file != NULL ||
                    849:            ca_config.ss_cert_file != NULL || ca_config.gencrl) {
1.29      inoguchi  850:                if ((ca_config.certfile == NULL) &&
                    851:                    ((ca_config.certfile = NCONF_get_string(conf,
                    852:                    ca_config.section, ENV_CERTIFICATE)) == NULL)) {
                    853:                        lookup_fail(ca_config.section, ENV_CERTIFICATE);
1.1       jsing     854:                        goto err;
                    855:                }
1.29      inoguchi  856:                x509 = load_cert(bio_err, ca_config.certfile, FORMAT_PEM, NULL,
1.1       jsing     857:                    "CA certificate");
                    858:                if (x509 == NULL)
                    859:                        goto err;
                    860:
                    861:                if (!X509_check_private_key(x509, pkey)) {
                    862:                        BIO_printf(bio_err,
                    863:                            "CA certificate and CA private key do not match\n");
                    864:                        goto err;
                    865:                }
                    866:        }
1.29      inoguchi  867:        if (!ca_config.selfsign)
1.1       jsing     868:                x509p = x509;
                    869:
                    870:        f = NCONF_get_string(conf, BASE_SECTION, ENV_PRESERVE);
                    871:        if (f == NULL)
                    872:                ERR_clear_error();
                    873:        if ((f != NULL) && ((*f == 'y') || (*f == 'Y')))
1.29      inoguchi  874:                ca_config.preserve = 1;
1.1       jsing     875:        f = NCONF_get_string(conf, BASE_SECTION, ENV_MSIE_HACK);
                    876:        if (f == NULL)
                    877:                ERR_clear_error();
                    878:        if ((f != NULL) && ((*f == 'y') || (*f == 'Y')))
1.29      inoguchi  879:                ca_config.msie_hack = 1;
1.1       jsing     880:
1.29      inoguchi  881:        f = NCONF_get_string(conf, ca_config.section, ENV_NAMEOPT);
1.1       jsing     882:
1.34      inoguchi  883:        if (f != NULL) {
1.1       jsing     884:                if (!set_name_ex(&nameopt, f)) {
                    885:                        BIO_printf(bio_err,
                    886:                            "Invalid name options: \"%s\"\n", f);
                    887:                        goto err;
                    888:                }
                    889:                default_op = 0;
                    890:        } else
                    891:                ERR_clear_error();
                    892:
1.29      inoguchi  893:        f = NCONF_get_string(conf, ca_config.section, ENV_CERTOPT);
1.1       jsing     894:
1.32      inoguchi  895:        if (f != NULL) {
1.1       jsing     896:                if (!set_cert_ex(&certopt, f)) {
                    897:                        BIO_printf(bio_err,
                    898:                            "Invalid certificate options: \"%s\"\n", f);
                    899:                        goto err;
                    900:                }
                    901:                default_op = 0;
                    902:        } else
                    903:                ERR_clear_error();
                    904:
1.29      inoguchi  905:        f = NCONF_get_string(conf, ca_config.section, ENV_EXTCOPY);
1.1       jsing     906:
1.32      inoguchi  907:        if (f != NULL) {
1.1       jsing     908:                if (!set_ext_copy(&ext_copy, f)) {
                    909:                        BIO_printf(bio_err,
                    910:                            "Invalid extension copy option: \"%s\"\n", f);
                    911:                        goto err;
                    912:                }
                    913:        } else
                    914:                ERR_clear_error();
                    915:
                    916:        /*****************************************************************/
                    917:        /* lookup where to write new certificates */
1.29      inoguchi  918:        if (ca_config.outdir == NULL && ca_config.req) {
1.33      inoguchi  919:                if ((ca_config.outdir = NCONF_get_string(conf,
                    920:                    ca_config.section, ENV_NEW_CERTS_DIR)) == NULL) {
1.22      deraadt   921:                        BIO_printf(bio_err, "output directory %s not defined\n",
                    922:                            ENV_NEW_CERTS_DIR);
1.1       jsing     923:                        goto err;
                    924:                }
                    925:        }
                    926:        /*****************************************************************/
                    927:        /* we need to load the database file */
1.33      inoguchi  928:        if ((dbfile = NCONF_get_string(conf, ca_config.section,
                    929:            ENV_DATABASE)) == NULL) {
1.29      inoguchi  930:                lookup_fail(ca_config.section, ENV_DATABASE);
1.1       jsing     931:                goto err;
                    932:        }
                    933:        db = load_index(dbfile, &db_attr);
                    934:        if (db == NULL)
                    935:                goto err;
                    936:
                    937:        /* Lets check some fields */
                    938:        for (i = 0; i < sk_OPENSSL_PSTRING_num(db->db->data); i++) {
                    939:                pp = sk_OPENSSL_PSTRING_value(db->db->data, i);
                    940:                if ((pp[DB_type][0] != DB_TYPE_REV) &&
                    941:                    (pp[DB_rev_date][0] != '\0')) {
1.33      inoguchi  942:                        BIO_printf(bio_err,
                    943:                            "entry %d: not revoked yet, but has a revocation date\n",
                    944:                            i + 1);
1.1       jsing     945:                        goto err;
                    946:                }
                    947:                if ((pp[DB_type][0] == DB_TYPE_REV) &&
                    948:                    !make_revoked(NULL, pp[DB_rev_date])) {
                    949:                        BIO_printf(bio_err, " in entry %d\n", i + 1);
                    950:                        goto err;
                    951:                }
                    952:                if (!check_time_format((char *) pp[DB_exp_date])) {
                    953:                        BIO_printf(bio_err, "entry %d: invalid expiry date\n",
                    954:                            i + 1);
                    955:                        goto err;
                    956:                }
                    957:                p = pp[DB_serial];
                    958:                j = strlen(p);
                    959:                if (*p == '-') {
                    960:                        p++;
                    961:                        j--;
                    962:                }
                    963:                if ((j & 1) || (j < 2)) {
                    964:                        BIO_printf(bio_err,
                    965:                            "entry %d: bad serial number length (%d)\n",
                    966:                            i + 1, j);
                    967:                        goto err;
                    968:                }
                    969:                while (*p) {
                    970:                        if (!(((*p >= '0') && (*p <= '9')) ||
                    971:                            ((*p >= 'A') && (*p <= 'F')) ||
                    972:                            ((*p >= 'a') && (*p <= 'f')))) {
1.33      inoguchi  973:                                BIO_printf(bio_err,
                    974:                                    "entry %d: bad serial number characters, char pos %ld, char is '%c'\n",
                    975:                                    i + 1, (long) (p - pp[DB_serial]), *p);
1.1       jsing     976:                                goto err;
                    977:                        }
                    978:                        p++;
                    979:                }
                    980:        }
1.29      inoguchi  981:        if (ca_config.verbose) {
1.33      inoguchi  982:                BIO_set_fp(out, stdout, BIO_NOCLOSE | BIO_FP_TEXT);
1.1       jsing     983:                TXT_DB_write(out, db->db);
                    984:                BIO_printf(bio_err, "%d entries loaded from the database\n",
                    985:                    sk_OPENSSL_PSTRING_num(db->db->data));
                    986:                BIO_printf(bio_err, "generating index\n");
                    987:        }
                    988:        if (!index_index(db))
                    989:                goto err;
                    990:
                    991:        /*****************************************************************/
                    992:        /* Update the db file for expired certificates */
1.29      inoguchi  993:        if (ca_config.doupdatedb) {
                    994:                if (ca_config.verbose)
1.1       jsing     995:                        BIO_printf(bio_err, "Updating %s ...\n", dbfile);
                    996:
                    997:                i = do_updatedb(db);
                    998:                if (i == -1) {
                    999:                        BIO_printf(bio_err, "Malloc failure\n");
                   1000:                        goto err;
                   1001:                } else if (i == 0) {
1.29      inoguchi 1002:                        if (ca_config.verbose)
1.1       jsing    1003:                                BIO_printf(bio_err,
                   1004:                                    "No entries found to mark expired\n");
                   1005:                } else {
                   1006:                        if (!save_index(dbfile, "new", db))
                   1007:                                goto err;
                   1008:
                   1009:                        if (!rotate_index(dbfile, "new", "old"))
                   1010:                                goto err;
                   1011:
1.29      inoguchi 1012:                        if (ca_config.verbose)
1.1       jsing    1013:                                BIO_printf(bio_err,
                   1014:                                    "Done. %d entries marked as expired\n", i);
                   1015:                }
                   1016:        }
                   1017:        /*****************************************************************/
                   1018:        /* Read extentions config file                                   */
1.32      inoguchi 1019:        if (ca_config.extfile != NULL) {
1.1       jsing    1020:                extconf = NCONF_new(NULL);
1.29      inoguchi 1021:                if (NCONF_load(extconf, ca_config.extfile, &errorline) <= 0) {
1.1       jsing    1022:                        if (errorline <= 0)
                   1023:                                BIO_printf(bio_err,
                   1024:                                    "ERROR: loading the config file '%s'\n",
1.29      inoguchi 1025:                                    ca_config.extfile);
1.1       jsing    1026:                        else
                   1027:                                BIO_printf(bio_err,
                   1028:                                    "ERROR: on line %ld of config file '%s'\n",
1.29      inoguchi 1029:                                    errorline, ca_config.extfile);
1.1       jsing    1030:                        ret = 1;
                   1031:                        goto err;
                   1032:                }
1.29      inoguchi 1033:                if (ca_config.verbose)
1.1       jsing    1034:                        BIO_printf(bio_err,
                   1035:                            "Successfully loaded extensions file %s\n",
1.29      inoguchi 1036:                            ca_config.extfile);
1.1       jsing    1037:
                   1038:                /* We can have sections in the ext file */
1.33      inoguchi 1039:                if (ca_config.extensions == NULL &&
                   1040:                    (ca_config.extensions = NCONF_get_string(extconf, "default",
                   1041:                    "extensions")) == NULL)
1.29      inoguchi 1042:                        ca_config.extensions = "default";
1.1       jsing    1043:        }
                   1044:        /*****************************************************************/
1.29      inoguchi 1045:        if (ca_config.req || ca_config.gencrl) {
                   1046:                if (ca_config.outfile != NULL) {
                   1047:                        if (BIO_write_filename(Sout, ca_config.outfile) <= 0) {
                   1048:                                perror(ca_config.outfile);
1.1       jsing    1049:                                goto err;
                   1050:                        }
                   1051:                } else {
                   1052:                        BIO_set_fp(Sout, stdout, BIO_NOCLOSE | BIO_FP_TEXT);
                   1053:                }
                   1054:        }
1.33      inoguchi 1055:        if ((ca_config.md == NULL) &&
                   1056:            ((ca_config.md = NCONF_get_string(conf, ca_config.section,
1.1       jsing    1057:            ENV_DEFAULT_MD)) == NULL)) {
1.29      inoguchi 1058:                lookup_fail(ca_config.section, ENV_DEFAULT_MD);
1.1       jsing    1059:                goto err;
                   1060:        }
1.35      inoguchi 1061:        if (strcmp(ca_config.md, "default") == 0) {
1.1       jsing    1062:                int def_nid;
                   1063:                if (EVP_PKEY_get_default_digest_nid(pkey, &def_nid) <= 0) {
                   1064:                        BIO_puts(bio_err, "no default digest\n");
                   1065:                        goto err;
                   1066:                }
1.29      inoguchi 1067:                ca_config.md = (char *) OBJ_nid2sn(def_nid);
1.36      inoguchi 1068:                if (ca_config.md == NULL)
                   1069:                        goto err;
1.1       jsing    1070:        }
1.29      inoguchi 1071:        if ((dgst = EVP_get_digestbyname(ca_config.md)) == NULL) {
1.1       jsing    1072:                BIO_printf(bio_err,
1.29      inoguchi 1073:                    "%s is an unsupported message digest type\n", ca_config.md);
1.1       jsing    1074:                goto err;
                   1075:        }
1.29      inoguchi 1076:        if (ca_config.req) {
1.33      inoguchi 1077:                if ((ca_config.email_dn == 1) &&
                   1078:                    ((tmp_email_dn = NCONF_get_string(conf, ca_config.section,
                   1079:                    ENV_DEFAULT_EMAIL_DN)) != NULL)) {
1.1       jsing    1080:                        if (strcmp(tmp_email_dn, "no") == 0)
1.29      inoguchi 1081:                                ca_config.email_dn = 0;
1.1       jsing    1082:                }
1.29      inoguchi 1083:                if (ca_config.verbose)
1.1       jsing    1084:                        BIO_printf(bio_err, "message digest is %s\n",
                   1085:                            OBJ_nid2ln(dgst->type));
1.33      inoguchi 1086:                if ((ca_config.policy == NULL) &&
                   1087:                    ((ca_config.policy = NCONF_get_string(conf,
1.29      inoguchi 1088:                    ca_config.section, ENV_POLICY)) == NULL)) {
                   1089:                        lookup_fail(ca_config.section, ENV_POLICY);
1.1       jsing    1090:                        goto err;
                   1091:                }
1.29      inoguchi 1092:                if (ca_config.verbose)
                   1093:                        BIO_printf(bio_err, "policy is %s\n", ca_config.policy);
1.1       jsing    1094:
1.29      inoguchi 1095:                if ((serialfile = NCONF_get_string(conf, ca_config.section,
1.1       jsing    1096:                    ENV_SERIAL)) == NULL) {
1.29      inoguchi 1097:                        lookup_fail(ca_config.section, ENV_SERIAL);
1.1       jsing    1098:                        goto err;
                   1099:                }
1.32      inoguchi 1100:                if (extconf == NULL) {
1.1       jsing    1101:                        /*
                   1102:                         * no '-extfile' option, so we look for extensions in
                   1103:                         * the main configuration file
                   1104:                         */
1.32      inoguchi 1105:                        if (ca_config.extensions == NULL) {
1.33      inoguchi 1106:                                ca_config.extensions = NCONF_get_string(conf,
                   1107:                                    ca_config.section, ENV_EXTENSIONS);
1.32      inoguchi 1108:                                if (ca_config.extensions == NULL)
1.1       jsing    1109:                                        ERR_clear_error();
                   1110:                        }
1.32      inoguchi 1111:                        if (ca_config.extensions != NULL) {
1.1       jsing    1112:                                /* Check syntax of file */
                   1113:                                X509V3_CTX ctx;
                   1114:                                X509V3_set_ctx_test(&ctx);
                   1115:                                X509V3_set_nconf(&ctx, conf);
                   1116:                                if (!X509V3_EXT_add_nconf(conf, &ctx,
1.29      inoguchi 1117:                                    ca_config.extensions, NULL)) {
1.1       jsing    1118:                                        BIO_printf(bio_err,
                   1119:                                            "Error Loading extension section %s\n",
1.29      inoguchi 1120:                                            ca_config.extensions);
1.1       jsing    1121:                                        ret = 1;
                   1122:                                        goto err;
                   1123:                                }
                   1124:                        }
                   1125:                }
1.29      inoguchi 1126:                if (ca_config.startdate == NULL) {
1.33      inoguchi 1127:                        ca_config.startdate = NCONF_get_string(conf,
                   1128:                            ca_config.section, ENV_DEFAULT_STARTDATE);
1.29      inoguchi 1129:                        if (ca_config.startdate == NULL)
1.1       jsing    1130:                                ERR_clear_error();
                   1131:                }
1.29      inoguchi 1132:                if (ca_config.startdate == NULL)
                   1133:                        ca_config.startdate = "today";
1.1       jsing    1134:
1.29      inoguchi 1135:                if (ca_config.enddate == NULL) {
1.33      inoguchi 1136:                        ca_config.enddate = NCONF_get_string(conf,
                   1137:                            ca_config.section, ENV_DEFAULT_ENDDATE);
1.29      inoguchi 1138:                        if (ca_config.enddate == NULL)
1.1       jsing    1139:                                ERR_clear_error();
                   1140:                }
1.29      inoguchi 1141:                if (ca_config.days == 0 && ca_config.enddate == NULL) {
                   1142:                        if (!NCONF_get_number(conf, ca_config.section,
                   1143:                                ENV_DEFAULT_DAYS, &ca_config.days))
                   1144:                                ca_config.days = 0;
1.1       jsing    1145:                }
1.29      inoguchi 1146:                if (ca_config.enddate == NULL && ca_config.days == 0) {
1.1       jsing    1147:                        BIO_printf(bio_err,
                   1148:                            "cannot lookup how many days to certify for\n");
                   1149:                        goto err;
                   1150:                }
1.33      inoguchi 1151:                if ((serial = load_serial(serialfile, ca_config.create_serial,
                   1152:                    NULL)) == NULL) {
1.1       jsing    1153:                        BIO_printf(bio_err,
                   1154:                            "error while loading serial number\n");
                   1155:                        goto err;
                   1156:                }
1.29      inoguchi 1157:                if (ca_config.verbose) {
1.1       jsing    1158:                        if (BN_is_zero(serial))
                   1159:                                BIO_printf(bio_err,
                   1160:                                    "next serial number is 00\n");
                   1161:                        else {
                   1162:                                if ((f = BN_bn2hex(serial)) == NULL)
                   1163:                                        goto err;
                   1164:                                BIO_printf(bio_err,
                   1165:                                    "next serial number is %s\n", f);
                   1166:                                free(f);
                   1167:                        }
                   1168:                }
1.33      inoguchi 1169:                if ((attribs = NCONF_get_section(conf, ca_config.policy)) ==
                   1170:                    NULL) {
                   1171:                        BIO_printf(bio_err, "unable to find 'section' for %s\n",
                   1172:                            ca_config.policy);
1.1       jsing    1173:                        goto err;
                   1174:                }
                   1175:                if ((cert_sk = sk_X509_new_null()) == NULL) {
                   1176:                        BIO_printf(bio_err, "Memory allocation failure\n");
                   1177:                        goto err;
                   1178:                }
1.29      inoguchi 1179:                if (ca_config.spkac_file != NULL) {
1.1       jsing    1180:                        total++;
1.33      inoguchi 1181:                        j = certify_spkac(&x, ca_config.spkac_file, pkey, x509,
                   1182:                            dgst, ca_config.sigopts, attribs, db, serial,
                   1183:                            ca_config.subj, ca_config.chtype,
                   1184:                            ca_config.multirdn, ca_config.email_dn,
                   1185:                            ca_config.startdate, ca_config.enddate,
                   1186:                            ca_config.days, ca_config.extensions, conf,
                   1187:                            ca_config.verbose, certopt, nameopt, default_op,
                   1188:                            ext_copy);
1.1       jsing    1189:                        if (j < 0)
                   1190:                                goto err;
                   1191:                        if (j > 0) {
                   1192:                                total_done++;
                   1193:                                BIO_printf(bio_err, "\n");
                   1194:                                if (!BN_add_word(serial, 1))
                   1195:                                        goto err;
                   1196:                                if (!sk_X509_push(cert_sk, x)) {
                   1197:                                        BIO_printf(bio_err,
                   1198:                                            "Memory allocation failure\n");
                   1199:                                        goto err;
                   1200:                                }
1.32      inoguchi 1201:                                if (ca_config.outfile != NULL) {
1.1       jsing    1202:                                        output_der = 1;
1.29      inoguchi 1203:                                        ca_config.batch = 1;
1.1       jsing    1204:                                }
                   1205:                        }
                   1206:                }
1.29      inoguchi 1207:                if (ca_config.ss_cert_file != NULL) {
1.1       jsing    1208:                        total++;
1.33      inoguchi 1209:                        j = certify_cert(&x, ca_config.ss_cert_file, pkey, x509,
                   1210:                            dgst, ca_config.sigopts, attribs, db, serial,
                   1211:                            ca_config.subj, ca_config.chtype,
                   1212:                            ca_config.multirdn, ca_config.email_dn,
                   1213:                            ca_config.startdate, ca_config.enddate,
                   1214:                            ca_config.days, ca_config.batch,
                   1215:                            ca_config.extensions, conf, ca_config.verbose,
                   1216:                            certopt, nameopt, default_op, ext_copy);
1.1       jsing    1217:                        if (j < 0)
                   1218:                                goto err;
                   1219:                        if (j > 0) {
                   1220:                                total_done++;
                   1221:                                BIO_printf(bio_err, "\n");
                   1222:                                if (!BN_add_word(serial, 1))
                   1223:                                        goto err;
                   1224:                                if (!sk_X509_push(cert_sk, x)) {
                   1225:                                        BIO_printf(bio_err,
                   1226:                                            "Memory allocation failure\n");
                   1227:                                        goto err;
                   1228:                                }
                   1229:                        }
                   1230:                }
1.29      inoguchi 1231:                if (ca_config.infile != NULL) {
1.1       jsing    1232:                        total++;
1.33      inoguchi 1233:                        j = certify(&x, ca_config.infile, pkey, x509p, dgst,
                   1234:                            ca_config.sigopts, attribs, db, serial,
                   1235:                            ca_config.subj, ca_config.chtype,
                   1236:                            ca_config.multirdn, ca_config.email_dn,
                   1237:                            ca_config.startdate, ca_config.enddate,
                   1238:                            ca_config.days, ca_config.batch,
                   1239:                            ca_config.extensions, conf, ca_config.verbose,
                   1240:                            certopt, nameopt, default_op, ext_copy,
                   1241:                            ca_config.selfsign);
1.1       jsing    1242:                        if (j < 0)
                   1243:                                goto err;
                   1244:                        if (j > 0) {
                   1245:                                total_done++;
                   1246:                                BIO_printf(bio_err, "\n");
                   1247:                                if (!BN_add_word(serial, 1))
                   1248:                                        goto err;
                   1249:                                if (!sk_X509_push(cert_sk, x)) {
                   1250:                                        BIO_printf(bio_err,
                   1251:                                            "Memory allocation failure\n");
                   1252:                                        goto err;
                   1253:                                }
                   1254:                        }
                   1255:                }
1.29      inoguchi 1256:                for (i = 0; i < ca_config.infiles_num; i++) {
1.1       jsing    1257:                        total++;
1.33      inoguchi 1258:                        j = certify(&x, ca_config.infiles[i], pkey, x509p, dgst,
                   1259:                            ca_config.sigopts, attribs, db, serial,
                   1260:                            ca_config.subj, ca_config.chtype,
                   1261:                            ca_config.multirdn, ca_config.email_dn,
                   1262:                            ca_config.startdate, ca_config.enddate,
                   1263:                            ca_config.days, ca_config.batch,
                   1264:                            ca_config.extensions, conf, ca_config.verbose,
                   1265:                            certopt, nameopt, default_op, ext_copy,
                   1266:                            ca_config.selfsign);
1.1       jsing    1267:                        if (j < 0)
                   1268:                                goto err;
                   1269:                        if (j > 0) {
                   1270:                                total_done++;
                   1271:                                BIO_printf(bio_err, "\n");
                   1272:                                if (!BN_add_word(serial, 1))
                   1273:                                        goto err;
                   1274:                                if (!sk_X509_push(cert_sk, x)) {
                   1275:                                        BIO_printf(bio_err,
                   1276:                                            "Memory allocation failure\n");
                   1277:                                        goto err;
                   1278:                                }
                   1279:                        }
                   1280:                }
                   1281:                /*
                   1282:                 * we have a stack of newly certified certificates and a data
                   1283:                 * base and serial number that need updating
                   1284:                 */
                   1285:
                   1286:                if (sk_X509_num(cert_sk) > 0) {
1.29      inoguchi 1287:                        if (!ca_config.batch) {
1.21      deraadt  1288:                                char answer[10];
                   1289:
1.33      inoguchi 1290:                                BIO_printf(bio_err,
                   1291:                                    "\n%d out of %d certificate requests certified, commit? [y/n]",
                   1292:                                    total_done, total);
1.1       jsing    1293:                                (void) BIO_flush(bio_err);
1.33      inoguchi 1294:                                if (fgets(answer, sizeof answer - 1, stdin) ==
                   1295:                                    NULL) {
                   1296:                                        BIO_printf(bio_err,
                   1297:                                            "CERTIFICATION CANCELED: I/O error\n");
1.1       jsing    1298:                                        ret = 0;
                   1299:                                        goto err;
                   1300:                                }
1.21      deraadt  1301:                                if ((answer[0] != 'y') && (answer[0] != 'Y')) {
1.33      inoguchi 1302:                                        BIO_printf(bio_err,
                   1303:                                            "CERTIFICATION CANCELED\n");
1.1       jsing    1304:                                        ret = 0;
                   1305:                                        goto err;
                   1306:                                }
                   1307:                        }
1.33      inoguchi 1308:                        BIO_printf(bio_err,
                   1309:                            "Write out database with %d new entries\n",
                   1310:                            sk_X509_num(cert_sk));
1.1       jsing    1311:
                   1312:                        if (!save_serial(serialfile, "new", serial, NULL))
                   1313:                                goto err;
                   1314:
                   1315:                        if (!save_index(dbfile, "new", db))
                   1316:                                goto err;
                   1317:                }
1.29      inoguchi 1318:                if (ca_config.verbose)
1.1       jsing    1319:                        BIO_printf(bio_err, "writing new certificates\n");
                   1320:                for (i = 0; i < sk_X509_num(cert_sk); i++) {
1.46      inoguchi 1321:                        ASN1_INTEGER *serialNumber;
1.1       jsing    1322:                        int k;
1.3       doug     1323:                        char *serialstr;
1.1       jsing    1324:                        unsigned char *data;
1.21      deraadt  1325:                        char pempath[PATH_MAX];
1.1       jsing    1326:
                   1327:                        x = sk_X509_value(cert_sk, i);
                   1328:
1.46      inoguchi 1329:                        serialNumber = X509_get_serialNumber(x);
                   1330:                        j = ASN1_STRING_length(serialNumber);
                   1331:                        data = ASN1_STRING_data(serialNumber);
                   1332:
1.1       jsing    1333:                        if (j > 0)
1.3       doug     1334:                                serialstr = bin2hex(data, j);
1.1       jsing    1335:                        else
1.3       doug     1336:                                serialstr = strdup("00");
1.32      inoguchi 1337:                        if (serialstr != NULL) {
1.21      deraadt  1338:                                k = snprintf(pempath, sizeof(pempath),
1.29      inoguchi 1339:                                    "%s/%s.pem", ca_config.outdir, serialstr);
1.3       doug     1340:                                free(serialstr);
1.27      deraadt  1341:                                if (k < 0 || k >= sizeof(pempath)) {
1.1       jsing    1342:                                        BIO_printf(bio_err,
                   1343:                                            "certificate file name too long\n");
                   1344:                                        goto err;
                   1345:                                }
                   1346:                        } else {
                   1347:                                BIO_printf(bio_err,
                   1348:                                    "memory allocation failed\n");
                   1349:                                goto err;
                   1350:                        }
1.29      inoguchi 1351:                        if (ca_config.verbose)
1.21      deraadt  1352:                                BIO_printf(bio_err, "writing %s\n", pempath);
1.1       jsing    1353:
1.21      deraadt  1354:                        if (BIO_write_filename(Cout, pempath) <= 0) {
                   1355:                                perror(pempath);
1.1       jsing    1356:                                goto err;
                   1357:                        }
1.36      inoguchi 1358:                        if (!write_new_certificate(Cout, x, 0,
                   1359:                            ca_config.notext))
                   1360:                                goto err;
                   1361:                        if (!write_new_certificate(Sout, x, output_der,
                   1362:                            ca_config.notext))
                   1363:                                goto err;
1.1       jsing    1364:                }
                   1365:
                   1366:                if (sk_X509_num(cert_sk)) {
                   1367:                        /* Rename the database and the serial file */
                   1368:                        if (!rotate_serial(serialfile, "new", "old"))
                   1369:                                goto err;
                   1370:
                   1371:                        if (!rotate_index(dbfile, "new", "old"))
                   1372:                                goto err;
                   1373:
                   1374:                        BIO_printf(bio_err, "Data Base Updated\n");
                   1375:                }
                   1376:        }
                   1377:        /*****************************************************************/
1.29      inoguchi 1378:        if (ca_config.gencrl) {
1.1       jsing    1379:                int crl_v2 = 0;
1.32      inoguchi 1380:                if (ca_config.crl_ext == NULL) {
1.33      inoguchi 1381:                        ca_config.crl_ext = NCONF_get_string(conf,
                   1382:                            ca_config.section, ENV_CRLEXT);
1.32      inoguchi 1383:                        if (ca_config.crl_ext == NULL)
1.1       jsing    1384:                                ERR_clear_error();
                   1385:                }
1.32      inoguchi 1386:                if (ca_config.crl_ext != NULL) {
1.1       jsing    1387:                        /* Check syntax of file */
                   1388:                        X509V3_CTX ctx;
                   1389:                        X509V3_set_ctx_test(&ctx);
                   1390:                        X509V3_set_nconf(&ctx, conf);
1.33      inoguchi 1391:                        if (!X509V3_EXT_add_nconf(conf, &ctx, ca_config.crl_ext,
                   1392:                            NULL)) {
1.1       jsing    1393:                                BIO_printf(bio_err,
                   1394:                                    "Error Loading CRL extension section %s\n",
1.29      inoguchi 1395:                                    ca_config.crl_ext);
1.1       jsing    1396:                                ret = 1;
                   1397:                                goto err;
                   1398:                        }
                   1399:                }
1.29      inoguchi 1400:                if ((crlnumberfile = NCONF_get_string(conf, ca_config.section,
1.1       jsing    1401:                    ENV_CRLNUMBER)) != NULL)
                   1402:                        if ((crlnumber = load_serial(crlnumberfile, 0,
                   1403:                            NULL)) == NULL) {
                   1404:                                BIO_printf(bio_err,
                   1405:                                    "error while loading CRL number\n");
                   1406:                                goto err;
                   1407:                        }
1.33      inoguchi 1408:                if (!ca_config.crldays && !ca_config.crlhours &&
                   1409:                    !ca_config.crlsec) {
1.29      inoguchi 1410:                        if (!NCONF_get_number(conf, ca_config.section,
                   1411:                            ENV_DEFAULT_CRL_DAYS, &ca_config.crldays))
                   1412:                                ca_config.crldays = 0;
                   1413:                        if (!NCONF_get_number(conf, ca_config.section,
                   1414:                            ENV_DEFAULT_CRL_HOURS, &ca_config.crlhours))
                   1415:                                ca_config.crlhours = 0;
1.1       jsing    1416:                        ERR_clear_error();
                   1417:                }
1.33      inoguchi 1418:                if ((ca_config.crldays == 0) && (ca_config.crlhours == 0) &&
                   1419:                    (ca_config.crlsec == 0)) {
                   1420:                        BIO_printf(bio_err,
                   1421:                            "cannot lookup how long until the next CRL is issued\n");
1.1       jsing    1422:                        goto err;
                   1423:                }
1.29      inoguchi 1424:                if (ca_config.verbose)
1.1       jsing    1425:                        BIO_printf(bio_err, "making CRL\n");
                   1426:                if ((crl = X509_CRL_new()) == NULL)
                   1427:                        goto err;
                   1428:                if (!X509_CRL_set_issuer_name(crl, X509_get_subject_name(x509)))
                   1429:                        goto err;
                   1430:
1.39      inoguchi 1431:                if ((tmptm = X509_gmtime_adj(NULL, 0)) == NULL)
1.1       jsing    1432:                        goto err;
1.39      inoguchi 1433:                if (!X509_CRL_set_lastUpdate(crl, tmptm))
1.36      inoguchi 1434:                        goto err;
1.32      inoguchi 1435:                if (X509_time_adj_ex(tmptm, ca_config.crldays,
1.33      inoguchi 1436:                    ca_config.crlhours * 60 * 60 + ca_config.crlsec, NULL) ==
                   1437:                    NULL) {
1.1       jsing    1438:                        BIO_puts(bio_err, "error setting CRL nextUpdate\n");
1.36      inoguchi 1439:                        goto err;
                   1440:                }
1.39      inoguchi 1441:                if (!X509_CRL_set_nextUpdate(crl, tmptm))
1.1       jsing    1442:                        goto err;
                   1443:                ASN1_TIME_free(tmptm);
1.39      inoguchi 1444:                tmptm = NULL;
1.1       jsing    1445:
                   1446:                for (i = 0; i < sk_OPENSSL_PSTRING_num(db->db->data); i++) {
                   1447:                        pp = sk_OPENSSL_PSTRING_value(db->db->data, i);
                   1448:                        if (pp[DB_type][0] == DB_TYPE_REV) {
                   1449:                                if ((r = X509_REVOKED_new()) == NULL)
                   1450:                                        goto err;
                   1451:                                j = make_revoked(r, pp[DB_rev_date]);
                   1452:                                if (!j)
                   1453:                                        goto err;
                   1454:                                if (j == 2)
                   1455:                                        crl_v2 = 1;
                   1456:                                if (!BN_hex2bn(&serial, pp[DB_serial]))
                   1457:                                        goto err;
1.30      inoguchi 1458:                                tmpserial = BN_to_ASN1_INTEGER(serial, NULL);
1.1       jsing    1459:                                BN_free(serial);
                   1460:                                serial = NULL;
1.32      inoguchi 1461:                                if (tmpserial == NULL)
1.1       jsing    1462:                                        goto err;
1.36      inoguchi 1463:                                if (!X509_REVOKED_set_serialNumber(r, tmpserial)) {
                   1464:                                        ASN1_INTEGER_free(tmpserial);
                   1465:                                        goto err;
                   1466:                                }
1.30      inoguchi 1467:                                ASN1_INTEGER_free(tmpserial);
1.36      inoguchi 1468:                                if (!X509_CRL_add0_revoked(crl, r))
                   1469:                                        goto err;
1.37      inoguchi 1470:                                r = NULL;
1.1       jsing    1471:                        }
                   1472:                }
                   1473:
                   1474:                /*
                   1475:                 * sort the data so it will be written in serial number order
                   1476:                 */
                   1477:                X509_CRL_sort(crl);
                   1478:
                   1479:                /* we now have a CRL */
1.29      inoguchi 1480:                if (ca_config.verbose)
1.1       jsing    1481:                        BIO_printf(bio_err, "signing CRL\n");
                   1482:
                   1483:                /* Add any extensions asked for */
                   1484:
1.32      inoguchi 1485:                if (ca_config.crl_ext != NULL || crlnumberfile != NULL) {
1.1       jsing    1486:                        X509V3_CTX crlctx;
                   1487:                        X509V3_set_ctx(&crlctx, x509, NULL, NULL, crl, 0);
                   1488:                        X509V3_set_nconf(&crlctx, conf);
                   1489:
1.32      inoguchi 1490:                        if (ca_config.crl_ext != NULL)
1.1       jsing    1491:                                if (!X509V3_EXT_CRL_add_nconf(conf, &crlctx,
1.29      inoguchi 1492:                                    ca_config.crl_ext, crl))
1.1       jsing    1493:                                        goto err;
                   1494:                        if (crlnumberfile != NULL) {
1.30      inoguchi 1495:                                tmpserial = BN_to_ASN1_INTEGER(crlnumber, NULL);
1.32      inoguchi 1496:                                if (tmpserial == NULL)
1.1       jsing    1497:                                        goto err;
1.36      inoguchi 1498:                                if (!X509_CRL_add1_ext_i2d(crl, NID_crl_number,
                   1499:                                    tmpserial, 0, 0)) {
                   1500:                                        ASN1_INTEGER_free(tmpserial);
                   1501:                                        goto err;
                   1502:                                }
1.30      inoguchi 1503:                                ASN1_INTEGER_free(tmpserial);
1.1       jsing    1504:                                crl_v2 = 1;
                   1505:                                if (!BN_add_word(crlnumber, 1))
                   1506:                                        goto err;
                   1507:                        }
                   1508:                }
1.32      inoguchi 1509:                if (ca_config.crl_ext != NULL || crl_v2) {
1.1       jsing    1510:                        if (!X509_CRL_set_version(crl, 1))
                   1511:                                goto err;       /* version 2 CRL */
                   1512:                }
                   1513:                if (crlnumberfile != NULL)      /* we have a CRL number that
                   1514:                                                 * need updating */
                   1515:                        if (!save_serial(crlnumberfile, "new", crlnumber, NULL))
                   1516:                                goto err;
                   1517:
1.42      inoguchi 1518:                BN_free(crlnumber);
                   1519:                crlnumber = NULL;
                   1520:
1.33      inoguchi 1521:                if (!do_X509_CRL_sign(bio_err, crl, pkey, dgst,
                   1522:                    ca_config.sigopts))
1.1       jsing    1523:                        goto err;
                   1524:
1.36      inoguchi 1525:                if (!PEM_write_bio_X509_CRL(Sout, crl))
                   1526:                        goto err;
1.1       jsing    1527:
                   1528:                if (crlnumberfile != NULL)      /* Rename the crlnumber file */
                   1529:                        if (!rotate_serial(crlnumberfile, "new", "old"))
                   1530:                                goto err;
                   1531:
                   1532:        }
                   1533:        /*****************************************************************/
1.29      inoguchi 1534:        if (ca_config.dorevoke) {
                   1535:                if (ca_config.infile == NULL) {
1.1       jsing    1536:                        BIO_printf(bio_err, "no input files\n");
                   1537:                        goto err;
                   1538:                } else {
                   1539:                        X509 *revcert;
1.33      inoguchi 1540:                        revcert = load_cert(bio_err, ca_config.infile,
                   1541:                            FORMAT_PEM, NULL, ca_config.infile);
1.1       jsing    1542:                        if (revcert == NULL)
                   1543:                                goto err;
1.33      inoguchi 1544:                        j = do_revoke(revcert, db, ca_config.rev_type,
                   1545:                            ca_config.rev_arg);
1.1       jsing    1546:                        if (j <= 0)
                   1547:                                goto err;
                   1548:                        X509_free(revcert);
                   1549:
                   1550:                        if (!save_index(dbfile, "new", db))
                   1551:                                goto err;
                   1552:
                   1553:                        if (!rotate_index(dbfile, "new", "old"))
                   1554:                                goto err;
                   1555:
                   1556:                        BIO_printf(bio_err, "Data Base Updated\n");
                   1557:                }
                   1558:        }
                   1559:        /*****************************************************************/
                   1560:        ret = 0;
                   1561:
1.26      jsing    1562:  err:
1.1       jsing    1563:        free(tofree);
                   1564:
                   1565:        BIO_free_all(Cout);
                   1566:        BIO_free_all(Sout);
                   1567:        BIO_free_all(out);
                   1568:        BIO_free_all(in);
                   1569:
1.42      inoguchi 1570:        sk_X509_pop_free(cert_sk, X509_free);
1.1       jsing    1571:
                   1572:        if (ret)
                   1573:                ERR_print_errors(bio_err);
1.42      inoguchi 1574:        if (free_key)
1.29      inoguchi 1575:                free(ca_config.key);
1.1       jsing    1576:        BN_free(serial);
                   1577:        BN_free(crlnumber);
                   1578:        free_index(db);
1.42      inoguchi 1579:        sk_OPENSSL_STRING_free(ca_config.sigopts);
1.1       jsing    1580:        EVP_PKEY_free(pkey);
1.42      inoguchi 1581:        X509_free(x509);
1.1       jsing    1582:        X509_CRL_free(crl);
1.37      inoguchi 1583:        X509_REVOKED_free(r);
1.39      inoguchi 1584:        ASN1_TIME_free(tmptm);
1.1       jsing    1585:        NCONF_free(conf);
                   1586:        NCONF_free(extconf);
                   1587:        OBJ_cleanup();
                   1588:
                   1589:        return (ret);
                   1590: }
                   1591:
                   1592: static void
                   1593: lookup_fail(const char *name, const char *tag)
                   1594: {
                   1595:        BIO_printf(bio_err, "variable lookup failed for %s::%s\n", name, tag);
                   1596: }
                   1597:
                   1598: static int
1.31      inoguchi 1599: certify(X509 **xret, char *infile, EVP_PKEY *pkey, X509 *x509,
                   1600:     const EVP_MD *dgst, STACK_OF(OPENSSL_STRING) *sigopts,
                   1601:     STACK_OF(CONF_VALUE) *policy, CA_DB *db, BIGNUM *serial, char *subj,
1.1       jsing    1602:     unsigned long chtype, int multirdn, int email_dn, char *startdate,
1.31      inoguchi 1603:     char *enddate, long days, int batch, char *ext_sect, CONF *lconf,
1.1       jsing    1604:     int verbose, unsigned long certopt, unsigned long nameopt, int default_op,
                   1605:     int ext_copy, int selfsign)
                   1606: {
                   1607:        X509_REQ *req = NULL;
                   1608:        BIO *in = NULL;
                   1609:        EVP_PKEY *pktmp = NULL;
                   1610:        int ok = -1, i;
                   1611:
                   1612:        in = BIO_new(BIO_s_file());
                   1613:
                   1614:        if (BIO_read_filename(in, infile) <= 0) {
                   1615:                perror(infile);
                   1616:                goto err;
                   1617:        }
                   1618:        if ((req = PEM_read_bio_X509_REQ(in, NULL, NULL, NULL)) == NULL) {
                   1619:                BIO_printf(bio_err, "Error reading certificate request in %s\n",
                   1620:                    infile);
                   1621:                goto err;
                   1622:        }
1.36      inoguchi 1623:        if (verbose) {
                   1624:                if (!X509_REQ_print(bio_err, req))
                   1625:                        goto err;
                   1626:        }
1.1       jsing    1627:
                   1628:        BIO_printf(bio_err, "Check that the request matches the signature\n");
                   1629:
                   1630:        if (selfsign && !X509_REQ_check_private_key(req, pkey)) {
                   1631:                BIO_printf(bio_err,
                   1632:                    "Certificate request and CA private key do not match\n");
                   1633:                ok = 0;
                   1634:                goto err;
                   1635:        }
                   1636:        if ((pktmp = X509_REQ_get_pubkey(req)) == NULL) {
                   1637:                BIO_printf(bio_err, "error unpacking public key\n");
                   1638:                goto err;
                   1639:        }
                   1640:        i = X509_REQ_verify(req, pktmp);
                   1641:        EVP_PKEY_free(pktmp);
                   1642:        if (i < 0) {
                   1643:                ok = 0;
                   1644:                BIO_printf(bio_err, "Signature verification problems....\n");
                   1645:                goto err;
                   1646:        }
                   1647:        if (i == 0) {
                   1648:                ok = 0;
                   1649:                BIO_printf(bio_err,
                   1650:                    "Signature did not match the certificate request\n");
                   1651:                goto err;
                   1652:        } else
                   1653:                BIO_printf(bio_err, "Signature ok\n");
                   1654:
                   1655:        ok = do_body(xret, pkey, x509, dgst, sigopts, policy, db, serial,
                   1656:            subj, chtype, multirdn, email_dn, startdate, enddate, days, batch,
                   1657:            verbose, req, ext_sect, lconf, certopt, nameopt, default_op,
                   1658:            ext_copy, selfsign);
                   1659:
1.26      jsing    1660:  err:
1.42      inoguchi 1661:        X509_REQ_free(req);
                   1662:        BIO_free(in);
                   1663:
1.1       jsing    1664:        return (ok);
                   1665: }
                   1666:
                   1667: static int
1.31      inoguchi 1668: certify_cert(X509 **xret, char *infile, EVP_PKEY *pkey, X509 *x509,
                   1669:     const EVP_MD *dgst, STACK_OF(OPENSSL_STRING) *sigopts,
                   1670:     STACK_OF(CONF_VALUE) *policy, CA_DB *db, BIGNUM *serial, char *subj,
1.1       jsing    1671:     unsigned long chtype, int multirdn, int email_dn, char *startdate,
1.31      inoguchi 1672:     char *enddate, long days, int batch, char *ext_sect, CONF *lconf,
1.1       jsing    1673:     int verbose, unsigned long certopt, unsigned long nameopt, int default_op,
1.12      bcook    1674:     int ext_copy)
1.1       jsing    1675: {
                   1676:        X509 *req = NULL;
                   1677:        X509_REQ *rreq = NULL;
                   1678:        EVP_PKEY *pktmp = NULL;
                   1679:        int ok = -1, i;
                   1680:
1.12      bcook    1681:        if ((req = load_cert(bio_err, infile, FORMAT_PEM, NULL,
1.1       jsing    1682:            infile)) == NULL)
                   1683:                goto err;
1.36      inoguchi 1684:        if (verbose) {
                   1685:                if (!X509_print(bio_err, req))
                   1686:                        goto err;
                   1687:        }
1.1       jsing    1688:
                   1689:        BIO_printf(bio_err, "Check that the request matches the signature\n");
                   1690:
                   1691:        if ((pktmp = X509_get_pubkey(req)) == NULL) {
                   1692:                BIO_printf(bio_err, "error unpacking public key\n");
                   1693:                goto err;
                   1694:        }
                   1695:        i = X509_verify(req, pktmp);
                   1696:        EVP_PKEY_free(pktmp);
                   1697:        if (i < 0) {
                   1698:                ok = 0;
                   1699:                BIO_printf(bio_err, "Signature verification problems....\n");
                   1700:                goto err;
                   1701:        }
                   1702:        if (i == 0) {
                   1703:                ok = 0;
                   1704:                BIO_printf(bio_err,
                   1705:                    "Signature did not match the certificate\n");
                   1706:                goto err;
                   1707:        } else
                   1708:                BIO_printf(bio_err, "Signature ok\n");
                   1709:
                   1710:        if ((rreq = X509_to_X509_REQ(req, NULL, EVP_md5())) == NULL)
                   1711:                goto err;
                   1712:
                   1713:        ok = do_body(xret, pkey, x509, dgst, sigopts, policy, db, serial,
                   1714:            subj, chtype, multirdn, email_dn, startdate, enddate, days, batch,
                   1715:            verbose, rreq, ext_sect, lconf, certopt, nameopt, default_op,
                   1716:            ext_copy, 0);
                   1717:
1.26      jsing    1718:  err:
1.42      inoguchi 1719:        X509_REQ_free(rreq);
                   1720:        X509_free(req);
                   1721:
1.1       jsing    1722:        return (ok);
                   1723: }
                   1724:
                   1725: static int
1.31      inoguchi 1726: do_body(X509 **xret, EVP_PKEY *pkey, X509 *x509, const EVP_MD *dgst,
                   1727:     STACK_OF(OPENSSL_STRING) *sigopts, STACK_OF(CONF_VALUE) *policy,
                   1728:     CA_DB *db, BIGNUM *serial, char *subj, unsigned long chtype, int multirdn,
1.1       jsing    1729:     int email_dn, char *startdate, char *enddate, long days, int batch,
1.31      inoguchi 1730:     int verbose, X509_REQ *req, char *ext_sect, CONF *lconf,
1.1       jsing    1731:     unsigned long certopt, unsigned long nameopt, int default_op,
                   1732:     int ext_copy, int selfsign)
                   1733: {
1.33      inoguchi 1734:        X509_NAME *name = NULL, *CAname = NULL;
                   1735:        X509_NAME *subject = NULL, *dn_subject = NULL;
1.49      inoguchi 1736:        ASN1_UTCTIME *tm;
1.1       jsing    1737:        ASN1_STRING *str, *str2;
                   1738:        ASN1_OBJECT *obj;
                   1739:        X509 *ret = NULL;
                   1740:        X509_NAME_ENTRY *ne;
                   1741:        X509_NAME_ENTRY *tne, *push;
                   1742:        EVP_PKEY *pktmp;
                   1743:        int ok = -1, i, j, last, nid;
                   1744:        const char *p;
                   1745:        CONF_VALUE *cv;
                   1746:        OPENSSL_STRING row[DB_NUMBER];
                   1747:        OPENSSL_STRING *irow = NULL;
                   1748:        OPENSSL_STRING *rrow = NULL;
1.47      inoguchi 1749:        const STACK_OF(X509_EXTENSION) *exts;
1.1       jsing    1750:
1.43      inoguchi 1751:        *xret = NULL;
                   1752:
1.1       jsing    1753:        for (i = 0; i < DB_NUMBER; i++)
                   1754:                row[i] = NULL;
                   1755:
1.32      inoguchi 1756:        if (subj != NULL) {
1.1       jsing    1757:                X509_NAME *n = parse_name(subj, chtype, multirdn);
                   1758:
1.32      inoguchi 1759:                if (n == NULL) {
1.1       jsing    1760:                        ERR_print_errors(bio_err);
                   1761:                        goto err;
                   1762:                }
1.36      inoguchi 1763:                if (!X509_REQ_set_subject_name(req, n)) {
                   1764:                        X509_NAME_free(n);
                   1765:                        goto err;
                   1766:                }
1.1       jsing    1767:                X509_NAME_free(n);
                   1768:        }
                   1769:        if (default_op)
                   1770:                BIO_printf(bio_err,
                   1771:                    "The Subject's Distinguished Name is as follows\n");
                   1772:
                   1773:        name = X509_REQ_get_subject_name(req);
                   1774:        for (i = 0; i < X509_NAME_entry_count(name); i++) {
                   1775:                ne = X509_NAME_get_entry(name, i);
1.36      inoguchi 1776:                if (ne == NULL)
                   1777:                        goto err;
1.1       jsing    1778:                str = X509_NAME_ENTRY_get_data(ne);
1.36      inoguchi 1779:                if (str == NULL)
                   1780:                        goto err;
1.1       jsing    1781:                obj = X509_NAME_ENTRY_get_object(ne);
1.36      inoguchi 1782:                if (obj == NULL)
                   1783:                        goto err;
1.1       jsing    1784:
1.29      inoguchi 1785:                if (ca_config.msie_hack) {
1.1       jsing    1786:                        /* assume all type should be strings */
                   1787:                        nid = OBJ_obj2nid(ne->object);
1.36      inoguchi 1788:                        if (nid == NID_undef)
                   1789:                                goto err;
1.1       jsing    1790:
                   1791:                        if (str->type == V_ASN1_UNIVERSALSTRING)
                   1792:                                ASN1_UNIVERSALSTRING_to_string(str);
                   1793:
                   1794:                        if ((str->type == V_ASN1_IA5STRING) &&
                   1795:                            (nid != NID_pkcs9_emailAddress))
                   1796:                                str->type = V_ASN1_T61STRING;
                   1797:
                   1798:                        if ((nid == NID_pkcs9_emailAddress) &&
                   1799:                            (str->type == V_ASN1_PRINTABLESTRING))
                   1800:                                str->type = V_ASN1_IA5STRING;
                   1801:                }
                   1802:                /* If no EMAIL is wanted in the subject */
                   1803:                if ((OBJ_obj2nid(obj) == NID_pkcs9_emailAddress) && (!email_dn))
                   1804:                        continue;
                   1805:
                   1806:                /* check some things */
                   1807:                if ((OBJ_obj2nid(obj) == NID_pkcs9_emailAddress) &&
                   1808:                    (str->type != V_ASN1_IA5STRING)) {
1.33      inoguchi 1809:                        BIO_printf(bio_err,
                   1810:                            "\nemailAddress type needs to be of type IA5STRING\n");
1.1       jsing    1811:                        goto err;
                   1812:                }
                   1813:                if ((str->type != V_ASN1_BMPSTRING) &&
                   1814:                    (str->type != V_ASN1_UTF8STRING)) {
                   1815:                        j = ASN1_PRINTABLE_type(str->data, str->length);
                   1816:                        if (((j == V_ASN1_T61STRING) &&
                   1817:                            (str->type != V_ASN1_T61STRING)) ||
                   1818:                            ((j == V_ASN1_IA5STRING) &&
                   1819:                            (str->type == V_ASN1_PRINTABLESTRING))) {
1.33      inoguchi 1820:                                BIO_printf(bio_err,
                   1821:                                    "\nThe string contains characters that are illegal for the ASN.1 type\n");
1.1       jsing    1822:                                goto err;
                   1823:                        }
                   1824:                }
                   1825:                if (default_op)
                   1826:                        old_entry_print(bio_err, obj, str);
                   1827:        }
                   1828:
                   1829:        /* Ok, now we check the 'policy' stuff. */
                   1830:        if ((subject = X509_NAME_new()) == NULL) {
                   1831:                BIO_printf(bio_err, "Memory allocation failure\n");
                   1832:                goto err;
                   1833:        }
                   1834:        /* take a copy of the issuer name before we mess with it. */
                   1835:        if (selfsign)
                   1836:                CAname = X509_NAME_dup(name);
                   1837:        else
1.46      inoguchi 1838:                CAname = X509_NAME_dup(X509_get_subject_name(x509));
1.1       jsing    1839:        if (CAname == NULL)
                   1840:                goto err;
                   1841:        str = str2 = NULL;
                   1842:
                   1843:        for (i = 0; i < sk_CONF_VALUE_num(policy); i++) {
                   1844:                cv = sk_CONF_VALUE_value(policy, i);    /* get the object id */
                   1845:                if ((j = OBJ_txt2nid(cv->name)) == NID_undef) {
1.33      inoguchi 1846:                        BIO_printf(bio_err,
                   1847:                            "%s:unknown object type in 'policy' configuration\n",
                   1848:                            cv->name);
1.1       jsing    1849:                        goto err;
                   1850:                }
                   1851:                obj = OBJ_nid2obj(j);
1.36      inoguchi 1852:                if (obj == NULL)
                   1853:                        goto err;
1.1       jsing    1854:
                   1855:                last = -1;
                   1856:                for (;;) {
                   1857:                        /* lookup the object in the supplied name list */
                   1858:                        j = X509_NAME_get_index_by_OBJ(name, obj, last);
                   1859:                        if (j < 0) {
                   1860:                                if (last != -1)
                   1861:                                        break;
                   1862:                                tne = NULL;
                   1863:                        } else {
                   1864:                                tne = X509_NAME_get_entry(name, j);
1.36      inoguchi 1865:                                if (tne == NULL)
                   1866:                                        goto err;
1.1       jsing    1867:                        }
                   1868:                        last = j;
                   1869:
                   1870:                        /* depending on the 'policy', decide what to do. */
                   1871:                        push = NULL;
                   1872:                        if (strcmp(cv->value, "optional") == 0) {
                   1873:                                if (tne != NULL)
                   1874:                                        push = tne;
                   1875:                        } else if (strcmp(cv->value, "supplied") == 0) {
                   1876:                                if (tne == NULL) {
1.33      inoguchi 1877:                                        BIO_printf(bio_err,
                   1878:                                            "The %s field needed to be supplied and was missing\n",
                   1879:                                            cv->name);
1.1       jsing    1880:                                        goto err;
                   1881:                                } else
                   1882:                                        push = tne;
                   1883:                        } else if (strcmp(cv->value, "match") == 0) {
                   1884:                                int last2;
                   1885:
                   1886:                                if (tne == NULL) {
1.33      inoguchi 1887:                                        BIO_printf(bio_err,
                   1888:                                            "The mandatory %s field was missing\n",
                   1889:                                            cv->name);
1.1       jsing    1890:                                        goto err;
                   1891:                                }
                   1892:                                last2 = -1;
                   1893:
1.35      inoguchi 1894:  again2:
1.33      inoguchi 1895:                                j = X509_NAME_get_index_by_OBJ(CAname, obj,
                   1896:                                    last2);
1.1       jsing    1897:                                if ((j < 0) && (last2 == -1)) {
1.33      inoguchi 1898:                                        BIO_printf(bio_err,
                   1899:                                            "The %s field does not exist in the CA certificate,\nthe 'policy' is misconfigured\n",
                   1900:                                            cv->name);
1.1       jsing    1901:                                        goto err;
                   1902:                                }
                   1903:                                if (j >= 0) {
                   1904:                                        push = X509_NAME_get_entry(CAname, j);
1.36      inoguchi 1905:                                        if (push == NULL)
                   1906:                                                goto err;
1.1       jsing    1907:                                        str = X509_NAME_ENTRY_get_data(tne);
1.36      inoguchi 1908:                                        if (str == NULL)
                   1909:                                                goto err;
1.1       jsing    1910:                                        str2 = X509_NAME_ENTRY_get_data(push);
1.36      inoguchi 1911:                                        if (str2 == NULL)
                   1912:                                                goto err;
1.1       jsing    1913:                                        last2 = j;
                   1914:                                        if (ASN1_STRING_cmp(str, str2) != 0)
                   1915:                                                goto again2;
                   1916:                                }
                   1917:                                if (j < 0) {
1.33      inoguchi 1918:                                        BIO_printf(bio_err,
                   1919:                                            "The %s field needed to be the same in the\nCA certificate (%s) and the request (%s)\n",
                   1920:                                            cv->name, ((str2 == NULL) ?
                   1921:                                            "NULL" : (char *) str2->data),
                   1922:                                            ((str == NULL) ?
                   1923:                                            "NULL" : (char *) str->data));
1.1       jsing    1924:                                        goto err;
                   1925:                                }
                   1926:                        } else {
1.33      inoguchi 1927:                                BIO_printf(bio_err,
                   1928:                                    "%s:invalid type in 'policy' configuration\n",
                   1929:                                    cv->value);
1.1       jsing    1930:                                goto err;
                   1931:                        }
                   1932:
                   1933:                        if (push != NULL) {
                   1934:                                if (!X509_NAME_add_entry(subject, push,
                   1935:                                    -1, 0)) {
1.42      inoguchi 1936:                                        X509_NAME_ENTRY_free(push);
1.1       jsing    1937:                                        BIO_printf(bio_err,
                   1938:                                            "Memory allocation failure\n");
                   1939:                                        goto err;
                   1940:                                }
                   1941:                        }
                   1942:                        if (j < 0)
                   1943:                                break;
                   1944:                }
                   1945:        }
                   1946:
1.29      inoguchi 1947:        if (ca_config.preserve) {
1.1       jsing    1948:                X509_NAME_free(subject);
                   1949:                /* subject=X509_NAME_dup(X509_REQ_get_subject_name(req)); */
                   1950:                subject = X509_NAME_dup(name);
                   1951:                if (subject == NULL)
                   1952:                        goto err;
                   1953:        }
                   1954:
                   1955:        /* We are now totally happy, lets make and sign the certificate */
                   1956:        if (verbose)
1.33      inoguchi 1957:                BIO_printf(bio_err,
                   1958:                    "Everything appears to be ok, creating and signing the certificate\n");
1.1       jsing    1959:
                   1960:        if ((ret = X509_new()) == NULL)
                   1961:                goto err;
                   1962:
                   1963: #ifdef X509_V3
                   1964:        /* Make it an X509 v3 certificate. */
                   1965:        if (!X509_set_version(ret, 2))
                   1966:                goto err;
                   1967: #endif
1.46      inoguchi 1968:        if (X509_get_serialNumber(ret) == NULL)
1.13      beck     1969:                goto err;
1.46      inoguchi 1970:        if (BN_to_ASN1_INTEGER(serial, X509_get_serialNumber(ret)) == NULL)
1.1       jsing    1971:                goto err;
                   1972:        if (selfsign) {
                   1973:                if (!X509_set_issuer_name(ret, subject))
                   1974:                        goto err;
                   1975:        } else {
                   1976:                if (!X509_set_issuer_name(ret, X509_get_subject_name(x509)))
                   1977:                        goto err;
                   1978:        }
                   1979:
1.36      inoguchi 1980:        if (strcmp(startdate, "today") == 0) {
                   1981:                if (X509_gmtime_adj(X509_get_notBefore(ret), 0) == NULL)
                   1982:                        goto err;
                   1983:        } else if (setCertificateTime(X509_get_notBefore(ret), startdate) == -1) {
1.38      inoguchi 1984:                BIO_printf(bio_err, "Invalid start date %s\n", startdate);
1.24      beck     1985:                goto err;
                   1986:        }
1.1       jsing    1987:
1.36      inoguchi 1988:        if (enddate == NULL) {
                   1989:                if (X509_time_adj_ex(X509_get_notAfter(ret), days, 0,
                   1990:                    NULL) == NULL)
                   1991:                        goto err;
                   1992:        } else if (setCertificateTime(X509_get_notAfter(ret), enddate) == -1) {
1.38      inoguchi 1993:                BIO_printf(bio_err, "Invalid end date %s\n", enddate);
1.24      beck     1994:                goto err;
                   1995:        }
1.1       jsing    1996:
                   1997:        if (!X509_set_subject_name(ret, subject))
                   1998:                goto err;
                   1999:
                   2000:        pktmp = X509_REQ_get_pubkey(req);
1.36      inoguchi 2001:        if (pktmp == NULL)
                   2002:                goto err;
                   2003:
1.1       jsing    2004:        i = X509_set_pubkey(ret, pktmp);
                   2005:        EVP_PKEY_free(pktmp);
                   2006:        if (!i)
                   2007:                goto err;
                   2008:
                   2009:        /* Lets add the extensions, if there are any */
1.32      inoguchi 2010:        if (ext_sect != NULL) {
1.1       jsing    2011:                X509V3_CTX ctx;
1.36      inoguchi 2012:
1.1       jsing    2013:                /* Initialize the context structure */
                   2014:                if (selfsign)
                   2015:                        X509V3_set_ctx(&ctx, ret, ret, req, NULL, 0);
                   2016:                else
                   2017:                        X509V3_set_ctx(&ctx, x509, ret, req, NULL, 0);
                   2018:
1.32      inoguchi 2019:                if (extconf != NULL) {
1.1       jsing    2020:                        if (verbose)
                   2021:                                BIO_printf(bio_err,
                   2022:                                    "Extra configuration file found\n");
                   2023:
                   2024:                        /* Use the extconf configuration db LHASH */
                   2025:                        X509V3_set_nconf(&ctx, extconf);
                   2026:
                   2027:                        /* Test the structure (needed?) */
                   2028:                        /* X509V3_set_ctx_test(&ctx); */
                   2029:
                   2030:                        /* Adds exts contained in the configuration file */
                   2031:                        if (!X509V3_EXT_add_nconf(extconf, &ctx,
                   2032:                            ext_sect, ret)) {
                   2033:                                BIO_printf(bio_err,
                   2034:                                    "ERROR: adding extensions in section %s\n",
                   2035:                                    ext_sect);
                   2036:                                ERR_print_errors(bio_err);
                   2037:                                goto err;
                   2038:                        }
                   2039:                        if (verbose)
1.33      inoguchi 2040:                                BIO_printf(bio_err,
                   2041:                                    "Successfully added extensions from file.\n");
1.32      inoguchi 2042:                } else if (ext_sect != NULL) {
1.1       jsing    2043:                        /* We found extensions to be set from config file */
                   2044:                        X509V3_set_nconf(&ctx, lconf);
                   2045:
                   2046:                        if (!X509V3_EXT_add_nconf(lconf, &ctx, ext_sect, ret)) {
                   2047:                                BIO_printf(bio_err,
                   2048:                                    "ERROR: adding extensions in section %s\n",
                   2049:                                    ext_sect);
                   2050:                                ERR_print_errors(bio_err);
                   2051:                                goto err;
                   2052:                        }
                   2053:                        if (verbose)
1.33      inoguchi 2054:                                BIO_printf(bio_err,
                   2055:                                    "Successfully added extensions from config\n");
1.1       jsing    2056:                }
                   2057:        }
1.47      inoguchi 2058:
1.1       jsing    2059:        /* Copy extensions from request (if any) */
                   2060:        if (!copy_extensions(ret, req, ext_copy)) {
                   2061:                BIO_printf(bio_err, "ERROR: adding extensions from request\n");
                   2062:                ERR_print_errors(bio_err);
                   2063:                goto err;
1.47      inoguchi 2064:        }
                   2065:
                   2066:        exts = X509_get0_extensions(ret);
                   2067:        if (exts != NULL && sk_X509_EXTENSION_num(exts) > 0) {
                   2068:                /* Make it an X509 v3 certificate. */
                   2069:                if (!X509_set_version(ret, 2))
                   2070:                        goto err;
1.1       jsing    2071:        }
1.44      inoguchi 2072:
                   2073:        if (verbose)
                   2074:                BIO_printf(bio_err,
                   2075:                    "The subject name appears to be ok, checking data base for clashes\n");
                   2076:
                   2077:        /* Build the correct Subject if no email is wanted in the subject */
                   2078:        if (!email_dn) {
                   2079:                X509_NAME_ENTRY *tmpne;
                   2080:                /*
                   2081:                 * Its best to dup the subject DN and then delete any email
                   2082:                 * addresses because this retains its structure.
                   2083:                 */
                   2084:                if ((dn_subject = X509_NAME_dup(subject)) == NULL) {
                   2085:                        BIO_printf(bio_err, "Memory allocation failure\n");
                   2086:                        goto err;
                   2087:                }
                   2088:                while ((i = X509_NAME_get_index_by_NID(dn_subject,
                   2089:                    NID_pkcs9_emailAddress, -1)) >= 0) {
                   2090:                        tmpne = X509_NAME_get_entry(dn_subject, i);
                   2091:                        if (tmpne == NULL)
                   2092:                                goto err;
                   2093:                        if (X509_NAME_delete_entry(dn_subject, i) == NULL) {
                   2094:                                X509_NAME_ENTRY_free(tmpne);
                   2095:                                goto err;
                   2096:                        }
                   2097:                        X509_NAME_ENTRY_free(tmpne);
                   2098:                }
                   2099:
1.1       jsing    2100:                if (!X509_set_subject_name(ret, dn_subject))
                   2101:                        goto err;
1.44      inoguchi 2102:
                   2103:                X509_NAME_free(dn_subject);
                   2104:                dn_subject = NULL;
1.1       jsing    2105:        }
1.44      inoguchi 2106:
                   2107:        row[DB_name] = X509_NAME_oneline(X509_get_subject_name(ret), NULL, 0);
                   2108:        if (row[DB_name] == NULL) {
                   2109:                BIO_printf(bio_err, "Memory allocation failure\n");
                   2110:                goto err;
                   2111:        }
                   2112:
                   2113:        if (BN_is_zero(serial))
                   2114:                row[DB_serial] = strdup("00");
                   2115:        else
                   2116:                row[DB_serial] = BN_bn2hex(serial);
                   2117:        if (row[DB_serial] == NULL) {
                   2118:                BIO_printf(bio_err, "Memory allocation failure\n");
                   2119:                goto err;
                   2120:        }
1.48      inoguchi 2121:
                   2122:        if (row[DB_name][0] == '\0') {
                   2123:                /*
                   2124:                 * An empty subject! We'll use the serial number instead. If
                   2125:                 * unique_subject is in use then we don't want different
                   2126:                 * entries with empty subjects matching each other.
                   2127:                 */
                   2128:                free(row[DB_name]);
                   2129:                row[DB_name] = strdup(row[DB_serial]);
                   2130:                if (row[DB_name] == NULL) {
                   2131:                        BIO_printf(bio_err, "Memory allocation failure\n");
                   2132:                        goto err;
                   2133:                }
                   2134:        }
                   2135:
1.44      inoguchi 2136:        if (db->attributes.unique_subject) {
                   2137:                OPENSSL_STRING *crow = row;
                   2138:
                   2139:                rrow = TXT_DB_get_by_index(db->db, DB_name, crow);
                   2140:                if (rrow != NULL) {
                   2141:                        BIO_printf(bio_err,
                   2142:                            "ERROR:There is already a certificate for %s\n",
                   2143:                            row[DB_name]);
                   2144:                }
                   2145:        }
                   2146:        if (rrow == NULL) {
                   2147:                rrow = TXT_DB_get_by_index(db->db, DB_serial, row);
                   2148:                if (rrow != NULL) {
                   2149:                        BIO_printf(bio_err,
                   2150:                            "ERROR:Serial number %s has already been issued,\n",
                   2151:                            row[DB_serial]);
                   2152:                        BIO_printf(bio_err,
                   2153:                            "      check the database/serial_file for corruption\n");
                   2154:                }
                   2155:        }
                   2156:        if (rrow != NULL) {
                   2157:                BIO_printf(bio_err,
                   2158:                    "The matching entry has the following details\n");
1.45      inoguchi 2159:                if (rrow[DB_type][0] == DB_TYPE_EXP)
1.44      inoguchi 2160:                        p = "Expired";
1.45      inoguchi 2161:                else if (rrow[DB_type][0] == DB_TYPE_REV)
1.44      inoguchi 2162:                        p = "Revoked";
1.45      inoguchi 2163:                else if (rrow[DB_type][0] == DB_TYPE_VAL)
1.44      inoguchi 2164:                        p = "Valid";
                   2165:                else
                   2166:                        p = "\ninvalid type, Data base error\n";
                   2167:                BIO_printf(bio_err, "Type         :%s\n", p);
1.45      inoguchi 2168:                if (rrow[DB_type][0] == DB_TYPE_REV) {
1.44      inoguchi 2169:                        p = rrow[DB_exp_date];
                   2170:                        if (p == NULL)
                   2171:                                p = "undef";
                   2172:                        BIO_printf(bio_err, "Was revoked on:%s\n", p);
                   2173:                }
                   2174:                p = rrow[DB_exp_date];
                   2175:                if (p == NULL)
                   2176:                        p = "undef";
                   2177:                BIO_printf(bio_err, "Expires on    :%s\n", p);
                   2178:                p = rrow[DB_serial];
                   2179:                if (p == NULL)
                   2180:                        p = "undef";
                   2181:                BIO_printf(bio_err, "Serial Number :%s\n", p);
                   2182:                p = rrow[DB_file];
                   2183:                if (p == NULL)
                   2184:                        p = "undef";
                   2185:                BIO_printf(bio_err, "File name     :%s\n", p);
                   2186:                p = rrow[DB_name];
                   2187:                if (p == NULL)
                   2188:                        p = "undef";
                   2189:                BIO_printf(bio_err, "Subject Name  :%s\n", p);
                   2190:                ok = -1;        /* This is now a 'bad' error. */
                   2191:                goto err;
                   2192:        }
                   2193:
1.1       jsing    2194:        if (!default_op) {
                   2195:                BIO_printf(bio_err, "Certificate Details:\n");
                   2196:                /*
                   2197:                 * Never print signature details because signature not
                   2198:                 * present
                   2199:                 */
                   2200:                certopt |= X509_FLAG_NO_SIGDUMP | X509_FLAG_NO_SIGNAME;
1.36      inoguchi 2201:                if (!X509_print_ex(bio_err, ret, nameopt, certopt))
                   2202:                        goto err;
1.1       jsing    2203:        }
                   2204:        BIO_printf(bio_err, "Certificate is to be certified until ");
                   2205:        ASN1_TIME_print(bio_err, X509_get_notAfter(ret));
                   2206:        if (days)
                   2207:                BIO_printf(bio_err, " (%ld days)", days);
                   2208:        BIO_printf(bio_err, "\n");
                   2209:
                   2210:        if (!batch) {
1.21      deraadt  2211:                char answer[25];
1.1       jsing    2212:
                   2213:                BIO_printf(bio_err, "Sign the certificate? [y/n]:");
                   2214:                (void) BIO_flush(bio_err);
1.21      deraadt  2215:                if (!fgets(answer, sizeof(answer) - 1, stdin)) {
1.1       jsing    2216:                        BIO_printf(bio_err,
                   2217:                            "CERTIFICATE WILL NOT BE CERTIFIED: I/O error\n");
                   2218:                        ok = 0;
                   2219:                        goto err;
                   2220:                }
1.21      deraadt  2221:                if (!((answer[0] == 'y') || (answer[0] == 'Y'))) {
1.1       jsing    2222:                        BIO_printf(bio_err,
                   2223:                            "CERTIFICATE WILL NOT BE CERTIFIED\n");
                   2224:                        ok = 0;
                   2225:                        goto err;
                   2226:                }
                   2227:        }
1.36      inoguchi 2228:
1.1       jsing    2229:        pktmp = X509_get_pubkey(ret);
1.36      inoguchi 2230:        if (pktmp == NULL)
                   2231:                goto err;
                   2232:
1.1       jsing    2233:        if (EVP_PKEY_missing_parameters(pktmp) &&
1.36      inoguchi 2234:            !EVP_PKEY_missing_parameters(pkey)) {
                   2235:                if (!EVP_PKEY_copy_parameters(pktmp, pkey)) {
                   2236:                        EVP_PKEY_free(pktmp);
                   2237:                        goto err;
                   2238:                }
                   2239:        }
1.1       jsing    2240:        EVP_PKEY_free(pktmp);
                   2241:
                   2242:        if (!do_X509_sign(bio_err, ret, pkey, dgst, sigopts))
                   2243:                goto err;
                   2244:
                   2245:        /* We now just add it to the database */
                   2246:        row[DB_type] = malloc(2);
                   2247:
1.41      inoguchi 2248:        if ((tm = X509_get_notAfter(ret)) == NULL)
                   2249:                goto err;
1.40      inoguchi 2250:        row[DB_exp_date] = strndup(tm->data, tm->length);
1.16      bcook    2251:        if (row[DB_type] == NULL || row[DB_exp_date] == NULL) {
1.13      beck     2252:                BIO_printf(bio_err, "Memory allocation failure\n");
                   2253:                goto err;
                   2254:        }
                   2255:
1.1       jsing    2256:        row[DB_rev_date] = NULL;
                   2257:
                   2258:        /* row[DB_serial] done already */
                   2259:        row[DB_file] = malloc(8);
                   2260:
1.13      beck     2261:        if ((row[DB_type] == NULL) || (row[DB_file] == NULL) ||
                   2262:            (row[DB_name] == NULL)) {
1.1       jsing    2263:                BIO_printf(bio_err, "Memory allocation failure\n");
                   2264:                goto err;
                   2265:        }
                   2266:        (void) strlcpy(row[DB_file], "unknown", 8);
1.45      inoguchi 2267:        row[DB_type][0] = DB_TYPE_VAL;
1.1       jsing    2268:        row[DB_type][1] = '\0';
                   2269:
                   2270:        if ((irow = reallocarray(NULL, DB_NUMBER + 1, sizeof(char *))) ==
                   2271:            NULL) {
                   2272:                BIO_printf(bio_err, "Memory allocation failure\n");
                   2273:                goto err;
                   2274:        }
                   2275:        for (i = 0; i < DB_NUMBER; i++) {
                   2276:                irow[i] = row[i];
                   2277:                row[i] = NULL;
                   2278:        }
                   2279:        irow[DB_NUMBER] = NULL;
                   2280:
                   2281:        if (!TXT_DB_insert(db->db, irow)) {
                   2282:                BIO_printf(bio_err, "failed to update database\n");
                   2283:                BIO_printf(bio_err, "TXT_DB error number %ld\n", db->db->error);
                   2284:                goto err;
                   2285:        }
1.43      inoguchi 2286:
                   2287:        *xret = ret;
                   2288:        ret = NULL;
1.1       jsing    2289:        ok = 1;
1.43      inoguchi 2290:
1.26      jsing    2291:  err:
1.1       jsing    2292:        for (i = 0; i < DB_NUMBER; i++)
                   2293:                free(row[i]);
                   2294:
1.42      inoguchi 2295:        X509_NAME_free(CAname);
                   2296:        X509_NAME_free(subject);
1.44      inoguchi 2297:        X509_NAME_free(dn_subject);
1.43      inoguchi 2298:        X509_free(ret);
1.42      inoguchi 2299:
1.1       jsing    2300:        return (ok);
                   2301: }
                   2302:
1.36      inoguchi 2303: static int
1.31      inoguchi 2304: write_new_certificate(BIO *bp, X509 *x, int output_der, int notext)
1.1       jsing    2305: {
                   2306:        if (output_der) {
1.36      inoguchi 2307:                if (!i2d_X509_bio(bp, x))
                   2308:                        return (0);
1.1       jsing    2309:        }
1.36      inoguchi 2310:        if (!notext) {
                   2311:                if (!X509_print(bp, x))
                   2312:                        return (0);
                   2313:        }
                   2314:
                   2315:        return PEM_write_bio_X509(bp, x);
1.1       jsing    2316: }
                   2317:
                   2318: static int
1.31      inoguchi 2319: certify_spkac(X509 **xret, char *infile, EVP_PKEY *pkey, X509 *x509,
                   2320:     const EVP_MD *dgst, STACK_OF(OPENSSL_STRING) *sigopts,
                   2321:     STACK_OF(CONF_VALUE) *policy, CA_DB *db, BIGNUM *serial, char *subj,
1.1       jsing    2322:     unsigned long chtype, int multirdn, int email_dn, char *startdate,
1.31      inoguchi 2323:     char *enddate, long days, char *ext_sect, CONF *lconf, int verbose,
1.1       jsing    2324:     unsigned long certopt, unsigned long nameopt, int default_op, int ext_copy)
                   2325: {
1.31      inoguchi 2326:        STACK_OF(CONF_VALUE) *sk = NULL;
                   2327:        LHASH_OF(CONF_VALUE) *parms = NULL;
1.1       jsing    2328:        X509_REQ *req = NULL;
                   2329:        CONF_VALUE *cv = NULL;
                   2330:        NETSCAPE_SPKI *spki = NULL;
                   2331:        X509_REQ_INFO *ri;
                   2332:        char *type, *buf;
                   2333:        EVP_PKEY *pktmp = NULL;
                   2334:        X509_NAME *n = NULL;
                   2335:        int ok = -1, i, j;
                   2336:        long errline;
                   2337:        int nid;
                   2338:
                   2339:        /*
                   2340:         * Load input file into a hash table.  (This is just an easy
                   2341:         * way to read and parse the file, then put it into a convenient
                   2342:         * STACK format).
                   2343:         */
                   2344:        parms = CONF_load(NULL, infile, &errline);
                   2345:        if (parms == NULL) {
                   2346:                BIO_printf(bio_err, "error on line %ld of %s\n",
                   2347:                    errline, infile);
                   2348:                ERR_print_errors(bio_err);
                   2349:                goto err;
                   2350:        }
                   2351:        sk = CONF_get_section(parms, "default");
                   2352:        if (sk_CONF_VALUE_num(sk) == 0) {
                   2353:                BIO_printf(bio_err, "no name/value pairs found in %s\n",
                   2354:                    infile);
                   2355:                CONF_free(parms);
                   2356:                goto err;
                   2357:        }
                   2358:        /*
                   2359:         * Now create a dummy X509 request structure.  We don't actually
                   2360:         * have an X509 request, but we have many of the components
                   2361:         * (a public key, various DN components).  The idea is that we
                   2362:         * put these components into the right X509 request structure
                   2363:         * and we can use the same code as if you had a real X509 request.
                   2364:         */
                   2365:        req = X509_REQ_new();
                   2366:        if (req == NULL) {
                   2367:                ERR_print_errors(bio_err);
                   2368:                goto err;
                   2369:        }
                   2370:        /*
                   2371:         * Build up the subject name set.
                   2372:         */
                   2373:        ri = req->req_info;
                   2374:        n = ri->subject;
                   2375:
                   2376:        for (i = 0;; i++) {
                   2377:                if (sk_CONF_VALUE_num(sk) <= i)
                   2378:                        break;
                   2379:
                   2380:                cv = sk_CONF_VALUE_value(sk, i);
                   2381:                type = cv->name;
                   2382:                /*
                   2383:                 * Skip past any leading X. X: X, etc to allow for multiple
                   2384:                 * instances
                   2385:                 */
                   2386:                for (buf = cv->name; *buf; buf++) {
                   2387:                        if ((*buf == ':') || (*buf == ',') || (*buf == '.')) {
                   2388:                                buf++;
                   2389:                                if (*buf)
                   2390:                                        type = buf;
                   2391:                                break;
                   2392:                        }
                   2393:                }
                   2394:
                   2395:                buf = cv->value;
                   2396:                if ((nid = OBJ_txt2nid(type)) == NID_undef) {
                   2397:                        if (strcmp(type, "SPKAC") == 0) {
                   2398:                                spki = NETSCAPE_SPKI_b64_decode(cv->value, -1);
                   2399:                                if (spki == NULL) {
1.33      inoguchi 2400:                                        BIO_printf(bio_err,
                   2401:                                            "unable to load Netscape SPKAC structure\n");
1.1       jsing    2402:                                        ERR_print_errors(bio_err);
                   2403:                                        goto err;
                   2404:                                }
                   2405:                        }
                   2406:                        continue;
                   2407:                }
                   2408:                if (!X509_NAME_add_entry_by_NID(n, nid, chtype,
                   2409:                    (unsigned char *)buf, -1, -1, 0))
                   2410:                        goto err;
                   2411:        }
                   2412:        if (spki == NULL) {
                   2413:                BIO_printf(bio_err,
                   2414:                    "Netscape SPKAC structure not found in %s\n", infile);
                   2415:                goto err;
                   2416:        }
                   2417:        /*
                   2418:         * Now extract the key from the SPKI structure.
                   2419:         */
                   2420:
                   2421:        BIO_printf(bio_err,
                   2422:            "Check that the SPKAC request matches the signature\n");
                   2423:
                   2424:        if ((pktmp = NETSCAPE_SPKI_get_pubkey(spki)) == NULL) {
                   2425:                BIO_printf(bio_err, "error unpacking SPKAC public key\n");
                   2426:                goto err;
                   2427:        }
                   2428:        j = NETSCAPE_SPKI_verify(spki, pktmp);
                   2429:        if (j <= 0) {
                   2430:                BIO_printf(bio_err,
                   2431:                    "signature verification failed on SPKAC public key\n");
                   2432:                goto err;
                   2433:        }
                   2434:        BIO_printf(bio_err, "Signature ok\n");
                   2435:
1.36      inoguchi 2436:        if (!X509_REQ_set_pubkey(req, pktmp)) {
                   2437:                EVP_PKEY_free(pktmp);
                   2438:                goto err;
                   2439:        }
1.1       jsing    2440:        EVP_PKEY_free(pktmp);
                   2441:        ok = do_body(xret, pkey, x509, dgst, sigopts, policy, db, serial,
                   2442:            subj, chtype, multirdn, email_dn, startdate, enddate, days, 1,
                   2443:            verbose, req, ext_sect, lconf, certopt, nameopt, default_op,
                   2444:            ext_copy, 0);
                   2445:
1.26      jsing    2446:  err:
1.42      inoguchi 2447:        X509_REQ_free(req);
                   2448:        CONF_free(parms);
                   2449:        NETSCAPE_SPKI_free(spki);
1.1       jsing    2450:
                   2451:        return (ok);
                   2452: }
                   2453:
                   2454: static int
                   2455: check_time_format(const char *str)
                   2456: {
                   2457:        return ASN1_TIME_set_string(NULL, str);
                   2458: }
                   2459:
                   2460: static int
1.31      inoguchi 2461: do_revoke(X509 *x509, CA_DB *db, int type, char *value)
1.1       jsing    2462: {
                   2463:        ASN1_UTCTIME *tm = NULL;
                   2464:        char *row[DB_NUMBER], **rrow, **irow;
                   2465:        char *rev_str = NULL;
                   2466:        BIGNUM *bn = NULL;
                   2467:        int ok = -1, i;
                   2468:
                   2469:        for (i = 0; i < DB_NUMBER; i++)
                   2470:                row[i] = NULL;
                   2471:        row[DB_name] = X509_NAME_oneline(X509_get_subject_name(x509), NULL, 0);
                   2472:        bn = ASN1_INTEGER_to_BN(X509_get_serialNumber(x509), NULL);
1.32      inoguchi 2473:        if (bn == NULL)
1.1       jsing    2474:                goto err;
                   2475:        if (BN_is_zero(bn))
                   2476:                row[DB_serial] = strdup("00");
                   2477:        else
                   2478:                row[DB_serial] = BN_bn2hex(bn);
                   2479:        BN_free(bn);
1.48      inoguchi 2480:
                   2481:        if (row[DB_name] != NULL && row[DB_name][0] == '\0') {
                   2482:                /*
                   2483:                 * Entries with empty Subjects actually use the serial number
                   2484:                 * instead
                   2485:                 */
                   2486:                free(row[DB_name]);
                   2487:                row[DB_name] = strdup(row[DB_serial]);
                   2488:                if (row[DB_name] == NULL) {
                   2489:                        BIO_printf(bio_err, "Memory allocation failure\n");
                   2490:                        goto err;
                   2491:                }
                   2492:        }
                   2493:
1.1       jsing    2494:        if ((row[DB_name] == NULL) || (row[DB_serial] == NULL)) {
                   2495:                BIO_printf(bio_err, "Memory allocation failure\n");
                   2496:                goto err;
                   2497:        }
                   2498:        /*
                   2499:         * We have to lookup by serial number because name lookup skips
                   2500:         * revoked certs
                   2501:         */
                   2502:        rrow = TXT_DB_get_by_index(db->db, DB_serial, row);
                   2503:        if (rrow == NULL) {
                   2504:                BIO_printf(bio_err,
                   2505:                    "Adding Entry with serial number %s to DB for %s\n",
                   2506:                    row[DB_serial], row[DB_name]);
                   2507:
                   2508:                /* We now just add it to the database */
                   2509:                row[DB_type] = malloc(2);
                   2510:
1.41      inoguchi 2511:                if ((tm = X509_get_notAfter(x509)) == NULL)
                   2512:                        goto err;
1.40      inoguchi 2513:                row[DB_exp_date] = strndup(tm->data, tm->length);
1.16      bcook    2514:                if (row[DB_type] == NULL || row[DB_exp_date] == NULL) {
1.13      beck     2515:                        BIO_printf(bio_err, "Memory allocation failure\n");
                   2516:                        goto err;
                   2517:                }
1.1       jsing    2518:
                   2519:                row[DB_rev_date] = NULL;
                   2520:
                   2521:                /* row[DB_serial] done already */
                   2522:                row[DB_file] = malloc(8);
                   2523:
                   2524:                /* row[DB_name] done already */
                   2525:
1.13      beck     2526:                if ((row[DB_type] == NULL) || (row[DB_file] == NULL)) {
1.1       jsing    2527:                        BIO_printf(bio_err, "Memory allocation failure\n");
                   2528:                        goto err;
                   2529:                }
                   2530:                (void) strlcpy(row[DB_file], "unknown", 8);
1.45      inoguchi 2531:                row[DB_type][0] = DB_TYPE_VAL;
1.1       jsing    2532:                row[DB_type][1] = '\0';
                   2533:
                   2534:                if ((irow = reallocarray(NULL, sizeof(char *),
                   2535:                    (DB_NUMBER + 1))) == NULL) {
                   2536:                        BIO_printf(bio_err, "Memory allocation failure\n");
                   2537:                        goto err;
                   2538:                }
                   2539:                for (i = 0; i < DB_NUMBER; i++) {
                   2540:                        irow[i] = row[i];
                   2541:                        row[i] = NULL;
                   2542:                }
                   2543:                irow[DB_NUMBER] = NULL;
                   2544:
                   2545:                if (!TXT_DB_insert(db->db, irow)) {
                   2546:                        BIO_printf(bio_err, "failed to update database\n");
                   2547:                        BIO_printf(bio_err, "TXT_DB error number %ld\n",
                   2548:                            db->db->error);
                   2549:                        goto err;
                   2550:                }
                   2551:                /* Revoke Certificate */
                   2552:                ok = do_revoke(x509, db, type, value);
                   2553:
                   2554:                goto err;
                   2555:
                   2556:        } else if (index_name_cmp_noconst(row, rrow)) {
                   2557:                BIO_printf(bio_err, "ERROR:name does not match %s\n",
                   2558:                    row[DB_name]);
                   2559:                goto err;
1.45      inoguchi 2560:        } else if (rrow[DB_type][0] == DB_TYPE_REV) {
1.1       jsing    2561:                BIO_printf(bio_err, "ERROR:Already revoked, serial number %s\n",
                   2562:                    row[DB_serial]);
                   2563:                goto err;
                   2564:        } else {
                   2565:                BIO_printf(bio_err, "Revoking Certificate %s.\n",
                   2566:                    rrow[DB_serial]);
                   2567:                rev_str = make_revocation_str(type, value);
1.32      inoguchi 2568:                if (rev_str == NULL) {
1.1       jsing    2569:                        BIO_printf(bio_err, "Error in revocation arguments\n");
                   2570:                        goto err;
                   2571:                }
1.45      inoguchi 2572:                rrow[DB_type][0] = DB_TYPE_REV;
1.1       jsing    2573:                rrow[DB_type][1] = '\0';
                   2574:                rrow[DB_rev_date] = rev_str;
                   2575:        }
                   2576:        ok = 1;
                   2577:
1.26      jsing    2578:  err:
1.1       jsing    2579:        for (i = 0; i < DB_NUMBER; i++)
                   2580:                free(row[i]);
                   2581:
                   2582:        return (ok);
                   2583: }
                   2584:
                   2585: static int
1.31      inoguchi 2586: get_certificate_status(const char *serial, CA_DB *db)
1.1       jsing    2587: {
                   2588:        char *row[DB_NUMBER], **rrow;
                   2589:        int ok = -1, i;
                   2590:
                   2591:        /* Free Resources */
                   2592:        for (i = 0; i < DB_NUMBER; i++)
                   2593:                row[i] = NULL;
                   2594:
                   2595:        /* Malloc needed char spaces */
                   2596:        row[DB_serial] = malloc(strlen(serial) + 2);
                   2597:        if (row[DB_serial] == NULL) {
                   2598:                BIO_printf(bio_err, "Malloc failure\n");
                   2599:                goto err;
                   2600:        }
                   2601:        if (strlen(serial) % 2) {
                   2602:                /* Set the first char to 0 */ ;
                   2603:                row[DB_serial][0] = '0';
                   2604:
                   2605:                /* Copy String from serial to row[DB_serial] */
                   2606:                memcpy(row[DB_serial] + 1, serial, strlen(serial));
                   2607:                row[DB_serial][strlen(serial) + 1] = '\0';
                   2608:        } else {
                   2609:                /* Copy String from serial to row[DB_serial] */
                   2610:                memcpy(row[DB_serial], serial, strlen(serial));
                   2611:                row[DB_serial][strlen(serial)] = '\0';
                   2612:        }
                   2613:
                   2614:        /* Make it Upper Case */
                   2615:        for (i = 0; row[DB_serial][i] != '\0'; i++)
                   2616:                row[DB_serial][i] = toupper((unsigned char) row[DB_serial][i]);
                   2617:
                   2618:
                   2619:        ok = 1;
                   2620:
                   2621:        /* Search for the certificate */
                   2622:        rrow = TXT_DB_get_by_index(db->db, DB_serial, row);
                   2623:        if (rrow == NULL) {
                   2624:                BIO_printf(bio_err, "Serial %s not present in db.\n",
                   2625:                    row[DB_serial]);
                   2626:                ok = -1;
                   2627:                goto err;
1.45      inoguchi 2628:        } else if (rrow[DB_type][0] == DB_TYPE_VAL) {
1.1       jsing    2629:                BIO_printf(bio_err, "%s=Valid (%c)\n",
                   2630:                    row[DB_serial], rrow[DB_type][0]);
                   2631:                goto err;
1.45      inoguchi 2632:        } else if (rrow[DB_type][0] == DB_TYPE_REV) {
1.1       jsing    2633:                BIO_printf(bio_err, "%s=Revoked (%c)\n",
                   2634:                    row[DB_serial], rrow[DB_type][0]);
                   2635:                goto err;
1.45      inoguchi 2636:        } else if (rrow[DB_type][0] == DB_TYPE_EXP) {
1.1       jsing    2637:                BIO_printf(bio_err, "%s=Expired (%c)\n",
                   2638:                    row[DB_serial], rrow[DB_type][0]);
                   2639:                goto err;
1.45      inoguchi 2640:        } else if (rrow[DB_type][0] == DB_TYPE_SUSP) {
1.1       jsing    2641:                BIO_printf(bio_err, "%s=Suspended (%c)\n",
                   2642:                    row[DB_serial], rrow[DB_type][0]);
                   2643:                goto err;
                   2644:        } else {
                   2645:                BIO_printf(bio_err, "%s=Unknown (%c).\n",
                   2646:                    row[DB_serial], rrow[DB_type][0]);
                   2647:                ok = -1;
                   2648:        }
                   2649:
1.26      jsing    2650:  err:
1.1       jsing    2651:        for (i = 0; i < DB_NUMBER; i++)
                   2652:                free(row[i]);
                   2653:
                   2654:        return (ok);
                   2655: }
                   2656:
                   2657: static int
1.31      inoguchi 2658: do_updatedb(CA_DB *db)
1.1       jsing    2659: {
                   2660:        ASN1_UTCTIME *a_tm = NULL;
                   2661:        int i, cnt = 0;
                   2662:        int db_y2k, a_y2k;      /* flags = 1 if y >= 2000 */
1.36      inoguchi 2663:        char **rrow, *a_tm_s = NULL;
1.1       jsing    2664:
                   2665:        a_tm = ASN1_UTCTIME_new();
1.36      inoguchi 2666:        if (a_tm == NULL) {
                   2667:                cnt = -1;
                   2668:                goto err;
                   2669:        }
1.1       jsing    2670:
                   2671:        /* get actual time and make a string */
                   2672:        a_tm = X509_gmtime_adj(a_tm, 0);
1.36      inoguchi 2673:        if (a_tm == NULL) {
                   2674:                cnt = -1;
                   2675:                goto err;
                   2676:        }
1.40      inoguchi 2677:        a_tm_s = strndup(a_tm->data, a_tm->length);
1.1       jsing    2678:        if (a_tm_s == NULL) {
                   2679:                cnt = -1;
                   2680:                goto err;
                   2681:        }
                   2682:
                   2683:        if (strncmp(a_tm_s, "49", 2) <= 0)
                   2684:                a_y2k = 1;
                   2685:        else
                   2686:                a_y2k = 0;
                   2687:
                   2688:        for (i = 0; i < sk_OPENSSL_PSTRING_num(db->db->data); i++) {
                   2689:                rrow = sk_OPENSSL_PSTRING_value(db->db->data, i);
                   2690:
1.45      inoguchi 2691:                if (rrow[DB_type][0] == DB_TYPE_VAL) {
1.1       jsing    2692:                        /* ignore entries that are not valid */
                   2693:                        if (strncmp(rrow[DB_exp_date], "49", 2) <= 0)
                   2694:                                db_y2k = 1;
                   2695:                        else
                   2696:                                db_y2k = 0;
                   2697:
                   2698:                        if (db_y2k == a_y2k) {
                   2699:                                /* all on the same y2k side */
                   2700:                                if (strcmp(rrow[DB_exp_date], a_tm_s) <= 0) {
1.45      inoguchi 2701:                                        rrow[DB_type][0] = DB_TYPE_EXP;
1.1       jsing    2702:                                        rrow[DB_type][1] = '\0';
                   2703:                                        cnt++;
                   2704:
                   2705:                                        BIO_printf(bio_err, "%s=Expired\n",
                   2706:                                            rrow[DB_serial]);
                   2707:                                }
                   2708:                        } else if (db_y2k < a_y2k) {
1.45      inoguchi 2709:                                rrow[DB_type][0] = DB_TYPE_EXP;
1.1       jsing    2710:                                rrow[DB_type][1] = '\0';
                   2711:                                cnt++;
                   2712:
                   2713:                                BIO_printf(bio_err, "%s=Expired\n",
                   2714:                                    rrow[DB_serial]);
                   2715:                        }
                   2716:                }
                   2717:        }
                   2718:
1.26      jsing    2719:  err:
1.1       jsing    2720:        ASN1_UTCTIME_free(a_tm);
                   2721:        free(a_tm_s);
                   2722:
                   2723:        return (cnt);
                   2724: }
                   2725:
                   2726: static const char *crl_reasons[] = {
                   2727:        /* CRL reason strings */
                   2728:        "unspecified",
                   2729:        "keyCompromise",
                   2730:        "CACompromise",
                   2731:        "affiliationChanged",
                   2732:        "superseded",
                   2733:        "cessationOfOperation",
                   2734:        "certificateHold",
                   2735:        "removeFromCRL",
                   2736:        /* Additional pseudo reasons */
                   2737:        "holdInstruction",
                   2738:        "keyTime",
                   2739:        "CAkeyTime"
                   2740: };
                   2741:
                   2742: #define NUM_REASONS (sizeof(crl_reasons) / sizeof(char *))
                   2743:
                   2744: /* Given revocation information convert to a DB string.
                   2745:  * The format of the string is:
                   2746:  * revtime[,reason,extra]. Where 'revtime' is the
                   2747:  * revocation time (the current time). 'reason' is the
                   2748:  * optional CRL reason and 'extra' is any additional
                   2749:  * argument
                   2750:  */
                   2751:
                   2752: char *
                   2753: make_revocation_str(int rev_type, char *rev_arg)
                   2754: {
                   2755:        char *other = NULL, *str;
                   2756:        const char *reason = NULL;
                   2757:        ASN1_OBJECT *otmp;
                   2758:        ASN1_UTCTIME *revtm = NULL;
                   2759:        int i;
                   2760:        switch (rev_type) {
                   2761:        case REV_NONE:
                   2762:                break;
                   2763:
                   2764:        case REV_CRL_REASON:
                   2765:                for (i = 0; i < 8; i++) {
1.35      inoguchi 2766:                        if (strcasecmp(rev_arg, crl_reasons[i]) == 0) {
1.1       jsing    2767:                                reason = crl_reasons[i];
                   2768:                                break;
                   2769:                        }
                   2770:                }
                   2771:                if (reason == NULL) {
                   2772:                        BIO_printf(bio_err, "Unknown CRL reason %s\n", rev_arg);
                   2773:                        return NULL;
                   2774:                }
                   2775:                break;
                   2776:
                   2777:        case REV_HOLD:
                   2778:                /* Argument is an OID */
                   2779:                otmp = OBJ_txt2obj(rev_arg, 0);
                   2780:                ASN1_OBJECT_free(otmp);
                   2781:
                   2782:                if (otmp == NULL) {
                   2783:                        BIO_printf(bio_err,
                   2784:                            "Invalid object identifier %s\n", rev_arg);
                   2785:                        return NULL;
                   2786:                }
                   2787:                reason = "holdInstruction";
                   2788:                other = rev_arg;
                   2789:                break;
                   2790:
                   2791:        case REV_KEY_COMPROMISE:
                   2792:        case REV_CA_COMPROMISE:
                   2793:                /* Argument is the key compromise time  */
                   2794:                if (!ASN1_GENERALIZEDTIME_set_string(NULL, rev_arg)) {
                   2795:                        BIO_printf(bio_err,
                   2796:                            "Invalid time format %s. Need YYYYMMDDHHMMSSZ\n",
                   2797:                            rev_arg);
                   2798:                        return NULL;
                   2799:                }
                   2800:                other = rev_arg;
                   2801:                if (rev_type == REV_KEY_COMPROMISE)
                   2802:                        reason = "keyTime";
                   2803:                else
                   2804:                        reason = "CAkeyTime";
                   2805:
                   2806:                break;
                   2807:        }
                   2808:
                   2809:        revtm = X509_gmtime_adj(NULL, 0);
1.36      inoguchi 2810:        if (revtm == NULL)
                   2811:                return NULL;
                   2812:
1.1       jsing    2813:        if (asprintf(&str, "%s%s%s%s%s", revtm->data,
                   2814:            reason ? "," : "", reason ? reason : "",
                   2815:            other ? "," : "", other ? other : "") == -1)
                   2816:                str = NULL;
1.36      inoguchi 2817:
1.1       jsing    2818:        ASN1_UTCTIME_free(revtm);
1.36      inoguchi 2819:
1.1       jsing    2820:        return str;
                   2821: }
                   2822:
                   2823: /* Convert revocation field to X509_REVOKED entry
                   2824:  * return code:
                   2825:  * 0 error
                   2826:  * 1 OK
                   2827:  * 2 OK and some extensions added (i.e. V2 CRL)
                   2828:  */
                   2829:
                   2830: int
1.31      inoguchi 2831: make_revoked(X509_REVOKED *rev, const char *str)
1.1       jsing    2832: {
                   2833:        char *tmp = NULL;
                   2834:        int reason_code = -1;
                   2835:        int i, ret = 0;
                   2836:        ASN1_OBJECT *hold = NULL;
                   2837:        ASN1_GENERALIZEDTIME *comp_time = NULL;
                   2838:        ASN1_ENUMERATED *rtmp = NULL;
                   2839:
                   2840:        ASN1_TIME *revDate = NULL;
                   2841:
                   2842:        i = unpack_revinfo(&revDate, &reason_code, &hold, &comp_time, str);
                   2843:
                   2844:        if (i == 0)
                   2845:                goto err;
                   2846:
1.32      inoguchi 2847:        if (rev != NULL && !X509_REVOKED_set_revocationDate(rev, revDate))
1.1       jsing    2848:                goto err;
                   2849:
1.32      inoguchi 2850:        if (rev != NULL && (reason_code != OCSP_REVOKED_STATUS_NOSTATUS)) {
1.1       jsing    2851:                rtmp = ASN1_ENUMERATED_new();
1.32      inoguchi 2852:                if (rtmp == NULL || !ASN1_ENUMERATED_set(rtmp, reason_code))
1.1       jsing    2853:                        goto err;
                   2854:                if (!X509_REVOKED_add1_ext_i2d(rev, NID_crl_reason, rtmp, 0, 0))
                   2855:                        goto err;
                   2856:        }
1.32      inoguchi 2857:        if (rev != NULL && comp_time != NULL) {
1.1       jsing    2858:                if (!X509_REVOKED_add1_ext_i2d(rev, NID_invalidity_date,
                   2859:                    comp_time, 0, 0))
                   2860:                        goto err;
                   2861:        }
1.32      inoguchi 2862:        if (rev != NULL && hold != NULL) {
1.1       jsing    2863:                if (!X509_REVOKED_add1_ext_i2d(rev, NID_hold_instruction_code,
                   2864:                    hold, 0, 0))
                   2865:                        goto err;
                   2866:        }
                   2867:        if (reason_code != OCSP_REVOKED_STATUS_NOSTATUS)
                   2868:                ret = 2;
                   2869:        else
                   2870:                ret = 1;
                   2871:
1.26      jsing    2872:  err:
1.1       jsing    2873:        free(tmp);
                   2874:
                   2875:        ASN1_OBJECT_free(hold);
                   2876:        ASN1_GENERALIZEDTIME_free(comp_time);
                   2877:        ASN1_ENUMERATED_free(rtmp);
                   2878:        ASN1_TIME_free(revDate);
                   2879:
                   2880:        return ret;
                   2881: }
                   2882:
                   2883: int
1.31      inoguchi 2884: old_entry_print(BIO *bp, ASN1_OBJECT *obj, ASN1_STRING *str)
1.1       jsing    2885: {
                   2886:        char buf[25], *pbuf, *p;
                   2887:        int j;
                   2888:
                   2889:        j = i2a_ASN1_OBJECT(bp, obj);
                   2890:        pbuf = buf;
                   2891:        for (j = 22 - j; j > 0; j--)
                   2892:                *(pbuf++) = ' ';
                   2893:        *(pbuf++) = ':';
                   2894:        *(pbuf++) = '\0';
                   2895:        BIO_puts(bp, buf);
                   2896:
                   2897:        if (str->type == V_ASN1_PRINTABLESTRING)
                   2898:                BIO_printf(bp, "PRINTABLE:'");
                   2899:        else if (str->type == V_ASN1_T61STRING)
                   2900:                BIO_printf(bp, "T61STRING:'");
                   2901:        else if (str->type == V_ASN1_IA5STRING)
                   2902:                BIO_printf(bp, "IA5STRING:'");
                   2903:        else if (str->type == V_ASN1_UNIVERSALSTRING)
                   2904:                BIO_printf(bp, "UNIVERSALSTRING:'");
                   2905:        else
                   2906:                BIO_printf(bp, "ASN.1 %2d:'", str->type);
                   2907:
                   2908:        p = (char *) str->data;
                   2909:        for (j = str->length; j > 0; j--) {
                   2910:                if ((*p >= ' ') && (*p <= '~'))
                   2911:                        BIO_printf(bp, "%c", *p);
                   2912:                else if (*p & 0x80)
                   2913:                        BIO_printf(bp, "\\0x%02X", *p);
                   2914:                else if ((unsigned char) *p == 0xf7)
                   2915:                        BIO_printf(bp, "^?");
                   2916:                else
                   2917:                        BIO_printf(bp, "^%c", *p + '@');
                   2918:                p++;
                   2919:        }
                   2920:        BIO_printf(bp, "'\n");
                   2921:        return 1;
                   2922: }
                   2923:
                   2924: int
1.31      inoguchi 2925: unpack_revinfo(ASN1_TIME **prevtm, int *preason, ASN1_OBJECT **phold,
                   2926:     ASN1_GENERALIZEDTIME **pinvtm, const char *str)
1.1       jsing    2927: {
                   2928:        char *tmp = NULL;
                   2929:        char *rtime_str, *reason_str = NULL, *arg_str = NULL, *p;
                   2930:        int reason_code = -1;
                   2931:        int ret = 0;
                   2932:        unsigned int i;
                   2933:        ASN1_OBJECT *hold = NULL;
                   2934:        ASN1_GENERALIZEDTIME *comp_time = NULL;
                   2935:
                   2936:        if ((tmp = strdup(str)) == NULL) {
                   2937:                BIO_printf(bio_err, "malloc failed\n");
                   2938:                goto err;
                   2939:        }
                   2940:        p = strchr(tmp, ',');
                   2941:        rtime_str = tmp;
                   2942:
1.32      inoguchi 2943:        if (p != NULL) {
1.1       jsing    2944:                *p = '\0';
                   2945:                p++;
                   2946:                reason_str = p;
                   2947:                p = strchr(p, ',');
1.32      inoguchi 2948:                if (p != NULL) {
1.1       jsing    2949:                        *p = '\0';
                   2950:                        arg_str = p + 1;
                   2951:                }
                   2952:        }
1.32      inoguchi 2953:        if (prevtm != NULL) {
1.1       jsing    2954:                *prevtm = ASN1_UTCTIME_new();
                   2955:                if (!ASN1_UTCTIME_set_string(*prevtm, rtime_str)) {
                   2956:                        BIO_printf(bio_err, "invalid revocation date %s\n",
                   2957:                            rtime_str);
                   2958:                        goto err;
                   2959:                }
                   2960:        }
1.32      inoguchi 2961:        if (reason_str != NULL) {
1.1       jsing    2962:                for (i = 0; i < NUM_REASONS; i++) {
1.35      inoguchi 2963:                        if (strcasecmp(reason_str, crl_reasons[i]) == 0) {
1.1       jsing    2964:                                reason_code = i;
                   2965:                                break;
                   2966:                        }
                   2967:                }
                   2968:                if (reason_code == OCSP_REVOKED_STATUS_NOSTATUS) {
                   2969:                        BIO_printf(bio_err, "invalid reason code %s\n",
                   2970:                            reason_str);
                   2971:                        goto err;
                   2972:                }
                   2973:                if (reason_code == 7)
                   2974:                        reason_code = OCSP_REVOKED_STATUS_REMOVEFROMCRL;
                   2975:                else if (reason_code == 8) {    /* Hold instruction */
1.32      inoguchi 2976:                        if (arg_str == NULL) {
1.1       jsing    2977:                                BIO_printf(bio_err,
                   2978:                                    "missing hold instruction\n");
                   2979:                                goto err;
                   2980:                        }
                   2981:                        reason_code = OCSP_REVOKED_STATUS_CERTIFICATEHOLD;
                   2982:                        hold = OBJ_txt2obj(arg_str, 0);
                   2983:
1.32      inoguchi 2984:                        if (hold == NULL) {
1.1       jsing    2985:                                BIO_printf(bio_err,
                   2986:                                    "invalid object identifier %s\n", arg_str);
                   2987:                                goto err;
                   2988:                        }
1.32      inoguchi 2989:                        if (phold != NULL)
1.1       jsing    2990:                                *phold = hold;
                   2991:                } else if ((reason_code == 9) || (reason_code == 10)) {
1.32      inoguchi 2992:                        if (arg_str == NULL) {
1.1       jsing    2993:                                BIO_printf(bio_err,
                   2994:                                    "missing compromised time\n");
                   2995:                                goto err;
                   2996:                        }
                   2997:                        comp_time = ASN1_GENERALIZEDTIME_new();
                   2998:                        if (!ASN1_GENERALIZEDTIME_set_string(comp_time,
                   2999:                            arg_str)) {
                   3000:                                BIO_printf(bio_err,
                   3001:                                    "invalid compromised time %s\n", arg_str);
                   3002:                                goto err;
                   3003:                        }
                   3004:                        if (reason_code == 9)
                   3005:                                reason_code = OCSP_REVOKED_STATUS_KEYCOMPROMISE;
                   3006:                        else
                   3007:                                reason_code = OCSP_REVOKED_STATUS_CACOMPROMISE;
                   3008:                }
                   3009:        }
1.32      inoguchi 3010:        if (preason != NULL)
1.1       jsing    3011:                *preason = reason_code;
1.32      inoguchi 3012:        if (pinvtm != NULL)
1.1       jsing    3013:                *pinvtm = comp_time;
                   3014:        else
                   3015:                ASN1_GENERALIZEDTIME_free(comp_time);
                   3016:
                   3017:        ret = 1;
                   3018:
1.26      jsing    3019:  err:
1.1       jsing    3020:        free(tmp);
                   3021:
1.32      inoguchi 3022:        if (phold == NULL)
1.1       jsing    3023:                ASN1_OBJECT_free(hold);
1.32      inoguchi 3024:        if (pinvtm == NULL)
1.1       jsing    3025:                ASN1_GENERALIZEDTIME_free(comp_time);
                   3026:
                   3027:        return ret;
                   3028: }
                   3029:
                   3030: static char *
1.31      inoguchi 3031: bin2hex(unsigned char *data, size_t len)
1.1       jsing    3032: {
                   3033:        char *ret = NULL;
                   3034:        char hex[] = "0123456789ABCDEF";
                   3035:        int i;
                   3036:
1.32      inoguchi 3037:        if ((ret = malloc(len * 2 + 1)) != NULL) {
1.1       jsing    3038:                for (i = 0; i < len; i++) {
                   3039:                        ret[i * 2 + 0] = hex[data[i] >> 4];
                   3040:                        ret[i * 2 + 1] = hex[data[i] & 0x0F];
                   3041:                }
                   3042:                ret[len * 2] = '\0';
                   3043:        }
                   3044:        return ret;
                   3045: }