SQL SERVER数据页checksum校验算法
发表于:2024-11-14 作者:千家信息网编辑
千家信息网最后更新 2024年11月14日,在SQL SERVER2005以上版本中,数据页默认开启checksum,标识为m_flagBits & 0x200 == True,其值m_tornBits位于页头0x3C,4字节。其算法概述如下:
千家信息网最后更新 2024年11月14日SQL SERVER数据页checksum校验算法
在SQL SERVER2005以上版本中,数据页默认开启checksum,标识为m_flagBits & 0x200 == True,其值m_tornBits位于页头0x3C,4字节。
其算法概述如下:
读8KB 进BUF将BUF头部 CHECKSUM的4字节值清0uint32 checksum = 0 //初始checksumfor i in range(0,15): //每扇区的初始checksum overall = 0; for ii in range(0,127): //对当前扇区的每个4字节做累加异或 overall = overall ^ BUF[i][ii]; //对每扇区的checksum进行移位,方法为向左移位15-i位, //左边移出的15-i位补到最低位。 checksum = checksum ^ rol(overall, 15- i); return checksum; //Gets checksum
c源码如下:
//***CODE***//#include #include #define seed 15 //Initial seed(for first sector)#define CHAR_BIT 8 //***PROTOTYPES***//unsigned int page_checksum(int page_id, unsigned int *ondisk);unsigned int rol(unsigned int value, unsigned int rotation);int main(int argc, char *argv[]) { unsigned int computed_checksum; //Var to retrieve calculated checksum unsigned int ondisk_checksum; //Var to retrieve checksum on disk computed_checksum = page_checksum(152, &ondisk_checksum); //page_checksum call to retrieve stored and calculated checksum for page 152 //***PRINTS***// printf("Calculated checksum: 0xx\n", computed_checksum); printf("On disk checksum: 0xx\n", ondisk_checksum);}unsigned int page_checksum(int page_id, unsigned int *ondisk){ FILE *fileptr; unsigned int i; unsigned int j; unsigned int checksum; unsigned int overall; unsigned int *pagebuf[16][128]; //A pointer to describe 2d array [sector][element] fileptr = fopen("C:\\Users\\andre\\Desktop\\teste.mdf", "r+b"); //Open dummy data file for binary read fseek(fileptr, page_id * 8192, SEEK_SET); //Calculate page address on data file and points to it fread(pagebuf, 4, 2048, fileptr); //Read page buffer fclose(fileptr); checksum = 0; overall = 0; *ondisk = pagebuf[0][15]; //This means that torn bits is stored on first sector in 15th element, Internals researches understand this pagebuf[0][15] = 0x00000000; //Fill checksum field with zeroes (this field will be discarded in algorithm) for (i = 0; i < 16; i++) //Loop through sectors { overall = 0; //Reset overall sum for sectors for (j = 0; j < 128; j++) //Loop through elements in sector i { overall = overall ^ (unsigned int)pagebuf[i][j]; //XOR operation between sector i elements } checksum = checksum ^ rol(overall, seed - i); //Current checksum is overall for sector i circular shifted by seed (15 - i) } return checksum; //Gets checksum}unsigned int rol(unsigned int value, unsigned int rotation){ return (value) << (rotation) | (value) >> (sizeof(int) * CHAR_BIT - rotation) & ( (1 << rotation) -1);}
字节
数据
算法
最低
头部
方法
标识
源码
版本
j++
数据库的安全要保护哪些东西
数据库安全各自的含义是什么
生产安全数据库录入
数据库的安全性及管理
数据库安全策略包含哪些
海淀数据库安全审计系统
建立农村房屋安全信息数据库
易用的数据库客户端支持安全管理
连接数据库失败ssl安全错误
数据库的锁怎样保障安全
网络安全资产扫描工具
数据库在电脑哪个位置
搭建公网自用sftp服务器
网络安全被纳入审计规划
华为高斯数据库合作商海量科技
kvm让云服务器显示虚拟机
服务器bmc管理口怎么连接
科东网络安全隔离调试
asp网站数据库文件
圣安地列斯未来服务器
国家卫生健康委员会数据库
我的世界服务器怎么改成中文版
魔兽世界提克泡酒数据库
无法联接服务器怎么回事
国务院发布网络安全
服务器宽带多少
网络安全审计硬件价位
浪潮服务器报警4声
潼关县公安局网络安全
软件开发的相关研究
种子搜索器服务器正在链接
关于校园网络安全论文小学生
数据库名词英语
mongo 查询数据库
网络安全防诈骗班会总结
河南c语言软件开发定制费用
计算机网络技术专业就业的好处
网络安全知识普及绘画一年级
贵州云服务器20
软件开发流程分几个步骤