Re: RFR: 8309330: Allow java.security to be extended via a properties directory [v2]

2023-08-23 Thread Martin Balao
On Fri, 2 Jun 2023 12:58:36 GMT, Andrew John Hughes wrote: >> Currently, security properties are held within the `java.security` file in >> the JDK tree for each installed JDK. The system property >> `java.security.properties` can be used to point to a file containing >> additional properties.

RFR: 8009550: PlatformPCSC should load versioned so

2023-08-23 Thread Andrew John Hughes
There is a long standing limitation in the UNIX smartcardio implementation which means it will only look for the `pcsclite` library in two locations; `/usr/lib` and `/usr/local/lib`. It also only searches for an unversioned library. On systems that separate libraries from development headers in

Integrated: 8175874: Update Security.insertProviderAt to specify behavior when requested position is out of range.

2023-08-23 Thread Ben Perez
On Tue, 18 Jul 2023 19:59:34 GMT, Ben Perez wrote: > Fixing the bug as stated would cause compatibility issues. E.g. the > `addProvider` function always adds new providers at position 0 and therefore > would always throw an error. Instead of changing how the function handles > indices, we inst

Re: RFR: 8175874: Update Security.insertProviderAt to specify behavior when requested position is out of range. [v7]

2023-08-23 Thread Valerie Peng
On Wed, 23 Aug 2023 15:57:51 GMT, Ben Perez wrote: >> Fixing the bug as stated would cause compatibility issues. E.g. the >> `addProvider` function always adds new providers at position 0 and therefore >> would always throw an error. Instead of changing how the function handles >> indices, we

Re: RFR: 8175874: Update Security.insertProviderAt to specify behavior when requested position is out of range. [v7]

2023-08-23 Thread Sean Mullan
On Wed, 23 Aug 2023 15:57:51 GMT, Ben Perez wrote: >> Fixing the bug as stated would cause compatibility issues. E.g. the >> `addProvider` function always adds new providers at position 0 and therefore >> would always throw an error. Instead of changing how the function handles >> indices, we

Re: RFR: 8175874: Update Security.insertProviderAt to specify behavior when requested position is out of range. [v7]

2023-08-23 Thread Ben Perez
> Fixing the bug as stated would cause compatibility issues. E.g. the > `addProvider` function always adds new providers at position 0 and therefore > would always throw an error. Instead of changing how the function handles > indices, we instead have added this behavior to the function spec. B

Re: RFR: JDK-8313764: Offer JVM HS functionality to shared lib load operations done by the JDK codebase [v2]

2023-08-23 Thread Matthias Baesken
> Currently there is a number of functionality that would be interesting to > have for shared lib load operations in the JDK C code. > Some examples : > Events::log_dll_message for hs-err files reporting > JFR event NativeLibraryLoad > There is the need to update the shared lib Cache on AIX ( see

Re: RFR: JDK-8313764: Offer JVM HS functionality to shared lib load operations done by the JDK codebase

2023-08-23 Thread Martin Doerr
On Mon, 14 Aug 2023 07:48:00 GMT, Matthias Baesken wrote: > Currently there is a number of functionality that would be interesting to > have for shared lib load operations in the JDK C code. > Some examples : > Events::log_dll_message for hs-err files reporting > JFR event NativeLibraryLoad > Th