| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240 |
- "use strict";
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.default = void 0;
- var _sprintfJs = require("sprintf-js");
- var _writableTrackingBuffer = _interopRequireDefault(require("./tracking-buffer/writable-tracking-buffer"));
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
- const optionBufferSize = 20;
- const VERSION = 0x000000001;
- const SUBBUILD = 0x0001;
- const TOKEN = {
- VERSION: 0x00,
- ENCRYPTION: 0x01,
- INSTOPT: 0x02,
- THREADID: 0x03,
- MARS: 0x04,
- FEDAUTHREQUIRED: 0x06,
- TERMINATOR: 0xFF
- };
- const ENCRYPT = {
- OFF: 0x00,
- ON: 0x01,
- NOT_SUP: 0x02,
- REQ: 0x03
- };
- const encryptByValue = {};
- for (const name in ENCRYPT) {
- const value = ENCRYPT[name];
- encryptByValue[value] = name;
- }
- const MARS = {
- OFF: 0x00,
- ON: 0x01
- };
- const marsByValue = {};
- for (const name in MARS) {
- const value = MARS[name];
- marsByValue[value] = name;
- }
- /*
- s2.2.6.4
- */
- class PreloginPayload {
- constructor(bufferOrOptions = {
- encrypt: false
- }) {
- if (bufferOrOptions instanceof Buffer) {
- this.data = bufferOrOptions;
- this.options = {
- encrypt: false
- };
- } else {
- this.options = bufferOrOptions;
- this.createOptions();
- }
- this.extractOptions();
- }
- createOptions() {
- const options = [this.createVersionOption(), this.createEncryptionOption(), this.createInstanceOption(), this.createThreadIdOption(), this.createMarsOption(), this.createFedAuthOption()];
- let length = 0;
- for (let i = 0, len = options.length; i < len; i++) {
- const option = options[i];
- length += 5 + option.data.length;
- }
- length++; // terminator
- this.data = Buffer.alloc(length, 0);
- let optionOffset = 0;
- let optionDataOffset = 5 * options.length + 1;
- for (let j = 0, len = options.length; j < len; j++) {
- const option = options[j];
- this.data.writeUInt8(option.token, optionOffset + 0);
- this.data.writeUInt16BE(optionDataOffset, optionOffset + 1);
- this.data.writeUInt16BE(option.data.length, optionOffset + 3);
- optionOffset += 5;
- option.data.copy(this.data, optionDataOffset);
- optionDataOffset += option.data.length;
- }
- this.data.writeUInt8(TOKEN.TERMINATOR, optionOffset);
- }
- createVersionOption() {
- const buffer = new _writableTrackingBuffer.default(optionBufferSize);
- buffer.writeUInt32BE(VERSION);
- buffer.writeUInt16BE(SUBBUILD);
- return {
- token: TOKEN.VERSION,
- data: buffer.data
- };
- }
- createEncryptionOption() {
- const buffer = new _writableTrackingBuffer.default(optionBufferSize);
- if (this.options.encrypt) {
- buffer.writeUInt8(ENCRYPT.ON);
- } else {
- buffer.writeUInt8(ENCRYPT.NOT_SUP);
- }
- return {
- token: TOKEN.ENCRYPTION,
- data: buffer.data
- };
- }
- createInstanceOption() {
- const buffer = new _writableTrackingBuffer.default(optionBufferSize);
- buffer.writeUInt8(0x00);
- return {
- token: TOKEN.INSTOPT,
- data: buffer.data
- };
- }
- createThreadIdOption() {
- const buffer = new _writableTrackingBuffer.default(optionBufferSize);
- buffer.writeUInt32BE(0x00);
- return {
- token: TOKEN.THREADID,
- data: buffer.data
- };
- }
- createMarsOption() {
- const buffer = new _writableTrackingBuffer.default(optionBufferSize);
- buffer.writeUInt8(MARS.OFF);
- return {
- token: TOKEN.MARS,
- data: buffer.data
- };
- }
- createFedAuthOption() {
- const buffer = new _writableTrackingBuffer.default(optionBufferSize);
- buffer.writeUInt8(0x01);
- return {
- token: TOKEN.FEDAUTHREQUIRED,
- data: buffer.data
- };
- }
- extractOptions() {
- let offset = 0;
- while (this.data[offset] !== TOKEN.TERMINATOR) {
- let dataOffset = this.data.readUInt16BE(offset + 1);
- const dataLength = this.data.readUInt16BE(offset + 3);
- switch (this.data[offset]) {
- case TOKEN.VERSION:
- this.extractVersion(dataOffset);
- break;
- case TOKEN.ENCRYPTION:
- this.extractEncryption(dataOffset);
- break;
- case TOKEN.INSTOPT:
- this.extractInstance(dataOffset);
- break;
- case TOKEN.THREADID:
- if (dataLength > 0) {
- this.extractThreadId(dataOffset);
- }
- break;
- case TOKEN.MARS:
- this.extractMars(dataOffset);
- break;
- case TOKEN.FEDAUTHREQUIRED:
- this.extractFedAuth(dataOffset);
- break;
- }
- offset += 5;
- dataOffset += dataLength;
- }
- }
- extractVersion(offset) {
- this.version = {
- major: this.data.readUInt8(offset + 0),
- minor: this.data.readUInt8(offset + 1),
- patch: this.data.readUInt8(offset + 2),
- trivial: this.data.readUInt8(offset + 3),
- subbuild: this.data.readUInt16BE(offset + 4)
- };
- }
- extractEncryption(offset) {
- this.encryption = this.data.readUInt8(offset);
- this.encryptionString = encryptByValue[this.encryption];
- }
- extractInstance(offset) {
- this.instance = this.data.readUInt8(offset);
- }
- extractThreadId(offset) {
- this.threadId = this.data.readUInt32BE(offset);
- }
- extractMars(offset) {
- this.mars = this.data.readUInt8(offset);
- this.marsString = marsByValue[this.mars];
- }
- extractFedAuth(offset) {
- this.fedAuthRequired = this.data.readUInt8(offset);
- }
- toString(indent = '') {
- return indent + 'PreLogin - ' + (0, _sprintfJs.sprintf)('version:%d.%d.%d.%d %d, encryption:0x%02X(%s), instopt:0x%02X, threadId:0x%08X, mars:0x%02X(%s)', this.version.major, this.version.minor, this.version.patch, this.version.trivial, this.version.subbuild, this.encryption ? this.encryption : 0, this.encryptionString ? this.encryptionString : '', this.instance ? this.instance : 0, this.threadId ? this.threadId : 0, this.mars ? this.mars : 0, this.marsString ? this.marsString : '');
- }
- }
- var _default = PreloginPayload;
- exports.default = _default;
- module.exports = PreloginPayload;
|