Skip to content
dns_dmarc_edit.php 17 KiB
Newer Older
Florian Schaal's avatar
Florian Schaal committed
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 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409
<?php
/*
Copyright (c) 2014, Florian Schaal, info@schaal-24.de
All rights reserved.

Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:

    * Redistributions of source code must retain the above copyright notice,
      this list of conditions and the following disclaimer.
    * Redistributions in binary form must reproduce the above copyright notice,
      this list of conditions and the following disclaimer in the documentation
      and/or other materials provided with the distribution.
    * Neither the name of ISPConfig nor the names of its contributors
      may be used to endorse or promote products derived from this software without
      specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

/******************************************
* Begin Form configuration
******************************************/

$tform_def_file = "form/dns_dmarc.tform.php";

/******************************************
* End Form configuration
******************************************/

require_once '../../lib/config.inc.php';
require_once '../../lib/app.inc.php';

//* Check permissions for module
$app->auth->check_module_permissions('dns');

// Loading classes
$app->uses('tpl,tform,tform_actions,validate_dns');
$app->load('tform_actions');

class page_action extends tform_actions {
	function onShowNew() {
		global $app, $conf;
		// we will check only users, not admins
		if($_SESSION["s"]["user"]["typ"] == 'user') {

			// Get the limits of the client
			$client_group_id = intval($_SESSION["s"]["user"]["default_group"]);
			$client = $app->db->queryOneRecord("SELECT limit_dns_record FROM sys_group, client WHERE sys_group.client_id = client.client_id and sys_group.groupid = ?", $client_group_id);

			// Check if the user may add another mailbox.
			if($client["limit_dns_record"] >= 0) {
				$tmp = $app->db->queryOneRecord("SELECT count(id) as number FROM dns_rr WHERE sys_groupid = ?", $client_group_id);
				if($tmp["number"] >= $client["limit_dns_record"]) {
					$app->error($app->tform->wordbook["limit_dns_record_txt"]);
				}
			}
		}

		parent::onShowNew();
	}

	function onShowEnd() {
		global $app, $conf;

		$zone = $app->functions->intval($_GET['zone']);
		// get domain-name
		$sql = "SELECT * FROM dns_soa WHERE id = ? AND ?";
		$rec = $app->db->queryOneRecord($sql, $zone, $app->tform->getAuthSQL('r'));
		$domain_name = rtrim($rec['origin'], '.');

		// set defaults
		$dmarc_policy = 'none';
		$dmarc_adkim = 'r';
		$dmarc_aspf = 'r';
		$dmarc_rf = 'afrf';
		$dmarc_pct = 100;
		$dmarc_ri = 86400;
		$dmarc_sp = 'same';

		//* check for an existing dmarc-record
		$sql = "SELECT data, active FROM dns_rr WHERE data LIKE 'v=DMARC1%' AND zone = ? AND name = ? AND ?";
		$rec = $app->db->queryOneRecord($sql, $zone, '_dmarc.'.$domain_name.'.', $app->tform->getAuthSQL('r'));
		if ( isset($rec) && !empty($rec) ) {
			$this->id = 1;
			$old_data = strtolower($rec['data']);
			$app->tpl->setVar("data", $old_data);
			if ($rec['active'] == 'Y') $app->tpl->setVar("active", "CHECKED");
			$dmarc_rua = '';
			$dmarc_ruf = '';
			$dmac_rf = '';
			$dmac_rua = '';
			$dmac_ruf = '';
			// browse through data
			$temp = explode('; ', $old_data);
			foreach ($temp as $part) {
				if (preg_match("/^p=/", $part)) $dmarc_policy = str_replace('p=', '', $part);
				if (preg_match("/^rua=/", $part)) $dmarc_rua = str_replace('rua=mailto:', '', $part).' ';
				if (preg_match("/^ruf=/", $part)) $dmarc_ruf = str_replace('ruf=mailto:', '', $part).' ';
				if (preg_match("/^fo:/", $part)) $dmarc_fo = str_replace('fo:', '', $part);
				if (preg_match("/^adkim=/", $part)) $dmarc_adkim = str_replace('adkim=', '', $part);
				if (preg_match("/^aspf=/", $part)) $dmarc_aspf = str_replace('aspf=', '', $part);
				if (preg_match("/^rf=/", $part)) $dmarc_rf = str_replace('rf=', '', $part);
				if (preg_match("/^(afrf:iodef|iodef:afrf)$/s", $dmarc_rf)) $dmarc_rf = str_replace(':', ' ', $dmarc_rf);
				if (preg_match("/^pct=/", $part)) $dmarc_pct = str_replace('pct=', '', $part);
				if (preg_match("/^ri=/", $part)) $dmarc_ri = str_replace('ri=', '', $part);
			}
		} 

		//set html-values
		$app->tpl->setVar('domain', $domain_name);

		//create dmarc-policy-list
		$dmarc_policy_value = array( 
			'none' => 'dmarc_policy_none_txt',
			'quarantine' => 'dmarc_policy_quarantine_txt',
			'reject' => 'dmarc_policy_reject_txt',
		);
		$dmarc_policy_list='';
		foreach($dmarc_policy_value as $value => $txt) {
			$selected = @($dmarc_policy == $value)?' selected':'';
			$dmarc_policy_list .= "<option value='$value'$selected>".$app->tform->wordbook[$txt]."</option>\r\n";
		}
		$app->tpl->setVar('dmarc_policy', $dmarc_policy_list);

		if (!empty($dmarc_rua)) $app->tpl->setVar("dmarc_rua", $dmarc_rua);

		if (!empty($dmarc_ruf)) $app->tpl->setVar("dmarc_ruf", $dmarc_ruf);

		//set dmarc-fo-options
		$temp = explode(':', $dmarc_fo);
		if (is_array($temp))
			foreach ($temp as $fo => $value) $app->tpl->setVar("dmarc_fo".$value, 'CHECKED');
		else
			$app->tpl->setVar("dmarc_fo0", 'CHECKED');

		unset($temp);

		//create dmarc-adkim-list
		$dmarc_adkim_value = array( 
			'r' => 'dmarc_adkim_r_txt',
			's' => 'dmarc_adkim_s_txt',
		);
		$dmarc_adkim_list='';
		foreach($dmarc_adkim_value as $value => $txt) {
			$selected = @($dmarc_adkim == $value)?' selected':'';
			$dmarc_adkim_list .= "<option value='$value'$selected>".$app->tform->wordbook[$txt]."</option>\r\n";
		}
		$app->tpl->setVar('dmarc_adkim', $dmarc_adkim_list);

		//create dmarc-aspf-list
		$dmarc_aspf_value = array( 
			'r' => 'dmarc_aspf_r_txt',
			's' => 'dmarc_aspf_s_txt',
		);
		$dmarc_aspf_list='';
		foreach($dmarc_aspf_value as $value => $txt) {
			$selected = @($dmarc_aspf == $value)?' selected':'';
			$dmarc_aspf_list .= "<option value='$value'$selected>".$app->tform->wordbook[$txt]."</option>\r\n";
		}
		$app->tpl->setVar('dmarc_aspf', $dmarc_aspf_list);

		if ( strpos($dmarc_rf, 'afrf') !== false ) $app->tpl->setVar("dmarc_rf_afrf", 'CHECKED');
		if ( strpos($dmarc_rf, 'iodef') !== false ) $app->tpl->setVar("dmarc_rf_iodef", 'CHECKED');

		$app->tpl->setVar("dmarc_pct", $dmarc_pct);

		$app->tpl->setVar("dmarc_ri", $dmarc_ri);

		//create dmarc-sp-list
		$dmarc_sp_value = array( 
			'same' => 'dmarc_sp_same_txt',
			'none' => 'dmarc_sp_none_txt',
			'quarantine' => 'dmarc_sp_quarantine_txt',
			'reject' => 'dmarc_sp_reject_txt',
		);
		$dmarc_sp_list='';
		foreach($dmarc_sp_value as $value => $txt) {
			$selected = @($dmarc_sp == $value)?' selected':'';
			$dmarc_sp_list .= "<option value='$value'$selected>".$app->tform->wordbook[$txt]."</option>\r\n";
		}
		$app->tpl->setVar('dmarc_sp', $dmarc_sp_list);

		parent::onShowEnd();

	}

	function onSubmit() {
		global $app, $conf;

		// Get the parent soa record of the domain
		$soa = $app->db->queryOneRecord("SELECT * FROM dns_soa WHERE id = ? AND ?", $_POST['zone'], $app->tform->getAuthSQL('r'));

		// Check if Domain belongs to user
		if($soa["id"] != $_POST["zone"]) $app->tform->errorMessage .= $app->tform->wordbook["no_zone_perm"];

		// Check the client limits, if user is not the admin
		if($_SESSION["s"]["user"]["typ"] != 'admin') { // if user is not admin
			// Get the limits of the client
			$client_group_id = intval($_SESSION["s"]["user"]["default_group"]);
			$client = $app->db->queryOneRecord("SELECT limit_dns_record FROM sys_group, client WHERE sys_group.client_id = client.client_id and sys_group.groupid = ?", $client_group_id);

			// Check if the user may add another mailbox.
			if($this->id == 0 && $client["limit_dns_record"] >= 0) {
				$tmp = $app->db->queryOneRecord("SELECT count(id) as number FROM dns_rr WHERE sys_groupid = ?", $client_group_id);
				if($tmp["number"] >= $client["limit_dns_record"]) {
					$app->error($app->tform->wordbook["limit_dns_record_txt"]);
				}
			}
		} // end if user is not admin

		$domain_name = rtrim($soa['origin'], '.');
		// DMARC requieres at lest a spf OR dkim-record
		// abort if more than 1 active spf-records (backward-compatibility)
		$sql = "SELECT * FROM dns_rr WHERE name = ? AND type='TXT' AND data like 'v=spf1%' AND active='Y'";
		$temp = $app->db->queryAllRecords($sql, $domain_name.'.');
		if (is_array($temp[1])) {
			if (isset($app->tform->errorMessage )) $app->tform->errorMessage = '<br/>' . $app->tform->errorMessage;
			$app->tform->errorMessage .= $app->tform->wordbook['dmarc_more_spf_txt'].$email;
		}

		$sql = "SELECT *  FROM dns_rr WHERE name LIKE ? AND type='TXT' AND active = 'Y' AND (data LIKE 'v=DKIM1;%' OR data LIKE 'v=spf1%')";
		$temp = $app->db->queryAllRecords($sql, '%._domainkey.'.$domain_name.'.');
		if (empty($temp)) {
			if (isset($app->tform->errorMessage )) $app->tform->errorMessage = '<br/>' . $app->tform->errorMessage;
			$app->tform->errorMessage .= $app->tform->wordbook['dmarc_no_dkim_spf_txt'].$email;
		}
		unset($temp);
		//TODO: should DMARC requiere DKIM and SPF to be valid? This breaks draft-kucherawy-dmarc-base-07 but makes much more sense
/*
		// DMARC requieres at least one active dkim-record...
		$sql = "SELECT * FROM dns_rr WHERE name LIKE ? AND type='TXT' AND data like 'v=DKIM1;%' AND active='Y'";
		$temp = $app->db->queryOneRecord($sql, '%._domainkey.'.$domain_name.'.');
		if (!is_array($temp)) {
			if (isset($app->tform->errorMessage )) $app->tform->errorMessage = '<br/>' . $app->tform->errorMessage;
			$app->tform->errorMessage .= $app->tform->wordbook['dmarc_no_dkim_txt'].$email;
		}
		unset($temp);

		// ... and dkim-signed mails to allow "policy != none"
		$sql = "SELECT * FROM mail_domain WHERE domain = '".$app->db->quote($domain_name)."'";
		$temp = $app->db->queryOneRecord($sql);
		if ($temp['dkim'] != 'y' && $this->dataRecord['dmarc_policy'] != 'none') {
			if (isset($app->tform->errorMessage )) $app->tform->errorMessage = '<br/>' . $app->tform->errorMessage;
			$app->tform->errorMessage .= $app->tform->wordbook['dmarc_policy_error_txt'].$email;
		}
		unset($temp);

		// DMARC requieres an active spf-record
		$sql = "SELECT * FROM dns_rr WHERE name = ? AND type='TXT' AND data like 'v=spf1%' AND active='Y'";
		$temp = $app->db->queryAllRecords($sql, $domain_name.'.');
		// abort if more than 1 active spf-records (backward-compatibility)
		if (is_array($temp[1])) {
			if (isset($app->tform->errorMessage )) $app->tform->errorMessage = '<br/>' . $app->tform->errorMessage;
			$app->tform->errorMessage .= $app->tform->wordbook['dmarc_more_spf_txt'].$email;
		}
		if (empty($temp)) {
			if (isset($app->tform->errorMessage )) $app->tform->errorMessage = '<br/>' . $app->tform->errorMessage;
			$app->tform->errorMessage .= $app->tform->wordbook['dmarc_no_spf_txt'].$email;
		}
		unset($temp);
*/
		//validate dmarc_pct
		$this->dataRecord['dmarc_pct'] = $app->functions->intval($this->dataRecord['dmarc_pct']);
		if ($this->dataRecord['dmarc_pct'] < 0) $this->dataRecord['dmarc_pct'] = 0;
		if ($this->dataRecord['dmarc_pct'] > 100) $this->dataRecord['dmarc_pct'] = 100;
		
		//create dmarc-record
		$dmarc_record[] = 'p='.$this->dataRecord['dmarc_policy'];

		/* TODO: 
		draft-kucherawy-dmarc-base-07 allows multiple rua and ruf-entries
		*/
		$dmarc_rua = trim($this->dataRecord['dmarc_rua']);
		if (!empty($dmarc_rua)) {
			if (!filter_var($dmarc_rua, FILTER_VALIDATE_EMAIL)) {
				if (isset($app->tform->errorMessage )) $app->tform->errorMessage = '<br/>' . $app->tform->errorMessage;
 				$app->tform->errorMessage .= $app->tform->wordbook['dmarc_invalid_email_txt'].$dmarc_rua;
			} else {
				/* TODO: 
				allow an external report-address. this requieres changes in a remote zone.
				*/
				$mail_domain = explode('@', $dmarc_rua);
				if ($mail_domain[1] != $domain_name) {
					if (isset($app->tform->errorMessage )) $app->tform->errorMessage = '<br/>' . $app->tform->errorMessage;
					$app->tform->errorMessage .= $app->tform->wordbook['dmarc_invalid_domain_txt'].$dmarc_ruf.' in '.$dmarc_ruf;
				} else {
					$dmarc_record[] = 'rua=mailto:'.$dmarc_rua;
				}
			}
		}
		unset ($dmarc_rua);
		unset ($mail_domain);

		$dmarc_ruf = trim($this->dataRecord['dmarc_ruf']);
		if (!empty($dmarc_ruf)) {
			if (!filter_var($dmarc_ruf, FILTER_VALIDATE_EMAIL)) {
				if (isset($app->tform->errorMessage )) $app->tform->errorMessage = '<br/>' . $app->tform->errorMessage;
 				$app->tform->errorMessage .= $app->tform->wordbook['dmarc_invalid_email_txt'].$dmarc_ruf;
			} else {
				/* TODO: 
				allow an external report-address. this requieres changes in a remote zone.
				*/
				$mail_domain[1] = explode('@', $dmarc_ruf);
				if ($mail_domain != $domain_name) {
					if (isset($app->tform->errorMessage )) $app->tform->errorMessage = '<br/>' . $app->tform->errorMessage;
 					$app->tform->errorMessage .= $app->tform->wordbook['dmarc_invalid_domain_txt'].$dmarc_ruf.' in '.$dmarc_ruf;
				} else {
					$dmarc_record[] = 'ruf=mailto:'.$dmarc_ruf;
				}
			}
		}
		unset ($dmarc_ruf);
		unset ($mail_domain);	
		
		$fo_rec = '';
		if (isset($this->dataRecord['dmarc_fo0'])) $fo_rec[] = '0';
		if (isset($this->dataRecord['dmarc_fo1'])) $fo_rec[] = '1';
		if (isset($this->dataRecord['dmarc_fod'])) $fo_rec[] = 'd';
		if (isset($this->dataRecord['dmarc_fos'])) $fo_rec[] = 's';
		if (is_array($fo_rec) && !empty($fo_rec)) 
			$dmarc_record[] = 'fo:'.implode(':', $fo_rec);

		if (!empty($this->dataRecord['dmarc_adkim']) && $this->dataRecord['dmarc_adkim'] != 'r' )
			$dmarc_record[] = 'adkim='.$this->dataRecord['dmarc_adkim'];

		if (!empty($this->dataRecord['dmarc_aspf']) && $this->dataRecord['dmarc_aspf'] != 'r' )
			$dmarc_record[] = 'aspf='.$this->dataRecord['dmarc_aspf'];

		if (isset($this->dataRecord['dmarc_rf_afrf']) && isset($this->dataRecord['dmarc_rf_iodef']))
			$dmarc_record[] = 'rf=afrf:iodef';
		else {
			 if (isset($this->dataRecord['dmarc_rf_iodef']))
				$dmarc_record[] = 'rf=iodef';
		}
		unset($fo_rec);

		if (!empty($this->dataRecord['dmarc_pct']) && $this->dataRecord['dmarc_pct'] != 100)
			$dmarc_record[] = 'pct='.$this->dataRecord['dmarc_pct'];

		if (!empty($this->dataRecord['dmarc_ri']) && $this->dataRecord['dmarc_ri'] != '86400')
			$dmarc_record[] = 'ri='.$this->dataRecord['dmarc_ri'];

		if (!empty($this->dataRecord['dmarc_sp']) && $this->dataRecord['dmarc_sp'] != 'same')
			$dmarc_record[] = 'sp='.$this->dataRecord['dmarc_sp'];

		$temp = implode('; ', $dmarc_record);
		if (!empty($temp))
			$this->dataRecord['data'] = 'v=DMARC1; ' . $temp;
		else $app->tform->errorMessage .= $app->tform->wordbook["dmarc_empty_txt"];

		$this->dataRecord['name'] = '_dmarc.' . $soa['origin'];
		if (isset($this->dataRecord['active'])) $this->dataRecord['active'] = 'Y';
		
		// Set the server ID of the rr record to the same server ID as the parent record.
		$this->dataRecord["server_id"] = $soa["server_id"];

		// Update the serial number  and timestamp of the RR record
		$soa = $app->db->queryOneRecord("SELECT serial FROM dns_rr WHERE id = ?", $this->id);
		$this->dataRecord["serial"] = $app->validate_dns->increase_serial($soa["serial"]);
		$this->dataRecord["stamp"] = date('Y-m-d H:i:s');

		// always update an existing entry
		$check=$app->db->queryOneRecord("SELECT * FROM dns_rr WHERE zone = ? AND type = ? AND data LIKE 'v=DMARC1%' AND name = ?", $this->dataRecord['zone'], $this->dataRecord['type'], $this->dataRecord['name']);
		$this->id = $check['id'];
		if (!isset($this->dataRecord['active'])) $this->dataRecord['active'] = 'N';

		parent::onSubmit();
	}

	function onAfterInsert() {
		global $app, $conf;

		//* Set the sys_groupid of the rr record to be the same then the sys_groupid of the soa record
		$soa = $app->db->queryOneRecord("SELECT sys_groupid,serial FROM dns_soa WHERE id = ? AND ?", $app->functions->intval($this->dataRecord["zone"]), $app->tform->getAuthSQL('r'));
		$app->db->datalogUpdate('dns_rr', "sys_groupid = ".$soa['sys_groupid'], 'id', $this->id);

		//* Update the serial number of the SOA record
		$soa_id = $app->functions->intval($_POST["zone"]);
		$serial = $app->validate_dns->increase_serial($soa["serial"]);
		$app->db->datalogUpdate('dns_soa', "serial = $serial", 'id', $soa_id);

	}

	function onAfterUpdate() {
		global $app, $conf;

		//* Update the serial number of the SOA record
		$soa = $app->db->queryOneRecord("SELECT serial FROM dns_soa WHERE id = ? AND ?", $app->functions->intval($this->dataRecord["zone"]), $app->tform->getAuthSQL('r'));
		$soa_id = $app->functions->intval($_POST["zone"]);
		$serial = $app->validate_dns->increase_serial($soa["serial"]);
		$app->db->datalogUpdate('dns_soa', "serial = $serial", 'id', $soa_id);
	}

}

$page = new page_action;
$page->onLoad();

?>