2
0

slimproto.c 29 KB

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