2016-07-01 03:18:55 +00:00
|
|
|
package core
|
|
|
|
|
2016-08-30 01:49:30 +00:00
|
|
|
import (
|
|
|
|
"crypto/rsa"
|
|
|
|
"encoding/base64"
|
|
|
|
"errors"
|
2016-09-11 04:35:03 +00:00
|
|
|
"github.com/special/notricochet/core/utils"
|
2016-08-30 01:49:30 +00:00
|
|
|
"github.com/yawning/bulb/utils/pkcs1"
|
|
|
|
"log"
|
2016-09-11 04:35:03 +00:00
|
|
|
"sync"
|
2016-08-30 01:49:30 +00:00
|
|
|
)
|
2016-07-01 03:18:55 +00:00
|
|
|
|
2016-09-11 04:35:03 +00:00
|
|
|
// Identity represents the local user, including their contact address,
|
|
|
|
// and contains the contacts list.
|
2016-08-30 01:49:30 +00:00
|
|
|
type Identity struct {
|
2016-09-11 04:57:54 +00:00
|
|
|
core *Ricochet
|
2016-08-30 02:46:41 +00:00
|
|
|
|
2016-09-11 04:35:03 +00:00
|
|
|
mutex sync.Mutex
|
2016-07-01 03:18:55 +00:00
|
|
|
|
2016-09-11 04:35:03 +00:00
|
|
|
address string
|
|
|
|
privateKey *rsa.PrivateKey
|
2016-07-01 03:18:55 +00:00
|
|
|
contactList *ContactList
|
|
|
|
}
|
|
|
|
|
2016-09-11 04:57:54 +00:00
|
|
|
func CreateIdentity(core *Ricochet) (*Identity, error) {
|
2016-08-30 02:46:41 +00:00
|
|
|
me := &Identity{
|
|
|
|
core: core,
|
|
|
|
}
|
|
|
|
|
2016-09-11 04:35:03 +00:00
|
|
|
if err := me.loadIdentity(); err != nil {
|
|
|
|
log.Printf("Failed loading identity: %v", err)
|
2016-08-30 02:46:41 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
contactList, err := LoadContactList(core)
|
|
|
|
if err != nil {
|
2016-09-11 04:35:03 +00:00
|
|
|
log.Printf("Failed loading contact list: %v", err)
|
2016-08-30 02:46:41 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
me.contactList = contactList
|
2016-08-30 01:49:30 +00:00
|
|
|
|
2016-09-11 04:35:03 +00:00
|
|
|
go me.publishService(me.privateKey)
|
2016-08-30 02:46:41 +00:00
|
|
|
return me, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (me *Identity) loadIdentity() error {
|
2016-09-11 04:57:54 +00:00
|
|
|
config := me.core.Config.OpenRead()
|
2016-08-30 01:49:30 +00:00
|
|
|
defer config.Close()
|
2016-08-30 02:46:41 +00:00
|
|
|
|
2016-08-30 01:49:30 +00:00
|
|
|
if config.Identity.ServiceKey != "" {
|
|
|
|
keyData, err := base64.StdEncoding.DecodeString(config.Identity.ServiceKey)
|
|
|
|
if err != nil {
|
2016-08-30 02:46:41 +00:00
|
|
|
return err
|
2016-08-30 01:49:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
me.privateKey, _, err = pkcs1.DecodePrivateKeyDER(keyData)
|
|
|
|
if err != nil {
|
2016-08-30 02:46:41 +00:00
|
|
|
return err
|
2016-08-30 01:49:30 +00:00
|
|
|
}
|
2016-09-11 04:35:03 +00:00
|
|
|
me.address, err = utils.RicochetAddressFromKey(&me.privateKey.PublicKey)
|
2016-08-30 01:49:30 +00:00
|
|
|
if err != nil {
|
2016-08-30 02:46:41 +00:00
|
|
|
return err
|
2016-08-30 01:49:30 +00:00
|
|
|
}
|
2016-09-11 04:35:03 +00:00
|
|
|
|
|
|
|
log.Printf("Loaded identity %s", me.address)
|
|
|
|
} else {
|
|
|
|
log.Printf("Initializing new identity")
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (me *Identity) setPrivateKey(key *rsa.PrivateKey) error {
|
|
|
|
me.mutex.Lock()
|
|
|
|
defer me.mutex.Unlock()
|
|
|
|
|
|
|
|
if me.privateKey != nil || me.address != "" {
|
|
|
|
return errors.New("Cannot change private key on identity")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Save key to config
|
|
|
|
keyData, err := pkcs1.EncodePrivateKeyDER(key)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
config := me.core.Config.OpenWrite()
|
|
|
|
config.Identity.ServiceKey = base64.StdEncoding.EncodeToString(keyData)
|
|
|
|
config.Save()
|
|
|
|
|
|
|
|
// Update Identity
|
|
|
|
me.address, err = utils.RicochetAddressFromKey(&key.PublicKey)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2016-07-01 03:18:55 +00:00
|
|
|
}
|
2016-09-11 04:35:03 +00:00
|
|
|
me.privateKey = key
|
2016-07-01 03:18:55 +00:00
|
|
|
|
2016-09-11 04:35:03 +00:00
|
|
|
log.Printf("Created new identity %s", me.address)
|
2016-08-30 02:46:41 +00:00
|
|
|
return nil
|
2016-07-01 03:18:55 +00:00
|
|
|
}
|
|
|
|
|
2016-09-11 04:35:03 +00:00
|
|
|
// BUG(special): No error handling for failures under publishService
|
|
|
|
func (me *Identity) publishService(key *rsa.PrivateKey) {
|
2016-09-16 00:32:58 +00:00
|
|
|
// This call will block until a control connection is available and the
|
|
|
|
// ADD_ONION command has returned. After creating the listener, it will
|
|
|
|
// be automatically re-published if the control connection is lost and
|
|
|
|
// later reconnected.
|
2016-09-11 04:35:03 +00:00
|
|
|
service, listener, err := me.core.Network.NewOnionListener(9878, key)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("Identity listener failed: %v", err)
|
|
|
|
// XXX handle
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if key == nil {
|
2016-09-16 00:32:58 +00:00
|
|
|
if service.PrivateKey == nil {
|
|
|
|
log.Printf("Setting private key failed: no key returned")
|
|
|
|
// XXX handle
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-09-11 04:35:03 +00:00
|
|
|
err := me.setPrivateKey(service.PrivateKey.(*rsa.PrivateKey))
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("Setting private key failed: %v", err)
|
|
|
|
// XXX handle
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("Identity service published, accepting connections")
|
|
|
|
go me.core.Protocol.ServeListener(listener)
|
|
|
|
}
|
|
|
|
|
2016-07-01 03:18:55 +00:00
|
|
|
func (me *Identity) Address() string {
|
|
|
|
return me.address
|
|
|
|
}
|
|
|
|
|
|
|
|
func (me *Identity) ContactList() *ContactList {
|
|
|
|
return me.contactList
|
|
|
|
}
|
2016-09-11 04:35:03 +00:00
|
|
|
|
|
|
|
func (me *Identity) PrivateKey() rsa.PrivateKey {
|
|
|
|
return *me.privateKey
|
|
|
|
}
|