coder / coder/coder-desktop-macos

Securely pass a Coder session token to the (System) Network Extension

Đang mở
#33 2 bình luận 0 reaction 0 người được giao Xem trên GitHub
Ngôn ngữ chính
Swift
Star
29
Fork
8
Merge trung bình
18 giờ 14 phút
Pull request đã merge (30 ngày)
4

Mô tả

The Network Extension requires a session token for a Coder deployment in order to function. This is (and should be) stored in the macOS Keychain.

When registering the network extension as a system VPN, a `NETunnelProviderProtocol` can be configured and passed to the network extension when it's started (via `NEPacketTunnelProvider.startTunnel`). `NETunnelProviderProtocol.serverAddress` allows us to pass the access URL of the deployment.

`NETunnelProviderProtocol.passwordReference` is described as:

> a persistent reference to a keychain item with the kSecClassGenericPassword class.

This field doesn't take into account the fact that the Network Extension might be a System Extension (as opposed to an app extension, used when submitting the application to the macOS/iOS App Store).

For reference, the WireGuard macOS app uses an app extension, running as the user, not root. It's able to pass a keychain reference to that app extension after modifying the item's keychain ACL.

In our case, there's a few problems:

1. Whilst Keychain Access Groups exist to share keychain items between multiple sandboxed applications, they require all apps use the data protection keychain (as opposed to the file-based keychain).
Programs that run outside of the user context (such as our NE, running as root), cannot use the data protection keychain. [[1]](https://developer.apple.com/documentation/technotes/tn3137-on-mac-keychains) [[2]](https://forums.developer.apple.com/forums/thread/746205)
2. File-based keychains are accessible from both users and the network-extensions. However, the sandboxed application is only capable of writing to the user keychain, and the network extension is only capable of reading from the system keychain. The application would need elevated permissions to write to the system keychain, and use `passwordReference` to pass a keychain `persistentRef`. [[3]](https://forums.developer.apple.com/forums/thread/680013) [[4]](https://developer.apple.com/forums/thread/133933?login=true&page=1#694688022)

The dev forum solution appears to be to send the credentials over some IPC, which would definitely be XPC in our case ([3], [4]). However, sending the session token over XPC in our case might lead to an annoying implementation: when the VPN is started it first must wait for yet another message containing the session token.

Instead, the current (hacked) solution involves just storing the session token within the `NETunnelProviderProtocol.providerConfiguration` dictionary. I believe the only difference between this and XPC is that this configuration is written to disk. We currently store Coder CLI tokens on disk too right now, though it'd be good to improve both situations in the future.

More:
https://developer.apple.com/forums/thread/694431

Hướng dẫn đóng góp

Mở hướng dẫn đóng góp

Hướng nghiên cứu

Bắt đầu bằng cách lần theo đường đi NETunnelProviderProtocol.providerConfiguration và điểm vào NEPacketTunnelProvider.startTunnel được mô tả trong issue. Xem xét các phương án thay thế Keychain và XPC, sau đó xác định việc hoàn thành là chuyển token phiên một cách an toàn mà không lưu trữ nó trong providerConfiguration.

Do mô hình lập chỉ mục viết ra từ nội dung của issue.

Đánh giá

Công nghệ
macos, swift
Lĩnh vực
desktop, operating-systems, security
Loại issue
Tái cấu trúc
Độ khó
5/5
Thời gian dự kiến
Hơn một tuần
Mức độ hoạt động
Đình trệ
Độ rõ ràng
Cần làm rõ
Mức phù hợp với người mới
25/100

Nhận issue mới trong hộp thư của bạn

Bản tóm tắt ngắn những issue GitHub phù hợp với người mới.