X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=bacula%2Fsrc%2Fdird%2Fua_output.c;h=55c308966a248eb8b62d1ced01e628b5b7e7eb65;hb=f1810901d8f179b90b31964664e73ae5f983d513;hp=e6d77d67eb3384075e026380d6dd80278df27085;hpb=cd81995314972c78e359e777cb70bfd4d927e5a0;p=bacula%2Fbacula diff --git a/bacula/src/dird/ua_output.c b/bacula/src/dird/ua_output.c index e6d77d67eb..55c308966a 100644 --- a/bacula/src/dird/ua_output.c +++ b/bacula/src/dird/ua_output.c @@ -1,14 +1,14 @@ /* Bacula® - The Network Backup Solution - Copyright (C) 2000-2007 Free Software Foundation Europe e.V. + Copyright (C) 2000-2009 Free Software Foundation Europe e.V. The main author of Bacula is Kern Sibbald, with contributions from many others, a complete list can be found in the file AUTHORS. This program is Free Software; you can redistribute it and/or modify it under the terms of version two of the GNU General Public - License as published by the Free Software Foundation plus additions - that are listed in the file LICENSE. + License as published by the Free Software Foundation and included + in the file LICENSE. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -20,7 +20,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - Bacula® is a registered trademark of John Walker. + Bacula® is a registered trademark of Kern Sibbald. The licensor of Bacula is the Free Software Foundation Europe (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich, Switzerland, email:ftf@fsfeurope.org. @@ -41,10 +41,6 @@ /* Imported subroutines */ /* Imported variables */ -extern int r_first; -extern int r_last; -extern RES_TABLE resources[]; -extern RES **res_head; /* Imported functions */ @@ -70,7 +66,7 @@ int autodisplay_cmd(UAContext *ua, const char *cmd) ua->auto_display_messages = false; break; default: - bsendmsg(ua, _("ON or OFF keyword missing.\n")); + ua->error_msg(_("ON or OFF keyword missing.\n")); break; } return 1; @@ -94,13 +90,35 @@ int gui_cmd(UAContext *ua, const char *cmd) ua->jcr->gui = ua->gui = false; break; default: - bsendmsg(ua, _("ON or OFF keyword missing.\n")); + ua->error_msg(_("ON or OFF keyword missing.\n")); break; } return 1; } - +/* + * Enter with Resources locked + */ +static void show_disabled_jobs(UAContext *ua) +{ + JOB *job; + bool first = true; + foreach_res(job, R_JOB) { + if (!acl_access_ok(ua, Job_ACL, job->name())) { + continue; + } + if (!job->enabled) { + if (first) { + first = false; + ua->send_msg(_("Disabled Jobs:\n")); + } + ua->send_msg(" %s\n", job->name()); + } + } + if (first) { + ua->send_msg(_("No disabled Jobs.\n")); + } +} struct showstruct {const char *res_name; int type;}; static struct showstruct reses[] = { @@ -127,6 +145,7 @@ static struct showstruct reses[] = { * show all * show e.g. show directors * show = e.g. show director=HeadMan + * show disabled shows disabled jobs * */ int show_cmd(UAContext *ua, const char *cmd) @@ -141,6 +160,10 @@ int show_cmd(UAContext *ua, const char *cmd) LockRes(); for (i=1; iargc; i++) { + if (strcasecmp(ua->argk[i], _("disabled")) == 0) { + show_disabled_jobs(ua); + goto bail_out; + } type = 0; res_name = ua->argk[i]; if (!ua->argv[i]) { /* was a name given? */ @@ -182,16 +205,16 @@ int show_cmd(UAContext *ua, const char *cmd) } break; case -2: - bsendmsg(ua, _("Keywords for the show command are:\n")); + ua->send_msg(_("Keywords for the show command are:\n")); for (j=0; reses[j].res_name; j++) { - bsendmsg(ua, "%s\n", _(reses[j].res_name)); + ua->error_msg("%s\n", _(reses[j].res_name)); } goto bail_out; case -3: - bsendmsg(ua, _("%s resource %s not found.\n"), res_name, ua->argv[i]); + ua->error_msg(_("%s resource %s not found.\n"), res_name, ua->argv[i]); goto bail_out; case 0: - bsendmsg(ua, _("Resource %s not found\n"), res_name); + ua->error_msg(_("Resource %s not found\n"), res_name); goto bail_out; default: dump_resource(recurse?type:-type, res, bsendmsg, ua); @@ -216,6 +239,8 @@ bail_out: * list jobname=name - same as above * list jobmedia jobid= * list jobmedia job=name + * list joblog jobid= + * list joblog job=name * list files jobid= - list files saved for job nn * list files job=name * list pools - list pool records @@ -225,6 +250,7 @@ bail_out: * list clients - list clients * list nextvol job=xx - list the next vol to be used by job * list nextvolume job=xx - same as above. + * list copies jobid=x,y,z * */ @@ -259,7 +285,7 @@ static int do_list_cmd(UAContext *ua, const char *cmd, e_list_type llist) Dmsg1(20, "list: %s\n", cmd); if (!ua->db) { - bsendmsg(ua, _("Hey! DB is NULL\n")); + ua->error_msg(_("Hey! DB is NULL\n")); } /* Scan arguments looking for things to do */ @@ -321,7 +347,7 @@ static int do_list_cmd(UAContext *ua, const char *cmd, e_list_type llist) /* List JOBMEDIA */ } else if (strcasecmp(ua->argk[i], NT_("jobmedia")) == 0) { - int done = FALSE; + bool done = false; for (j=i+1; jargc; j++) { if (strcasecmp(ua->argk[j], NT_("ujobid")) == 0 && ua->argv[j]) { bstrncpy(jr.Job, ua->argv[j], MAX_NAME_LENGTH); @@ -334,13 +360,36 @@ static int do_list_cmd(UAContext *ua, const char *cmd, e_list_type llist) continue; } db_list_jobmedia_records(ua->jcr, ua->db, jobid, prtit, ua, llist); - done = TRUE; + done = true; } if (!done) { /* List for all jobs (jobid=0) */ db_list_jobmedia_records(ua->jcr, ua->db, 0, prtit, ua, llist); } + /* List JOBLOG */ + } else if (strcasecmp(ua->argk[i], NT_("joblog")) == 0) { + bool done = false; + for (j=i+1; jargc; j++) { + if (strcasecmp(ua->argk[j], NT_("ujobid")) == 0 && ua->argv[j]) { + bstrncpy(jr.Job, ua->argv[j], MAX_NAME_LENGTH); + jr.JobId = 0; + db_get_job_record(ua->jcr, ua->db, &jr); + jobid = jr.JobId; + } else if (strcasecmp(ua->argk[j], NT_("jobid")) == 0 && ua->argv[j]) { + jobid = str_to_int64(ua->argv[j]); + } else { + continue; + } + db_list_joblog_records(ua->jcr, ua->db, jobid, prtit, ua, llist); + done = true; + } + if (!done) { + /* List for all jobs (jobid=0) */ + db_list_joblog_records(ua->jcr, ua->db, 0, prtit, ua, llist); + } + + /* List POOLS */ } else if (strcasecmp(ua->argk[i], NT_("pool")) == 0 || strcasecmp(ua->argk[i], NT_("pools")) == 0) { @@ -373,7 +422,7 @@ static int do_list_cmd(UAContext *ua, const char *cmd, e_list_type llist) } VolumeName = get_pool_memory(PM_FNAME); n = db_get_job_volume_names(ua->jcr, ua->db, jobid, &VolumeName); - bsendmsg(ua, _("Jobid %d used %d Volume(s): %s\n"), jobid, n, VolumeName); + ua->send_msg(_("Jobid %d used %d Volume(s): %s\n"), jobid, n, VolumeName); free_pool_memory(VolumeName); done = true; } @@ -391,7 +440,7 @@ static int do_list_cmd(UAContext *ua, const char *cmd, e_list_type llist) for (i=1; iargc; i++) { if (strcasecmp(ua->argk[i], NT_("pool")) == 0) { if (!get_pool_dbr(ua, &pr)) { - bsendmsg(ua, _("No Pool specified.\n")); + ua->error_msg(_("No Pool specified.\n")); return 1; } mr.PoolId = pr.PoolId; @@ -402,7 +451,7 @@ static int do_list_cmd(UAContext *ua, const char *cmd, e_list_type llist) /* List Volumes in all pools */ if (!db_get_pool_ids(ua->jcr, ua->db, &num_pools, &ids)) { - bsendmsg(ua, _("Error obtaining pool ids. ERR=%s\n"), + ua->error_msg(_("Error obtaining pool ids. ERR=%s\n"), db_strerror(ua->db)); return 1; } @@ -412,7 +461,7 @@ static int do_list_cmd(UAContext *ua, const char *cmd, e_list_type llist) for (i=0; i < num_pools; i++) { pr.PoolId = ids[i]; if (db_get_pool_record(ua->jcr, ua->db, &pr)) { - bsendmsg(ua, _("Pool: %s\n"), pr.Name); + ua->send_msg(_("Pool: %s\n"), pr.Name); } mr.PoolId = ids[i]; db_list_media_records(ua->jcr, ua->db, &mr, prtit, ua, llist); @@ -428,16 +477,29 @@ static int do_list_cmd(UAContext *ua, const char *cmd, e_list_type llist) if (j >= 0) { n = atoi(ua->argv[j]); if ((n < 0) || (n > 50)) { - bsendmsg(ua, _("Ignoring invalid value for days. Max is 50.\n")); + ua->warning_msg(_("Ignoring invalid value for days. Max is 50.\n")); n = 1; } } list_nextvol(ua, n); + } else if (strcasecmp(ua->argk[i], NT_("copies")) == 0) { + char *jobids = NULL; + uint32_t limit=0; + for (j=i+1; jargc; j++) { + if (strcasecmp(ua->argk[j], NT_("jobid")) == 0 && ua->argv[j]) { + if (is_a_number_list(ua->argv[j])) { + jobids = ua->argv[j]; + } + } else if (strcasecmp(ua->argk[j], NT_("limit")) == 0 && ua->argv[j]) { + limit = atoi(ua->argv[j]); + } + } + db_list_copies_records(ua->jcr,ua->db,limit,jobids,prtit,ua,llist); } else if (strcasecmp(ua->argk[i], NT_("limit")) == 0 || strcasecmp(ua->argk[i], NT_("days")) == 0) { /* Ignore it */ } else { - bsendmsg(ua, _("Unknown list keyword: %s\n"), NPRT(ua->argk[i])); + ua->error_msg(_("Unknown list keyword: %s\n"), NPRT(ua->argk[i])); } } return 1; @@ -446,10 +508,10 @@ static int do_list_cmd(UAContext *ua, const char *cmd, e_list_type llist) static bool list_nextvol(UAContext *ua, int ndays) { JOB *job; - JCR *jcr = ua->jcr; + JCR *jcr; USTORE store; RUN *run; - time_t runtime; + utime_t runtime; bool found = false; MEDIA_DBR mr; POOL_DBR pr; @@ -463,40 +525,49 @@ static bool list_nextvol(UAContext *ua, int ndays) } else { job = (JOB *)GetResWithName(R_JOB, ua->argv[i]); if (!job) { - Jmsg(jcr, M_ERROR, 0, _("%s is not a job name.\n"), ua->argv[i]); + Jmsg(ua->jcr, M_ERROR, 0, _("%s is not a job name.\n"), ua->argv[i]); if ((job = select_job_resource(ua)) == NULL) { return false; } } } + + jcr = new_jcr(sizeof(JCR), dird_free_jcr); for (run=NULL; (run = find_next_run(run, job, runtime, ndays)); ) { if (!complete_jcr_for_job(jcr, job, run->pool)) { - return false; + found = false; + goto get_out; + } + if (!jcr->jr.PoolId) { + ua->error_msg(_("Could not find Pool for Job %s\n"), job->name()); + continue; } memset(&pr, 0, sizeof(pr)); pr.PoolId = jcr->jr.PoolId; - if (!db_get_pool_record(ua->jcr, ua->db, &pr)) { + if (!db_get_pool_record(jcr, jcr->db, &pr)) { bstrncpy(pr.Name, "*UnknownPool*", sizeof(pr.Name)); } mr.PoolId = jcr->jr.PoolId; get_job_storage(&store, job, run); mr.StorageId = store.store->StorageId; + /* no need to set ScratchPoolId, since we use fnv_no_create_vol */ if (!find_next_volume_for_append(jcr, &mr, 1, fnv_no_create_vol, fnv_prune)) { - bsendmsg(ua, _("Could not find next Volume for Job %s (%s, %s).\n"), - job->hdr.name, pr.Name, level_to_str(run->level)); + ua->error_msg(_("Could not find next Volume for Job %s (Pool=%s, Level=%s).\n"), + job->name(), pr.Name, level_to_str(run->level)); } else { - bsendmsg(ua, - _("The next Volume to be used by Job \"%s\" (%s, %s) will be %s\n"), - job->hdr.name, pr.Name, level_to_str(run->level), mr.VolumeName); + ua->send_msg( + _("The next Volume to be used by Job \"%s\" (Pool=%s, Level=%s) will be %s\n"), + job->name(), pr.Name, level_to_str(run->level), mr.VolumeName); found = true; } - if (jcr->db && jcr->db != ua->db) { - db_close_database(jcr, jcr->db); - jcr->db = NULL; - } } + +get_out: + db_close_database(jcr, jcr->db); + jcr->db = NULL; + free_jcr(jcr); if (!found) { - bsendmsg(ua, _("Could not find next Volume for Job %s.\n"), + ua->error_msg(_("Could not find next Volume for Job %s.\n"), job->hdr.name); return false; } @@ -508,7 +579,7 @@ static bool list_nextvol(UAContext *ua, int ndays) * For a given job, we examine all his run records * to see if it is scheduled today or tomorrow. */ -RUN *find_next_run(RUN *run, JOB *job, time_t &runtime, int ndays) +RUN *find_next_run(RUN *run, JOB *job, utime_t &runtime, int ndays) { time_t now, future, endtime; SCHED *sched; @@ -553,12 +624,12 @@ RUN *find_next_run(RUN *run, JOB *job, time_t &runtime, int ndays) bit_is_set(woy, run->woy); #ifdef xxx - Dmsg2(000, "day=%d is_scheduled=%d\n", day, is_scheduled); - Dmsg1(000, "bit_set_mday=%d\n", bit_is_set(mday, run->mday)); - Dmsg1(000, "bit_set_wday=%d\n", bit_is_set(wday, run->wday)); - Dmsg1(000, "bit_set_month=%d\n", bit_is_set(month, run->month)); - Dmsg1(000, "bit_set_wom=%d\n", bit_is_set(wom, run->wom)); - Dmsg1(000, "bit_set_woy=%d\n", bit_is_set(woy, run->woy)); + Pmsg2(000, "day=%d is_scheduled=%d\n", day, is_scheduled); + Pmsg1(000, "bit_set_mday=%d\n", bit_is_set(mday, run->mday)); + Pmsg1(000, "bit_set_wday=%d\n", bit_is_set(wday, run->wday)); + Pmsg1(000, "bit_set_month=%d\n", bit_is_set(month, run->month)); + Pmsg1(000, "bit_set_wom=%d\n", bit_is_set(wom, run->wom)); + Pmsg1(000, "bit_set_woy=%d\n", bit_is_set(woy, run->woy)); #endif if (is_scheduled) { /* Jobs scheduled on that day */ @@ -572,7 +643,7 @@ RUN *find_next_run(RUN *run, JOB *job, time_t &runtime, int ndays) } } bstrncat(buf, "\n", sizeof(buf)); - Dmsg1(000, "%s", buf); + Pmsg1(000, "%s", buf); #endif /* find time (time_t) job is to be run */ (void)localtime_r(&future, &runtm); @@ -582,7 +653,7 @@ RUN *find_next_run(RUN *run, JOB *job, time_t &runtime, int ndays) runtm.tm_min = run->minute; runtm.tm_sec = 0; runtime = mktime(&runtm); - Dmsg2(200, "now=%d runtime=%d\n", now, runtime); + Dmsg2(200, "now=%d runtime=%lld\n", now, runtime); if ((runtime > now) && (runtime < endtime)) { Dmsg2(200, "Found it level=%d %c\n", run->level, run->level); return run; /* found it, return run resource */ @@ -610,10 +681,14 @@ bool complete_jcr_for_job(JCR *jcr, JOB *job, POOL *pool) jcr->pool = pool; /* override */ } if (jcr->db) { + Dmsg0(100, "complete_jcr close db\n"); db_close_database(jcr, jcr->db); jcr->db = NULL; } - jcr->db = jcr->db=db_init_database(jcr, jcr->catalog->db_name, jcr->catalog->db_user, + + Dmsg0(100, "complete_jcr open db\n"); + jcr->db = jcr->db=db_init(jcr, jcr->catalog->db_driver, jcr->catalog->db_name, + jcr->catalog->db_user, jcr->catalog->db_password, jcr->catalog->db_address, jcr->catalog->db_port, jcr->catalog->db_socket, jcr->catalog->mult_db_connections); @@ -666,7 +741,7 @@ void do_messages(UAContext *ua, const char *cmd) ua->UA_sock->msg = check_pool_memory_size(ua->UA_sock->msg, mlen+1); strcpy(ua->UA_sock->msg, msg); ua->UA_sock->msglen = mlen; - bnet_send(ua->UA_sock); + ua->UA_sock->send(); do_truncate = true; } if (do_truncate) { @@ -692,7 +767,7 @@ int messagescmd(UAContext *ua, const char *cmd) if (console_msg_pending) { do_messages(ua, cmd); } else { - bnet_fsend(ua->UA_sock, _("You have no messages.\n")); + ua->UA_sock->fsend(_("You have no messages.\n")); } return 1; } @@ -704,7 +779,7 @@ void prtit(void *ctx, const char *msg) { UAContext *ua = (UAContext *)ctx; - bnet_fsend(ua->UA_sock, "%s", msg); + ua->UA_sock->fsend("%s", msg); } /* @@ -714,21 +789,26 @@ void prtit(void *ctx, const char *msg) * agent, so we are being called from Bacula core. In * that case direct the messages to the Job. */ +#ifdef HAVE_VA_COPY void bmsg(UAContext *ua, const char *fmt, va_list arg_ptr) { BSOCK *bs = ua->UA_sock; int maxlen, len; - POOLMEM *msg; + POOLMEM *msg = NULL; + va_list ap; if (bs) { msg = bs->msg; - } else { + } + if (!msg) { msg = get_pool_memory(PM_EMSG); } again: maxlen = sizeof_pool_memory(msg) - 1; - len = bvsnprintf(msg, maxlen, fmt, arg_ptr); + va_copy(ap, arg_ptr); + len = bvsnprintf(msg, maxlen, fmt, ap); + va_end(ap); if (len < 0 || len >= maxlen) { msg = realloc_pool_memory(msg, maxlen + maxlen/2); goto again; @@ -737,13 +817,51 @@ again: if (bs) { bs->msg = msg; bs->msglen = len; - bnet_send(bs); + bs->send(); } else { /* No UA, send to Job */ Jmsg(ua->jcr, M_INFO, 0, "%s", msg); free_pool_memory(msg); } } + +#else /* no va_copy() -- brain damaged version of variable arguments */ + +void bmsg(UAContext *ua, const char *fmt, va_list arg_ptr) +{ + BSOCK *bs = ua->UA_sock; + int maxlen, len; + POOLMEM *msg = NULL; + + if (bs) { + msg = bs->msg; + } + if (!msg) { + msg = get_memory(5000); + } + + maxlen = sizeof_pool_memory(msg) - 1; + if (maxlen < 4999) { + msg = realloc_pool_memory(msg, 5000); + maxlen = 4999; + } + len = bvsnprintf(msg, maxlen, fmt, arg_ptr); + if (len < 0 || len >= maxlen) { + pm_strcpy(msg, _("Message too long to display.\n")); + len = strlen(msg); + } + + if (bs) { + bs->msg = msg; + bs->msglen = len; + bs->send(); + } else { /* No UA, send to Job */ + Jmsg(ua->jcr, M_INFO, 0, "%s", msg); + free_pool_memory(msg); + } + +} +#endif void bsendmsg(void *ctx, const char *fmt, ...) { @@ -778,8 +896,9 @@ void UAContext::error_msg(const char *fmt, ...) { BSOCK *bs = UA_sock; va_list arg_ptr; - va_start(arg_ptr, fmt); + if (bs && api) bs->signal(BNET_ERROR_MSG); + va_start(arg_ptr, fmt); bmsg(this, fmt, arg_ptr); va_end(arg_ptr); } @@ -793,8 +912,9 @@ void UAContext::warning_msg(const char *fmt, ...) { BSOCK *bs = UA_sock; va_list arg_ptr; - va_start(arg_ptr, fmt); + if (bs && api) bs->signal(BNET_WARNING_MSG); + va_start(arg_ptr, fmt); bmsg(this, fmt, arg_ptr); va_end(arg_ptr); } @@ -807,8 +927,9 @@ void UAContext::info_msg(const char *fmt, ...) { BSOCK *bs = UA_sock; va_list arg_ptr; - va_start(arg_ptr, fmt); + if (bs && api) bs->signal(BNET_INFO_MSG); + va_start(arg_ptr, fmt); bmsg(this, fmt, arg_ptr); va_end(arg_ptr); }