Home | History | Annotate | Line # | Download | only in libcrypt
pw_gensalt.c revision 1.7
      1  1.7     lukem /*	$NetBSD: pw_gensalt.c,v 1.7 2009/01/18 12:15:27 lukem 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.7     lukem __RCSID("$NetBSD: pw_gensalt.c,v 1.7 2009/01/18 12:15:27 lukem 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 
     54  1.3  christos #include "crypt.h"
     55  1.1  christos 
     56  1.1  christos 
     57  1.1  christos static const struct pw_salt {
     58  1.1  christos 	const char *name;
     59  1.4  christos 	int (*gensalt)(char *, size_t, const char *);
     60  1.1  christos } salts[] = {
     61  1.1  christos 	{ "old", __gensalt_old },
     62  1.1  christos 	{ "new", __gensalt_new },
     63  1.1  christos 	{ "newsalt", __gensalt_new },
     64  1.1  christos 	{ "md5", __gensalt_md5 },
     65  1.1  christos 	{ "sha1", __gensalt_sha1 },
     66  1.1  christos 	{ "blowfish", __gensalt_blowfish },
     67  1.1  christos 	{ NULL, NULL }
     68  1.1  christos };
     69  1.1  christos 
     70  1.4  christos static int
     71  1.4  christos getnum(const char *str, size_t *num)
     72  1.4  christos {
     73  1.4  christos 	char *ep;
     74  1.4  christos 	unsigned long rv;
     75  1.4  christos 
     76  1.4  christos 	if (str == NULL) {
     77  1.4  christos 		*num = 0;
     78  1.4  christos 		return 0;
     79  1.4  christos 	}
     80  1.4  christos 
     81  1.5  christos 	rv = strtoul(str, &ep, 0);
     82  1.4  christos 
     83  1.5  christos 	if (str == ep || *ep) {
     84  1.4  christos 		errno = EINVAL;
     85  1.4  christos 		return -1;
     86  1.4  christos 	}
     87  1.4  christos 
     88  1.4  christos 	if (errno == ERANGE && rv == ULONG_MAX)
     89  1.4  christos 		return -1;
     90  1.4  christos 	*num = (size_t)rv;
     91  1.4  christos 	return 0;
     92  1.4  christos }
     93  1.4  christos 
     94  1.1  christos int
     95  1.3  christos /*ARGSUSED2*/
     96  1.4  christos __gensalt_old(char *salt, size_t saltsiz, const char *option)
     97  1.1  christos {
     98  1.1  christos 	if (saltsiz < 3) {
     99  1.1  christos 		errno = ENOSPC;
    100  1.1  christos 		return -1;
    101  1.1  christos 	}
    102  1.1  christos 	__crypt_to64(&salt[0], arc4random(), 2);
    103  1.1  christos 	salt[2] = '\0';
    104  1.1  christos 	return 0;
    105  1.1  christos }
    106  1.1  christos 
    107  1.1  christos int
    108  1.3  christos /*ARGSUSED2*/
    109  1.4  christos __gensalt_new(char *salt, size_t saltsiz, const char* option)
    110  1.1  christos {
    111  1.4  christos 	size_t nrounds;
    112  1.4  christos 
    113  1.1  christos 	if (saltsiz < 10) {
    114  1.1  christos 		errno = ENOSPC;
    115  1.1  christos 		return -1;
    116  1.1  christos 	}
    117  1.4  christos 
    118  1.4  christos 	if (getnum(option, &nrounds) == -1)
    119  1.4  christos 		return -1;
    120  1.4  christos 
    121  1.1  christos 	/* Check rounds, 24 bit is max */
    122  1.1  christos 	if (nrounds < 7250)
    123  1.1  christos 		nrounds = 7250;
    124  1.1  christos 	else if (nrounds > 0xffffff)
    125  1.1  christos 		nrounds = 0xffffff;
    126  1.1  christos 	salt[0] = _PASSWORD_EFMT1;
    127  1.1  christos 	__crypt_to64(&salt[1], (uint32_t)nrounds, 4);
    128  1.1  christos 	__crypt_to64(&salt[5], arc4random(), 4);
    129  1.1  christos 	salt[9] = '\0';
    130  1.1  christos 	return 0;
    131  1.1  christos }
    132  1.1  christos 
    133  1.1  christos int
    134  1.3  christos /*ARGSUSED2*/
    135  1.4  christos __gensalt_md5(char *salt, size_t saltsiz, const char *option)
    136  1.1  christos {
    137  1.1  christos 	if (saltsiz < 13) {  /* $1$8salt$\0 */
    138  1.1  christos 		errno = ENOSPC;
    139  1.1  christos 		return -1;
    140  1.1  christos 	}
    141  1.1  christos 	salt[0] = _PASSWORD_NONDES;
    142  1.1  christos 	salt[1] = '1';
    143  1.1  christos 	salt[2] = '$';
    144  1.1  christos 	__crypt_to64(&salt[3], arc4random(), 4);
    145  1.1  christos 	__crypt_to64(&salt[7], arc4random(), 4);
    146  1.1  christos 	salt[11] = '$';
    147  1.1  christos 	salt[12] = '\0';
    148  1.1  christos 	return 0;
    149  1.1  christos }
    150  1.1  christos 
    151  1.1  christos int
    152  1.4  christos __gensalt_sha1(char *salt, size_t saltsiz, const char *option)
    153  1.1  christos {
    154  1.1  christos 	int n;
    155  1.4  christos 	size_t nrounds;
    156  1.1  christos 
    157  1.4  christos 	if (getnum(option, &nrounds) == -1)
    158  1.4  christos 		return -1;
    159  1.1  christos 	n = snprintf(salt, saltsiz, "%s%u$", SHA1_MAGIC,
    160  1.1  christos 	    __crypt_sha1_iterations(nrounds));
    161  1.1  christos 	/*
    162  1.1  christos 	 * The salt can be up to 64 bytes, but 8
    163  1.1  christos 	 * is considered enough for now.
    164  1.1  christos 	 */
    165  1.7     lukem 	if ((size_t)n + 9 >= saltsiz)
    166  1.1  christos 		return 0;
    167  1.1  christos 	__crypt_to64(&salt[n], arc4random(), 4);
    168  1.1  christos 	__crypt_to64(&salt[n + 4], arc4random(), 4);
    169  1.1  christos 	salt[n + 8] = '$';
    170  1.1  christos 	salt[n + 9] = '\0';
    171  1.1  christos 	return 0;
    172  1.1  christos }
    173  1.1  christos 
    174  1.1  christos int
    175  1.4  christos pw_gensalt(char *salt, size_t saltlen, const char *type, const char *option)
    176  1.1  christos {
    177  1.5  christos 	const struct pw_salt *sp;
    178  1.5  christos 
    179  1.1  christos 	for (sp = salts; sp->name; sp++)
    180  1.4  christos 		if (strcmp(sp->name, type) == 0)
    181  1.4  christos 			return (*sp->gensalt)(salt, saltlen, option);
    182  1.1  christos 
    183  1.1  christos 	errno = EINVAL;
    184  1.1  christos 	return -1;
    185  1.1  christos }
    186