Token Secured Requests

- Removed WEBUI_EVENT_MULTI_CONNECTION
- Removed WEBUI_EVENT_UNWANTED_CONNECTION
- Removed webui_set_multi_access()

- Core Added: Token Secured Requests
- Core Added: New Protocol Header
- Core Added: Block WS handshake for non-authorized connections
- Core Added:
This commit is contained in:
Hassan DRAGA 2023-10-04 19:22:40 -04:00
parent 53724d4ef8
commit 39f9ab0cd7
4 changed files with 2359 additions and 1896 deletions

File diff suppressed because it is too large Load Diff

View File

@ -28,6 +28,7 @@ type JSONValue =
class WebuiBridge { class WebuiBridge {
// WebUI settings // WebUI settings
#token: number
#port: number #port: number
#winNum: number #winNum: number
#bindList: unknown[] = [] #bindList: unknown[] = []
@ -44,22 +45,31 @@ class WebuiBridge {
#closeReason = 0 #closeReason = 0
#closeValue: string #closeValue: string
#hasEvents = false #hasEvents = false
#callPromiseID = new Uint8Array(1) #callPromiseID = new Uint16Array(1)
#callPromiseResolve: (((data: string) => unknown) | undefined)[] = [] #callPromiseResolve: (((data: string) => unknown) | undefined)[] = []
#allowNavigation = false #allowNavigation = false
// WebUI const // WebUI const
#HEADER_SIGNATURE = 221 #WEBUI_SIGNATURE = 221
#HEADER_JS = 254 #CMD_JS = 254
#HEADER_JS_QUICK = 253 #CMD_JS_QUICK = 253
#HEADER_CLICK = 252 #CMD_CLICK = 252
#HEADER_NAVIGATION = 251 #CMD_NAVIGATION = 251
#HEADER_CLOSE = 250 #CMD_CLOSE = 250
#HEADER_CALL_FUNC = 249 #CMD_CALL_FUNC = 249
#HEADER_SEND_RAW = 248 #CMD_SEND_RAW = 248
#HEADER_NEW_ID = 247 #CMD_NEW_ID = 247
#PROTOCOL_SIZE = 8 // Protocol header size in bytes
#PROTOCOL_SIGN = 0 // Protocol byte position: Signature (1 Byte)
#PROTOCOL_TOKEN = 1 // Protocol byte position: Token (4 Bytes)
#PROTOCOL_ID = 5 // Protocol byte position: ID (2 Bytes)
#PROTOCOL_CMD = 7 // Protocol byte position: Command (1 Byte)
#PROTOCOL_DATA = 8 // Protocol byte position: Data (n Byte)
#Token = new Uint32Array(1);
constructor({ constructor({
token,
port, port,
winNum, winNum,
bindList, bindList,
@ -69,6 +79,7 @@ class WebuiBridge {
winW, winW,
winH, winH,
}: { }: {
token: number
port: number port: number
winNum: number winNum: number
bindList: unknown[] bindList: unknown[]
@ -79,6 +90,7 @@ class WebuiBridge {
winH: number winH: number
}) { }) {
// Constructor arguments are injected by webui.c // Constructor arguments are injected by webui.c
this.#token = token
this.#port = port this.#port = port
this.#winNum = winNum this.#winNum = winNum
this.#bindList = bindList this.#bindList = bindList
@ -88,6 +100,9 @@ class WebuiBridge {
this.#winW = winW this.#winW = winW
this.#winH = winH this.#winH = winH
// Token
this.#Token[0] = this.#token;
// Instance // Instance
if ('webui' in globalThis) { if ('webui' in globalThis) {
throw new Error( throw new Error(
@ -125,7 +140,7 @@ class WebuiBridge {
this.#sendEventNavigation(url.href) this.#sendEventNavigation(url.href)
} }
else { else {
this.#close(this.#HEADER_NAVIGATION, url.href) this.#close(this.#CMD_NAVIGATION, url.href)
} }
} }
}) })
@ -143,14 +158,14 @@ class WebuiBridge {
if (this.#hasEvents) { if (this.#hasEvents) {
if (this.#log) console.log(`WebUI -> DOM -> Navigation Click Event [${href}]`) if (this.#log) console.log(`WebUI -> DOM -> Navigation Click Event [${href}]`)
// if (this.#isExternalLink(href)) { // if (this.#isExternalLink(href)) {
// this.#close(this.#HEADER_NAVIGATION, href) // this.#close(this.#CMD_NAVIGATION, href)
// } else { // } else {
// this.#sendEventNavigation(href) // this.#sendEventNavigation(href)
// } // }
this.#sendEventNavigation(href) this.#sendEventNavigation(href)
} }
else { else {
this.#close(this.#HEADER_NAVIGATION, href) this.#close(this.#CMD_NAVIGATION, href)
} }
} }
} }
@ -180,12 +195,12 @@ class WebuiBridge {
} }
#close(reason = 0, value = '') { #close(reason = 0, value = '') {
// if (reason === this.#HEADER_NAVIGATION) this.#sendEventNavigation(value) // if (reason === this.#CMD_NAVIGATION) this.#sendEventNavigation(value)
this.#wsStatus = false this.#wsStatus = false
this.#closeReason = reason this.#closeReason = reason
this.#closeValue = value this.#closeValue = value
this.#ws.close() this.#ws.close()
if (reason === this.#HEADER_NAVIGATION) { if (reason === this.#CMD_NAVIGATION) {
if (this.#log) { if (this.#log) {
console.log( console.log(
`WebUI -> Close -> Navigation to [${value}]` `WebUI -> Close -> Navigation to [${value}]`
@ -208,7 +223,7 @@ class WebuiBridge {
} }
#isTextBasedCommand(cmd: number): Boolean { #isTextBasedCommand(cmd: number): Boolean {
if(cmd !== this.#HEADER_SEND_RAW) if(cmd !== this.#CMD_SEND_RAW)
return true; return true;
return false; return false;
} }
@ -227,6 +242,46 @@ class WebuiBridge {
return stringText; return stringText;
} }
#getID(buffer: Uint8Array, index: number): number {
if (index < 0 || index >= buffer.length - 1) {
throw new Error('Index out of bounds or insufficient data.');
}
const firstByte = buffer[index];
const secondByte = buffer[index + 1];
const combined = (secondByte << 8) | firstByte; // Works only for little-endian
return combined;
}
#addToken(buffer: Uint8Array, value: number, index: number): void {
if (value < 0 || value > 0xFFFFFFFF) {
throw new Error('Number is out of the range for 4 bytes representation.');
}
if (index < 0 || index > buffer.length - 4) {
throw new Error('Index out of bounds or insufficient space in buffer.');
}
// WebUI expect Little-endian (Work for Little/Big endian platforms)
buffer[index] = value & 0xFF;
buffer[index + 1] = (value >>> 8) & 0xFF;
buffer[index + 2] = (value >>> 16) & 0xFF;
buffer[index + 3] = (value >>> 24) & 0xFF;
}
#addID(buffer: Uint8Array, value: number, index: number): void {
if (value < 0 || value > 0xFFFF) {
throw new Error('Number is out of the range for 2 bytes representation.');
}
if (index < 0 || index > buffer.length - 2) {
throw new Error('Index out of bounds or insufficient space in buffer.');
}
// WebUI expect Little-endian (Work for Little/Big endian platforms)
buffer[index] = value & 0xFF; // Least significant byte
buffer[index + 1] = (value >>> 8) & 0xFF; // Most significant byte
}
#start() { #start() {
this.#callPromiseID[0] = 0 this.#callPromiseID[0] = 0
@ -253,7 +308,7 @@ class WebuiBridge {
this.#ws.onclose = (event) => { this.#ws.onclose = (event) => {
this.#wsStatus = false this.#wsStatus = false
if (this.#closeReason === this.#HEADER_NAVIGATION) { if (this.#closeReason === this.#CMD_NAVIGATION) {
if (this.#log) { if (this.#log) {
console.log( console.log(
`WebUI -> Connection closed du to Navigation to [${this.#closeValue}]` `WebUI -> Connection closed du to Navigation to [${this.#closeValue}]`
@ -271,25 +326,27 @@ class WebuiBridge {
this.#ws.onmessage = async (event) => { this.#ws.onmessage = async (event) => {
const buffer8 = new Uint8Array(event.data) const buffer8 = new Uint8Array(event.data)
if (buffer8.length < 2) return if (buffer8.length < this.#PROTOCOL_SIZE) return
if (buffer8[0] !== this.#HEADER_SIGNATURE) return if (buffer8[this.#PROTOCOL_SIGN] !== this.#WEBUI_SIGNATURE) return
if(this.#isTextBasedCommand(buffer8[1])) { if(this.#isTextBasedCommand(buffer8[this.#PROTOCOL_CMD])) {
// UTF8 Text based commands // UTF8 Text based commands
const callId = this.#getID(buffer8, this.#PROTOCOL_ID)
// Process Command // Process Command
switch (buffer8[1]) { switch (buffer8[this.#PROTOCOL_CMD]) {
case this.#HEADER_CALL_FUNC: case this.#CMD_CALL_FUNC:
{ {
// Command Packet // Protocol
// 0: [Signature] // 0: [SIGNATURE]
// 1: [CMD] // 1: [TOKEN]
// 2: [Call ID] // 2: [ID]
// 3: [Call Response] // 3: [CMD]
// 4: [Call Response]
const callResponse = this.#getDataStrFromPacket(buffer8, 3)
const callId = buffer8[2]
const callResponse = this.#getDataStrFromPacket(buffer8, this.#PROTOCOL_DATA)
if (this.#log) { if (this.#log) {
console.log(`WebUI -> CMD -> Call Response [${callResponse}]`) console.log(`WebUI -> CMD -> Call Response [${callResponse}]`)
} }
@ -304,37 +361,42 @@ class WebuiBridge {
} }
} }
break break
case this.#HEADER_NAVIGATION: case this.#CMD_NAVIGATION:
// Command Packet // Protocol
// 0: [Signature] // 0: [SIGNATURE]
// 1: [CMD] // 1: [TOKEN]
// 2: [URL] // 2: [ID]
// 3: [CMD]
// 4: [URL]
const url = this.#getDataStrFromPacket(buffer8, 2) const url = this.#getDataStrFromPacket(buffer8, this.#PROTOCOL_DATA)
console.log(`WebUI -> CMD -> Navigation [${url}]`) console.log(`WebUI -> CMD -> Navigation [${url}]`)
this.#close(this.#HEADER_NAVIGATION, url) this.#close(this.#CMD_NAVIGATION, url)
break break
case this.#HEADER_NEW_ID: case this.#CMD_NEW_ID:
// Command Packet // Protocol
// 0: [Signature] // 0: [SIGNATURE]
// 1: [CMD] // 1: [TOKEN]
// 2: [New Element] // 2: [ID]
// 3: [CMD]
// 4: [New Element]
const newElement = this.#getDataStrFromPacket(buffer8, 2) const newElement = this.#getDataStrFromPacket(buffer8, this.#PROTOCOL_DATA)
console.log(`WebUI -> CMD -> New Bind ID [${newElement}]`) console.log(`WebUI -> CMD -> New Bind ID [${newElement}]`)
if(!this.#bindList.includes(newElement)) if(!this.#bindList.includes(newElement))
this.#bindList.push(newElement) this.#bindList.push(newElement)
break break
case this.#HEADER_JS_QUICK: case this.#CMD_JS_QUICK:
case this.#HEADER_JS: case this.#CMD_JS:
{ {
// Command Packet // Protocol
// 0: [Signature] // 0: [SIGNATURE]
// 1: [CMD] // 1: [TOKEN]
// 2: [ID] // 2: [ID]
// 3: [Script] // 3: [CMD]
// 4: [Script]
const script = this.#getDataStrFromPacket(buffer8, 3) const script = this.#getDataStrFromPacket(buffer8, this.#PROTOCOL_DATA)
const scriptSanitize = script.replace( const scriptSanitize = script.replace(
/(?:\r\n|\r|\n)/g, /(?:\r\n|\r|\n)/g,
'\n' '\n'
@ -352,7 +414,11 @@ class WebuiBridge {
FunError = true FunError = true
FunReturn = e.message FunReturn = e.message
} }
if (buffer8[1] === this.#HEADER_JS_QUICK) return
// Stop if this is a quick call
if (buffer8[this.#PROTOCOL_CMD] === this.#CMD_JS_QUICK) return
// Get the call return
if (FunReturn === undefined) { if (FunReturn === undefined) {
FunReturn = 'undefined' FunReturn = 'undefined'
} }
@ -363,28 +429,34 @@ class WebuiBridge {
if (this.#log && FunError) if (this.#log && FunError)
console.log(`WebUI -> CMD -> JS -> Return Error [${FunReturn}]`) console.log(`WebUI -> CMD -> JS -> Return Error [${FunReturn}]`)
// Response Packet // Protocol
// 0: [Signature] // 0: [SIGNATURE]
// 1: [CMD] // 1: [TOKEN]
// 2: [ID] // 2: [ID]
// 3: [Error] // 3: [CMD]
// 4: [Script Response] // 4: [Error, Script Response]
const Return8 = Uint8Array.of( const Return8 = Uint8Array.of(
this.#HEADER_SIGNATURE, this.#WEBUI_SIGNATURE,
this.#HEADER_JS, 0, 0, 0, 0, // Token (4 Bytes)
buffer8[2], 0, 0, // ID (2 Bytes)
this.#CMD_JS,
FunError ? 1 : 0, FunError ? 1 : 0,
...new TextEncoder().encode(FunReturn) ...new TextEncoder().encode(FunReturn)
) )
this.#addToken(Return8, this.#token, this.#PROTOCOL_TOKEN)
this.#addID(Return8, callId, this.#PROTOCOL_ID)
if (this.#wsStatus) this.#ws.send(Return8.buffer) if (this.#wsStatus) this.#ws.send(Return8.buffer)
} }
break break
case this.#HEADER_CLOSE: case this.#CMD_CLOSE:
// Command Packet // Protocol
// 0: [Signature] // 0: [SIGNATURE]
// 1: [CMD] // 1: [TOKEN]
// 2: [ID]
// 3: [CMD]
if (!this.#log) if (!this.#log)
globalThis.close() globalThis.close()
@ -399,18 +471,18 @@ class WebuiBridge {
// Raw binary commands // Raw binary commands
// Process Command // Process Command
switch (buffer8[1]) { switch (buffer8[this.#PROTOCOL_CMD]) {
case this.#HEADER_SEND_RAW: case this.#CMD_SEND_RAW:
{ {
// Command Packet // Protocol
// 0: [Signature] // 0: [SIGNATURE]
// 1: [CMD] // 1: [TOKEN]
// 2: [Function] // 2: [ID]
// 3: [Null] // 3: [CMD]
// 4: [Raw Data] // 4: [Function,Null,Raw Data]
// Get function name // Get function name
const functionName: string = this.#getDataStrFromPacket(buffer8, 2) const functionName: string = this.#getDataStrFromPacket(buffer8, this.#PROTOCOL_DATA)
// Get the raw data // Get the raw data
const rawDataIndex: number = 2 + functionName.length + 1 const rawDataIndex: number = 2 + functionName.length + 1
@ -452,22 +524,31 @@ class WebuiBridge {
#sendClick(elem: string) { #sendClick(elem: string) {
if (this.#wsStatus) { if (this.#wsStatus) {
// Response Packet // Protocol
// 0: [Signature] // 0: [SIGNATURE]
// 1: [CMD] // 1: [TOKEN]
// 2: [Element] // 2: [ID]
// 3: [CMD]
// 4: [Element]
const packet = const packet =
elem !== '' elem !== ''
? Uint8Array.of( ? Uint8Array.of(
this.#HEADER_SIGNATURE, this.#WEBUI_SIGNATURE,
this.#HEADER_CLICK, 0, 0, 0, 0, // Token (4 Bytes)
...new TextEncoder().encode(elem) 0, 0, // ID (2 Bytes)
) this.#CMD_CLICK,
: Uint8Array.of( ...new TextEncoder().encode(elem),
this.#HEADER_SIGNATURE,
this.#HEADER_CLICK,
0 0
) )
: Uint8Array.of(
this.#WEBUI_SIGNATURE,
0, 0, 0, 0, // Token (4 Bytes)
0, 0, // ID (2 Bytes)
this.#CMD_CLICK,
0
)
this.#addToken(packet, this.#token, this.#PROTOCOL_TOKEN)
// this.#addID(packet, 0, this.#PROTOCOL_ID)
this.#ws.send(packet.buffer) this.#ws.send(packet.buffer)
if (this.#log) console.log(`WebUI -> Send Click [${elem}]`) if (this.#log) console.log(`WebUI -> Send Click [${elem}]`)
} }
@ -479,14 +560,22 @@ class WebuiBridge {
if (this.#log) console.log(`WebUI -> Send Navigation Event [${url}]`) if (this.#log) console.log(`WebUI -> Send Navigation Event [${url}]`)
if (this.#wsStatus && this.#hasEvents) { if (this.#wsStatus && this.#hasEvents) {
const packet = Uint8Array.of( const packet = Uint8Array.of(
// Packet // Protocol
// 0: [Signature] // 0: [SIGNATURE]
// 1: [CMD] // 1: [TOKEN]
// 2: [URL] // 2: [ID]
this.#HEADER_SIGNATURE, // 3: [CMD]
this.#HEADER_NAVIGATION, // 4: [URL]
this.#WEBUI_SIGNATURE,
0, 0, 0, 0, // Token (4 Bytes)
0, 0, // ID (2 Bytes)
this.#CMD_NAVIGATION,
...new TextEncoder().encode(url) ...new TextEncoder().encode(url)
) )
this.#addToken(packet, this.#token, this.#PROTOCOL_TOKEN)
// this.#addID(packet, 0, this.#PROTOCOL_ID)
this.#ws.send(packet.buffer) this.#ws.send(packet.buffer)
} }
} }
@ -508,25 +597,27 @@ class WebuiBridge {
}, 1000) }, 1000)
} }
#toUint8(value: number): number { #toUint16(value: number): number {
return value & 0xFF; return value & 0xFFFF;
} }
#callPromise(fn: string, value: any) { #callPromise(fn: string, value: any) {
--this.#callPromiseID[0] --this.#callPromiseID[0]
const callId = this.#toUint8(this.#callPromiseID[0]) const callId = this.#toUint16(this.#callPromiseID[0])
if (this.#log) console.log(`WebUI -> Call [${fn}](${value}) (ID:${this.#callPromiseID[0]})`) if (this.#log) console.log(`WebUI -> Call [${fn}](${value}) (ID:${this.#callPromiseID[0]})`)
// Response Packet // Protocol
// 0: [Signature] // 0: [SIGNATURE]
// 1: [CMD] // 1: [TOKEN]
// 2: [Call ID] // 2: [ID]
// 3: [Element ID, Null, Len, Null, Data, Null] // 3: [CMD]
// 4: [Element ID, Null, Len, Null, Data, Null]
const packet = Uint8Array.of( const packet = Uint8Array.of(
this.#HEADER_SIGNATURE, this.#WEBUI_SIGNATURE,
this.#HEADER_CALL_FUNC, 0, 0, 0, 0, // Token (4 Bytes)
callId, 0, 0, // ID (2 Bytes)
this.#CMD_CALL_FUNC,
...new TextEncoder().encode(fn), ...new TextEncoder().encode(fn),
0, 0,
...new TextEncoder().encode(String(value.length)), ...new TextEncoder().encode(String(value.length)),
@ -535,6 +626,9 @@ class WebuiBridge {
0 0
) )
this.#addToken(packet, this.#token, this.#PROTOCOL_TOKEN)
this.#addID(packet, callId, this.#PROTOCOL_ID)
return new Promise((resolve) => { return new Promise((resolve) => {
this.#callPromiseResolve[callId] = resolve this.#callPromiseResolve[callId] = resolve
this.#ws.send(packet.buffer) this.#ws.send(packet.buffer)

View File

@ -128,11 +128,9 @@ enum webui_runtimes {
enum webui_events { enum webui_events {
WEBUI_EVENT_DISCONNECTED = 0, // 0. Window disconnection event WEBUI_EVENT_DISCONNECTED = 0, // 0. Window disconnection event
WEBUI_EVENT_CONNECTED, // 1. Window connection event WEBUI_EVENT_CONNECTED, // 1. Window connection event
WEBUI_EVENT_MULTI_CONNECTION, // 2. New window connection event WEBUI_EVENT_MOUSE_CLICK, // 2. Mouse click event
WEBUI_EVENT_UNWANTED_CONNECTION, // 3. New unwanted window connection event WEBUI_EVENT_NAVIGATION, // 3. Window navigation event
WEBUI_EVENT_MOUSE_CLICK, // 4. Mouse click event WEBUI_EVENT_CALLBACK, // 4. Function call event
WEBUI_EVENT_NAVIGATION, // 5. Window navigation event
WEBUI_EVENT_CALLBACK, // 6. Function call event
}; };
// -- Structs ------------------------- // -- Structs -------------------------
@ -316,16 +314,6 @@ WEBUI_EXPORT void webui_set_timeout(size_t second);
*/ */
WEBUI_EXPORT void webui_set_icon(size_t window, const char* icon, const char* icon_type); WEBUI_EXPORT void webui_set_icon(size_t window, const char* icon, const char* icon_type);
/**
* @brief Allow the window URL to be re-used in normal web browsers.
*
* @param window The window number
* @param status The status: True or False
*
* @example webui_set_multi_access(myWindow, true);
*/
WEBUI_EXPORT void webui_set_multi_access(size_t window, bool status);
/** /**
* @brief Base64 encoding. Use this to safely send text based data to the UI. If it fails it will return NULL. * @brief Base64 encoding. Use this to safely send text based data to the UI. If it fails it will return NULL.
* *

File diff suppressed because it is too large Load Diff