* Began (but did not finish) applying GPL3+ declarations to each source file. This...
[citadel.git] / citadel / chkpwd.c
1 /*
2  * $Id$
3  *
4  * a setuid helper program for machines which use shadow passwords
5  * by Nathan Bryant, March 1999
6  *
7  *
8  * Copyright (c) 1987-2009 by the citadel.org team
9  *
10  *  This program is free software; you can redistribute it and/or modify
11  *  it under the terms of the GNU General Public License as published by
12  *  the Free Software Foundation; either version 3 of the License, or
13  *  (at your option) any later version.
14  *
15  *  This program is distributed in the hope that it will be useful,
16  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  *  GNU General Public License for more details.
19  *
20  *  You should have received a copy of the GNU General Public License
21  *  along with this program; if not, write to the Free Software
22  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23  */
24
25 #include <pwd.h>
26 #include <stdio.h>
27 #include <limits.h>
28 #include <stdlib.h>
29 #include <string.h>
30 #include <syslog.h>
31 #include <unistd.h>
32 #include <sys/types.h>
33
34 #include "auth.h"
35 #include "config.h"
36 #include "citadel_dirs.h"
37 #include "citadel.h"
38
39 int main(void)
40 {
41         uid_t uid;
42         char buf[SIZ];
43
44         while (1) {
45                 buf[0] = '\0';
46                 read(0, &uid, sizeof(uid_t));   /* uid */
47                 read(0, buf, 256);      /* password */
48
49                 if (buf[0] == '\0') 
50                         return (0);
51                 if (validate_password(uid, buf)) {
52                         write(1, "PASS", 4);
53                 }
54                 else {
55                         write(1, "FAIL", 4);
56                 }
57         }
58
59         return(0);
60 }