X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=bacula%2Fsrc%2Fdird%2Fua_status.c;h=2af39ad5afa62aaadeec19f7a3ecff2d1ce40008;hb=c38dc738eeca4a6b0a8ecdeee4829efab6e99416;hp=0fd354c30816723609de9dde1b3dd534fc78e77e;hpb=a02843effb4c0d62ab7ee24a92b0d3981423dccc;p=bacula%2Fbacula diff --git a/bacula/src/dird/ua_status.c b/bacula/src/dird/ua_status.c index 0fd354c308..2af39ad5af 100644 --- a/bacula/src/dird/ua_status.c +++ b/bacula/src/dird/ua_status.c @@ -1,26 +1,26 @@ /* Bacula® - The Network Backup Solution - Copyright (C) 2001-2007 Free Software Foundation Europe e.V. + Copyright (C) 2001-2008 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. + modify it under the terms of version three of the GNU Affero General Public + 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 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the GNU Affero General Public License along with this program; if not, write to the Free Software 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. @@ -38,15 +38,17 @@ #include "bacula.h" #include "dird.h" -extern void *start_sbrk; +extern void *start_heap; static void list_scheduled_jobs(UAContext *ua); static void list_running_jobs(UAContext *ua); static void list_terminated_jobs(UAContext *ua); -static void do_storage_status(UAContext *ua, STORE *store); -static void do_client_status(UAContext *ua, CLIENT *client); +static void do_storage_status(UAContext *ua, STORE *store, char *cmd); +static void do_client_status(UAContext *ua, CLIENT *client, char *cmd); static void do_director_status(UAContext *ua); static void do_all_status(UAContext *ua); +void status_slots(UAContext *ua, STORE *store); +void status_content(UAContext *ua, STORE *store); static char OKqstatus[] = "1000 OK .status\n"; static char DotStatusJob[] = "JobId=%s JobStatus=%c JobErrors=%d\n"; @@ -57,34 +59,60 @@ static char DotStatusJob[] = "JobId=%s JobStatus=%c JobErrors=%d\n"; bool dot_status_cmd(UAContext *ua, const char *cmd) { + STORE *store; + CLIENT *client; JCR* njcr = NULL; s_last_job* job; char ed1[50]; - Dmsg1(20, "status:%s:\n", cmd); + Dmsg2(20, "status=\"%s\" argc=%d\n", cmd, ua->argc); - if ((ua->argc != 3) || (strcasecmp(ua->argk[1], "dir"))) { + if (ua->argc < 3) { ua->send_msg("1900 Bad .status command, missing arguments.\n"); return false; } - if (strcasecmp(ua->argk[2], "current") == 0) { - ua->send_msg(OKqstatus, ua->argk[2]); - foreach_jcr(njcr) { - if (njcr->JobId != 0 && acl_access_ok(ua, Job_ACL, njcr->job->name())) { - ua->send_msg(DotStatusJob, edit_int64(njcr->JobId, ed1), - njcr->JobStatus, njcr->JobErrors); + if (strcasecmp(ua->argk[1], "dir") == 0) { + if (strcasecmp(ua->argk[2], "current") == 0) { + ua->send_msg(OKqstatus, ua->argk[2]); + foreach_jcr(njcr) { + if (njcr->JobId != 0 && acl_access_ok(ua, Job_ACL, njcr->job->name())) { + ua->send_msg(DotStatusJob, edit_int64(njcr->JobId, ed1), + njcr->JobStatus, njcr->JobErrors); + } } - } - endeach_jcr(njcr); - } else if (strcasecmp(ua->argk[2], "last") == 0) { - ua->send_msg(OKqstatus, ua->argk[2]); - if ((last_jobs) && (last_jobs->size() > 0)) { - job = (s_last_job*)last_jobs->last(); - if (acl_access_ok(ua, Job_ACL, job->Job)) { - ua->send_msg(DotStatusJob, edit_int64(job->JobId, ed1), - job->JobStatus, job->Errors); + endeach_jcr(njcr); + } else if (strcasecmp(ua->argk[2], "last") == 0) { + ua->send_msg(OKqstatus, ua->argk[2]); + if ((last_jobs) && (last_jobs->size() > 0)) { + job = (s_last_job*)last_jobs->last(); + if (acl_access_ok(ua, Job_ACL, job->Job)) { + ua->send_msg(DotStatusJob, edit_int64(job->JobId, ed1), + job->JobStatus, job->Errors); + } } + } else if (strcasecmp(ua->argk[2], "header") == 0) { + list_dir_status_header(ua); + } else if (strcasecmp(ua->argk[2], "scheduled") == 0) { + list_scheduled_jobs(ua); + } else if (strcasecmp(ua->argk[2], "running") == 0) { + list_running_jobs(ua); + } else if (strcasecmp(ua->argk[2], "terminated") == 0) { + list_terminated_jobs(ua); + } else { + ua->send_msg("1900 Bad .status command, wrong argument.\n"); + return false; + } + } else if (strcasecmp(ua->argk[1], "client") == 0) { + client = get_client_resource(ua); + if (client) { + Dmsg2(200, "Client=%s arg=%s\n", client->name(), NPRT(ua->argk[2])); + do_client_status(ua, client, ua->argk[2]); + } + } else if (strcasecmp(ua->argk[1], "storage") == 0) { + store = get_storage_resource(ua, false /*no default*/); + if (store) { + do_storage_status(ua, store, ua->argk[2]); } } else { ua->send_msg("1900 Bad .status command, wrong argument.\n"); @@ -125,13 +153,17 @@ int status_cmd(UAContext *ua, const char *cmd) } else if (strcasecmp(ua->argk[i], NT_("client")) == 0) { client = get_client_resource(ua); if (client) { - do_client_status(ua, client); + do_client_status(ua, client, NULL); } return 1; } else { store = get_storage_resource(ua, false/*no default*/); if (store) { - do_storage_status(ua, store); + if (find_arg(ua, NT_("slots")) > 0) { + status_slots(ua, store); + } else { + do_storage_status(ua, store, NULL); + } } return 1; } @@ -157,13 +189,13 @@ int status_cmd(UAContext *ua, const char *cmd) case 1: store = select_storage_resource(ua); if (store) { - do_storage_status(ua, store); + do_storage_status(ua, store, NULL); } break; case 2: client = select_client_resource(ua); if (client) { - do_client_status(ua, client); + do_client_status(ua, client, NULL); } break; case 3: @@ -215,7 +247,7 @@ static void do_all_status(UAContext *ua) /* Call each unique Storage daemon */ for (j=0; jsend_msg(_("%s Version: %s (%s) %s %s %s\n"), my_name, VERSION, BDATE, HOST_OS, DISTNAME, DISTVER); bstrftime_nc(dt, sizeof(dt), daemon_start_time); - if (num_jobs_run == 1) { - ua->send_msg(_("Daemon started %s, 1 Job run since started.\n"), dt); - } - else { - ua->send_msg(_("Daemon started %s, %d Jobs run since started.\n"), - dt, num_jobs_run); - } - ua->send_msg(_(" Heap: sbrk=%s bytes=%s max_bytes=%s bufs=%s max_bufs=%s\n"), - edit_uint64_with_commas((uint64_t)sbrk(0)-(uint64_t)start_sbrk, b1), + ua->send_msg(_("Daemon started %s. Jobs: run=%d, running=%d\n"), dt, + num_jobs_run, job_count()); + ua->send_msg(_(" Heap: heap=%s smbytes=%s max_bytes=%s bufs=%s max_bufs=%s\n"), + edit_uint64_with_commas((char *)sbrk(0)-(char *)start_heap, b1), edit_uint64_with_commas(sm_bytes, b2), edit_uint64_with_commas(sm_max_bytes, b3), edit_uint64_with_commas(sm_buffers, b4), edit_uint64_with_commas(sm_max_buffers, b5)); + + /* TODO: use this function once for all daemons */ + if (debug_level > 0 && bplugin_list->size() > 0) { + int len; + Plugin *plugin; + POOL_MEM msg(PM_FNAME); + pm_strcpy(msg, " Plugin: "); + foreach_alist(plugin, bplugin_list) { + len = pm_strcat(msg, plugin->file); + if (len > 80) { + pm_strcat(msg, "\n "); + } else { + pm_strcat(msg, " "); + } + } + ua->send_msg("%s\n", msg.c_str()); + } } static void do_director_status(UAContext *ua) @@ -296,10 +340,10 @@ static void do_director_status(UAContext *ua) * List terminated jobs */ list_terminated_jobs(ua); - ua->send_msg(_("====\n")); + ua->send_msg("====\n"); } -static void do_storage_status(UAContext *ua, STORE *store) +static void do_storage_status(UAContext *ua, STORE *store, char *cmd) { BSOCK *sd; USTORE lstore; @@ -308,7 +352,7 @@ static void do_storage_status(UAContext *ua, STORE *store) pm_strcpy(lstore.store_source, _("unknown source")); set_wstorage(ua->jcr, &lstore); /* Try connecting for up to 15 seconds */ - ua->send_msg(_("Connecting to Storage daemon %s at %s:%d\n"), + if (!ua->api) ua->send_msg(_("Connecting to Storage daemon %s at %s:%d\n"), store->name(), store->address, store->SDport); if (!connect_to_storage_daemon(ua->jcr, 1, 15, 0)) { ua->send_msg(_("\nFailed to connect to Storage daemon %s.\n====\n"), @@ -321,17 +365,21 @@ static void do_storage_status(UAContext *ua, STORE *store) } Dmsg0(20, _("Connected to storage daemon\n")); sd = ua->jcr->store_bsock; - bnet_fsend(sd, "status"); - while (bnet_recv(sd) >= 0) { + if (cmd) { + sd->fsend(".status %s", cmd); + } else { + sd->fsend("status"); + } + while (sd->recv() >= 0) { ua->send_msg("%s", sd->msg); } - bnet_sig(sd, BNET_TERMINATE); - bnet_close(sd); + sd->signal( BNET_TERMINATE); + sd->close(); ua->jcr->store_bsock = NULL; return; } -static void do_client_status(UAContext *ua, CLIENT *client) +static void do_client_status(UAContext *ua, CLIENT *client, char *cmd) { BSOCK *fd; @@ -346,7 +394,7 @@ static void do_client_status(UAContext *ua, CLIENT *client) ua->jcr->sd_auth_key = bstrdup("dummy"); /* Try to connect for 15 seconds */ - ua->send_msg(_("Connecting to Client %s at %s:%d\n"), + if (!ua->api) ua->send_msg(_("Connecting to Client %s at %s:%d\n"), client->name(), client->address, client->FDport); if (!connect_to_file_daemon(ua->jcr, 1, 15, 0)) { ua->send_msg(_("Failed to connect to Client %s.\n====\n"), @@ -359,12 +407,16 @@ static void do_client_status(UAContext *ua, CLIENT *client) } Dmsg0(20, _("Connected to file daemon\n")); fd = ua->jcr->file_bsock; - bnet_fsend(fd, "status"); - while (bnet_recv(fd) >= 0) { + if (cmd) { + fd->fsend(".status %s", cmd); + } else { + fd->fsend("status"); + } + while (fd->recv() >= 0) { ua->send_msg("%s", fd->msg); } - bnet_sig(fd, BNET_TERMINATE); - bnet_close(fd); + fd->signal(BNET_TERMINATE); + fd->close(); ua->jcr->file_bsock = NULL; return; @@ -372,9 +424,11 @@ static void do_client_status(UAContext *ua, CLIENT *client) static void prt_runhdr(UAContext *ua) { - ua->send_msg(_("\nScheduled Jobs:\n")); - ua->send_msg(_("Level Type Pri Scheduled Name Volume\n")); - ua->send_msg(_("===================================================================================\n")); + if (!ua->api) { + ua->send_msg(_("\nScheduled Jobs:\n")); + ua->send_msg(_("Level Type Pri Scheduled Name Volume\n")); + ua->send_msg(_("===================================================================================\n")); + } } /* Scheduling packet */ @@ -383,7 +437,7 @@ struct sched_pkt { JOB *job; int level; int priority; - time_t runtime; + utime_t runtime; POOL *pool; STORE *store; }; @@ -396,7 +450,9 @@ static void prt_runtime(UAContext *ua, sched_pkt *sp) bool close_db = false; JCR *jcr = ua->jcr; MEDIA_DBR mr; + int orig_jobtype; + orig_jobtype = jcr->getJobType(); memset(&mr, 0, sizeof(mr)); if (sp->job->JobType == JT_BACKUP) { jcr->db = NULL; @@ -410,6 +466,7 @@ static void prt_runtime(UAContext *ua, sched_pkt *sp) mr.StorageId = sp->store->StorageId; jcr->wstore = sp->store; Dmsg0(250, "call find_next_volume_for_append\n"); + /* no need to set ScratchPoolId, since we use fnv_no_create_vol */ ok = find_next_volume_for_append(jcr, &mr, 1, fnv_no_create_vol, fnv_no_prune); } if (!ok) { @@ -426,13 +483,20 @@ static void prt_runtime(UAContext *ua, sched_pkt *sp) level_ptr = level_to_str(sp->level); break; } - ua->send_msg(_("%-14s %-8s %3d %-18s %-18s %s\n"), - level_ptr, job_type_to_str(sp->job->JobType), sp->priority, dt, - sp->job->name(), mr.VolumeName); + if (ua->api) { + ua->send_msg(_("%-14s\t%-8s\t%3d\t%-18s\t%-18s\t%s\n"), + level_ptr, job_type_to_str(sp->job->JobType), sp->priority, dt, + sp->job->name(), mr.VolumeName); + } else { + ua->send_msg(_("%-14s %-8s %3d %-18s %-18s %s\n"), + level_ptr, job_type_to_str(sp->job->JobType), sp->priority, dt, + sp->job->name(), mr.VolumeName); + } if (close_db) { db_close_database(jcr, jcr->db); } jcr->db = ua->db; /* restore ua db to jcr */ + jcr->setJobType(orig_jobtype); } /* @@ -461,7 +525,7 @@ static int my_compare(void *item1, void *item2) */ static void list_scheduled_jobs(UAContext *ua) { - time_t runtime; + utime_t runtime; RUN *run; JOB *job; int level, num_jobs = 0; @@ -477,8 +541,8 @@ static void list_scheduled_jobs(UAContext *ua) i = find_arg_with_value(ua, NT_("days")); if (i >= 0) { days = atoi(ua->argv[i]); - if ((days < 0) || (days > 50)) { - ua->send_msg(_("Ignoring invalid value for days. Max is 50.\n")); + if (((days < 0) || (days > 500)) && !ua->api) { + ua->send_msg(_("Ignoring invalid value for days. Max is 500.\n")); days = 1; } } @@ -520,10 +584,10 @@ static void list_scheduled_jobs(UAContext *ua) foreach_dlist(sp, &sched) { prt_runtime(ua, sp); } - if (num_jobs == 0) { + if (num_jobs == 0 && !ua->api) { ua->send_msg(_("No Scheduled Jobs.\n")); } - ua->send_msg(_("====\n")); + if (!ua->api) ua->send_msg("====\n"); Dmsg0(200, "Leave list_sched_jobs_runs()\n"); } @@ -538,13 +602,13 @@ static void list_running_jobs(UAContext *ua) bool pool_mem = false; Dmsg0(200, "enter list_run_jobs()\n"); - ua->send_msg(_("\nRunning Jobs:\n")); + if (!ua->api) ua->send_msg(_("\nRunning Jobs:\n")); foreach_jcr(jcr) { if (jcr->JobId == 0) { /* this is us */ /* this is a console or other control job. We only show console * jobs in the status output. */ - if (jcr->JobType == JT_CONSOLE) { + if (jcr->getJobType() == JT_CONSOLE && !ua->api) { bstrftime_nc(dt, sizeof(dt), jcr->start_time); ua->send_msg(_("Console connected at %s\n"), dt); } @@ -556,13 +620,15 @@ static void list_running_jobs(UAContext *ua) if (njobs == 0) { /* Note the following message is used in regress -- don't change */ - ua->send_msg(_("No Jobs running.\n====\n")); + if (!ua->api) ua->send_msg(_("No Jobs running.\n====\n")); Dmsg0(200, "leave list_run_jobs()\n"); return; } njobs = 0; - ua->send_msg(_(" JobId Level Name Status\n")); - ua->send_msg(_("======================================================================\n")); + if (!ua->api) { + ua->send_msg(_(" JobId Level Name Status\n")); + ua->send_msg(_("======================================================================\n")); + } foreach_jcr(jcr) { if (jcr->JobId == 0 || !acl_access_ok(ua, Job_ACL, jcr->job->name())) { continue; @@ -581,6 +647,9 @@ static void list_running_jobs(UAContext *ua) case JS_Terminated: msg = _("has terminated"); break; + case JS_Warnings: + msg = _("has terminated with warnings"); + break; case JS_ErrorTerminated: msg = _("has erred"); break; @@ -598,16 +667,22 @@ static void list_running_jobs(UAContext *ua) break; case JS_WaitFD: emsg = (char *) get_pool_memory(PM_FNAME); - Mmsg(emsg, _("is waiting on Client %s"), jcr->client->name()); + if (!jcr->client) { + Mmsg(emsg, _("is waiting on Client")); + } else { + Mmsg(emsg, _("is waiting on Client %s"), jcr->client->name()); + } pool_mem = true; msg = emsg; break; case JS_WaitSD: emsg = (char *) get_pool_memory(PM_FNAME); if (jcr->wstore) { - Mmsg(emsg, _("is waiting on Storage %s"), jcr->wstore->name()); + Mmsg(emsg, _("is waiting on Storage \"%s\""), jcr->wstore->name()); + } else if (jcr->rstore) { + Mmsg(emsg, _("is waiting on Storage \"%s\""), jcr->rstore->name()); } else { - Mmsg(emsg, _("is waiting on Storage %s"), jcr->rstore->name()); + Mmsg(emsg, _("is waiting on Storage")); } pool_mem = true; msg = emsg; @@ -630,9 +705,21 @@ static void list_running_jobs(UAContext *ua) case JS_WaitPriority: msg = _("is waiting for higher priority jobs to finish"); break; + case JS_DataCommitting: + msg = _("SD committing Data"); + break; + case JS_DataDespooling: + msg = _("SD despooling Data"); + break; + case JS_AttrDespooling: + msg = _("SD despooling Attributes"); + break; + case JS_AttrInserting: + msg = _("Dir inserting Attributes"); + break; default: - emsg = (char *) get_pool_memory(PM_FNAME); + emsg = (char *)get_pool_memory(PM_FNAME); Mmsg(emsg, _("is in unknown state %c"), jcr->JobStatus); pool_mem = true; msg = emsg; @@ -661,27 +748,51 @@ static void list_running_jobs(UAContext *ua) emsg = (char *)get_pool_memory(PM_FNAME); pool_mem = true; } - Mmsg(emsg, _("is waiting for Client %s to connect to Storage %s"), - jcr->client->name(), jcr->wstore->name()); - msg = emsg; + if (!jcr->client || !jcr->wstore) { + Mmsg(emsg, _("is waiting for Client to connect to Storage daemon")); + } else { + Mmsg(emsg, _("is waiting for Client %s to connect to Storage %s"), + jcr->client->name(), jcr->wstore->name()); + } + msg = emsg; + break; + case JS_DataCommitting: + msg = _("SD committing Data"); + break; + case JS_DataDespooling: + msg = _("SD despooling Data"); + break; + case JS_AttrDespooling: + msg = _("SD despooling Attributes"); + break; + case JS_AttrInserting: + msg = _("Dir inserting Attributes"); break; } - switch (jcr->JobType) { + switch (jcr->getJobType()) { case JT_ADMIN: case JT_RESTORE: bstrncpy(level, " ", sizeof(level)); break; default: - bstrncpy(level, level_to_str(jcr->JobLevel), sizeof(level)); + bstrncpy(level, level_to_str(jcr->getJobLevel()), sizeof(level)); level[7] = 0; break; } - ua->send_msg(_("%6d %-6s %-20s %s\n"), - jcr->JobId, - level, - jcr->Job, - msg); + if (ua->api) { + bash_spaces(jcr->comment); + ua->send_msg(_("%6d\t%-6s\t%-20s\t%s\t%s\n"), + jcr->JobId, level, jcr->Job, msg, jcr->comment); + unbash_spaces(jcr->comment); + } else { + ua->send_msg(_("%6d %-6s %-20s %s\n"), + jcr->JobId, level, jcr->Job, msg); + /* Display comments if any */ + if (*jcr->comment) { + ua->send_msg(_(" %-30s\n"), jcr->comment); + } + } if (pool_mem) { free_pool_memory(emsg); @@ -689,7 +800,7 @@ static void list_running_jobs(UAContext *ua) } } endeach_jcr(jcr); - ua->send_msg(_("====\n")); + if (!ua->api) ua->send_msg("====\n"); Dmsg0(200, "leave list_run_jobs()\n"); } @@ -699,14 +810,16 @@ static void list_terminated_jobs(UAContext *ua) char level[10]; if (last_jobs->empty()) { - ua->send_msg(_("No Terminated Jobs.\n")); + if (!ua->api) ua->send_msg(_("No Terminated Jobs.\n")); return; } lock_last_jobs_list(); struct s_last_job *je; - ua->send_msg(_("\nTerminated Jobs:\n")); - ua->send_msg(_(" JobId Level Files Bytes Status Finished Name \n")); - ua->send_msg(_("====================================================================\n")); + if (!ua->api) { + ua->send_msg(_("\nTerminated Jobs:\n")); + ua->send_msg(_(" JobId Level Files Bytes Status Finished Name \n")); + ua->send_msg(_("====================================================================\n")); + } foreach_dlist(je, last_jobs) { char JobName[MAX_NAME_LENGTH]; const char *termstat; @@ -752,18 +865,31 @@ static void list_terminated_jobs(UAContext *ua) case JS_Terminated: termstat = _("OK"); break; + case JS_Warnings: + termstat = _("OK -- with warnings"); + break; default: termstat = _("Other"); break; } - ua->send_msg(_("%6d %-6s %8s %10s %-7s %-8s %s\n"), - je->JobId, - level, - edit_uint64_with_commas(je->JobFiles, b1), - edit_uint64_with_suffix(je->JobBytes, b2), - termstat, - dt, JobName); - } - ua->send_msg(_("\n")); + if (ua->api) { + ua->send_msg(_("%6d\t%-6s\t%8s\t%10s\t%-7s\t%-8s\t%s\n"), + je->JobId, + level, + edit_uint64_with_commas(je->JobFiles, b1), + edit_uint64_with_suffix(je->JobBytes, b2), + termstat, + dt, JobName); + } else { + ua->send_msg(_("%6d %-6s %8s %10s %-7s %-8s %s\n"), + je->JobId, + level, + edit_uint64_with_commas(je->JobFiles, b1), + edit_uint64_with_suffix(je->JobBytes, b2), + termstat, + dt, JobName); + } + } + if (!ua->api) ua->send_msg(_("\n")); unlock_last_jobs_list(); }