9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
From: Anthony Martin <ality@pbrane.org>
To: 9fans@9fans.net
Subject: [9fans] Two bugs in ar
Date: Thu,  5 May 2011 03:48:50 -0700	[thread overview]
Message-ID: <20110505104850.GA31074@dinah> (raw)

[-- Attachment #1: Type: text/plain, Size: 724 bytes --]

I was investigating a bug in the Go toolchain's
fork of ar(1), called gopack, and I discovered
two similar bugs in native ar.

1. With a __.SYMDEF file of size (2*n)+1 bytes,
   the size given in the header will incorrectly
   include the padding byte.

2. When writing an archive member file to disk,
   the odd-size check occurs before the write
   which will access one byte past the end of
   the buffer containing the member data.

The solution for both errors is to check for an
odd size after the write, not before.

A patch is attached.  I also modified the code
to properly insert a newline character between
archive members when necessary, in accordance
with the ar(6) man page.

  Anthony


[-- Attachment #2: ar.diff --]
[-- Type: text/plain, Size: 882 bytes --]

--- /n/sources/sys/src/cmd/ar.c	2010-01-21 16:16:47.000000000 -0800
+++ ar.c	2011-05-05 03:15:19.000000000 -0700
@@ -827,8 +827,6 @@
 	Bseek(&b,seek(fd,0,1), 0);

 	len = symdefsize;
-	if(len&01)
-		len++;
 	sprint(a.date, "%-12ld", time(0));
 	sprint(a.uid, "%-6d", 0);
 	sprint(a.gid, "%-6d", 0);
@@ -842,6 +840,8 @@
 	if(HEADER_IO(Bwrite, &b, a))
 			wrerr();

+	if(len&01)
+		len++;
 	len += Boffset(&b);
 	if (astart) {
 		wrsym(&b, len, astart->sym);
@@ -855,7 +855,7 @@
 		wrsym(&b, len, aend->sym);

 	if(symdefsize&0x01)
-		Bputc(&b, 0);
+		Bputc(&b, '\n');
 	Bterm(&b);
 }

@@ -1121,10 +1121,12 @@
 	if(HEADER_IO(write, fd, bp->hdr))
 		return 0;
 	len = bp->size;
-	if (len & 01)
-		len++;
 	if (write(fd, bp->member, len) != len)
 		return 0;
+	if (len & 01) {
+		if(write(fd, "\n", 1) != 1)
+			return 0;
+	}
 	return 1;
 }


                 reply	other threads:[~2011-05-05 10:48 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=20110505104850.GA31074@dinah \
    --to=ality@pbrane.org \
    --cc=9fans@9fans.net \
    /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;
as well as URLs for NNTP newsgroup(s).