ksync
#include <linux/init.h>
#include <linux/module.h>
#include <linux/types.h>
#include <linux/fs.h>
#include <linux/cdev.h>
#include <linux/device.h>
#include <linux/uaccess.h>
#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/miscdevice.h>
#include <linux/signal.h>
#include <linux/timer.h>
#include <linux/slab.h>
#define printw(fmt, ...) ({printk( KERN_ERR "[ksync] " fmt, ##__VA_ARGS__); 0; })
;
struct cdev testcdev;
struct class *myclass;
static struct fasync_struct *async;
][] = {};
int hexdump(unsigned char *name, unsigned char *data, unsigned short len)
{
unsigned char *buf;
int i, p, ret;
unsigned ] = {};
unsigned ;
tmp_len = sprintf(tmp, "%s hex(len=%d): ", name, len);
)
len = ;
buf = kmalloc( (len + ) * + tmp_len, GFP_KERNEL);
memset(buf, ) * + tmp_len);
memcpy(buf, tmp, tmp_len);
== len))
{
printw("%s\n", buf);
kfree(buf);
;
}
, p = tmp_len; i < len; i++)
{
ret = sprintf((buf + p), "%02x ", *(data + i));
p = p + ret;
}
printw("%s\n", buf);
kfree(buf);
;
}
void ksync_send(unsigned short cmd, unsigned char *buffer, short len)
{
unsigned ] = {};
sprintf(string, "%s(0x%x, %d)", __func__, cmd, len);
memcpy(fsync_buffer[] + , ();
memcpy(fsync_buffer[] + , ();
memcpy(fsync_buffer[] + , buffer, len);
hexdump(], len+);
kill_fasync(&async, SIGIO, POLL_IN);
}
void ksync_recv(unsigned short cmd, unsigned char *buffer, short len)
{
unsigned ] = {};
sprintf(string, "%s(0x%x, %d)", __func__, cmd, len);
hexdump(string, buffer, len);
ksync_send(0x57, buffer, len);
}
int char_open(struct inode *inode, struct file *filp)
{
printw("char_open ok...\n");
;
}
static int char_fasync(int fd, struct file *filp, int mode)
{
return fasync_helper(fd, filp, mode, &async);
}
int char_release(struct inode *inode,struct file *filp)
{
printw("char close\n");
, filp, );;
}
int char_ioctl (struct inode *inode, struct file *filelp, unsigned int cmd, unsigned long args)
{
;
}
ssize_t char_write(struct file *filp, const char __user *buffer, size_t count, loff_t *offset)
{
unsigned ];
printw("%s\n", __func__);
], buffer, count))
{
return -EFAULT;
}
hexdump("char_write", buffer, count);
memcpy((], );
ksync_recv( info[], fsync_buffer[] + , info[] );
printw("char_write ok...\n");
return count;
}
ssize_t char_read(struct file *filp, char __user *buffer, size_t count, loff_t *offset)
{
int ret;
ret = copy_to_user( (unsigned ], count);
!= ret) {
printw("[%s][%d][err]\n", __func__, __LINE__);
return -EFAULT;
}
filp->f_pos += count;
hexdump(], count);
printw("char_read ok...\n");
;
}
struct file_operations fop =
{
.open = char_open,
.release = char_release,
.compat_ioctl = char_ioctl,
.write = char_write,
.read = char_read,
.fasync = char_fasync,
};
int __init a_init(void)
{
dev_t dev;
int ret;
dev = MKDEV(major,);
ret = register_chrdev_region(dev,,"char");
if(ret)
{
alloc_chrdev_region(&dev,,,"char");
major = MAJOR(dev);
}
testcdev.owner = THIS_MODULE;
cdev_init(&testcdev, &fop);
cdev_add(&testcdev, dev, );
myclass = class_create(THIS_MODULE, "char_class");
device_create(myclass,NULL,dev,NULL, "ksync");
printw("module init ok ...\n");
;
}
void __exit a_exit(void)
{
dev_t dev;
dev = MKDEV(major ,);
device_destroy(myclass, dev);
class_destroy(myclass);
cdev_del(&testcdev);
unregister_chrdev_region(dev,);
printw("module exit ok....\n");
}
module_init(a_init);
module_exit(a_exit);
MODULE_LICENSE("GPL");
MODULE_AUTHOR("...");
MODULE_DESCRIPTION("ksync");
MODULE_VERSION("V1.0");
#include <stdio.h>
#include <unistd.h>
#include <signal.h>
#include <fcntl.h>
int g_fd;
unsigned ][] = {};
int hexdump(unsigned char *name, unsigned char *data, unsigned short len)
{
unsigned char *buf;
int i, p, ret;
unsigned ] = {};
unsigned ;
tmp_len = sprintf(tmp, "%s hex(len=%d): ", name, len);
)
len = ;
buf = ) * + tmp_len);
memset(buf, ) * + tmp_len);
memcpy(buf, tmp, tmp_len);
== len))
{
printf("%s\n", buf);
free(buf);
;
}
, p = tmp_len; i < len; i++)
{
ret = sprintf((buf + p), "%02x ", *(data + i));
p = p + ret;
}
printf("%s\n", buf);
free(buf);
;
}
void ksync_recv(unsigned short cmd, unsigned char *buffer, short len)
{
}
void ksync_send(unsigned short cmd, unsigned char *buffer, short len)
{
unsigned ];
int ret;
memcpy(s_buf + , ();
memcpy(s_buf + , ();
memcpy(s_buf + , buffer, len);
hexdump();
ret = write(g_fd, s_buf, len + );
printf("write ret %d\n", ret);
}
void sig_handler(int sig)
{
int ret;
unsigned ];
unsigned ];
if(sig == SIGIO)
{
ret = read(g_fd, r_buf, );
memcpy((], r_buf + , );
memcpy((], r_buf + , );
hexdump(]+);
ksync_recv(info[], r_buf + , info[]);
}
return;
}
int main(void)
{
unsigned ];
signal(SIGIO, sig_handler);
g_fd = open("/dev/ksync", O_RDWR);
== g_fd)
{
printf("open err\n");
;
}
printf("open %d\n", g_fd);
fcntl(g_fd, F_SETOWN, getpid());
fcntl(g_fd, F_SETFL, fcntl(g_fd, F_GETFL) | FASYNC);
)
{
memset(input, );
gets(input);
fflush(stdin);
)
continue;
ksync_send(0x56, input, strlen(input) );
}
;
}
# Makefile for PEDD
EXTRA_CFLAGS += -Wframe-larger-than=
ifneq ($(CROSS_COMPILE),)
EXTRA_CFLAGS += -DARC_SDP
endif
ifeq ($(KERNELRELEASE),)
ifeq ($(CROSS_COMPILE),)
KERNELDIR ?= /lib/modules/$(shell uname -r)/build
else
KERNELDIR ?= /workspace/bpcie/output/build/linux-arc-axs101--3.13
endif
PWD := $(shell pwd)
modules:
$(MAKE) -C $(KERNELDIR) M=$(PWD) modules
modules_install:
$(MAKE) -C $(KERNELDIR) M=$(PWD) modules_install
clean:
rm -rf *.o *~ core .depend .*.cmd *.ko *.mod.c .tmp_versions *.symvers *.order *.out
.PHONY: modules modules_install clean
else
obj-m := ksync_drv.o
endif
ksync的更多相关文章
- 使用ksync 加速基于k8s 的应用开发
ksync 实际上实现了类似 docker docker run -v /foo:/bar 的功能,可以加速我们应用的开发&&运行 安装 mac os curl https://v ...
随机推荐
- go get 获取被墙依赖包解决方法
前言: 随着 go1.11 的发布,go 官方引入了 go module 来解决依赖管理问题,go module 被集成到原生的 go cmd 中,但是如果你的代码库在$GOPATH中,go1.11 ...
- Swiper实现轮播图效果
为了实现轮播图(carousel)效果或左右滑动显示不同的内容,我们采用Swiper来实现. 需要引入swiper.min.css和swiper.min.js,文件可从https://github.c ...
- C#实现数据回滚,A事件和B事件同时执行,其中任何一个事件执行失败,都会返回失败
/// <summary> /// 执行数据库回滚操作,用于sql语句执行失败后,恢复执行前的数据 /// </summary> /// <param name=&quo ...
- LINUX CFS 调度tick逻辑,即check_preemt_tick解析
计算当前task在这个tick周期实际用时delta_exetime, 更新当前task的vruntime; 根据权重,重新计算调度period,计算当前task的应得时间片slice(idle_ru ...
- Spring Boot配置过滤器的两种方式
过滤器(Filter)是Servlet中常用的技术,可以实现用户在访问某个目标资源之前,对访问的请求和响应进行拦截,常用的场景有登录校验.权限控制.敏感词过滤等,下面介绍下Spring Boot配置过 ...
- CentOS安装Docker-ce并配置中国国内加速(aliyun)镜像
前提条件 1.系统.内核 CentOS7 要求64位系统.内核版本3.10以上 CentOS6 要求版本在6.5以上,系统64位.内核版本2.6.32-431以上 查看内核版本号 uname -r # ...
- 3 JDK并发包
JDK内部提供了大量实用的API和框架.本章主要介绍这些JDK内部功能,主要分为3大部分: 首先,介绍有关同步控制的工具,之前介绍的synchronized就是一种同步控制手段,将介绍更加丰富的多线程 ...
- 表达式树练习实践:C#判断语句
目录 表达式树练习实践:C#判断语句 if if...else switch ?? 和 ?: 表达式树练习实践:C#判断语句 判断语句 C# 提供了以下类型的判断语句: 语句 描述 if 一个 if ...
- Java生鲜电商平台-促销系统的架构设计与源码解析
Java生鲜电商平台-促销系统的架构设计与源码解析 说明:本文重点讲解现在流行的促销方案以及源码解析,让大家对促销,纳新有一个深入的了解与学习过程. 促销系统是电商系统另外一个比较大,也是比较复杂的系 ...
- jQuery Validate表单校验
jQuery plugin: Validation 使用说明 学习链接及下载地址:http://www.runoob.com/jquery/jquery-plugin-validate.html 一导 ...