|
|
@@ -551,6 +551,8 @@ static int hw_break_set(struct task_struct *target,
|
|
|
/* (address, ctrl) registers */
|
|
|
limit = regset->n * regset->size;
|
|
|
while (count && offset < limit) {
|
|
|
+ if (count < PTRACE_HBP_ADDR_SZ)
|
|
|
+ return -EINVAL;
|
|
|
ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &addr,
|
|
|
offset, offset + PTRACE_HBP_ADDR_SZ);
|
|
|
if (ret)
|
|
|
@@ -560,6 +562,8 @@ static int hw_break_set(struct task_struct *target,
|
|
|
return ret;
|
|
|
offset += PTRACE_HBP_ADDR_SZ;
|
|
|
|
|
|
+ if (!count)
|
|
|
+ break;
|
|
|
ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &ctrl,
|
|
|
offset, offset + PTRACE_HBP_CTRL_SZ);
|
|
|
if (ret)
|
|
|
@@ -596,7 +600,7 @@ static int gpr_set(struct task_struct *target, const struct user_regset *regset,
|
|
|
const void *kbuf, const void __user *ubuf)
|
|
|
{
|
|
|
int ret;
|
|
|
- struct user_pt_regs newregs;
|
|
|
+ struct user_pt_regs newregs = task_pt_regs(target)->user_regs;
|
|
|
|
|
|
ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &newregs, 0, -1);
|
|
|
if (ret)
|
|
|
@@ -626,7 +630,8 @@ static int fpr_set(struct task_struct *target, const struct user_regset *regset,
|
|
|
const void *kbuf, const void __user *ubuf)
|
|
|
{
|
|
|
int ret;
|
|
|
- struct user_fpsimd_state newstate;
|
|
|
+ struct user_fpsimd_state newstate =
|
|
|
+ target->thread.fpsimd_state.user_fpsimd;
|
|
|
|
|
|
ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &newstate, 0, -1);
|
|
|
if (ret)
|
|
|
@@ -650,7 +655,7 @@ static int tls_set(struct task_struct *target, const struct user_regset *regset,
|
|
|
const void *kbuf, const void __user *ubuf)
|
|
|
{
|
|
|
int ret;
|
|
|
- unsigned long tls;
|
|
|
+ unsigned long tls = target->thread.tp_value;
|
|
|
|
|
|
ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &tls, 0, -1);
|
|
|
if (ret)
|
|
|
@@ -676,7 +681,8 @@ static int system_call_set(struct task_struct *target,
|
|
|
unsigned int pos, unsigned int count,
|
|
|
const void *kbuf, const void __user *ubuf)
|
|
|
{
|
|
|
- int syscallno, ret;
|
|
|
+ int syscallno = task_pt_regs(target)->syscallno;
|
|
|
+ int ret;
|
|
|
|
|
|
ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &syscallno, 0, -1);
|
|
|
if (ret)
|
|
|
@@ -948,7 +954,7 @@ static int compat_tls_set(struct task_struct *target,
|
|
|
const void __user *ubuf)
|
|
|
{
|
|
|
int ret;
|
|
|
- compat_ulong_t tls;
|
|
|
+ compat_ulong_t tls = target->thread.tp_value;
|
|
|
|
|
|
ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &tls, 0, -1);
|
|
|
if (ret)
|