2
0

slimproto.c 26 KB

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