コード例 #1
1
		/**
		 * Constructor
		 *
		 * @param string $name
		 * @param string $rname
		 * @param integer $ttl
		 * @param string $class
		 */
		function __construct($name, $value, $ttl = false, $class = "IN")
		{
			parent::__construct();
			
			$this->Type = "TXT";
			
			// Name
			if (($this->Validator->MatchesPattern($name, self::PAT_NON_FDQN) || 
				$name == "@" || 
				$name === "" || 
				$this->Validator->IsDomain($name)) && !$this->Validator->IsIPAddress(rtrim($name, "."))
			   )
				$this->Name = $name;
			else 
			{
				self::RaiseWarning("'{$name}' is not a valid name for TXT record");
				$this->Error = true;
			}
				
				
			if (strlen($value) > 255)
			{
                self::RaiseWarning("TXT record value cannot be longer than 65536 bytes");
                $this->Error = true;
			}
			else 
                $this->Value = $value;
				
			$this->TTL = $ttl;
			
			$this->Class = $class;
		}
コード例 #2
0
		/**
		 * Constructor
		 *
		 * @param string $name
		 * @param string $rname
		 * @param integer $ttl
		 * @param string $class
		 */
		function __construct($name, $cname, $ttl = false, $class = "IN")
		{
			parent::__construct();
			
			$this->Type = "CNAME";
			
			// Name
			if (($this->Validator->MatchesPattern($name, self::PAT_NON_FDQN) ||
				$this->Validator->IsDomain($name)) && !$this->Validator->IsIPAddress(rtrim($name, ".")) || $name == "*")
				$this->Name = $name;
			else 
			{
				self::RaiseWarning("'{$name}' is not a valid name for CNAME record");
				$this->Error = true;
			}
			
			// cname
			if (!$this->Validator->IsDomain($cname))
			{
				if ($this->Validator->MatchesPattern($cname, self::PAT_NON_FDQN))
					$this->Cname = $cname;
				else 
				{
					self::RaiseWarning("'{$cname}' is not a valid cname for CNAME record");
					$this->Error = true;
				}
			}
			else 
				$this->Cname = $this->Dottify($cname);
				
			$this->TTL = $ttl;
			
			$this->Class = $class;
		}
コード例 #3
0
 /**
  * Constructor
  *
  * @param string $name
  * @param string $rname
  * @param integer $ttl
  * @param string $class
  */
 function __construct($name, $rname, $ttl = false, $class = "IN")
 {
     parent::__construct();
     $this->Type = "NS";
     // Name
     if (!$this->Validator->IsDomain($name)) {
         if ($name == "@" || $name === "") {
             $this->Name = $name;
         } else {
             self::RaiseWarning("'{$name}' is not a valid name for NS record");
             $this->Error = true;
         }
     } elseif (!$this->Validator->IsIPAddress(rtrim($name, "."))) {
         $this->Name = $this->Dottify($name);
     } else {
         self::RaiseWarning("'{$name}' is not a valid name for NS record");
         $this->Error = true;
     }
     if (!$this->Validator->IsDomain($rname)) {
         if ($this->Validator->MatchesPattern($rname, self::PAT_NON_FDQN) || $this->Validator->IsIPAddress($rname)) {
             $this->Rname = $rname;
         } else {
             self::RaiseWarning("'{$rname}' is not a valid value for NS record");
             $this->Error = true;
         }
     } else {
         $this->Rname = $rname;
     }
     $this->TTL = $ttl;
     $this->Class = $class;
 }
コード例 #4
0
		/**
		 * Constructor
		 *
		 * @param string $name
		 * @param string $ip
		 * @param integer $ttl
		 * @param string $class
		 */
		function __construct($name, $ip, $ttl = false, $class = "IN")
		{
			parent::__construct();
			
			$this->Type = "A";
			
			// Name
			if (($this->Validator->MatchesPattern($name, self::PAT_NON_FDQN) || 
				$name == "@" || 
				$name === "" || 
				$name == "*" ||
				$this->Validator->IsDomain($name)) && !$this->Validator->IsIPAddress(rtrim($name, "."))
			   )
				$this->Name = $name;
			else 
			{
				self::RaiseWarning("'{$name}' is not a valid name for A record");
				$this->Error = true;
			}
				
				
			if (!$this->Validator->IsIPAddress($ip))
			{
				self::RaiseWarning("'{$ip}' is not a valid ip address for A record");
				$this->Error = true;	
			}
			else 
				$this->IP = $ip;
				
			$this->TTL = $ttl;
			
			$this->Class = $class;

		}
コード例 #5
0
		/**
		 * Constructor
		 *
		 * @param string $name
		 * @param string $rname
		 * @param integer $ttl
		 * @param string $class
		 */
		function __construct($name, $rname, $ttl = false, $class = "IN")
		{
			parent::__construct();
			
			$this->Type = "PTR";
			
			$name = (int)$name;
			
			// Name
			if ($name > 0 && $name < 256)
				$this->Name = $name;
			else 
			{
				self::RaiseWarning("'{$name}' is not a valid name for PTR record");
				$this->Error = true;
			}
			
			$name = $this->UnDottify($rname);
			
			if (!$this->Validator->IsDomain($rname))
			{
				self::RaiseWarning("'{$rname}' is not a valid value for PTR record");
				$this->Error = true;
			}
			else 
				$this->Rname = $this->Dottify($rname);
				
			$this->TTL = $ttl;
			
			$this->Class = $class;
		}
コード例 #6
0
 /**
  * Constructor
  *
  * @param string $name
  * @param string $rname
  * @param integer $ttl
  * @param string $class
  */
 function __construct($name, $target, $ttl = false, $priority = 0, $weight = 0, $port = 0, $class = "IN")
 {
     parent::__construct();
     $this->Type = "SRV";
     $chunks = explode(".", $name);
     $service = trim(array_shift($chunks), "_");
     $proto = trim(array_shift($chunks), "_");
     $nname = implode(".", $chunks);
     // Name
     if (($this->Validator->MatchesPattern($nname, self::PAT_NON_FDQN) || $nname === "" || $this->Validator->IsDomain($nname)) && !$this->Validator->IsIPAddress(rtrim($nname, "."))) {
         //
     } else {
         self::RaiseWarning("'{$name}' is not a valid name for SRV record");
         $this->Error = true;
     }
     if (!preg_match("/^[A-Za-z-]+\$/", $service) && $service != '*') {
         self::RaiseWarning("'{$service}' is not a valid service name for SRV record");
         $this->Error = true;
     }
     if ($proto != 'udp' && $proto != 'tcp') {
         self::RaiseWarning("'{$proto}' is not a valid protocol name for SRV record");
         $this->Error = true;
     }
     if (!$this->Error) {
         $this->Name = $name;
     }
     $priority = (int) $priority;
     $weight = (int) $weight;
     $port = (int) $port;
     if ($priority < 0 || $priority > 65535) {
         self::RaiseWarning("Allowed range for SRV record priority is 0 - 65535");
         $this->Error = true;
     } else {
         $this->Priority = $priority;
     }
     if ($weight < 0 || $weight > 65535) {
         self::RaiseWarning("Allowed range for SRV record weight is 0 - 65535");
         $this->Error = true;
     } else {
         $this->Weight = $weight;
     }
     if ($port < 0 || $port > 65535) {
         self::RaiseWarning("Allowed range for SRV record port is 0 - 65535");
         $this->Error = true;
     } else {
         $this->Port = $port;
     }
     if (($this->Validator->MatchesPattern($target, self::PAT_NON_FDQN) || $this->Validator->IsDomain($target)) && !$this->Validator->IsIPAddress(rtrim($target, "."))) {
         $this->Target = $target;
     } else {
         self::RaiseWarning("'{$target}' is not a valid target for SRV record");
         $this->Error = true;
     }
     $this->TTL = $ttl;
     $this->Class = $class;
 }
コード例 #7
0
		/**
		 * Constructor
		 *
		 * @param string $name
		 * @param string $rname
		 * @param integer $pref
		 * @param integer $ttl
		 * @param string $class
		 */
		function __construct($name, $rname, $ttl = false, $pref = 10, $class = "IN")
		{
			parent::__construct();
			
			$this->Type = "MX";
			
			// Name
			if (($this->Validator->MatchesPattern($name, self::PAT_NON_FDQN) || 
				$name == "@" || 
				$name === "" || 
				$this->Validator->IsDomain($name)) && !$this->Validator->IsIPAddress(rtrim($name, "."))
			   )
				$this->Name = $name;
			else 
			{
				self::RaiseWarning("'{$name}' is not a valid name for MX record");
				$this->Error = true;
			}
				
				
			if (($this->Validator->MatchesPattern($rname, self::PAT_NON_FDQN) || 
				$this->Validator->IsDomain($rname)) && !$this->Validator->IsIPAddress(rtrim($rname, "."))
			   )
				$this->Rname = $rname;
			else 
			{
				self::RaiseWarning("'{$rname}' is not a valid value for MX record");
				$this->Error = true;
			}
			
			$this->Pref = $pref;
			
			$this->TTL = $ttl;
			
			$this->Class = $class;
		}
コード例 #8
0
 /**
  * Constructor
  * 
  * 
  * @param $name	The 'root name' of the zone. Most commonly written as @ or Origin Value. 
  * 
  * @param $ttl		Standard TTL values apply (range 0 to 2147483647 clarified by RFC 2181). 
  * 				The data contained in the SOA record applies TTL values to the slave DNS - see below. 
  * 				For more information about TTL values. 
  * 
  * @param $class	Defines the class of record and normally takes the value IN = Internet. 
  * 				It may also take the value HS = Hesiod and CH = Chaos both historic MIT protocols. 
  * 
  * @param $nameserver	A name server that will respond authoritateively for the domain and called the Primary Master 
  * 				in the context of dynamic DNS. 
  * 				If DDNS is not used this may be any suitable name server either in the zone file or in an external or foreign zone. 
  * 				This is most commonly written as a Fully-qualified Domain Name (FQDN and ends with a dot). 
  * 				If the record points to an EXTERNAL server (not defined in this zone) it MUST end with a '.' (dot) e.g. ns1.example.net. 
  * 				If the name server is defined in this domain (in this zone file) it can be written as ns1 (without the dot) which will be expanded to include the $ORIGIN. 
  * 				In the jargon this field is called MNAME field which is why we called it name-server. 
  * 
  * @param $email	Email address of the person responsible for this zone. 
  * 				In the jargon this is called the RNAME field which is why we called it email. 
  * 				A suitable admin but more commonly the technical contact for the domain. 
  * 				By convention (in RFC 2412) it is suggested that the reserved mailbox hostmaster 
  * 				be used for this purpose but any sensible and stable email address will work. 
  * 				NOTE: Format is mailbox-name.domain.com e.g. hostmaster.example.com (not the more normal @ sign 
  * 				since it has other uses in the zone file) but mail is sent to hostmaster@example.com. 
  * 				Most commonly ending with a '.' (dot) but if the email address is in this domain you can just 
  * 				use hostmaster (see also example below). when to use the dot. 
  * 
  * @param $serial	Serial number Unsigned 32 bit value in range 1 to 4294967295 with a maximum increment of 2147483647. 
  * 				In BIND implementations this is defined to be a 10 digit field. 
  * 				This value MUST change when any resource record in the zone file is updated. 
  * 				The convention is to use a date based value to simplify this task - the most popular being 
  * 				yyyymmddss where yyyy = year, mm = month and dd = day ss = a sequence number in case you 
  * 				update it more than once in the day! 
  * 				Using this date format means that the value 2005021002 means the last 
  * 				update was on the 10th Febrary 2005 and it was the third update that day. 
  * 				The date format is just a convention not a requirement so BIND will provide no validation of the field. 
  * 				It is easy to make mistakes and get serial numbers out of sequence. Fix Serial Numbers. 
  * 				Note: the arithmetic used by the serial number is defined in RFC 1982. 
  * 
  * @param $refresh	Signed 32 bit time value in seconds. 
  * 				Indicates the time when the slave will try to refresh the zone from the master. 
  * 				RFC 1912 recommends 1200 to 43200 seconds, low (1200) if the data is volatile or 43200 (12 hours) 
  * 				if it's not. If you are using NOTIFY you can set for much higher values e.g. 
  * 				1 or more days > 86400. BIND Time format. 
  * @param $retry	Signed 32 bit value in seconds. 
  * 				It defines the time between retries if the slave (secondary) fails to contact the master 
  * 				when refresh (above) has expired. 
  * 				Typical values would be 180 (3 minutes) to 900 (15 minutes) or higher. 
  * 
  * @param $expiry	Signed 32 bit value in seconds. 
  * 				Indicates when the zone data is no longer authoritative. 
  * 				Applies to Slaves or Secondaries servers only. 
  * 				BIND9 slaves stop responding to queries for the zone when this time has expired and no 
  * 				contact has been made with the master. 
  * 				Thus when the ref values expires the slave will attempt to read the SOA record for the zone - 
  * 				and request a zone transfer AXFR/IXFR if the sn has changed. 
  * 				If contact is made the expiry and refresh values are reset and tyhe cycle starts again. 
  * 				If the slave fails to contact the master it will retry every retry period but continue to 
  * 				supply authoritative data for the zone until the expiry value is reached at which point 
  * 				it will stop answering queries for the domain. 
  * 				RFC 1912 recommends 1209600 to 2419200 seconds (2-4 weeks) to allow for major 
  * 				outages of the master. BIND Time format. 
  * 
  * @param $min		Minimum Signed 32 bit value in seconds. 
  * 				RFC 2308 (implemented by BIND 9) redefined this value to be the negative caching time - 
  * 				the time a NAME ERROR = NXDOMAIN record is cached. 
  * 				The maximum value allowed by BIND 9 for this parameter is 3 hours (10800 seconds). 
  * 				This value was (in BIND 4 and 8) used by any RR from the zone that did not specify an 
  * 				explicit TTL i.e. the zone default TTL. 
  * 				BIND 9 uses the $TTL directive as the zone default TTL 
  * 				(and which was also standarized in RFC 2308). You may find older documentation or zone 
  * 				file configurations which reflect the old usage (there there are still a lot of BIND 4 
  * 				sites operational).
  * 
  * @return bool  True on success, false failure.
  * @see http://www.zytrax.com/books/dns/ch8/soa.html
  */
 public function __construct($name, $nameserver, $email, $ttl = false, $serial = false, $refresh = false, $retry = false, $expire = false, $minimum = false, $class = "IN")
 {
     parent::__construct();
     $this->Template = self::DEFAULT_TEMPLATE;
     // Defaults
     if (!$refresh) {
         $refresh = self::DEFAULT_REFRESH;
     }
     if (!$retry) {
         $retry = self::DEFAULT_RETRY;
     }
     if (!$expire) {
         $expire = self::DEFAULT_EXPIRY;
     }
     if (!$minimum) {
         $minimum = self::DEFAULT_MINIMUM;
     }
     if (!$serial) {
         $serial = date("Ymd") . "01";
     }
     // Email
     $this->Email = str_replace('@', '.', $email);
     $this->Email = trim($this->Email, '.') . '.';
     // Name
     if (!$this->Validator->IsDomain($name)) {
         self::RaiseWarning("Zone name '{$name}' is not a valid domain name");
         $this->Error = true;
     } else {
         $this->Name = $this->Dottify($name);
     }
     // Nameserver
     if (!$this->Validator->IsDomain($nameserver)) {
         self::RaiseWarning("Zone nameserver '{$nameserver}' is not a valid domain name");
         $this->Error = true;
     } else {
         $this->Nameserver = $this->Dottify($nameserver);
     }
     // Class
     $this->Class = $class;
     // TTL
     $this->TTL = $ttl;
     // Serial
     $this->Serial = $serial;
     // Refresh
     $this->Refresh = $refresh;
     // Retry
     $this->Retry = $retry;
     // Expire
     $this->Expire = $expire;
     // Minimum
     $this->Minimum = $minimum;
 }
コード例 #9
0
ファイル: common.php プロジェクト: imdaqian/phpcrawler
 function host_to_ip($host)
 {
     $redis = init_redis();
     $key = 'dnscachehost_to_ip';
     $ips = array();
     if (!($ips = $redis->hget($key, md5($host)))) {
         Loader::load('lib.dns.DNSRecord');
         $records = DNSRecord::get_records($host);
         if ($records) {
             $ips = serialize(array_column($records, 'ip'));
         }
     }
     if ($ips) {
         $redis->hset($key, md5($host), $ips);
         $ips = unserialize($ips);
         return $ips[rand(0, intval(count($ips) - 1))];
     }
 }