slimproto.c 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002
  1. /*
  2. * Squeezelite - lightweight headless squeezebox emulator
  3. *
  4. * (c) Adrian Smith 2012-2015, triode1@btinternet.com
  5. * Ralph Irving 2015-2017, ralph_irving@hotmail.com
  6. *
  7. * This program is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation, either version 3 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. *
  20. * Additions (c) Paul Hermann, 2015-2017 under the same license terms
  21. * -Control of Raspberry pi GPIO for amplifier power
  22. * -Launch script on power status change from LMS
  23. */
  24. #include "squeezelite.h"
  25. #include "slimproto.h"
  26. static log_level loglevel;
  27. #define SQUEEZENETWORK "mysqueezebox.com:3483"
  28. #define PORT 3483
  29. #define MAXBUF 4096
  30. #if SL_LITTLE_ENDIAN
  31. #define LOCAL_PLAYER_IP 0x0100007f // 127.0.0.1
  32. #define LOCAL_PLAYER_PORT 0x9b0d // 3483
  33. #else
  34. #define LOCAL_PLAYER_IP 0x7f000001 // 127.0.0.1
  35. #define LOCAL_PLAYER_PORT 0x0d9b // 3483
  36. #endif
  37. static sockfd sock = -1;
  38. static in_addr_t slimproto_ip = 0;
  39. static u16_t slimproto_hport = 9000;
  40. static u16_t slimproto_cport = 9090;
  41. static u8_t player_id = PLAYER_ID;
  42. extern struct buffer *streambuf;
  43. extern struct buffer *outputbuf;
  44. extern struct streamstate stream;
  45. extern struct outputstate output;
  46. extern struct decodestate decode;
  47. extern struct codec *codecs[];
  48. #if IR
  49. extern struct irstate ir;
  50. #endif
  51. event_event wake_e;
  52. #define LOCK_S mutex_lock(streambuf->mutex)
  53. #define UNLOCK_S mutex_unlock(streambuf->mutex)
  54. #define LOCK_O mutex_lock(outputbuf->mutex)
  55. #define UNLOCK_O mutex_unlock(outputbuf->mutex)
  56. #define LOCK_D mutex_lock(decode.mutex)
  57. #define UNLOCK_D mutex_unlock(decode.mutex)
  58. #if IR
  59. #define LOCK_I mutex_lock(ir.mutex)
  60. #define UNLOCK_I mutex_unlock(ir.mutex)
  61. #endif
  62. static struct {
  63. u32_t updated;
  64. u32_t stream_start;
  65. u32_t stream_full;
  66. u32_t stream_size;
  67. u64_t stream_bytes;
  68. u32_t output_full;
  69. u32_t output_size;
  70. u32_t frames_played;
  71. u32_t device_frames;
  72. u32_t current_sample_rate;
  73. u32_t last;
  74. stream_state stream_state;
  75. } status;
  76. int autostart;
  77. bool sentSTMu, sentSTMo, sentSTMl;
  78. u32_t new_server;
  79. char *new_server_cap;
  80. #define PLAYER_NAME_LEN 64
  81. char player_name[PLAYER_NAME_LEN + 1] = "";
  82. const char *name_file = NULL;
  83. void send_packet(u8_t *packet, size_t len) {
  84. u8_t *ptr = packet;
  85. unsigned try = 0;
  86. ssize_t n;
  87. while (len) {
  88. n = send(sock, ptr, len, MSG_NOSIGNAL);
  89. if (n <= 0) {
  90. if (n < 0 && last_error() == ERROR_WOULDBLOCK && try < 10) {
  91. LOG_DEBUG("retrying (%d) writing to socket", ++try);
  92. usleep(1000);
  93. continue;
  94. }
  95. LOG_INFO("failed writing to socket: %s", strerror(last_error()));
  96. return;
  97. }
  98. ptr += n;
  99. len -= n;
  100. }
  101. }
  102. static void sendHELO(bool reconnect, const char *fixed_cap, const char *var_cap, u8_t mac[6]) {
  103. #ifndef BASE_CAP
  104. #define BASE_CAP "Model=squeezelite,AccuratePlayPoints=1,HasDigitalOut=1,HasPolarityInversion=1,Firmware=" VERSION
  105. #endif
  106. #define SSL_CAP "CanHTTPS=1"
  107. const char *base_cap;
  108. struct HELO_packet pkt;
  109. #if USE_SSL
  110. #if !LINKALL && !NO_SSLSYM
  111. if (ssl_loaded) base_cap = SSL_CAP "," BASE_CAP;
  112. else base_cap = BASE_CAP;
  113. #endif
  114. base_cap = SSL_CAP "," BASE_CAP;
  115. #else
  116. base_cap = BASE_CAP;
  117. #endif
  118. if (!reconnect) player_id = PLAYER_ID;
  119. memset(&pkt, 0, sizeof(pkt));
  120. memcpy(&pkt.opcode, "HELO", 4);
  121. pkt.length = htonl(sizeof(struct HELO_packet) - 8 + strlen(base_cap) + strlen(fixed_cap) + strlen(var_cap));
  122. pkt.deviceid = player_id;
  123. pkt.revision = 0;
  124. packn(&pkt.wlan_channellist, reconnect ? 0x4000 : 0x0000);
  125. packN(&pkt.bytes_received_H, (u64_t)status.stream_bytes >> 32);
  126. packN(&pkt.bytes_received_L, (u64_t)status.stream_bytes & 0xffffffff);
  127. memcpy(pkt.mac, mac, 6);
  128. LOG_INFO("mac: %02x:%02x:%02x:%02x:%02x:%02x", pkt.mac[0], pkt.mac[1], pkt.mac[2], pkt.mac[3], pkt.mac[4], pkt.mac[5]);
  129. LOG_INFO("cap: %s%s%s", base_cap, fixed_cap, var_cap);
  130. send_packet((u8_t *)&pkt, sizeof(pkt));
  131. send_packet((u8_t *)base_cap, strlen(base_cap));
  132. send_packet((u8_t *)fixed_cap, strlen(fixed_cap));
  133. send_packet((u8_t *)var_cap, strlen(var_cap));
  134. }
  135. static void sendSTAT(const char *event, u32_t server_timestamp) {
  136. struct STAT_packet pkt;
  137. u32_t now = gettime_ms();
  138. u32_t ms_played;
  139. if (status.current_sample_rate && status.frames_played && status.frames_played > status.device_frames) {
  140. ms_played = (u32_t)(((u64_t)(status.frames_played - status.device_frames) * (u64_t)1000) / (u64_t)status.current_sample_rate);
  141. if (now > status.updated) ms_played += (now - status.updated);
  142. LOG_SDEBUG("ms_played: %u (frames_played: %u device_frames: %u)", ms_played, status.frames_played, status.device_frames);
  143. } else if (status.frames_played && now > status.stream_start) {
  144. ms_played = now - status.stream_start;
  145. LOG_SDEBUG("ms_played: %u using elapsed time (frames_played: %u device_frames: %u)", ms_played, status.frames_played, status.device_frames);
  146. } else {
  147. LOG_SDEBUG("ms_played: 0");
  148. ms_played = 0;
  149. }
  150. memset(&pkt, 0, sizeof(struct STAT_packet));
  151. memcpy(&pkt.opcode, "STAT", 4);
  152. pkt.length = htonl(sizeof(struct STAT_packet) - 8);
  153. memcpy(&pkt.event, event, 4);
  154. // num_crlf
  155. // mas_initialized; mas_mode;
  156. packN(&pkt.stream_buffer_fullness, status.stream_full);
  157. packN(&pkt.stream_buffer_size, status.stream_size);
  158. packN(&pkt.bytes_received_H, (u64_t)status.stream_bytes >> 32);
  159. packN(&pkt.bytes_received_L, (u64_t)status.stream_bytes & 0xffffffff);
  160. pkt.signal_strength = 0xffff;
  161. packN(&pkt.jiffies, now);
  162. packN(&pkt.output_buffer_size, status.output_size);
  163. packN(&pkt.output_buffer_fullness, status.output_full);
  164. packN(&pkt.elapsed_seconds, ms_played / 1000);
  165. // voltage;
  166. packN(&pkt.elapsed_milliseconds, ms_played);
  167. pkt.server_timestamp = server_timestamp; // keep this is server format - don't unpack/pack
  168. // error_code;
  169. LOG_DEBUG("STAT: %s", event);
  170. if (loglevel == lSDEBUG) {
  171. LOG_SDEBUG("received bytesL: %u streambuf: %u outputbuf: %u calc elapsed: %u real elapsed: %u (diff: %d) device: %u delay: %d",
  172. (u32_t)status.stream_bytes, status.stream_full, status.output_full, ms_played, now - status.stream_start,
  173. ms_played - now + status.stream_start, status.device_frames * 1000 / status.current_sample_rate, now - status.updated);
  174. }
  175. send_packet((u8_t *)&pkt, sizeof(pkt));
  176. }
  177. static void sendDSCO(disconnect_code disconnect) {
  178. struct DSCO_packet pkt;
  179. memset(&pkt, 0, sizeof(pkt));
  180. memcpy(&pkt.opcode, "DSCO", 4);
  181. pkt.length = htonl(sizeof(pkt) - 8);
  182. pkt.reason = disconnect & 0xFF;
  183. LOG_DEBUG("DSCO: %d", disconnect);
  184. send_packet((u8_t *)&pkt, sizeof(pkt));
  185. }
  186. static void sendRESP(const char *header, size_t len) {
  187. struct RESP_header pkt_header;
  188. memset(&pkt_header, 0, sizeof(pkt_header));
  189. memcpy(&pkt_header.opcode, "RESP", 4);
  190. pkt_header.length = htonl(sizeof(pkt_header) + len - 8);
  191. LOG_DEBUG("RESP");
  192. send_packet((u8_t *)&pkt_header, sizeof(pkt_header));
  193. send_packet((u8_t *)header, len);
  194. }
  195. static void sendMETA(const char *meta, size_t len) {
  196. struct META_header pkt_header;
  197. memset(&pkt_header, 0, sizeof(pkt_header));
  198. memcpy(&pkt_header.opcode, "META", 4);
  199. pkt_header.length = htonl(sizeof(pkt_header) + len - 8);
  200. LOG_DEBUG("META");
  201. send_packet((u8_t *)&pkt_header, sizeof(pkt_header));
  202. send_packet((u8_t *)meta, len);
  203. }
  204. static void sendSETDName(const char *name) {
  205. struct SETD_header pkt_header;
  206. memset(&pkt_header, 0, sizeof(pkt_header));
  207. memcpy(&pkt_header.opcode, "SETD", 4);
  208. pkt_header.id = 0; // id 0 is playername S:P:Squeezebox2
  209. pkt_header.length = htonl(sizeof(pkt_header) + strlen(name) + 1 - 8);
  210. LOG_DEBUG("set playername: %s", name);
  211. send_packet((u8_t *)&pkt_header, sizeof(pkt_header));
  212. send_packet((u8_t *)name, strlen(name) + 1);
  213. }
  214. #if IR
  215. void sendIR(u32_t code, u32_t ts) {
  216. struct IR_packet pkt;
  217. memset(&pkt, 0, sizeof(pkt));
  218. memcpy(&pkt.opcode, "IR ", 4);
  219. pkt.length = htonl(sizeof(pkt) - 8);
  220. packN(&pkt.jiffies, ts);
  221. pkt.ir_code = htonl(code);
  222. LOG_DEBUG("IR: ir code: 0x%x ts: %u", code, ts);
  223. send_packet((u8_t *)&pkt, sizeof(pkt));
  224. }
  225. #endif
  226. static void process_strm(u8_t *pkt, int len) {
  227. struct strm_packet *strm = (struct strm_packet *)pkt;
  228. LOG_DEBUG("strm command %c", strm->command);
  229. switch(strm->command) {
  230. case 't':
  231. sendSTAT("STMt", strm->replay_gain); // STMt replay_gain is no longer used to track latency, but support it
  232. break;
  233. case 'q':
  234. decode_flush();
  235. if (!output.external) output_flush();
  236. status.frames_played = 0;
  237. stream_disconnect();
  238. sendSTAT("STMf", 0);
  239. buf_flush(streambuf);
  240. break;
  241. case 'f':
  242. decode_flush();
  243. if (!output.external) output_flush();
  244. status.frames_played = 0;
  245. if (stream_disconnect()) {
  246. sendSTAT("STMf", 0);
  247. }
  248. buf_flush(streambuf);
  249. break;
  250. case 'p':
  251. {
  252. unsigned interval = unpackN(&strm->replay_gain);
  253. LOCK_O;
  254. output.pause_frames = interval * status.current_sample_rate / 1000;
  255. if (interval) {
  256. output.state = OUTPUT_PAUSE_FRAMES;
  257. } else {
  258. output.state = OUTPUT_STOPPED;
  259. output.stop_time = gettime_ms();
  260. }
  261. UNLOCK_O;
  262. if (!interval) sendSTAT("STMp", 0);
  263. LOG_DEBUG("pause interval: %u", interval);
  264. }
  265. break;
  266. case 'a':
  267. {
  268. unsigned interval = unpackN(&strm->replay_gain);
  269. LOCK_O;
  270. output.skip_frames = interval * status.current_sample_rate / 1000;
  271. output.state = OUTPUT_SKIP_FRAMES;
  272. UNLOCK_O;
  273. LOG_DEBUG("skip ahead interval: %u", interval);
  274. }
  275. break;
  276. case 'u':
  277. {
  278. unsigned jiffies = unpackN(&strm->replay_gain);
  279. LOCK_O;
  280. output.state = jiffies ? OUTPUT_START_AT : OUTPUT_RUNNING;
  281. output.start_at = jiffies;
  282. UNLOCK_O;
  283. LOG_DEBUG("unpause at: %u now: %u", jiffies, gettime_ms());
  284. sendSTAT("STMr", 0);
  285. }
  286. break;
  287. case 's':
  288. {
  289. unsigned header_len = len - sizeof(struct strm_packet);
  290. char *header = (char *)(pkt + sizeof(struct strm_packet));
  291. in_addr_t ip = (in_addr_t)strm->server_ip; // keep in network byte order
  292. u16_t port = strm->server_port; // keep in network byte order
  293. if (ip == 0) ip = slimproto_ip;
  294. LOG_DEBUG("strm s autostart: %c transition period: %u transition type: %u codec: %c",
  295. strm->autostart, strm->transition_period, strm->transition_type - '0', strm->format);
  296. autostart = strm->autostart - '0';
  297. sendSTAT("STMf", 0);
  298. if (header_len > MAX_HEADER -1) {
  299. LOG_WARN("header too long: %u", header_len);
  300. break;
  301. }
  302. if (strm->format != '?') {
  303. codec_open(strm->format, strm->pcm_sample_size, strm->pcm_sample_rate, strm->pcm_channels, strm->pcm_endianness);
  304. } else if (autostart >= 2) {
  305. // extension to slimproto to allow server to detect codec from response header and send back in codc message
  306. LOG_DEBUG("streaming unknown codec");
  307. } else {
  308. LOG_WARN("unknown codec requires autostart >= 2");
  309. break;
  310. }
  311. if (ip == LOCAL_PLAYER_IP && port == LOCAL_PLAYER_PORT) {
  312. // extension to slimproto for LocalPlayer - header is filename not http header, don't expect cont
  313. stream_file(header, header_len, strm->threshold * 1024);
  314. autostart -= 2;
  315. } else {
  316. stream_sock(ip, port, header, header_len, strm->threshold * 1024, autostart >= 2);
  317. }
  318. sendSTAT("STMc", 0);
  319. sentSTMu = sentSTMo = sentSTMl = false;
  320. LOCK_O;
  321. #if EMBEDDED
  322. if (output.external) decode_resume(output.external);
  323. output.external = 0;
  324. _buf_resize(outputbuf, output.init_size);
  325. #endif
  326. output.threshold = strm->output_threshold;
  327. output.next_replay_gain = unpackN(&strm->replay_gain);
  328. output.fade_mode = strm->transition_type - '0';
  329. output.fade_secs = strm->transition_period;
  330. output.invert = (strm->flags & 0x03) == 0x03;
  331. LOG_DEBUG("set fade mode: %u", output.fade_mode);
  332. UNLOCK_O;
  333. }
  334. break;
  335. default:
  336. LOG_WARN("unhandled strm %c", strm->command);
  337. break;
  338. }
  339. }
  340. static void process_cont(u8_t *pkt, int len) {
  341. struct cont_packet *cont = (struct cont_packet *)pkt;
  342. cont->metaint = unpackN(&cont->metaint);
  343. LOG_DEBUG("cont metaint: %u loop: %u", cont->metaint, cont->loop);
  344. if (autostart > 1) {
  345. autostart -= 2;
  346. LOCK_S;
  347. if (stream.state == STREAMING_WAIT) {
  348. stream.state = STREAMING_BUFFERING;
  349. stream.meta_interval = stream.meta_next = cont->metaint;
  350. }
  351. UNLOCK_S;
  352. wake_controller();
  353. }
  354. }
  355. static void process_codc(u8_t *pkt, int len) {
  356. struct codc_packet *codc = (struct codc_packet *)pkt;
  357. LOG_DEBUG("codc: %c", codc->format);
  358. codec_open(codc->format, codc->pcm_sample_size, codc->pcm_sample_rate, codc->pcm_channels, codc->pcm_endianness);
  359. }
  360. static void process_aude(u8_t *pkt, int len) {
  361. struct aude_packet *aude = (struct aude_packet *)pkt;
  362. LOG_DEBUG("enable spdif: %d dac: %d", aude->enable_spdif, aude->enable_dac);
  363. LOCK_O;
  364. if (!aude->enable_spdif && output.state != OUTPUT_OFF) {
  365. output.state = OUTPUT_OFF;
  366. }
  367. if (aude->enable_spdif && output.state == OUTPUT_OFF && !output.idle_to) {
  368. output.state = OUTPUT_STOPPED;
  369. output.stop_time = gettime_ms();
  370. }
  371. UNLOCK_O;
  372. }
  373. static void process_audg(u8_t *pkt, int len) {
  374. struct audg_packet *audg = (struct audg_packet *)pkt;
  375. audg->gainL = unpackN(&audg->gainL);
  376. audg->gainR = unpackN(&audg->gainR);
  377. LOG_DEBUG("audg gainL: %u gainR: %u adjust: %u", audg->gainL, audg->gainR, audg->adjust);
  378. set_volume(audg->adjust ? audg->gainL : FIXED_ONE, audg->adjust ? audg->gainR : FIXED_ONE);
  379. }
  380. static void process_dsco(u8_t *pkt, int len) {
  381. LOG_INFO("got DSCO, switching from id %u to 12", (int) player_id);
  382. player_id = 12;
  383. }
  384. static void process_setd(u8_t *pkt, int len) {
  385. struct setd_packet *setd = (struct setd_packet *)pkt;
  386. // handle player name query and change
  387. if (setd->id == 0) {
  388. if (len == 5) {
  389. if (strlen(player_name)) {
  390. sendSETDName(player_name);
  391. }
  392. } else if (len > 5) {
  393. strncpy(player_name, setd->data, PLAYER_NAME_LEN);
  394. player_name[PLAYER_NAME_LEN] = '\0';
  395. LOG_INFO("set name: %s", setd->data);
  396. // confirm change to server
  397. sendSETDName(setd->data);
  398. // write name to name_file if -N option set
  399. if (name_file) {
  400. FILE *fp = fopen(name_file, "w");
  401. if (fp) {
  402. LOG_INFO("storing name in %s", name_file);
  403. fputs(player_name, fp);
  404. fclose(fp);
  405. } else {
  406. LOG_WARN("unable to store new name in %s", name_file);
  407. }
  408. }
  409. }
  410. }
  411. }
  412. #define SYNC_CAP ",SyncgroupID="
  413. #define SYNC_CAP_LEN 13
  414. static void process_serv(u8_t *pkt, int len) {
  415. struct serv_packet *serv = (struct serv_packet *)pkt;
  416. unsigned slimproto_port = 0;
  417. char squeezeserver[] = SQUEEZENETWORK;
  418. if(pkt[4] == 0 && pkt[5] == 0 && pkt[6] == 0 && pkt[7] == 1) {
  419. server_addr(squeezeserver, &new_server, &slimproto_port);
  420. } else {
  421. new_server = serv->server_ip;
  422. }
  423. LOG_INFO("switch server");
  424. if (len - sizeof(struct serv_packet) == 10) {
  425. if (!new_server_cap) {
  426. new_server_cap = malloc(SYNC_CAP_LEN + 10 + 1);
  427. }
  428. new_server_cap[0] = '\0';
  429. strcat(new_server_cap, SYNC_CAP);
  430. strncat(new_server_cap, (const char *)(pkt + sizeof(struct serv_packet)), 10);
  431. } else {
  432. if (new_server_cap) {
  433. free(new_server_cap);
  434. new_server_cap = NULL;
  435. }
  436. }
  437. }
  438. struct handler {
  439. char opcode[5];
  440. void (*handler)(u8_t *, int);
  441. };
  442. static struct handler handlers[] = {
  443. { "strm", process_strm },
  444. { "cont", process_cont },
  445. { "codc", process_codc },
  446. { "aude", process_aude },
  447. { "audg", process_audg },
  448. { "setd", process_setd },
  449. { "serv", process_serv },
  450. { "dsco", process_dsco },
  451. { "", NULL },
  452. };
  453. static void process(u8_t *pack, int len) {
  454. struct handler *h = handlers;
  455. while (h->handler && strncmp((char *)pack, h->opcode, 4)) { h++; }
  456. if (h->handler) {
  457. LOG_DEBUG("%s", h->opcode);
  458. h->handler(pack, len);
  459. } else if (!slimp_handler || !(*slimp_handler)(pack, len)) {
  460. pack[4] = '\0';
  461. LOG_WARN("unhandled %s", (char *)pack);
  462. }
  463. }
  464. static bool running;
  465. static void slimproto_run() {
  466. static u8_t EXT_BSS buffer[MAXBUF];
  467. int expect = 0;
  468. int got = 0;
  469. u32_t now;
  470. static u32_t last = 0;
  471. event_handle ehandles[2];
  472. int timeouts = 0;
  473. set_readwake_handles(ehandles, sock, wake_e);
  474. while (running && !new_server) {
  475. bool wake = false;
  476. event_type ev;
  477. if ((ev = wait_readwake(ehandles, 1000)) != EVENT_TIMEOUT) {
  478. if (ev == EVENT_READ) {
  479. if (expect > 0) {
  480. int n = recv(sock, buffer + got, expect, 0);
  481. if (n <= 0) {
  482. if (n < 0 && last_error() == ERROR_WOULDBLOCK) {
  483. continue;
  484. }
  485. LOG_INFO("error reading from socket: %s", n ? strerror(last_error()) : "closed");
  486. return;
  487. }
  488. expect -= n;
  489. got += n;
  490. if (expect == 0) {
  491. process(buffer, got);
  492. got = 0;
  493. }
  494. } else if (expect == 0) {
  495. int n = recv(sock, buffer + got, 2 - got, 0);
  496. if (n <= 0) {
  497. if (n < 0 && last_error() == ERROR_WOULDBLOCK) {
  498. continue;
  499. }
  500. LOG_INFO("error reading from socket: %s", n ? strerror(last_error()) : "closed");
  501. return;
  502. }
  503. got += n;
  504. if (got == 2) {
  505. expect = buffer[0] << 8 | buffer[1]; // length pack 'n'
  506. got = 0;
  507. if (expect > MAXBUF) {
  508. LOG_ERROR("FATAL: slimproto packet too big: %d > %d", expect, MAXBUF);
  509. return;
  510. }
  511. }
  512. } else {
  513. LOG_ERROR("FATAL: negative expect");
  514. return;
  515. }
  516. }
  517. if (ev == EVENT_WAKE) {
  518. wake = true;
  519. }
  520. timeouts = 0;
  521. } else if (++timeouts > 35) {
  522. // expect message from server every 5 seconds, but 30 seconds on mysb.com so timeout after 35 seconds
  523. LOG_INFO("No messages from server - connection dead");
  524. return;
  525. }
  526. // update playback state when woken or every 100ms
  527. now = gettime_ms();
  528. if (wake || now - last > 100 || last > now) {
  529. bool _sendSTMs = false;
  530. bool _sendDSCO = false;
  531. bool _sendRESP = false;
  532. bool _sendMETA = false;
  533. bool _sendSTMd = false;
  534. bool _sendSTMt = false;
  535. bool _sendSTMl = false;
  536. bool _sendSTMu = false;
  537. bool _sendSTMo = false;
  538. bool _sendSTMn = false;
  539. bool _stream_disconnect = false;
  540. bool _start_output = false;
  541. decode_state _decode_state;
  542. disconnect_code disconnect_code;
  543. static char EXT_BSS header[MAX_HEADER];
  544. size_t header_len = 0;
  545. #if IR
  546. bool _sendIR = false;
  547. u32_t ir_code, ir_ts;
  548. #endif
  549. last = now;
  550. LOCK_S;
  551. status.stream_full = _buf_used(streambuf);
  552. status.stream_size = streambuf->size;
  553. status.stream_bytes = stream.bytes;
  554. status.stream_state = stream.state;
  555. if (stream.state == DISCONNECT) {
  556. disconnect_code = stream.disconnect;
  557. stream.state = STOPPED;
  558. _sendDSCO = true;
  559. }
  560. if (!stream.sent_headers &&
  561. (stream.state == STREAMING_HTTP || stream.state == STREAMING_WAIT || stream.state == STREAMING_BUFFERING)) {
  562. header_len = stream.header_len;
  563. memcpy(header, stream.header, header_len);
  564. _sendRESP = true;
  565. stream.sent_headers = true;
  566. }
  567. if (stream.meta_send) {
  568. header_len = stream.header_len;
  569. memcpy(header, stream.header, header_len);
  570. _sendMETA = true;
  571. stream.meta_send = false;
  572. }
  573. UNLOCK_S;
  574. LOCK_D;
  575. if ((status.stream_state == STREAMING_HTTP || status.stream_state == STREAMING_FILE ||
  576. (status.stream_state == DISCONNECT && stream.disconnect == DISCONNECT_OK)) &&
  577. !sentSTMl && decode.state == DECODE_READY) {
  578. if (autostart == 0) {
  579. decode.state = DECODE_RUNNING;
  580. _sendSTMl = true;
  581. sentSTMl = true;
  582. } else if (autostart == 1) {
  583. decode.state = DECODE_RUNNING;
  584. _start_output = true;
  585. }
  586. // autostart 2 and 3 require cont to be received first
  587. }
  588. if (decode.state == DECODE_COMPLETE || decode.state == DECODE_ERROR) {
  589. if (decode.state == DECODE_COMPLETE) _sendSTMd = true;
  590. if (decode.state == DECODE_ERROR) _sendSTMn = true;
  591. decode.state = DECODE_STOPPED;
  592. if (status.stream_state == STREAMING_HTTP || status.stream_state == STREAMING_FILE) {
  593. _stream_disconnect = true;
  594. }
  595. }
  596. _decode_state = decode.state;
  597. UNLOCK_D;
  598. LOCK_O;
  599. status.output_full = _buf_used(outputbuf);
  600. status.output_size = outputbuf->size;
  601. status.frames_played = output.frames_played_dmp;
  602. status.current_sample_rate = output.current_sample_rate;
  603. status.updated = output.updated;
  604. status.device_frames = output.device_frames;
  605. if (output.track_started) {
  606. _sendSTMs = true;
  607. output.track_started = false;
  608. status.stream_start = output.track_start_time;
  609. }
  610. #if PORTAUDIO
  611. if (output.pa_reopen) {
  612. _pa_open();
  613. output.pa_reopen = false;
  614. }
  615. #endif
  616. if (_start_output && (output.state == OUTPUT_STOPPED || output.state == OUTPUT_OFF)) {
  617. output.state = OUTPUT_BUFFER;
  618. }
  619. if (!output.external && output.state == OUTPUT_RUNNING && !sentSTMu && status.output_full == 0 && status.stream_state <= DISCONNECT &&
  620. _decode_state == DECODE_STOPPED) {
  621. _sendSTMu = true;
  622. sentSTMu = true;
  623. LOG_DEBUG("output underrun");
  624. output.state = OUTPUT_STOPPED;
  625. output.stop_time = now;
  626. }
  627. if (output.state == OUTPUT_RUNNING && !sentSTMo && status.output_full == 0 && status.stream_state == STREAMING_HTTP) {
  628. _sendSTMo = true;
  629. sentSTMo = true;
  630. }
  631. if (output.state == OUTPUT_STOPPED && output.idle_to && (now - output.stop_time > output.idle_to)) {
  632. output.state = OUTPUT_OFF;
  633. LOG_DEBUG("output timeout");
  634. }
  635. if (!output.external && output.state == OUTPUT_RUNNING && now - status.last > 1000) {
  636. _sendSTMt = true;
  637. status.last = now;
  638. }
  639. UNLOCK_O;
  640. #if IR
  641. LOCK_I;
  642. if (ir.code) {
  643. _sendIR = true;
  644. ir_code = ir.code;
  645. ir_ts = ir.ts;
  646. ir.code = 0;
  647. }
  648. UNLOCK_I;
  649. #endif
  650. if (_stream_disconnect) stream_disconnect();
  651. // send packets once locks released as packet sending can block
  652. if (_sendDSCO) sendDSCO(disconnect_code);
  653. if (_sendSTMs) sendSTAT("STMs", 0);
  654. if (_sendSTMd) sendSTAT("STMd", 0);
  655. if (_sendSTMt) sendSTAT("STMt", 0);
  656. if (_sendSTMl) sendSTAT("STMl", 0);
  657. if (_sendSTMu) sendSTAT("STMu", 0);
  658. if (_sendSTMo) sendSTAT("STMo", 0);
  659. if (_sendSTMn) sendSTAT("STMn", 0);
  660. if (_sendRESP) sendRESP(header, header_len);
  661. if (_sendMETA) sendMETA(header, header_len);
  662. #if IR
  663. if (_sendIR) sendIR(ir_code, ir_ts);
  664. #endif
  665. }
  666. }
  667. }
  668. // called from other threads to wake state machine above
  669. void wake_controller(void) {
  670. wake_signal(wake_e);
  671. }
  672. in_addr_t discover_server(char *default_server) {
  673. struct sockaddr_in d;
  674. struct sockaddr_in s;
  675. char buf[32], port_d[] = "JSON", clip_d[] = "CLIP";
  676. struct pollfd pollinfo;
  677. unsigned port;
  678. u8_t len;
  679. int disc_sock = socket(AF_INET, SOCK_DGRAM, 0);
  680. socklen_t enable = 1;
  681. setsockopt(disc_sock, SOL_SOCKET, SO_BROADCAST, (const void *)&enable, sizeof(enable));
  682. len = sprintf(buf,"e%s%c%s", port_d, '\0', clip_d) + 1;
  683. memset(&d, 0, sizeof(d));
  684. d.sin_family = AF_INET;
  685. d.sin_port = htons(PORT);
  686. d.sin_addr.s_addr = htonl(INADDR_BROADCAST);
  687. pollinfo.fd = disc_sock;
  688. pollinfo.events = POLLIN;
  689. do {
  690. LOG_INFO("sending discovery");
  691. memset(&s, 0, sizeof(s));
  692. if (sendto(disc_sock, buf, len, 0, (struct sockaddr *)&d, sizeof(d)) < 0) {
  693. LOG_INFO("error sending disovery");
  694. }
  695. if (poll(&pollinfo, 1, 5000) == 1) {
  696. char readbuf[32], *p;
  697. socklen_t slen = sizeof(s);
  698. memset(readbuf, 0, 32);
  699. recvfrom(disc_sock, readbuf, 32 - 1, 0, (struct sockaddr *)&s, &slen);
  700. LOG_INFO("got response from: %s:%d", inet_ntoa(s.sin_addr), ntohs(s.sin_port));
  701. if ((p = strstr(readbuf, port_d)) != NULL) {
  702. p += strlen(port_d);
  703. slimproto_hport = atoi(p + 1);
  704. }
  705. if ((p = strstr(readbuf, clip_d)) != NULL) {
  706. p += strlen(clip_d);
  707. slimproto_cport = atoi(p + 1);
  708. }
  709. }
  710. if (default_server) {
  711. server_addr(default_server, &s.sin_addr.s_addr, &port);
  712. }
  713. } while (s.sin_addr.s_addr == 0 && running);
  714. closesocket(disc_sock);
  715. return s.sin_addr.s_addr;
  716. }
  717. #define FIXED_CAP_LEN 256
  718. #define VAR_CAP_LEN 128
  719. void slimproto(log_level level, char *server, u8_t mac[6], const char *name, const char *namefile, const char *modelname, int maxSampleRate) {
  720. struct sockaddr_in serv_addr;
  721. static char fixed_cap[FIXED_CAP_LEN], var_cap[VAR_CAP_LEN] = "";
  722. bool reconnect = false;
  723. unsigned failed_connect = 0;
  724. unsigned slimproto_port = 0;
  725. in_addr_t previous_server = 0;
  726. int i;
  727. memset(&status, 0, sizeof(status));
  728. wake_create(wake_e);
  729. loglevel = level;
  730. running = true;
  731. if (server) {
  732. server_addr(server, &slimproto_ip, &slimproto_port);
  733. }
  734. if (!slimproto_ip) {
  735. slimproto_ip = discover_server(server);
  736. }
  737. if (!slimproto_port) {
  738. slimproto_port = PORT;
  739. }
  740. if (name) {
  741. strncpy(player_name, name, PLAYER_NAME_LEN);
  742. player_name[PLAYER_NAME_LEN] = '\0';
  743. }
  744. if (namefile) {
  745. FILE *fp;
  746. name_file = namefile;
  747. fp = fopen(namefile, "r");
  748. if (fp) {
  749. if (!fgets(player_name, PLAYER_NAME_LEN, fp)) {
  750. player_name[PLAYER_NAME_LEN] = '\0';
  751. } else {
  752. // strip any \n from fgets response
  753. int len = strlen(player_name);
  754. if (len > 0 && player_name[len - 1] == '\n') {
  755. player_name[len - 1] = '\0';
  756. }
  757. LOG_INFO("retrieved name %s from %s", player_name, name_file);
  758. }
  759. fclose(fp);
  760. }
  761. }
  762. if (!running) return;
  763. LOCK_O;
  764. snprintf(fixed_cap, FIXED_CAP_LEN, ",ModelName=%s,MaxSampleRate=%u", modelname ? modelname : MODEL_NAME_STRING,
  765. ((maxSampleRate > 0) ? maxSampleRate : output.supported_rates[0]));
  766. for (i = 0; i < MAX_CODECS; i++) {
  767. if (codecs[i] && codecs[i]->id && strlen(fixed_cap) < FIXED_CAP_LEN - 10) {
  768. strcat(fixed_cap, ",");
  769. strcat(fixed_cap, codecs[i]->types);
  770. }
  771. }
  772. UNLOCK_O;
  773. memset(&serv_addr, 0, sizeof(serv_addr));
  774. serv_addr.sin_family = AF_INET;
  775. serv_addr.sin_addr.s_addr = slimproto_ip;
  776. serv_addr.sin_port = htons(slimproto_port);
  777. LOG_INFO("connecting to %s:%d", inet_ntoa(serv_addr.sin_addr), ntohs(serv_addr.sin_port));
  778. new_server = 0;
  779. while (running) {
  780. if (new_server) {
  781. previous_server = slimproto_ip;
  782. slimproto_ip = serv_addr.sin_addr.s_addr = new_server;
  783. LOG_INFO("switching server to %s:%d", inet_ntoa(serv_addr.sin_addr), ntohs(serv_addr.sin_port));
  784. new_server = 0;
  785. reconnect = false;
  786. }
  787. sock = socket(AF_INET, SOCK_STREAM, 0);
  788. set_nonblock(sock);
  789. set_nosigpipe(sock);
  790. if (connect_timeout(sock, (struct sockaddr *) &serv_addr, sizeof(serv_addr), 5) != 0) {
  791. if (previous_server) {
  792. slimproto_ip = serv_addr.sin_addr.s_addr = previous_server;
  793. LOG_INFO("new server not reachable, reverting to previous server %s:%d", inet_ntoa(serv_addr.sin_addr), ntohs(serv_addr.sin_port));
  794. } else {
  795. LOG_INFO("unable to connect to server %u", failed_connect);
  796. sleep(5);
  797. }
  798. // rediscover server if it was not set at startup
  799. if (!server && ++failed_connect > 5) {
  800. slimproto_ip = serv_addr.sin_addr.s_addr = discover_server(NULL);
  801. }
  802. } else {
  803. struct sockaddr_in our_addr;
  804. socklen_t len;
  805. LOG_INFO("connected");
  806. var_cap[0] = '\0';
  807. failed_connect = 0;
  808. // check if this is a local player now we are connected & signal to server via 'loc' format
  809. // this requires LocalPlayer server plugin to enable direct file access
  810. len = sizeof(our_addr);
  811. getsockname(sock, (struct sockaddr *) &our_addr, &len);
  812. if (our_addr.sin_addr.s_addr == serv_addr.sin_addr.s_addr) {
  813. LOG_INFO("local player");
  814. strcat(var_cap, ",loc");
  815. }
  816. // add on any capablity to be sent to the new server
  817. if (new_server_cap) {
  818. strcat(var_cap, new_server_cap);
  819. free(new_server_cap);
  820. new_server_cap = NULL;
  821. }
  822. sendHELO(reconnect, fixed_cap, var_cap, mac);
  823. #if EMBEDDED
  824. if (server_notify) (*server_notify)(slimproto_ip, slimproto_hport, slimproto_cport);
  825. #endif
  826. slimproto_run();
  827. if (!reconnect) {
  828. reconnect = true;
  829. }
  830. usleep(100000);
  831. }
  832. previous_server = 0;
  833. closesocket(sock);
  834. }
  835. }
  836. void slimproto_stop(void) {
  837. LOG_INFO("slimproto stop");
  838. running = false;
  839. }