Post

Replies

Boosts

Views

Activity

Reply to VZUSBPassthroughDevice Breaks macOS OTA Update Personalization
The host is failing to update at around the 10% mark with the MSU_ERR_PERSONALIZATION_FAILURE error. This persists even after stopping the VM or re-assigning the pased-through USB device back to the host. The personlization step only completes when I unplug the passed-through USB device. Maybe there are still some processes from Virtualization.framework hanging around, holding onto a IOKit lock.
Topic: App & System Services SubTopic: Core OS Tags:
2w
Reply to macOS 27 Beta 1 Install Failure
I've now also hit MSU_ERR_PERSONALIZATION_FAILURE which prevents me from upgrading a Mac Studio M4 (which is not in Reduced Security mode and never was) from macOS 27 Beta 2 to Beta 3. My MacBook Pro M4 upgraded just fine. The full installer runs into the same issue.
Topic: Community SubTopic: Apple Developers Tags:
3w
Reply to Disable Local Network Access permission check
It's been a while, but I wanted to bring up the topic again in the hopes that it would increase the changes for improvements in the next major macOS release. People got very creative in the meantime and they use solutions like https://github.com/steipete/Peekaboo or https://www.hammerspoon.org to automate away the security prompts (or just run services as root). As a result, systems become less secure - the opposite of what the permission dialogs are aiming for. It would be better to allow for some flexibility and selectively disable the local network permission for people who trust their networks, the machines, and the software they install on them. Maybe there's a smart way to solve that only for certain use cases like LaunchAgents.
Feb ’26
Reply to Disable Local Network Access permission check
Thanks! I hope there's a chance of a solution materializing during Tahoe's development. In the meantime, I'll probably revert back to launch daemons because the permission problem is worse than I thought. It's one thing when I have to log in using remote desktop to re-grant permissions after upgrading Prometheus, Grafana, Alloy, or other services, but it's another when I upgrade a runtime like Pythong or .NET. In that case, I have to figure out which services use those, restart them, and then allow access to the local network and private keys in Keychain. Running as root is already not great, but launch daemons often surface another problem: because they start so early in the boot process, network interfaces might not be up yet and some services don't properly handle that case. Technitium DNS, for example, falls back to listening on a default port on all interfaces if binding fails. I've filed an issue upstream and the next version will introduce a flag which instead terminates the process, so that launchd can restart it at a later time. There are other cases like this. Just mentioning this additional context in case it helps with prioritization :)
Jun ’25
Reply to Disable Local Network Access permission check
Thanks, Quinn! I've created an enhancement request and here's the bug number as requested: FB17818651. I apologize if the "if only" came across as a bit snarky. I understand that not having such a setting is probably the right thing for macOS in the usual context of a personal computing device for end users. However, in a server context (where I guess Mac minis and Studios are quite popular), it might be warranted. Not sure if this audience is a priority for Apple. As for Homebrew: I'm not a maintainer, but as far as I know, it only provides attestations for bottles (packages), and uses ad-hoc signing for the executables contained in the packages: https://repos.openssf.org/proposals/build-provenance-and-code-signing-for-homebrew.html#macos-executable-code-signing https://github.com/Homebrew/brew/blob/1f37a11b7946b6d770ecba66a487ba325b58e49c/Library/Homebrew/extend/os/mac/keg.rb#L40
Jun ’25
Reply to Binding on priviledged ports on macOS
My use case is: I want to run multiple services on a Mac Studio, each binding to a different IP address, all using port 443. Ideally, I'd like to run them as a non-root user. Afaict, the options are: a reverse proxy listing on all interfaces (I'd like to avoid this additional network hop) port forwarding using PF wait for the issue discussed in this thread to get resolved and continue to run them as root in the meantime. I hope we get to see another Finally! :)
Topic: App & System Services SubTopic: Core OS Tags:
Apr ’25
Reply to VZUSBPassthroughDevice Breaks macOS OTA Update Personalization
The host is failing to update at around the 10% mark with the MSU_ERR_PERSONALIZATION_FAILURE error. This persists even after stopping the VM or re-assigning the pased-through USB device back to the host. The personlization step only completes when I unplug the passed-through USB device. Maybe there are still some processes from Virtualization.framework hanging around, holding onto a IOKit lock.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
2w
Reply to macOS 27 Beta 1 Install Failure
Updated: A DFU revive rendered the Mac unbootable, but I was able to re-install macOS from a USB medium without data loss. Phew.
Topic: Community SubTopic: Apple Developers Tags:
Replies
Boosts
Views
Activity
3w
Reply to macOS 27 Beta 1 Install Failure
I've now also hit MSU_ERR_PERSONALIZATION_FAILURE which prevents me from upgrading a Mac Studio M4 (which is not in Reduced Security mode and never was) from macOS 27 Beta 2 to Beta 3. My MacBook Pro M4 upgraded just fine. The full installer runs into the same issue.
Topic: Community SubTopic: Apple Developers Tags:
Replies
Boosts
Views
Activity
3w
Reply to com.apple.vm.networking entitlement
Thanks, once again, Quinn! Does https://github.com/IngmarStein/havm look like something that meets the criteria for both? I saw the thread mentioning the DTS support request but hoped for some rules that help me assess the odds.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’26
Reply to Disable Local Network Access permission check
Quinn, this is awesome, thank you so much! And wow: "The AllowedEthernetLocalNetworkAddresses and AllowedWiFiLocalNetworkAddresses user defaults debuted in macOS 15.5"
Replies
Boosts
Views
Activity
Feb ’26
Reply to Disable Local Network Access permission check
Alright, I'll watch TN3179 for updates! I don't see a revision number like 161891509 in the public docs, so I assume it's an internal reference. Hoping for good news :)
Replies
Boosts
Views
Activity
Feb ’26
Reply to Disable Local Network Access permission check
It's been a while, but I wanted to bring up the topic again in the hopes that it would increase the changes for improvements in the next major macOS release. People got very creative in the meantime and they use solutions like https://github.com/steipete/Peekaboo or https://www.hammerspoon.org to automate away the security prompts (or just run services as root). As a result, systems become less secure - the opposite of what the permission dialogs are aiming for. It would be better to allow for some flexibility and selectively disable the local network permission for people who trust their networks, the machines, and the software they install on them. Maybe there's a smart way to solve that only for certain use cases like LaunchAgents.
Replies
Boosts
Views
Activity
Feb ’26
Reply to Binding on priviledged ports on macOS
For posterity: the behavior seems unchanged on macOS 26.0 Beta (25A5306g). Binding to a specific IP still requires root permissions.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jul ’25
Reply to Disable Local Network Access permission check
Thanks! I hope there's a chance of a solution materializing during Tahoe's development. In the meantime, I'll probably revert back to launch daemons because the permission problem is worse than I thought. It's one thing when I have to log in using remote desktop to re-grant permissions after upgrading Prometheus, Grafana, Alloy, or other services, but it's another when I upgrade a runtime like Pythong or .NET. In that case, I have to figure out which services use those, restart them, and then allow access to the local network and private keys in Keychain. Running as root is already not great, but launch daemons often surface another problem: because they start so early in the boot process, network interfaces might not be up yet and some services don't properly handle that case. Technitium DNS, for example, falls back to listening on a default port on all interfaces if binding fails. I've filed an issue upstream and the next version will introduce a flag which instead terminates the process, so that launchd can restart it at a later time. There are other cases like this. Just mentioning this additional context in case it helps with prioritization :)
Replies
Boosts
Views
Activity
Jun ’25
Reply to Disable Local Network Access permission check
Thanks, Quinn! I've created an enhancement request and here's the bug number as requested: FB17818651. I apologize if the "if only" came across as a bit snarky. I understand that not having such a setting is probably the right thing for macOS in the usual context of a personal computing device for end users. However, in a server context (where I guess Mac minis and Studios are quite popular), it might be warranted. Not sure if this audience is a priority for Apple. As for Homebrew: I'm not a maintainer, but as far as I know, it only provides attestations for bottles (packages), and uses ad-hoc signing for the executables contained in the packages: https://repos.openssf.org/proposals/build-provenance-and-code-signing-for-homebrew.html#macos-executable-code-signing https://github.com/Homebrew/brew/blob/1f37a11b7946b6d770ecba66a487ba325b58e49c/Library/Homebrew/extend/os/mac/keg.rb#L40
Replies
Boosts
Views
Activity
Jun ’25
Reply to Binding on priviledged ports on macOS
My use case is: I want to run multiple services on a Mac Studio, each binding to a different IP address, all using port 443. Ideally, I'd like to run them as a non-root user. Afaict, the options are: a reverse proxy listing on all interfaces (I'd like to avoid this additional network hop) port forwarding using PF wait for the issue discussed in this thread to get resolved and continue to run them as root in the meantime. I hope we get to see another Finally! :)
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Apr ’25