Home | History | Annotate | Line # | Download | only in libcrypt
pw_gensalt.c revision 1.4
      1  1.4  christos /*	$NetBSD: pw_gensalt.c,v 1.4 2005/01/12 03:32:52 christos Exp $	*/
      2  1.1  christos 
      3  1.1  christos /*
      4  1.1  christos  * Copyright 1997 Niels Provos <provos (at) physnet.uni-hamburg.de>
      5  1.1  christos  * All rights reserved.
      6  1.1  christos  *
      7  1.1  christos  * Redistribution and use in source and binary forms, with or without
      8  1.1  christos  * modification, are permitted provided that the following conditions
      9  1.1  christos  * are met:
     10  1.1  christos  * 1. Redistributions of source code must retain the above copyright
     11  1.1  christos  *    notice, this list of conditions and the following disclaimer.
     12  1.1  christos  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.1  christos  *    notice, this list of conditions and the following disclaimer in the
     14  1.1  christos  *    documentation and/or other materials provided with the distribution.
     15  1.1  christos  * 3. All advertising materials mentioning features or use of this software
     16  1.1  christos  *    must display the following acknowledgement:
     17  1.1  christos  *      This product includes software developed by Niels Provos.
     18  1.1  christos  * 4. The name of the author may not be used to endorse or promote products
     19  1.1  christos  *    derived from this software without specific prior written permission.
     20  1.1  christos  *
     21  1.1  christos  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22  1.1  christos  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23  1.1  christos  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24  1.1  christos  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25  1.1  christos  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26  1.1  christos  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27  1.1  christos  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28  1.1  christos  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29  1.1  christos  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30  1.1  christos  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31  1.1  christos  *
     32  1.1  christos  * from OpenBSD: pwd_gensalt.c,v 1.9 1998/07/05 21:08:32 provos Exp
     33  1.1  christos  */
     34  1.1  christos 
     35  1.1  christos #include <sys/cdefs.h>
     36  1.1  christos #ifndef lint
     37  1.4  christos __RCSID("$NetBSD: pw_gensalt.c,v 1.4 2005/01/12 03:32:52 christos Exp $");
     38  1.1  christos #endif /* not lint */
     39  1.1  christos 
     40  1.1  christos #include <sys/syslimits.h>
     41  1.1  christos #include <sys/types.h>
     42  1.1  christos 
     43  1.1  christos #include <stdio.h>
     44  1.1  christos #include <stdlib.h>
     45  1.1  christos #include <string.h>
     46  1.1  christos #include <limits.h>
     47  1.1  christos #include <err.h>
     48  1.1  christos #include <grp.h>
     49  1.1  christos #include <pwd.h>
     50  1.1  christos #include <util.h>
     51  1.1  christos #include <time.h>
     52  1.1  christos #include <errno.h>
     53  1.1  christos #include <pwd.h>
     54  1.1  christos 
     55  1.3  christos #include "crypt.h"
     56  1.1  christos 
     57  1.1  christos 
     58  1.1  christos static const struct pw_salt {
     59  1.1  christos 	const char *name;
     60  1.4  christos 	int (*gensalt)(char *, size_t, const char *);
     61  1.1  christos } salts[] = {
     62  1.1  christos 	{ "old", __gensalt_old },
     63  1.1  christos 	{ "new", __gensalt_new },
     64  1.1  christos 	{ "newsalt", __gensalt_new },
     65  1.1  christos 	{ "md5", __gensalt_md5 },
     66  1.1  christos 	{ "sha1", __gensalt_sha1 },
     67  1.1  christos 	{ "blowfish", __gensalt_blowfish },
     68  1.1  christos 	{ NULL, NULL }
     69  1.1  christos };
     70  1.1  christos 
     71  1.4  christos static int
     72  1.4  christos getnum(const char *str, size_t *num)
     73  1.4  christos {
     74  1.4  christos 	char *ep;
     75  1.4  christos 	unsigned long rv;
     76  1.4  christos 
     77  1.4  christos 	if (str == NULL) {
     78  1.4  christos 		*num = 0;
     79  1.4  christos 		return 0;
     80  1.4  christos 	}
     81  1.4  christos 
     82  1.4  christos 	rv = strtoul(next, &ep, 0);
     83  1.4  christos 
     84  1.4  christos 	if (next == ep || *ep) {
     85  1.4  christos 		errno = EINVAL;
     86  1.4  christos 		return -1;
     87  1.4  christos 	}
     88  1.4  christos 
     89  1.4  christos 	if (errno == ERANGE && rv == ULONG_MAX)
     90  1.4  christos 		return -1;
     91  1.4  christos 	*num = (size_t)rv;
     92  1.4  christos 	return 0;
     93  1.4  christos }
     94  1.4  christos 
     95  1.1  christos int
     96  1.3  christos /*ARGSUSED2*/
     97  1.4  christos __gensalt_old(char *salt, size_t saltsiz, const char *option)
     98  1.1  christos {
     99  1.1  christos 	if (saltsiz < 3) {
    100  1.1  christos 		errno = ENOSPC;
    101  1.1  christos 		return -1;
    102  1.1  christos 	}
    103  1.1  christos 	__crypt_to64(&salt[0], arc4random(), 2);
    104  1.1  christos 	salt[2] = '\0';
    105  1.1  christos 	return 0;
    106  1.1  christos }
    107  1.1  christos 
    108  1.1  christos int
    109  1.3  christos /*ARGSUSED2*/
    110  1.4  christos __gensalt_new(char *salt, size_t saltsiz, const char* option)
    111  1.1  christos {
    112  1.4  christos 	size_t nrounds;
    113  1.4  christos 
    114  1.1  christos 	if (saltsiz < 10) {
    115  1.1  christos 		errno = ENOSPC;
    116  1.1  christos 		return -1;
    117  1.1  christos 	}
    118  1.4  christos 
    119  1.4  christos 	if (getnum(option, &nrounds) == -1)
    120  1.4  christos 		return -1;
    121  1.4  christos 
    122  1.1  christos 	/* Check rounds, 24 bit is max */
    123  1.1  christos 	if (nrounds < 7250)
    124  1.1  christos 		nrounds = 7250;
    125  1.1  christos 	else if (nrounds > 0xffffff)
    126  1.1  christos 		nrounds = 0xffffff;
    127  1.1  christos 	salt[0] = _PASSWORD_EFMT1;
    128  1.1  christos 	__crypt_to64(&salt[1], (uint32_t)nrounds, 4);
    129  1.1  christos 	__crypt_to64(&salt[5], arc4random(), 4);
    130  1.1  christos 	salt[9] = '\0';
    131  1.1  christos 	return 0;
    132  1.1  christos }
    133  1.1  christos 
    134  1.1  christos int
    135  1.3  christos /*ARGSUSED2*/
    136  1.4  christos __gensalt_md5(char *salt, size_t saltsiz, const char *option)
    137  1.1  christos {
    138  1.1  christos 	if (saltsiz < 13) {  /* $1$8salt$\0 */
    139  1.1  christos 		errno = ENOSPC;
    140  1.1  christos 		return -1;
    141  1.1  christos 	}
    142  1.1  christos 	salt[0] = _PASSWORD_NONDES;
    143  1.1  christos 	salt[1] = '1';
    144  1.1  christos 	salt[2] = '$';
    145  1.1  christos 	__crypt_to64(&salt[3], arc4random(), 4);
    146  1.1  christos 	__crypt_to64(&salt[7], arc4random(), 4);
    147  1.1  christos 	salt[11] = '$';
    148  1.1  christos 	salt[12] = '\0';
    149  1.1  christos 	return 0;
    150  1.1  christos }
    151  1.1  christos 
    152  1.1  christos int
    153  1.4  christos __gensalt_sha1(char *salt, size_t saltsiz, const char *option)
    154  1.1  christos {
    155  1.1  christos 	int n;
    156  1.4  christos 	size_t nrounds;
    157  1.1  christos 
    158  1.4  christos 	if (getnum(option, &nrounds) == -1)
    159  1.4  christos 		return -1;
    160  1.1  christos 	n = snprintf(salt, saltsiz, "%s%u$", SHA1_MAGIC,
    161  1.1  christos 	    __crypt_sha1_iterations(nrounds));
    162  1.1  christos 	/*
    163  1.1  christos 	 * The salt can be up to 64 bytes, but 8
    164  1.1  christos 	 * is considered enough for now.
    165  1.1  christos 	 */
    166  1.1  christos 	if (n + 9 >= saltsiz)
    167  1.1  christos 		return 0;
    168  1.1  christos 	__crypt_to64(&salt[n], arc4random(), 4);
    169  1.1  christos 	__crypt_to64(&salt[n + 4], arc4random(), 4);
    170  1.1  christos 	salt[n + 8] = '$';
    171  1.1  christos 	salt[n + 9] = '\0';
    172  1.1  christos 	return 0;
    173  1.1  christos }
    174  1.1  christos 
    175  1.1  christos int
    176  1.4  christos pw_gensalt(char *salt, size_t saltlen, const char *type, const char *option)
    177  1.1  christos {
    178  1.1  christos 	for (sp = salts; sp->name; sp++)
    179  1.4  christos 		if (strcmp(sp->name, type) == 0)
    180  1.4  christos 			return (*sp->gensalt)(salt, saltlen, option);
    181  1.1  christos 
    182  1.1  christos 	errno = EINVAL;
    183  1.1  christos 	return -1;
    184  1.1  christos }
    185