⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rlm_unix.c

📁 freeradius-server-2.1.3.tar.gz安装源文件
💻 C
字号:
/* * rlm_unix.c	authentication: Unix user authentication *		accounting:     Functions to write radwtmp file. *		Also contains handler for "Group". * * Version:	$Id$ * *   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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA * * Copyright 2000,2006  The FreeRADIUS server project * Copyright 2000  Jeff Carneal <jeff@apex.net> * Copyright 2000  Alan Curry <pacman@world.std.com> */#include	<freeradius-devel/ident.h>RCSID("$Id$")#include	<freeradius-devel/radiusd.h>#include	<grp.h>#include	<pwd.h>#include	<sys/stat.h>#include "config.h"#ifdef HAVE_SHADOW_H#  include	<shadow.h>#endif#ifdef OSFC2#  include	<sys/security.h>#  include	<prot.h>#endif#ifdef OSFSIA#  include	<sia.h>#  include	<siad.h>#endif#include	<freeradius-devel/modules.h>#include	<freeradius-devel/sysutmp.h>static char trans[64] =   "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";#define ENC(c) trans[c]struct unix_instance {	const char *radwtmp;};static const CONF_PARSER module_config[] = {	{ "radwtmp",  PW_TYPE_STRING_PTR,	  offsetof(struct unix_instance,radwtmp), NULL,   "NULL" },	{ NULL, -1, 0, NULL, NULL }		/* end the list */};/* *	The Group = handler. */static int groupcmp(void *instance, UNUSED REQUEST *req, VALUE_PAIR *request,		    VALUE_PAIR *check, VALUE_PAIR *check_pairs,		    VALUE_PAIR **reply_pairs){	struct passwd	*pwd;	struct group	*grp;	char		**member;	char		*username;	int		retval;	VALUE_PAIR	*vp;	instance = instance;	check_pairs = check_pairs;	reply_pairs = reply_pairs;	/*	 *	No user name, doesn't compare.	 */	vp = pairfind(request, PW_STRIPPED_USER_NAME);	if (!vp) {		vp = pairfind(request, PW_USER_NAME);		if (!vp) {			return -1;		}	}	username = (char *)vp->vp_strvalue;	pwd = getpwnam(username);	if (pwd == NULL)		return -1;	grp = getgrnam((char *)check->vp_strvalue);	if (grp == NULL)		return -1;	retval = (pwd->pw_gid == grp->gr_gid) ? 0 : -1;	if (retval < 0) {		for (member = grp->gr_mem; *member && retval; member++) {			if (strcmp(*member, pwd->pw_name) == 0)				retval = 0;		}	}	return retval;}/* *	Detach. */static int unix_detach(void *instance){#define inst ((struct unix_instance *)instance)	paircompare_unregister(PW_GROUP, groupcmp);#ifdef PW_GROUP_NAME	paircompare_unregister(PW_GROUP_NAME, groupcmp);#endif#undef inst	free(instance);	return 0;}/* *	Read the config */static int unix_instantiate(CONF_SECTION *conf, void **instance){	struct unix_instance *inst;	/*	 *	Allocate room for the instance.	 */	inst = *instance = rad_malloc(sizeof(*inst));	if (!inst) {		return -1;	}	memset(inst, 0, sizeof(*inst));	/*	 *	Parse the configuration, failing if we can't do so.	 */	if (cf_section_parse(conf, inst, module_config) < 0) {		unix_detach(inst);		return -1;	}	/* FIXME - delay these until a group file has been read so we know	 * groupcmp can actually do something */	paircompare_register(PW_GROUP, PW_USER_NAME, groupcmp, NULL);#ifdef PW_GROUP_NAME /* compat */	paircompare_register(PW_GROUP_NAME, PW_USER_NAME, groupcmp, NULL);#endif#undef inst	return 0;}/* *	Pull the users password from where-ever, and add it to *	the given vp list. */static int unix_getpw(UNUSED void *instance, REQUEST *request,		      VALUE_PAIR **vp_list){	const char	*name;	const char	*encrypted_pass;#ifdef HAVE_GETSPNAM	struct spwd	*spwd = NULL;#endif#ifdef OSFC2	struct pr_passwd *pr_pw;#else	struct passwd	*pwd;#endif#ifdef HAVE_GETUSERSHELL	char		*shell;#endif	VALUE_PAIR	*vp;	/*	 *	We can only authenticate user requests which HAVE	 *	a User-Name attribute.	 */	if (!request->username) {		return RLM_MODULE_NOOP;	}	name = (char *)request->username->vp_strvalue;	encrypted_pass = NULL;#ifdef OSFC2	if ((pr_pw = getprpwnam(name)) == NULL)		return RLM_MODULE_NOTFOUND;	encrypted_pass = pr_pw->ufld.fd_encrypt;	/*	 *	Check if account is locked.	 */	if (pr_pw->uflg.fg_lock!=1) {		radlog(L_AUTH, "rlm_unix: [%s]: account locked", name);		return RLM_MODULE_USERLOCK;	}#else /* OSFC2 */	if ((pwd = getpwnam(name)) == NULL) {		return RLM_MODULE_NOTFOUND;	}	encrypted_pass = pwd->pw_passwd;#endif /* OSFC2 */#ifdef HAVE_GETSPNAM	/*	 *      See if there is a shadow password.	 *	 *	Only query the _system_ shadow file if the encrypted	 *	password from the passwd file is < 10 characters (i.e.	 *	a valid password would never crypt() to it).  This will	 *	prevents users from using NULL password fields as things	 *	stand right now.	 */	if ((encrypted_pass == NULL) || (strlen(encrypted_pass) < 10)) {		if ((spwd = getspnam(name)) == NULL) {			return RLM_MODULE_NOTFOUND;		}		encrypted_pass = spwd->sp_pwdp;	}#endif	/* HAVE_GETSPNAM *//* *	These require 'pwd != NULL', which isn't true on OSFC2 */#ifndef OSFC2#ifdef DENY_SHELL	/*	 *	Users with a particular shell are denied access	 */	if (strcmp(pwd->pw_shell, DENY_SHELL) == 0) {		radlog_request(L_AUTH, 0, request,			       "rlm_unix: [%s]: invalid shell", name);		return RLM_MODULE_REJECT;	}#endif#ifdef HAVE_GETUSERSHELL	/*	 *	Check /etc/shells for a valid shell. If that file	 *	contains /RADIUSD/ANY/SHELL then any shell will do.	 */	while ((shell = getusershell()) != NULL) {		if (strcmp(shell, pwd->pw_shell) == 0 ||		    strcmp(shell, "/RADIUSD/ANY/SHELL") == 0) {			break;		}	}	endusershell();	if (shell == NULL) {		radlog_request(L_AUTH, 0, request, "[%s]: invalid shell [%s]",		       name, pwd->pw_shell);		return RLM_MODULE_REJECT;	}#endif#endif /* OSFC2 */#if defined(HAVE_GETSPNAM) && !defined(M_UNIX)	/*	 *      Check if password has expired.	 */	if (spwd && spwd->sp_expire > 0 &&	    (request->timestamp / 86400) > spwd->sp_expire) {		radlog_request(L_AUTH, 0, request, "[%s]: password has expired", name);		return RLM_MODULE_REJECT;	}#endif#if defined(__FreeBSD__) || defined(bsdi) || defined(_PWF_EXPIRE)	/*	 *	Check if password has expired.	 */	if ((pwd->pw_expire > 0) &&	    (request->timestamp > pwd->pw_expire)) {		radlog_request(L_AUTH, 0, request, "[%s]: password has expired", name);		return RLM_MODULE_REJECT;	}#endif	/*	 *	We might have a passwordless account.	 *	 *	FIXME: Maybe add Auth-Type := Accept?	 */	if (encrypted_pass[0] == 0)		return RLM_MODULE_NOOP;	vp = pairmake("Crypt-Password", encrypted_pass, T_OP_SET);	if (!vp) return RLM_MODULE_FAIL;	pairmove(vp_list, &vp);	pairfree(&vp);		/* might not be NULL; */	return RLM_MODULE_UPDATED;}/* *	Pull the users password from where-ever, and add it to *	the given vp list. */static int unix_authorize(void *instance, REQUEST *request){	return unix_getpw(instance, request, &request->config_items);}/* *	Pull the users password from where-ever, and add it to *	the given vp list. */static int unix_authenticate(void *instance, REQUEST *request){#ifdef OSFSIA	char		*info[2];	char		*progname = "radius";	SIAENTITY	*ent = NULL;	info[0] = progname;	info[1] = NULL;	if (sia_ses_init (&ent, 1, info, NULL, name, NULL, 0, NULL) !=	    SIASUCCESS)		return RLM_MODULE_NOTFOUND;	if ((ret = sia_ses_authent (NULL, passwd, ent)) != SIASUCCESS) {		if (ret & SIASTOP)			sia_ses_release (&ent);		return RLM_MODULE_NOTFOUND;	}	if (sia_ses_estab (NULL, ent) != SIASUCCESS) {		sia_ses_release (&ent);		return RLM_MODULE_NOTFOUND;	}#else  /* OSFSIA */	int rcode;	VALUE_PAIR *vp = NULL;	if (!request->password ||	    (request->password->attribute != PW_USER_PASSWORD)) {		radlog_request(L_AUTH, 0, request, "Attribute \"User-Password\" is required for authentication.");		return RLM_MODULE_INVALID;	}	rcode = unix_getpw(instance, request, &vp);	if (rcode != RLM_MODULE_UPDATED) return rcode;	/*	 *	0 means "ok"	 */	if (fr_crypt_check((char *) request->password->vp_strvalue,			     (char *) vp->vp_strvalue) != 0) {		radlog_request(L_AUTH, 0, request, "invalid password \"%s\"",			       request->username->vp_strvalue);		return RLM_MODULE_REJECT;	}#endif /* OSFFIA */	return RLM_MODULE_OK;}/* *	UUencode 4 bits base64. We use this to turn a 4 byte field *	(an IP address) into 6 bytes of ASCII. This is used for the *	wtmp file if we didn't find a short name in the naslist file. */static char *uue(void *in){	int i;	static unsigned char res[7];	unsigned char *data = (unsigned char *)in;	res[0] = ENC( data[0] >> 2 );	res[1] = ENC( ((data[0] << 4) & 060) + ((data[1] >> 4) & 017) );	res[2] = ENC( ((data[1] << 2) & 074) + ((data[2] >> 6) & 03) );	res[3] = ENC( data[2] & 077 );	res[4] = ENC( data[3] >> 2 );	res[5] = ENC( (data[3] << 4) & 060 );	res[6] = 0;	for(i = 0; i < 6; i++) {		if (res[i] == ' ') res[i] = '`';		if (res[i] < 32 || res[i] > 127)			printf("uue: protocol error ?!\n");	}	return (char *)res;}/* *	Unix accounting - write a wtmp file. */static int unix_accounting(void *instance, REQUEST *request){	VALUE_PAIR	*vp;	FILE		*fp;	struct utmp	ut;	time_t		t;	char		buf[64];	const char	*s;	int		delay = 0;	int		status = -1;	int		nas_address = 0;	int		framed_address = 0;	int		protocol = -1;	int		nas_port = 0;	int		port_seen = 0;	int		nas_port_type = 0;	struct unix_instance *inst = (struct unix_instance *) instance;	/*	 *	No radwtmp.  Don't do anything.	 */	if (!inst->radwtmp) {		RDEBUG2("No radwtmp file configured.  Ignoring accounting request.");		return RLM_MODULE_NOOP;	}	if (request->packet->src_ipaddr.af != AF_INET) {		RDEBUG2("IPv6 is not supported!");		return RLM_MODULE_NOOP;	}	/*	 *	Which type is this.	 */	if ((vp = pairfind(request->packet->vps, PW_ACCT_STATUS_TYPE))==NULL) {		radlog(L_ERR, "rlm_unix: no Accounting-Status-Type attribute in request.");		return RLM_MODULE_NOOP;	}	status = vp->vp_integer;	/*	 *	FIXME: handle PW_STATUS_ALIVE like 1.5.4.3 did.	 */	if (status != PW_STATUS_START &&	    status != PW_STATUS_STOP)		return RLM_MODULE_NOOP;	/*	 *	We're only interested in accounting messages	 *	with a username in it.	 */	if ((vp = pairfind(request->packet->vps, PW_USER_NAME)) == NULL)		return RLM_MODULE_NOOP;	t = request->timestamp;	memset(&ut, 0, sizeof(ut));	/*	 *	First, find the interesting attributes.	 */	for (vp = request->packet->vps; vp; vp = vp->next) {		switch (vp->attribute) {			case PW_USER_NAME:				if (vp->length >= sizeof(ut.ut_name)) {					memcpy(ut.ut_name, (char *)vp->vp_strvalue, sizeof(ut.ut_name));				} else {					strlcpy(ut.ut_name, (char *)vp->vp_strvalue, sizeof(ut.ut_name));				}				break;			case PW_LOGIN_IP_HOST:			case PW_FRAMED_IP_ADDRESS:				framed_address = vp->vp_ipaddr;				break;			case PW_FRAMED_PROTOCOL:				protocol = vp->vp_integer;				break;			case PW_NAS_IP_ADDRESS:				nas_address = vp->vp_ipaddr;				break;			case PW_NAS_PORT:				nas_port = vp->vp_integer;				port_seen = 1;				break;			case PW_ACCT_DELAY_TIME:				delay = vp->vp_ipaddr;				break;			case PW_NAS_PORT_TYPE:				nas_port_type = vp->vp_ipaddr;				break;		}	}	/*	 *	We don't store !root sessions, or sessions	 *	where we didn't see a NAS-Port attribute.	 */	if (strncmp(ut.ut_name, "!root", sizeof(ut.ut_name)) == 0 || !port_seen)		return RLM_MODULE_NOOP;	s = "";	/*	 *	If we didn't find out the NAS address, use the	 *	originator's IP address.	 */	if (nas_address == 0) {		nas_address = request->packet->src_ipaddr.ipaddr.ip4addr.s_addr;	}	s = request->client->shortname;	if (!s || s[0] == 0) s = uue(&(nas_address));#ifdef __linux__	/*	 *	Linux has a field for the client address.	 */	ut.ut_addr = framed_address;#endif	/*	 *	We use the tty field to store the terminal servers' port	 *	and address so that the tty field is unique.	 */	snprintf(buf, sizeof(buf), "%03d:%s", nas_port, s);	strlcpy(ut.ut_line, buf, sizeof(ut.ut_line));	/*	 *	We store the dynamic IP address in the hostname field.	 */#ifdef UT_HOSTSIZE	if (framed_address) {		ip_ntoa(buf, framed_address);		strlcpy(ut.ut_host, buf, sizeof(ut.ut_host));	}#endif#ifdef HAVE_UTMPX_H	ut.ut_xtime = t- delay;#else	ut.ut_time = t - delay;#endif#ifdef USER_PROCESS	/*	 *	And we can use the ID field to store	 *	the protocol.	 */	if (protocol == PW_PPP)		strcpy(ut.ut_id, "P");	else if (protocol == PW_SLIP)		strcpy(ut.ut_id, "S");	else		strcpy(ut.ut_id, "T");	ut.ut_type = status == PW_STATUS_STOP ? DEAD_PROCESS : USER_PROCESS;#endif	if (status == PW_STATUS_STOP)		ut.ut_name[0] = 0;	/*	 *	Write a RADIUS wtmp log file.	 *	 *	Try to open the file if we can't, we don't write the	 *	wtmp file. If we can try to write. If we fail,	 *	return RLM_MODULE_FAIL ..	 */	if ((fp = fopen(inst->radwtmp, "a")) != NULL) {		if ((fwrite(&ut, sizeof(ut), 1, fp)) != 1) {			fclose(fp);			return RLM_MODULE_FAIL;		}		fclose(fp);	} else		return RLM_MODULE_FAIL;	return RLM_MODULE_OK;}/* globally exported name */module_t rlm_unix = {	RLM_MODULE_INIT,	"System",	RLM_TYPE_THREAD_UNSAFE | RLM_TYPE_CHECK_CONFIG_SAFE,	unix_instantiate,		/* instantiation */	unix_detach,                 	/* detach */	{		unix_authenticate,    /* authentication */		unix_authorize,       /* authorization */		NULL,                 /* preaccounting */		unix_accounting,      /* accounting */		NULL,                  /* checksimul */		NULL,			/* pre-proxy */		NULL,			/* post-proxy */		NULL			/* post-auth */	},};

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -