8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-05-18 08:32:26 +00:00
re2o/freeradius_utils/auth.py

588 lines
21 KiB
Python
Raw Normal View History

2018-04-13 20:11:55 +00:00
# -*- mode: python; coding: utf-8 -*-
2020-11-23 16:06:37 +00:00
# Re2o est un logiciel d'administration développé initiallement au Rézo Metz. Il
2017-01-15 23:01:18 +00:00
# se veut agnostique au réseau considéré, de manière à être installable en
# quelques clics.
#
# Copyirght © 2017 Daniel Stan
2017-01-15 23:01:18 +00:00
# Copyright © 2017 Gabriel Détraz
# Copyright © 2017 Lara Kermarec
2017-01-15 23:01:18 +00:00
# Copyright © 2017 Augustin Lemesle
#
# 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 Street, Fifth Floor, Boston, MA 02110-1301 USA.
2016-12-08 14:13:41 +00:00
"""
2020-05-16 01:57:29 +00:00
Python backend for freeradius.
2016-12-08 14:13:41 +00:00
2020-05-16 10:56:09 +00:00
This file contains definition of some functions called by freeradius backend
2020-05-16 01:57:29 +00:00
during auth for wifi, wired device and nas.
2016-12-08 14:13:41 +00:00
2020-05-16 01:57:29 +00:00
Other examples can be found here :
2016-12-08 14:13:41 +00:00
https://github.com/FreeRADIUS/freeradius-server/blob/master/src/modules/rlm_python/
2020-05-16 01:57:29 +00:00
Inspired by Daniel Stan in Crans
2016-12-08 14:13:41 +00:00
"""
2018-04-13 20:11:55 +00:00
import os
import sys
2018-04-14 15:30:14 +00:00
import logging
2019-01-23 20:30:17 +00:00
import traceback
2020-05-16 01:57:29 +00:00
import radiusd # Magic module freeradius (radiusd.py is dummy)
2018-04-13 20:11:55 +00:00
2018-04-14 15:30:14 +00:00
from django.core.wsgi import get_wsgi_application
2018-04-13 20:11:55 +00:00
from django.db.models import Q
2018-04-14 15:30:14 +00:00
proj_path = "/var/www/re2o/"
# This is so Django knows where to find stuff.
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "re2o.settings")
sys.path.append(proj_path)
# This is so my local_settings.py gets loaded.
os.chdir(proj_path)
# This is so models get loaded.
application = get_wsgi_application()
2018-04-26 07:19:10 +00:00
from machines.models import Interface, IpList, Nas, Domain
from topologie.models import Port, Switch
from users.models import User
2018-12-04 19:00:18 +00:00
from preferences.models import RadiusOption
2018-04-26 07:19:10 +00:00
2016-12-08 14:13:41 +00:00
2018-04-13 20:11:55 +00:00
# Logging
2016-12-08 14:13:41 +00:00
class RadiusdHandler(logging.Handler):
2020-05-16 01:57:29 +00:00
"""Logs handler for freeradius"""
2016-12-08 14:13:41 +00:00
def emit(self, record):
2020-05-16 01:57:29 +00:00
"""Log message processing, level are converted"""
2016-12-08 14:13:41 +00:00
if record.levelno >= logging.WARN:
rad_sig = radiusd.L_ERR
elif record.levelno >= logging.INFO:
rad_sig = radiusd.L_INFO
else:
rad_sig = radiusd.L_DBG
2020-05-16 01:57:29 +00:00
radiusd.radlog(rad_sig, str(record.msg))
2016-12-08 14:13:41 +00:00
2018-04-13 20:11:55 +00:00
2020-05-16 01:57:29 +00:00
# Init for logging
logger = logging.getLogger("auth.py")
2016-12-08 14:13:41 +00:00
logger.setLevel(logging.DEBUG)
formatter = logging.Formatter("%(name)s: [%(levelname)s] %(message)s")
2016-12-08 14:13:41 +00:00
handler = RadiusdHandler()
handler.setFormatter(formatter)
logger.addHandler(handler)
2018-04-13 20:11:55 +00:00
2016-12-08 14:13:41 +00:00
def radius_event(fun):
2020-05-16 01:57:29 +00:00
"""Decorator for freeradius fonction with radius.
This function take a unique argument which is a list of tuples (key, value)
and return a tuple of 3 values which are:
* return code (see radiusd.RLM_MODULE_* )
* a tuple of 2 elements for response value (access ok , etc)
* a tuple of 2 elements for internal value to update (password for example)
Here, we convert the list of tuples into a dictionnary.
"""
2016-12-08 14:13:41 +00:00
def new_f(auth_data):
2018-04-14 15:30:14 +00:00
""" The function transforming the tuples as dict """
if isinstance(auth_data, dict):
2016-12-08 14:13:41 +00:00
data = auth_data
else:
data = dict()
for (key, value) in auth_data or []:
# Beware: les valeurs scalaires sont entre guillemets
# Ex: Calling-Station-Id: "une_adresse_mac"
data[key] = value.replace('"', "")
2016-12-08 14:13:41 +00:00
try:
return fun(data)
except Exception as err:
2019-09-10 17:11:14 +00:00
exc_type, exc_instance, exc_traceback = sys.exc_info()
formatted_traceback = "".join(traceback.format_tb(exc_traceback))
logger.error("Failed %r on data %r" % (err, auth_data))
logger.error("Function %r, Traceback : %r" % (fun, formatted_traceback))
return radiusd.RLM_MODULE_FAIL
2016-12-08 14:13:41 +00:00
return new_f
2016-12-08 14:13:41 +00:00
@radius_event
def instantiate(*_):
2020-05-16 01:57:29 +00:00
"""Usefull for instantiate ldap connexions otherwise,
do nothing"""
logger.info("Instantiation")
2016-12-08 14:13:41 +00:00
2018-04-13 20:11:55 +00:00
2016-12-08 14:13:41 +00:00
@radius_event
def authorize(data):
2020-05-16 01:57:29 +00:00
"""Here, we test if the Nas is known.
- If the nas is unknown, we assume that it is a 802.1X request,
- If the nas is known, we apply the 802.1X if enabled,
- It the nas is known AND nas auth is enabled with mac address, returns
accept here"""
# For proxified request, split
nas = data.get("NAS-IP-Address", data.get("NAS-Identifier", None))
nas_instance = find_nas_from_request(nas)
2020-05-16 01:57:29 +00:00
# For none proxified requests
2017-11-19 20:17:17 +00:00
nas_type = None
if nas_instance:
nas_type = Nas.objects.filter(nas_type=nas_instance.machine_type).first()
if not nas_type or nas_type.port_access_mode == "802.1X":
2020-05-16 01:57:29 +00:00
user = data.get("User-Name", "")
user = user.split("@", 1)[0]
mac = data.get("Calling-Station-Id", "")
result, log, password = check_user_machine_and_register(nas_type, user, mac)
2020-05-16 01:57:29 +00:00
logger.info(str(log))
logger.info(str(user))
if not result:
return radiusd.RLM_MODULE_REJECT
else:
2018-04-13 20:11:55 +00:00
return (
radiusd.RLM_MODULE_UPDATED,
(),
((str("NT-Password"), str(password)),),
)
2016-12-08 14:13:41 +00:00
else:
return (radiusd.RLM_MODULE_UPDATED, (), (("Auth-Type", "Accept"),))
2016-12-08 14:13:41 +00:00
2018-04-13 20:11:55 +00:00
2016-12-08 14:13:41 +00:00
@radius_event
def post_auth(data):
2018-04-14 15:30:14 +00:00
""" Function called after the user is authenticated
"""
nas = data.get("NAS-IP-Address", data.get("NAS-Identifier", None))
2017-09-13 01:53:06 +00:00
nas_instance = find_nas_from_request(nas)
2020-05-16 01:57:29 +00:00
# All non proxified requests
if not nas_instance:
2020-05-16 01:57:29 +00:00
logger.info("Proxified request, nas unknown")
2017-09-14 15:24:12 +00:00
return radiusd.RLM_MODULE_OK
nas_type = Nas.objects.filter(nas_type=nas_instance.machine_type).first()
2017-09-14 15:24:12 +00:00
if not nas_type:
2020-05-16 01:57:29 +00:00
logger.info("This kind of nas is not registered in the database!")
2017-09-14 15:24:12 +00:00
return radiusd.RLM_MODULE_OK
mac = data.get("Calling-Station-Id", None)
2020-05-16 01:57:29 +00:00
# Switchs and access point can have several interfaces
nas_machine = nas_instance.machine
2020-05-16 01:57:29 +00:00
# If it is a switchs
if hasattr(nas_machine, "switch"):
port = data.get("NAS-Port-Id", data.get("NAS-Port", None))
2020-05-16 01:57:29 +00:00
# If the switch is part of a stack, calling ip is different from calling switch.
instance_stack = nas_machine.switch.stack
if instance_stack:
2020-05-16 01:57:29 +00:00
# If it is a stack, we select the correct switch in the stack
id_stack_member = port.split("-")[1].split("/")[0]
nas_machine = (
Switch.objects.filter(stack=instance_stack)
.filter(stack_member_id=id_stack_member)
.prefetch_related("interface_set__domain__extension")
.first()
)
2020-05-16 01:57:29 +00:00
# Find the port number from freeradius, works both with HP, Cisco
# and juniper output
port = port.split(".")[0].split("/")[-1][-2:]
out = decide_vlan_switch(nas_machine, nas_type, port, mac)
2019-09-09 15:59:43 +00:00
sw_name, room, reason, vlan_id, decision, attributes = out
2018-08-30 00:11:14 +00:00
if decision:
2020-05-16 01:57:29 +00:00
log_message = "(wired) %s -> %s [%s%s]" % (
sw_name + ":" + port + "/" + str(room),
2018-08-30 00:11:14 +00:00
mac,
vlan_id,
2020-05-16 01:57:29 +00:00
(reason and ": " + reason),
2018-08-30 00:11:14 +00:00
)
logger.info(log_message)
2020-05-16 01:57:29 +00:00
# Wired connexion
2018-08-30 00:11:14 +00:00
return (
radiusd.RLM_MODULE_UPDATED,
(
("Tunnel-Type", "VLAN"),
("Tunnel-Medium-Type", "IEEE-802"),
("Tunnel-Private-Group-Id", "%d" % int(vlan_id)),
)
+ tuple(attributes),
(),
2018-08-30 00:11:14 +00:00
)
else:
2020-05-16 01:57:29 +00:00
log_message = "(fil) %s -> %s [Reject %s]" % (
sw_name + ":" + port + "/" + str(room),
2018-08-30 00:11:14 +00:00
mac,
2020-05-16 01:57:29 +00:00
(reason and ": " + reason),
2018-08-30 00:11:14 +00:00
)
logger.info(log_message)
return (radiusd.RLM_MODULE_REJECT, tuple(attributes), ())
2016-12-08 14:13:41 +00:00
else:
return radiusd.RLM_MODULE_OK
2016-12-08 14:13:41 +00:00
2018-04-13 20:11:55 +00:00
2018-04-14 15:30:14 +00:00
# TODO : remove this function
2016-12-08 14:13:41 +00:00
@radius_event
def dummy_fun(_):
2020-05-16 01:57:29 +00:00
"""Do nothing, successfully. """
2016-12-08 14:13:41 +00:00
return radiusd.RLM_MODULE_OK
2018-04-13 20:11:55 +00:00
2016-12-08 14:13:41 +00:00
def detach(_=None):
2020-05-16 01:57:29 +00:00
"""Detatch the auth"""
2018-04-14 15:30:14 +00:00
print("*** goodbye from auth.py ***")
2016-12-08 14:13:41 +00:00
return radiusd.RLM_MODULE_OK
2018-04-13 20:11:55 +00:00
def find_nas_from_request(nas_id):
2018-04-14 15:30:14 +00:00
""" Get the nas object from its ID """
nas = (
Interface.objects.filter(
Q(domain=Domain.objects.filter(name=nas_id))
| Q(ipv4=IpList.objects.filter(ipv4=nas_id))
)
.select_related("machine_type")
.select_related("machine__switch__stack")
)
2017-09-13 01:53:06 +00:00
return nas.first()
2018-12-04 19:00:18 +00:00
def check_user_machine_and_register(nas_type, username, mac_address):
2020-05-16 01:57:29 +00:00
"""Check if username and mac are registered. Register it if unknown.
Return the user ntlm password if everything is ok.
Used for 802.1X auth"""
interface = Interface.objects.filter(mac_address=mac_address).first()
2019-01-10 15:10:43 +00:00
user = User.objects.filter(pseudo__iexact=username).first()
if not user:
2020-05-16 01:57:29 +00:00
return (False, "User unknown", "")
if not user.has_access():
2020-05-16 01:57:29 +00:00
return (False, "Invalid connexion (non-contributing user)", "")
if interface:
if interface.machine.user != user:
return (
False,
2020-05-16 01:57:29 +00:00
"Mac address registered on another user account",
"",
)
elif not interface.is_active:
2020-05-16 01:57:29 +00:00
return (False, "Interface/Machine disabled", "")
elif not interface.ipv4:
interface.assign_ipv4()
2020-05-16 01:57:29 +00:00
return (True, "Ok, new ipv4 assignement...", user.pwd_ntlm)
else:
2020-05-16 01:57:29 +00:00
return (True, "Access ok", user.pwd_ntlm)
elif nas_type:
2017-09-14 15:24:12 +00:00
if nas_type.autocapture_mac:
result, reason = user.autoregister_machine(mac_address, nas_type)
if result:
2020-05-16 01:57:29 +00:00
return (True, "Access Ok, Registering mac...", user.pwd_ntlm)
else:
2020-05-16 01:57:29 +00:00
return (False, "Error during mac register %s" % reason, "")
2017-10-04 11:50:12 +00:00
else:
2020-05-16 01:57:29 +00:00
return (False, "Unknown interface/machine", "")
else:
2020-05-16 01:57:29 +00:00
return (False, "Unknown interface/machine", "")
def decide_vlan_switch(nas_machine, nas_type, port_number, mac_address):
2020-05-16 01:57:29 +00:00
"""Function for selecting vlan for a switch with wired mac auth radius.
Several modes are available :
- all modes:
- unknown NAS : VLAN_OK,
- unknown port : Decision set in Re2o RadiusOption
- No radius on this port : VLAN_OK
- force : returns vlan provided by the database
2018-12-04 19:00:18 +00:00
- mode strict:
2020-05-16 01:57:29 +00:00
- no room : Decision set in Re2o RadiusOption,
- no user in this room : Reject,
- user of this room is banned or disable : Reject,
- user of this room non-contributor and not whitelisted:
Decision set in Re2o RadiusOption
2018-12-04 19:00:18 +00:00
- mode common :
2020-05-16 01:57:29 +00:00
- mac-address already registered:
- related user non contributor / interface disabled:
Decision set in Re2o RadiusOption
- related user is banned:
Decision set in Re2o RadiusOption
- user contributing : VLAN_OK (can assign ipv4 if needed)
- unknown interface :
- register mac disabled : Decision set in Re2o RadiusOption
- register mac enabled : redirect to webauth
2018-12-04 19:00:18 +00:00
Returns:
2020-05-16 01:57:29 +00:00
tuple with :
- Switch name (str)
- Room (str)
- Reason of the decision (str)
2018-12-04 19:00:18 +00:00
- vlan_id (int)
- decision (bool)
2020-05-16 01:57:29 +00:00
- Other Attributs (attribut:str, operator:str, value:str)
"""
2019-09-10 17:11:14 +00:00
attributes_kwargs = {
"client_mac": str(mac_address),
"switch_port": str(port_number),
2019-09-10 17:11:14 +00:00
}
# Get port from switch and port number
extra_log = ""
2020-05-16 01:57:29 +00:00
# If NAS is unknown, go to default vlan
if not nas_machine:
2019-09-09 15:59:43 +00:00
return (
"?",
2020-05-16 01:57:29 +00:00
"Unknown room",
"Unknown NAS",
RadiusOption.get_cached_value("vlan_decision_ok").vlan_id,
2019-09-09 15:59:43 +00:00
True,
RadiusOption.get_attributes("ok_attributes", attributes_kwargs),
2019-09-09 15:59:43 +00:00
)
sw_name = str(getattr(nas_machine, "short_name", str(nas_machine)))
2019-09-10 17:11:14 +00:00
switch = Switch.objects.filter(machine_ptr=nas_machine).first()
attributes_kwargs["switch_ip"] = str(switch.ipv4)
port = Port.objects.filter(switch=switch, port=port_number).first()
2018-07-11 17:37:22 +00:00
2020-05-16 01:57:29 +00:00
# If the port is unknwon, go to default vlan
# We don't have enought information to make a better decision
if not port:
2018-12-04 19:00:18 +00:00
return (
sw_name,
2020-05-16 01:57:29 +00:00
"Unknown port",
"PUnknown port",
getattr(
RadiusOption.get_cached_value("unknown_port_vlan"), "vlan_id", None
),
RadiusOption.get_cached_value("unknown_port") != RadiusOption.REJECT,
RadiusOption.get_attributes("unknown_port_attributes", attributes_kwargs),
2018-12-04 19:00:18 +00:00
)
2020-05-16 01:57:29 +00:00
# Retrieve port profile
2018-07-11 17:37:22 +00:00
port_profile = port.get_port_profile
2020-05-16 01:57:29 +00:00
# If a vlan is precised in port config, we use it
2018-07-11 17:37:22 +00:00
if port_profile.vlan_untagged:
DECISION_VLAN = int(port_profile.vlan_untagged.vlan_id)
2020-05-16 01:57:29 +00:00
extra_log = "Force sur vlan " + str(DECISION_VLAN)
2019-09-09 15:59:43 +00:00
attributes = ()
else:
DECISION_VLAN = RadiusOption.get_cached_value("vlan_decision_ok").vlan_id
attributes = RadiusOption.get_attributes("ok_attributes", attributes_kwargs)
2020-05-16 01:57:29 +00:00
# If the port is disabled in re2o, REJECT
if not port.state:
2020-05-16 01:57:29 +00:00
return (sw_name, port.room, "Port disabled", None, False, ())
2020-05-16 01:57:29 +00:00
# If radius is disabled, decision is OK
if port_profile.radius_type == "NO":
return (
sw_name,
"",
2020-05-16 01:57:29 +00:00
"No Radius auth enabled on this port" + extra_log,
DECISION_VLAN,
True,
attributes,
)
2020-05-16 01:57:29 +00:00
# If 802.1X is enabled, people has been previously accepted.
# Go to the decision vlan
if (nas_type.port_access_mode, port_profile.radius_type) == ("802.1X", "802.1X"):
2020-05-16 01:57:29 +00:00
room = port.room or "Room unknown"
2018-12-04 19:00:18 +00:00
return (
sw_name,
room,
2020-05-16 01:57:29 +00:00
"Accept authentication 802.1X",
2018-12-04 19:00:18 +00:00
DECISION_VLAN,
2019-09-09 15:59:43 +00:00
True,
attributes,
2018-12-04 19:00:18 +00:00
)
2018-06-30 22:17:24 +00:00
2020-05-16 01:57:29 +00:00
# Otherwise, we are in mac radius.
# If strict mode is enabled, we check every user related with this port. If
# one user or more is not enabled, we reject to prevent from sharing or
# spoofing mac.
if port_profile.radius_mode == "STRICT":
room = port.room
if not room:
2018-12-04 19:00:18 +00:00
return (
sw_name,
2020-05-16 01:57:29 +00:00
"Unknown",
"Unkwown room",
getattr(
RadiusOption.get_cached_value("unknown_room_vlan"), "vlan_id", None
),
RadiusOption.get_cached_value("unknown_room") != RadiusOption.REJECT,
RadiusOption.get_attributes(
"unknown_room_attributes", attributes_kwargs
),
2018-12-04 19:00:18 +00:00
)
2018-04-13 20:11:55 +00:00
room_user = User.objects.filter(
Q(club__room=port.room) | Q(adherent__room=port.room)
)
if not room_user:
2018-12-04 19:00:18 +00:00
return (
sw_name,
room,
2020-05-16 01:57:29 +00:00
"Non-contributing room",
getattr(
RadiusOption.get_cached_value("non_member_vlan"), "vlan_id", None
),
RadiusOption.get_cached_value("non_member") != RadiusOption.REJECT,
RadiusOption.get_attributes("non_member_attributes", attributes_kwargs),
2018-12-04 19:00:18 +00:00
)
for user in room_user:
if user.is_ban() or user.state != User.STATE_ACTIVE:
2018-12-04 19:00:18 +00:00
return (
sw_name,
room,
2020-05-16 01:57:29 +00:00
"User is banned or disabled",
getattr(
RadiusOption.get_cached_value("banned_vlan"), "vlan_id", None
),
RadiusOption.get_cached_value("banned") != RadiusOption.REJECT,
RadiusOption.get_attributes("banned_attributes", attributes_kwargs),
2018-12-04 19:00:18 +00:00
)
elif user.email_state == User.EMAIL_STATE_UNVERIFIED:
return (
sw_name,
room,
2020-05-16 01:57:29 +00:00
"User is suspended (mail has not been confirmed)",
getattr(
RadiusOption.get_cached_value("non_member_vlan"),
"vlan_id",
None,
),
RadiusOption.get_cached_value("non_member") != RadiusOption.REJECT,
RadiusOption.get_attributes(
"non_member_attributes", attributes_kwargs
),
)
2018-09-02 14:53:21 +00:00
elif not (user.is_connected() or user.is_whitelisted()):
2018-12-04 19:00:18 +00:00
return (
sw_name,
room,
2020-05-16 01:57:29 +00:00
"Non-contributing member",
getattr(
RadiusOption.get_cached_value("non_member_vlan"),
"vlan_id",
None,
),
RadiusOption.get_cached_value("non_member") != RadiusOption.REJECT,
RadiusOption.get_attributes(
"non_member_attributes", attributes_kwargs
),
2018-12-04 19:00:18 +00:00
)
2020-05-16 01:57:29 +00:00
# else: user OK, so we check MAC now
2020-05-16 01:57:29 +00:00
# If we are authenticating with mac, we look for the interfaces and its mac address
if port_profile.radius_mode == "COMMON" or port_profile.radius_mode == "STRICT":
2020-05-16 01:57:29 +00:00
# Mac auth
interface = (
Interface.objects.filter(mac_address=mac_address)
.select_related("machine__user")
.select_related("ipv4")
.first()
)
2020-05-16 01:57:29 +00:00
# If mac is unknown,
if not interface:
room = port.room
2020-05-16 01:57:29 +00:00
# We try to register mac, if autocapture is enabled
# Final decision depend on RADIUSOption set in re2o
2018-12-04 19:00:18 +00:00
if nas_type.autocapture_mac:
return (
sw_name,
room,
2020-05-16 01:57:29 +00:00
"Unknown mac/interface",
getattr(
RadiusOption.get_cached_value("unknown_machine_vlan"),
"vlan_id",
None,
),
RadiusOption.get_cached_value("unknown_machine")
!= RadiusOption.REJECT,
RadiusOption.get_attributes(
"unknown_machine_attributes", attributes_kwargs
),
2018-12-04 19:00:18 +00:00
)
2020-05-16 01:57:29 +00:00
# Otherwise, if autocapture mac is not enabled,
else:
2018-12-04 19:00:18 +00:00
return (
sw_name,
"",
2020-05-16 01:57:29 +00:00
"Unknown mac/interface",
getattr(
RadiusOption.get_cached_value("unknown_machine_vlan"),
"vlan_id",
None,
),
RadiusOption.get_cached_value("unknown_machine")
!= RadiusOption.REJECT,
RadiusOption.get_attributes(
"unknown_machine_attributes", attributes_kwargs
),
2018-12-04 19:00:18 +00:00
)
2020-05-16 01:57:29 +00:00
# Mac/Interface is found, check if related user is contributing and ok
# If needed, set ipv4 to it
else:
room = port.room
if interface.machine.user.is_ban():
2018-12-04 19:00:18 +00:00
return (
sw_name,
room,
2020-05-16 01:57:29 +00:00
"Banned user",
getattr(
RadiusOption.get_cached_value("banned_vlan"), "vlan_id", None
),
RadiusOption.get_cached_value("banned") != RadiusOption.REJECT,
RadiusOption.get_attributes("banned_attributes", attributes_kwargs),
2018-12-04 19:00:18 +00:00
)
if not interface.is_active:
2018-12-04 19:00:18 +00:00
return (
sw_name,
room,
2020-05-16 01:57:29 +00:00
"Disabled interface / non-contributing member",
getattr(
RadiusOption.get_cached_value("non_member_vlan"),
"vlan_id",
None,
),
RadiusOption.get_cached_value("non_member") != RadiusOption.REJECT,
RadiusOption.get_attributes(
"non_member_attributes", attributes_kwargs
),
2018-12-04 19:00:18 +00:00
)
2020-05-16 01:57:29 +00:00
# If settings is set to related interface vlan policy based on interface type:
if RadiusOption.get_cached_value("radius_general_policy") == "MACHINE":
DECISION_VLAN = interface.machine_type.ip_type.vlan.vlan_id
if not interface.ipv4:
interface.assign_ipv4()
2018-12-04 19:00:18 +00:00
return (
sw_name,
room,
2020-05-16 01:57:29 +00:00
"Ok, assigning new ipv4" + extra_log,
2018-12-04 19:00:18 +00:00
DECISION_VLAN,
2019-09-09 15:59:43 +00:00
True,
attributes,
2018-12-04 19:00:18 +00:00
)
else:
2018-12-04 19:00:18 +00:00
return (
sw_name,
room,
2020-05-16 01:57:29 +00:00
"Interface OK" + extra_log,
2018-12-04 19:00:18 +00:00
DECISION_VLAN,
2019-09-09 15:59:43 +00:00
True,
attributes,
2018-12-04 19:00:18 +00:00
)