2 Bacula® - The Network Backup Solution
4 Copyright (C) 2000-2008 Free Software Foundation Europe e.V.
6 The main author of Bacula is Kern Sibbald, with contributions from
7 many others, a complete list can be found in the file AUTHORS.
8 This program is Free Software; you can redistribute it and/or
9 modify it under the terms of version two of the GNU General Public
10 License as published by the Free Software Foundation and included
13 This program is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23 Bacula® is a registered trademark of Kern Sibbald.
24 The licensor of Bacula is the Free Software Foundation Europe
25 (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
26 Switzerland, email:ftf@fsfeurope.org.
29 * Bacula Catalog Database Create record interface routines
31 * Kern Sibbald, March 2000
36 /* The following is necessary so that we do not include
37 * the dummy external definition of DB.
39 #define __SQL_C /* indicate that this is sql.c */
44 static const int dbglevel = 500;
46 #if HAVE_SQLITE3 || HAVE_MYSQL || HAVE_SQLITE || HAVE_POSTGRESQL || HAVE_DBI
48 /* -----------------------------------------------------------------------
50 * Generic Routines (or almost generic)
52 * -----------------------------------------------------------------------
55 /* Forward referenced subroutines */
56 #ifndef HAVE_BATCH_FILE_INSERT
57 static int db_create_file_record(JCR *jcr, B_DB *mdb, ATTR_DBR *ar);
58 static int db_create_filename_record(JCR *jcr, B_DB *mdb, ATTR_DBR *ar);
59 static int db_create_path_record(JCR *jcr, B_DB *mdb, ATTR_DBR *ar);
60 #endif /* HAVE_BATCH_FILE_INSERT */
63 /* Create a new record for the Job
64 * Returns: false on failure
68 db_create_job_record(JCR *jcr, B_DB *mdb, JOB_DBR *jr)
70 char dt[MAX_TIME_LENGTH];
79 stime = jr->SchedTime;
82 (void)localtime_r(&stime, &tm);
83 strftime(dt, sizeof(dt), "%Y-%m-%d %H:%M:%S", &tm);
84 JobTDate = (utime_t)stime;
88 "INSERT INTO Job (Job,Name,Type,Level,JobStatus,SchedTime,JobTDate,ClientId) "
89 "VALUES ('%s','%s','%c','%c','%c','%s',%s,%s)",
90 jr->Job, jr->Name, (char)(jr->JobType), (char)(jr->JobLevel),
91 (char)(jr->JobStatus), dt, edit_uint64(JobTDate, ed1),
92 edit_int64(jr->ClientId, ed2));
94 if (!INSERT_DB(jcr, mdb, mdb->cmd)) {
95 Mmsg2(&mdb->errmsg, _("Create DB Job record %s failed. ERR=%s\n"),
96 mdb->cmd, sql_strerror(mdb));
100 jr->JobId = sql_insert_id(mdb, NT_("Job"));
108 /* Create a JobMedia record for medium used this job
109 * Returns: false on failure
113 db_create_jobmedia_record(JCR *jcr, B_DB *mdb, JOBMEDIA_DBR *jm)
117 char ed1[50], ed2[50];
121 /* Now get count for VolIndex */
122 Mmsg(mdb->cmd, "SELECT count(*) from JobMedia WHERE JobId=%s",
123 edit_int64(jm->JobId, ed1));
124 count = get_sql_record_max(jcr, mdb);
130 /* Note, jm->Strip is not used and is not likely to be used
131 * in the near future, so I have removed it from the insert
132 * to save space in the DB. KES June 2006.
135 "INSERT INTO JobMedia (JobId,MediaId,FirstIndex,LastIndex,"
136 "StartFile,EndFile,StartBlock,EndBlock,VolIndex,Copy) "
137 "VALUES (%s,%s,%u,%u,%u,%u,%u,%u,%u,%u)",
138 edit_int64(jm->JobId, ed1),
139 edit_int64(jm->MediaId, ed2),
140 jm->FirstIndex, jm->LastIndex,
141 jm->StartFile, jm->EndFile, jm->StartBlock, jm->EndBlock,count,
144 Dmsg0(300, mdb->cmd);
145 if (!INSERT_DB(jcr, mdb, mdb->cmd)) {
146 Mmsg2(&mdb->errmsg, _("Create JobMedia record %s failed: ERR=%s\n"), mdb->cmd,
150 /* Worked, now update the Media record with the EndFile and EndBlock */
152 "UPDATE Media SET EndFile=%u, EndBlock=%u WHERE MediaId=%u",
153 jm->EndFile, jm->EndBlock, jm->MediaId);
154 if (!UPDATE_DB(jcr, mdb, mdb->cmd)) {
155 Mmsg2(&mdb->errmsg, _("Update Media record %s failed: ERR=%s\n"), mdb->cmd,
161 Dmsg0(300, "Return from JobMedia\n");
165 /* Create Unique Pool record
166 * Returns: false on failure
170 db_create_pool_record(JCR *jcr, B_DB *mdb, POOL_DBR *pr)
173 char ed1[30], ed2[30], ed3[50], ed4[50], ed5[50];
175 Dmsg0(200, "In create pool\n");
177 Mmsg(mdb->cmd, "SELECT PoolId,Name FROM Pool WHERE Name='%s'", pr->Name);
178 Dmsg1(200, "selectpool: %s\n", mdb->cmd);
180 if (QUERY_DB(jcr, mdb, mdb->cmd)) {
181 mdb->num_rows = sql_num_rows(mdb);
182 if (mdb->num_rows > 0) {
183 Mmsg1(&mdb->errmsg, _("pool record %s already exists\n"), pr->Name);
184 sql_free_result(mdb);
188 sql_free_result(mdb);
193 "INSERT INTO Pool (Name,NumVols,MaxVols,UseOnce,UseCatalog,"
194 "AcceptAnyVolume,AutoPrune,Recycle,VolRetention,VolUseDuration,"
195 "MaxVolJobs,MaxVolFiles,MaxVolBytes,PoolType,LabelType,LabelFormat,"
196 "RecyclePoolId,ScratchPoolId) "
197 "VALUES ('%s',%u,%u,%d,%d,%d,%d,%d,%s,%s,%u,%u,%s,'%s',%d,'%s',%s,%s)",
199 pr->NumVols, pr->MaxVols,
200 pr->UseOnce, pr->UseCatalog,
202 pr->AutoPrune, pr->Recycle,
203 edit_uint64(pr->VolRetention, ed1),
204 edit_uint64(pr->VolUseDuration, ed2),
205 pr->MaxVolJobs, pr->MaxVolFiles,
206 edit_uint64(pr->MaxVolBytes, ed3),
207 pr->PoolType, pr->LabelType, pr->LabelFormat,
208 edit_int64(pr->RecyclePoolId,ed4),
209 edit_int64(pr->ScratchPoolId,ed5));
210 Dmsg1(200, "Create Pool: %s\n", mdb->cmd);
211 if (!INSERT_DB(jcr, mdb, mdb->cmd)) {
212 Mmsg2(&mdb->errmsg, _("Create db Pool record %s failed: ERR=%s\n"),
213 mdb->cmd, sql_strerror(mdb));
217 pr->PoolId = sql_insert_id(mdb, NT_("Pool"));
225 * Create Unique Device record
226 * Returns: false on failure
230 db_create_device_record(JCR *jcr, B_DB *mdb, DEVICE_DBR *dr)
233 char ed1[30], ed2[30];
235 Dmsg0(200, "In create Device\n");
237 Mmsg(mdb->cmd, "SELECT DeviceId,Name FROM Device WHERE Name='%s'", dr->Name);
238 Dmsg1(200, "selectdevice: %s\n", mdb->cmd);
240 if (QUERY_DB(jcr, mdb, mdb->cmd)) {
241 mdb->num_rows = sql_num_rows(mdb);
242 if (mdb->num_rows > 0) {
243 Mmsg1(&mdb->errmsg, _("Device record %s already exists\n"), dr->Name);
244 sql_free_result(mdb);
248 sql_free_result(mdb);
253 "INSERT INTO Device (Name,MediaTypeId,StorageId) VALUES ('%s',%s,%s)",
255 edit_uint64(dr->MediaTypeId, ed1),
256 edit_int64(dr->StorageId, ed2));
257 Dmsg1(200, "Create Device: %s\n", mdb->cmd);
258 if (!INSERT_DB(jcr, mdb, mdb->cmd)) {
259 Mmsg2(&mdb->errmsg, _("Create db Device record %s failed: ERR=%s\n"),
260 mdb->cmd, sql_strerror(mdb));
264 dr->DeviceId = sql_insert_id(mdb, NT_("Device"));
274 * Create a Unique record for Storage -- no duplicates
275 * Returns: false on failure
276 * true on success with id in sr->StorageId
278 bool db_create_storage_record(JCR *jcr, B_DB *mdb, STORAGE_DBR *sr)
284 Mmsg(mdb->cmd, "SELECT StorageId,AutoChanger FROM Storage WHERE Name='%s'", sr->Name);
288 if (QUERY_DB(jcr, mdb, mdb->cmd)) {
289 mdb->num_rows = sql_num_rows(mdb);
290 /* If more than one, report error, but return first row */
291 if (mdb->num_rows > 1) {
292 Mmsg1(&mdb->errmsg, _("More than one Storage record!: %d\n"), (int)(mdb->num_rows));
293 Jmsg(jcr, M_ERROR, 0, "%s", mdb->errmsg);
295 if (mdb->num_rows >= 1) {
296 if ((row = sql_fetch_row(mdb)) == NULL) {
297 Mmsg1(&mdb->errmsg, _("error fetching Storage row: %s\n"), sql_strerror(mdb));
298 Jmsg(jcr, M_ERROR, 0, "%s", mdb->errmsg);
299 sql_free_result(mdb);
303 sr->StorageId = str_to_int64(row[0]);
304 sr->AutoChanger = atoi(row[1]); /* bool */
305 sql_free_result(mdb);
309 sql_free_result(mdb);
313 Mmsg(mdb->cmd, "INSERT INTO Storage (Name,AutoChanger)"
314 " VALUES ('%s',%d)", sr->Name, sr->AutoChanger);
316 if (!INSERT_DB(jcr, mdb, mdb->cmd)) {
317 Mmsg2(&mdb->errmsg, _("Create DB Storage record %s failed. ERR=%s\n"),
318 mdb->cmd, sql_strerror(mdb));
319 Jmsg(jcr, M_ERROR, 0, "%s", mdb->errmsg);
322 sr->StorageId = sql_insert_id(mdb, NT_("Storage"));
332 * Create Unique MediaType record
333 * Returns: false on failure
337 db_create_mediatype_record(JCR *jcr, B_DB *mdb, MEDIATYPE_DBR *mr)
341 Dmsg0(200, "In create mediatype\n");
343 Mmsg(mdb->cmd, "SELECT MediaTypeId,MediaType FROM MediaType WHERE MediaType='%s'", mr->MediaType);
344 Dmsg1(200, "selectmediatype: %s\n", mdb->cmd);
346 if (QUERY_DB(jcr, mdb, mdb->cmd)) {
347 mdb->num_rows = sql_num_rows(mdb);
348 if (mdb->num_rows > 0) {
349 Mmsg1(&mdb->errmsg, _("mediatype record %s already exists\n"), mr->MediaType);
350 sql_free_result(mdb);
354 sql_free_result(mdb);
359 "INSERT INTO MediaType (MediaType,ReadOnly) "
363 Dmsg1(200, "Create mediatype: %s\n", mdb->cmd);
364 if (!INSERT_DB(jcr, mdb, mdb->cmd)) {
365 Mmsg2(&mdb->errmsg, _("Create db mediatype record %s failed: ERR=%s\n"),
366 mdb->cmd, sql_strerror(mdb));
370 mr->MediaTypeId = sql_insert_id(mdb, NT_("MediaType"));
379 * Create Media record. VolumeName and non-zero Slot must be unique
381 * Returns: 0 on failure
385 db_create_media_record(JCR *jcr, B_DB *mdb, MEDIA_DBR *mr)
388 char ed1[50], ed2[50], ed3[50], ed4[50], ed5[50], ed6[50], ed7[50], ed8[50];
389 char ed9[50], ed10[50], ed11[50], ed12[50];
393 Mmsg(mdb->cmd, "SELECT MediaId FROM Media WHERE VolumeName='%s'",
395 Dmsg1(500, "selectpool: %s\n", mdb->cmd);
397 if (QUERY_DB(jcr, mdb, mdb->cmd)) {
398 mdb->num_rows = sql_num_rows(mdb);
399 if (mdb->num_rows > 0) {
400 Mmsg1(&mdb->errmsg, _("Volume \"%s\" already exists.\n"), mr->VolumeName);
401 sql_free_result(mdb);
405 sql_free_result(mdb);
410 "INSERT INTO Media (VolumeName,MediaType,MediaTypeId,PoolId,MaxVolBytes,"
411 "VolCapacityBytes,Recycle,VolRetention,VolUseDuration,MaxVolJobs,MaxVolFiles,"
412 "VolStatus,Slot,VolBytes,InChanger,VolReadTime,VolWriteTime,VolParts,"
413 "EndFile,EndBlock,LabelType,StorageId,DeviceId,LocationId,"
414 "ScratchPoolId,RecyclePoolId,Enabled)"
415 "VALUES ('%s','%s',0,%u,%s,%s,%d,%s,%s,%u,%u,'%s',%d,%s,%d,%s,%s,%d,0,0,%d,%s,"
418 mr->MediaType, mr->PoolId,
419 edit_uint64(mr->MaxVolBytes,ed1),
420 edit_uint64(mr->VolCapacityBytes, ed2),
422 edit_uint64(mr->VolRetention, ed3),
423 edit_uint64(mr->VolUseDuration, ed4),
428 edit_uint64(mr->VolBytes, ed5),
430 edit_int64(mr->VolReadTime, ed6),
431 edit_int64(mr->VolWriteTime, ed7),
434 edit_int64(mr->StorageId, ed8),
435 edit_int64(mr->DeviceId, ed9),
436 edit_int64(mr->LocationId, ed10),
437 edit_int64(mr->ScratchPoolId, ed11),
438 edit_int64(mr->RecyclePoolId, ed12),
443 Dmsg1(500, "Create Volume: %s\n", mdb->cmd);
444 if (!INSERT_DB(jcr, mdb, mdb->cmd)) {
445 Mmsg2(&mdb->errmsg, _("Create DB Media record %s failed. ERR=%s\n"),
446 mdb->cmd, sql_strerror(mdb));
449 mr->MediaId = sql_insert_id(mdb, NT_("Media"));
451 if (mr->set_label_date) {
452 char dt[MAX_TIME_LENGTH];
453 if (mr->LabelDate == 0) {
454 mr->LabelDate = time(NULL);
456 (void)localtime_r(&mr->LabelDate, &tm);
457 strftime(dt, sizeof(dt), "%Y-%m-%d %H:%M:%S", &tm);
458 Mmsg(mdb->cmd, "UPDATE Media SET LabelDate='%s' "
459 "WHERE MediaId=%d", dt, mr->MediaId);
460 stat = UPDATE_DB(jcr, mdb, mdb->cmd);
463 * Make sure that if InChanger is non-zero any other identical slot
464 * has InChanger zero.
466 db_make_inchanger_unique(jcr, mdb, mr);
474 * Create a Unique record for the client -- no duplicates
475 * Returns: 0 on failure
476 * 1 on success with id in cr->ClientId
478 int db_create_client_record(JCR *jcr, B_DB *mdb, CLIENT_DBR *cr)
482 char ed1[50], ed2[50];
485 Mmsg(mdb->cmd, "SELECT ClientId,Uname FROM Client WHERE Name='%s'", cr->Name);
488 if (QUERY_DB(jcr, mdb, mdb->cmd)) {
489 mdb->num_rows = sql_num_rows(mdb);
490 /* If more than one, report error, but return first row */
491 if (mdb->num_rows > 1) {
492 Mmsg1(&mdb->errmsg, _("More than one Client!: %d\n"), (int)(mdb->num_rows));
493 Jmsg(jcr, M_ERROR, 0, "%s", mdb->errmsg);
495 if (mdb->num_rows >= 1) {
496 if ((row = sql_fetch_row(mdb)) == NULL) {
497 Mmsg1(&mdb->errmsg, _("error fetching Client row: %s\n"), sql_strerror(mdb));
498 Jmsg(jcr, M_ERROR, 0, "%s", mdb->errmsg);
499 sql_free_result(mdb);
503 cr->ClientId = str_to_int64(row[0]);
505 bstrncpy(cr->Uname, row[1], sizeof(cr->Uname));
507 cr->Uname[0] = 0; /* no name */
509 sql_free_result(mdb);
513 sql_free_result(mdb);
517 Mmsg(mdb->cmd, "INSERT INTO Client (Name,Uname,AutoPrune,"
518 "FileRetention,JobRetention) VALUES "
519 "('%s','%s',%d,%s,%s)", cr->Name, cr->Uname, cr->AutoPrune,
520 edit_uint64(cr->FileRetention, ed1),
521 edit_uint64(cr->JobRetention, ed2));
523 if (!INSERT_DB(jcr, mdb, mdb->cmd)) {
524 Mmsg2(&mdb->errmsg, _("Create DB Client record %s failed. ERR=%s\n"),
525 mdb->cmd, sql_strerror(mdb));
526 Jmsg(jcr, M_ERROR, 0, "%s", mdb->errmsg);
530 cr->ClientId = sql_insert_id(mdb, NT_("Client"));
542 * Create a Unique record for the counter -- no duplicates
543 * Returns: 0 on failure
544 * 1 on success with counter filled in
546 int db_create_counter_record(JCR *jcr, B_DB *mdb, COUNTER_DBR *cr)
552 memset(&mcr, 0, sizeof(mcr));
553 bstrncpy(mcr.Counter, cr->Counter, sizeof(mcr.Counter));
554 if (db_get_counter_record(jcr, mdb, &mcr)) {
555 memcpy(cr, &mcr, sizeof(COUNTER_DBR));
561 Mmsg(mdb->cmd, "INSERT INTO Counters (Counter,MinValue,MaxValue,CurrentValue,"
562 "WrapCounter) VALUES ('%s','%d','%d','%d','%s')",
563 cr->Counter, cr->MinValue, cr->MaxValue, cr->CurrentValue,
566 if (!INSERT_DB(jcr, mdb, mdb->cmd)) {
567 Mmsg2(&mdb->errmsg, _("Create DB Counters record %s failed. ERR=%s\n"),
568 mdb->cmd, sql_strerror(mdb));
569 Jmsg(jcr, M_ERROR, 0, "%s", mdb->errmsg);
580 * Create a FileSet record. This record is unique in the
581 * name and the MD5 signature of the include/exclude sets.
582 * Returns: 0 on failure
583 * 1 on success with FileSetId in record
585 bool db_create_fileset_record(JCR *jcr, B_DB *mdb, FILESET_DBR *fsr)
592 fsr->created = false;
593 Mmsg(mdb->cmd, "SELECT FileSetId,CreateTime FROM FileSet WHERE "
594 "FileSet='%s' AND MD5='%s'", fsr->FileSet, fsr->MD5);
597 if (QUERY_DB(jcr, mdb, mdb->cmd)) {
598 mdb->num_rows = sql_num_rows(mdb);
599 if (mdb->num_rows > 1) {
600 Mmsg1(&mdb->errmsg, _("More than one FileSet!: %d\n"), (int)(mdb->num_rows));
601 Jmsg(jcr, M_ERROR, 0, "%s", mdb->errmsg);
603 if (mdb->num_rows >= 1) {
604 if ((row = sql_fetch_row(mdb)) == NULL) {
605 Mmsg1(&mdb->errmsg, _("error fetching FileSet row: ERR=%s\n"), sql_strerror(mdb));
606 Jmsg(jcr, M_ERROR, 0, "%s", mdb->errmsg);
607 sql_free_result(mdb);
611 fsr->FileSetId = str_to_int64(row[0]);
612 if (row[1] == NULL) {
613 fsr->cCreateTime[0] = 0;
615 bstrncpy(fsr->cCreateTime, row[1], sizeof(fsr->cCreateTime));
617 sql_free_result(mdb);
621 sql_free_result(mdb);
624 if (fsr->CreateTime == 0 && fsr->cCreateTime[0] == 0) {
625 fsr->CreateTime = time(NULL);
627 (void)localtime_r(&fsr->CreateTime, &tm);
628 strftime(fsr->cCreateTime, sizeof(fsr->cCreateTime), "%Y-%m-%d %H:%M:%S", &tm);
631 Mmsg(mdb->cmd, "INSERT INTO FileSet (FileSet,MD5,CreateTime) "
632 "VALUES ('%s','%s','%s')", fsr->FileSet, fsr->MD5, fsr->cCreateTime);
634 if (!INSERT_DB(jcr, mdb, mdb->cmd)) {
635 Mmsg2(&mdb->errmsg, _("Create DB FileSet record %s failed. ERR=%s\n"),
636 mdb->cmd, sql_strerror(mdb));
637 Jmsg(jcr, M_ERROR, 0, "%s", mdb->errmsg);
641 fsr->FileSetId = sql_insert_id(mdb, NT_("FileSet"));
654 * dev_t st_dev; * device *
655 * ino_t st_ino; * inode *
656 * mode_t st_mode; * protection *
657 * nlink_t st_nlink; * number of hard links *
658 * uid_t st_uid; * user ID of owner *
659 * gid_t st_gid; * group ID of owner *
660 * dev_t st_rdev; * device type (if inode device) *
661 * off_t st_size; * total size, in bytes *
662 * unsigned long st_blksize; * blocksize for filesystem I/O *
663 * unsigned long st_blocks; * number of blocks allocated *
664 * time_t st_atime; * time of last access *
665 * time_t st_mtime; * time of last modification *
666 * time_t st_ctime; * time of last inode change *
670 #ifdef HAVE_BATCH_FILE_INSERT
672 /* All sql_batch_* functions are used to do bulk batch insert in File/Filename/Path
673 * tables. This code can be activated by adding "#define HAVE_BATCH_FILE_INSERT 1"
677 * - bulk load a temp table
678 * - insert missing filenames into filename with a single query (lock filenames
679 * - table before that to avoid possible duplicate inserts with concurrent update)
680 * - insert missing paths into path with another single query
681 * - then insert the join between the temp, filename and path tables into file.
688 bool my_batch_start(JCR *jcr, B_DB *mdb)
693 ok = db_sql_query(mdb,
694 "CREATE TEMPORARY TABLE batch ("
700 "MD5 tinyblob)",NULL, NULL);
709 bool my_batch_insert(JCR *jcr, B_DB *mdb, ATTR_DBR *ar)
715 mdb->esc_name = check_pool_memory_size(mdb->esc_name, mdb->fnl*2+1);
716 db_escape_string(jcr, mdb, mdb->esc_name, mdb->fname, mdb->fnl);
718 mdb->esc_path = check_pool_memory_size(mdb->esc_path, mdb->pnl*2+1);
719 db_escape_string(jcr, mdb, mdb->esc_path, mdb->path, mdb->pnl);
721 if (ar->Digest == NULL || ar->Digest[0] == 0) {
727 len = Mmsg(mdb->cmd, "INSERT INTO batch VALUES (%u,%s,'%s','%s','%s','%s')",
728 ar->FileIndex, edit_int64(ar->JobId,ed1), mdb->esc_path,
729 mdb->esc_name, ar->attr, digest);
731 return INSERT_DB(jcr, mdb, mdb->cmd);
734 /* set error to something to abort operation */
739 bool my_batch_end(JCR *jcr, B_DB *mdb, const char *error)
742 Dmsg0(50, "sql_batch_end started\n");
746 mdb->status = (dbi_error_flag)0;
758 bool db_write_batch_file_records(JCR *jcr)
760 int JobStatus = jcr->JobStatus;
762 if (!jcr->batch_started) { /* no files to backup ? */
763 Dmsg0(50,"db_create_file_record : no files\n");
766 if (job_canceled(jcr)) {
770 Dmsg1(50,"db_create_file_record changes=%u\n",jcr->db_batch->changes);
772 jcr->JobStatus = JS_AttrInserting;
773 if (!sql_batch_end(jcr, jcr->db_batch, NULL)) {
774 Jmsg1(jcr, M_FATAL, 0, "Batch end %s\n", jcr->db_batch->errmsg);
777 if (job_canceled(jcr)) {
782 /* we have to lock tables */
783 if (!db_sql_query(jcr->db_batch, sql_batch_lock_path_query, NULL, NULL)) {
784 Jmsg1(jcr, M_FATAL, 0, "Lock Path table %s\n", jcr->db_batch->errmsg);
788 if (!db_sql_query(jcr->db_batch, sql_batch_fill_path_query, NULL, NULL)) {
789 Jmsg1(jcr, M_FATAL, 0, "Fill Path table %s\n",jcr->db_batch->errmsg);
790 db_sql_query(jcr->db_batch, sql_batch_unlock_tables_query, NULL, NULL);
794 if (!db_sql_query(jcr->db_batch, sql_batch_unlock_tables_query,NULL,NULL)) {
795 Jmsg1(jcr, M_FATAL, 0, "Unlock Path table %s\n", jcr->db_batch->errmsg);
799 /* we have to lock tables */
800 if (!db_sql_query(jcr->db_batch,sql_batch_lock_filename_query,NULL, NULL)) {
801 Jmsg1(jcr, M_FATAL, 0, "Lock Filename table %s\n", jcr->db_batch->errmsg);
805 if (!db_sql_query(jcr->db_batch,sql_batch_fill_filename_query, NULL,NULL)) {
806 Jmsg1(jcr,M_FATAL,0,"Fill Filename table %s\n",jcr->db_batch->errmsg);
807 db_sql_query(jcr->db_batch, sql_batch_unlock_tables_query, NULL, NULL);
811 if (!db_sql_query(jcr->db_batch, sql_batch_unlock_tables_query,NULL,NULL)) {
812 Jmsg1(jcr, M_FATAL, 0, "Unlock Filename table %s\n", jcr->db_batch->errmsg);
816 if (!db_sql_query(jcr->db_batch,
817 "INSERT INTO File (FileIndex, JobId, PathId, FilenameId, LStat, MD5)"
818 "SELECT batch.FileIndex, batch.JobId, Path.PathId, "
819 "Filename.FilenameId,batch.LStat, batch.MD5 "
821 "JOIN Path ON (batch.Path = Path.Path) "
822 "JOIN Filename ON (batch.Name = Filename.Name)",
825 Jmsg1(jcr, M_FATAL, 0, "Fill File table %s\n", jcr->db_batch->errmsg);
829 db_sql_query(jcr->db_batch, "DROP TABLE batch", NULL,NULL);
831 jcr->JobStatus = JobStatus; /* reset entry status */
836 * Create File record in B_DB
838 * In order to reduce database size, we store the File attributes,
839 * the FileName, and the Path separately. In principle, there
840 * is a single FileName record and a single Path record, no matter
841 * how many times it occurs. This is this subroutine, we separate
842 * the file and the path and fill temporary tables with this three records.
844 bool db_create_file_attributes_record(JCR *jcr, B_DB *mdb, ATTR_DBR *ar)
846 Dmsg1(dbglevel, "Fname=%s\n", ar->fname);
847 Dmsg0(dbglevel, "put_file_into_catalog\n");
849 /* Open the dedicated connexion */
850 if (!jcr->batch_started) {
852 if (!db_open_batch_connexion(jcr, mdb)) {
855 if (!sql_batch_start(jcr, jcr->db_batch)) {
857 "Can't start batch mode: ERR=%s", db_strerror(jcr->db_batch));
858 Jmsg1(jcr, M_FATAL, 0, "%s", mdb->errmsg);
861 jcr->batch_started = true;
863 B_DB *bdb = jcr->db_batch;
866 * Make sure we have an acceptable attributes record.
868 if (!(ar->Stream == STREAM_UNIX_ATTRIBUTES ||
869 ar->Stream == STREAM_UNIX_ATTRIBUTES_EX)) {
870 Mmsg1(&mdb->errmsg, _("Attempt to put non-attributes into catalog. Stream=%d\n"),
872 Jmsg(jcr, M_FATAL, 0, "%s", mdb->errmsg);
876 split_path_and_file(jcr, bdb, ar->fname);
880 * if (bdb->changes > 100000) {
881 * db_write_batch_file_records(jcr);
883 * sql_batch_start(jcr, bdb);
887 return sql_batch_insert(jcr, bdb, ar);
890 #else /* ! HAVE_BATCH_FILE_INSERT */
893 * Create File record in B_DB
895 * In order to reduce database size, we store the File attributes,
896 * the FileName, and the Path separately. In principle, there
897 * is a single FileName record and a single Path record, no matter
898 * how many times it occurs. This is this subroutine, we separate
899 * the file and the path and create three database records.
901 bool db_create_file_attributes_record(JCR *jcr, B_DB *mdb, ATTR_DBR *ar)
904 Dmsg1(dbglevel, "Fname=%s\n", ar->fname);
905 Dmsg0(dbglevel, "put_file_into_catalog\n");
907 * Make sure we have an acceptable attributes record.
909 if (!(ar->Stream == STREAM_UNIX_ATTRIBUTES ||
910 ar->Stream == STREAM_UNIX_ATTRIBUTES_EX)) {
911 Mmsg1(&mdb->errmsg, _("Attempt to put non-attributes into catalog. Stream=%d\n"),
913 Jmsg(jcr, M_ERROR, 0, "%s", mdb->errmsg);
918 split_path_and_file(jcr, mdb, ar->fname);
920 if (!db_create_filename_record(jcr, mdb, ar)) {
923 Dmsg1(dbglevel, "db_create_filename_record: %s\n", mdb->esc_name);
926 if (!db_create_path_record(jcr, mdb, ar)) {
929 Dmsg1(dbglevel, "db_create_path_record: %s\n", mdb->esc_name);
931 /* Now create master File record */
932 if (!db_create_file_record(jcr, mdb, ar)) {
935 Dmsg0(dbglevel, "db_create_file_record OK\n");
937 Dmsg3(dbglevel, "CreateAttributes Path=%s File=%s FilenameId=%d\n", mdb->path, mdb->fname, ar->FilenameId);
948 * This is the master File entry containing the attributes.
949 * The filename and path records have already been created.
951 static int db_create_file_record(JCR *jcr, B_DB *mdb, ATTR_DBR *ar)
954 static const char *no_digest = "0";
959 ASSERT(ar->FilenameId);
961 if (ar->Digest == NULL || ar->Digest[0] == 0) {
969 "INSERT INTO File (FileIndex,JobId,PathId,FilenameId,"
970 "LStat,MD5) VALUES (%u,%u,%u,%u,'%s','%s')",
971 ar->FileIndex, ar->JobId, ar->PathId, ar->FilenameId,
974 if (!INSERT_DB(jcr, mdb, mdb->cmd)) {
975 Mmsg2(&mdb->errmsg, _("Create db File record %s failed. ERR=%s"),
976 mdb->cmd, sql_strerror(mdb));
977 Jmsg(jcr, M_FATAL, 0, "%s", mdb->errmsg);
981 ar->FileId = sql_insert_id(mdb, NT_("File"));
987 /* Create a Unique record for the Path -- no duplicates */
988 static int db_create_path_record(JCR *jcr, B_DB *mdb, ATTR_DBR *ar)
993 mdb->esc_name = check_pool_memory_size(mdb->esc_name, 2*mdb->pnl+2);
994 db_escape_string(jcr, mdb, mdb->esc_name, mdb->path, mdb->pnl);
996 if (mdb->cached_path_id != 0 && mdb->cached_path_len == mdb->pnl &&
997 strcmp(mdb->cached_path, mdb->path) == 0) {
998 ar->PathId = mdb->cached_path_id;
1002 Mmsg(mdb->cmd, "SELECT PathId FROM Path WHERE Path='%s'", mdb->esc_name);
1004 if (QUERY_DB(jcr, mdb, mdb->cmd)) {
1005 mdb->num_rows = sql_num_rows(mdb);
1006 if (mdb->num_rows > 1) {
1008 Mmsg2(&mdb->errmsg, _("More than one Path!: %s for path: %s\n"),
1009 edit_uint64(mdb->num_rows, ed1), mdb->path);
1010 Jmsg(jcr, M_WARNING, 0, "%s", mdb->errmsg);
1012 /* Even if there are multiple paths, take the first one */
1013 if (mdb->num_rows >= 1) {
1014 if ((row = sql_fetch_row(mdb)) == NULL) {
1015 Mmsg1(&mdb->errmsg, _("error fetching row: %s\n"), sql_strerror(mdb));
1016 Jmsg(jcr, M_ERROR, 0, "%s", mdb->errmsg);
1017 sql_free_result(mdb);
1022 ar->PathId = str_to_int64(row[0]);
1023 sql_free_result(mdb);
1025 if (ar->PathId != mdb->cached_path_id) {
1026 mdb->cached_path_id = ar->PathId;
1027 mdb->cached_path_len = mdb->pnl;
1028 pm_strcpy(mdb->cached_path, mdb->path);
1033 sql_free_result(mdb);
1036 Mmsg(mdb->cmd, "INSERT INTO Path (Path) VALUES ('%s')", mdb->esc_name);
1038 if (!INSERT_DB(jcr, mdb, mdb->cmd)) {
1039 Mmsg2(&mdb->errmsg, _("Create db Path record %s failed. ERR=%s\n"),
1040 mdb->cmd, sql_strerror(mdb));
1041 Jmsg(jcr, M_FATAL, 0, "%s", mdb->errmsg);
1045 ar->PathId = sql_insert_id(mdb, NT_("Path"));
1050 if (stat && ar->PathId != mdb->cached_path_id) {
1051 mdb->cached_path_id = ar->PathId;
1052 mdb->cached_path_len = mdb->pnl;
1053 pm_strcpy(mdb->cached_path, mdb->path);
1058 /* Create a Unique record for the filename -- no duplicates */
1059 static int db_create_filename_record(JCR *jcr, B_DB *mdb, ATTR_DBR *ar)
1063 mdb->esc_name = check_pool_memory_size(mdb->esc_name, 2*mdb->fnl+2);
1064 db_escape_string(jcr, mdb, mdb->esc_name, mdb->fname, mdb->fnl);
1066 Mmsg(mdb->cmd, "SELECT FilenameId FROM Filename WHERE Name='%s'", mdb->esc_name);
1068 if (QUERY_DB(jcr, mdb, mdb->cmd)) {
1069 mdb->num_rows = sql_num_rows(mdb);
1070 if (mdb->num_rows > 1) {
1072 Mmsg2(&mdb->errmsg, _("More than one Filename! %s for file: %s\n"),
1073 edit_uint64(mdb->num_rows, ed1), mdb->fname);
1074 Jmsg(jcr, M_WARNING, 0, "%s", mdb->errmsg);
1076 if (mdb->num_rows >= 1) {
1077 if ((row = sql_fetch_row(mdb)) == NULL) {
1078 Mmsg2(&mdb->errmsg, _("Error fetching row for file=%s: ERR=%s\n"),
1079 mdb->fname, sql_strerror(mdb));
1080 Jmsg(jcr, M_ERROR, 0, "%s", mdb->errmsg);
1083 ar->FilenameId = str_to_int64(row[0]);
1085 sql_free_result(mdb);
1086 return ar->FilenameId > 0;
1088 sql_free_result(mdb);
1091 Mmsg(mdb->cmd, "INSERT INTO Filename (Name) VALUES ('%s')", mdb->esc_name);
1093 if (!INSERT_DB(jcr, mdb, mdb->cmd)) {
1094 Mmsg2(&mdb->errmsg, _("Create db Filename record %s failed. ERR=%s\n"),
1095 mdb->cmd, sql_strerror(mdb));
1096 Jmsg(jcr, M_FATAL, 0, "%s", mdb->errmsg);
1099 ar->FilenameId = sql_insert_id(mdb, NT_("Filename"));
1101 return ar->FilenameId > 0;
1104 bool db_write_batch_file_records(JCR *jcr)
1109 #endif /* ! HAVE_BATCH_FILE_INSERT */
1111 #endif /* HAVE_SQLITE3 || HAVE_MYSQL || HAVE_SQLITE || HAVE_POSTGRESQL || HAVE_DBI */