dir-spec.txt 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601
  1. $Id$
  2. Tor directory protocol for 0.1.1.x series
  3. 0. Scope and preliminaries
  4. This document should eventually be merged to replace and supplement the
  5. existing notes on directories in tor-spec.txt.
  6. This is not a finalized version; what we actually wind up implementing
  7. may be different from the system described here.
  8. 0.1. Goals
  9. There are several problems with the way Tor handles directory information
  10. in version 0.1.0.x and earlier. Here are the problems we try to fix with
  11. this new design, already partially implemented in 0.1.1.x:
  12. 1. Directories are very large and use up a lot of bandwidth: clients
  13. download descriptors for all router several times an hour.
  14. 2. Every directory authority is a trust bottleneck: if a single
  15. directory authority lies, it can make clients believe for a time an
  16. arbitrarily distorted view of the Tor network.
  17. 3. Our current "verified server" system is kind of nonsensical.
  18. 4. Getting more directory authorities adds more points of failure and
  19. worsens possible partitioning attacks.
  20. There are two problems that remain unaddressed by this design.
  21. 5. Requiring every client to know about every router won't scale.
  22. 6. Requiring every directory cache to know every router won't scale.
  23. We attempt to fix 1-4 here, and to build a solution that will work when we
  24. figure out an answer for 5. We haven't thought at all about what to do
  25. about 6.
  26. 1. Outline
  27. There is a small set (say, around 10) of semi-trusted directory
  28. authorities. A default list of authorities is shipped with the Tor
  29. software. Users can change this list, but are encouraged not to do so, in
  30. order to avoid partitioning attacks.
  31. Routers periodically upload signed "descriptors" to the directory
  32. authorities describing their keys, capabilities, and other information.
  33. Routers may act as directory mirrors (also called "caches"), to reduce
  34. load on the directory authorities. They announce this in their
  35. descriptors.
  36. Each directory authority periodically generates and signs a compact
  37. "network status" document that lists that authority's view of the current
  38. descriptors and status for known routers, but which does not include the
  39. descriptors themselves.
  40. Directory mirrors download, cache, and re-serve network-status documents
  41. to clients.
  42. Clients, directory mirrors, and directory authorities all use
  43. network-status documents to find out when their list of routers is
  44. out-of-date. If it is, they download any missing router descriptors.
  45. Clients download missing descriptors from mirrors; mirrors and authorities
  46. download from authorities. Descriptors are downloaded by the hash of the
  47. descriptor, not by the server's identity key: this prevents servers from
  48. attacking clients by giving them descriptors nobody else uses.
  49. All directory information is uploaded and downloaded with HTTP.
  50. Coordination among directory authorities is done client-side: clients
  51. compute a vote-like algorithm among the network-status documents they
  52. have, and base their decisions on the result.
  53. 1.1. What's different from 0.1.0.x?
  54. Clients used to download a signed concatenated set of router descriptors
  55. (called a "directory") from directory mirrors, regardless of which
  56. descriptors had changed.
  57. Between downloading directories, clients would download "network-status"
  58. documents that would list which servers were supposed to running.
  59. Clients would always believe the most recently published network-status
  60. document they were served.
  61. Routers used to upload fresh descriptors all the time, whether their keys
  62. and other information had changed or not.
  63. 2. Router operation
  64. The router descriptor format is unchanged from tor-spec.txt.
  65. ORs SHOULD generate a new router descriptor whenever any of the
  66. following events have occurred:
  67. - A period of time (18 hrs by default) has passed since the last
  68. time a descriptor was generated.
  69. - A descriptor field other than bandwidth or uptime has changed.
  70. - Bandwidth has changed by more than +/- 50% from the last time a
  71. descriptor was generated, and at least a given interval of time
  72. (20 mins by default) has passed since then.
  73. - Its uptime has been reset (by restarting).
  74. After generating a descriptor, ORs upload it to every directory
  75. authority they know, by posting it to the URL
  76. http://<hostname:port>/tor/
  77. 3. Network status format
  78. Directory authorities generate, sign, and compress network-status
  79. documents. Directory servers SHOULD generate a fresh network-status
  80. document when the contents of such a document would be different from the
  81. last one generated, and some time (at least one second, possibly longer)
  82. has passed since the last one was generated.
  83. The network status document contains a preamble, a set of router status
  84. entries, and a signature, in that order.
  85. We use the same meta-format as used for directories and router descriptors
  86. in "tor-spec.txt". Implementations MAY insert blank lines
  87. for clarity between sections; these blank lines are ignored.
  88. Implementations MUST NOT depend on blank lines in any particular location.
  89. As used here, "whitespace" is a sequence of 1 or more tab or space
  90. characters.
  91. The preamble contains:
  92. "network-status-version" -- A document format version. For this
  93. specification, the version is "2".
  94. "dir-source" -- The authority's hostname, current IP address, and
  95. directory port, all separated by whitespace.
  96. "fingerprint" -- A base16-encoded hash of the signing key's
  97. fingerprint, with no additional spaces added.
  98. "contact" -- An arbitrary string describing how to contact the
  99. directory server's administrator. Administrators should include at
  100. least an email address and a PGP fingerprint.
  101. "dir-signing-key" -- The directory server's public signing key.
  102. "client-versions" -- A comma-separated list of recommended client
  103. versions.
  104. "server-versions" -- A comma-separated list of recommended server
  105. versions.
  106. "published" -- The publication time for this network-status object.
  107. "dir-options" -- A set of flags, in any order, separated by whitespace:
  108. "Names" if this directory authority performs name bindings.
  109. "Versions" if this directory authority recommends software versions.
  110. The dir-options entry is optional. The "-versions" entries are required if
  111. the "Versions" flag is present. The other entries are required and must
  112. appear exactly once. The "network-status-version" entry must appear first;
  113. the others may appear in any order. Implementations MUST ignore
  114. additional arguments to the items above, and MUST ignore unrecognized
  115. flags.
  116. For each router, the router entry contains: (This format is designed for
  117. conciseness.)
  118. "r" -- followed by the following elements, in order, separated by
  119. whitespace:
  120. - The OR's nickname,
  121. - A hash of its identity key, encoded in base64, with trailing =
  122. signs removed.
  123. - A hash of its most recent descriptor, encoded in base64, with
  124. trailing = signs removed. (The hash is calculated as for
  125. computing the signature of a descriptor.)
  126. - The publication time of its most recent descriptor, in the form
  127. YYYY-MM-DD HH:MM:SS, in GMT.
  128. - An IP address
  129. - An OR port
  130. - A directory port (or "0" for none")
  131. "s" -- A series of whitespace-separated status flags, in any order:
  132. "Authority" if the router is a directory authority.
  133. "Exit" if the router is useful for building general-purpose exit
  134. circuits.
  135. "Fast" if the router is suitable for high-bandwidth circuits.
  136. "Guard" if the router is suitable for use as an entry guard.
  137. (Currently, this means 'fast' and 'stable'.)
  138. "Named" if the router's identity-nickname mapping is canonical,
  139. and this authority binds names.
  140. "Stable" if the router is suitable for long-lived circuits.
  141. "Running" if the router is currently usable.
  142. "Valid" if the router has been 'validated'.
  143. "V2Dir" if the router implements this protocol.
  144. The "r" entry for each router must appear first and is required. The
  145. 's" entry is optional. Unrecognized flags and extra elements on the
  146. "r" line must be ignored.
  147. The signature section contains:
  148. "directory-signature". A signature of the rest of the document
  149. (the document up until the signature, including the line
  150. "directory-signature <nick>\n") using the directory authority's
  151. signing key.
  152. We compress the network status list with zlib before transmitting it.
  153. 3.1. Establishing server status
  154. (This section describes how directory authorities choose which status
  155. flags to apply to routers, as of Tor 0.1.1.18-rc. Later directory
  156. authorities MAY do things differently, so long as clients keep working
  157. well. Clients MUST NOT depend on the exact behaviors in this section.)
  158. "Valid" -- a router is 'Valid' if it seems to have been running well for a
  159. while, and is running a version of Tor not known to be broken, and the
  160. directory authority has not blacklisted it as suspicious.
  161. "Named" -- Directory authority administrators may decide to support name
  162. binding. If they do, then they must maintain a file of
  163. nickname-to-identity-key mappings, and try to keep this file consistent
  164. with other directory authorities. If they don't, they act as clients, and
  165. report bindings made by other directory authorities (name X is bound to
  166. identity Y if at least one binding directory lists it, and no directory
  167. binds X to some other Y'.) A router is called 'Named' if the router
  168. believes the given name should be bound to the given key.
  169. "Running" -- A router is 'Running' if the authority managed to connect to
  170. it successfully within the last 30 minutes.
  171. "Stable" -- A router is 'Stable' if its uptime is above median for known
  172. running, valid routers, and it's running a version of Tor not known to
  173. drop circuits stupidly. (0.1.1.10-alpha throught 0.1.1.16-rc are stupid
  174. this way.)
  175. "Fast" -- A router is 'Fast' if its bandwidth is in the top 7/8ths for
  176. known running, valid routers.
  177. "Guard" -- A router is a possible 'Guard' if it is 'Stable' and its
  178. bandwidth is above median for known running, valid routers.
  179. "Authority" -- A router is called an 'Authority' if the authority
  180. generating the network-status document believes it is an authority.
  181. "V2Dir" -- A router supports the v2 directory protocol if it has an open
  182. directory port, and it is running a version of the directory protocol that
  183. supports the functionality clients need. (Currently, this is
  184. 0.1.1.9-alpha or later.)
  185. Directory server administrators may label some servers or IPs as
  186. blacklisted, and elect not to include them in their network-status lists.
  187. Thus, the network-status list includes all non-blacklisted,
  188. non-expired, non-superseded descriptors for ORs that the directory has
  189. observed at least once to be running.
  190. 4. Directory server operation
  191. All directory authorities and directory mirrors ("directory servers")
  192. implement this section, except as noted.
  193. 4.1. Accepting uploads (authorities only)
  194. When a router posts a signed descriptor to a directory authority, the
  195. authority first checks whether it is well-formed and correctly
  196. self-signed. If it is, the authority next verifies that the nickname
  197. question is already assigned to a router with a different public key.
  198. Finally, the authority MAY check that the router is not blacklisted
  199. because of its key, IP, or another reason.
  200. If the descriptor passes these tests, and the authority does not already
  201. have a descriptor for a router with this public key, it accepts the
  202. descriptor and remembers it.
  203. If the authority _does_ have a descriptor with the same public key, the
  204. newly uploaded descriptor is remembered if its publication time is more
  205. recent than the most recent old descriptor for that router, and either:
  206. - There are non-cosmetic differences between the old descriptor and the
  207. new one.
  208. - Enough time has passed between the descriptors' publication times.
  209. (Currently, 12 hours.)
  210. Differences between router descriptors are "non-cosmetic" if they would be
  211. sufficient to force an upload as described in section 2 above.
  212. Note that the "cosmetic difference" test only applies to uploaded
  213. descriptors, not to descriptors that the authority downloads from other
  214. authorities.
  215. 4.2. Downloading network-status documents (authorities and caches)
  216. All directory servers (authorities and mirrors) try to keep a fresh
  217. set of network-status documents from every authority. To do so,
  218. every 5 minutes, each authority asks every other authority for its
  219. most recent network-status document. Every 15 minutes, each mirror
  220. picks a random authority and asks it for the most recent network-status
  221. documents for all the authorities the authority knows about (including
  222. the chosen authority itself).
  223. Directory servers and mirrors remember and serve the most recent
  224. network-status document they have from each authority. Other
  225. network-status documents don't need to be stored. If the most recent
  226. network-status document is over 10 days old, it is discarded anyway.
  227. Mirrors SHOULD store and serve network-status documents from authorities
  228. they don't recognize, but SHOULD NOT use such documents for any other
  229. purpose. Mirrors SHOULD discard network-status documents older than 48
  230. hours.
  231. 4.3. Downloading and storing router descriptors (authorities and caches)
  232. Periodically (currently, every 10 seconds), directory servers check
  233. whether there are any specific descriptors (as identified by descriptor
  234. hash in a network-status document) that they do not have and that they
  235. are not currently trying to download.
  236. If so, the directory server launches requests to the authorities for these
  237. descriptors, such that each authority is only asked for descriptors listed
  238. in its most recent network-status. When more than one authority lists the
  239. descriptor, we choose which to ask at random.
  240. If one of these downloads fails, we do not try to download that descriptor
  241. from the authority that failed to serve it again unless we receive a newer
  242. network-status from that authority that lists the same descriptor.
  243. Directory servers must potentially cache multiple descriptors for each
  244. router. Servers must not discard any descriptor listed by any current
  245. network-status document from any authority. If there is enough space to
  246. store additional descriptors, servers SHOULD try to hold those which
  247. clients are likely download the most. (Currently, this is judged based on
  248. the interval for which each descriptor seemed newest.)
  249. Authorities SHOULD NOT download descriptors for routers that they would
  250. immediately reject for reasons listed in 3.1.
  251. 4.4. HTTP URLs
  252. "Fingerprints" in these URLs are base-16-encoded SHA1 hashes.
  253. The authoritative network-status published by a host should be available at:
  254. http://<hostname>/tor/status/authority.z
  255. The network-status published by a host with fingerprint
  256. <F> should be available at:
  257. http://<hostname>/tor/status/fp/<F>.z
  258. The network-status documents published by hosts with fingerprints
  259. <F1>,<F2>,<F3> should be available at:
  260. http://<hostname>/tor/status/fp/<F1>+<F2>+<F3>.z
  261. The most recent network-status documents from all known authorities,
  262. concatenated, should be available at:
  263. http://<hostname>/tor/status/all.z
  264. The most recent descriptor for a server whose identity key has a
  265. fingerprint of <F> should be available at:
  266. http://<hostname>/tor/server/fp/<F>.z
  267. The most recent descriptors for servers with identity fingerprints
  268. <F1>,<F2>,<F3> should be available at:
  269. http://<hostname>/tor/server/fp/<F1>+<F2>+<F3>.z
  270. (NOTE: Implementations SHOULD NOT download descriptors by identity key
  271. fingerprint. This allows a corrupted server (in collusion with a cache) to
  272. provide a unique descriptor to a client, and thereby partition that client
  273. from the rest of the network.)
  274. The server descriptor with (descriptor) digest <D> (in hex) should be
  275. available at:
  276. http://<hostname>/tor/server/d/<D>.z
  277. The most recent descriptors with digests <D1>,<D2>,<D3> should be
  278. available at:
  279. http://<hostname>/tor/server/d/<D1>+<D2>+<D3>.z
  280. The most recent descriptor for this server should be at:
  281. http://<hostname>/tor/server/authority.z
  282. [Nothing in the Tor protocol uses this resource yet, but it is useful
  283. for debugging purposes. Also, the official Tor implementations
  284. (starting at 0.1.1.x) use this resource to test whether a server's
  285. own DirPort is reachable.]
  286. A concatenated set of the most recent descriptors for all known servers
  287. should be available at:
  288. http://<hostname>/tor/server/all.z
  289. For debugging, directories SHOULD expose non-compressed objects at URLs like
  290. the above, but without the final ".z".
  291. Clients MUST handle compressed concatenated information in two forms:
  292. - A concatenated list of zlib-compressed objects.
  293. - A zlib-compressed concatenated list of objects.
  294. Directory servers MAY generate either format: the former requires less
  295. CPU, but the latter requires less bandwidth.
  296. Clients SHOULD use upper case letters (A-F) when base16-encoding
  297. fingerprints. Servers MUST accept both upper and lower case fingerprints
  298. in requests.
  299. 5. Client operation: downloading information
  300. Every Tor that is not a directory server (that is, those that do
  301. not have a DirPort set) implements this section.
  302. 5.1. Downloading network-status documents
  303. Each client maintains an ordered list of directory authorities.
  304. Insofar as possible, clients SHOULD all use the same ordered list.
  305. For each network-status document a client has, it keeps track of its
  306. publication time *and* the time when the client retrieved it. Clients
  307. consider a network-status document "live" if it was published within the
  308. last 24 hours.
  309. Clients try to have a live network-status document hours from *every*
  310. authority, and try to periodically get new network-status documents from
  311. each authority in rotation as follows:
  312. If a client is missing a live network-status document for any
  313. authority, it tries to fetch it from a directory cache. On failure,
  314. the client waits briefly, then tries that network-status document
  315. again from another cache. The client does not build circuits until it
  316. has live network-status documents from more than half the authorities
  317. it trusts, and it has descriptors for more than 1/4 of the routers
  318. that it believes are running.
  319. If the most recently _retrieved_ network-status document is over 30
  320. minutes old, the client attempts to download a network-status document.
  321. When choosing which documents to download, clients treat their list of
  322. directory authorities as a circular ring, and begin with the authority
  323. appearing immediately after the authority for their most recently
  324. retrieved network-status document. If this attempt fails, the client
  325. retries at other caches several times, before moving on to the next
  326. network-status document in sequence.
  327. Clients discard all network-status documents over 24 hours old.
  328. If enough mirrors (currently 4) claim not to have a given network status,
  329. we stop trying to download that authority's network-status, until we
  330. download a new network-status that makes us believe that the authority in
  331. question is running. Clients should wait a little longer after each
  332. failure.
  333. Clients SHOULD try to batch as many network-status requests as possible
  334. into each HTTP GET.
  335. (Note: clients can and should pick caches based on the network-status
  336. information they have: once they have first fetched network-status info
  337. from an authority, they should not need to go to the authority directly
  338. again.)
  339. 5.2. Downloading router descriptors
  340. Clients try to have the best descriptor for each router. A descriptor is
  341. "best" if:
  342. * It is the most recently published descriptor listed for that router
  343. by at least two network-status documents.
  344. OR,
  345. * No descriptor for that router is listed by two or more
  346. network-status documents, and it is the most recently published
  347. descriptor listed by any network-status document.
  348. Periodically (currently every 10 seconds) clients check whether there are
  349. any "downloadable" descriptors. A descriptor is downloadable if:
  350. - It is the "best" descriptor for some router.
  351. - The descriptor was published at least 10 minutes in the past.
  352. (This prevents clients from trying to fetch descriptors that the
  353. mirrors have probably not yet retrieved and cached.)
  354. - The client does not currently have it.
  355. - The client is not currently trying to download it.
  356. - The client would not discard it immediately upon receiving it.
  357. - The client thinks it is running and valid (see 6.1 below).
  358. If at least 16 known routers have downloadable descriptors, or if
  359. enough time (currently 10 minutes) has passed since the last time the
  360. client tried to download descriptors, it launches requests for all
  361. downloadable descriptors, as described in 5.3 below.
  362. When a descriptor download fails, the client notes it, and does not
  363. consider the descriptor downloadable again until a certain amount of time
  364. has passed. (Currently 0 seconds for the first failure, 60 seconds for the
  365. second, 5 minutes for the third, 10 minutes for the fourth, and 1 day
  366. thereafter.) Periodically (currently once an hour) clients reset the
  367. failure count.
  368. No descriptors are downloaded until the client has downloaded more than
  369. half of the network-status documents.
  370. 5.3. Managing downloads
  371. When a client has no live network-status documents, it downloads
  372. network-status documents from a randomly chosen authority. In all other
  373. cases, the client downloads from mirrors randomly chosen from among those
  374. believed to be V2 directory servers. (This information comes from the
  375. network-status documents; see 6 below.)
  376. When downloading multiple router descriptors, the client chooses multiple
  377. mirrors so that:
  378. - At least 3 different mirrors are used, except when this would result
  379. in more than one request for under 4 descriptors.
  380. - No more than 128 descriptors are requested from a single mirror.
  381. - Otherwise, as few mirrors as possible are used.
  382. After choosing mirrors, the client divides the descriptors among them
  383. randomly.
  384. After receiving any response client MUST discard any network-status
  385. documents and descriptors that it did not request.
  386. 6. Using directory information
  387. Everyone besides directory authorities uses the approaches in this section
  388. to decide which servers to use and what their keys are likely to be.
  389. (Directory authorities just believe their own opinions, as in 3.1 above.)
  390. 6.1. Choosing routers for circuits.
  391. Tor implementations only pay attention to "live" network-status documents.
  392. A network status is "live" if it is the most recently downloaded network
  393. status document for a given directory server, and the server is a
  394. directory server trusted by the client, and the network-status document is
  395. no more than 1 day old.
  396. For time-sensitive information, Tor implementations focus on "recent"
  397. network-status documents. A network status is "recent" if it is live, and
  398. if it was published in the last 60 minutes. If there are fewer
  399. than 3 such documents, the most recently published 3 are "recent." If
  400. there are fewer than 3 in all, all are "recent.")
  401. Circuits SHOULD NOT be built until the client has enough directory
  402. information: network-statuses (or failed attempts to download
  403. network-statuses) for all authorities, network-statuses for at more than
  404. half of the authorites, and descriptors for at least 1/4 of the servers
  405. believed to be running.
  406. A server is "listed" if it is included by more than half of the live
  407. network status documents. Clients SHOULD NOT use unlisted servers.
  408. Clients believe the flags "Valid", "Exit", "Fast", "Guard", "Stable", and
  409. "V2Dir" about a given router when they are asserted by more than half of
  410. the live network-status documents. Clients believe the flag "Running" if
  411. it is listed by more than half of the recent network-status documents.
  412. These flags are used as follows:
  413. - Clients SHOULD NOT use non-'Valid' or non-'Running' routers unless
  414. requested to do so.
  415. - Clients SHOULD NOT use non-'Fast' routers for any purpose other than
  416. very-low-bandwidth circuits (such as introduction circuits).
  417. - Clients SHOULD NOT use non-'Stable' routers for circuits that are
  418. likely to need to be open for a very long time (such as those used for
  419. IRC or SSH connections).
  420. - Clients SHOULD NOT choose non-'Guard' nodes when picking entry guard
  421. nodes.
  422. - Clients SHOULD NOT download directory information from non-'V2Dir'
  423. caches.
  424. 6.1. Managing naming
  425. In order to provide human-memorable names for individual server
  426. identities, some directory servers bind names to IDs. Clients handle
  427. names in two ways:
  428. When a client encounters a name it has not mapped before:
  429. If all the live "Naming" network-status documents the client has
  430. claim that the name binds to some identity ID, and the client has at
  431. least three live network-status documents, the client maps the name to
  432. ID.
  433. If a client encounters a name it has mapped before:
  434. It uses the last-mapped identity value, unless all of the "Naming"
  435. network status documents that list the name bind it to some other
  436. identity.
  437. When a user tries to refer to a router with a name that does not have a
  438. mapping under the above rules, the implementation SHOULD warn the user.
  439. After giving the warning, the implementation MAY use a router that at
  440. least one Naming authority maps the name to, so long as no other naming
  441. authority maps that name to a different router.
  442. (XXXX The last-bound thing above isn't implemented)
  443. 6.2. Software versions
  444. An implementation of Tor SHOULD warn when it has fetched (or has
  445. attempted to fetch and failed four consecutive times) a network-status
  446. for each authority, and it is running a software version
  447. not listed on more than half of the live "Versioning" network-status
  448. documents.
  449. 6.3. Warning about a router's status.
  450. If a router tries to publish its descriptor to a Naming authority
  451. that has its nickname mapped to another key, the router SHOULD
  452. warn the operator that it is either using the wrong key or is using
  453. an already claimed nickname.
  454. If a router has fetched (or attempted to fetch and failed four
  455. consecutive times) a network-status for every authority, and at
  456. least one of the authorities is "Naming", and no live "Naming"
  457. authorities publish a binding for the router's nickname, the
  458. router MAY remind the operator that the chosen nickname is not
  459. bound to this key at the authorities, and suggest contacting the
  460. authority operators.
  461. ...