DNS: Difference between revisions

From FlightGear wiki
Jump to navigation Jump to search
(Documentation of DNS usage)
 
 
(23 intermediate revisions by 5 users not shown)
Line 1: Line 1:
== Usage of DNS within FlightGear ==
== Usage of DNS within FlightGear ==


[https://en.wikipedia.org/wiki/Domain_Name_System The Domain Name System] (DNS) is being used within FlightGear to lookup resources providing several services. It's use started with release 2016.2.1 as an experimental feature to resolve the location of the terrasync servers.
The {{wikipedia|Domain Name System}} (DNS) is being used within FlightGear to look up resources providing several services. Its use started with release [[Changelog 2016.2|2016.2.1]] as an experimental feature to resolve the location of the [[TerraSync]] servers.
This page documents the used services in detail.
This page documents the used services in detail.


== FlightGear systems using DNS ==
== FlightGear systems using DNS ==
Currently (as of version 2016.4.0) these systems use DNS for service discovery:
Currently, (as of version 2016.4.0) these systems use DNS for service discovery:
* The terrasync client to find a terrasync server
* The TerraSync client to find a TerraSync server
* The multiplayer client to list multiplayer servers and retrieve information about each server
* The [[Multiplayer|multiplayer]] client to list [[Howto:Set up a multiplayer server|multiplayer servers]] and retrieve information about each server


=== Terrasync ===
=== TerraSync ===
The terrasync client queries [https://en.wikipedia.org/wiki/NAPTR_record NAPTR] records for the dns name terrasync.flightgear.org. As of version 2016.4 the configured entries are
The TerraSync client queries {{Wikipedia|NAPTR record|NAPTR records}} for the DNS name <code>terrasync.flightgear.org</code>From the command line <code>$ dig terrasync.flightgear.org ANY</code>
terrasync.flightgear.org. IN NAPTR 100 100 "U" "ws20" "!^.*$!http://flightgear.sourceforge.net/scenery!" .
  terrasync.flightgear.org. IN NAPTR 100 50 "U" "ws20" "!^.*$!http://fgfs.goneabitbursar.com/terrascenery!" .
terrasync.flightgear.org. IN NAPTR 100 50 "U" "ws20" "!^.*$!http://mpserver16.flightgear.org/scenery!" .


At system start, FlightGear sends a query for the dns name terrasync.flightgear.org. The URL for scenery download is encoded in the regex field between the last two exclamation marks. This string MUST start with !^.*$! and end with !, the regex itself is not interpreted by the terrasync client, only the fixed string is taken.
As of version 2016.4, the configured entries are:
The hostname to query is configurable at system start by setting a property, so is the scenery version number. The default scenery version is "ws20".
* terrasync.flightgear.org. IN NAPTR 100 100 "U" "ws20" "!^.*$!http://flightgear.sourceforge.net/scenery!" .
* terrasync.flightgear.org. IN NAPTR 100 50 "U" "ws20" "!^.*$!http://fgfs.goneabitbursar.com/terrascenery!" .
* terrasync.flightgear.org. IN NAPTR 100 50 "U" "ws20" "!^.*$!http://mpserver16.flightgear.org/scenery!" .


At system start, FlightGear sends a query for the DNS name <code>terrasync.flightgear.org</code>. The URL for scenery download is encoded in the regex field between the last two exclamation marks. This string MUST start with <code>!^.*$!</code> and must end with <code>!</code>, the regex itself is not interpreted by the TerraSync client, only the fixed string is taken.
The DNS to query is currently not configurable at system start by setting a property. The version number can be changed by setting property /sim/terrasync/scenery-version to a value other than the default "ws20".
==== Algorithm to pick a Server ====
* At startup, if TerraSync is enabled and if the property /sim/terrasync/http-server is set to "automatic" (the default), a DNS query for terrasync.flightgear.org is sent and the response filtered for entries with the flag field set to "U".
* All entries that have a "order" value higher than the lowest order are discarded. (currently the sourceforge entry)
* The remaining entries are filtered for those with the lowest preference. (both other entries survive this filter)
* a random entry from the remaining list is picked for the entire session of FlightGear.
This is implemented in <code>SGTerraSync::WorkerThread::run()</code> {{simgear source|simgear/scene/tsync/terrasync.cxx|l=441|t=here}}.
The property /sim/terrasync/http-server can be set to user defined URL pointing to the location of a custom TerraSync server e.g. <code>http://myterrasync.org/custom-scenery</code>.
This will disable the above algorithm.


=== Multiplayer ===
=== Multiplayer ===
The multiplayer client queries [https://en.wikipedia.org/wiki/SRV_record SRV] records for a list of multiplayer servers and [https://en.wikipedia.org/wiki/TXT_record TXT] records on each server for detailed information about the server.
Expanding the use of DNS to multiplayer resulted from a discussion at fsweekend 2016 followed by a discussion on the mailing list. <ref>{{cite web
  |url    =  https://sourceforge.net/p/flightgear/mailman/message/35475777/  
  |title  =  <nowiki>[Flightgear-devel] Proposal for storing the mp server information in DNS instead of a web service </nowiki>
  |author =  <nowiki> Torsten Dreyer </nowiki>
  |date  =  Nov 7th, 2016
  |added  =  Nov 7th, 2016
  |script_version = 0.40
  }}</ref>
 
Multiplayer discovery via DNS is an experimental feature found in FlightGear branch [https://sourceforge.net/p/flightgear/flightgear/ci/next/~/tree/ next]. It will be released with version 2017.1.1
 
The multiplayer client queries {{Wikipedia|SRV record|SRV records}} for a list of multiplayer servers and {{Wikipedia|TXT record|TXT records}} on each server for detailed information about the server.


The SRV record for a multiplayer server looks like this:
The SRV record for a multiplayer server looks like this:
_fgms._udp IN SRV 10 20 5001 mpserver01
<code>_fgms._udp IN SRV 10 20 5001 mpserver01</code>
All entries currently use the same values for priority and weight. The port number for active servers are set to the port number of the running fgms instance. The port number is zero for inactive servers.
All entries currently use the same values for priority and weight. The port numbers for active servers are set to the port number of the running fgms instance (usually 5001). The port number is 0 (zero) for inactive servers.


The TXT record for each referenced multiplayer server looks like this:
The TXT record for each referenced multiplayer server looks like this:
Line 33: Line 55:
decodes to
decodes to
  {"name":"mpserver01","location":"Frankfurt,Germany"}
  {"name":"mpserver01","location":"Frankfurt,Germany"}
== References ==
{{Appendix}}
[[Category:Core development projects]]

Latest revision as of 09:16, 2 March 2019

Usage of DNS within FlightGear

The Domain Name System This is a link to a Wikipedia article (DNS) is being used within FlightGear to look up resources providing several services. Its use started with release 2016.2.1 as an experimental feature to resolve the location of the TerraSync servers. This page documents the used services in detail.

FlightGear systems using DNS

Currently, (as of version 2016.4.0) these systems use DNS for service discovery:

TerraSync

The TerraSync client queries NAPTR records This is a link to a Wikipedia article for the DNS name terrasync.flightgear.org. From the command line $ dig terrasync.flightgear.org ANY

As of version 2016.4, the configured entries are:

At system start, FlightGear sends a query for the DNS name terrasync.flightgear.org. The URL for scenery download is encoded in the regex field between the last two exclamation marks. This string MUST start with !^.*$! and must end with !, the regex itself is not interpreted by the TerraSync client, only the fixed string is taken. The DNS to query is currently not configurable at system start by setting a property. The version number can be changed by setting property /sim/terrasync/scenery-version to a value other than the default "ws20".

Algorithm to pick a Server

  • At startup, if TerraSync is enabled and if the property /sim/terrasync/http-server is set to "automatic" (the default), a DNS query for terrasync.flightgear.org is sent and the response filtered for entries with the flag field set to "U".
  • All entries that have a "order" value higher than the lowest order are discarded. (currently the sourceforge entry)
  • The remaining entries are filtered for those with the lowest preference. (both other entries survive this filter)
  • a random entry from the remaining list is picked for the entire session of FlightGear.

This is implemented in SGTerraSync::WorkerThread::run() here.

The property /sim/terrasync/http-server can be set to user defined URL pointing to the location of a custom TerraSync server e.g. http://myterrasync.org/custom-scenery. This will disable the above algorithm.

Multiplayer

Expanding the use of DNS to multiplayer resulted from a discussion at fsweekend 2016 followed by a discussion on the mailing list. [1]

Multiplayer discovery via DNS is an experimental feature found in FlightGear branch next. It will be released with version 2017.1.1

The multiplayer client queries SRV records This is a link to a Wikipedia article for a list of multiplayer servers and TXT records This is a link to a Wikipedia article on each server for detailed information about the server.

The SRV record for a multiplayer server looks like this: _fgms._udp IN SRV 10 20 5001 mpserver01 All entries currently use the same values for priority and weight. The port numbers for active servers are set to the port number of the running fgms instance (usually 5001). The port number is 0 (zero) for inactive servers.

The TXT record for each referenced multiplayer server looks like this:

mpserver01 IN TXT "flightgear-mpserver=eyJuYW1lIjoibXBzZXJ2ZXIwMSIsImxvY2F0aW9uIjoiRnJhbmtmdXJ0LEdlcm1hbnkifQo="

with the text data used as in RFC 1464 - Using the Domain Name System To Store Arbitrary String Attributes. The attribute name flightgear-mpserver marks this entry as "ours" while it's attribute value is a base64 encoded json string containing additional attributes for the server not available within the SRV record. For the given example, the base64 string of

eyJuYW1lIjoibXBzZXJ2ZXIwMSIsImxvY2F0aW9uIjoiRnJhbmtmdXJ0LEdlcm1hbnkifQo= 

decodes to

{"name":"mpserver01","location":"Frankfurt,Germany"}

References

References