Skip to content

Commit 452740c

Browse files
authored
Merge pull request #52 from QuantGeekDev/fix/initialize-batch-validation
fix: enforce that initialize request cannot be part of JSON-RPC batch
2 parents 75c2e21 + 09403fe commit 452740c

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

src/transports/http/server.ts

+15-1
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,21 @@ export class HttpStreamTransport extends AbstractTransport {
241241
throw this.httpError(400, `Bad Request: ${e.message}`, -32700, undefined, firstRequestId);
242242
}
243243

244-
const isInitialize = parsedMessages.some(msg => isRequest(msg) && msg.method === 'initialize');
244+
const initializeRequests = parsedMessages.filter(msg => isRequest(msg) && msg.method === 'initialize');
245+
246+
if (initializeRequests.length > 0) {
247+
if (initializeRequests.length > 1) {
248+
logger.error("Multiple initialize requests in the same batch");
249+
throw this.httpError(400, "Bad Request: Multiple initialize requests in the same batch", -32600, undefined, firstRequestId);
250+
}
251+
252+
if (parsedMessages.length > 1) {
253+
logger.error("Initialize request cannot be batched with other requests");
254+
throw this.httpError(400, "Bad Request: Initialize request must not be part of a JSON-RPC batch", -32600, undefined, firstRequestId);
255+
}
256+
}
257+
258+
const isInitialize = initializeRequests.length > 0;
245259
const sessionIdHeader = getRequestHeader(req.headers, this._config.session.headerName);
246260
let session: SessionData | undefined;
247261

0 commit comments

Comments
 (0)