Initial commit for Tizen
[profile/extras/shadow-utils.git] / libmisc / valid.c
1 /*
2  * Copyright (c) 1989 - 1993, Julianne Frances Haugh
3  * Copyright (c) 1996 - 1999, Marek Michałkiewicz
4  * Copyright (c) 2003 - 2005, Tomasz Kłoczko
5  * Copyright (c) 2007 - 2008, Nicolas François
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. The name of the copyright holders or contributors may not be used to
17  *    endorse or promote products derived from this software without
18  *    specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
23  * PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT
24  * HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32
33 #include <config.h>
34
35 #ident "$Id: valid.c 2116 2008-06-10 21:52:34Z nekral-guest $"
36
37 #include <sys/types.h>
38 #include <stdio.h>
39 #include "prototypes.h"
40 #include "defines.h"
41 #include <pwd.h>
42 /*
43  * valid - compare encrypted passwords
44  *
45  *      Valid() compares the DES encrypted password from the password file
46  *      against the password which the user has entered after it has been
47  *      encrypted using the same salt as the original.  Entries which do
48  *      not have a password file entry have a NULL pw_name field and this
49  *      is used to indicate that a dummy salt must be used to encrypt the
50  *      password anyway.
51  */
52 bool valid (const char *password, const struct passwd *ent)
53 {
54         const char *encrypted;
55         const char *salt;
56
57         /*
58          * Start with blank or empty password entries.  Always encrypt
59          * a password if no such user exists.  Only if the ID exists and
60          * the password is really empty do you return quickly.  This
61          * routine is meant to waste CPU time.
62          */
63
64         if ((NULL != ent->pw_name) && ('\0' == ent->pw_passwd[0])) {
65                 if ('\0' == password[0]) {
66                         return true;    /* user entered nothing */
67                 } else {
68                         return false;   /* user entered something! */
69                 }
70         }
71
72         /*
73          * If there is no entry then we need a salt to use.
74          */
75
76         if ((NULL == ent->pw_name) || ('\0' == ent->pw_passwd[0])) {
77                 salt = "xx";
78         } else {
79                 salt = ent->pw_passwd;
80         }
81
82         /*
83          * Now, perform the encryption using the salt from before on
84          * the users input.  Since we always encrypt the string, it
85          * should be very difficult to determine if the user exists by
86          * looking at execution time.
87          */
88
89         encrypted = pw_encrypt (password, salt);
90
91         /*
92          * One last time we must deal with there being no password file
93          * entry for the user.  We use the pw_name == NULL idiom to
94          * cause non-existent users to not be validated.
95          */
96
97         if (   (NULL != ent->pw_name)
98             && (strcmp (encrypted, ent->pw_passwd) == 0)) {
99                 return true;
100         } else {
101                 return false;
102         }
103 }
104