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