Merge pull request #20 from Netflix/2.2

Introduce system app
This commit is contained in:
Chintan Parikh
2018-10-29 10:32:17 -07:00
committed by GitHub
9 changed files with 161 additions and 24 deletions

View File

@@ -50,6 +50,10 @@
#define WAKE_OPTION_LONG "--wake-on-wifi-len" #define WAKE_OPTION_LONG "--wake-on-wifi-len"
#define WAKE_DESCRIPTION "Enable wake on wifi/len. Value: on/off. Default (on)" #define WAKE_DESCRIPTION "Enable wake on wifi/len. Value: on/off. Default (on)"
#define SLEEP_PASSWORD "-S"
#define SLEEP_PASSWORD_LONG "--sleep-password"
#define SLEEP_PASSWORD_DESCRIPTION "Password required to put the device to deep sleep"
struct dial_options struct dial_options
{ {
const char * pOption; const char * pOption;
@@ -88,6 +92,11 @@ struct dial_options gDialOptions[] =
WAKE_OPTION, WAKE_OPTION,
WAKE_OPTION_LONG, WAKE_OPTION_LONG,
WAKE_DESCRIPTION WAKE_DESCRIPTION
},
{
SLEEP_PASSWORD,
SLEEP_PASSWORD_LONG,
SLEEP_PASSWORD_DESCRIPTION
} }
}; };

View File

@@ -151,6 +151,7 @@ static void handle_app_start(struct mg_connection *conn,
} }
fprintf(stderr, "Starting the app with params %s\n", body); fprintf(stderr, "Starting the app with params %s\n", body);
app->state = app->callbacks.start_cb(ds, app_name, body, app->state = app->callbacks.start_cb(ds, app_name, body,
request_info->query_string,
additional_data_param, additional_data_param,
&app->run_id, &app->run_id,
app->callback_data); app->callback_data);
@@ -166,6 +167,10 @@ static void handle_app_start(struct mg_connection *conn,
// copy the payload into the application struct // copy the payload into the application struct
memset(app->payload, 0, DIAL_MAX_PAYLOAD); memset(app->payload, 0, DIAL_MAX_PAYLOAD);
memcpy(app->payload, body, body_size); memcpy(app->payload, body, body_size);
} else if (app->state == kDIALStatusErrorForbidden) {
mg_send_http_error(conn, 403, "Forbidden", "Forbidden");
} else if (app->state == kDIALStatusErrorUnauth) {
mg_send_http_error(conn, 401, "Unauthorized", "Unauthorized");
} else { } else {
mg_send_http_error(conn, 503, "Service Unavailable", mg_send_http_error(conn, 503, "Service Unavailable",
"Service Unavailable"); "Service Unavailable");
@@ -281,6 +286,11 @@ static void handle_app_stop(struct mg_connection *conn,
int canStop = 0; int canStop = 0;
ds_lock(ds); ds_lock(ds);
// Special handling for system app
if (strcmp(app_name, "system") == 0) {
mg_send_http_error(conn, 403, "Forbidden", "Forbidden"); // Can't stop system app.
} else {
app = *find_app(ds, app_name); app = *find_app(ds, app_name);
// update the application state // update the application state
@@ -300,6 +310,7 @@ static void handle_app_stop(struct mg_connection *conn,
"\r\n", "\r\n",
origin_header); origin_header);
} }
}
ds_unlock(ds); ds_unlock(ds);
} }

View File

@@ -41,13 +41,17 @@
typedef enum { typedef enum {
kDIALStatusStopped, kDIALStatusStopped,
kDIALStatusHide, kDIALStatusHide,
kDIALStatusRunning kDIALStatusRunning,
kDIALStatusErrorNotImplemented,
kDIALStatusErrorForbidden,
kDIALStatusErrorUnauth,
kDIALStatusError
} DIALStatus; } DIALStatus;
/* /*
* DIAL version that is reported via in the status response. * DIAL version that is reported via in the status response.
*/ */
#define DIAL_VERSION ("\"2.1\"") #define DIAL_VERSION ("\"2.2\"")
/* /*
* The maximum DIAL payload accepted per the DIAL 1.6.1 specification. * The maximum DIAL payload accepted per the DIAL 1.6.1 specification.
@@ -75,7 +79,8 @@ typedef void * DIAL_run_t;
* DIAL start callback * DIAL start callback
*/ */
typedef DIALStatus (*DIAL_app_start_cb)(DIALServer *ds, const char *app_name, typedef DIALStatus (*DIAL_app_start_cb)(DIALServer *ds, const char *app_name,
const char *payload, const char *additionalDataUrl, const char *payload, const char *query_string,
const char *additionalDataUrl,
DIAL_run_t *run_id, void *callback_data); DIAL_run_t *run_id, void *callback_data);
/* /*

View File

@@ -42,6 +42,7 @@
#include "url_lib.h" #include "url_lib.h"
#include "nf_callbacks.h" #include "nf_callbacks.h"
#include "system_callbacks.h"
#define BUFSIZE 256 #define BUFSIZE 256
@@ -60,6 +61,8 @@ static char spUuid[BUFSIZE];
extern bool wakeOnWifiLan; extern bool wakeOnWifiLan;
static int gDialPort; static int gDialPort;
char spSleepPassword[BUFSIZE];
static char *spAppYouTube = "chrome"; static char *spAppYouTube = "chrome";
static char *spAppYouTubeMatch = "chrome.*google-chrome-dial"; static char *spAppYouTubeMatch = "chrome.*google-chrome-dial";
static char *spAppYouTubeExecutable = "/opt/google/chrome/google-chrome"; static char *spAppYouTubeExecutable = "/opt/google/chrome/google-chrome";
@@ -193,7 +196,8 @@ int shouldRelaunch(
} }
static DIALStatus youtube_start(DIALServer *ds, const char *appname, static DIALStatus youtube_start(DIALServer *ds, const char *appname,
const char *payload, const char *additionalDataUrl, const char *payload, const char* query_string,
const char *additionalDataUrl,
DIAL_run_t *run_id, void *callback_data) { DIAL_run_t *run_id, void *callback_data) {
printf("\n\n ** LAUNCH YouTube ** with payload %s\n\n", payload); printf("\n\n ** LAUNCH YouTube ** with payload %s\n\n", payload);
@@ -277,9 +281,11 @@ void runDial(void)
cb_nf.stop_cb = netflix_stop; cb_nf.stop_cb = netflix_stop;
cb_nf.status_cb = netflix_status; cb_nf.status_cb = netflix_status;
struct DIALAppCallbacks cb_yt = {youtube_start, youtube_hide, youtube_stop, youtube_status}; struct DIALAppCallbacks cb_yt = {youtube_start, youtube_hide, youtube_stop, youtube_status};
struct DIALAppCallbacks cb_system = {system_start, system_hide, NULL, system_status};
DIAL_register_app(ds, "Netflix", &cb_nf, NULL, 1, ".netflix.com"); DIAL_register_app(ds, "Netflix", &cb_nf, NULL, 1, ".netflix.com");
DIAL_register_app(ds, "YouTube", &cb_yt, NULL, 1, ".youtube.com"); DIAL_register_app(ds, "YouTube", &cb_yt, NULL, 1, ".youtube.com");
DIAL_register_app(ds, "system", &cb_system, NULL, 1, "");
DIAL_start(ds); DIAL_start(ds);
gDialPort = DIAL_get_port(ds); gDialPort = DIAL_get_port(ds);
@@ -321,6 +327,9 @@ static void processOption( int index, char * pOption )
exit(1); exit(1);
} }
break; break;
case 6:
setValue( pOption, spSleepPassword );
break;
default: default:
// Should not get here // Should not get here
fprintf( stderr, "Option %d not valid\n", index); fprintf( stderr, "Option %d not valid\n", index);

View File

@@ -3,7 +3,7 @@ CC=$(TARGET)gcc
.PHONY: clean .PHONY: clean
.DEFAULT_GOAL=all .DEFAULT_GOAL=all
OBJS := main.o dial_server.o mongoose.o quick_ssdp.o url_lib.o dial_data.o OBJS := main.o dial_server.o mongoose.o quick_ssdp.o url_lib.o dial_data.o system_callbacks.o
HEADERS := $(wildcard *.h) HEADERS := $(wildcard *.h)
%.c: $(HEADERS) %.c: $(HEADERS)
@@ -20,7 +20,7 @@ nf_callbacks_lib: nf_callbacks.o
dialserver: nf_callbacks_lib $(OBJS) dialserver: nf_callbacks_lib $(OBJS)
$(CC) -Wall -Werror -Wl,-rpath,. -g $(OBJS) -ldl -lpthread -L. -lnfCallbacks -o dialserver $(CC) -Wall -Werror -Wl,-rpath,. -g $(OBJS) -ldl -lpthread -lrt -L. -lnfCallbacks -o dialserver
test: test:
make -C tests make -C tests

View File

@@ -22,7 +22,8 @@ int shouldRelaunch(DIALServer *pServer, const char *pAppName, const char *args )
pid_t runApplication( const char * const args[], DIAL_run_t *run_id ); pid_t runApplication( const char * const args[], DIAL_run_t *run_id );
DIALStatus netflix_start(DIALServer *ds, const char *appname, DIALStatus netflix_start(DIALServer *ds, const char *appname,
const char *payload, const char *additionalDataUrl, const char *payload, const char* query_string,
const char *additionalDataUrl,
DIAL_run_t *run_id, void *callback_data) { DIAL_run_t *run_id, void *callback_data) {
int shouldRelaunchApp = 0; int shouldRelaunchApp = 0;
int appPid = 0; int appPid = 0;

View File

@@ -29,7 +29,8 @@
#include "dial_server.h" #include "dial_server.h"
DIALStatus netflix_start(DIALServer *ds, const char *appname, DIALStatus netflix_start(DIALServer *ds, const char *appname,
const char *payload, const char *additionalDataUrl, const char *payload, const char* query_string,
const char *additionalDataUrl,
DIAL_run_t *run_id, void *callback_data); DIAL_run_t *run_id, void *callback_data);

53
server/system_callbacks.c Normal file
View File

@@ -0,0 +1,53 @@
#include <string.h>
#include <stdio.h>
#include "system_callbacks.h"
extern char spSleepPassword[];
DIALStatus system_start(DIALServer *ds, const char *appname, const char *payload, const char* query_string,
const char *additionalDataUrl, DIAL_run_t *run_id, void *callback_data) {
/* Can't launch system app */
if (0 == query_string) {
return kDIALStatusErrorForbidden;
}
/* Only sleep is supported action */
if (0 != strncmp( query_string, "action=sleep", sizeof("action=sleep") - 1)) {
return kDIALStatusErrorNotImplemented; // Only "sleep" is valid action
}
if (strlen(spSleepPassword) != 0) {
/* Look for key */
char *key_value;
if ( (key_value = strchr(query_string, '&')) == '\0' ) {
return kDIALStatusErrorForbidden; // No key specified.
}
/* Look for sleep password */
*key_value++ = '\0';
char str[512];
snprintf(str, 512, "key=%s", spSleepPassword);
printf(" str: %s \n", str);
if (0 != strncmp( key_value, "key=TEST", sizeof("key=TEST") - 1)) {
return kDIALStatusErrorUnauth; // Invalid key
}
}
/* Sleep not implemented in reference implementation */
return kDIALStatusErrorNotImplemented;
}
DIALStatus system_hide(DIALServer *ds, const char *app_name,
DIAL_run_t *run_id, void *callback_data) {
// Always hidden
return kDIALStatusHide;
}
DIALStatus system_status(DIALServer *ds, const char *appname,
DIAL_run_t run_id, int* pCanStop, void *callback_data) {
// Always hidden
return kDIALStatusHide;
}

48
server/system_callbacks.h Normal file
View File

@@ -0,0 +1,48 @@
/*
* Copyright (c) 2018 Netflix, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY NETFLIX, INC. AND CONTRIBUTORS "AS IS" AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL NETFLIX OR CONTRIBUTORS BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef SYSTEM_CALLBACKS_H_
#define SYSTEM_CALLBACKS_H_
#include "dial_server.h"
DIALStatus system_start(DIALServer *ds, const char *appname,
const char *payload, const char* query_string,
const char *additionalDataUrl,
DIAL_run_t *run_id, void *callback_data);
DIALStatus system_hide(DIALServer *ds, const char *app_name,
DIAL_run_t *run_id, void *callback_data);
DIALStatus system_status(DIALServer *ds, const char *appname,
DIAL_run_t run_id, int* pCanStop, void *callback_data);
#endif /* SYSTEM_CALLBACKS_H_ */