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

Annotation of src/usr.bin/encrypt/encrypt.c, Revision 1.37

1.37    ! tedu        1: /*     $OpenBSD: encrypt.c,v 1.36 2015/01/04 02:28:26 deraadt Exp $    */
1.1       downsj      2:
                      3: /*
                      4:  * Copyright (c) 1996, Jason Downs.  All rights reserved.
                      5:  *
                      6:  * Redistribution and use in source and binary forms, with or without
                      7:  * modification, are permitted provided that the following conditions
                      8:  * are met:
                      9:  * 1. Redistributions of source code must retain the above copyright
                     10:  *    notice, this list of conditions and the following disclaimer.
                     11:  * 2. Redistributions in binary form must reproduce the above copyright
                     12:  *    notice, this list of conditions and the following disclaimer in the
                     13:  *    documentation and/or other materials provided with the distribution.
                     14:  *
                     15:  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS
                     16:  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
                     17:  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
                     18:  * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT,
                     19:  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
                     20:  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
                     21:  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
                     22:  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
                     23:  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
                     24:  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
                     25:  * SUCH DAMAGE.
                     26:  */
                     27:
                     28: #include <sys/types.h>
1.15      millert    29: #include <ctype.h>
1.1       downsj     30: #include <err.h>
1.3       downsj     31: #include <errno.h>
1.15      millert    32: #include <pwd.h>
                     33: #include <stdio.h>
1.7       kstailey   34: #include <stdlib.h>
1.1       downsj     35: #include <string.h>
                     36: #include <unistd.h>
1.14      millert    37: #include <login_cap.h>
1.27      jdixon     38: #include <limits.h>
1.1       downsj     39:
                     40: /*
                     41:  * Very simple little program, for encrypting passwords from the command
                     42:  * line.  Useful for scripts and such.
                     43:  */
                     44:
1.15      millert    45: extern char *__progname;
1.19      deraadt    46:
                     47: void   usage(void);
1.3       downsj     48:
1.34      tedu       49: #define DO_BLF         0
                     50:
1.15      millert    51: void
                     52: usage(void)
1.1       downsj     53: {
1.15      millert    54:
                     55:        (void)fprintf(stderr,
1.34      tedu       56:            "usage: %s [-b rounds] [-c class] [-p | string]\n",
1.15      millert    57:            __progname);
                     58:        exit(1);
1.1       downsj     59: }
                     60:
1.37    ! tedu       61: static void
        !            62: print_passwd(char *string, int operation, char *extra)
1.5       provos     63: {
1.34      tedu       64:        char buffer[_PASSWORD_LEN];
1.37    ! tedu       65:        const char *pref;
        !            66:        char prefbuf[16];
1.15      millert    67:
1.33      tedu       68:        if (operation == DO_BLF) {
1.37    ! tedu       69:                snprintf(prefbuf, sizeof(prefbuf), "blowfish,%s", extra);
        !            70:                pref = prefbuf;
1.34      tedu       71:        } else {
                     72:                login_cap_t *lc;
1.15      millert    73:
1.18      millert    74:                if ((lc = login_getclass(extra)) == NULL)
                     75:                        errx(1, "unable to get login class `%s'",
                     76:                            extra ? (char *)extra : "default");
1.34      tedu       77:                pref = login_getcapstr(lc, "localcipher", NULL, NULL);
1.15      millert    78:        }
1.37    ! tedu       79:        if (crypt_newhash(string, pref, buffer, sizeof(buffer)) != 0)
        !            80:                errx(1, "can't generate hash");
1.15      millert    81:
1.34      tedu       82:        fputs(buffer, stdout);
1.5       provos     83: }
                     84:
1.15      millert    85: int
                     86: main(int argc, char **argv)
1.1       downsj     87: {
1.15      millert    88:        int opt;
                     89:        int operation = -1;
                     90:        int prompt = 0;
                     91:        int rounds;
1.37    ! tedu       92:        char *extra = NULL;             /* Store salt or number of rounds */
1.27      jdixon     93:        const char *errstr;
1.15      millert    94:
1.34      tedu       95:        while ((opt = getopt(argc, argv, "pb:c:")) != -1) {
1.15      millert    96:                switch (opt) {
                     97:                case 'p':
                     98:                        prompt = 1;
                     99:                        break;
                    100:                case 'b':                       /* Blowfish password hash */
                    101:                        if (operation != -1)
                    102:                                usage();
                    103:                        operation = DO_BLF;
1.37    ! tedu      104:                        if (strcmp(optarg, "a") != 0) {
        !           105:                                (void)strtonum(optarg, 4, 31, &errstr);
1.36      deraadt   106:                                if (errstr != NULL)
1.37    ! tedu      107:                                        errx(1, "rounds is %s: %s", errstr, optarg);
1.36      deraadt   108:                        }
1.37    ! tedu      109:                        extra = optarg;
1.18      millert   110:                        break;
                    111:                case 'c':                       /* user login class */
                    112:                        extra = optarg;
                    113:                        operation = -1;
1.15      millert   114:                        break;
                    115:                default:
                    116:                        usage();
                    117:                }
1.1       downsj    118:        }
                    119:
1.34      tedu      120:        if (((argc - optind) < 1)) {
1.15      millert   121:                char line[BUFSIZ], *string;
1.1       downsj    122:
1.15      millert   123:                if (prompt) {
1.20      otto      124:                        if ((string = getpass("Enter string: ")) == NULL)
                    125:                                err(1, "getpass");
1.15      millert   126:                        print_passwd(string, operation, extra);
                    127:                        (void)fputc('\n', stdout);
                    128:                } else {
1.28      krw       129:                        size_t len;
1.15      millert   130:                        /* Encrypt stdin to stdout. */
                    131:                        while (!feof(stdin) &&
                    132:                            (fgets(line, sizeof(line), stdin) != NULL)) {
1.28      krw       133:                                len = strlen(line);
                    134:                                if (len == 0 || line[0] == '\n')
1.15      millert   135:                                        continue;
1.28      krw       136:                                if (line[len - 1] == '\n')
                    137:                                        line[len - 1] = '\0';
                    138:
                    139:                                print_passwd(line, operation, extra);
1.15      millert   140:
                    141:                                (void)fputc('\n', stdout);
                    142:                        }
                    143:                }
1.9       alex      144:        } else {
1.15      millert   145:                char *string;
                    146:
                    147:                /* can't combine -p with a supplied string */
                    148:                if (prompt)
                    149:                        usage();
                    150:
                    151:                /* Perhaps it isn't worth worrying about, but... */
                    152:                if ((string = strdup(argv[optind])) == NULL)
                    153:                        err(1, NULL);
                    154:                /* Wipe the argument. */
                    155:                memset(argv[optind], 0, strlen(argv[optind]));
                    156:
1.9       alex      157:                print_passwd(string, operation, extra);
                    158:
1.15      millert   159:                (void)fputc('\n', stdout);
                    160:
                    161:                /* Wipe our copy, before we free it. */
                    162:                memset(string, 0, strlen(string));
                    163:                free(string);
1.1       downsj    164:        }
1.15      millert   165:        exit(0);
1.1       downsj    166: }