Example #1
0
static void jcr_timeout_check(watchdog_t *self)
{
    JCR *jcr;
    BSOCK *bs;
    time_t timer_start;

    Dmsg0(dbglvl, "Start JCR timeout checks\n");

    /* Walk through all JCRs checking if any one is
     * blocked for more than specified max time.
     */
    foreach_jcr(jcr) {
        Dmsg2(dbglvl, "jcr_timeout_check JobId=%u jcr=0x%x\n", jcr->JobId, jcr);
        if (jcr->JobId == 0) {
            continue;
        }
        bs = jcr->store_bsock;
        if (bs) {
            timer_start = bs->timer_start;
            if (timer_start && (watchdog_time - timer_start) > bs->timeout) {
                bs->timer_start = 0;      /* turn off timer */
                bs->set_timed_out();
                Qmsg(jcr, M_ERROR, 0, _(
                         "Watchdog sending kill after %d secs to thread stalled reading Storage daemon.\n"),
                     watchdog_time - timer_start);
                jcr->my_thread_send_signal(TIMEOUT_SIGNAL);
            }
        }
        bs = jcr->file_bsock;
        if (bs) {
            timer_start = bs->timer_start;
            if (timer_start && (watchdog_time - timer_start) > bs->timeout) {
                bs->timer_start = 0;      /* turn off timer */
                bs->set_timed_out();
                Qmsg(jcr, M_ERROR, 0, _(
                         "Watchdog sending kill after %d secs to thread stalled reading File daemon.\n"),
                     watchdog_time - timer_start);
                jcr->my_thread_send_signal(TIMEOUT_SIGNAL);
            }
        }
        bs = jcr->dir_bsock;
        if (bs) {
            timer_start = bs->timer_start;
            if (timer_start && (watchdog_time - timer_start) > bs->timeout) {
                bs->timer_start = 0;      /* turn off timer */
                bs->set_timed_out();
                Qmsg(jcr, M_ERROR, 0, _(
                         "Watchdog sending kill after %d secs to thread stalled reading Director.\n"),
                     watchdog_time - timer_start);
                jcr->my_thread_send_signal(TIMEOUT_SIGNAL);
            }
        }
    }
    endeach_jcr(jcr);

    Dmsg0(dbglvl, "Finished JCR timeout checks\n");
}