Skip to content
This repository has been archived by the owner on Apr 15, 2020. It is now read-only.

IdentityManager - Identity factory with multiple devices and singleton controller support #17

Merged
merged 36 commits into from
Jul 28, 2017

Conversation

pelle
Copy link
Contributor

@pelle pelle commented Apr 17, 2017

Creating an identity is much cheaper than in IdentityFactory
~289,311 vs ~2,400,000 gas

Original idea inspired by @narush. It no longer creates a controller per identity but uses a shared controller implemented in the contract itself.

It also supports adding multiple devices per identity and simplfied recovery rules

@pelle
Copy link
Contributor Author

pelle commented Apr 22, 2017

I rebased it and changed a few things. I need to update the tests more and add tests for the different attack scenarios

@oed
Copy link
Contributor

oed commented Apr 27, 2017

We would probably also want a factory function that creates a controller to an already existing proxy contract. That would make it much easier to switch from using an older controller.

@pelle
Copy link
Contributor Author

pelle commented May 18, 2017

Good idea @oed

@naterush
Copy link
Contributor

With rateLimited, it limits an existing owner to adding a single owner within an hour. But then that owner can add another owner immediately. Essentially, owner1 could add owner2 who could add owner3... w/ no delay. I think this could be a way to avoid rateLimited and add unlimited owners with no time lock.

This could be fixed by added a line limiter[newOwner] = now; in the addOwner function.

@pelle pelle force-pushed the feature/identity-manager branch from dbc7fb8 to 4f32a81 Compare May 19, 2017 05:07
@pelle
Copy link
Contributor Author

pelle commented May 19, 2017

@naterush @oed I should now handle both your concerns.

Working on reorganizing tests to be more thorough

@oed
Copy link
Contributor

oed commented May 22, 2017

Just a small note: Can you change the pragma solidity to 0.4.8, without the ^?
See #19

@pelle pelle force-pushed the feature/identity-manager branch from 153e5de to eca4abc Compare May 25, 2017 02:02
@pelle pelle requested review from oed, coder5876 and naterush May 25, 2017 02:04
@naterush
Copy link
Contributor

naterush commented May 25, 2017

@pelle I wonder if there is a benefit to having a distinction between onlyOwner and onlyOlderOwner now that there is a rate limiter. While it allows for different time locks for 1) using proxy, and 2) adding/removing other owners, but I'm not sure this is a distinction worth making.

Something we've discussed is that added devices should be able to transact immediately for UX reasons -- which I think makes sense. Thus, it might make sense to remove onlyOlderOwner completely, and just have an onlyOwner modifier, and just use the rateLimiter to control access to addOwner, removerOwner, etc.

@pelle
Copy link
Contributor Author

pelle commented May 25, 2017

@naterush @christianlundkvist I do feel that it is a good idea to limit admin like funcitonality to older users. I also think there should be some sort of small limit for new owners as I think it's safer, but we can configure it to 0 in the constructor if we feel it's ok.

@oed
Copy link
Contributor

oed commented Jul 17, 2017

@christianlundkvist yes, this PR is no longer needed.

Copy link
Contributor Author

@pelle pelle left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I can't Request Changes since I'm the original author. @oed see my comments. Small check needed. Otherwise everything looks great.

@@ -83,6 +83,7 @@ contract IdentityManager {
// Factory function
// gas 289,311
function CreateIdentity(address owner, address recoveryKey) {
if (recoveryKey == address(0)) throw;
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I didn't know about this address(0). Nice.

}

// an owner can migrate away to a new IdentityManager
function initiateMigration(Proxy identity, address newIdManager) onlyOlderOwner(identity) {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@oed Based on the other changes checking for null recovery keys, we should do the same here. Basically if newIdManager is null it should fail.

// WARNING: before transfering to a new address, make sure this address is "ready to recieve" the proxy.
// Not doing so risks the proxy becoming stuck.
function finalizeMigration(Proxy identity) onlyOlderOwner(identity) {
if (migrationInitiated[identity] > 0 && migrationInitiated[identity] + adminTimeLock < now) {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Explanatory comment on my above comment. If migrationNewAddress[identity] == address(0) here we could loose an identity completely. But the right place to check for it is in initiateMigration

@@ -133,6 +133,7 @@ contract IdentityManager {

// an owner can migrate away to a new IdentityManager
function initiateMigration(Proxy identity, address newIdManager) onlyOlderOwner(identity) {
if (newIdManager == address(0)) throw;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@oed could use the validAddress modifier here also.


/// @dev Allows a recoveryKey to add a new owner with userTimeLock waiting time
function addOwnerFromRecovery(Proxy identity, address newOwner) onlyRecovery(identity) rateLimited(identity) {
if (owners[identity][newOwner] > 0) throw;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could be if (isOwner(identity, newOwner)) throw;

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

good point!

/// @param recoveryKey Key of recovery network or address from seed to recovery proxy
/// Note: User must change owner of proxy to this contract after calling this
function registerIdentity(address owner, address recoveryKey) validAddress(recoveryKey) {
if (owners[msg.sender][owner] > 0 || recoveryKeys[msg.sender] > 0 ) throw; // Deny any funny business
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

First check here is not needed. As we enforce the recoveryKey invariant, this is not an issue.


/// @dev Allows an owner to remove another owner instantly
function removeOwner(Proxy identity, address owner) onlyOlderOwner(identity) rateLimited(identity) {
owners[identity][owner] = 0;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe use delete keyword for clarity?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes, thanks!

/// @dev Allows an owner to cancel the process of transfering proxy to new IdentityManager
function cancelMigration(Proxy identity) onlyOwner(identity) {
address canceledManager = migrationNewAddress[identity];
migrationInitiated[identity] = 0;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe delete here also

Copy link
Contributor Author

@pelle pelle left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changes look great so far

// - userTimeLock - Time before new owner can control proxy
// - adminTimeLock - Time before new owner can add/remove owners
// - adminRate - Time period used for rate limiting a given key for admin functionality
modifier validAddress(address addr) { //protects against some weird attacks
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Awesome

Copy link
Contributor

@coder5876 coder5876 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good except for the possible nuisance attack and possible mitigation (didn't think of this one before).

/// @param owner Key who can use this contract to control proxy. Given full power
/// @param recoveryKey Key of recovery network or address from seed to recovery proxy
/// Gas cost of 289,311
function createIdentity(address owner, address recoveryKey) validAddress(recoveryKey) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There seems to be a possible nuisance attack here: Let's say I create a new identity with a recoveryKey that's used by someone else. This will then be stored here and in the registry, and when Vishnu is indexing the search will pull up two identities with this recoveryKey.

One way to mitigate this is to add a mapping

mapping(address => address) public recoveryKeyToIdentity;

that maps a recoveryKey to an identity, and when creating a new identity we include a check that recoveryKeyToIdentity[recoveryKey] is zero. This will also allow us to resolve the proxy address given a recoveryKey without using Vishnu.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think there is an issue about us not knowing where to look for the key. The mobile app needs to keep track of the IdentityManager address in order to be able to send transactions anyway.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@christianlundkvist what would be the motivation for searching based on recoveryKey? It seems unlikely to me that a recovery key would ever say wonder what it is the recovery for, given that the recovery key will likely be the owner of the identity themselves (with SSS).

Also, Vishnu could just index the first one. This does open the system up to very mild front running attacks, but it seems like it is a very mild issue.

I'm not sure it is worth the extra storage place. Not sure though. Let me know what you think.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@christianlundkvist If we decide to do this, should we do the same for owners as well? It seems like the same nuisance attack may be possible in this case (though the reasons for going to Vishnu is even more questionable)?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@naterush @christianlundkvist the real case that we're currently using vishnu for is I have a recovery seed and I want to look up my uPort address from which I can now get my Identity Manager as well. If a user knows his uport address this is not an issue.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The proposed solution to nuisance attack wouldn't do much good with multiple identity managers anyway.

Perhaps the real solution is to have the recoveryAddress itself record in the registry which address they are recovering for.

Copy link
Contributor

@coder5876 coder5876 Jul 24, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Perhaps the real solution is to have the recoveryAddress itself record in the registry which address they are recovering for.

@pelle Yeah this would definitely work, I like this solution.

@coder5876
Copy link
Contributor

@pelle see comments above

Copy link
Contributor

@coder5876 coder5876 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If we mitigate the nuisance attack by having the recovery key update the registry we should be good to go.

@naterush
Copy link
Contributor

naterush commented Jul 25, 2017

I'm working on getting tests working, and I don't want to merge w/out doing so, but can we change the isOwner function? It's a one liner but could save us from some headaches later.

Essentially, as of now, it may return that someone is an owner when they are not. To fix this, we just have to change the function to say:

return (owners[identity][owner] > 0 && (owners[identity][owner] + userTimeLock) <= now );

This way it will match with the modifier isOwner.

After that, let's merge :) Note: edited after posting to change msg.sender -> owner.

@naterush
Copy link
Contributor

I had to do some funky stuff updating truffle wallet provider, etc. Not exactly sure what the issue was, but I think this should be good to merge :).

@localredhead
Copy link
Contributor

@coder5876
Copy link
Contributor

Deployed on Rinkeby + Kovan. Updated compiler version for latest version of Truffle

@pelle pelle merged commit c2cfd94 into develop Jul 28, 2017
@naterush naterush deleted the feature/identity-manager branch November 15, 2017 22:14
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants