[BACK]Return to ssh-add.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Annotation of src/usr.bin/ssh/ssh-add.c, Revision 1.97

1.97    ! tedu        1: /* $OpenBSD: ssh-add.c,v 1.96 2010/05/14 00:47:22 djm Exp $ */
1.1       deraadt     2: /*
1.13      deraadt     3:  * Author: Tatu Ylonen <ylo@cs.hut.fi>
                      4:  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
                      5:  *                    All rights reserved
                      6:  * Adds an identity to the authentication server, or removes an identity.
1.19      markus      7:  *
1.22      deraadt     8:  * As far as I am concerned, the code I have written for this software
                      9:  * can be used freely for any purpose.  Any derived versions of this
                     10:  * software must be clearly marked as such, and if the derived work is
                     11:  * incompatible with the protocol description in the RFC file, it must be
                     12:  * called by a name other than "ssh" or "Secure Shell".
                     13:  *
1.19      markus     14:  * SSH2 implementation,
1.41      markus     15:  * Copyright (c) 2000, 2001 Markus Friedl.  All rights reserved.
1.22      deraadt    16:  *
                     17:  * Redistribution and use in source and binary forms, with or without
                     18:  * modification, are permitted provided that the following conditions
                     19:  * are met:
                     20:  * 1. Redistributions of source code must retain the above copyright
                     21:  *    notice, this list of conditions and the following disclaimer.
                     22:  * 2. Redistributions in binary form must reproduce the above copyright
                     23:  *    notice, this list of conditions and the following disclaimer in the
                     24:  *    documentation and/or other materials provided with the distribution.
                     25:  *
                     26:  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
                     27:  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
                     28:  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
                     29:  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
                     30:  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
                     31:  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
                     32:  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
                     33:  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
                     34:  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
                     35:  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1.13      deraadt    36:  */
1.1       deraadt    37:
1.75      stevesk    38: #include <sys/types.h>
                     39: #include <sys/stat.h>
1.86      stevesk    40: #include <sys/param.h>
1.16      markus     41:
1.19      markus     42: #include <openssl/evp.h>
1.81      stevesk    43:
1.82      stevesk    44: #include <fcntl.h>
1.81      stevesk    45: #include <pwd.h>
1.88      stevesk    46: #include <stdio.h>
1.87      stevesk    47: #include <stdlib.h>
1.85      stevesk    48: #include <string.h>
1.84      stevesk    49: #include <unistd.h>
1.1       deraadt    50:
1.89      deraadt    51: #include "xmalloc.h"
1.27      markus     52: #include "ssh.h"
1.1       deraadt    53: #include "rsa.h"
1.27      markus     54: #include "log.h"
1.16      markus     55: #include "key.h"
1.89      deraadt    56: #include "buffer.h"
1.18      markus     57: #include "authfd.h"
1.16      markus     58: #include "authfile.h"
1.25      markus     59: #include "pathnames.h"
1.57      stevesk    60: #include "misc.h"
1.1       deraadt    61:
1.45      jakob      62: /* argv0 */
                     63: extern char *__progname;
                     64:
1.48      djm        65: /* Default files to add */
                     66: static char *default_files[] = {
                     67:        _PATH_SSH_CLIENT_ID_RSA,
                     68:        _PATH_SSH_CLIENT_ID_DSA,
1.51      markus     69:        _PATH_SSH_CLIENT_IDENTITY,
1.48      djm        70:        NULL
                     71: };
                     72:
1.56      markus     73: /* Default lifetime (0 == forever) */
1.57      stevesk    74: static int lifetime = 0;
1.48      djm        75:
1.65      markus     76: /* User has to confirm key use */
                     77: static int confirm = 0;
                     78:
1.33      markus     79: /* we keep a cache of one passphrases */
                     80: static char *pass = NULL;
1.39      itojun     81: static void
1.33      markus     82: clear_pass(void)
                     83: {
                     84:        if (pass) {
                     85:                memset(pass, 0, strlen(pass));
                     86:                xfree(pass);
                     87:                pass = NULL;
                     88:        }
                     89: }
                     90:
1.46      djm        91: static int
1.7       markus     92: delete_file(AuthenticationConnection *ac, const char *filename)
1.1       deraadt    93: {
1.16      markus     94:        Key *public;
1.32      markus     95:        char *comment = NULL;
1.46      djm        96:        int ret = -1;
1.1       deraadt    97:
1.31      markus     98:        public = key_load_public(filename, &comment);
                     99:        if (public == NULL) {
                    100:                printf("Bad key file %s\n", filename);
1.46      djm       101:                return -1;
1.12      markus    102:        }
1.46      djm       103:        if (ssh_remove_identity(ac, public)) {
1.12      markus    104:                fprintf(stderr, "Identity removed: %s (%s)\n", filename, comment);
1.46      djm       105:                ret = 0;
                    106:        } else
1.12      markus    107:                fprintf(stderr, "Could not remove identity: %s\n", filename);
1.46      djm       108:
1.16      markus    109:        key_free(public);
1.12      markus    110:        xfree(comment);
1.47      deraadt   111:
1.46      djm       112:        return ret;
1.1       deraadt   113: }
                    114:
1.19      markus    115: /* Send a request to remove all identities. */
1.46      djm       116: static int
1.7       markus    117: delete_all(AuthenticationConnection *ac)
1.1       deraadt   118: {
1.46      djm       119:        int ret = -1;
1.19      markus    120:
1.46      djm       121:        if (ssh_remove_all_identities(ac, 1))
                    122:                ret = 0;
1.19      markus    123:        /* ignore error-code for ssh2 */
                    124:        ssh_remove_all_identities(ac, 2);
                    125:
1.46      djm       126:        if (ret == 0)
1.12      markus    127:                fprintf(stderr, "All identities removed.\n");
                    128:        else
1.24      markus    129:                fprintf(stderr, "Failed to remove all identities.\n");
1.46      djm       130:
                    131:        return ret;
1.1       deraadt   132: }
                    133:
1.46      djm       134: static int
1.7       markus    135: add_file(AuthenticationConnection *ac, const char *filename)
1.1       deraadt   136: {
1.93      djm       137:        Key *private, *cert;
1.36      markus    138:        char *comment = NULL;
1.93      djm       139:        char msg[1024], *certpath;
1.76      dtucker   140:        int fd, perms_ok, ret = -1;
1.12      markus    141:
1.83      stevesk   142:        if ((fd = open(filename, O_RDONLY)) < 0) {
1.19      markus    143:                perror(filename);
1.46      djm       144:                return -1;
1.19      markus    145:        }
1.76      dtucker   146:
                    147:        /*
                    148:         * Since we'll try to load a keyfile multiple times, permission errors
                    149:         * will occur multiple times, so check perms first and bail if wrong.
                    150:         */
                    151:        perms_ok = key_perm_ok(fd, filename);
                    152:        close(fd);
                    153:        if (!perms_ok)
                    154:                return -1;
                    155:
1.12      markus    156:        /* At first, try empty passphrase */
1.31      markus    157:        private = key_load_private(filename, "", &comment);
                    158:        if (comment == NULL)
                    159:                comment = xstrdup(filename);
1.33      markus    160:        /* try last */
                    161:        if (private == NULL && pass != NULL)
                    162:                private = key_load_private(filename, pass, NULL);
1.31      markus    163:        if (private == NULL) {
1.33      markus    164:                /* clear passphrase since it did not work */
                    165:                clear_pass();
1.37      markus    166:                snprintf(msg, sizeof msg, "Enter passphrase for %.200s: ",
1.72      djm       167:                    comment);
1.12      markus    168:                for (;;) {
1.40      markus    169:                        pass = read_passphrase(msg, RP_ALLOW_STDIN);
1.12      markus    170:                        if (strcmp(pass, "") == 0) {
1.35      markus    171:                                clear_pass();
1.31      markus    172:                                xfree(comment);
1.46      djm       173:                                return -1;
1.12      markus    174:                        }
1.31      markus    175:                        private = key_load_private(filename, pass, &comment);
                    176:                        if (private != NULL)
1.12      markus    177:                                break;
1.33      markus    178:                        clear_pass();
1.68      markus    179:                        snprintf(msg, sizeof msg,
                    180:                            "Bad passphrase, try again for %.200s: ", comment);
1.12      markus    181:                }
                    182:        }
1.60      markus    183:
1.69      djm       184:        if (ssh_add_identity_constrained(ac, private, comment, lifetime,
                    185:            confirm)) {
1.60      markus    186:                fprintf(stderr, "Identity added: %s (%s)\n", filename, comment);
                    187:                ret = 0;
                    188:                if (lifetime != 0)
1.64      deraadt   189:                        fprintf(stderr,
1.60      markus    190:                            "Lifetime set to %d seconds\n", lifetime);
1.69      djm       191:                if (confirm != 0)
1.65      markus    192:                        fprintf(stderr,
1.96      djm       193:                            "The user must confirm each use of the key\n");
1.60      markus    194:        } else {
1.12      markus    195:                fprintf(stderr, "Could not add identity: %s\n", filename);
1.56      markus    196:        }
                    197:
1.93      djm       198:
                    199:        /* Now try to add the certificate flavour too */
                    200:        xasprintf(&certpath, "%s-cert.pub", filename);
1.96      djm       201:        if ((cert = key_load_public(certpath, NULL)) == NULL)
                    202:                goto out;
                    203:
                    204:        if (!key_equal_public(cert, private)) {
                    205:                error("Certificate %s does not match private key %s",
                    206:                    certpath, filename);
1.93      djm       207:                key_free(cert);
1.96      djm       208:                goto out;
                    209:        }
1.93      djm       210:
1.96      djm       211:        /* Graft with private bits */
                    212:        if (key_to_certified(private, key_cert_is_legacy(cert)) != 0) {
                    213:                error("%s: key_to_certified failed", __func__);
                    214:                key_free(cert);
                    215:                goto out;
1.94      otto      216:        }
1.96      djm       217:        key_cert_copy(cert, private);
                    218:        key_free(cert);
1.93      djm       219:
1.96      djm       220:        if (!ssh_add_identity_constrained(ac, private, comment,
                    221:            lifetime, confirm)) {
                    222:                error("Certificate %s (%s) add failed", certpath,
                    223:                    private->cert->key_id);
                    224:        }
                    225:        fprintf(stderr, "Certificate added: %s (%s)\n", certpath,
                    226:            private->cert->key_id);
                    227:        if (lifetime != 0)
                    228:                fprintf(stderr, "Lifetime set to %d seconds\n", lifetime);
                    229:        if (confirm != 0)
                    230:                fprintf(stderr, "The user must confirm each use of the key\n");
                    231:  out:
1.93      djm       232:        xfree(certpath);
1.31      markus    233:        xfree(comment);
1.16      markus    234:        key_free(private);
1.47      deraadt   235:
1.46      djm       236:        return ret;
1.1       deraadt   237: }
                    238:
1.46      djm       239: static int
1.44      markus    240: update_card(AuthenticationConnection *ac, int add, const char *id)
1.42      markus    241: {
1.53      rees      242:        char *pin;
1.66      markus    243:        int ret = -1;
1.53      rees      244:
1.92      markus    245:        pin = read_passphrase("Enter passphrase for PKCS#11: ", RP_ALLOW_STDIN);
1.53      rees      246:        if (pin == NULL)
                    247:                return -1;
                    248:
1.67      djm       249:        if (ssh_update_card(ac, add, id, pin, lifetime, confirm)) {
1.44      markus    250:                fprintf(stderr, "Card %s: %s\n",
1.47      deraadt   251:                    add ? "added" : "removed", id);
1.66      markus    252:                ret = 0;
1.46      djm       253:        } else {
1.44      markus    254:                fprintf(stderr, "Could not %s card: %s\n",
1.47      deraadt   255:                    add ? "add" : "remove", id);
1.66      markus    256:                ret = -1;
1.46      djm       257:        }
1.66      markus    258:        xfree(pin);
                    259:        return ret;
1.42      markus    260: }
                    261:
1.50      markus    262: static int
1.30      markus    263: list_identities(AuthenticationConnection *ac, int do_fp)
1.1       deraadt   264: {
1.19      markus    265:        Key *key;
1.30      markus    266:        char *comment, *fp;
1.19      markus    267:        int had_identities = 0;
                    268:        int version;
1.12      markus    269:
1.19      markus    270:        for (version = 1; version <= 2; version++) {
                    271:                for (key = ssh_get_first_identity(ac, &comment, version);
1.47      deraadt   272:                    key != NULL;
                    273:                    key = ssh_get_next_identity(ac, &comment, version)) {
1.19      markus    274:                        had_identities = 1;
1.30      markus    275:                        if (do_fp) {
                    276:                                fp = key_fingerprint(key, SSH_FP_MD5,
                    277:                                    SSH_FP_HEX);
1.23      markus    278:                                printf("%d %s %s (%s)\n",
1.30      markus    279:                                    key_size(key), fp, comment, key_type(key));
                    280:                                xfree(fp);
1.12      markus    281:                        } else {
1.19      markus    282:                                if (!key_write(key, stdout))
                    283:                                        fprintf(stderr, "key_write failed");
                    284:                                fprintf(stdout, " %s\n", comment);
1.12      markus    285:                        }
1.19      markus    286:                        key_free(key);
                    287:                        xfree(comment);
1.12      markus    288:                }
                    289:        }
1.50      markus    290:        if (!had_identities) {
1.12      markus    291:                printf("The agent has no identities.\n");
1.50      markus    292:                return -1;
                    293:        }
                    294:        return 0;
1.1       deraadt   295: }
                    296:
1.48      djm       297: static int
1.54      markus    298: lock_agent(AuthenticationConnection *ac, int lock)
                    299: {
                    300:        char prompt[100], *p1, *p2;
                    301:        int passok = 1, ret = -1;
1.61      deraadt   302:
1.54      markus    303:        strlcpy(prompt, "Enter lock password: ", sizeof(prompt));
                    304:        p1 = read_passphrase(prompt, RP_ALLOW_STDIN);
                    305:        if (lock) {
                    306:                strlcpy(prompt, "Again: ", sizeof prompt);
                    307:                p2 = read_passphrase(prompt, RP_ALLOW_STDIN);
                    308:                if (strcmp(p1, p2) != 0) {
                    309:                        fprintf(stderr, "Passwords do not match.\n");
                    310:                        passok = 0;
                    311:                }
                    312:                memset(p2, 0, strlen(p2));
                    313:                xfree(p2);
                    314:        }
                    315:        if (passok && ssh_lock_agent(ac, lock, p1)) {
                    316:                fprintf(stderr, "Agent %slocked.\n", lock ? "" : "un");
                    317:                ret = 0;
                    318:        } else
                    319:                fprintf(stderr, "Failed to %slock agent.\n", lock ? "" : "un");
                    320:        memset(p1, 0, strlen(p1));
                    321:        xfree(p1);
1.62      markus    322:        return (ret);
1.54      markus    323: }
                    324:
                    325: static int
1.48      djm       326: do_file(AuthenticationConnection *ac, int deleting, char *file)
                    327: {
                    328:        if (deleting) {
                    329:                if (delete_file(ac, file) == -1)
                    330:                        return -1;
                    331:        } else {
                    332:                if (add_file(ac, file) == -1)
                    333:                        return -1;
                    334:        }
                    335:        return 0;
                    336: }
                    337:
1.42      markus    338: static void
                    339: usage(void)
                    340: {
1.90      sobrado   341:        fprintf(stderr, "usage: %s [options] [file ...]\n", __progname);
1.45      jakob     342:        fprintf(stderr, "Options:\n");
                    343:        fprintf(stderr, "  -l          List fingerprints of all identities.\n");
                    344:        fprintf(stderr, "  -L          List public key parameters of all identities.\n");
                    345:        fprintf(stderr, "  -d          Delete identity.\n");
                    346:        fprintf(stderr, "  -D          Delete all identities.\n");
1.55      markus    347:        fprintf(stderr, "  -x          Lock agent.\n");
1.63      markus    348:        fprintf(stderr, "  -X          Unlock agent.\n");
1.56      markus    349:        fprintf(stderr, "  -t life     Set lifetime (in seconds) when adding identities.\n");
1.65      markus    350:        fprintf(stderr, "  -c          Require confirmation to sign using identities\n");
1.92      markus    351:        fprintf(stderr, "  -s pkcs11   Add keys from PKCS#11 provider.\n");
                    352:        fprintf(stderr, "  -e pkcs11   Remove keys provided by PKCS#11 provider.\n");
1.42      markus    353: }
                    354:
1.2       provos    355: int
1.7       markus    356: main(int argc, char **argv)
1.1       deraadt   357: {
1.43      markus    358:        extern char *optarg;
                    359:        extern int optind;
1.12      markus    360:        AuthenticationConnection *ac = NULL;
1.92      markus    361:        char *pkcs11provider = NULL;
1.46      djm       362:        int i, ch, deleting = 0, ret = 0;
1.73      djm       363:
                    364:        /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
                    365:        sanitise_stdfd();
1.12      markus    366:
1.97    ! tedu      367:        OpenSSL_add_all_algorithms();
1.19      markus    368:
1.12      markus    369:        /* At first, get a connection to the authentication agent. */
                    370:        ac = ssh_get_authentication_connection();
                    371:        if (ac == NULL) {
1.74      deraadt   372:                fprintf(stderr,
                    373:                    "Could not open a connection to your authentication agent.\n");
1.50      markus    374:                exit(2);
1.12      markus    375:        }
1.65      markus    376:        while ((ch = getopt(argc, argv, "lLcdDxXe:s:t:")) != -1) {
1.43      markus    377:                switch (ch) {
                    378:                case 'l':
                    379:                case 'L':
1.50      markus    380:                        if (list_identities(ac, ch == 'l' ? 1 : 0) == -1)
1.54      markus    381:                                ret = 1;
                    382:                        goto done;
                    383:                case 'x':
                    384:                case 'X':
                    385:                        if (lock_agent(ac, ch == 'x' ? 1 : 0) == -1)
1.50      markus    386:                                ret = 1;
1.43      markus    387:                        goto done;
1.65      markus    388:                case 'c':
                    389:                        confirm = 1;
1.43      markus    390:                        break;
                    391:                case 'd':
1.12      markus    392:                        deleting = 1;
1.43      markus    393:                        break;
                    394:                case 'D':
1.46      djm       395:                        if (delete_all(ac) == -1)
                    396:                                ret = 1;
1.43      markus    397:                        goto done;
                    398:                case 's':
1.92      markus    399:                        pkcs11provider = optarg;
1.43      markus    400:                        break;
                    401:                case 'e':
1.47      deraadt   402:                        deleting = 1;
1.92      markus    403:                        pkcs11provider = optarg;
1.56      markus    404:                        break;
                    405:                case 't':
1.57      stevesk   406:                        if ((lifetime = convtime(optarg)) == -1) {
                    407:                                fprintf(stderr, "Invalid lifetime\n");
                    408:                                ret = 1;
                    409:                                goto done;
                    410:                        }
1.43      markus    411:                        break;
                    412:                default:
                    413:                        usage();
1.46      djm       414:                        ret = 1;
                    415:                        goto done;
1.42      markus    416:                }
                    417:        }
1.43      markus    418:        argc -= optind;
                    419:        argv += optind;
1.92      markus    420:        if (pkcs11provider != NULL) {
                    421:                if (update_card(ac, !deleting, pkcs11provider) == -1)
1.46      djm       422:                        ret = 1;
1.43      markus    423:                goto done;
1.12      markus    424:        }
1.43      markus    425:        if (argc == 0) {
1.48      djm       426:                char buf[MAXPATHLEN];
                    427:                struct passwd *pw;
1.52      markus    428:                struct stat st;
                    429:                int count = 0;
1.48      djm       430:
                    431:                if ((pw = getpwuid(getuid())) == NULL) {
1.20      deraadt   432:                        fprintf(stderr, "No user found with uid %u\n",
                    433:                            (u_int)getuid());
1.46      djm       434:                        ret = 1;
                    435:                        goto done;
1.12      markus    436:                }
1.48      djm       437:
1.71      deraadt   438:                for (i = 0; default_files[i]; i++) {
1.51      markus    439:                        snprintf(buf, sizeof(buf), "%s/%s", pw->pw_dir,
1.48      djm       440:                            default_files[i]);
1.52      markus    441:                        if (stat(buf, &st) < 0)
                    442:                                continue;
1.48      djm       443:                        if (do_file(ac, deleting, buf) == -1)
1.46      djm       444:                                ret = 1;
1.52      markus    445:                        else
                    446:                                count++;
1.46      djm       447:                }
1.52      markus    448:                if (count == 0)
                    449:                        ret = 1;
1.43      markus    450:        } else {
1.71      deraadt   451:                for (i = 0; i < argc; i++) {
1.49      deraadt   452:                        if (do_file(ac, deleting, argv[i]) == -1)
1.48      djm       453:                                ret = 1;
1.43      markus    454:                }
1.12      markus    455:        }
1.33      markus    456:        clear_pass();
1.43      markus    457:
                    458: done:
1.12      markus    459:        ssh_close_authentication_connection(ac);
1.46      djm       460:        return ret;
1.1       deraadt   461: }