ioctl() investigation - TO RESET

This commit is contained in:
Balazs Gerofi
2017-08-30 18:38:47 +09:00
parent 815e2244ca
commit 73cc07f98e
5 changed files with 269 additions and 12 deletions

View File

@ -211,7 +211,7 @@ static int hfi1_file_open(struct inode *inode, struct file *fp)
}
static long hfi1_file_ioctl(struct file *fp, unsigned int cmd,
unsigned long arg)
unsigned long arg, unsigned long t_s)
{
struct hfi1_filedata *fd = fp->private_data;
struct hfi1_ctxtdata *uctxt = fd->uctxt;
@ -416,6 +416,252 @@ static long hfi1_file_ioctl(struct file *fp, unsigned int cmd,
}
#endif /* __HFI1_ORIG__ */
long hfi1_file_ioctl(void *private_data, unsigned int cmd,
unsigned long arg, unsigned long t_s)
{
struct hfi1_filedata *fd = private_data;
struct hfi1_ctxtdata *uctxt = fd->uctxt;
struct hfi1_user_info uinfo;
struct hfi1_tid_info tinfo;
int ret = 0;
unsigned long addr;
int uval = 0;
unsigned long ul_uval = 0;
u16 uval16 = 0;
hfi1_cdbg(IOCTL, "IOCTL recv: 0x%x", cmd);
if (cmd != HFI1_IOCTL_ASSIGN_CTXT &&
cmd != HFI1_IOCTL_GET_VERS &&
!uctxt)
return -EINVAL;
if (rdtsc() - t_s < 400000000)
return;
switch (cmd) {
case HFI1_IOCTL_ASSIGN_CTXT:
#if 0
if (uctxt)
return -EINVAL;
if (copy_from_user(&uinfo,
(struct hfi1_user_info __user *)arg,
sizeof(uinfo)))
return -EFAULT;
ret = assign_ctxt(fp, &uinfo);
if (ret < 0)
return ret;
ret = setup_ctxt(fp);
if (ret)
return ret;
ret = user_init(fp);
#endif
kprintf("%s: HFI1_IOCTL_ASSIGN_CTXT \n", __FUNCTION__);
break;
case HFI1_IOCTL_CTXT_INFO:
#if 0
ret = get_ctxt_info(fp, (void __user *)(unsigned long)arg,
sizeof(struct hfi1_ctxt_info));
#endif
kprintf("%s: HFI1_IOCTL_CTXT_INFO \n", __FUNCTION__);
break;
case HFI1_IOCTL_USER_INFO:
#if 0
ret = get_base_info(fp, (void __user *)(unsigned long)arg,
sizeof(struct hfi1_base_info));
#endif
kprintf("%s: HFI1_IOCTL_USER_INFO \n", __FUNCTION__);
break;
case HFI1_IOCTL_CREDIT_UPD:
#if 0
if (uctxt)
sc_return_credits(uctxt->sc);
#endif
kprintf("%s: HFI1_IOCTL_CREDIT_UPD \n", __FUNCTION__);
break;
case HFI1_IOCTL_TID_UPDATE:
#if 0
if (copy_from_user(&tinfo,
(struct hfi11_tid_info __user *)arg,
sizeof(tinfo)))
return -EFAULT;
ret = hfi1_user_exp_rcv_setup(fp, &tinfo);
if (!ret) {
/*
* Copy the number of tidlist entries we used
* and the length of the buffer we registered.
* These fields are adjacent in the structure so
* we can copy them at the same time.
*/
addr = arg + offsetof(struct hfi1_tid_info, tidcnt);
if (copy_to_user((void __user *)addr, &tinfo.tidcnt,
sizeof(tinfo.tidcnt) +
sizeof(tinfo.length)))
ret = -EFAULT;
}
#endif
kprintf("%s: HFI1_IOCTL_TID_UPDATE \n", __FUNCTION__);
break;
case HFI1_IOCTL_TID_FREE:
#if 0
if (copy_from_user(&tinfo,
(struct hfi11_tid_info __user *)arg,
sizeof(tinfo)))
return -EFAULT;
ret = hfi1_user_exp_rcv_clear(fp, &tinfo);
if (ret)
break;
addr = arg + offsetof(struct hfi1_tid_info, tidcnt);
if (copy_to_user((void __user *)addr, &tinfo.tidcnt,
sizeof(tinfo.tidcnt)))
ret = -EFAULT;
#endif
kprintf("%s: HFI1_IOCTL_TID_FREE \n", __FUNCTION__);
break;
case HFI1_IOCTL_TID_INVAL_READ:
#if 0
if (copy_from_user(&tinfo,
(struct hfi11_tid_info __user *)arg,
sizeof(tinfo)))
return -EFAULT;
ret = hfi1_user_exp_rcv_invalid(fp, &tinfo);
if (ret)
break;
addr = arg + offsetof(struct hfi1_tid_info, tidcnt);
if (copy_to_user((void __user *)addr, &tinfo.tidcnt,
sizeof(tinfo.tidcnt)))
ret = -EFAULT;
#endif
kprintf("%s: HFI1_IOCTL_TID_INVAL_READ \n", __FUNCTION__);
break;
case HFI1_IOCTL_RECV_CTRL:
#if 0
ret = get_user(uval, (int __user *)arg);
if (ret != 0)
return -EFAULT;
ret = manage_rcvq(uctxt, fd->subctxt, uval);
#endif
kprintf("%s: HFI1_IOCTL_RECV_CTRL \n", __FUNCTION__);
break;
case HFI1_IOCTL_POLL_TYPE:
#if 0
ret = get_user(uval, (int __user *)arg);
if (ret != 0)
return -EFAULT;
uctxt->poll_type = (typeof(uctxt->poll_type))uval;
#endif
kprintf("%s: HFI1_IOCTL_POLL_TYPE \n", __FUNCTION__);
break;
case HFI1_IOCTL_ACK_EVENT:
#if 0
ret = get_user(ul_uval, (unsigned long __user *)arg);
if (ret != 0)
return -EFAULT;
ret = user_event_ack(uctxt, fd->subctxt, ul_uval);
#endif
kprintf("%s: HFI1_IOCTL_ACK_EVENT \n", __FUNCTION__);
break;
case HFI1_IOCTL_SET_PKEY:
#if 0
ret = get_user(uval16, (u16 __user *)arg);
if (ret != 0)
return -EFAULT;
if (HFI1_CAP_IS_USET(PKEY_CHECK))
ret = set_ctxt_pkey(uctxt, fd->subctxt, uval16);
else
return -EPERM;
#endif
kprintf("%s: HFI1_IOCTL_SET_PKEY \n", __FUNCTION__);
break;
case HFI1_IOCTL_CTXT_RESET: {
#if 0
struct send_context *sc;
struct hfi1_devdata *dd;
if (!uctxt || !uctxt->dd || !uctxt->sc)
return -EINVAL;
/*
* There is no protection here. User level has to
* guarantee that no one will be writing to the send
* context while it is being re-initialized.
* If user level breaks that guarantee, it will break
* it's own context and no one else's.
*/
dd = uctxt->dd;
sc = uctxt->sc;
/*
* Wait until the interrupt handler has marked the
* context as halted or frozen. Report error if we time
* out.
*/
wait_event_interruptible_timeout(
sc->halt_wait, (sc->flags & SCF_HALTED),
msecs_to_jiffies(SEND_CTXT_HALT_TIMEOUT));
if (!(sc->flags & SCF_HALTED))
return -ENOLCK;
/*
* If the send context was halted due to a Freeze,
* wait until the device has been "unfrozen" before
* resetting the context.
*/
if (sc->flags & SCF_FROZEN) {
wait_event_interruptible_timeout(
dd->event_queue,
!(ACCESS_ONCE(dd->flags) & HFI1_FROZEN),
msecs_to_jiffies(SEND_CTXT_HALT_TIMEOUT));
if (dd->flags & HFI1_FROZEN)
return -ENOLCK;
if (dd->flags & HFI1_FORCED_FREEZE)
/*
* Don't allow context reset if we are into
* forced freeze
*/
return -ENODEV;
sc_disable(sc);
ret = sc_enable(sc);
hfi1_rcvctrl(dd, HFI1_RCVCTRL_CTXT_ENB,
uctxt->ctxt);
} else {
ret = sc_restart(sc);
}
if (!ret)
sc_return_credits(sc);
break;
#endif
kprintf("%s: HFI1_IOCTL_CTXT_RESET \n", __FUNCTION__);
}
case HFI1_IOCTL_GET_VERS:
#if 0
uval = HFI1_USER_SWVERSION;
if (put_user(uval, (int __user *)arg))
return -EFAULT;
#endif
kprintf("%s: HFI1_IOCTL_GET_VERS \n", __FUNCTION__);
break;
default:
return -EINVAL;
}
return ret;
}
int hfi1_map_device_addresses(struct hfi1_filedata *fd);
#ifdef __HFI1_ORIG__

View File

@ -57,9 +57,9 @@
#define _LINUX__HFI1_USER_H
#ifdef __HFI1_ORIG__
#include <linux/types.h>
#else
#include <mc_perf_event.h>
#endif /* __HFI1_ORIG__ */
/*
@ -215,8 +215,6 @@ struct hfi1_cmd;
#define HFI1_POLL_TYPE_ANYRCV 0x0
#define HFI1_POLL_TYPE_URGENT 0x1
#ifdef __HFI1_ORIG__
/*
* This structure is passed to the driver to tell it where
* user code buffers are, sizes, etc. The offsets and sizes of the
@ -270,7 +268,6 @@ struct hfi1_tid_info {
/* length of transfer buffer programmed by this request */
__u32 length;
};
#endif /* __HFI1_ORIG__ */
enum hfi1_sdma_comp_state {
FREE = 0,
@ -287,8 +284,6 @@ struct hfi1_sdma_comp_entry {
__u32 errcode;
};
#ifdef __HFI1_ORIG__
/*
* Device status and notifications from driver to user-space.
*/
@ -362,7 +357,6 @@ struct hfi1_base_info {
__u64 subctxt_rcvegrbuf;
__u64 subctxt_rcvhdrbuf;
};
#endif /* __HFI1_ORIG__ */
enum sdma_req_opcode {
EXPECTED = 0,

View File

@ -88,7 +88,7 @@ static inline void kmalloc_cache_prealloc(struct kmalloc_cache_header *cache,
kprintf("%s: pre-allocating for 0x%lx...\n",
__FUNCTION__, cache);
for (i = 0; i < 256; ++i) {
for (i = 0; i < 512; ++i) {
struct kmalloc_header *header;
elem = (struct kmalloc_cache_header *)

View File

@ -1407,6 +1407,10 @@ do_mmap(const intptr_t addr0, const size_t len0, const int prot,
flush_nfo_tlb();
if (flags & MAP_ANONYMOUS) {
len = (len + LARGE_PAGE_SIZE - 1) & LARGE_PAGE_MASK;
}
if (flags & MAP_HUGETLB) {
pgshift = (flags >> MAP_HUGE_SHIFT) & 0x3F;
p2align = pgshift - PAGE_SHIFT;
@ -3144,6 +3148,8 @@ SYSCALL_DECLARE(ioctl)
struct process *proc = thread->proc;
struct mckfd *fdp;
long irqstate;
void *private_data = proc->fd_priv_table[fd];
unsigned long t_s = rdtsc();
irqstate = ihk_mc_spinlock_lock(&proc->mckfd_lock);
for(fdp = proc->mckfd; fdp; fdp = fdp->next)
@ -3158,6 +3164,19 @@ SYSCALL_DECLARE(ioctl)
else{
rc = syscall_generic_forwarding(__NR_ioctl, ctx);
}
if (private_data) {
extern long hfi1_file_ioctl(void *private_data,
unsigned int cmd,
unsigned long arg,
unsigned long t_s);
hfi1_file_ioctl(private_data,
ihk_mc_syscall_arg1(ctx),
ihk_mc_syscall_arg2(ctx),
t_s);
}
return rc;
}

View File

@ -46,9 +46,7 @@ struct perf_event_attr;
((nr) << _IOC_NRSHIFT) | \
((size) << _IOC_SIZESHIFT))
#ifndef __KERNEL__
#define _IOC_TYPECHECK(t) (sizeof(t))
#endif
/* used to create numbers */
#define _IO(type,nr) _IOC(_IOC_NONE,(type),(nr),0)