forked from Lainports/freebsd-ports
187 lines
6.4 KiB
Text
187 lines
6.4 KiB
Text
--- modules/mod_auth.c.old Sun Feb 11 19:42:37 2001
|
|
+++ modules/mod_auth.c Sun Feb 11 19:43:18 2001
|
|
@@ -94,7 +94,7 @@
|
|
"closing control connection.",
|
|
TimeoutLogin);
|
|
|
|
- main_exit((void*) LOG_NOTICE, "FTP login timed out, disconnected.",
|
|
+ main_exit((void*) LOG_INFO, "FTP login timed out, disconnected.",
|
|
(void*) 0, NULL);
|
|
|
|
/* should never be reached */
|
|
@@ -630,7 +630,7 @@
|
|
c = _auth_resolve_user(p,&user,&ourname,&anonname);
|
|
|
|
if(!user) {
|
|
- log_pri(LOG_NOTICE, "USER %s (Login failed): User not a UserAlias.",
|
|
+ log_pri(LOG_INFO, "USER %s (Login failed): User not a UserAlias.",
|
|
origuser);
|
|
goto auth_failure;
|
|
}
|
|
@@ -639,7 +639,7 @@
|
|
aclp = login_check_limits(main_server->conf,FALSE,TRUE,&i);
|
|
|
|
if((pw = auth_getpwnam(p,user)) == NULL) {
|
|
- log_pri(LOG_NOTICE, "USER %s (Login failed): Can't find user.", user);
|
|
+ log_pri(LOG_INFO, "USER %s (Login failed): Can't find user.", user);
|
|
goto auth_failure;
|
|
}
|
|
|
|
@@ -700,14 +700,14 @@
|
|
}
|
|
|
|
if(!login_check_limits(c->subset,FALSE,TRUE,&i) || (!aclp && !i) ){
|
|
- log_auth(LOG_NOTICE, "ANON %s (Login failed): Limit access denies "
|
|
+ log_auth(LOG_INFO, "ANON %s (Login failed): Limit access denies "
|
|
"login.", origuser);
|
|
goto auth_failure;
|
|
}
|
|
}
|
|
|
|
if(!c && !aclp) {
|
|
- log_auth(LOG_NOTICE, "USER %s (Login failed): Limit access denies login.",
|
|
+ log_auth(LOG_INFO, "USER %s (Login failed): Limit access denies login.",
|
|
origuser);
|
|
goto auth_failure;
|
|
}
|
|
@@ -724,7 +724,7 @@
|
|
if(c && origuser && strcasecmp(user,origuser) &&
|
|
get_param_int(c->subset,"AuthUsingAlias",FALSE) == 1) {
|
|
user_name = origuser;
|
|
- log_auth(LOG_NOTICE, "ANON AUTH: User %s, Auth Alias %s",
|
|
+ log_auth(LOG_INFO, "ANON AUTH: User %s, Auth Alias %s",
|
|
user, user_name);
|
|
}
|
|
|
|
@@ -752,22 +752,22 @@
|
|
|
|
switch(authcode) {
|
|
case AUTH_NOPWD:
|
|
- log_auth(LOG_NOTICE, "USER %s (Login failed): No such user found.",
|
|
+ log_auth(LOG_INFO, "USER %s (Login failed): No such user found.",
|
|
user);
|
|
goto auth_failure;
|
|
|
|
case AUTH_BADPWD:
|
|
- log_auth(LOG_NOTICE, "USER %s (Login failed): Incorrect password.",
|
|
+ log_auth(LOG_INFO, "USER %s (Login failed): Incorrect password.",
|
|
origuser);
|
|
goto auth_failure;
|
|
|
|
case AUTH_AGEPWD:
|
|
- log_auth(LOG_NOTICE, "USER %s (Login failed): Password expired.",
|
|
+ log_auth(LOG_INFO, "USER %s (Login failed): Password expired.",
|
|
user);
|
|
goto auth_failure;
|
|
|
|
case AUTH_DISABLEDPWD:
|
|
- log_auth(LOG_NOTICE, "USER %s (Login failed): Account disabled.",
|
|
+ log_auth(LOG_INFO, "USER %s (Login failed): Account disabled.",
|
|
user);
|
|
goto auth_failure;
|
|
|
|
@@ -790,12 +790,12 @@
|
|
auth_setgrent(p);
|
|
|
|
if(!_auth_check_shell((c ? c->subset : main_server->conf),pw->pw_shell)) {
|
|
- log_auth(LOG_NOTICE, "USER %s (Login failed): Invalid shell.", user);
|
|
+ log_auth(LOG_INFO, "USER %s (Login failed): Invalid shell.", user);
|
|
goto auth_failure;
|
|
}
|
|
|
|
if(!_auth_check_ftpusers((c ? c->subset : main_server->conf),pw->pw_name)) {
|
|
- log_auth(LOG_NOTICE, "USER %s (Login failed): User in %s.",
|
|
+ log_auth(LOG_INFO, "USER %s (Login failed): User in %s.",
|
|
user, FTPUSERS_PATH);
|
|
goto auth_failure;
|
|
}
|
|
@@ -870,7 +870,7 @@
|
|
|
|
if(!login_check_limits((c ? c->subset : main_server->conf),FALSE,TRUE,&i))
|
|
{
|
|
- log_auth(LOG_NOTICE, "%s: Limit access denies login (DenyGroup).",
|
|
+ log_auth(LOG_INFO, "%s: Limit access denies login (DenyGroup).",
|
|
origuser);
|
|
goto auth_failure;
|
|
}
|
|
@@ -885,7 +885,7 @@
|
|
if(c && c->subset)
|
|
resolve_anonymous_dirs(c->subset);
|
|
|
|
- log_auth(LOG_NOTICE, "%s %s: Login successful.",
|
|
+ log_auth(LOG_INFO, "%s %s: Login successful.",
|
|
(c != NULL) ? "ANON" : "USER",
|
|
origuser);
|
|
|
|
@@ -1267,7 +1267,7 @@
|
|
remove_config(cmd->server->conf, C_USER, FALSE);
|
|
remove_config(cmd->server->conf, C_PASS, FALSE);
|
|
|
|
- log_auth(LOG_NOTICE, "Connection refused (max clients for class %s).",
|
|
+ log_auth(LOG_INFO, "Connection refused (max clients for class %s).",
|
|
session.class->name);
|
|
|
|
end_login(0);
|
|
@@ -1299,7 +1299,7 @@
|
|
remove_config(cmd->server->conf, C_USER, FALSE);
|
|
remove_config(cmd->server->conf, C_PASS, FALSE);
|
|
|
|
- log_auth(LOG_NOTICE, "Connection refused (max clients per host %d).",
|
|
+ log_auth(LOG_INFO, "Connection refused (max clients per host %d).",
|
|
max);
|
|
|
|
end_login(0);
|
|
@@ -1324,7 +1324,7 @@
|
|
send_response(R_530, "%s",
|
|
sreplace(cmd->tmp_pool, maxstr, "%m", maxn, NULL));
|
|
|
|
- log_auth(LOG_NOTICE, "Connection refused (max clients %d).", max);
|
|
+ log_auth(LOG_INFO, "Connection refused (max clients %d).", max);
|
|
|
|
remove_config(cmd->server->conf, C_USER, FALSE);
|
|
remove_config(cmd->server->conf, C_PASS, FALSE);
|
|
@@ -1354,7 +1354,7 @@
|
|
remove_config(cmd->server->conf, C_USER, FALSE);
|
|
remove_config(cmd->server->conf, C_PASS, FALSE);
|
|
|
|
- log_auth(LOG_NOTICE, "Connection refused (max clients per host %d).",
|
|
+ log_auth(LOG_INFO, "Connection refused (max clients per host %d).",
|
|
max);
|
|
|
|
end_login(0);
|
|
@@ -1401,7 +1401,7 @@
|
|
remove_config(cmd->server->conf, C_USER, FALSE);
|
|
remove_config(cmd->server->conf, C_PASS, FALSE);
|
|
|
|
- log_pri(LOG_NOTICE, "USER %s (Login failed): Not a UserAlias.",
|
|
+ log_pri(LOG_INFO, "USER %s (Login failed): Not a UserAlias.",
|
|
origuser);
|
|
send_response(R_530,"Login incorrect.");
|
|
|
|
@@ -1422,7 +1422,7 @@
|
|
remove_config(cmd->server->conf, C_USER, FALSE);
|
|
remove_config(cmd->server->conf, C_PASS, FALSE);
|
|
|
|
- log_auth(LOG_NOTICE, "ANON %s: Limit access denies login.",
|
|
+ log_auth(LOG_INFO, "ANON %s: Limit access denies login.",
|
|
origuser);
|
|
send_response(R_530, "Login incorrect.");
|
|
|
|
@@ -1434,7 +1434,7 @@
|
|
remove_config(cmd->server->conf, C_USER, FALSE);
|
|
remove_config(cmd->server->conf, C_PASS, FALSE);
|
|
|
|
- log_auth(LOG_NOTICE, "USER %s: Limit access denies login.", origuser);
|
|
+ log_auth(LOG_INFO, "USER %s: Limit access denies login.", origuser);
|
|
send_response(R_530, "Login incorrect.");
|
|
|
|
end_login(0);
|
|
@@ -1528,7 +1528,7 @@
|
|
|
|
if(++auth_tries >= max) {
|
|
send_response(R_530,"Login incorrect");
|
|
- log_auth(LOG_NOTICE, "Maximum login attempts exceeded.");
|
|
+ log_auth(LOG_INFO, "Maximum login attempts exceeded.");
|
|
end_login(0);
|
|
}
|
|
|