xref: /sqlite-3.40.0/src/backup.c (revision 033564cc)
1 /*
2 ** 2009 January 28
3 **
4 ** The author disclaims copyright to this source code.  In place of
5 ** a legal notice, here is a blessing:
6 **
7 **    May you do good and not evil.
8 **    May you find forgiveness for yourself and forgive others.
9 **    May you share freely, never taking more than you give.
10 **
11 *************************************************************************
12 ** This file contains the implementation of the sqlite3_backup_XXX()
13 ** API functions and the related features.
14 */
15 #include "sqliteInt.h"
16 #include "btreeInt.h"
17 
18 /*
19 ** Structure allocated for each backup operation.
20 */
21 struct sqlite3_backup {
22   sqlite3* pDestDb;        /* Destination database handle */
23   Btree *pDest;            /* Destination b-tree file */
24   u32 iDestSchema;         /* Original schema cookie in destination */
25   int bDestLocked;         /* True once a write-transaction is open on pDest */
26 
27   Pgno iNext;              /* Page number of the next source page to copy */
28   sqlite3* pSrcDb;         /* Source database handle */
29   Btree *pSrc;             /* Source b-tree file */
30 
31   int rc;                  /* Backup process error code */
32 
33   /* These two variables are set by every call to backup_step(). They are
34   ** read by calls to backup_remaining() and backup_pagecount().
35   */
36   Pgno nRemaining;         /* Number of pages left to copy */
37   Pgno nPagecount;         /* Total number of pages to copy */
38 
39   int isAttached;          /* True once backup has been registered with pager */
40   sqlite3_backup *pNext;   /* Next backup associated with source pager */
41 };
42 
43 /*
44 ** THREAD SAFETY NOTES:
45 **
46 **   Once it has been created using backup_init(), a single sqlite3_backup
47 **   structure may be accessed via two groups of thread-safe entry points:
48 **
49 **     * Via the sqlite3_backup_XXX() API function backup_step() and
50 **       backup_finish(). Both these functions obtain the source database
51 **       handle mutex and the mutex associated with the source BtShared
52 **       structure, in that order.
53 **
54 **     * Via the BackupUpdate() and BackupRestart() functions, which are
55 **       invoked by the pager layer to report various state changes in
56 **       the page cache associated with the source database. The mutex
57 **       associated with the source database BtShared structure will always
58 **       be held when either of these functions are invoked.
59 **
60 **   The other sqlite3_backup_XXX() API functions, backup_remaining() and
61 **   backup_pagecount() are not thread-safe functions. If they are called
62 **   while some other thread is calling backup_step() or backup_finish(),
63 **   the values returned may be invalid. There is no way for a call to
64 **   BackupUpdate() or BackupRestart() to interfere with backup_remaining()
65 **   or backup_pagecount().
66 **
67 **   Depending on the SQLite configuration, the database handles and/or
68 **   the Btree objects may have their own mutexes that require locking.
69 **   Non-sharable Btrees (in-memory databases for example), do not have
70 **   associated mutexes.
71 */
72 
73 /*
74 ** Return a pointer corresponding to database zDb (i.e. "main", "temp")
75 ** in connection handle pDb. If such a database cannot be found, return
76 ** a NULL pointer and write an error message to pErrorDb.
77 **
78 ** If the "temp" database is requested, it may need to be opened by this
79 ** function. If an error occurs while doing so, return 0 and write an
80 ** error message to pErrorDb.
81 */
82 static Btree *findBtree(sqlite3 *pErrorDb, sqlite3 *pDb, const char *zDb){
83   int i = sqlite3FindDbName(pDb, zDb);
84 
85   if( i==1 ){
86     Parse *pParse;
87     int rc = 0;
88     pParse = sqlite3StackAllocZero(pErrorDb, sizeof(*pParse));
89     if( pParse==0 ){
90       sqlite3ErrorWithMsg(pErrorDb, SQLITE_NOMEM, "out of memory");
91       rc = SQLITE_NOMEM_BKPT;
92     }else{
93       pParse->db = pDb;
94       if( sqlite3OpenTempDatabase(pParse) ){
95         sqlite3ErrorWithMsg(pErrorDb, pParse->rc, "%s", pParse->zErrMsg);
96         rc = SQLITE_ERROR;
97       }
98       sqlite3DbFree(pErrorDb, pParse->zErrMsg);
99       sqlite3ParserReset(pParse);
100       sqlite3StackFree(pErrorDb, pParse);
101     }
102     if( rc ){
103       return 0;
104     }
105   }
106 
107   if( i<0 ){
108     sqlite3ErrorWithMsg(pErrorDb, SQLITE_ERROR, "unknown database %s", zDb);
109     return 0;
110   }
111 
112   return pDb->aDb[i].pBt;
113 }
114 
115 /*
116 ** Attempt to set the page size of the destination to match the page size
117 ** of the source.
118 */
119 static int setDestPgsz(sqlite3_backup *p){
120   int rc;
121   rc = sqlite3BtreeSetPageSize(p->pDest,sqlite3BtreeGetPageSize(p->pSrc),-1,0);
122   return rc;
123 }
124 
125 /*
126 ** Check that there is no open read-transaction on the b-tree passed as the
127 ** second argument. If there is not, return SQLITE_OK. Otherwise, if there
128 ** is an open read-transaction, return SQLITE_ERROR and leave an error
129 ** message in database handle db.
130 */
131 static int checkReadTransaction(sqlite3 *db, Btree *p){
132   if( sqlite3BtreeIsInReadTrans(p) ){
133     sqlite3ErrorWithMsg(db, SQLITE_ERROR, "destination database is in use");
134     return SQLITE_ERROR;
135   }
136   return SQLITE_OK;
137 }
138 
139 /*
140 ** Create an sqlite3_backup process to copy the contents of zSrcDb from
141 ** connection handle pSrcDb to zDestDb in pDestDb. If successful, return
142 ** a pointer to the new sqlite3_backup object.
143 **
144 ** If an error occurs, NULL is returned and an error code and error message
145 ** stored in database handle pDestDb.
146 */
147 sqlite3_backup *sqlite3_backup_init(
148   sqlite3* pDestDb,                     /* Database to write to */
149   const char *zDestDb,                  /* Name of database within pDestDb */
150   sqlite3* pSrcDb,                      /* Database connection to read from */
151   const char *zSrcDb                    /* Name of database within pSrcDb */
152 ){
153   sqlite3_backup *p;                    /* Value to return */
154 
155 #ifdef SQLITE_ENABLE_API_ARMOR
156   if( !sqlite3SafetyCheckOk(pSrcDb)||!sqlite3SafetyCheckOk(pDestDb) ){
157     (void)SQLITE_MISUSE_BKPT;
158     return 0;
159   }
160 #endif
161 
162   /* Lock the source database handle. The destination database
163   ** handle is not locked in this routine, but it is locked in
164   ** sqlite3_backup_step(). The user is required to ensure that no
165   ** other thread accesses the destination handle for the duration
166   ** of the backup operation.  Any attempt to use the destination
167   ** database connection while a backup is in progress may cause
168   ** a malfunction or a deadlock.
169   */
170   sqlite3_mutex_enter(pSrcDb->mutex);
171   sqlite3_mutex_enter(pDestDb->mutex);
172 
173   if( pSrcDb==pDestDb ){
174     sqlite3ErrorWithMsg(
175         pDestDb, SQLITE_ERROR, "source and destination must be distinct"
176     );
177     p = 0;
178   }else {
179     /* Allocate space for a new sqlite3_backup object...
180     ** EVIDENCE-OF: R-64852-21591 The sqlite3_backup object is created by a
181     ** call to sqlite3_backup_init() and is destroyed by a call to
182     ** sqlite3_backup_finish(). */
183     p = (sqlite3_backup *)sqlite3MallocZero(sizeof(sqlite3_backup));
184     if( !p ){
185       sqlite3Error(pDestDb, SQLITE_NOMEM_BKPT);
186     }
187   }
188 
189   /* If the allocation succeeded, populate the new object. */
190   if( p ){
191     p->pSrc = findBtree(pDestDb, pSrcDb, zSrcDb);
192     p->pDest = findBtree(pDestDb, pDestDb, zDestDb);
193     p->pDestDb = pDestDb;
194     p->pSrcDb = pSrcDb;
195     p->iNext = 1;
196     p->isAttached = 0;
197 
198     if( 0==p->pSrc || 0==p->pDest
199      || checkReadTransaction(pDestDb, p->pDest)!=SQLITE_OK
200      ){
201       /* One (or both) of the named databases did not exist or an OOM
202       ** error was hit. Or there is a transaction open on the destination
203       ** database. The error has already been written into the pDestDb
204       ** handle. All that is left to do here is free the sqlite3_backup
205       ** structure.  */
206       sqlite3_free(p);
207       p = 0;
208     }
209   }
210   if( p ){
211     p->pSrc->nBackup++;
212   }
213 
214   sqlite3_mutex_leave(pDestDb->mutex);
215   sqlite3_mutex_leave(pSrcDb->mutex);
216   return p;
217 }
218 
219 /*
220 ** Argument rc is an SQLite error code. Return true if this error is
221 ** considered fatal if encountered during a backup operation. All errors
222 ** are considered fatal except for SQLITE_BUSY and SQLITE_LOCKED.
223 */
224 static int isFatalError(int rc){
225   return (rc!=SQLITE_OK && rc!=SQLITE_BUSY && ALWAYS(rc!=SQLITE_LOCKED));
226 }
227 
228 /*
229 ** Parameter zSrcData points to a buffer containing the data for
230 ** page iSrcPg from the source database. Copy this data into the
231 ** destination database.
232 */
233 static int backupOnePage(
234   sqlite3_backup *p,              /* Backup handle */
235   Pgno iSrcPg,                    /* Source database page to backup */
236   const u8 *zSrcData,             /* Source database page data */
237   int bUpdate                     /* True for an update, false otherwise */
238 ){
239   Pager * const pDestPager = sqlite3BtreePager(p->pDest);
240   const int nSrcPgsz = sqlite3BtreeGetPageSize(p->pSrc);
241   int nDestPgsz = sqlite3BtreeGetPageSize(p->pDest);
242   const int nCopy = MIN(nSrcPgsz, nDestPgsz);
243   const i64 iEnd = (i64)iSrcPg*(i64)nSrcPgsz;
244 #ifdef SQLITE_HAS_CODEC
245   /* Use BtreeGetReserveNoMutex() for the source b-tree, as although it is
246   ** guaranteed that the shared-mutex is held by this thread, handle
247   ** p->pSrc may not actually be the owner.  */
248   int nSrcReserve = sqlite3BtreeGetReserveNoMutex(p->pSrc);
249   int nDestReserve = sqlite3BtreeGetOptimalReserve(p->pDest);
250 #endif
251   int rc = SQLITE_OK;
252   i64 iOff;
253 
254   assert( sqlite3BtreeGetReserveNoMutex(p->pSrc)>=0 );
255   assert( p->bDestLocked );
256   assert( !isFatalError(p->rc) );
257   assert( iSrcPg!=PENDING_BYTE_PAGE(p->pSrc->pBt) );
258   assert( zSrcData );
259 
260   /* Catch the case where the destination is an in-memory database and the
261   ** page sizes of the source and destination differ.
262   */
263   if( nSrcPgsz!=nDestPgsz && sqlite3PagerIsMemdb(pDestPager) ){
264     rc = SQLITE_READONLY;
265   }
266 
267 #ifdef SQLITE_HAS_CODEC
268   /* Backup is not possible if the page size of the destination is changing
269   ** and a codec is in use.
270   */
271   if( nSrcPgsz!=nDestPgsz && sqlite3PagerGetCodec(pDestPager)!=0 ){
272     rc = SQLITE_READONLY;
273   }
274 
275   /* Backup is not possible if the number of bytes of reserve space differ
276   ** between source and destination.  If there is a difference, try to
277   ** fix the destination to agree with the source.  If that is not possible,
278   ** then the backup cannot proceed.
279   */
280   if( nSrcReserve!=nDestReserve ){
281     u32 newPgsz = nSrcPgsz;
282     rc = sqlite3PagerSetPagesize(pDestPager, &newPgsz, nSrcReserve);
283     if( rc==SQLITE_OK && newPgsz!=nSrcPgsz ) rc = SQLITE_READONLY;
284   }
285 #endif
286 
287   /* This loop runs once for each destination page spanned by the source
288   ** page. For each iteration, variable iOff is set to the byte offset
289   ** of the destination page.
290   */
291   for(iOff=iEnd-(i64)nSrcPgsz; rc==SQLITE_OK && iOff<iEnd; iOff+=nDestPgsz){
292     DbPage *pDestPg = 0;
293     Pgno iDest = (Pgno)(iOff/nDestPgsz)+1;
294     if( iDest==PENDING_BYTE_PAGE(p->pDest->pBt) ) continue;
295     if( SQLITE_OK==(rc = sqlite3PagerGet(pDestPager, iDest, &pDestPg, 0))
296      && SQLITE_OK==(rc = sqlite3PagerWrite(pDestPg))
297     ){
298       const u8 *zIn = &zSrcData[iOff%nSrcPgsz];
299       u8 *zDestData = sqlite3PagerGetData(pDestPg);
300       u8 *zOut = &zDestData[iOff%nDestPgsz];
301 
302       /* Copy the data from the source page into the destination page.
303       ** Then clear the Btree layer MemPage.isInit flag. Both this module
304       ** and the pager code use this trick (clearing the first byte
305       ** of the page 'extra' space to invalidate the Btree layers
306       ** cached parse of the page). MemPage.isInit is marked
307       ** "MUST BE FIRST" for this purpose.
308       */
309       memcpy(zOut, zIn, nCopy);
310       ((u8 *)sqlite3PagerGetExtra(pDestPg))[0] = 0;
311       if( iOff==0 && bUpdate==0 ){
312         sqlite3Put4byte(&zOut[28], sqlite3BtreeLastPage(p->pSrc));
313       }
314     }
315     sqlite3PagerUnref(pDestPg);
316   }
317 
318   return rc;
319 }
320 
321 /*
322 ** If pFile is currently larger than iSize bytes, then truncate it to
323 ** exactly iSize bytes. If pFile is not larger than iSize bytes, then
324 ** this function is a no-op.
325 **
326 ** Return SQLITE_OK if everything is successful, or an SQLite error
327 ** code if an error occurs.
328 */
329 static int backupTruncateFile(sqlite3_file *pFile, i64 iSize){
330   i64 iCurrent;
331   int rc = sqlite3OsFileSize(pFile, &iCurrent);
332   if( rc==SQLITE_OK && iCurrent>iSize ){
333     rc = sqlite3OsTruncate(pFile, iSize);
334   }
335   return rc;
336 }
337 
338 /*
339 ** Register this backup object with the associated source pager for
340 ** callbacks when pages are changed or the cache invalidated.
341 */
342 static void attachBackupObject(sqlite3_backup *p){
343   sqlite3_backup **pp;
344   assert( sqlite3BtreeHoldsMutex(p->pSrc) );
345   pp = sqlite3PagerBackupPtr(sqlite3BtreePager(p->pSrc));
346   p->pNext = *pp;
347   *pp = p;
348   p->isAttached = 1;
349 }
350 
351 /*
352 ** Copy nPage pages from the source b-tree to the destination.
353 */
354 int sqlite3_backup_step(sqlite3_backup *p, int nPage){
355   int rc;
356   int destMode;       /* Destination journal mode */
357   int pgszSrc = 0;    /* Source page size */
358   int pgszDest = 0;   /* Destination page size */
359 
360 #ifdef SQLITE_ENABLE_API_ARMOR
361   if( p==0 ) return SQLITE_MISUSE_BKPT;
362 #endif
363   sqlite3_mutex_enter(p->pSrcDb->mutex);
364   sqlite3BtreeEnter(p->pSrc);
365   if( p->pDestDb ){
366     sqlite3_mutex_enter(p->pDestDb->mutex);
367   }
368 
369   rc = p->rc;
370   if( !isFatalError(rc) ){
371     Pager * const pSrcPager = sqlite3BtreePager(p->pSrc);     /* Source pager */
372     Pager * const pDestPager = sqlite3BtreePager(p->pDest);   /* Dest pager */
373     int ii;                            /* Iterator variable */
374     int nSrcPage = -1;                 /* Size of source db in pages */
375     int bCloseTrans = 0;               /* True if src db requires unlocking */
376 
377     /* If the source pager is currently in a write-transaction, return
378     ** SQLITE_BUSY immediately.
379     */
380     if( p->pDestDb && p->pSrc->pBt->inTransaction==TRANS_WRITE ){
381       rc = SQLITE_BUSY;
382     }else{
383       rc = SQLITE_OK;
384     }
385 
386     /* If there is no open read-transaction on the source database, open
387     ** one now. If a transaction is opened here, then it will be closed
388     ** before this function exits.
389     */
390     if( rc==SQLITE_OK && 0==sqlite3BtreeIsInReadTrans(p->pSrc) ){
391       rc = sqlite3BtreeBeginTrans(p->pSrc, 0);
392       bCloseTrans = 1;
393     }
394 
395     /* If the destination database has not yet been locked (i.e. if this
396     ** is the first call to backup_step() for the current backup operation),
397     ** try to set its page size to the same as the source database. This
398     ** is especially important on ZipVFS systems, as in that case it is
399     ** not possible to create a database file that uses one page size by
400     ** writing to it with another.  */
401     if( p->bDestLocked==0 ) setDestPgsz(p);
402 
403     /* Lock the destination database, if it is not locked already. */
404     if( SQLITE_OK==rc && p->bDestLocked==0
405      && SQLITE_OK==(rc = sqlite3BtreeBeginTrans(p->pDest, 2))
406     ){
407       p->bDestLocked = 1;
408       sqlite3BtreeGetMeta(p->pDest, BTREE_SCHEMA_VERSION, &p->iDestSchema);
409     }
410 
411     /* Do not allow backup if the destination database is in WAL mode
412     ** and the page sizes are different between source and destination */
413     pgszSrc = sqlite3BtreeGetPageSize(p->pSrc);
414     pgszDest = sqlite3BtreeGetPageSize(p->pDest);
415     destMode = sqlite3PagerGetJournalMode(sqlite3BtreePager(p->pDest));
416     if( SQLITE_OK==rc && destMode==PAGER_JOURNALMODE_WAL && pgszSrc!=pgszDest ){
417       rc = SQLITE_READONLY;
418     }
419 
420     /* Now that there is a read-lock on the source database, query the
421     ** source pager for the number of pages in the database.
422     */
423     nSrcPage = (int)sqlite3BtreeLastPage(p->pSrc);
424     assert( nSrcPage>=0 );
425     for(ii=0; (nPage<0 || ii<nPage) && p->iNext<=(Pgno)nSrcPage && !rc; ii++){
426       const Pgno iSrcPg = p->iNext;                 /* Source page number */
427       if( iSrcPg!=PENDING_BYTE_PAGE(p->pSrc->pBt) ){
428         DbPage *pSrcPg;                             /* Source page object */
429         rc = sqlite3PagerGet(pSrcPager, iSrcPg, &pSrcPg,PAGER_GET_READONLY);
430         if( rc==SQLITE_OK ){
431           rc = backupOnePage(p, iSrcPg, sqlite3PagerGetData(pSrcPg), 0);
432           sqlite3PagerUnref(pSrcPg);
433         }
434       }
435       p->iNext++;
436     }
437     if( rc==SQLITE_OK ){
438       p->nPagecount = nSrcPage;
439       p->nRemaining = nSrcPage+1-p->iNext;
440       if( p->iNext>(Pgno)nSrcPage ){
441         rc = SQLITE_DONE;
442       }else if( !p->isAttached ){
443         attachBackupObject(p);
444       }
445     }
446 
447     /* Update the schema version field in the destination database. This
448     ** is to make sure that the schema-version really does change in
449     ** the case where the source and destination databases have the
450     ** same schema version.
451     */
452     if( rc==SQLITE_DONE ){
453       if( nSrcPage==0 ){
454         rc = sqlite3BtreeNewDb(p->pDest);
455         nSrcPage = 1;
456       }
457       if( rc==SQLITE_OK || rc==SQLITE_DONE ){
458         rc = sqlite3BtreeUpdateMeta(p->pDest,1,p->iDestSchema+1);
459       }
460       if( rc==SQLITE_OK ){
461         if( p->pDestDb ){
462           sqlite3ResetAllSchemasOfConnection(p->pDestDb);
463         }
464         if( destMode==PAGER_JOURNALMODE_WAL ){
465           rc = sqlite3BtreeSetVersion(p->pDest, 2);
466         }
467       }
468       if( rc==SQLITE_OK ){
469         int nDestTruncate;
470         /* Set nDestTruncate to the final number of pages in the destination
471         ** database. The complication here is that the destination page
472         ** size may be different to the source page size.
473         **
474         ** If the source page size is smaller than the destination page size,
475         ** round up. In this case the call to sqlite3OsTruncate() below will
476         ** fix the size of the file. However it is important to call
477         ** sqlite3PagerTruncateImage() here so that any pages in the
478         ** destination file that lie beyond the nDestTruncate page mark are
479         ** journalled by PagerCommitPhaseOne() before they are destroyed
480         ** by the file truncation.
481         */
482         assert( pgszSrc==sqlite3BtreeGetPageSize(p->pSrc) );
483         assert( pgszDest==sqlite3BtreeGetPageSize(p->pDest) );
484         if( pgszSrc<pgszDest ){
485           int ratio = pgszDest/pgszSrc;
486           nDestTruncate = (nSrcPage+ratio-1)/ratio;
487           if( nDestTruncate==(int)PENDING_BYTE_PAGE(p->pDest->pBt) ){
488             nDestTruncate--;
489           }
490         }else{
491           nDestTruncate = nSrcPage * (pgszSrc/pgszDest);
492         }
493         assert( nDestTruncate>0 );
494 
495         if( pgszSrc<pgszDest ){
496           /* If the source page-size is smaller than the destination page-size,
497           ** two extra things may need to happen:
498           **
499           **   * The destination may need to be truncated, and
500           **
501           **   * Data stored on the pages immediately following the
502           **     pending-byte page in the source database may need to be
503           **     copied into the destination database.
504           */
505           const i64 iSize = (i64)pgszSrc * (i64)nSrcPage;
506           sqlite3_file * const pFile = sqlite3PagerFile(pDestPager);
507           Pgno iPg;
508           int nDstPage;
509           i64 iOff;
510           i64 iEnd;
511 
512           assert( pFile );
513           assert( nDestTruncate==0
514               || (i64)nDestTruncate*(i64)pgszDest >= iSize || (
515                 nDestTruncate==(int)(PENDING_BYTE_PAGE(p->pDest->pBt)-1)
516              && iSize>=PENDING_BYTE && iSize<=PENDING_BYTE+pgszDest
517           ));
518 
519           /* This block ensures that all data required to recreate the original
520           ** database has been stored in the journal for pDestPager and the
521           ** journal synced to disk. So at this point we may safely modify
522           ** the database file in any way, knowing that if a power failure
523           ** occurs, the original database will be reconstructed from the
524           ** journal file.  */
525           sqlite3PagerPagecount(pDestPager, &nDstPage);
526           for(iPg=nDestTruncate; rc==SQLITE_OK && iPg<=(Pgno)nDstPage; iPg++){
527             if( iPg!=PENDING_BYTE_PAGE(p->pDest->pBt) ){
528               DbPage *pPg;
529               rc = sqlite3PagerGet(pDestPager, iPg, &pPg, 0);
530               if( rc==SQLITE_OK ){
531                 rc = sqlite3PagerWrite(pPg);
532                 sqlite3PagerUnref(pPg);
533               }
534             }
535           }
536           if( rc==SQLITE_OK ){
537             rc = sqlite3PagerCommitPhaseOne(pDestPager, 0, 1);
538           }
539 
540           /* Write the extra pages and truncate the database file as required */
541           iEnd = MIN(PENDING_BYTE + pgszDest, iSize);
542           for(
543             iOff=PENDING_BYTE+pgszSrc;
544             rc==SQLITE_OK && iOff<iEnd;
545             iOff+=pgszSrc
546           ){
547             PgHdr *pSrcPg = 0;
548             const Pgno iSrcPg = (Pgno)((iOff/pgszSrc)+1);
549             rc = sqlite3PagerGet(pSrcPager, iSrcPg, &pSrcPg, 0);
550             if( rc==SQLITE_OK ){
551               u8 *zData = sqlite3PagerGetData(pSrcPg);
552               rc = sqlite3OsWrite(pFile, zData, pgszSrc, iOff);
553             }
554             sqlite3PagerUnref(pSrcPg);
555           }
556           if( rc==SQLITE_OK ){
557             rc = backupTruncateFile(pFile, iSize);
558           }
559 
560           /* Sync the database file to disk. */
561           if( rc==SQLITE_OK ){
562             rc = sqlite3PagerSync(pDestPager, 0);
563           }
564         }else{
565           sqlite3PagerTruncateImage(pDestPager, nDestTruncate);
566           rc = sqlite3PagerCommitPhaseOne(pDestPager, 0, 0);
567         }
568 
569         /* Finish committing the transaction to the destination database. */
570         if( SQLITE_OK==rc
571          && SQLITE_OK==(rc = sqlite3BtreeCommitPhaseTwo(p->pDest, 0))
572         ){
573           rc = SQLITE_DONE;
574         }
575       }
576     }
577 
578     /* If bCloseTrans is true, then this function opened a read transaction
579     ** on the source database. Close the read transaction here. There is
580     ** no need to check the return values of the btree methods here, as
581     ** "committing" a read-only transaction cannot fail.
582     */
583     if( bCloseTrans ){
584       TESTONLY( int rc2 );
585       TESTONLY( rc2  = ) sqlite3BtreeCommitPhaseOne(p->pSrc, 0);
586       TESTONLY( rc2 |= ) sqlite3BtreeCommitPhaseTwo(p->pSrc, 0);
587       assert( rc2==SQLITE_OK );
588     }
589 
590     if( rc==SQLITE_IOERR_NOMEM ){
591       rc = SQLITE_NOMEM_BKPT;
592     }
593     p->rc = rc;
594   }
595   if( p->pDestDb ){
596     sqlite3_mutex_leave(p->pDestDb->mutex);
597   }
598   sqlite3BtreeLeave(p->pSrc);
599   sqlite3_mutex_leave(p->pSrcDb->mutex);
600   return rc;
601 }
602 
603 /*
604 ** Release all resources associated with an sqlite3_backup* handle.
605 */
606 int sqlite3_backup_finish(sqlite3_backup *p){
607   sqlite3_backup **pp;                 /* Ptr to head of pagers backup list */
608   sqlite3 *pSrcDb;                     /* Source database connection */
609   int rc;                              /* Value to return */
610 
611   /* Enter the mutexes */
612   if( p==0 ) return SQLITE_OK;
613   pSrcDb = p->pSrcDb;
614   sqlite3_mutex_enter(pSrcDb->mutex);
615   sqlite3BtreeEnter(p->pSrc);
616   if( p->pDestDb ){
617     sqlite3_mutex_enter(p->pDestDb->mutex);
618   }
619 
620   /* Detach this backup from the source pager. */
621   if( p->pDestDb ){
622     p->pSrc->nBackup--;
623   }
624   if( p->isAttached ){
625     pp = sqlite3PagerBackupPtr(sqlite3BtreePager(p->pSrc));
626     while( *pp!=p ){
627       pp = &(*pp)->pNext;
628     }
629     *pp = p->pNext;
630   }
631 
632   /* If a transaction is still open on the Btree, roll it back. */
633   sqlite3BtreeRollback(p->pDest, SQLITE_OK, 0);
634 
635   /* Set the error code of the destination database handle. */
636   rc = (p->rc==SQLITE_DONE) ? SQLITE_OK : p->rc;
637   if( p->pDestDb ){
638     sqlite3Error(p->pDestDb, rc);
639 
640     /* Exit the mutexes and free the backup context structure. */
641     sqlite3LeaveMutexAndCloseZombie(p->pDestDb);
642   }
643   sqlite3BtreeLeave(p->pSrc);
644   if( p->pDestDb ){
645     /* EVIDENCE-OF: R-64852-21591 The sqlite3_backup object is created by a
646     ** call to sqlite3_backup_init() and is destroyed by a call to
647     ** sqlite3_backup_finish(). */
648     sqlite3_free(p);
649   }
650   sqlite3LeaveMutexAndCloseZombie(pSrcDb);
651   return rc;
652 }
653 
654 /*
655 ** Return the number of pages still to be backed up as of the most recent
656 ** call to sqlite3_backup_step().
657 */
658 int sqlite3_backup_remaining(sqlite3_backup *p){
659 #ifdef SQLITE_ENABLE_API_ARMOR
660   if( p==0 ){
661     (void)SQLITE_MISUSE_BKPT;
662     return 0;
663   }
664 #endif
665   return p->nRemaining;
666 }
667 
668 /*
669 ** Return the total number of pages in the source database as of the most
670 ** recent call to sqlite3_backup_step().
671 */
672 int sqlite3_backup_pagecount(sqlite3_backup *p){
673 #ifdef SQLITE_ENABLE_API_ARMOR
674   if( p==0 ){
675     (void)SQLITE_MISUSE_BKPT;
676     return 0;
677   }
678 #endif
679   return p->nPagecount;
680 }
681 
682 /*
683 ** This function is called after the contents of page iPage of the
684 ** source database have been modified. If page iPage has already been
685 ** copied into the destination database, then the data written to the
686 ** destination is now invalidated. The destination copy of iPage needs
687 ** to be updated with the new data before the backup operation is
688 ** complete.
689 **
690 ** It is assumed that the mutex associated with the BtShared object
691 ** corresponding to the source database is held when this function is
692 ** called.
693 */
694 static SQLITE_NOINLINE void backupUpdate(
695   sqlite3_backup *p,
696   Pgno iPage,
697   const u8 *aData
698 ){
699   assert( p!=0 );
700   do{
701     assert( sqlite3_mutex_held(p->pSrc->pBt->mutex) );
702     if( !isFatalError(p->rc) && iPage<p->iNext ){
703       /* The backup process p has already copied page iPage. But now it
704       ** has been modified by a transaction on the source pager. Copy
705       ** the new data into the backup.
706       */
707       int rc;
708       assert( p->pDestDb );
709       sqlite3_mutex_enter(p->pDestDb->mutex);
710       rc = backupOnePage(p, iPage, aData, 1);
711       sqlite3_mutex_leave(p->pDestDb->mutex);
712       assert( rc!=SQLITE_BUSY && rc!=SQLITE_LOCKED );
713       if( rc!=SQLITE_OK ){
714         p->rc = rc;
715       }
716     }
717   }while( (p = p->pNext)!=0 );
718 }
719 void sqlite3BackupUpdate(sqlite3_backup *pBackup, Pgno iPage, const u8 *aData){
720   if( pBackup ) backupUpdate(pBackup, iPage, aData);
721 }
722 
723 /*
724 ** Restart the backup process. This is called when the pager layer
725 ** detects that the database has been modified by an external database
726 ** connection. In this case there is no way of knowing which of the
727 ** pages that have been copied into the destination database are still
728 ** valid and which are not, so the entire process needs to be restarted.
729 **
730 ** It is assumed that the mutex associated with the BtShared object
731 ** corresponding to the source database is held when this function is
732 ** called.
733 */
734 void sqlite3BackupRestart(sqlite3_backup *pBackup){
735   sqlite3_backup *p;                   /* Iterator variable */
736   for(p=pBackup; p; p=p->pNext){
737     assert( sqlite3_mutex_held(p->pSrc->pBt->mutex) );
738     p->iNext = 1;
739   }
740 }
741 
742 #ifndef SQLITE_OMIT_VACUUM
743 /*
744 ** Copy the complete content of pBtFrom into pBtTo.  A transaction
745 ** must be active for both files.
746 **
747 ** The size of file pTo may be reduced by this operation. If anything
748 ** goes wrong, the transaction on pTo is rolled back. If successful, the
749 ** transaction is committed before returning.
750 */
751 int sqlite3BtreeCopyFile(Btree *pTo, Btree *pFrom){
752   int rc;
753   sqlite3_file *pFd;              /* File descriptor for database pTo */
754   sqlite3_backup b;
755   sqlite3BtreeEnter(pTo);
756   sqlite3BtreeEnter(pFrom);
757 
758   assert( sqlite3BtreeIsInTrans(pTo) );
759   pFd = sqlite3PagerFile(sqlite3BtreePager(pTo));
760   if( pFd->pMethods ){
761     i64 nByte = sqlite3BtreeGetPageSize(pFrom)*(i64)sqlite3BtreeLastPage(pFrom);
762     rc = sqlite3OsFileControl(pFd, SQLITE_FCNTL_OVERWRITE, &nByte);
763     if( rc==SQLITE_NOTFOUND ) rc = SQLITE_OK;
764     if( rc ) goto copy_finished;
765   }
766 
767   /* Set up an sqlite3_backup object. sqlite3_backup.pDestDb must be set
768   ** to 0. This is used by the implementations of sqlite3_backup_step()
769   ** and sqlite3_backup_finish() to detect that they are being called
770   ** from this function, not directly by the user.
771   */
772   memset(&b, 0, sizeof(b));
773   b.pSrcDb = pFrom->db;
774   b.pSrc = pFrom;
775   b.pDest = pTo;
776   b.iNext = 1;
777 
778 #ifdef SQLITE_HAS_CODEC
779   sqlite3PagerAlignReserve(sqlite3BtreePager(pTo), sqlite3BtreePager(pFrom));
780 #endif
781 
782   /* 0x7FFFFFFF is the hard limit for the number of pages in a database
783   ** file. By passing this as the number of pages to copy to
784   ** sqlite3_backup_step(), we can guarantee that the copy finishes
785   ** within a single call (unless an error occurs). The assert() statement
786   ** checks this assumption - (p->rc) should be set to either SQLITE_DONE
787   ** or an error code.  */
788   sqlite3_backup_step(&b, 0x7FFFFFFF);
789   assert( b.rc!=SQLITE_OK );
790 
791   rc = sqlite3_backup_finish(&b);
792   if( rc==SQLITE_OK ){
793     pTo->pBt->btsFlags &= ~BTS_PAGESIZE_FIXED;
794   }else{
795     sqlite3PagerClearCache(sqlite3BtreePager(b.pDest));
796   }
797 
798   assert( sqlite3BtreeIsInTrans(pTo)==0 );
799 copy_finished:
800   sqlite3BtreeLeave(pFrom);
801   sqlite3BtreeLeave(pTo);
802   return rc;
803 }
804 #endif /* SQLITE_OMIT_VACUUM */
805