mirror of
https://github.com/Netflix/dial-reference.git
synced 2026-06-08 02:49:58 +00:00
Make sure to allocate enough memory in buffers for the operations they are used for, and to check/enforce buffer sizes when performing those memory operations. Properly allocate and free memory. Make a best effort at allocating memory for the network hardware address (remove code for Apple platforms). Try to consume all of the remaining content if a valid Content-Length header was provided. Check for success when attempting to acquire mutexes.
54 lines
1.7 KiB
C
54 lines
1.7 KiB
C
#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 = strchr(query_string, '&');
|
|
if ( key_value == NULL || *key_value == '\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;
|
|
}
|
|
|
|
|