Skip to content

Commit b5a9ef8

Browse files
authored
Use unique socket per user for managing editor sessions (#6278)
Also warn if editor session manager socket cannot be created rather than failing.
1 parent 5d3c9ed commit b5a9ef8

File tree

3 files changed

+57
-7
lines changed

3 files changed

+57
-7
lines changed

src/node/main.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,9 @@ export const runCodeServer = async (
126126

127127
logger.info(`Using config file ${humanPath(os.homedir(), args.config)}`)
128128
logger.info(`${protocol.toUpperCase()} server listening on ${serverAddress.toString()}`)
129-
logger.info(`Session server listening on ${sessionServerAddress?.toString()}`)
129+
if (sessionServerAddress) {
130+
logger.info(`Session server listening on ${sessionServerAddress.toString()}`)
131+
}
130132

131133
if (args.auth === AuthType.Password) {
132134
logger.info(" - Authentication is enabled")

src/node/vscodeSocket.ts

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
import { logger } from "@coder/logger"
22
import express from "express"
33
import * as http from "http"
4-
import * as os from "os"
54
import * as path from "path"
65
import { HttpCode } from "../common/http"
76
import { listen } from "./app"
8-
import { canConnect } from "./util"
7+
import { canConnect, paths } from "./util"
98

109
// Socket path of the daemonized code-server instance.
11-
export const DEFAULT_SOCKET_PATH = path.join(os.tmpdir(), "code-server-ipc.sock")
10+
export const DEFAULT_SOCKET_PATH = path.join(paths.data, `code-server-ipc.sock`)
1211

1312
export interface EditorSessionEntry {
1413
workspace: {
@@ -78,7 +77,11 @@ export async function makeEditorSessionManagerServer(
7877
})
7978

8079
const server = http.createServer(router)
81-
await listen(server, { socket: codeServerSocketPath })
80+
try {
81+
await listen(server, { socket: codeServerSocketPath })
82+
} catch (e) {
83+
logger.warn(`Could not create socket at ${codeServerSocketPath}`)
84+
}
8285
return server
8386
}
8487

test/unit/node/vscodeSocket.test.ts

+47-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,50 @@
1-
import { EditorSessionManager } from "../../../src/node/vscodeSocket"
2-
import { clean, tmpdir, listenOn } from "../../utils/helpers"
1+
import { logger } from "@coder/logger"
2+
import * as app from "../../../src/node/app"
3+
import { paths } from "../../../src/node/util"
4+
import {
5+
DEFAULT_SOCKET_PATH,
6+
EditorSessionManager,
7+
makeEditorSessionManagerServer,
8+
} from "../../../src/node/vscodeSocket"
9+
import { clean, tmpdir, listenOn, mockLogger } from "../../utils/helpers"
10+
11+
describe("DEFAULT_SOCKET_PATH", () => {
12+
it("should be a unique path per user", () => {
13+
expect(DEFAULT_SOCKET_PATH.startsWith(paths.data)).toBe(true)
14+
})
15+
})
16+
17+
describe("makeEditorSessionManagerServer", () => {
18+
let tmpDirPath: string
19+
20+
const testName = "mesms"
21+
22+
beforeAll(async () => {
23+
jest.clearAllMocks()
24+
mockLogger()
25+
await clean(testName)
26+
})
27+
28+
afterAll(() => {
29+
jest.resetModules()
30+
})
31+
32+
beforeEach(async () => {
33+
tmpDirPath = await tmpdir(testName)
34+
})
35+
36+
it("warns if socket cannot be created", async () => {
37+
jest.spyOn(app, "listen").mockImplementation(() => {
38+
throw new Error()
39+
})
40+
const server = await makeEditorSessionManagerServer(
41+
`${tmpDirPath}/code-server-ipc.sock`,
42+
new EditorSessionManager(),
43+
)
44+
expect(logger.warn).toHaveBeenCalledWith(`Could not create socket at ${tmpDirPath}/code-server-ipc.sock`)
45+
server.close()
46+
})
47+
})
348

449
describe("EditorSessionManager", () => {
550
let tmpDirPath: string

0 commit comments

Comments
 (0)