Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(2)

Issue 6348074: code review 6348074: encoding/asn1: promote untyped strings to UTF8 as needed. (Closed)

Can't Edit
Can't Publish+Mail
Start Review
Created:
12 years, 9 months ago by agl1
Modified:
12 years, 8 months ago
Reviewers:
CC:
golang-dev, bradfitz, r, r2
Visibility:
Public.

Description

encoding/asn1: promote untyped strings to UTF8 as needed. Previously, strings that didn't have an explicit ASN.1 string type were taken to be ASN.1 PrintableStrings. This resulted in an error if a unrepresentable charactor was included. For compatibility reasons, I'm too afraid to switch the default string type to UTF8String, but this patch causes untyped strings to become UTF8Strings if they contain a charactor that's not valid in a PrintableString. Fixes issue 3791.

Patch Set 1 #

Patch Set 2 : diff -r b7a1cd9f1a6c https://code.google.com/p/go/ #

Patch Set 3 : diff -r b7a1cd9f1a6c https://code.google.com/p/go/ #

Patch Set 4 : diff -r b7a1cd9f1a6c https://code.google.com/p/go/ #

Total comments: 3

Patch Set 5 : diff -r b7a1cd9f1a6c https://code.google.com/p/go/ #

Patch Set 6 : diff -r 695f65745351 https://code.google.com/p/go/ #

Total comments: 2

Patch Set 7 : diff -r 8241ffc8686e https://code.google.com/p/go/ #

Unified diffs Side-by-side diffs Delta from patch set Stats (+43 lines, -7 lines) Patch
M src/pkg/crypto/x509/x509_test.go View 1 1 chunk +1 line, -1 line 0 comments Download
M src/pkg/encoding/asn1/common.go View 1 1 chunk +2 lines, -0 lines 0 comments Download
M src/pkg/encoding/asn1/marshal.go View 1 2 3 4 5 6 4 chunks +32 lines, -6 lines 0 comments Download
M src/pkg/encoding/asn1/marshal_test.go View 1 2 3 2 chunks +8 lines, -0 lines 0 comments Download

Messages

Total messages: 13
agl1
Hello golang-dev@googlegroups.com (cc: golang-dev@googlegroups.com), I'd like you to review this change to https://code.google.com/p/go/
12 years, 9 months ago (2012-07-09 15:20:32 UTC) #1
bradfitz
With the caveat that I don't know ASN.1 at all, what about keeping it printable ...
12 years, 9 months ago (2012-07-09 17:04:11 UTC) #2
agl1
On Mon, Jul 9, 2012 at 1:04 PM, Brad Fitzpatrick <bradfitz@golang.org> wrote: > With the ...
12 years, 9 months ago (2012-07-09 17:11:35 UTC) #3
bradfitz
LGTM On Mon, Jul 9, 2012 at 10:11 AM, Adam Langley <agl@golang.org> wrote: > On ...
12 years, 9 months ago (2012-07-09 17:19:08 UTC) #4
r
http://codereview.appspot.com/6348074/diff/10001/src/pkg/encoding/asn1/marshal.go File src/pkg/encoding/asn1/marshal.go (right): http://codereview.appspot.com/6348074/diff/10001/src/pkg/encoding/asn1/marshal.go#newcode515 src/pkg/encoding/asn1/marshal.go:515: if r > 255 || !isPrintable(byte(r)) { surely 127 ...
12 years, 9 months ago (2012-07-09 22:12:56 UTC) #5
agl1
http://codereview.appspot.com/6348074/diff/10001/src/pkg/encoding/asn1/marshal.go File src/pkg/encoding/asn1/marshal.go (right): http://codereview.appspot.com/6348074/diff/10001/src/pkg/encoding/asn1/marshal.go#newcode515 src/pkg/encoding/asn1/marshal.go:515: if r > 255 || !isPrintable(byte(r)) { On 2012/07/09 ...
12 years, 9 months ago (2012-07-09 22:19:08 UTC) #6
r
http://codereview.appspot.com/6348074/diff/10001/src/pkg/encoding/asn1/marshal.go File src/pkg/encoding/asn1/marshal.go (right): http://codereview.appspot.com/6348074/diff/10001/src/pkg/encoding/asn1/marshal.go#newcode515 src/pkg/encoding/asn1/marshal.go:515: if r > 255 || !isPrintable(byte(r)) { if that's ...
12 years, 9 months ago (2012-07-09 22:22:59 UTC) #7
r
checking my understanding: if the byte is not PRINTABLE, it must be part of a ...
12 years, 9 months ago (2012-07-09 22:24:55 UTC) #8
agl1
On 2012/07/09 22:24:55, r wrote: > checking my understanding: if the byte is not PRINTABLE, ...
12 years, 9 months ago (2012-07-09 22:29:02 UTC) #9
r2
this CL isn't viewable by me: chunk mismatch -rob
12 years, 8 months ago (2012-07-10 19:51:05 UTC) #10
agl1
uploaded again and codereview seems to be happy now.
12 years, 8 months ago (2012-07-10 19:54:53 UTC) #11
r
LGTM after fixing buglet http://codereview.appspot.com/6348074/diff/2002/src/pkg/encoding/asn1/marshal.go File src/pkg/encoding/asn1/marshal.go (right): http://codereview.appspot.com/6348074/diff/2002/src/pkg/encoding/asn1/marshal.go#newcode515 src/pkg/encoding/asn1/marshal.go:515: if r > utf8.RuneSelf || ...
12 years, 8 months ago (2012-07-10 20:07:46 UTC) #12
agl1
12 years, 8 months ago (2012-07-10 22:23:47 UTC) #13
*** Submitted as http://code.google.com/p/go/source/detail?r=63d9b9b595c5 ***

encoding/asn1: promote untyped strings to UTF8 as needed.

Previously, strings that didn't have an explicit ASN.1 string type
were taken to be ASN.1 PrintableStrings. This resulted in an error if
a unrepresentable charactor was included.

For compatibility reasons, I'm too afraid to switch the default string
type to UTF8String, but this patch causes untyped strings to become
UTF8Strings if they contain a charactor that's not valid in a
PrintableString.

Fixes issue 3791.

R=golang-dev, bradfitz, r, r
CC=golang-dev
http://codereview.appspot.com/6348074

http://codereview.appspot.com/6348074/diff/2002/src/pkg/encoding/asn1/marshal.go
File src/pkg/encoding/asn1/marshal.go (right):

http://codereview.appspot.com/6348074/diff/2002/src/pkg/encoding/asn1/marshal...
src/pkg/encoding/asn1/marshal.go:515: if r > utf8.RuneSelf ||
!isPrintable(byte(r)) {
On 2012/07/10 20:07:46, r wrote:
> s/>/>=/

Done.
Sign in to reply to this message.

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b