Skip to content

Commit 8f52fa0

Browse files
authoredJul 11, 2024··
* chore: node 22 prebuilts * fix: CVE-2024-21521 and any future attempts for these * chore: fix destructor
1 parent b541c5b commit 8f52fa0

File tree

5 files changed

+78
-17
lines changed

5 files changed

+78
-17
lines changed
 

‎.github/workflows/build.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
fail-fast: false
4545
matrix:
4646
os: [macos-11, macos-12, macos-13, ubuntu-20.04, ubuntu-22.04, windows-2019]
47-
node: [18, 20, 21]
47+
node: [18, 20, 21, 22]
4848
steps:
4949
- name: Checkout repository
5050
uses: actions/checkout@v3
@@ -68,7 +68,7 @@ jobs:
6868
strategy:
6969
fail-fast: false
7070
matrix:
71-
node: [12, 13, 14, 15, 16, 17, 18, 19, 20, 21]
71+
node: [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22]
7272
steps:
7373
- name: Setup env with Node v${{ matrix.node }}
7474
run: |
@@ -116,7 +116,7 @@ jobs:
116116
fail-fast: false
117117
matrix:
118118
os: [ubuntu-20.04, ubuntu-22.04]
119-
node: [18, 20, 21]
119+
node: [18, 20, 21, 22]
120120
steps:
121121
- name: Checkout repository
122122
uses: actions/checkout@v3
@@ -142,7 +142,7 @@ jobs:
142142
strategy:
143143
fail-fast: false
144144
matrix:
145-
node: [12, 13, 14, 15, 16, 17, 18, 19, 20, 21]
145+
node: [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22]
146146
steps:
147147
- name: Setup env with Node v${{ matrix.node }}
148148
run: |

‎.github/workflows/release.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
fail-fast: false
4646
matrix:
4747
os: [macos-11, macos-12, macos-13, ubuntu-20.04, ubuntu-22.04, windows-2019]
48-
node: [18, 20, 21]
48+
node: [18, 20, 21, 22]
4949
steps:
5050
- name: Checkout repository
5151
uses: actions/checkout@v3
@@ -76,7 +76,7 @@ jobs:
7676
strategy:
7777
fail-fast: false
7878
matrix:
79-
node: [12, 13, 14, 15, 16, 17, 18, 19, 20, 21]
79+
node: [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22]
8080
steps:
8181
- name: Setup env with Node v${{ matrix.node }}
8282
run: |
@@ -138,7 +138,7 @@ jobs:
138138
fail-fast: false
139139
matrix:
140140
os: [ubuntu-20.04, ubuntu-22.04]
141-
node: [18, 20, 21]
141+
node: [18, 20, 21, 22]
142142
steps:
143143
- name: Checkout repository
144144
uses: actions/checkout@v3
@@ -171,7 +171,7 @@ jobs:
171171
strategy:
172172
fail-fast: false
173173
matrix:
174-
node: [12, 13, 14, 15, 16, 17, 18, 19, 20, 21]
174+
node: [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22]
175175
steps:
176176
- name: Setup env with Node v${{ matrix.node }}
177177
run: |

‎package-lock.json

+10-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
},
2929
"dependencies": {
3030
"@discordjs/node-pre-gyp": "^0.4.5",
31-
"node-addon-api": "^5.0.0"
31+
"node-addon-api": "^8.1.0"
3232
},
3333
"devDependencies": {
3434
"@types/node": "^18.11.2",

‎src/node-opus.cc

+59-1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,18 @@ Object OpusEncoder::Init(Napi::Env env, Object exports) {
4444
OpusEncoder::OpusEncoder(const CallbackInfo& args): ObjectWrap<OpusEncoder>(args) {
4545
this->encoder = nullptr;
4646
this->decoder = nullptr;
47+
this->outPcm = nullptr;
48+
49+
if (args.Length() < 2) {
50+
Napi::RangeError::New(args.Env(), "Expected 2 arguments").ThrowAsJavaScriptException();
51+
return;
52+
}
53+
54+
if (!args[0].IsNumber() || !args[1].IsNumber()) {
55+
Napi::TypeError::New(args.Env(), "Expected rate and channels to be numbers").ThrowAsJavaScriptException();
56+
return;
57+
}
58+
4759
this->rate = args[0].ToNumber().Int32Value();
4860
this->channels = args[1].ToNumber().Int32Value();
4961
this->application = OPUS_APPLICATION_AUDIO;
@@ -57,7 +69,7 @@ OpusEncoder::~OpusEncoder() {
5769
this->encoder = nullptr;
5870
this->decoder = nullptr;
5971

60-
delete this->outPcm;
72+
if (this->outPcm) delete this->outPcm;
6173
this->outPcm = nullptr;
6274
}
6375

@@ -87,6 +99,11 @@ Napi::Value OpusEncoder::Encode(const CallbackInfo& args) {
8799
return env.Null();
88100
}
89101

102+
if (args.Length() < 1) {
103+
Napi::RangeError::New(env, "Expected 1 argument").ThrowAsJavaScriptException();
104+
return env.Null();
105+
}
106+
90107
if (!args[0].IsBuffer()) {
91108
Napi::TypeError::New(env, "Provided input needs to be a buffer").ThrowAsJavaScriptException();
92109
return env.Null();
@@ -102,11 +119,19 @@ Napi::Value OpusEncoder::Encode(const CallbackInfo& args) {
102119
Buffer<char> actualBuf = Buffer<char>::Copy(env, reinterpret_cast<char*>(this->outOpus), compressedLength);
103120

104121
if (!actualBuf.IsEmpty()) return actualBuf;
122+
123+
Napi::Error::New(env, "Could not encode the data").ThrowAsJavaScriptException();
124+
return env.Null();
105125
}
106126

107127
Napi::Value OpusEncoder::Decode(const CallbackInfo& args) {
108128
Napi::Env env = args.Env();
109129

130+
if (args.Length() < 1) {
131+
Napi::RangeError::New(env, "Expected 1 argument").ThrowAsJavaScriptException();
132+
return env.Null();
133+
}
134+
110135
if (!args[0].IsBuffer()) {
111136
Napi::TypeError::New(env, "Provided input needs to be a buffer").ThrowAsJavaScriptException();
112137
return env.Null();
@@ -140,11 +165,24 @@ Napi::Value OpusEncoder::Decode(const CallbackInfo& args) {
140165
Buffer<char> actualBuf = Buffer<char>::Copy(env, reinterpret_cast<char*>(this->outPcm), decodedLength);
141166

142167
if (!actualBuf.IsEmpty()) return actualBuf;
168+
169+
Napi::Error::New(env, "Could not decode the data").ThrowAsJavaScriptException();
170+
return env.Null();
143171
}
144172

145173
void OpusEncoder::ApplyEncoderCTL(const CallbackInfo& args) {
146174
Napi::Env env = args.Env();
147175

176+
if (args.Length() < 2) {
177+
Napi::RangeError::New(env, "Expected 2 arguments").ThrowAsJavaScriptException();
178+
return;
179+
}
180+
181+
if (!args[0].IsNumber() || !args[1].IsNumber()) {
182+
Napi::TypeError::New(env, "Expected ctl and value to be numbers").ThrowAsJavaScriptException();
183+
return;
184+
}
185+
148186
int ctl = args[0].ToNumber().Int32Value();
149187
int value = args[1].ToNumber().Int32Value();
150188

@@ -162,6 +200,16 @@ void OpusEncoder::ApplyEncoderCTL(const CallbackInfo& args) {
162200
void OpusEncoder::ApplyDecoderCTL(const CallbackInfo& args) {
163201
Napi::Env env = args.Env();
164202

203+
if (args.Length() < 2) {
204+
Napi::RangeError::New(env, "Expected 2 arguments").ThrowAsJavaScriptException();
205+
return;
206+
}
207+
208+
if (!args[0].IsNumber() || !args[1].IsNumber()) {
209+
Napi::TypeError::New(env, "Expected ctl and value to be numbers").ThrowAsJavaScriptException();
210+
return;
211+
}
212+
165213
int ctl = args[0].ToNumber().Int32Value();
166214
int value = args[1].ToNumber().Int32Value();
167215

@@ -179,6 +227,16 @@ void OpusEncoder::ApplyDecoderCTL(const CallbackInfo& args) {
179227
void OpusEncoder::SetBitrate(const CallbackInfo& args) {
180228
Napi::Env env = args.Env();
181229

230+
if (args.Length() < 1) {
231+
Napi::RangeError::New(env, "Expected 1 argument").ThrowAsJavaScriptException();
232+
return;
233+
}
234+
235+
if (!args[0].IsNumber()) {
236+
Napi::TypeError::New(env, "Expected bitrate to be a number").ThrowAsJavaScriptException();
237+
return;
238+
}
239+
182240
int bitrate = args[0].ToNumber().Int32Value();
183241

184242
if (this->EnsureEncoder() != OPUS_OK) {

0 commit comments

Comments
 (0)
Please sign in to comment.