From 6a49c2fa4371cad600f4a96da3d1644df862d2a5 Mon Sep 17 00:00:00 2001 From: Andres Morales Date: Thu, 16 Apr 2015 13:16:24 -0700 Subject: Implement SID API Change-Id: Id11632a6b4b9cab6f08f97026dd65fdf49a46491 --- gatekeeperd/gatekeeperd.cpp | 69 +++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 66 insertions(+), 3 deletions(-) (limited to 'gatekeeperd/gatekeeperd.cpp') diff --git a/gatekeeperd/gatekeeperd.cpp b/gatekeeperd/gatekeeperd.cpp index d59e6fe..82aa422 100644 --- a/gatekeeperd/gatekeeperd.cpp +++ b/gatekeeperd/gatekeeperd.cpp @@ -18,6 +18,12 @@ #include "IGateKeeperService.h" +#include +#include +#include +#include +#include + #include #include @@ -28,7 +34,9 @@ #include #include // For error code +#include // for password_handle_t #include +#include namespace android { @@ -50,6 +58,36 @@ public: gatekeeper_close(device); } + void store_sid(uint32_t uid, uint64_t sid) { + char filename[21]; + sprintf(filename, "%u", uid); + int fd = open(filename, O_WRONLY | O_TRUNC | O_CREAT, S_IRUSR | S_IWUSR); + if (fd < 0) { + ALOGW("could not open file: %s: %s", filename, strerror(errno)); + return; + } + write(fd, &sid, sizeof(sid)); + close(fd); + } + + void maybe_store_sid(uint32_t uid, uint64_t sid) { + char filename[21]; + sprintf(filename, "%u", uid); + if (access(filename, F_OK) == -1) { + store_sid(uid, sid); + } + } + + uint64_t read_sid(uint32_t uid) { + char filename[21]; + uint64_t sid; + sprintf(filename, "%u", uid); + int fd = open(filename, O_RDONLY); + if (fd < 0) return 0; + read(fd, &sid, sizeof(sid)); + return sid; + } + virtual status_t enroll(uint32_t uid, const uint8_t *current_password_handle, uint32_t current_password_handle_length, const uint8_t *current_password, uint32_t current_password_length, @@ -69,7 +107,13 @@ public: current_password, current_password_length, desired_password, desired_password_length, enrolled_password_handle, enrolled_password_handle_length); - return ret >= 0 ? NO_ERROR : UNKNOWN_ERROR; + if (ret >= 0) { + gatekeeper::password_handle_t *handle = + reinterpret_cast(*enrolled_password_handle); + store_sid(uid, handle->user_id); + return NO_ERROR; + } + return UNKNOWN_ERROR; } virtual status_t verify(uint32_t uid, @@ -116,7 +160,17 @@ public: } } - return ret >= 0 ? NO_ERROR : UNKNOWN_ERROR; + if (ret >= 0) { + maybe_store_sid(uid, reinterpret_cast( + enrolled_password_handle)->user_id); + return NO_ERROR; + } + + return UNKNOWN_ERROR; + } + + virtual uint64_t getSecureUserId(uint32_t uid) { + return read_sid(uid); } virtual status_t dump(int fd, const Vector &) { @@ -144,8 +198,17 @@ private: }; }// namespace android -int main() { +int main(int argc, char* argv[]) { ALOGI("Starting gatekeeperd..."); + if (argc < 2) { + ALOGE("A directory must be specified!"); + return 1; + } + if (chdir(argv[1]) == -1) { + ALOGE("chdir: %s: %s", argv[1], strerror(errno)); + return 1; + } + android::sp sm = android::defaultServiceManager(); android::sp proxy = new android::GateKeeperProxy(); android::status_t ret = sm->addService( -- cgit v1.1