libsood

Zig library for Roon Core discovery message, with C-compatible API and WebAssembly.

  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 7
  8. 8
  9. 9
  10. 10
  11. 11
  12. 12
  13. 13
  14. 14
  15. 15
  16. 16
  17. 17
  18. 18
  19. 19
  20. 20
  21. 21
  22. 22
  23. 23
  24. 24
  25. 25
  26. 26
  27. 27
  28. 28
  29. 29
  30. 30
  31. 31
  32. 32
  33. 33
  34. 34
  35. 35
  36. 36
  37. 37
  38. 38
  39. 39
  40. 40
  41. 41
  42. 42
  43. 43
  44. 44
  45. 45
  46. 46
  47. 47
  48. 48
  49. 49
  50. 50
  51. 51
  52. 52
  53. 53
  54. 54
  55. 55
  56. 56
  57. 57
  58. 58
  59. 59
  60. 60
  61. 61
  62. 62
  63. 63
  64. 64
  65. 65
  66. 66
  67. 67
  68. 68
  69. 69
  70. 70
  71. 71
  72. 72
  73. 73
  74. 74
  75. 75
  76. 76
  77. 77
  78. 78
  79. 79
  80. 80
  81. 81
  82. 82
  83. 83
  84. 84
  85. 85
  86. 86
  87. 87
  88. 88
  89. 89
  90. 90
  91. 91
  92. 92
  93. 93
  94. 94
  95. 95
  96. 96
  97. 97
  98. 98
// Copyright 2025 Shota FUJI
//
// Licensed under the Zero-Clause BSD License or the Apache License, Version 2.0, at your option.
// You may not use, copy, modify, or distribute this file except according to those terms. You can
// find a copy of the Zero-Clause BSD License at LICENSES/0BSD.txt, and a copy of the Apache License,
// Version 2.0 at LICENSES/Apache-2.0.txt. You may also obtain a copy of the Zero-Clause BSD License
// at <https://opensource.org/license/0bsd> and a copy of the Apache License, Version 2.0 at
// <https://www.apache.org/licenses/LICENSE-2.0>
//
// SPDX-License-Identifier: 0BSD OR Apache-2.0

#include <errno.h>
#include <netinet/in.h>
#include <stdio.h>
#include <string.h>
#include <sys/socket.h>
#include <sys/time.h>
#include <unistd.h>

#include <sood.h>

int main(int argc, char **argv) {
	struct sockaddr_in multicast_addr;
	multicast_addr.sin_family = AF_INET;
	// Port is network byte order both in Linux and macOS
	multicast_addr.sin_port = htons(SOOD_DISCOVERY_SERVER_UDP_PORT);
	multicast_addr.sin_addr.s_addr = ntohl(SOOD_DISCOVERY_MULTICAST_IPV4_ADDRESS_BE);

	int sockfd = socket(AF_INET, SOCK_DGRAM, 0);
	if (sockfd < 0) {
		printf("Failed to create socket: %d\n", errno);
		return 1;
	}

	if (setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, &(int){1}, sizeof(int)) < 0) {
		printf("Failed to set SO_REUSEADDR=1: %d\n", errno);
		close(sockfd);
		return 1;
	}

	struct timeval timeout;
	timeout.tv_sec = 5;
	timeout.tv_usec = 0;

	if (setsockopt(sockfd, SOL_SOCKET, SO_RCVTIMEO, &timeout, sizeof(timeout)) < 0) {
		printf("Failed to set SO_RCVTIMEO: %d\n", errno);
		close(sockfd);
		return 1;
	}

	while (1) {
		if (
			sendto(
				sockfd,
				SOOD_DISCOVERY_QUERY_PREBUILT,
				sizeof(SOOD_DISCOVERY_QUERY_PREBUILT),
				0,
				(struct sockaddr*)&multicast_addr,
				sizeof(multicast_addr)
			) < 0
		) {
			printf("Failed to send: %d\n", errno);
			close(sockfd);
			return 1;
		}

		char received[512];
		ssize_t received_size = recv(sockfd, received, sizeof(received), 0);
		if (received_size < 0) {
			if (errno == EAGAIN || errno == EWOULDBLOCK) {
				printf("Retrying...\n");
				continue;
			}

			printf("Failed to recv: %d\n", errno);
			close(sockfd);
			return 1;
		}

		sood_discovery_response resp;
		sood_result result = sood_discovery_response_parse(
			&resp,
			received,
			received_size
		);
		if (result != SOOD_OK) {
			printf("Parse error: %d (%s)\n", result, sood_get_result_string(result));
			close(sockfd);
			return 2;
		}

		printf("Name: \t\t%.*s\n", resp.name_len, resp.name_ptr);
		printf("Version: \t%.*s\n", resp.display_version_len, resp.display_version_ptr);
		printf("Unique ID: \t%.*s\n", resp.unique_id_len, resp.unique_id_ptr);
		printf("HTTP port: \t%d\n", resp.http_port);
		return 0;
	}
}