From: Timothy Miller <miller@techsource.com>
To: Linux Kernel Mailing List <linux-kernel@vger.kernel.org>
Subject: [Fwd: Re: generic strncpy - off-by-one error]
Date: Wed, 13 Aug 2003 16:06:27 -0400 [thread overview]
Message-ID: <3F3A9A43.4080801@techsource.com> (raw)
This may appear twice. Due to the length of the recipient list, my
reply to the list got blocked by the server.
Erik Andersen wrote:
> char *strncpy(char * s1, const char * s2, size_t n)
> {
> register char *s = s1;
> while (n) {
> if ((*s = *s2) != 0) s2++;
> ++s;
> --n;
> }
> return s1;
> }
Nice!
How about this:
char *strncpy(char * s1, const char * s2, size_t n)
{
register char *s = s1;
while (n && *s2) {
n--;
*s++ = *s2++;
}
while (n--) {
*s++ = 0;
}
return s1;
}
This reminds me a lot of the ORIGINAL, although I didn't pay much
attention to it at the time, so I don't remember. It may be that the
original had "n--" in the while () condition of the first loop, rather
than inside the loop.
I THINK the original complaint was that n would be off by 1 upon exiting
the first loop. The fix is to only decrement n when n is nonzero.
If s2 is short enough, then we'll exit the first loop on the nul byte
and fill in the rest in the second loop. Since n is only decremented
with we actually write to s, we will only ever write n bytes. No
off-by-one.
If s2 is too long, the first loop will exit on n being zero, and since
it doesn't get decremented in that case, it'll be zero upon entering the
second loop, thus bypassing it properly.
Erik's code is actually quite elegant, and its efficiency is probably
essentially the same as my first loop. But my second loop would
probably be faster at doing the zero fill.
Now, consider this for the second loop!
while (n&3) {
*s++ = 0;
n--;
}
l = n>>2;
while (l--) {
*((int *)s)++ = 0;
}
n &= 3;
while (n--) {
*s++ = 0;
}
This is only a win for relatively long nul padding. How often is the
padding long enough?
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
reply other threads:[~2003-08-13 19:52 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=3F3A9A43.4080801@techsource.com \
--to=miller@techsource.com \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox