shadow/lib
Alejandro Colomar 6e58c12752 libmisc: Add safer allocation macros
This macros have several benefits over the standard functions:

-  The type of the allocated object (not the pointer) is specified as an
   argument, which improves readability:
   -  It is directly obvious what is the type of the object just by
      reading the macro call.
   -  It allows grepping for all allocations of a given type.

   This is admittedly similar to using sizeof() to get the size of the
   object, but we'll see why this is better.

-  In the case of reallocation macros, an extra check is performed to
   make sure that the previous pointer was compatible with the allocated
   type, which can avoid some mistakes.

-  The cast is performed automatically, with a pointer type derived from
   the type of the object.  This is the best point of this macro, since
   it does an automatic cast, where there's no chance of typos.

   Usually, programmers have to decide whether to cast or not the result
   of malloc(3).  Casts usually hide warnings, so are to be avoided.
   However, these functions already return a void *, so a cast doesn't
   really add much danger.  Moreover, a cast can even add warnings in
   this exceptional case, if the type of the cast is different than the
   type of the assigned pointer.  Performing a manual cast is still not
   perfect, since there are chances that a mistake will be done, and
   even ignoring accidents, they clutter code, hurting readability.
   And now we have a cast that is synced with sizeof.

-  Whenever the type of the object changes, since we perform an explicit
   cast to the old type, there will be a warning due to type mismatch in
   the assignment, so we'll be able to see all lines that are affected
   by such a change.  This is especially important, since changing the
   type of a variable and missing to update an allocation call far away
   from the declaration is easy, and the consequences can be quite bad.

Cc: Valentin V. Bartenev <vbartenev@gmail.com>
Signed-off-by: Alejandro Colomar <alx@kernel.org>
2023-02-23 20:28:43 -06:00
..
.indent.pro [svn-upgrade] Integrating new upstream version, shadow (4.0.8) 2007-10-07 11:46:07 +00:00
alloc.h libmisc: Add safer allocation macros 2023-02-23 20:28:43 -06:00
bit.h leading_zerosul(): Fix bug 2023-02-01 09:10:34 +01:00
commonio.c Use *array() allocation functions where appropriate 2023-02-23 20:28:43 -06:00
commonio.h changing lock mechanism 2022-12-29 13:58:49 -06:00
defines.h lib/defines.h: Add NORETURN attribute macro 2023-02-08 22:01:01 -06:00
encrypt.c Merge pull request #451 from hallyn/2021-12-05/license 2022-01-02 18:38:42 -06:00
exitcodes.h Update licensing info 2021-12-23 19:36:50 -06:00
faillog.h Update licensing info 2021-12-23 19:36:50 -06:00
fields.c Remove superfluous casts 2023-02-09 10:03:03 -06:00
fputsx.c Update licensing info 2021-12-23 19:36:50 -06:00
get_gid.c Remove superfluous casts 2023-02-09 10:03:03 -06:00
get_pid.c Remove superfluous casts 2023-02-09 10:03:03 -06:00
get_uid.c Remove superfluous casts 2023-02-09 10:03:03 -06:00
getdef.c Remove superfluous casts 2023-02-09 10:03:03 -06:00
getdef.h Update licensing info 2021-12-23 19:36:50 -06:00
getlong.c Update licensing info 2021-12-23 19:36:50 -06:00
getulong.c Update licensing info 2021-12-23 19:36:50 -06:00
groupio.c malloc(3) already sets errno to ENOMEM 2023-02-23 20:28:43 -06:00
groupio.h Update licensing info 2021-12-23 19:36:50 -06:00
groupmem.c Use *array() allocation functions where appropriate 2023-02-23 20:28:43 -06:00
gshadow_.h Update licensing info 2021-12-23 19:36:50 -06:00
gshadow.c Use *array() allocation functions where appropriate 2023-02-23 20:28:43 -06:00
lockpw.c Don't redefine errno(3) 2022-12-22 11:43:29 +01:00
Makefile.am Assume getutent(3) exists (remove dead code) 2023-02-08 17:21:34 +01:00
mempcpy.h Add mempcpy(3) 2023-02-16 11:29:33 +01:00
nscd.c Don't redefine errno(3) 2022-12-22 11:43:29 +01:00
nscd.h * configure.in, lib/nscd.h, lib/nscd.c: Added --with-nscd flag to 2008-08-30 18:30:36 +00:00
nss.c Warn if failed to read existing /etc/nsswitch.conf 2023-01-04 14:21:43 -06:00
pam_defs.h Declare constant data structure const 2023-01-25 12:31:17 +01:00
port.c Remove superfluous casts 2023-02-09 10:03:03 -06:00
port.h Update licensing info 2021-12-23 19:36:50 -06:00
prototypes.h libmisc: Move xmalloc.c to alloc.c 2023-02-23 20:28:43 -06:00
pwauth.c Don't redefine errno(3) 2022-12-22 11:43:29 +01:00
pwauth.h Add header guards 2022-05-24 07:49:11 -05:00
pwio.c Remove superfluous casts 2023-02-09 10:03:03 -06:00
pwio.h Update licensing info 2021-12-23 19:36:50 -06:00
pwmem.c Use calloc(3) instead of its pattern 2023-02-23 20:28:43 -06:00
run_part.c Initialize local variables 2022-05-24 07:49:11 -05:00
run_part.h Add header guards 2022-05-24 07:49:11 -05:00
selinux.c Don't redefine errno(3) 2022-12-22 11:43:29 +01:00
semanage.c Don't redefine errno(3) 2022-12-22 11:43:29 +01:00
sgetgrent.c Use *array() allocation functions where appropriate 2023-02-23 20:28:43 -06:00
sgetpwent.c Raise limit for passwd and shadow entry length 2022-10-14 10:41:40 +02:00
sgetspent.c Don't redefine errno(3) 2022-12-22 11:43:29 +01:00
sgroupio.c Use *array() allocation functions where appropriate 2023-02-23 20:28:43 -06:00
sgroupio.h Update licensing info 2021-12-23 19:36:50 -06:00
shadow.c Remove superfluous casts 2023-02-09 10:03:03 -06:00
shadowio.c Remove superfluous casts 2023-02-09 10:03:03 -06:00
shadowio.h Update licensing info 2021-12-23 19:36:50 -06:00
shadowlog_internal.h Fix typos 2023-01-26 22:44:39 -06:00
shadowlog.c lib: provide default values for shadow_progname/shadow_logfd 2021-12-27 16:28:23 +00:00
shadowlog.h Drop obsolete prototype for log_dolog() 2022-08-06 11:27:56 -05:00
shadowmem.c Use calloc(3) instead of its pattern 2023-02-23 20:28:43 -06:00
spawn.c Merge pull request #451 from hallyn/2021-12-05/license 2022-01-02 18:38:42 -06:00
sssd.c Don't redefine errno(3) 2022-12-22 11:43:29 +01:00
sssd.h Flush sssd caches in addition to nscd caches 2018-09-13 14:20:02 +02:00
stpecpy.h Add stpecpy() 2023-02-16 11:29:33 +01:00
stpeprintf.h Add stpeprintf() 2023-02-16 11:29:33 +01:00
subordinateio.c Use *array() allocation functions where appropriate 2023-02-23 20:28:43 -06:00
subordinateio.h fix newusers when nss provides subids 2021-05-23 08:16:16 -05:00
tcbfuncs.c Remove superfluous casts 2023-02-09 10:03:03 -06:00
tcbfuncs.h * lib/tcbfuncs.h: Re-indent. 2010-03-18 19:23:00 +00:00