* Makefile.in (OBJS, SRCS): Add strnlen.o, strnlen.c
authorTom Yu <tlyu@mit.edu>
Wed, 8 Nov 2000 23:14:56 +0000 (23:14 +0000)
committerTom Yu <tlyu@mit.edu>
Wed, 8 Nov 2000 23:14:56 +0000 (23:14 +0000)
commit0db539968c0e6e01a11bc6deff36753e77e69484
treedacf428d369624b6bc8d759cec66c30b19037471
parent2e19e184c3a369df9f113a4ccc5a444c784b987e
* Makefile.in (OBJS, SRCS): Add strnlen.o, strnlen.c

* cr_auth_repl.c: Audit.  Fix up copyright.  Use new KRB4_PUT*
macros for encoding so output is always big-endian.  Precompute
string lengths for better length-checking.

* cr_ciph.c: Audit.  Fix up copyright.  Use new KRB4_PUT* macros
for encoding so that output is always big-endian.  Precompute
string lengths for better length-checking.  Zero out the key
schedule after encrypting.

* cr_death_pkt.c: Audit.  Fix up copyright.  Precompute string
lengths for better length-checking.

* cr_err_repl.c: Audit.  Fix up copyright.  Use moving pointer to
do encoding.  Precompute string lengths for better
length-checking.  Use KRB4_PUT* macros so that output is always
big-endian.

* cr_tkt.c: Audit.  Fix up copyright.  Use KRB4_PUT* macros for
encoding so that output is always big-endian.  Zero out the key
schedule after encrypting.

* decomp_tkt.c: Audit.  Fix up copyright.  Use krb_strnlen() for
actually detecting string length errors.  Use a struct in_addr to
retrieve the IP address and assign it to paddress for return.  Use
KRB4_GET* macros for decoding to avoid byteswapping problems.
Zero out session key and decrypted ticket on error.

* g_ad_tkt.c: Audit.  Fix up copyright.  Break out parsing of
decrypted KDC reply packet into a separate function to simplify
error handling somewhat.  Precompute string lengths for better
length-checking.  Use KRB4_PUT* macros for encoding so that output
is always big-endian.  Use KRB4_GET* macros for decoding to avoid
byteswapping problems.  Stomp on session key on error conditions.

* g_in_tkt.c: Audit.  Fix up copyright.  Precompute string lengths
for better length-checking.  Use KRB4_PUT* macros for encoding so
output is always big-endian.  Use KRB4_GET* macros for decoding to
avoid byteswapping problems.  Use krb_strnlen() to actually detect
string length errors.  Zero out session key and decrypted KDC
reply once they're no longer useful.

* mk_auth.c: Audit.  Fix up copyright.  Use moving pointer for
encoding.  Use KRB4_PUT* macros for encoding to avoid alignment
issues with using memcpy().  Use KRB4_GET* macros for decoding to
avoid alignment issues with using memcpy().

* mk_err.c: Audit.  Fix up copyright.  Precompute string length.
Use KRB4_PUT* macros to always encode as big-endian.

* mk_preauth.c: Audit.  Zero out key schedule after encryption.

* mk_priv.c: Audit.  Fix up copyright.  Use KRB4_PUT* macros for
encoding so output is always big-endian.

* mk_req.c: Audit.  Fix up copyright.  Use moving pointer for
encoding.  Precompute string lengths for better length-checking.
Use KRB4_PUT* macros for encoding so output is always big-endian.
Zero out session key after encryption.

* mk_safe.c: Audit.  Fix up copyright.  Use KRB4_PUT* macros for
encoding so output is always big-endian.

* rd_err.c: Audit.  Fix up copyright.  Use KRB4_GET* macros to
avoid alignment issues.

* rd_preauth.c: Audit.  Zero key schedule after decrypting.

* rd_priv.c: Audit.  Fix up copyright.  Use KRB4_GET* macros to
avoid alignment issues.

* rd_req.c: Audit.  Fix up copyright.

* send_to_kdc.c (send_recv): Actually set rpkt->length, since some
callers actually use it now to do length-checking.

* strnlen.c: New file; compute string length, bounded by a
maximum.  If the maximum number of characters has been read
without encountering a NUL character, return -1.  This makes
overflow checking of strings in buffers much easier.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@12859 dc483132-0cff-0310-8789-dd5450dbe970
23 files changed:
src/lib/krb4/ChangeLog
src/lib/krb4/Makefile.in
src/lib/krb4/cr_auth_repl.c
src/lib/krb4/cr_ciph.c
src/lib/krb4/cr_death_pkt.c
src/lib/krb4/cr_err_repl.c
src/lib/krb4/cr_tkt.c
src/lib/krb4/decomp_tkt.c
src/lib/krb4/g_ad_tkt.c
src/lib/krb4/g_in_tkt.c
src/lib/krb4/mk_auth.c
src/lib/krb4/mk_err.c
src/lib/krb4/mk_preauth.c
src/lib/krb4/mk_priv.c
src/lib/krb4/mk_req.c
src/lib/krb4/mk_safe.c
src/lib/krb4/rd_err.c
src/lib/krb4/rd_preauth.c
src/lib/krb4/rd_priv.c
src/lib/krb4/rd_req.c
src/lib/krb4/rd_safe.c
src/lib/krb4/send_to_kdc.c
src/lib/krb4/strnlen.c [new file with mode: 0644]