jack2/macosx
Peter Bridgman 7e599badec macOS: Pass JackMachSemaphore send right via mach_msg IPC (#788)
* macOS: Pass JackMachSemaphore send right via mach_msg IPC

Previously, JackMachSemaphore would communicate the send right for the
semaphore object from the server to a client via a named service
registered via `bootstrap_register`. However, to do this, it would
register the semaphore's port as the service port directly.

In theory this ought to be fine, however in practice, macOS `launchd`,
which provides the `bootstrap_register` interface, does not correctly
detect when such a port becomes dead, and incorrectly believes that the
service that it provides is forever alive, even past the end of the
`jackd` process' (and therefore the semaphore's) existence. This seems
to be *specific* to semaphore ports, as `launchd` is expecting a
standard IPC port, owned by the task, not the kernel. This prevents
`jackd` from later registering another service with the same name, as
`launchd` rejects the registration as conflicting with an active service.

To get around this, `jackd` previously added a counter to the end of the
named service registrations, allowing old services to remain in the
system until the end of the session. To prevent things getting out of
hand, this was capped at 98 service registrations for a given semaphore
name. This led to #784, in which running a client for the 99th time
resulted in the semaphore creation failing and the client failing to
connect.

As `launchd` outlives multiple runs of `jackd`, this situation persisted
across restarts of `jackd`, requiring a restart of the user's session
(i.e. a reboot) to fix.

An initial attempt at fixing this (see #785) tried passing the port
rights directly via shared memory, however mach is too clever for us and
foils that plan by having port names be looked up in a per-task table
(sensible when you think about it).

In this commit, we use mach IPC messages to transfer the send right for
the semaphore from the server to the client. By registering a standard
IPC port with the bootstrap server, the service registrations are
correctly torn down when the ports are destroyed.

It works something like this:

* Server creates IPC port and registers it globally via `bootstrap_register`
* Server listens on IPC port for messages
* Client looks up IPC port via `bootstrap_look_up`
* Client sends it a message
* Server replies with a message containing a send right to the
semaphore's port
* Client is then free to use the semaphore port as before.

This resolves #784.

* Improve error handling

* Add myself to Authors
2022-01-15 15:09:55 +00:00
..
coreaudio Fixing macOS version API use 2020-12-28 20:33:08 +00:00
coremidi Correct use of Start/Stop return type in JackCoreMidiDriver. 2020-10-03 11:37:40 +02:00
JackAtomic_os.h Fix alignment of fields for atomic accesses (#761) 2021-06-30 09:16:28 +01:00
JackCompilerDeps_os.h Delete some redundant macros and typedefs. 2013-01-08 14:44:10 +01:00
JackMachSemaphore.h macOS: Pass JackMachSemaphore send right via mach_msg IPC (#788) 2022-01-15 15:09:55 +00:00
JackMachSemaphore.mm macOS: Pass JackMachSemaphore send right via mach_msg IPC (#788) 2022-01-15 15:09:55 +00:00
JackMachSemaphoreServer.h macOS: Pass JackMachSemaphore send right via mach_msg IPC (#788) 2022-01-15 15:09:55 +00:00
JackMachSemaphoreServer.mm macOS: Pass JackMachSemaphore send right via mach_msg IPC (#788) 2022-01-15 15:09:55 +00:00
JackMachThread.h Modernize MacTypes.h #includes. 2015-12-13 18:15:03 +01:00
JackMachThread.mm Renamed OSX C++ files to Objective-C++ files 2015-12-15 19:21:12 +00:00
JackMachTime.c Define NETWORK_PROTOCOL. 2013-05-15 19:37:16 +02:00
JackMachUtils.h macOS: Pass JackMachSemaphore send right via mach_msg IPC (#788) 2022-01-15 15:09:55 +00:00
JackPlatformPlug_os.h Use macos-specific semaphore under macos 2020-06-13 20:00:02 +02:00
generate-pkg.sh Allow custom version on macOS generate-pkg script 2022-01-15 15:09:55 +00:00
package-welcome.txt.in Reword macos readme package, mention full file list 2020-06-22 22:37:23 +02:00
package.xml.in Fix macos package 2020-07-27 00:25:17 +01:00
uptime.c Solving problems while compiling jack2 on macOS X with dbus support (#434) 2019-02-24 18:09:47 +01:00
uptime.h Solving problems while compiling jack2 on macOS X with dbus support (#434) 2019-02-24 18:09:47 +01:00