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