From: Kern Sibbald Date: Sun, 1 Nov 2009 14:42:11 +0000 (+0100) Subject: Fix SD DCR race condition that causes seg faults X-Git-Tag: Release-5.0.0~281^2~13 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=6058e2a610de8622b259a6feed54f3af83e614d1;p=bacula%2Fbacula Fix SD DCR race condition that causes seg faults --- diff --git a/bacula/src/stored/acquire.c b/bacula/src/stored/acquire.c index 1458fb67c2..a63fcc0b16 100644 --- a/bacula/src/stored/acquire.c +++ b/bacula/src/stored/acquire.c @@ -30,7 +30,6 @@ * * Kern Sibbald, August MMII * - * Version $Id$ */ #include "bacula.h" /* pull in global headers */ @@ -38,6 +37,7 @@ /* Forward referenced functions */ static void attach_dcr_to_dev(DCR *dcr); +static void detach_dcr_from_dev(DCR *dcr); static void set_dcr_from_vol(DCR *dcr, VOL_LIST *vol); @@ -555,12 +555,6 @@ bool release_device(DCR *dcr) if (dcr->keep_dcr) { detach_dcr_from_dev(dcr); } else { - if (jcr->read_dcr == dcr) { - jcr->read_dcr = NULL; - } - if (jcr->dcr == dcr) { - jcr->dcr = NULL; - } free_dcr(dcr); } Dmsg2(100, "===== Device %s released by JobId=%u\n", dev->print_name(), @@ -596,10 +590,17 @@ bool clean_device(DCR *dcr) DCR *new_dcr(JCR *jcr, DCR *dcr, DEVICE *dev) { if (!dcr) { + int errstat; dcr = (DCR *)malloc(sizeof(DCR)); memset(dcr, 0, sizeof(DCR)); dcr->tid = pthread_self(); dcr->spool_fd = -1; + if ((errstat = pthread_mutex_init(&dcr->m_mutex, NULL)) != 0) { + berrno be; + dev->dev_errno = errstat; + Mmsg1(dev->errmsg, _("Unable to init mutex: ERR=%s\n"), be.bstrerror(errstat)); + Jmsg0(jcr, M_ERROR_TERM, 0, dev->errmsg); + } } dcr->jcr = jcr; /* point back to jcr */ /* Set device information, possibly change device */ @@ -659,18 +660,25 @@ static void remove_dcr_from_dcrs(DCR *dcr) static void attach_dcr_to_dev(DCR *dcr) { - DEVICE *dev = dcr->dev; - JCR *jcr = dcr->jcr; + DEVICE *dev; + JCR *jcr; + P(dcr->m_mutex); + dev = dcr->dev; + jcr = dcr->jcr; if (jcr) Dmsg1(500, "JobId=%u enter attach_dcr_to_dev\n", (uint32_t)jcr->JobId); if (!dcr->attached_to_dev && dev->initiated && jcr && jcr->get_JobType() != JT_SYSTEM) { dev->attached_dcrs->append(dcr); /* attach dcr to device */ dcr->attached_to_dev = true; Dmsg1(500, "JobId=%u attach_dcr_to_dev\n", (uint32_t)jcr->JobId); } + V(dcr->m_mutex); } -void detach_dcr_from_dev(DCR *dcr) +/* + * DCR is locked before calling this routine + */ +static void locked_detach_dcr_from_dev(DCR *dcr) { DEVICE *dev = dcr->dev; Dmsg0(500, "Enter detach_dcr_from_dev\n"); /* jcr is NULL in some cases */ @@ -680,10 +688,18 @@ void detach_dcr_from_dev(DCR *dcr) dev->dlock(); dcr->unreserve_device(); dcr->dev->attached_dcrs->remove(dcr); /* detach dcr from device */ - dcr->attached_to_dev = false; // remove_dcr_from_dcrs(dcr); /* remove dcr from jcr list */ dev->dunlock(); } + dcr->attached_to_dev = false; +} + + +static void detach_dcr_from_dev(DCR *dcr) +{ + P(dcr->m_mutex); + locked_detach_dcr_from_dev(dcr); + V(dcr->m_mutex); } /* @@ -692,9 +708,11 @@ void detach_dcr_from_dev(DCR *dcr) */ void free_dcr(DCR *dcr) { - JCR *jcr = dcr->jcr; + JCR *jcr; - detach_dcr_from_dev(dcr); + P(dcr->m_mutex); + jcr = dcr->jcr; + locked_detach_dcr_from_dev(dcr); if (dcr->block) { free_block(dcr->block); @@ -705,6 +723,11 @@ void free_dcr(DCR *dcr) if (jcr && jcr->dcr == dcr) { jcr->dcr = NULL; } + if (jcr && jcr->read_dcr == dcr) { + jcr->read_dcr = NULL; + } + V(dcr->m_mutex); + pthread_mutex_destroy(&dcr->m_mutex); free(dcr); } diff --git a/bacula/src/stored/bscan.c b/bacula/src/stored/bscan.c index 113915f572..55c1fe13f3 100644 --- a/bacula/src/stored/bscan.c +++ b/bacula/src/stored/bscan.c @@ -594,7 +594,7 @@ static bool record_cb(DCR *dcr, DEV_RECORD *rec) /* Create JobMedia record */ mjcr->read_dcr->VolLastIndex = dcr->VolLastIndex; create_jobmedia_record(db, mjcr); - detach_dcr_from_dev(mjcr->read_dcr); + free_dcr(mjcr->read_dcr); free_jcr(mjcr); break; diff --git a/bacula/src/stored/dev.h b/bacula/src/stored/dev.h index b2c6793456..8a5a6f1344 100644 --- a/bacula/src/stored/dev.h +++ b/bacula/src/stored/dev.h @@ -483,6 +483,11 @@ inline const char *DEVICE::print_name() const { return prt_name; } * the device. Items in this record are "local" to the Job and * do not affect other Jobs. Note, a job can have multiple * DCRs open, each pointing to a different device. + * Normally, there is only one JCR thread per DCR. However, the + * big and important exception to this is when a Job is being + * canceled. At that time, there may be two threads using the + * same DCR. Consequently, when creating/attaching/detaching + * and freeing the DCR we must lock it (m_mutex). */ class DCR { private: @@ -493,6 +498,7 @@ private: public: dlink dev_link; /* link to attach to dev */ JCR *jcr; /* pointer to JCR */ + pthread_mutex_t m_mutex; /* access control */ DEVICE * volatile dev; /* pointer to device */ DEVRES *device; /* pointer to device resource */ DEV_BLOCK *block; /* pointer to block */ diff --git a/bacula/src/stored/protos.h b/bacula/src/stored/protos.h index fd51df7f72..862a5523a5 100644 --- a/bacula/src/stored/protos.h +++ b/bacula/src/stored/protos.h @@ -41,7 +41,6 @@ bool release_device(DCR *dcr); bool clean_device(DCR *dcr); DCR *new_dcr(JCR *jcr, DCR *dcr, DEVICE *dev); void free_dcr(DCR *dcr); -void detach_dcr_from_dev(DCR *dcr); /* From askdir.c */ enum get_vol_info_rw {