91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

關于SQL SERVER數據頁checksum校驗算法整理

發布時間:2020-07-28 16:04:56 來源:網絡 閱讀:495 作者:宋國建 欄目:關系型數據庫

SQL SERVER數據頁checksum校驗算法

在SQL SERVER2005以上版本中,數據頁默認開啟checksum,標識為m_flagBits & 0x200 == True,其值m_tornBits位于頁頭0x3C,4字節。
其算法概述如下:

讀8KB 進BUF
將BUF頭部 CHECKSUM的4字節值清0
uint32 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 <stdio.h>#include <stdlib.h>
#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: 0x%08x\n", computed_checksum);
        printf("On disk checksum: 0x%08x\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);
}
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

鹤山市| 都昌县| 青浦区| 建平县| 遵义市| 高雄市| 山阳县| 温泉县| 石河子市| 龙胜| 静宁县| 宁国市| 迁西县| 扶风县| 金寨县| 巨鹿县| 东城区| 县级市| 庆元县| 彰化县| 治县。| 延寿县| 南平市| 白玉县| 余姚市| 安徽省| 石门县| 洛隆县| 江孜县| 东莞市| 景洪市| 定西市| 宜宾县| 佛山市| 临桂县| 宣恩县| 武宁县| 娄烦县| 镇平县| 曲沃县| 无极县|