summaryrefslogtreecommitdiffstats
path: root/contrib/telnet/telnetd/utility.c
diff options
context:
space:
mode:
authorru <ru@FreeBSD.org>2001-07-20 12:02:30 +0000
committerru <ru@FreeBSD.org>2001-07-20 12:02:30 +0000
commit4b023c5a9f160b15b1ae45ac500512e1209b8c02 (patch)
tree423ada7eed1633a885efca42128ef9d5203034c1 /contrib/telnet/telnetd/utility.c
parent719efadfd6a1b229021ba4ba691e87765dea919b (diff)
downloadFreeBSD-src-4b023c5a9f160b15b1ae45ac500512e1209b8c02.zip
FreeBSD-src-4b023c5a9f160b15b1ae45ac500512e1209b8c02.tar.gz
More potential buffer overflow fixes.
o Fixed `nfrontp' calculations in output_data(). If `remaining' is initially zero, it was possible for `nfrontp' to be decremented. Noticed by: dillon o Replaced leaking writenet() with output_datalen(): : * writenet : * : * Just a handy little function to write a bit of raw data to the net. : * It will force a transmit of the buffer if necessary : * : * arguments : * ptr - A pointer to a character string to write : * len - How many bytes to write : */ : void : writenet(ptr, len) : register unsigned char *ptr; : register int len; : { : /* flush buffer if no room for new data) */ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ : if ((&netobuf[BUFSIZ] - nfrontp) < len) { : /* if this fails, don't worry, buffer is a little big */ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ : netflush(); : } : : memmove(nfrontp, ptr, len); : nfrontp += len; : : } /* end of writenet */ What an irony! :-) o Optimized output_datalen() a bit.
Diffstat (limited to 'contrib/telnet/telnetd/utility.c')
-rw-r--r--contrib/telnet/telnetd/utility.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/contrib/telnet/telnetd/utility.c b/contrib/telnet/telnetd/utility.c
index aa85d7a..d59657f 100644
--- a/contrib/telnet/telnetd/utility.c
+++ b/contrib/telnet/telnetd/utility.c
@@ -318,33 +318,6 @@ netflush()
/*
- * writenet
- *
- * Just a handy little function to write a bit of raw data to the net.
- * It will force a transmit of the buffer if necessary
- *
- * arguments
- * ptr - A pointer to a character string to write
- * len - How many bytes to write
- */
- void
-writenet(ptr, len)
- register unsigned char *ptr;
- register int len;
-{
- /* flush buffer if no room for new data) */
- if ((&netobuf[BUFSIZ] - nfrontp) < len) {
- /* if this fails, don't worry, buffer is a little big */
- netflush();
- }
-
- memmove(nfrontp, ptr, len);
- nfrontp += len;
-
-} /* end of writenet */
-
-
-/*
* miscellaneous functions doing a variety of little jobs follow ...
*/
OpenPOWER on IntegriCloud