Introduce private data area for injection points
authorMichael Paquier <[email protected]>
Sun, 12 May 2024 09:53:06 +0000 (18:53 +0900)
committerMichael Paquier <[email protected]>
Sun, 12 May 2024 09:53:06 +0000 (18:53 +0900)
commit33181b48fd0ee62bc0a9e39291d5a5c4f8540354
tree2ec2237750bb1efd1051641a4560b93d55d952ba
parent407e0b023cdb449dde65fd370c6cc48f5b8a5579
Introduce private data area for injection points

This commit extends the backend-side infrastructure of injection points
so as it becomes possible to register some input data when attaching a
point.  This private data can be registered with the function name and
the library name of the callback when attaching a point, then it is
given as input argument to the callback.  This gives the possibility for
modules to pass down custom data at runtime when attaching a point
without managing that internally, in a manner consistent with the
callback entry retrieved from the hash shmem table storing the injection
point data.

InjectionPointAttach() gains two arguments, to be able to define the
private data contents and its size.

A follow-up commit will rely on this infrastructure to close a race
condition with the injection point detach in the module
injection_points.

While on it, this changes InjectionPointDetach() to return a boolean,
returning false if a point cannot be detached.  This has been mentioned
by Noah as useful when it comes to implement more complex tests with
concurrent point detach, solid with the automatic detach done for local
points in the test module.

Documentation is adjusted in consequence.

Per discussion with Noah Misch.

Reviewed-by: Noah Misch
Discussion: https://postgr.es/m/20240509031553[email protected]
doc/src/sgml/xfunc.sgml
src/backend/utils/misc/injection_point.c
src/include/utils/injection_point.h
src/test/modules/injection_points/expected/injection_points.out
src/test/modules/injection_points/injection_points.c