7e9f39010357bd64d9ded9116732b007b7eec4b9
[citadel.git] / citadel / utils / 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         size_t siz;
43         char buf[SIZ];
44
45         while (1) {
46                 buf[0] = '\0';
47                 siz = read(0, &uid, sizeof(uid_t));     /* uid */
48                 siz = read(0, buf, 256);        /* password */
49
50                 if (buf[0] == '\0') 
51                         return (0);
52                 if (validate_password(uid, buf)) {
53                         write(1, "PASS", 4);
54                 }
55                 else {
56                         write(1, "FAIL", 4);
57                 }
58         }
59
60         return(0);
61 }