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: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179: 180: 181: 182: 183: 184: 185: 186: 187: 188: 189: 190: 191: 192: 193: 194: 195: 196: 197: 198: 199: 200: 201: 202: 203: 204: 205: 206: 207: 208: 209: 210: 211: 212: 213: 214: 215: 216: 217: 218: 219: 220: 221: 222: 223: 224: 225: 226: 227: 228: 229: 230: 231: 232: 233: 234: 235: 236: 237: 238: 239: 240: 241: 242: 243: 244: 245: 246: 247: 248: 249: 250: 251: 252: 253: 254: 255: 256: 257: 258: 259: 260: 261: 262: 263: 264: 265: 266: 267: 268: 269: 270: 271: 272: 273: 274: 275: 276: 277: 278: 279: 280: 281: 282: 283: 284: 285: 286:
<?php
declare(strict_types=1);
/**
* +------------------------------------------------------------+
* | apnscp |
* +------------------------------------------------------------+
* | Copyright (c) Apis Networks |
* +------------------------------------------------------------+
* | Licensed under Artistic License 2.0 |
* +------------------------------------------------------------+
* | Author: Matt Saladna (msaladna@apisnetworks.com) |
* +------------------------------------------------------------+
*/
/**
* Provides interface bindings to apnscp.
*
* @package core
*/
class Ipinfo_Module extends Module_Skeleton implements \Opcenter\Contracts\Hookable
{
// netmask of allowable IP addresses
const IP_ALLOCATION_BLOCK = DNS_ALLOCATION_CIDR;
const NAMEBASED_INTERFACE_FILE = '/etc/virtualhosting/interface';
/**
* {{{ void __construct(void)
*/
public function __construct()
{
parent::__construct();
$this->exportedFunctions = array(
'*' => PRIVILEGE_SITE,
'release_ip' => PRIVILEGE_ADMIN,
'ip_allocated' => PRIVILEGE_ADMIN,
);
}
/**
* Release IP into allocation pool
*
* @param $ip IP address to release
* @param $domain additional truthiness check before releasing IP
* @return bool
*/
public function release_ip($ip, $domain = null)
{
return $this->__deleteIP($ip, $domain);
}
/*
* Check zone for errors
*
* Additional DNS records are formatted as arguments
* to add_record()-
* check_zone("debug.com",["mail","a",86400,"127.0.0.1"])
*
* Hostname, RR, TTL, and parameter are required
*
* @param $zone zone - usually a domain
* @param $recs additional DNS records used in check
*
* @return bool
*/
/**
* Release PTR assignment from an IP
*
* @param $ip
* @param string $domain confirm PTR rDNS matches domain
* @return bool
*/
protected function __deleteIP($ip, $domain = null)
{
return true;
}
public function _delete()
{
$conf = $this->getAuthContext()->getAccount()->cur;
if (!$this->getServiceValue('ipinfo', 'namebased')) {
$ips = (array)$this->getServiceValue('ipinfo', 'ipaddrs');
// pass the domain to verify the PTR isn't detached incorrectly
// from another domain that has recycled it
$domain = $this->getServiceValue('siteinfo', 'domain');
foreach ($ips as $ip) {
$this->__deleteIP($ip, $domain);
}
}
}
public function _create()
{
$ipinfo = $this->getAuthContext()->conf('ipinfo', 'cur');
$siteinfo = $this->getAuthContext()->conf('siteinfo', 'cur');
$domain = $siteinfo['domain'];
$ip = $ipinfo['namebased'] ? $ipinfo['nbaddrs'] : $ipinfo['ipaddrs'];
//$this->add_zone($domain, $ip[0]);
if (!$ipinfo['namebased']) {
$this->_addIP($ip[0], $siteinfo['domain']);
}
}
/**
* Add an IP address to hosting
*
* @param string $ip
* @param string $hostname
* @return bool
*/
protected function _addIP($ip, $hostname = '')
{
return true;
}
public function _edit_user(string $userold, string $usernew, array $oldpwd)
{
// TODO: Implement _edit_user() method.
}
public function _create_user(string $user)
{
// TODO: Implement _create_user() method.
}
public function _delete_user(string $user)
{
// TODO: Implement _delete_user() method.
}
public function _edit()
{
$conf_old = $this->getAuthContext()->conf('ipinfo', 'old');
$conf_new = $this->getAuthContext()->conf('ipinfo', 'new');
$domainold = array_get($this->getAuthContext()->getAccount()->old, 'siteinfo.domain');
$domainnew = array_get($this->getAuthContext()->getAccount()->new, 'siteinfo.domain');
// changing to IP address, no IP address specified in commandline
// this can't happen yet, because configuration requires an IP before
// it can be committed (and therefore invoke editVirtDomain.sh)
if ($conf_old['namebased'] && !$conf_new['namebased'] && !$conf_new['ipaddrs']) {
$ip = \Opcenter\Net\Ip4::allocate();
$conf_new['ipaddrs'] = array($ip);
info("allocated ip `%s'", $ip);
}
// domain name change via auth_change_domain()
if ($domainold !== $domainnew) {
$ip = $conf_new['namebased'] ? array_pop($conf_new['nbaddrs']) :
array_pop($conf_new['ipaddrs']);
//$this->remove_zone($domainold);
//$this->add_zone($domainnew, $ip);
// domain name changed
if (!$conf_new['namebased']) {
//$this->__changePTR($ip, $domainnew, $domainold);
}
}
if ($conf_new === $conf_old) {
return;
}
$ipadd = $ipdel = array();
if ($conf_old['namebased'] && !$conf_new['namebased']) {
// enable ip hosting
$ipadd = $conf_new['ipaddrs'];
} else {
if (!$conf_old['namebased'] && $conf_new['namebased']) {
// disable ip hosting
$ipdel = $conf_old['ipaddrs'];
} else {
// add/remove ip hosting
$ipdel = array_diff((array)$conf_old['ipaddrs'], (array)$conf_new['ipaddrs']);
$ipadd = array_diff((array)$conf_new['ipaddrs'], (array)$conf_old['ipaddrs']);
}
}
foreach ($ipdel as $ip) {
// NB __changePTR is called before to update domain on change
$this->__deleteIP($ip, $domainnew);
}
foreach ($ipadd as $ip) {
$this->_addIP($ip, $domainnew);
}
$domains = array_keys($this->web_list_domains());
if ($conf_old['namebased'] && !$conf_new['namebased']) {
// added ip-based hosting
$ipdel = $conf_old['nbaddrs'];
} else {
if (!$conf_old['namebased'] && $conf_new['namebased']) {
// removed ip-based hosting
$ipadd = $conf_new['nbaddrs'];
}
}
if (!$this->dns_configured()) {
return;
}
// change DNS
// there will always be a 1:1 pairing for IP addresses
foreach ($ipadd as $newip) {
$oldip = array_pop($ipdel);
$class = apnscpFunctionInterceptor::get_autoload_class_from_module('dns');
$newparams = array('ttl' => $class::DNS_TTL, 'parameter' => $newip);
foreach ($domains as $domain) {
$records = $this->dns_get_records_by_rr('A', $domain);
foreach ($records as $r) {
if ($r['parameter'] !== $oldip) {
continue;
}
if (!$this->dns_modify_record($r['domain'], $r['subdomain'], 'A', $oldip, $newparams)) {
$frag = ltrim($r['subdomain'] . ' . ' . $r['domain'], '.');
error('failed to modify record for `' . $frag . "'");
} else {
$pieces = array($r['subdomain'], $r['domain']);
$host = trim(join('.', $pieces), '.');
info("modified `%s'", $host);
}
}
}
}
return;
}
/**
* Check whether IP is assigned
*
* Assigned IP addresses will have PTRs. Unassigned will be empty.
*
* @param $ip string ip address
* @return bool
*/
public function ip_allocated($ip)
{
return gethostbyaddr($ip) !== $ip;
}
public function _verify_conf(\Opcenter\Service\ConfigurationContext $ctx): bool
{
return true;
}
/**
* Announce an IP address via ARP
*
* @param string $ip
* @return bool
*/
protected function _announceIP($ip)
{
$iface = $this->_getInterface();
$proc = new Util_Process_Schedule('+2 minutes');
$newpath = join(PATH_SEPARATOR, array('/sbin', getenv('PATH')));
$proc->setEnvironment('PATH', $newpath);
$ret = $proc->run(
'arping -U -I %s -c 1 %s',
$iface,
$ip
);
return $ret['success'];
}
/**
* Get interface names to use with hosting
*
* @return bool|string
*/
protected function _getInterface()
{
// default in case file is missing
$iface = 'eth0';
if (!file_exists(static::NAMEBASED_INTERFACE_FILE)) {
warn("missing interface file `%s', assuming main iface is `%s'",
static::NAMEBASED_INTERFACE_FILE, $iface);
return $iface;
}
$iface = file_get_contents(static::NAMEBASED_INTERFACE_FILE);
return trim($iface);
}
}