/* bsdiff.c -- Binary patch generator. Copyright 2003 Colin Percival For the terms under which this work may be distributed, please see the adjoining file "LICENSE". ChangeLog: 2005-05-05 - Use the modified header struct from bspatch.h; use 32-bit values throughout. --Benjamin Smedberg 2005-05-18 - Use the same CRC algorithm as bzip2, and leverage the CRC table provided by libbz2. --Darin Fisher 2007-11-14 - Changed to use Crc from Lzma library instead of Bzip library --Rahul Kuchhal */ #include "mbspatch.h" #include #include #include #include #include #ifdef _WIN32 #include #include #else #include #include #define _O_BINARY 0 #endif #undef MIN #define MIN(x,y) (((x)<(y)) ? (x) : (y)) static void reporterr(int e, const char *fmt, ...) { if (fmt) { va_list args; va_start(args, fmt); vfprintf(stderr, fmt, args); va_end(args); } exit(e); } static void split(int *I,int *V,int start,int len,int h) { int i,j,k,x,tmp,jj,kk; if(len<16) { for(k=start;kstart) split(I,V,start,jj-start,h); for(i=0;ikk) split(I,V,kk,start+len-kk,h); } static void qsufsort(int *I,int *V,unsigned char *old,int oldsize) { int buckets[256]; int i,h,len; for(i=0;i<256;i++) buckets[i]=0; for(i=0;i0;i--) buckets[i]=buckets[i-1]; buckets[0]=0; for(i=0;iy) { *pos=I[st]; return x; } else { *pos=I[en]; return y; } }; x=st+(en-st)/2; if(memcmp(old+I[x],newbuf,MIN(oldsize-I[x],newsize))<0) { return search(I,old,oldsize,newbuf,newsize,x,en,pos); } else { return search(I,old,oldsize,newbuf,newsize,st,x,pos); }; } int main(int argc,char *argv[]) { int fd; unsigned char *old,*newbuf; int oldsize,newsize; int *I,*V; int scan,pos,len; int lastscan,lastpos,lastoffset; int oldscore,scsc; int s,Sf,lenf,Sb,lenb; int overlap,Ss,lens; int i; int dblen,eblen; unsigned char *db,*eb; unsigned int scrc; MBSPatchHeader header = { {'M','B','D','I','F','F','1','0'}, 0, 0, 0, 0, 0, 0 }; int numtriples; if(argc!=4) reporterr(1,"usage: %s \n",argv[0]); /* Allocate oldsize+1 bytes instead of oldsize bytes to ensure that we never try to malloc(0) and get a NULL pointer */ if(((fd=open(argv[1],O_RDONLY|_O_BINARY,0))<0) || ((oldsize=lseek(fd,0,SEEK_END))==-1) || ((old=(unsigned char*) malloc(oldsize+1))==NULL) || (lseek(fd,0,SEEK_SET)!=0) || (read(fd,old,oldsize)!=oldsize) || (close(fd)==-1)) reporterr(1,"%s\n",argv[1]); scrc = CalculateCrc(old, oldsize); if(((I=(int*) malloc((oldsize+1)*sizeof(int)))==NULL) || ((V=(int*) malloc((oldsize+1)*sizeof(int)))==NULL)) reporterr(1,NULL); qsufsort(I,V,old,oldsize); free(V); /* Allocate newsize+1 bytes instead of newsize bytes to ensure that we never try to malloc(0) and get a NULL pointer */ if(((fd=open(argv[2],O_RDONLY|_O_BINARY,0))<0) || ((newsize=lseek(fd,0,SEEK_END))==-1) || ((newbuf=(unsigned char*) malloc(newsize+1))==NULL) || (lseek(fd,0,SEEK_SET)!=0) || (read(fd,newbuf,newsize)!=newsize) || (close(fd)==-1)) reporterr(1,"%s\n",argv[2]); if(((db=(unsigned char*) malloc(newsize+1))==NULL) || ((eb=(unsigned char*) malloc(newsize+1))==NULL)) reporterr(1,NULL); dblen=0; eblen=0; if((fd=open(argv[3],O_CREAT|O_TRUNC|O_WRONLY|_O_BINARY,0666))<0) reporterr(1,"%s\n",argv[3]); /* start writing here */ /* We don't know the lengths yet, so we will write the header again at the end */ if(write(fd,&header,sizeof(MBSPatchHeader))!=sizeof(MBSPatchHeader)) reporterr(1,"%s\n",argv[3]); scan=0;len=0; lastscan=0;lastpos=0;lastoffset=0; numtriples = 0; while(scanoldscore+8)) break; if((scan+lastoffsetSf*2-lenf) { Sf=s; lenf=i; }; }; lenb=0; if(scan=lastscan+i)&&(pos>=i);i++) { if(old[pos-i]==newbuf[scan-i]) s++; if(s*2-i>Sb*2-lenb) { Sb=s; lenb=i; }; }; }; if(lastscan+lenf>scan-lenb) { overlap=(lastscan+lenf)-(scan-lenb); s=0;Ss=0;lens=0; for(i=0;iSs) { Ss=s; lens=i+1; }; }; lenf+=lens-overlap; lenb-=lens; }; for(i=0;i