rtp.c 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807
  1. /*
  2. * HairTunes - RAOP packet handler and slave-clocked replay engine
  3. * Copyright (c) James Laird 2011
  4. * All rights reserved.
  5. *
  6. * Modularisation: philippe_44@outlook.com, 2019
  7. *
  8. * Permission is hereby granted, free of charge, to any person
  9. * obtaining a copy of this software and associated documentation
  10. * files (the "Software"), to deal in the Software without
  11. * restriction, including without limitation the rights to use,
  12. * copy, modify, merge, publish, distribute, sublicense, and/or
  13. * sell copies of the Software, and to permit persons to whom the
  14. * Software is furnished to do so, subject to the following conditions:
  15. *
  16. * The above copyright notice and this permission notice shall be
  17. * included in all copies or substantial portions of the Software.
  18. *
  19. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  20. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
  21. * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  22. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
  23. * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
  24. * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  25. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  26. * OTHER DEALINGS IN THE SOFTWARE.
  27. */
  28. #include <stdio.h>
  29. #include <stdlib.h>
  30. #include <string.h>
  31. #include <stdarg.h>
  32. #include <sys/types.h>
  33. #include <pthread.h>
  34. #include <math.h>
  35. #include <errno.h>
  36. #include <sys/stat.h>
  37. #include <stdint.h>
  38. #include <fcntl.h>
  39. #include "platform.h"
  40. #include "rtp.h"
  41. #include "raop_sink.h"
  42. #include "log_util.h"
  43. #include "util.h"
  44. #ifdef WIN32
  45. #include <openssl/aes.h>
  46. #include "alac_wrapper.h"
  47. #include "assert.h"
  48. #define MSG_DONTWAIT 0
  49. #else
  50. #include "esp_pthread.h"
  51. #include "esp_system.h"
  52. #include "esp_assert.h"
  53. #include <mbedtls/version.h>
  54. #include <mbedtls/aes.h>
  55. #include "alac_wrapper.h"
  56. #endif
  57. #define NTP2MS(ntp) ((((ntp) >> 10) * 1000L) >> 22)
  58. #define MS2NTP(ms) (((((u64_t) (ms)) << 22) / 1000) << 10)
  59. #define NTP2TS(ntp, rate) ((((ntp) >> 16) * (rate)) >> 16)
  60. #define TS2NTP(ts, rate) (((((u64_t) (ts)) << 16) / (rate)) << 16)
  61. #define MS2TS(ms, rate) ((((u64_t) (ms)) * (rate)) / 1000)
  62. #define TS2MS(ts, rate) NTP2MS(TS2NTP(ts,rate))
  63. extern log_level raop_loglevel;
  64. static log_level *loglevel = &raop_loglevel;
  65. //#define __RTP_STORE
  66. // default buffer size
  67. #define BUFFER_FRAMES ( (150 * RAOP_SAMPLE_RATE * 2) / (352 * 100) )
  68. #define MAX_PACKET 1408
  69. #define MIN_LATENCY 11025
  70. #define MAX_LATENCY ( (120 * RAOP_SAMPLE_RATE * 2) / 100 )
  71. #define RTP_STACK_SIZE (4*1024)
  72. #define RTP_SYNC (0x01)
  73. #define NTP_SYNC (0x02)
  74. #define RESEND_TO 200
  75. enum { DATA = 0, CONTROL, TIMING };
  76. static const u8_t silence_frame[MAX_PACKET] = { 0 };
  77. typedef u16_t seq_t;
  78. typedef struct audio_buffer_entry { // decoded audio packets
  79. int ready;
  80. u32_t rtptime, last_resend;
  81. s16_t *data;
  82. int len;
  83. } abuf_t;
  84. typedef struct rtp_s {
  85. #ifdef __RTP_STORE
  86. FILE *rtpIN, *rtpOUT;
  87. #endif
  88. bool running;
  89. unsigned char aesiv[16];
  90. #ifdef WIN32
  91. AES_KEY aes;
  92. #else
  93. mbedtls_aes_context aes;
  94. #endif
  95. bool decrypt;
  96. u8_t *decrypt_buf;
  97. u32_t frame_size, frame_duration;
  98. u32_t in_frames, out_frames;
  99. struct in_addr host;
  100. struct sockaddr_in rtp_host;
  101. struct {
  102. unsigned short rport, lport;
  103. int sock;
  104. } rtp_sockets[3]; // data, control, timing
  105. struct timing_s {
  106. u64_t local, remote;
  107. } timing;
  108. struct {
  109. u32_t rtp, time;
  110. u8_t status;
  111. } synchro;
  112. struct {
  113. u32_t time;
  114. seq_t seqno;
  115. u32_t rtptime;
  116. } record;
  117. int latency; // rtp hold depth in samples
  118. u32_t resent_req, resent_rec; // total resent + recovered frames
  119. u32_t silent_frames; // total silence frames
  120. u32_t discarded;
  121. abuf_t audio_buffer[BUFFER_FRAMES];
  122. seq_t ab_read, ab_write;
  123. pthread_mutex_t ab_mutex;
  124. #ifdef WIN32
  125. pthread_t thread;
  126. #else
  127. TaskHandle_t thread, joiner;
  128. StaticTask_t *xTaskBuffer;
  129. StackType_t xStack[RTP_STACK_SIZE] __attribute__ ((aligned (4)));
  130. #endif
  131. struct alac_codec_s *alac_codec;
  132. int flush_seqno;
  133. bool playing;
  134. raop_data_cb_t data_cb;
  135. raop_cmd_cb_t cmd_cb;
  136. } rtp_t;
  137. #define BUFIDX(seqno) ((seq_t)(seqno) % BUFFER_FRAMES)
  138. static void buffer_alloc(abuf_t *audio_buffer, int size);
  139. static void buffer_release(abuf_t *audio_buffer);
  140. static void buffer_reset(abuf_t *audio_buffer);
  141. static void buffer_push_packet(rtp_t *ctx);
  142. static bool rtp_request_resend(rtp_t *ctx, seq_t first, seq_t last);
  143. static bool rtp_request_timing(rtp_t *ctx);
  144. static void* rtp_thread_func(void *arg);
  145. static int seq_order(seq_t a, seq_t b);
  146. /*---------------------------------------------------------------------------*/
  147. static struct alac_codec_s* alac_init(int fmtp[32]) {
  148. struct alac_codec_s *alac;
  149. unsigned sample_rate;
  150. unsigned char sample_size, channels;
  151. struct {
  152. uint32_t frameLength;
  153. uint8_t compatibleVersion;
  154. uint8_t bitDepth;
  155. uint8_t pb;
  156. uint8_t mb;
  157. uint8_t kb;
  158. uint8_t numChannels;
  159. uint16_t maxRun;
  160. uint32_t maxFrameBytes;
  161. uint32_t avgBitRate;
  162. uint32_t sampleRate;
  163. } config;
  164. config.frameLength = htonl(fmtp[1]);
  165. config.compatibleVersion = fmtp[2];
  166. config.bitDepth = fmtp[3];
  167. config.pb = fmtp[4];
  168. config.mb = fmtp[5];
  169. config.kb = fmtp[6];
  170. config.numChannels = fmtp[7];
  171. config.maxRun = htons(fmtp[8]);
  172. config.maxFrameBytes = htonl(fmtp[9]);
  173. config.avgBitRate = htonl(fmtp[10]);
  174. config.sampleRate = htonl(fmtp[11]);
  175. alac = alac_create_decoder(sizeof(config), (unsigned char*) &config, &sample_size, &sample_rate, &channels);
  176. if (!alac) {
  177. LOG_ERROR("cannot create alac codec", NULL);
  178. return NULL;
  179. }
  180. return alac;
  181. }
  182. /*---------------------------------------------------------------------------*/
  183. rtp_resp_t rtp_init(struct in_addr host, int latency, char *aeskey, char *aesiv, char *fmtpstr,
  184. short unsigned pCtrlPort, short unsigned pTimingPort,
  185. raop_cmd_cb_t cmd_cb, raop_data_cb_t data_cb)
  186. {
  187. int i = 0;
  188. char *arg;
  189. int fmtp[12];
  190. bool rc = true;
  191. rtp_t *ctx = calloc(1, sizeof(rtp_t));
  192. rtp_resp_t resp = { 0, 0, 0, NULL };
  193. if (!ctx) return resp;
  194. ctx->host = host;
  195. ctx->decrypt = false;
  196. ctx->cmd_cb = cmd_cb;
  197. ctx->data_cb = data_cb;
  198. ctx->rtp_host.sin_family = AF_INET;
  199. ctx->rtp_host.sin_addr.s_addr = INADDR_ANY;
  200. pthread_mutex_init(&ctx->ab_mutex, 0);
  201. ctx->flush_seqno = -1;
  202. ctx->latency = latency;
  203. ctx->ab_read = ctx->ab_write;
  204. #ifdef __RTP_STORE
  205. ctx->rtpIN = fopen("airplay.rtpin", "wb");
  206. ctx->rtpOUT = fopen("airplay.rtpout", "wb");
  207. #endif
  208. ctx->rtp_sockets[CONTROL].rport = pCtrlPort;
  209. ctx->rtp_sockets[TIMING].rport = pTimingPort;
  210. if (aesiv && aeskey) {
  211. memcpy(ctx->aesiv, aesiv, 16);
  212. #ifdef WIN32
  213. AES_set_decrypt_key((unsigned char*) aeskey, 128, &ctx->aes);
  214. #else
  215. memset(&ctx->aes, 0, sizeof(mbedtls_aes_context));
  216. mbedtls_aes_setkey_dec(&ctx->aes, (unsigned char*) aeskey, 128);
  217. #endif
  218. ctx->decrypt = true;
  219. ctx->decrypt_buf = malloc(MAX_PACKET);
  220. }
  221. memset(fmtp, 0, sizeof(fmtp));
  222. while ((arg = strsep(&fmtpstr, " \t")) != NULL) fmtp[i++] = atoi(arg);
  223. ctx->frame_size = fmtp[1];
  224. ctx->frame_duration = (ctx->frame_size * 1000) / RAOP_SAMPLE_RATE;
  225. // alac decoder
  226. ctx->alac_codec = alac_init(fmtp);
  227. rc &= ctx->alac_codec != NULL;
  228. buffer_alloc(ctx->audio_buffer, ctx->frame_size*4);
  229. // create rtp ports
  230. for (i = 0; i < 3; i++) {
  231. ctx->rtp_sockets[i].sock = bind_socket(&ctx->rtp_sockets[i].lport, SOCK_DGRAM);
  232. rc &= ctx->rtp_sockets[i].sock > 0;
  233. }
  234. // create http port and start listening
  235. resp.cport = ctx->rtp_sockets[CONTROL].lport;
  236. resp.tport = ctx->rtp_sockets[TIMING].lport;
  237. resp.aport = ctx->rtp_sockets[DATA].lport;
  238. ctx->running = true;
  239. #ifdef WIN32
  240. pthread_create(&ctx->thread, NULL, rtp_thread_func, (void *) ctx);
  241. #else
  242. ctx->xTaskBuffer = (StaticTask_t*) heap_caps_malloc(sizeof(StaticTask_t), MALLOC_CAP_INTERNAL | MALLOC_CAP_8BIT);
  243. ctx->thread = xTaskCreateStatic( (TaskFunction_t) rtp_thread_func, "RTP_thread", RTP_STACK_SIZE, ctx,
  244. CONFIG_ESP32_PTHREAD_TASK_PRIO_DEFAULT + 1, ctx->xStack, ctx->xTaskBuffer );
  245. #endif
  246. // cleanup everything if we failed
  247. if (!rc) {
  248. LOG_ERROR("[%p]: cannot start RTP", ctx);
  249. rtp_end(ctx);
  250. ctx = NULL;
  251. }
  252. resp.ctx = ctx;
  253. return resp;
  254. }
  255. /*---------------------------------------------------------------------------*/
  256. void rtp_end(rtp_t *ctx)
  257. {
  258. int i;
  259. if (!ctx) return;
  260. if (ctx->running) {
  261. #if !defined WIN32
  262. ctx->joiner = xTaskGetCurrentTaskHandle();
  263. #endif
  264. ctx->running = false;
  265. #ifdef WIN32
  266. pthread_join(ctx->thread, NULL);
  267. #else
  268. ulTaskNotifyTake(pdFALSE, portMAX_DELAY);
  269. vTaskDelete(ctx->thread);
  270. heap_caps_free(ctx->xTaskBuffer);
  271. #endif
  272. }
  273. for (i = 0; i < 3; i++) closesocket(ctx->rtp_sockets[i].sock);
  274. if (ctx->alac_codec) alac_delete_decoder(ctx->alac_codec);
  275. if (ctx->decrypt_buf) free(ctx->decrypt_buf);
  276. pthread_mutex_destroy(&ctx->ab_mutex);
  277. buffer_release(ctx->audio_buffer);
  278. free(ctx);
  279. #ifdef __RTP_STORE
  280. fclose(ctx->rtpIN);
  281. fclose(ctx->rtpOUT);
  282. #endif
  283. }
  284. /*---------------------------------------------------------------------------*/
  285. bool rtp_flush(rtp_t *ctx, unsigned short seqno, unsigned int rtptime, bool exit_locked)
  286. {
  287. bool rc = true;
  288. u32_t now = gettime_ms();
  289. if (now < ctx->record.time + 250 || (ctx->record.seqno == seqno && ctx->record.rtptime == rtptime)) {
  290. rc = false;
  291. LOG_ERROR("[%p]: FLUSH ignored as same as RECORD (%hu - %u)", ctx, seqno, rtptime);
  292. } else {
  293. pthread_mutex_lock(&ctx->ab_mutex);
  294. buffer_reset(ctx->audio_buffer);
  295. ctx->playing = false;
  296. ctx->flush_seqno = seqno;
  297. if (!exit_locked) pthread_mutex_unlock(&ctx->ab_mutex);
  298. }
  299. LOG_INFO("[%p]: flush %hu %u", ctx, seqno, rtptime);
  300. return rc;
  301. }
  302. /*---------------------------------------------------------------------------*/
  303. void rtp_flush_release(rtp_t *ctx) {
  304. pthread_mutex_unlock(&ctx->ab_mutex);
  305. }
  306. /*---------------------------------------------------------------------------*/
  307. void rtp_record(rtp_t *ctx, unsigned short seqno, unsigned rtptime) {
  308. ctx->record.seqno = seqno;
  309. ctx->record.rtptime = rtptime;
  310. ctx->record.time = gettime_ms();
  311. LOG_INFO("[%p]: record %hu %u", ctx, seqno, rtptime);
  312. }
  313. /*---------------------------------------------------------------------------*/
  314. static void buffer_alloc(abuf_t *audio_buffer, int size) {
  315. int i;
  316. for (i = 0; i < BUFFER_FRAMES; i++) {
  317. audio_buffer[i].data = malloc(size);
  318. audio_buffer[i].ready = 0;
  319. }
  320. }
  321. /*---------------------------------------------------------------------------*/
  322. static void buffer_release(abuf_t *audio_buffer) {
  323. int i;
  324. for (i = 0; i < BUFFER_FRAMES; i++) {
  325. free(audio_buffer[i].data);
  326. }
  327. }
  328. /*---------------------------------------------------------------------------*/
  329. static void buffer_reset(abuf_t *audio_buffer) {
  330. int i;
  331. for (i = 0; i < BUFFER_FRAMES; i++) audio_buffer[i].ready = 0;
  332. }
  333. /*---------------------------------------------------------------------------*/
  334. // the sequence numbers will wrap pretty often.
  335. // this returns true if the second arg is after the first
  336. static int seq_order(seq_t a, seq_t b) {
  337. s16_t d = b - a;
  338. return d > 0;
  339. }
  340. /*---------------------------------------------------------------------------*/
  341. static void alac_decode(rtp_t *ctx, s16_t *dest, char *buf, int len, int *outsize) {
  342. unsigned char iv[16];
  343. int aeslen;
  344. assert(len<=MAX_PACKET);
  345. if (ctx->decrypt) {
  346. aeslen = len & ~0xf;
  347. memcpy(iv, ctx->aesiv, sizeof(iv));
  348. #ifdef WIN32
  349. AES_cbc_encrypt((unsigned char*)buf, ctx->decrypt_buf, aeslen, &ctx->aes, iv, AES_DECRYPT);
  350. #else
  351. mbedtls_aes_crypt_cbc(&ctx->aes, MBEDTLS_AES_DECRYPT, aeslen, iv, (unsigned char*) buf, ctx->decrypt_buf);
  352. #endif
  353. memcpy(ctx->decrypt_buf+aeslen, buf+aeslen, len-aeslen);
  354. alac_to_pcm(ctx->alac_codec, (unsigned char*) ctx->decrypt_buf, (unsigned char*) dest, 2, (unsigned int*) outsize);
  355. } else {
  356. alac_to_pcm(ctx->alac_codec, (unsigned char*) buf, (unsigned char*) dest, 2, (unsigned int*) outsize);
  357. }
  358. *outsize *= 4;
  359. }
  360. /*---------------------------------------------------------------------------*/
  361. static void buffer_put_packet(rtp_t *ctx, seq_t seqno, unsigned rtptime, bool first, char *data, int len) {
  362. abuf_t *abuf = NULL;
  363. u32_t playtime;
  364. pthread_mutex_lock(&ctx->ab_mutex);
  365. if (!ctx->playing) {
  366. if ((ctx->flush_seqno == -1 || seq_order(ctx->flush_seqno, seqno)) &&
  367. (ctx->synchro.status & RTP_SYNC) && (ctx->synchro.status & NTP_SYNC)) {
  368. ctx->ab_write = seqno-1;
  369. ctx->ab_read = seqno;
  370. ctx->flush_seqno = -1;
  371. ctx->playing = true;
  372. ctx->resent_req = ctx->resent_rec = ctx->silent_frames = ctx->discarded = 0;
  373. playtime = ctx->synchro.time + (((s32_t)(rtptime - ctx->synchro.rtp)) * 1000) / RAOP_SAMPLE_RATE;
  374. ctx->cmd_cb(RAOP_PLAY, playtime);
  375. } else {
  376. pthread_mutex_unlock(&ctx->ab_mutex);
  377. return;
  378. }
  379. }
  380. if (seqno == (u16_t) (ctx->ab_write+1)) {
  381. // expected packet
  382. abuf = ctx->audio_buffer + BUFIDX(seqno);
  383. ctx->ab_write = seqno;
  384. LOG_SDEBUG("packet expected seqno:%hu rtptime:%u (W:%hu R:%hu)", seqno, rtptime, ctx->ab_write, ctx->ab_read);
  385. } else if (seq_order(ctx->ab_write, seqno)) {
  386. seq_t i;
  387. u32_t now;
  388. // newer than expected
  389. if (ctx->latency && seq_order(ctx->latency / ctx->frame_size, seqno - ctx->ab_write - 1)) {
  390. // only get rtp latency-1 frames back (last one is seqno)
  391. LOG_WARN("[%p] too many missing frames %hu seq: %hu, (W:%hu R:%hu)", ctx, seqno - ctx->ab_write - 1, seqno, ctx->ab_write, ctx->ab_read);
  392. ctx->ab_write = seqno - ctx->latency / ctx->frame_size;
  393. }
  394. // need to request re-send and adjust timing of gaps
  395. rtp_request_resend(ctx, ctx->ab_write + 1, seqno-1);
  396. for (now = gettime_ms(), i = ctx->ab_write + 1; seq_order(i, seqno); i++) {
  397. ctx->audio_buffer[BUFIDX(i)].rtptime = rtptime - (seqno-i)*ctx->frame_size;
  398. ctx->audio_buffer[BUFIDX(i)].last_resend = now;
  399. }
  400. LOG_DEBUG("[%p]: packet newer seqno:%hu rtptime:%u (W:%hu R:%hu)", ctx, seqno, rtptime, ctx->ab_write, ctx->ab_read);
  401. abuf = ctx->audio_buffer + BUFIDX(seqno);
  402. ctx->ab_write = seqno;
  403. } else if (seq_order(ctx->ab_read, seqno + 1)) {
  404. // recovered packet, not yet sent
  405. abuf = ctx->audio_buffer + BUFIDX(seqno);
  406. ctx->resent_rec++;
  407. LOG_DEBUG("[%p]: packet recovered seqno:%hu rtptime:%u (W:%hu R:%hu)", ctx, seqno, rtptime, ctx->ab_write, ctx->ab_read);
  408. } else {
  409. // too late
  410. LOG_DEBUG("[%p]: packet too late seqno:%hu rtptime:%u (W:%hu R:%hu)", ctx, seqno, rtptime, ctx->ab_write, ctx->ab_read);
  411. }
  412. if (ctx->in_frames++ > 1000) {
  413. LOG_INFO("[%p]: fill [level:%hu rec:%u] [W:%hu R:%hu]", ctx, ctx->ab_write - ctx->ab_read, ctx->resent_rec, ctx->ab_write, ctx->ab_read);
  414. ctx->in_frames = 0;
  415. }
  416. if (abuf) {
  417. alac_decode(ctx, abuf->data, data, len, &abuf->len);
  418. abuf->ready = 1;
  419. // this is the local rtptime when this frame is expected to play
  420. abuf->rtptime = rtptime;
  421. buffer_push_packet(ctx);
  422. #ifdef __RTP_STORE
  423. fwrite(data, len, 1, ctx->rtpIN);
  424. fwrite(abuf->data, abuf->len, 1, ctx->rtpOUT);
  425. #endif
  426. }
  427. pthread_mutex_unlock(&ctx->ab_mutex);
  428. }
  429. /*---------------------------------------------------------------------------*/
  430. // push as many frames as possible through callback
  431. static void buffer_push_packet(rtp_t *ctx) {
  432. abuf_t *curframe = NULL;
  433. u32_t now, playtime, hold = max((ctx->latency * 1000) / (8 * RAOP_SAMPLE_RATE), 100);
  434. int i;
  435. // not ready to play yet
  436. if (!ctx->playing || ctx->synchro.status != (RTP_SYNC | NTP_SYNC)) return;
  437. // there is always at least one frame in the buffer
  438. do {
  439. // re-evaluate time in loop in case data callback blocks ...
  440. now = gettime_ms();
  441. // try to manage playtime so that we overflow as late as possible if we miss NTP (2^31 / 10 / 44100)
  442. curframe = ctx->audio_buffer + BUFIDX(ctx->ab_read);
  443. playtime = ctx->synchro.time + (((s32_t)(curframe->rtptime - ctx->synchro.rtp)) * 10) / (RAOP_SAMPLE_RATE / 100);
  444. if (now > playtime) {
  445. LOG_DEBUG("[%p]: discarded frame now:%u missed by:%d (W:%hu R:%hu)", ctx, now, now - playtime, ctx->ab_write, ctx->ab_read);
  446. ctx->discarded++;
  447. curframe->ready = 0;
  448. } else if (playtime - now <= hold) {
  449. if (curframe->ready) {
  450. ctx->data_cb((const u8_t*) curframe->data, curframe->len, playtime);
  451. curframe->ready = 0;
  452. } else {
  453. LOG_DEBUG("[%p]: created zero frame (W:%hu R:%hu)", ctx, ctx->ab_write, ctx->ab_read);
  454. ctx->data_cb(silence_frame, ctx->frame_size * 4, playtime);
  455. ctx->silent_frames++;
  456. }
  457. } else if (curframe->ready) {
  458. ctx->data_cb((const u8_t*) curframe->data, curframe->len, playtime);
  459. curframe->ready = 0;
  460. } else {
  461. break;
  462. }
  463. ctx->ab_read++;
  464. ctx->out_frames++;
  465. } while (seq_order(ctx->ab_read, ctx->ab_write));
  466. if (ctx->out_frames > 1000) {
  467. LOG_INFO("[%p]: drain [level:%hd head:%d ms] [W:%hu R:%hu] [req:%u sil:%u dis:%u]",
  468. ctx, ctx->ab_write - ctx->ab_read, playtime - now, ctx->ab_write, ctx->ab_read,
  469. ctx->resent_req, ctx->silent_frames, ctx->discarded);
  470. ctx->out_frames = 0;
  471. }
  472. LOG_SDEBUG("playtime %u %d [W:%hu R:%hu] %d", playtime, playtime - now, ctx->ab_write, ctx->ab_read, curframe->ready);
  473. // each missing packet will be requested up to (latency_frames / 16) times
  474. for (i = 0; seq_order(ctx->ab_read + i, ctx->ab_write); i += 16) {
  475. abuf_t *frame = ctx->audio_buffer + BUFIDX(ctx->ab_read + i);
  476. if (!frame->ready && now - frame->last_resend > RESEND_TO) {
  477. rtp_request_resend(ctx, ctx->ab_read + i, ctx->ab_read + i);
  478. frame->last_resend = now;
  479. }
  480. }
  481. }
  482. /*---------------------------------------------------------------------------*/
  483. static void *rtp_thread_func(void *arg) {
  484. fd_set fds;
  485. int i, sock = -1;
  486. int count = 0;
  487. bool ntp_sent;
  488. char *packet = malloc(MAX_PACKET);
  489. rtp_t *ctx = (rtp_t*) arg;
  490. for (i = 0; i < 3; i++) {
  491. if (ctx->rtp_sockets[i].sock > sock) sock = ctx->rtp_sockets[i].sock;
  492. // send synchro request 3 times
  493. ntp_sent = rtp_request_timing(ctx);
  494. }
  495. while (ctx->running) {
  496. ssize_t plen;
  497. char type;
  498. socklen_t rtp_client_len = sizeof(struct sockaddr_in);
  499. int idx = 0;
  500. char *pktp = packet;
  501. struct timeval timeout = {0, 100*1000};
  502. FD_ZERO(&fds);
  503. for (i = 0; i < 3; i++) { FD_SET(ctx->rtp_sockets[i].sock, &fds); }
  504. if (select(sock + 1, &fds, NULL, NULL, &timeout) <= 0) continue;
  505. for (i = 0; i < 3; i++)
  506. if (FD_ISSET(ctx->rtp_sockets[i].sock, &fds)) idx = i;
  507. plen = recvfrom(ctx->rtp_sockets[idx].sock, packet, MAX_PACKET, MSG_DONTWAIT, (struct sockaddr*) &ctx->rtp_host, &rtp_client_len);
  508. if (!ntp_sent) {
  509. LOG_WARN("[%p]: NTP request not send yet", ctx);
  510. ntp_sent = rtp_request_timing(ctx);
  511. }
  512. if (plen <= 0) {
  513. LOG_WARN("Nothing received on a readable socket %d", plen);
  514. continue;
  515. }
  516. assert(plen <= MAX_PACKET);
  517. type = packet[1] & ~0x80;
  518. pktp = packet;
  519. switch (type) {
  520. seq_t seqno;
  521. unsigned rtptime;
  522. // re-sent packet
  523. case 0x56: {
  524. pktp += 4;
  525. plen -= 4;
  526. }
  527. // data packet
  528. case 0x60: {
  529. seqno = ntohs(*(u16_t*)(pktp+2));
  530. rtptime = ntohl(*(u32_t*)(pktp+4));
  531. // adjust pointer and length
  532. pktp += 12;
  533. plen -= 12;
  534. LOG_SDEBUG("[%p]: seqno:%hu rtp:%u (type: %x, first: %u)", ctx, seqno, rtptime, type, packet[1] & 0x80);
  535. // check if packet contains enough content to be reasonable
  536. if (plen < 16) break;
  537. if ((packet[1] & 0x80) && (type != 0x56)) {
  538. LOG_INFO("[%p]: 1st audio packet received", ctx);
  539. }
  540. buffer_put_packet(ctx, seqno, rtptime, packet[1] & 0x80, pktp, plen);
  541. break;
  542. }
  543. // sync packet
  544. case 0x54: {
  545. u32_t rtp_now_latency = ntohl(*(u32_t*)(pktp+4));
  546. u64_t remote = (((u64_t) ntohl(*(u32_t*)(pktp+8))) << 32) + ntohl(*(u32_t*)(pktp+12));
  547. u32_t rtp_now = ntohl(*(u32_t*)(pktp+16));
  548. u16_t flags = ntohs(*(u16_t*)(pktp+2));
  549. u32_t remote_gap = NTP2MS(remote - ctx->timing.remote);
  550. // try to get NTP every 3 sec or every time if we are not synced
  551. if (!count-- || !(ctx->synchro.status && NTP_SYNC)) {
  552. rtp_request_timing(ctx);
  553. count = 3;
  554. }
  555. // something is wrong, we should not have such gap
  556. if (remote_gap > 10000) {
  557. LOG_WARN("discarding remote timing information %u", remote_gap);
  558. break;
  559. }
  560. pthread_mutex_lock(&ctx->ab_mutex);
  561. // re-align timestamp and expected local playback time (and magic 11025 latency)
  562. ctx->latency = rtp_now - rtp_now_latency;
  563. if (flags == 7 || flags == 4) ctx->latency += 11025;
  564. if (ctx->latency < MIN_LATENCY) ctx->latency = MIN_LATENCY;
  565. else if (ctx->latency > MAX_LATENCY) ctx->latency = MAX_LATENCY;
  566. ctx->synchro.rtp = rtp_now - ctx->latency;
  567. ctx->synchro.time = ctx->timing.local + remote_gap;
  568. // now we are synced on RTP frames
  569. ctx->synchro.status |= RTP_SYNC;
  570. // 1st sync packet received (signals a restart of playback)
  571. if (packet[0] & 0x10) {
  572. LOG_INFO("[%p]: 1st sync packet received", ctx);
  573. }
  574. pthread_mutex_unlock(&ctx->ab_mutex);
  575. LOG_DEBUG("[%p]: sync packet latency:%d rtp_latency:%u rtp:%u remote ntp:%llx, local time:%u local rtp:%u (now:%u)",
  576. ctx, ctx->latency, rtp_now_latency, rtp_now, remote, ctx->synchro.time, ctx->synchro.rtp, gettime_ms());
  577. if ((ctx->synchro.status & RTP_SYNC) && (ctx->synchro.status & NTP_SYNC)) ctx->cmd_cb(RAOP_TIMING);
  578. break;
  579. }
  580. // NTP timing packet
  581. case 0x53: {
  582. u64_t expected;
  583. u32_t reference = ntohl(*(u32_t*)(pktp+12)); // only low 32 bits in our case
  584. u64_t remote =(((u64_t) ntohl(*(u32_t*)(pktp+16))) << 32) + ntohl(*(u32_t*)(pktp+20));
  585. u32_t roundtrip = gettime_ms() - reference;
  586. // better discard sync packets when roundtrip is suspicious and ask for another one
  587. if (roundtrip > 100) {
  588. rtp_request_timing(ctx);
  589. LOG_WARN("[%p]: discarding NTP roundtrip of %u ms", ctx, roundtrip);
  590. break;
  591. }
  592. /*
  593. The expected elapsed remote time should be exactly the same as
  594. elapsed local time between the two request, corrected by the
  595. drifting
  596. */
  597. expected = ctx->timing.remote + MS2NTP(reference - ctx->timing.local);
  598. ctx->timing.remote = remote;
  599. ctx->timing.local = reference;
  600. // now we are synced on NTP (mutex not needed)
  601. ctx->synchro.status |= NTP_SYNC;
  602. LOG_DEBUG("[%p]: Timing references local:%llu, remote:%llx (delta:%lld, sum:%lld, adjust:%lld, gaps:%d)",
  603. ctx, ctx->timing.local, ctx->timing.remote);
  604. break;
  605. }
  606. default: {
  607. LOG_WARN("Unknown packet received %x", (int) type);
  608. break;
  609. }
  610. }
  611. }
  612. free(packet);
  613. LOG_INFO("[%p]: terminating", ctx);
  614. #ifndef WIN32
  615. xTaskNotifyGive(ctx->joiner);
  616. vTaskSuspend(NULL);
  617. #endif
  618. return NULL;
  619. }
  620. /*---------------------------------------------------------------------------*/
  621. static bool rtp_request_timing(rtp_t *ctx) {
  622. unsigned char req[32];
  623. u32_t now = gettime_ms();
  624. int i;
  625. struct sockaddr_in host;
  626. LOG_DEBUG("[%p]: timing request now:%u (port: %hu)", ctx, now, ctx->rtp_sockets[TIMING].rport);
  627. req[0] = 0x80;
  628. req[1] = 0x52|0x80;
  629. *(u16_t*)(req+2) = htons(7);
  630. *(u32_t*)(req+4) = htonl(0); // dummy
  631. for (i = 0; i < 16; i++) req[i+8] = 0;
  632. *(u32_t*)(req+24) = 0;
  633. *(u32_t*)(req+28) = htonl(now); // this is not a real NTP, but a 32 ms counter in the low part of the NTP
  634. if (ctx->host.s_addr != INADDR_ANY) {
  635. host.sin_family = AF_INET;
  636. host.sin_addr = ctx->host;
  637. } else host = ctx->rtp_host;
  638. // no address from sender, need to wait for 1st packet to be received
  639. if (host.sin_addr.s_addr == INADDR_ANY) return false;
  640. host.sin_port = htons(ctx->rtp_sockets[TIMING].rport);
  641. if (sizeof(req) != sendto(ctx->rtp_sockets[TIMING].sock, req, sizeof(req), MSG_DONTWAIT, (struct sockaddr*) &host, sizeof(host))) {
  642. LOG_WARN("[%p]: SENDTO failed (%s)", ctx, strerror(errno));
  643. }
  644. return true;
  645. }
  646. /*---------------------------------------------------------------------------*/
  647. static bool rtp_request_resend(rtp_t *ctx, seq_t first, seq_t last) {
  648. unsigned char req[8]; // *not* a standard RTCP NACK
  649. // do not request silly ranges (happens in case of network large blackouts)
  650. if (seq_order(last, first) || last - first > BUFFER_FRAMES / 2) return false;
  651. ctx->resent_req += (seq_t) (last - first) + 1;
  652. LOG_DEBUG("resend request [W:%hu R:%hu first=%hu last=%hu]", ctx->ab_write, ctx->ab_read, first, last);
  653. req[0] = 0x80;
  654. req[1] = 0x55|0x80; // Apple 'resend'
  655. *(u16_t*)(req+2) = htons(1); // our seqnum
  656. *(u16_t*)(req+4) = htons(first); // missed seqnum
  657. *(u16_t*)(req+6) = htons(last-first+1); // count
  658. ctx->rtp_host.sin_port = htons(ctx->rtp_sockets[CONTROL].rport);
  659. if (sizeof(req) != sendto(ctx->rtp_sockets[CONTROL].sock, req, sizeof(req), MSG_DONTWAIT, (struct sockaddr*) &ctx->rtp_host, sizeof(ctx->rtp_host))) {
  660. LOG_WARN("[%p]: SENDTO failed (%s)", ctx, strerror(errno));
  661. }
  662. return true;
  663. }