2011-09-25 16:39:03 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
#
|
|
|
|
# Copyright 2011 Stef Walter
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Lesser General Public License as published
|
|
|
|
# by the Free Software Foundation; either version 2 of the licence or (at
|
|
|
|
# your option) any later version.
|
|
|
|
#
|
|
|
|
# See the included COPYING file for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import getopt
|
|
|
|
import unittest
|
|
|
|
|
|
|
|
import aes
|
|
|
|
import dh
|
|
|
|
import hkdf
|
|
|
|
|
|
|
|
import dbus
|
|
|
|
import dbus.service
|
|
|
|
import dbus.glib
|
|
|
|
import gobject
|
|
|
|
|
2011-11-12 07:08:12 +00:00
|
|
|
COLLECTION_PREFIX = "/org/freedesktop/secrets/collection/"
|
|
|
|
|
2011-09-25 16:39:03 +00:00
|
|
|
bus_name = 'org.freedesktop.Secret.MockService'
|
2011-11-12 07:08:12 +00:00
|
|
|
objects = { }
|
2011-09-25 16:39:03 +00:00
|
|
|
|
|
|
|
class NotSupported(dbus.exceptions.DBusException):
|
|
|
|
def __init__(self, msg):
|
|
|
|
dbus.exceptions.DBusException.__init__(self, msg, name="org.freedesktop.DBus.Error.NotSupported")
|
|
|
|
|
2011-09-25 20:59:43 +00:00
|
|
|
class InvalidArgs(dbus.exceptions.DBusException):
|
|
|
|
def __init__(self, msg):
|
|
|
|
dbus.exceptions.DBusException.__init__(self, msg, name="org.freedesktop.DBus.Error.InvalidArgs")
|
|
|
|
|
2011-11-12 07:08:12 +00:00
|
|
|
class IsLocked(dbus.exceptions.DBusException):
|
|
|
|
def __init__(self, msg):
|
|
|
|
dbus.exceptions.DBusException.__init__(self, msg, name="org.freedesktop.Secret.Error.IsLocked")
|
|
|
|
|
2011-09-25 16:39:03 +00:00
|
|
|
unique_identifier = 0
|
|
|
|
def next_identifier():
|
|
|
|
global unique_identifier
|
|
|
|
unique_identifier += 1
|
|
|
|
return unique_identifier
|
|
|
|
|
2011-11-12 07:08:12 +00:00
|
|
|
def hex_encode(string):
|
|
|
|
return "".join([hex(ord(c))[2:].zfill(2) for c in string])
|
|
|
|
|
|
|
|
|
2011-09-25 16:39:03 +00:00
|
|
|
class PlainAlgorithm():
|
|
|
|
def negotiate(self, service, sender, param):
|
2011-09-25 20:59:43 +00:00
|
|
|
if type (param) != dbus.String:
|
|
|
|
raise InvalidArgs("invalid argument passed to OpenSession")
|
2011-11-12 07:08:12 +00:00
|
|
|
session = SecretSession(service, sender, self, None)
|
2011-09-25 16:39:03 +00:00
|
|
|
return (dbus.String("", variant_level=1), session)
|
|
|
|
|
2011-11-12 07:08:12 +00:00
|
|
|
def encrypt(self, key, data):
|
|
|
|
return ("", data)
|
|
|
|
|
|
|
|
|
2011-09-25 16:39:03 +00:00
|
|
|
class AesAlgorithm():
|
|
|
|
def negotiate(self, service, sender, param):
|
2011-09-25 20:59:43 +00:00
|
|
|
if type (param) != dbus.ByteArray:
|
|
|
|
raise InvalidArgs("invalid argument passed to OpenSession")
|
2011-11-12 07:08:12 +00:00
|
|
|
privat, publi = dh.generate_pair()
|
2011-09-25 16:39:03 +00:00
|
|
|
peer = dh.bytes_to_number(param)
|
2011-11-12 07:08:12 +00:00
|
|
|
# print "mock publi: ", hex(publi)
|
|
|
|
# print " mock peer: ", hex(peer)
|
2011-09-25 16:39:03 +00:00
|
|
|
ikm = dh.derive_key(privat, peer)
|
2011-11-12 07:08:12 +00:00
|
|
|
# print " mock ikm: ", hex_encode(ikm)
|
2011-09-25 16:39:03 +00:00
|
|
|
key = hkdf.hkdf(ikm, 16)
|
2011-11-12 07:08:12 +00:00
|
|
|
# print " mock key: ", hex_encode(key)
|
|
|
|
session = SecretSession(service, sender, self, key)
|
2011-09-25 16:39:03 +00:00
|
|
|
return (dbus.ByteArray(dh.number_to_bytes(publi), variant_level=1), session)
|
|
|
|
|
2011-11-12 07:08:12 +00:00
|
|
|
def encrypt(self, key, data):
|
|
|
|
key = map(ord, key)
|
|
|
|
data = aes.append_PKCS7_padding(data)
|
|
|
|
keysize = len(key)
|
|
|
|
iv = [ord(i) for i in os.urandom(16)]
|
|
|
|
mode = aes.AESModeOfOperation.modeOfOperation["CBC"]
|
|
|
|
moo = aes.AESModeOfOperation()
|
|
|
|
(mode, length, ciph) = moo.encrypt(data, mode, key, keysize, iv)
|
|
|
|
return ("".join([chr(i) for i in iv]),
|
|
|
|
"".join([chr(i) for i in ciph]))
|
|
|
|
|
|
|
|
|
2011-09-25 16:39:03 +00:00
|
|
|
class SecretSession(dbus.service.Object):
|
2011-11-12 07:08:12 +00:00
|
|
|
def __init__(self, service, sender, algorithm, key):
|
2011-09-25 16:39:03 +00:00
|
|
|
self.sender = sender
|
|
|
|
self.service = service
|
2011-11-12 07:08:12 +00:00
|
|
|
self.algorithm = algorithm
|
2011-09-25 16:39:03 +00:00
|
|
|
self.key = key
|
|
|
|
self.path = "/org/freedesktop/secrets/sessions/%d" % next_identifier()
|
|
|
|
dbus.service.Object.__init__(self, service.bus_name, self.path)
|
|
|
|
service.add_session(self)
|
2011-11-12 07:08:12 +00:00
|
|
|
objects[self.path] = self
|
|
|
|
|
|
|
|
def encode_secret(self, secret, content_type):
|
|
|
|
(params, data) = self.algorithm.encrypt(self.key, secret)
|
|
|
|
# print " mock iv: ", hex_encode(params)
|
|
|
|
# print " mock ciph: ", hex_encode(data)
|
|
|
|
return dbus.Struct((self.path, dbus.ByteArray(params), dbus.ByteArray(data),
|
|
|
|
dbus.String(content_type)), signature="oayays")
|
2011-09-25 16:39:03 +00:00
|
|
|
|
|
|
|
@dbus.service.method('org.freedesktop.Secret.Session')
|
|
|
|
def Close(self):
|
|
|
|
self.remove_from_connection()
|
|
|
|
self.service.remove_session(self)
|
|
|
|
|
2011-11-05 20:50:01 +00:00
|
|
|
|
|
|
|
class SecretItem(dbus.service.Object):
|
2011-11-12 07:08:12 +00:00
|
|
|
def __init__(self, collection, identifier, label="Item", attributes={ },
|
|
|
|
secret="", content_type="text/plain"):
|
2011-11-05 20:50:01 +00:00
|
|
|
self.collection = collection
|
|
|
|
self.identifier = identifier
|
|
|
|
self.label = label
|
2011-11-06 21:46:30 +00:00
|
|
|
self.secret = secret
|
2011-11-05 20:50:01 +00:00
|
|
|
self.attributes = attributes
|
2011-11-12 07:08:12 +00:00
|
|
|
self.content_type = content_type
|
|
|
|
self.locked = collection.locked
|
|
|
|
self.path = "%s/%s" % (collection.path, identifier)
|
2011-11-05 20:50:01 +00:00
|
|
|
dbus.service.Object.__init__(self, collection.service.bus_name, self.path)
|
|
|
|
collection.items[identifier] = self
|
2011-11-12 07:08:12 +00:00
|
|
|
objects[self.path] = self
|
2011-11-05 20:50:01 +00:00
|
|
|
|
|
|
|
def match_attributes(self, attributes):
|
|
|
|
for (key, value) in attributes.items():
|
|
|
|
if not self.attributes.get(key) == value:
|
|
|
|
return False
|
|
|
|
return True
|
|
|
|
|
2011-11-12 07:08:12 +00:00
|
|
|
@dbus.service.method('org.freedesktop.Secret.Item', sender_keyword='sender')
|
|
|
|
def GetSecret(self, session_path, sender=None):
|
|
|
|
session = objects.get(session_path, None)
|
|
|
|
if not session or session.sender != sender:
|
|
|
|
raise InvalidArgs("session invalid: %s" % session_path)
|
|
|
|
if self.locked:
|
|
|
|
raise IsLocked("secret is locked: %s" % self.path)
|
|
|
|
return session.encode_secret(self.secret, self.content_type)
|
|
|
|
|
2011-11-05 20:50:01 +00:00
|
|
|
|
|
|
|
class SecretCollection(dbus.service.Object):
|
|
|
|
def __init__(self, service, identifier, label="Collection", locked=False):
|
|
|
|
self.service = service
|
|
|
|
self.identifier = identifier
|
|
|
|
self.label = label
|
|
|
|
self.locked = locked
|
|
|
|
self.items = { }
|
2011-11-12 07:08:12 +00:00
|
|
|
self.path = "%s%s" % (COLLECTION_PREFIX, identifier)
|
2011-11-05 20:50:01 +00:00
|
|
|
dbus.service.Object.__init__(self, service.bus_name, self.path)
|
|
|
|
service.collections[identifier] = self
|
2011-11-12 07:08:12 +00:00
|
|
|
objects[self.path] = self
|
2011-11-05 20:50:01 +00:00
|
|
|
|
|
|
|
def search_items(self, attributes):
|
|
|
|
results = []
|
|
|
|
for item in self.items.values():
|
|
|
|
if item.match_attributes(attributes):
|
|
|
|
results.append(item)
|
|
|
|
return results
|
|
|
|
|
|
|
|
|
2011-09-25 16:39:03 +00:00
|
|
|
class SecretService(dbus.service.Object):
|
|
|
|
|
|
|
|
algorithms = {
|
|
|
|
'plain': PlainAlgorithm(),
|
|
|
|
"dh-ietf1024-sha256-aes128-cbc-pkcs7": AesAlgorithm(),
|
|
|
|
}
|
|
|
|
|
2011-09-25 20:59:43 +00:00
|
|
|
def __init__(self, name=None):
|
|
|
|
if name == None:
|
|
|
|
name = bus_name
|
|
|
|
bus = dbus.SessionBus()
|
|
|
|
self.bus_name = dbus.service.BusName(name, allow_replacement=True, replace_existing=True)
|
2011-09-25 16:39:03 +00:00
|
|
|
dbus.service.Object.__init__(self, self.bus_name, '/org/freedesktop/secrets')
|
|
|
|
self.sessions = { }
|
2011-11-05 20:50:01 +00:00
|
|
|
self.collections = { }
|
2011-09-25 16:39:03 +00:00
|
|
|
|
|
|
|
def on_name_owner_changed(owned, old_owner, new_owner):
|
|
|
|
if not new_owner:
|
|
|
|
for session in list(self.sessions.get(old_owner, [])):
|
|
|
|
session.Close()
|
|
|
|
|
|
|
|
bus.add_signal_receiver(on_name_owner_changed,
|
|
|
|
'NameOwnerChanged',
|
|
|
|
'org.freedesktop.DBus')
|
|
|
|
|
2011-11-12 07:08:12 +00:00
|
|
|
def add_standard_objects(self):
|
|
|
|
collection = SecretCollection(self, "collection", locked=False)
|
|
|
|
SecretItem(collection, "item_one", attributes={ "number": "1", "string": "one", "parity": "odd" }, secret="uno")
|
|
|
|
SecretItem(collection, "item_two", attributes={ "number": "2", "string": "two", "parity": "even" }, secret="dos")
|
|
|
|
SecretItem(collection, "item_three", attributes={ "number": "3", "string": "three", "parity": "odd" }, secret="tres")
|
|
|
|
|
|
|
|
collection = SecretCollection(self, "second", locked=True)
|
|
|
|
SecretItem(collection, "item_one", attributes={ "number": "1", "string": "one", "parity": "odd" })
|
|
|
|
SecretItem(collection, "item_two", attributes={ "number": "2", "string": "two", "parity": "even" })
|
|
|
|
SecretItem(collection, "item_three", attributes={ "number": "3", "string": "three", "parity": "odd" })
|
|
|
|
|
2011-09-25 16:39:03 +00:00
|
|
|
def listen(self):
|
|
|
|
loop = gobject.MainLoop()
|
|
|
|
loop.run()
|
|
|
|
|
|
|
|
def add_session(self, session):
|
|
|
|
if session.sender not in self.sessions:
|
|
|
|
self.sessions[session.sender] = []
|
|
|
|
self.sessions[session.sender].append(session)
|
|
|
|
|
|
|
|
def remove_session(self, session):
|
|
|
|
self.sessions[session.sender].remove(session)
|
2011-11-05 20:50:01 +00:00
|
|
|
|
2011-11-12 07:08:12 +00:00
|
|
|
def find_item(self, object):
|
|
|
|
if object.startswith(COLLECTION_PREFIX):
|
|
|
|
parts = object[len(COLLECTION_PREFIX):].split("/", 1)
|
|
|
|
if len(parts) == 2 and parts[0] in self.collections:
|
|
|
|
return self.collections[parts[0]].get(parts[1], None)
|
|
|
|
return None
|
|
|
|
|
2011-09-25 16:39:03 +00:00
|
|
|
@dbus.service.method('org.freedesktop.Secret.Service', byte_arrays=True, sender_keyword='sender')
|
|
|
|
def OpenSession(self, algorithm, param, sender=None):
|
|
|
|
assert type(algorithm) == dbus.String
|
|
|
|
|
|
|
|
if algorithm not in self.algorithms:
|
|
|
|
raise NotSupported("algorithm %s is not supported" % algorithm)
|
|
|
|
|
|
|
|
return self.algorithms[algorithm].negotiate(self, sender, param)
|
|
|
|
|
2011-11-05 20:50:01 +00:00
|
|
|
@dbus.service.method('org.freedesktop.Secret.Service')
|
|
|
|
def SearchItems(self, attributes):
|
|
|
|
locked = [ ]
|
|
|
|
unlocked = [ ]
|
|
|
|
items = [ ]
|
|
|
|
for collection in self.collections.values():
|
|
|
|
items = collection.search_items(attributes)
|
|
|
|
if collection.locked:
|
|
|
|
locked.extend(items)
|
|
|
|
else:
|
|
|
|
unlocked.extend(items)
|
|
|
|
return (dbus.Array(unlocked, "o"), dbus.Array(locked, "o"))
|
|
|
|
|
2011-11-12 07:08:12 +00:00
|
|
|
@dbus.service.method('org.freedesktop.Secret.Service', sender_keyword='sender')
|
|
|
|
def GetSecrets(self, item_paths, session_path, sender=None):
|
|
|
|
session = objects.get(session_path, None)
|
|
|
|
if not session or session.sender != sender:
|
|
|
|
raise InvalidArgs("session invalid: %s" % session_path)
|
|
|
|
results = dbus.Dictionary(signature="o(oayays)")
|
|
|
|
for item_path in item_paths:
|
|
|
|
item = objects.get(item_path, None)
|
|
|
|
if item and not item.locked:
|
|
|
|
results[item_path] = item.GetSecret(session_path, sender)
|
|
|
|
return results
|
2011-11-05 20:50:01 +00:00
|
|
|
|
2011-09-25 16:39:03 +00:00
|
|
|
def parse_options(args):
|
|
|
|
global bus_name
|
|
|
|
try:
|
|
|
|
opts, args = getopt.getopt(args, "name", ["name="])
|
|
|
|
except getopt.GetoptError, err:
|
|
|
|
print str(err)
|
|
|
|
sys.exit(2)
|
|
|
|
for o, a in opts:
|
|
|
|
if o in ("--name"):
|
|
|
|
bus_name = a
|
|
|
|
else:
|
|
|
|
assert False, "unhandled option"
|
|
|
|
return args
|
|
|
|
|
2011-09-25 20:59:43 +00:00
|
|
|
parse_options(sys.argv[1:])
|