$ifd) { if (strtolower($int) == strtolower($ifd)) return $if; } if (substr($int, 0, 4) == "ovpn") return "openvpn"; return false; } function easyrule_block_rule_exists($int = 'wan') { global $blockaliasname, $config; /* No rules, we we know it doesn't exist */ if (!is_array($config['filter']['rule'])) { return false; } /* Search through the rules for one referencing our alias */ foreach ($config['filter']['rule'] as $rule) { if (!is_array($rule) || !is_array($rule['source'])) continue; if ($rule['source']['address'] == $blockaliasname . strtoupper($int) && ($rule['interface'] == $int)) return true; } return false; } function easyrule_block_rule_create($int = 'wan') { global $blockaliasname, $config; /* If the alias doesn't exist, exit. * Can't create an empty alias, and we don't know a host */ if (easyrule_block_alias_getid($int) === false) return false; /* If the rule already exists, no need to do it again */ if (easyrule_block_rule_exists($int)) return true; /* No rules, start a new array */ if (!is_array($config['filter']['rule'])) { $config['filter']['rule'] = array(); } filter_rules_sort(); $a_filter = &$config['filter']['rule']; /* Make up a new rule */ $filterent = array(); $filterent['type'] = 'block'; $filterent['interface'] = $int; $filterent['source']['address'] = $blockaliasname . strtoupper($int); $filterent['destination']['any'] = ''; $filterent['descr'] = "Easy Rule: Blocked from Firewall Log View"; array_splice($a_filter, 0, 0, array($filterent)); return true; } function easyrule_block_alias_getid($int = 'wan') { global $blockaliasname, $config; if (!is_array($config['aliases'])) return false; /* Hunt down an alias with the name we want, return its id */ foreach ($config['aliases']['alias'] as $aliasid => $alias) if ($alias['name'] == $blockaliasname . strtoupper($int)) return $aliasid; return false; } function easyrule_block_alias_add($host, $int = 'wan') { global $blockaliasname, $config; /* If the host isn't a valid IP address, bail */ if (!is_ipaddr($host)) return false; /* If there are no aliases, start an array */ if (!is_array($config['aliases']['alias'])) $config['aliases']['alias'] = array(); $a_aliases = &$config['aliases']['alias']; /* Try to get the ID if the alias already exists */ $id = easyrule_block_alias_getid($int); if ($id === false) unset($id); $alias = array(); if (isset($id) && $a_aliases[$id]) { /* Make sure this IP isn't already in the list. */ if (in_array($host.'/32', explode(" ", $a_aliases[$id]['address']))) return true; /* Since the alias already exists, just add to it. */ $alias['name'] = $a_aliases[$id]['name']; $alias['type'] = $a_aliases[$id]['type']; $alias['descr'] = $a_aliases[$id]['descr']; $alias['address'] = $a_aliases[$id]['address'] . ' ' . $host . '/32'; $alias['detail'] = $a_aliases[$id]['detail'] . 'Entry added ' . date('r') . '||'; } else { /* Create a new alias with all the proper information */ $alias['name'] = $blockaliasname . strtoupper($int); $alias['type'] = 'network'; $alias['descr'] = "Hosts blocked from Firewall Log view"; $alias['address'] = $host . '/32'; $alias['detail'] = 'Entry added ' . date('r') . '||'; } /* Replace the old alias if needed, otherwise tack it on the end */ if (isset($id) && $a_aliases[$id]) $a_aliases[$id] = $alias; else $a_aliases[] = $alias; // Sort list $a_aliases = msort($a_aliases, "name"); return true; } function easyrule_block_host_add($host, $int = 'wan') { global $retval; /* Bail if the supplied host is not a valid IP address */ if (!is_ipaddr($host)) return false; /* Flag whether or not we need to reload the filter */ $dirty = false; /* Attempt to add this host to the alias */ if (easyrule_block_alias_add($host, $int)) { $dirty = true; } else { /* Couldn't add the alias, or adding the host failed. */ return false; } /* Attempt to add the firewall rule if it doesn't exist. * Failing to add the rule isn't necessarily an error, it may * have been modified by the user in some way. Adding to the * Alias is what's important. */ if (!easyrule_block_rule_exists($int)) { if (easyrule_block_rule_create($int)) { $dirty = true; } else { return false; } } /* If needed, write the config and reload the filter */ if ($dirty) { write_config(); $retval = filter_configure(); if (!empty($_SERVER['DOCUMENT_ROOT'])) { header("Location: firewall_aliases.php"); exit; } else { return true; } } else { return false; } } function easyrule_pass_rule_add($int, $proto, $srchost, $dsthost, $dstport) { global $config; /* No rules, start a new array */ if (!is_array($config['filter']['rule'])) { $config['filter']['rule'] = array(); } filter_rules_sort(); $a_filter = &$config['filter']['rule']; /* Make up a new rule */ $filterent = array(); $filterent['type'] = 'pass'; $filterent['interface'] = $int; $filterent['descr'] = "Easy Rule: Passed from Firewall Log View"; if ($proto != "any") $filterent['protocol'] = $proto; else unset($filterent['protocol']); /* Default to only allow echo requests, since that's what most people want and * it should be a safe choice. */ if ($proto == "icmp") $filterent['icmptype'] = 'echoreq'; pconfig_to_address($filterent['source'], $srchost, 32); pconfig_to_address($filterent['destination'], $dsthost, 32, '', $dstport, $dstport); $a_filter[] = $filterent; write_config($filterent['descr']); $retval = filter_configure(); if (!empty($_SERVER['DOCUMENT_ROOT'])) { header("Location: firewall_rules.php?if={$int}"); exit; } else { return true; } } function easyrule_parse_block($int, $src) { if (!empty($src) && !empty($int)) { if (!is_ipaddr($src)) { return "Tried to block invalid IP: " . htmlspecialchars($src); } $int = easyrule_find_rule_interface($int); if ($int === false) { return "Invalid interface for block rule: " . htmlspecialchars($int); } if (easyrule_block_host_add($src, $int)) { return "Host added successfully"; } else { return "Failed to create block rule, alias, or add host."; } } else { return "Tried to block but had no host IP or interface"; } return "Unknown block error."; } function easyrule_parse_pass($int, $proto, $src, $dst, $dstport = 0) { /* Check for valid int, srchost, dsthost, dstport, and proto */ global $protocols_with_ports; if (!empty($int) && !empty($proto) && !empty($src) && !empty($dst)) { $int = easyrule_find_rule_interface($int); if ($int === false) { return "Invalid interface for pass rule: " . htmlspecialchars($int); } if (getprotobyname($proto) == -1) { return "Invalid protocol for pass rule: " . htmlspecialchars($proto); } if (!is_ipaddr($src)) { return "Tried to pass invalid source IP: " . htmlspecialchars($src); } if (!is_ipaddr($dst)) { return "Tried to pass invalid destination IP: " . htmlspecialchars($dst); } if (in_array($proto, $protocols_with_ports)) { if (empty($dstport)) { return "Missing destination port: " . htmlspecialchars($dstport); } if (!is_port($dstport)) { return "Tried to pass invalid destination port: " . htmlspecialchars($dstport); } } else { $dstport = 0; } /* Should have valid input... */ if (easyrule_pass_rule_add($int, $proto, $src, $dst, $dstport)) { return "Successfully added pass rule!"; } else { return "Failed to add pass rule."; } } else { return "Missing parameters for pass rule."; } return "Unknown pass error."; } ?>