MDNSService.cpp 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. #include <arpa/inet.h>
  2. #include <ifaddrs.h>
  3. #include <net/if.h>
  4. #include <netdb.h>
  5. #include <unistd.h>
  6. #include <cstring>
  7. #include <vector>
  8. #include <mutex>
  9. #if __has_include("avahi-client/client.h")
  10. #include <avahi-client/client.h>
  11. #include <avahi-client/publish.h>
  12. #include <avahi-common/alternative.h>
  13. #include <avahi-common/simple-watch.h>
  14. #elif !defined(BELL_DISABLE_AVAHI)
  15. #define BELL_DISABLE_AVAHI
  16. #endif
  17. #include "BellLogger.h"
  18. #include "MDNSService.h"
  19. #include "mdnssvc.h"
  20. using namespace bell;
  21. #ifndef BELL_DISABLE_AVAHI
  22. static void groupHandler(AvahiEntryGroup* g, AvahiEntryGroupState state,
  23. AVAHI_GCC_UNUSED void* userdata) {}
  24. #endif
  25. class implMDNSService : public MDNSService {
  26. private:
  27. #ifndef BELL_DISABLE_AVAHI
  28. AvahiEntryGroup* avahiGroup;
  29. #endif
  30. struct mdns_service* service;
  31. public:
  32. #ifndef BELL_DISABLE_AVAHI
  33. static AvahiClient* avahiClient;
  34. static AvahiSimplePoll* avahiPoll;
  35. #endif
  36. static struct mdnsd* mdnsServer;
  37. static in_addr_t host;
  38. implMDNSService(struct mdns_service* service) : service(service){};
  39. #ifndef BELL_DISABLE_AVAHI
  40. implMDNSService(AvahiEntryGroup* avahiGroup) : avahiGroup(avahiGroup){};
  41. #endif
  42. void unregisterService();
  43. };
  44. struct mdnsd* implMDNSService::mdnsServer = NULL;
  45. in_addr_t implMDNSService::host = INADDR_ANY;
  46. static std::mutex registerMutex;
  47. #ifndef BELL_DISABLE_AVAHI
  48. AvahiClient* implMDNSService::avahiClient = NULL;
  49. AvahiSimplePoll* implMDNSService::avahiPoll = NULL;
  50. #endif
  51. /**
  52. * Linux implementation of MDNSService using avahi.
  53. * @see https://www.avahi.org/doxygen/html/
  54. **/
  55. void implMDNSService::unregisterService() {
  56. #ifndef BELL_DISABLE_AVAHI
  57. if (avahiGroup) {
  58. avahi_entry_group_free(avahiGroup);
  59. } else
  60. #endif
  61. {
  62. mdns_service_remove(implMDNSService::mdnsServer, service);
  63. }
  64. }
  65. std::unique_ptr<MDNSService> MDNSService::registerService(
  66. const std::string& serviceName, const std::string& serviceType,
  67. const std::string& serviceProto, const std::string& serviceHost,
  68. int servicePort, const std::map<std::string, std::string> txtData) {
  69. std::lock_guard lock(registerMutex);
  70. #ifndef BELL_DISABLE_AVAHI
  71. // try avahi first if available
  72. if (!implMDNSService::avahiPoll) {
  73. implMDNSService::avahiPoll = avahi_simple_poll_new();
  74. }
  75. if (implMDNSService::avahiPoll && !implMDNSService::avahiClient) {
  76. implMDNSService::avahiClient =
  77. avahi_client_new(avahi_simple_poll_get(implMDNSService::avahiPoll),
  78. AvahiClientFlags(0), NULL, NULL, NULL);
  79. }
  80. AvahiEntryGroup* avahiGroup = NULL;
  81. if (implMDNSService::avahiClient &&
  82. (avahiGroup = avahi_entry_group_new(implMDNSService::avahiClient,
  83. groupHandler, NULL)) == NULL) {
  84. BELL_LOG(error, "MDNS", "cannot create service %s", serviceName.c_str());
  85. }
  86. if (avahiGroup != NULL) {
  87. AvahiStringList* avahiTxt = NULL;
  88. for (auto& [key, value] : txtData) {
  89. avahiTxt =
  90. avahi_string_list_add_pair(avahiTxt, key.c_str(), value.c_str());
  91. }
  92. std::string type(serviceType + "." + serviceProto);
  93. int ret = avahi_entry_group_add_service_strlst(
  94. avahiGroup, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, (AvahiPublishFlags)0,
  95. serviceName.c_str(), type.c_str(), NULL, NULL, servicePort, avahiTxt);
  96. avahi_string_list_free(avahiTxt);
  97. if (ret >= 0) {
  98. ret = avahi_entry_group_commit(avahiGroup);
  99. }
  100. if (ret < 0) {
  101. BELL_LOG(error, "MDNS", "cannot run service %s", serviceName.c_str());
  102. avahi_entry_group_free(avahiGroup);
  103. } else {
  104. BELL_LOG(info, "MDNS", "using avahi for %s", serviceName.c_str());
  105. return std::make_unique<implMDNSService>(avahiGroup);
  106. }
  107. }
  108. #endif
  109. // avahi failed, use build-in server
  110. struct ifaddrs* ifaddr;
  111. // get the host address first
  112. if (serviceHost.size()) {
  113. struct hostent* h = gethostbyname(serviceHost.c_str());
  114. if (h) {
  115. memcpy(&implMDNSService::host, h->h_addr_list[0], 4);
  116. }
  117. }
  118. // try go guess ifaddr if we have nothing as listening to INADDR_ANY usually does not work
  119. if (implMDNSService::host == INADDR_ANY && getifaddrs(&ifaddr) != -1) {
  120. for (struct ifaddrs* ifa = ifaddr; ifa != NULL; ifa = ifa->ifa_next) {
  121. if (ifa->ifa_addr == NULL || ifa->ifa_addr->sa_family != AF_INET ||
  122. !(ifa->ifa_flags & IFF_UP) || !(ifa->ifa_flags & IFF_MULTICAST) ||
  123. (ifa->ifa_flags & IFF_LOOPBACK))
  124. continue;
  125. implMDNSService::host =
  126. ((struct sockaddr_in*)ifa->ifa_addr)->sin_addr.s_addr;
  127. break;
  128. }
  129. freeifaddrs(ifaddr);
  130. }
  131. if (!implMDNSService::mdnsServer) {
  132. char hostname[256];
  133. struct in_addr addr;
  134. // it's the same, but who knows..
  135. addr.s_addr = implMDNSService::host;
  136. gethostname(hostname, sizeof(hostname));
  137. implMDNSService::mdnsServer = mdnsd_start(addr, false);
  138. if (implMDNSService::mdnsServer) {
  139. mdnsd_set_hostname(implMDNSService::mdnsServer, hostname, addr);
  140. }
  141. }
  142. if (implMDNSService::mdnsServer) {
  143. std::vector<const char*> txt;
  144. std::vector<std::unique_ptr<std::string>> txtStr;
  145. for (auto& [key, value] : txtData) {
  146. auto str = make_unique<std::string>(key + "=" + value);
  147. txtStr.push_back(std::move(str));
  148. txt.push_back(txtStr.back()->c_str());
  149. }
  150. txt.push_back(NULL);
  151. std::string type(serviceType + "." + serviceProto + ".local");
  152. BELL_LOG(info, "MDNS", "using built-in mDNS for %s", serviceName.c_str());
  153. struct mdns_service* mdnsService =
  154. mdnsd_register_svc(implMDNSService::mdnsServer, serviceName.c_str(),
  155. type.c_str(), servicePort, NULL, txt.data());
  156. if (mdnsService) {
  157. auto service =
  158. mdnsd_register_svc(implMDNSService::mdnsServer, serviceName.c_str(),
  159. type.c_str(), servicePort, NULL, txt.data());
  160. return std::make_unique<implMDNSService>(service);
  161. }
  162. }
  163. BELL_LOG(error, "MDNS", "cannot start any mDNS listener for %s",
  164. serviceName.c_str());
  165. return NULL;
  166. }