1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
|
/*
* MSNT - Microsoft Windows NT domain squid authenticator module
* Version 2.0 by Stellar-X Pty Ltd, Antonino Iannella
* Sun Sep 2 14:39:53 CST 2001
*
* Modified to act as a Squid authenticator module.
* Removed all Pike stuff.
* Returns OK for a successful authentication, or ERR upon error.
*
* Uses code from -
* Andrew Tridgell 1997
* Richard Sharpe 1996
* Bill Welliver 1999
* Duane Wessels 2000 (wessels@squid-cache.org)
*
* Released under GNU Public License
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "util.h"
#include <stdio.h>
#include <signal.h>
#include <syslog.h>
#include <string.h>
#include <sys/time.h>
#include "msntauth.h"
extern char version[];
char msntauth_version[] = "Msntauth v2.0.3 (C) 2 Sep 2001 Stellar-X Antonino Iannella.\nModified by the Squid HTTP Proxy team 26 Jun 2002";
/* Main program for simple authentication.
* Reads the denied user file. Sets alarm timer.
* Scans and checks for Squid input, and attempts to validate the user.
*/
int
main(int argc, char **argv)
{
char username[256];
char password[256];
char wstr[256];
int err = 0;
openlog("msnt_auth", LOG_PID, LOG_USER);
setbuf(stdout, NULL);
/* Read configuration file. Abort wildly if error. */
if (OpenConfigFile() == 1)
return 1;
/*
* Read denied and allowed user files.
* If they fails, there is a serious problem.
* Check syslog messages. Deny all users while in this state.
* The msntauth process should then be killed.
*/
if ((Read_denyusers() == 1) || (Read_allowusers() == 1)) {
while (1) {
memset(wstr, '\0', sizeof(wstr));
fgets(wstr, 255, stdin);
puts("ERR");
}
}
/*
* Make Check_forchange() the handle for HUP signals.
* Don't use alarms any more. I don't think it was very
* portable between systems.
* XXX this should be sigaction()
*/
signal(SIGHUP, Check_forchange);
while (1) {
int n;
/* Read whole line from standard input. Terminate on break. */
memset(wstr, '\0', sizeof(wstr));
if (fgets(wstr, 255, stdin) == NULL)
break;
/* ignore this line if we didn't get the end-of-line marker */
if (NULL == strchr(wstr, '\n')) {
err = 1;
continue;
}
if (err) {
syslog(LOG_WARNING, "oversized message");
goto error;
}
/*
* extract username and password.
* XXX is sscanf() safe?
*/
username[0] = '\0';
password[0] = '\0';
n = sscanf(wstr, "%s %[^\n]", username, password);
if (2 != n) {
puts("ERR");
continue;
}
/* Check for invalid or blank entries */
if ((username[0] == '\0') || (password[0] == '\0')) {
puts("ERR");
continue;
}
Checktimer(); /* Check if the user lists have changed */
rfc1738_unescape(username);
rfc1738_unescape(password);
/*
* Check if user is explicitly denied or allowed.
* If user passes both checks, they can be authenticated.
*/
if (Check_user(username) == 1) {
syslog(LOG_INFO, "'%s' denied", username);
puts("ERR");
} else if (QueryServers(username, password) == 0)
puts("OK");
else {
syslog(LOG_INFO, "'%s' login failed", username);
error:
puts("ERR");
}
err = 0;
}
return 0;
}
|