logo

drewdevault.com

[mirror] blog and personal website of Drew DeVault git clone https://hacktivis.me/git/mirror/drewdevault.com.git

How-does-IRC-federate.md (4808B)


  1. ---
  2. title: How does IRC's federation model compare to ActivityPub?
  3. date: 2021-07-03
  4. ---
  5. Today's federated revolution is led by ActivityPub, leading to the rise of
  6. services like Mastodon, PeerTube, PixelFed, and more. These new technologies
  7. have a particular approach to federation, which is coloring perceptions on what
  8. it actually means for a system to be federated at all. Today's post will explain
  9. how [Internet Relay Chat](https://en.wikipedia.org/wiki/Internet_Relay_Chat)
  10. (IRC), a technology first introduced in the late 1980's, does federation
  11. differently, and why.
  12. As IRC has aged, many users today have only ever used a few networks, such as
  13. Liberachat (or Freenode, up until several weeks ago), which use a particular IRC
  14. model which does not, at first glance, appear to utilize federation. After all,
  15. everyone types "irc.libera.chat" into their client and they all end up on the
  16. same network and in the same namespace. However, this domain name is backed by a
  17. round-robin resolver which will connect you to any of [several dozen
  18. servers][0], which are connected to each other[^1] and exchange messages on
  19. behalf of the users who reside on each. This is why we call them IRC *networks*
  20. — each is composed of a network of servers that work together.
  21. [^1]: Each server is not necessarily connected to each other server, by the way. Messages can be relayed from one server to another repeatedly to reach the intended destination. This provides IRC with a greater degree of scalability when compared to ActivityPub, where each server must communicate directly with the servers whose users it needs to reach. It also makes IRC more vulnerable to outages partitioning the network; we call these incidents "netsplits".
  22. [0]: https://netsplit.de/servers/?net=Libera.Chat
  23. But why can't I send messages to users on [OFTC][1] from my Libera Chat session?
  24. Well, IRC networks are federated, but they are typically a *closed* federation,
  25. such that each network forms a discrete graph of servers, not interconnected
  26. with any of the others. In ActivityPub terms, imagine a version of Mastodon
  27. where, instead of automatically federating with new instances, server operators
  28. whitelisted each one, forming a closed graph of connected instances. Organize
  29. these servers under a single named entity ("Mastonet" or something), and the
  30. result is an "ActivityPub network" which operates in the same sense as a typical
  31. "IRC network".
  32. In contrast to Mastodon's open federation, allowing any server to peer with any
  33. others without prior agreement between their operators, most IRC networks are
  34. closed. The network's servers may have independent operators, but they operate
  35. together under a common agreement, rather than the laissez-faire approach
  36. typical of[^2] ActivityPub servers. The exact organizational and governance
  37. models vary, but many of these networks have discrete teams of staff which
  38. serve as moderators[^3], often unrelated to the people responsible for the
  39. servers. The social system can be designed independently of the technology.
  40. [1]: https://www.oftc.net
  41. [^2]: Typical, but not universal.
  42. [^3]: There are two classes of moderators on IRC: oppers and ops. The former is responsible for the network, and mainly concerns themselves with matters of spam, user registration, settling disputes, and supporting ops. The ops are responsible for specific channels (spaces for discussion) and can define and enforce further rules at their discretion, within any limits imposed by the host network.
  43. Among IRC networks, there are degrees of openness. Libera Chat, the largest
  44. network, is run by a single governing organization, using servers donated by
  45. (and in the possession of) independent sponsors. Many smaller networks are
  46. run on as few as one server, and some larger networks (particularly older ones)
  47. are run by many independent operators acting like more of a cooperative.
  48. [EFnet](http://efnet.org), the oldest network, is run in this manner — you
  49. can even [apply to become an operator][2] yourself.
  50. [2]: http://www.efnet.org/?module=docs&doc=16
  51. We can see from this that the idea of federation is flexible, allowing us to
  52. build a variety of social and operational structures. There's no single right
  53. answer — approaches like IRC are able to balance many different benefits
  54. and drawbacks of their approach, such as balancing a reduced level of user
  55. mobility with a stronger approach to moderation and abuse reduction, while
  56. simultaneously enjoying the cost and scalability benefits of a federated design.
  57. Other federations, like Matrix, email, and Usenet, have their own set of
  58. tradeoffs. What unifies them is the ability to scale to a large size without
  59. expensive infrastructure, under the social models which best suit their users'
  60. needs, without a centralizing capital motive.