freeipa/daemons/ipa-kdb
Julien Rische dc3e902b0b ipa-kdb: Fix double free in ipadb_reinit_mspac()
Fixes: https://pagure.io/freeipa/issue/9535

Signed-off-by: Julien Rische <jrische@redhat.com>
Reviewed-By: Florence Blanc-Renaud <flo@redhat.com>
2024-02-20 16:33:59 +01:00
..
tests ipa-kdb: add krb5 1.20 support 2022-11-02 11:03:04 +02:00
ipa_kdb_audit_as.c ipa-kdb: fix compiler warnings 2021-03-01 10:44:25 -05:00
ipa_kdb_certauth.c ipa-kdb: do not fail if certmap rule cannot be added 2022-10-07 17:02:43 +02:00
ipa_kdb_common.c ipa-kdb: postpone ticket checksum configuration 2023-06-01 11:10:21 +02:00
ipa_kdb_delegation.c kdb: implement RBCD handling in KDB driver 2023-04-05 14:55:22 -04:00
ipa_kdb_kdcpolicy.c ipa-kdb: when applying ticket policy, do not deny PKINIT 2023-12-22 10:34:19 +01:00
ipa_kdb_mkey.c ipa-kdb: Get/Store Master Key directly from LDAP 2011-08-26 08:24:49 -04:00
ipa_kdb_mspac_private.h ipa-kdb: Rework ipadb_reinit_mspac() 2024-02-16 09:38:02 +01:00
ipa_kdb_mspac_v6.c ipa-kdb: Rework ipadb_reinit_mspac() 2024-02-16 09:38:02 +01:00
ipa_kdb_mspac_v9.c ipa-kdb: Rework ipadb_reinit_mspac() 2024-02-16 09:38:02 +01:00
ipa_kdb_mspac.c ipa-kdb: Fix double free in ipadb_reinit_mspac() 2024-02-20 16:33:59 +01:00
ipa_kdb_passwords.c Add missing break statement to password quality switch 2021-01-15 10:01:28 +01:00
ipa_kdb_principals.c ipa-kdb: Rework ipadb_reinit_mspac() 2024-02-16 09:38:02 +01:00
ipa_kdb_pwdpolicy.c ipa-kdb: fix compiler warnings 2021-03-01 10:44:25 -05:00
ipa_kdb.c ipa-kdb: Rework ipadb_reinit_mspac() 2024-02-16 09:38:02 +01:00
ipa_kdb.exports Add a skeleton kdcpolicy plugin 2019-09-10 12:33:21 +03:00
ipa_kdb.h ipa-kdb: Rework ipadb_reinit_mspac() 2024-02-16 09:38:02 +01:00
ipa-print-pac.c Covscan issues: deadcode and Use after free 2023-09-29 12:05:48 +02:00
Makefile.am ipa-kdb: support Samba 4.20 private libraries 2024-02-06 10:57:08 +01:00
README Make the coding style explicit 2020-01-15 10:00:08 +01:00
README.s4u2proxy.txt Fix s4u2proxy README and add warning 2015-06-08 14:37:29 -04:00

This is the ipa krb5kdc database backend.

As the KDB interfaces heavily with krb5, we inherit its code style as well.
However, note the following changes:

- no modelines (and different file preamble)
- return types don't require their own line
- single-statement blocks may optionally be braced
- /* and */ do not ever get their own line
- C99 for-loops are permitted (and encouraged)
- a restricted set of other C99 features are permitted

In particular, variable-length arrays, flexible array members, compound
literals, universal character names, and //-style comments are not permitted.

Use of regular malloc/free is preferred over talloc for new code.

By and large, existing code mostly conforms to these requirements.  New code
must conform to them.