Closed Bug 1221040 Opened 9 years ago Closed 9 years ago

Add support for SHA-256 to NativeCrypto

Categories

(Firefox for Android Graveyard :: General, defect)

All
Android
defect
Not set
normal

Tracking

(firefox45 fixed)

RESOLVED FIXED
Firefox 45
Tracking Status
firefox45 --- fixed

People

(Reporter: sebastian, Assigned: droeh)

References

Details

Attachments

(1 file, 3 obsolete files)

To verify downloaded app content (bug 1197720) we would like to use SHA-256. Using Java's crypto framework has caused noticeable startup penalties (see bug bug 959652 and linked bugs). Therefore we would like to extend NativeCrypto to support SHA-256. This will be used to calculate hashes of files, so we would like to avoid reading the whole file into memory. Instead the native code should read the file itself or accept byte chunks (see ByteBuffer to avoid overhead). Additionally we should extend testNativeCrypto to cover SHA-256 too.
I'm not experienced enough in C++ to just add this. I'm open to learn but I'll need some hints. @Michael: I saw you added SHA-1 support to NativeCrypto. Do you know what's needed to add sha256 support?
Flags: needinfo?(rnewman)
Flags: needinfo?(michael.l.comella)
(In reply to Sebastian Kaspari (:sebastian) from comment #1) > @Michael: I saw you added SHA-1 support to NativeCrypto. Do you know what's > needed to add sha256 support? I am actually not that familiar with C++ or the build goo – that was a bug much like this one, I guess! :P I originally implemented it in bug 915312, and the comments might document some of my journey (because I unfortunately can't remember most of it!). However, this bug doesn't entirely look carbon-copy. (I'll reference patch parts from bug 915312 in parens) It looks like you may be able to import sha256 from ./ipc/ [1] or NSS (see [2]). If not, see if you can find where the imports in the existing C++ code is coming from [3]. Once you have the libraries, you'll need to make the JNI calls through NativeCrypto.cpp (part 2) and add the appropriate bindings to the Java NativeCrypto (part 3). Best way to test is a good old-fashioned unit test (part 4)! :) If you have questions, feel free to ask – I might remember a bit more. [1]: http://mxr.mozilla.org/mozilla-central/source/ipc/app/sha256.h [2]: http://mxr.mozilla.org/mozilla-central/find?text=&string=sha256 [3]: https://mxr.mozilla.org/mozilla-central/search?string=sha256&find=\.cpp%24&findi=\.xul%24&filter=^[^\0]*%24&hitlimit=&tree=mozilla-central
Flags: needinfo?(michael.l.comella)
Hey platform people! I wonder if this is easy to add for you. I'd rather like to have it sooner than learning writing it myself by letting someone review a series of crappy patches. :)
Flags: needinfo?(snorp)
Flags: needinfo?(rnewman)
Flags: needinfo?(esawin)
I see that we do appear to have an implementation[0] of SHA256 in the tree, so this would be fairly straightforward to implement. Dylan, do you want to take a crack at it? [0] https://dxr.mozilla.org/mozilla-central/source/ipc/app/sha256.h
Flags: needinfo?(snorp)
Assignee: nobody → droeh
Flags: needinfo?(droeh)
Flags: needinfo?(esawin)
Attached patch bug-1221040-fix.patch (obsolete) (deleted) — Splinter Review
Proposed patch. Jim, I flagged you for review because I think there's some JNI code generation weirdness happening here: the changes I made to NativeCrypto.java should result in a new NativeCrypto.h being generated with a prototype for the sha256 function, right? That's not happening, but this is somehow still building fine and passing tests that use NativeCrypto.sha256.
Flags: needinfo?(droeh)
Attachment #8687240 - Flags: review?(nchen)
Attached patch bug-1221040-fix.patch (obsolete) (deleted) — Splinter Review
Now with manually generated NativeCrypto.h
Attachment #8687240 - Attachment is obsolete: true
Attachment #8687240 - Flags: review?(nchen)
Attachment #8687281 - Flags: review?(nchen)
Hey Dylan! Thanks for the patches. :) I saw that the method takes a byte[] array. We want to use it to hash files. Do you think it would be possible to pass byte[] chunks (Or maybe better: ByteBuffer) to it (like in the CPP version)? Alternatively we could pass the file path to CPP and do the file handling there? Whatever is easier/better. I would like to avoid keeping the whole file as byte array in the memory and copying to the native layer.
Sebastian, I think I can more directly expose the SHA256_Init/Update/Final functions to Java, then you could just pass byte[] chunks or possibly a ByteBuffer to SHA256_Update. I'll look into that and post an updated patch.
Attachment #8687281 - Flags: review?(nchen)
(In reply to Dylan Roeh (:droeh) from comment #9) > I think I can more directly expose the SHA256_Init/Update/Final functions to > Java, then you could just pass byte[] chunks or possibly a ByteBuffer to > SHA256_Update. I'll look into that and post an updated patch. Awesome! Thank you. :)
Attached patch bug-1221040-fix-2.patch (obsolete) (deleted) — Splinter Review
Updated to more directly expose SHA-256 init/update/finalize functions.
Attachment #8687281 - Attachment is obsolete: true
Attachment #8689024 - Flags: review?(snorp)
Comment on attachment 8689024 [details] [diff] [review] bug-1221040-fix-2.patch Review of attachment 8689024 [details] [diff] [review]: ----------------------------------------------------------------- The byte-array-as-SHA256_CTX thing seems a little crazy, but I guess I'm ok with it. The alternative would be to allocate the ctx on the C++ heap and pass a 'long long' pointer around. Looks good if you avoid the copy in initialization ::: mozglue/android/NativeCrypto.cpp @@ +83,5 @@ > + SHA256_Init(&shaContext); > + > + jbyteArray out = env->NewByteArray(sizeof(SHA256_CTX)); > + if (nullptr != out) { > + env->SetByteArrayRegion(out, 0, sizeof(SHA256_CTX), (jbyte*)&shaContext); You can use GetDirectAddress to avoid a copy here, and init the shaContext with that memory instead.
Attachment #8689024 - Flags: review?(snorp) → review+
Attached patch bug-1221040-fix-3.patch (deleted) — Splinter Review
Updated to avoid a copy in sha256init; carrying over snorp's r+.
Attachment #8689024 - Attachment is obsolete: true
Attachment #8689139 - Flags: review+
Keywords: checkin-needed
Status: NEW → RESOLVED
Closed: 9 years ago
Resolution: --- → FIXED
Target Milestone: --- → Firefox 45
Product: Firefox for Android → Firefox for Android Graveyard
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: