t->from = thread;
        else
                t->from = NULL;
-       t->sender_euid = task_euid(proc->tsk);
+       t->sender_euid = proc->cred->euid;
        t->to_proc = target_proc;
        t->to_thread = target_thread;
        t->code = tr->code;
        }
        binder_alloc_deferred_release(&proc->alloc);
        put_task_struct(proc->tsk);
+       put_cred(proc->cred);
        binder_stats_deleted(BINDER_STAT_PROC);
        kfree(proc);
 }
        spin_lock_init(&proc->outer_lock);
        get_task_struct(current->group_leader);
        proc->tsk = current->group_leader;
+       proc->cred = get_cred(filp->f_cred);
        INIT_LIST_HEAD(&proc->todo);
        init_waitqueue_head(&proc->freeze_wait);
        proc->default_priority = task_nice(current);
 
  *                        (invariant after initialized)
  * @tsk                   task_struct for group_leader of process
  *                        (invariant after initialized)
+ * @cred                  struct cred associated with the `struct file`
+ *                        in binder_open()
+ *                        (invariant after initialized)
  * @deferred_work_node:   element for binder_deferred_list
  *                        (protected by binder_deferred_lock)
  * @deferred_work:        bitmap of deferred work to perform
        struct list_head waiting_threads;
        int pid;
        struct task_struct *tsk;
+       const struct cred *cred;
        struct hlist_node deferred_work_node;
        int deferred_work;
        int outstanding_txns;