Files
dragonpilot/selfdrive/registration.py

105 lines
3.4 KiB
Python
Raw Normal View History

2019-06-06 04:38:45 +00:00
import os
2016-11-29 18:34:21 -08:00
import json
import subprocess
2019-06-06 04:38:45 +00:00
import struct
2016-11-29 18:34:21 -08:00
2019-06-06 04:38:45 +00:00
from datetime import datetime, timedelta
2016-11-29 18:34:21 -08:00
from selfdrive.swaglog import cloudlog
2019-07-22 19:17:47 +00:00
from selfdrive.version import version, terms_version, training_version, get_git_commit, get_git_branch, get_git_remote
2016-11-29 18:34:21 -08:00
from common.api import api_get
2017-05-11 12:41:17 -07:00
from common.params import Params
2019-06-06 04:38:45 +00:00
from common.file_helpers import mkdirs_exists_ok
2016-11-29 18:34:21 -08:00
def get_imei():
2018-10-21 15:00:31 -07:00
ret = subprocess.check_output(["getprop", "oem.device.imeicache"]).strip()
if ret == "":
ret = "000000000000000"
return ret
2016-11-29 18:34:21 -08:00
2019-06-06 04:38:45 +00:00
2016-11-29 18:34:21 -08:00
def get_serial():
return subprocess.check_output(["getprop", "ro.serialno"]).strip()
2017-05-11 12:41:17 -07:00
2019-06-06 04:38:45 +00:00
# TODO: move this to a library
def parse_service_call(call):
ret = subprocess.check_output(call).strip()
if 'Parcel' not in ret:
return None
try:
def fh(x):
if len(x) != 8:
return []
return [x[6:8], x[4:6], x[2:4], x[0:2]]
hd = []
for x in ret.split("\n")[1:]:
for k in map(fh, x.split(": ")[1].split(" '")[0].split(" ")):
hd.extend(k)
return ''.join([chr(int(x, 16)) for x in hd])
except Exception:
return None
def get_subscriber_info():
ret = parse_service_call(["service", "call", "iphonesubinfo", "7"])
if ret is None or len(ret) < 8:
return ""
if struct.unpack("I", ret[4:8]) == -1:
return ""
return ret[8:-2:2]
2017-05-11 12:41:17 -07:00
2017-12-23 17:15:27 -08:00
2016-11-29 18:34:21 -08:00
def register():
2017-05-11 12:41:17 -07:00
params = Params()
2017-12-23 17:15:27 -08:00
params.put("Version", version)
2019-07-22 19:17:47 +00:00
params.put("TermsVersion", terms_version)
2018-04-28 09:44:39 +00:00
params.put("TrainingVersion", training_version)
2017-12-23 17:15:27 -08:00
params.put("GitCommit", get_git_commit())
params.put("GitBranch", get_git_branch())
params.put("GitRemote", get_git_remote())
2019-06-06 04:38:45 +00:00
params.put("SubscriberInfo", get_subscriber_info())
# create a key for auth
# your private key is kept on your device persist partition and never sent to our servers
# do not erase your persist partition
if not os.path.isfile("/persist/comma/id_rsa.pub"):
cloudlog.warning("generating your personal RSA key")
mkdirs_exists_ok("/persist/comma")
2019-06-28 21:11:30 +00:00
assert os.system("openssl genrsa -out /persist/comma/id_rsa.tmp 2048") == 0
assert os.system("openssl rsa -in /persist/comma/id_rsa.tmp -pubout -out /persist/comma/id_rsa.tmp.pub") == 0
2019-06-06 04:38:45 +00:00
os.rename("/persist/comma/id_rsa.tmp", "/persist/comma/id_rsa")
os.rename("/persist/comma/id_rsa.tmp.pub", "/persist/comma/id_rsa.pub")
2017-05-11 12:41:17 -07:00
2017-12-23 17:15:27 -08:00
dongle_id, access_token = params.get("DongleId"), params.get("AccessToken")
2019-06-06 04:38:45 +00:00
public_key = open("/persist/comma/id_rsa.pub").read()
# create registration token
# in the future, this key will make JWTs directly
private_key = open("/persist/comma/id_rsa").read()
2019-06-28 21:11:30 +00:00
# late import
import jwt
2019-06-06 04:38:45 +00:00
register_token = jwt.encode({'register':True, 'exp': datetime.utcnow() + timedelta(hours=1)}, private_key, algorithm='RS256')
2017-12-23 17:15:27 -08:00
try:
2019-06-06 04:38:45 +00:00
cloudlog.info("getting pilotauth")
resp = api_get("v2/pilotauth/", method='POST', timeout=15,
imei=get_imei(), serial=get_serial(), public_key=public_key, register_token=register_token)
dongleauth = json.loads(resp.text)
dongle_id, access_token = dongleauth["dongle_id"].encode('ascii'), dongleauth["access_token"].encode('ascii')
params.put("DongleId", dongle_id)
params.put("AccessToken", access_token)
2017-05-11 12:41:17 -07:00
return dongle_id, access_token
2016-11-29 18:34:21 -08:00
except Exception:
cloudlog.exception("failed to authenticate")
2019-06-06 04:38:45 +00:00
if dongle_id is not None and access_token is not None:
return dongle_id, access_token
else:
return None
2016-11-29 18:34:21 -08:00
if __name__ == "__main__":
2018-07-12 18:52:06 -07:00
print(api_get("").text)
print(register())