Initial commit for Tizen
[profile/extras/shadow-utils.git] / libmisc / pwdcheck.c
1 /*
2  * Copyright (c) 2000 - 2005, Tomasz Kłoczko
3  * Copyright (c) 2007 - 2008, Nicolas François
4  * 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  * 3. The name of the copyright holders or contributors may not be used to
15  *    endorse or promote products derived from this software without
16  *    specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
21  * PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT
22  * HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30
31 #include <config.h>
32
33 #ident "$Id: pwdcheck.c 2779 2009-04-23 20:17:02Z nekral-guest $"
34
35 #ifndef USE_PAM
36
37 #include <stdio.h>
38 #include <shadow.h>
39 #include "prototypes.h"
40 #include "defines.h"
41 #include "pwauth.h"
42
43 void passwd_check (const char *user, const char *passwd, unused const char *progname)
44 {
45         struct spwd *sp;
46
47         sp = getspnam (user); /* !USE_PAM, no need for xgetspnam */
48         if (NULL != sp) {
49                 passwd = sp->sp_pwdp;
50         }
51         if (pw_auth (passwd, user, PW_LOGIN, (char *) 0) != 0) {
52                 SYSLOG ((LOG_WARN, "incorrect password for `%s'", user));
53                 (void) sleep (1);
54                 fprintf (stderr, _("Incorrect password for %s.\n"), user);
55                 exit (EXIT_FAILURE);
56         }
57 }
58 #else                   /* USE_PAM */
59 extern int errno;       /* warning: ANSI C forbids an empty source file */
60 #endif                  /* USE_PAM */