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 ...
随机推荐
- Rails + Webpacker + Puma + Nginx 部署
准备 ssh 登录 首先 ssh 登录服务器,免密码登录可以参考 ssh 免密码登录服务器 创建部署用户 $ sudo adduser deploy 安装依赖 Ruby 这里使用 RVM 安装和管理 ...
- 任意视频批量转码MP4-H264助手
使用说明 简单的粗暴的小工具,利用windows命令行调用ffmpeg完成任意格式视频转换成H264编码的MP4视频,以确保视频可以在主流浏览器中直接播放,如:Chrome.Firefox等. 只需要 ...
- Java字符串面试问答
字符串是使用最广泛的Java的类之一.在这里,我列出了一些重要的Java的字符串面试问答. 这将有助于您全面了解String并解决面试中与String有关的任何问题. Java基础面试问题 Java中 ...
- IT兄弟连 Java语法教程 综合案例
1.案例需求 编写程序,模拟斗地主游戏洗牌和发牌的流程. 2.应用知识 ● 数组的声明 ● 数组的遍历 ● for循环 ● if-else分支结构 3.需求解析 模拟斗地主游戏洗牌和发牌,需要 ...
- 01-String(键命令)
Redis Redis是一个高性能的Key-Value数据库. 学习目标 能够描述出什么是 nosql 能够说出 Redis 的特点 能够根据参考资料修改常用Redis配置 能够写出Redis中str ...
- 使用logging模块进行封装,让bug无处遁寻
import logging from scripts.handle_config import conf from scripts.constants import LOGS_DIR class H ...
- 【转】Oracle重置序列(不删除重建方式)
Oracle中一般将自增sequence重置为初始1时,都是删除再重建,这种方式有很多弊端,依赖它的函数和存储过程将失效,需要重新编译.不过还有种巧妙的方式,不用删除,利用步长参数,先查出sequen ...
- C#函数的参数传递2(ref\out)
using System; namespace class1 { class program { static void Main(string[] args) { Console.Write(&qu ...
- Swagger UI in AspNetCore WebAPI
Swagger其实包含了三个部分,分别是Swagger Editor文档接口编辑器,根据接口文档生成code的Swagger Codegen,以及生成在线文档的Swagger UI.在AspNetCo ...
- python基础(1):python介绍、python发展史
1. python介绍 1.1 python是什么样的语言 编程语⾔主要从以下⼏个⻆度为进⾏分类,编译型和解释型.静态语⾔和动态语⾔.强类型定义语⾔和弱类型定义语⾔,我们先看编译型语⾔和解释型语⾔.稍 ...