]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/status.c
Make btape fill/unfill work
[bacula/bacula] / bacula / src / stored / status.c
1 /*
2  *  This file handles the status command
3  *
4  *     Kern Sibbald, May MMIII
5  *
6  *   Version $Id$
7  *  
8  */
9 /*
10    Copyright (C) 2000-2003 Kern Sibbald and John Walker
11
12    This program is free software; you can redistribute it and/or
13    modify it under the terms of the GNU General Public License as
14    published by the Free Software Foundation; either version 2 of
15    the License, or (at your option) any later version.
16
17    This program is distributed in the hope that it will be useful,
18    but WITHOUT ANY WARRANTY; without even the implied warranty of
19    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20    General Public License for more details.
21
22    You should have received a copy of the GNU General Public
23    License along with this program; if not, write to the Free
24    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
25    MA 02111-1307, USA.
26
27  */
28
29 #include "bacula.h"
30 #include "stored.h"
31
32 /* Exported variables */
33
34 /* Imported variables */
35 extern BSOCK *filed_chan;
36 extern int r_first, r_last;
37 extern struct s_res resources[];
38 extern char my_name[];
39 extern time_t daemon_start_time;
40 extern struct s_last_job last_job;
41
42 /* Static variables */
43
44
45 /* Forward referenced functions */
46 static void send_blocked_status(JCR *jcr, DEVICE *dev);
47
48
49 /*
50  * Status command from Director
51  */
52 int status_cmd(JCR *jcr)
53 {
54    DEVRES *device;
55    DEVICE *dev;
56    int found, bps, sec, bpb;
57    BSOCK *user = jcr->dir_bsock;
58    char dt[MAX_TIME_LENGTH];
59    char b1[30], b2[30], b3[30];
60
61    bnet_fsend(user, "\n%s Version: " VERSION " (" BDATE ")\n", my_name);
62    bstrftime(dt, sizeof(dt), daemon_start_time);
63    bnet_fsend(user, _("Daemon started %s, %d Job%s run.\n"), dt, last_job.NumJobs,
64         last_job.NumJobs == 1 ? "" : "s");
65    if (last_job.NumJobs > 0) {
66       char termstat[30];
67
68       bstrftime(dt, sizeof(dt), last_job.end_time);
69       bnet_fsend(user, _("Last Job %s finished at %s\n"), last_job.Job, dt);
70
71       jobstatus_to_ascii(last_job.JobStatus, termstat, sizeof(termstat));
72       bnet_fsend(user, _("  Files=%s Bytes=%s Termination Status=%s\n"), 
73            edit_uint64_with_commas(last_job.JobFiles, b1),
74            edit_uint64_with_commas(last_job.JobBytes, b2),
75            termstat);
76    }
77
78    LockRes();
79    for (device=NULL;  (device=(DEVRES *)GetNextRes(R_DEVICE, (RES *)device)); ) {
80       for (dev=device->dev; dev; dev=dev->next) {
81          if (dev->state & ST_OPENED) {
82             if (dev->state & ST_LABEL) {
83                bnet_fsend(user, _("Device %s is mounted with Volume \"%s\"\n"), 
84                   dev_name(dev), dev->VolHdr.VolName);
85             } else {
86                bnet_fsend(user, _("Device %s open but no Bacula volume is mounted.\n"), dev_name(dev));
87             }
88             send_blocked_status(jcr, dev);
89             if (dev->state & ST_APPEND) {
90                bpb = dev->VolCatInfo.VolCatBlocks;
91                if (bpb <= 0) {
92                   bpb = 1;
93                }
94                bpb = dev->VolCatInfo.VolCatBytes / bpb;
95                bnet_fsend(user, _("    Total Bytes=%s Blocks=%s Bytes/block=%s\n"),
96                   edit_uint64_with_commas(dev->VolCatInfo.VolCatBytes, b1),
97                   edit_uint64_with_commas(dev->VolCatInfo.VolCatBlocks, b2), 
98                   edit_uint64_with_commas(bpb, b3));
99             } else {  /* reading */
100                bpb = dev->VolCatInfo.VolCatReads;
101                if (bpb <= 0) {
102                   bpb = 1;
103                }
104                bpb = dev->VolCatInfo.VolCatRBytes / bpb;
105                bnet_fsend(user, _("    Total Bytes Read=%s Blocks Read=%s Bytes/block=%s\n"),
106                   edit_uint64_with_commas(dev->VolCatInfo.VolCatRBytes, b1),
107                   edit_uint64_with_commas(dev->VolCatInfo.VolCatReads, b2), 
108                   edit_uint64_with_commas(bpb, b3));
109             }
110             bnet_fsend(user, _("    Positioned at File=%s Block=%s\n"), 
111                edit_uint64_with_commas(dev->file, b1),
112                edit_uint64_with_commas(dev->block_num, b2));
113
114          } else {
115             bnet_fsend(user, _("Device %s is not open.\n"), dev_name(dev));
116             send_blocked_status(jcr, dev);
117          }
118       }
119    }
120    UnlockRes();
121
122    found = 0;
123    lock_jcr_chain();
124    /* NOTE, we reuse a calling argument jcr. Be warned! */ 
125    for (jcr=NULL; (jcr=get_next_jcr(jcr)); ) {
126       if (jcr->JobStatus == JS_WaitFD) {
127          bnet_fsend(user, _("%s Job %s waiting for Client connection.\n"),
128             job_type_to_str(jcr->JobType), jcr->Job);
129       }
130       if (jcr->device) {
131          bnet_fsend(user, _("%s %s job %s is using device %s volume %s\n"), 
132                    job_level_to_str(jcr->JobLevel),
133                    job_type_to_str(jcr->JobType),
134                    jcr->Job, jcr->device->device_name,
135                    jcr->VolumeName);
136          sec = time(NULL) - jcr->run_time;
137          if (sec <= 0) {
138             sec = 1;
139          }
140          bps = jcr->JobBytes / sec;
141          bnet_fsend(user, _("    Files=%s Bytes=%s Bytes/sec=%s\n"), 
142             edit_uint64_with_commas(jcr->JobFiles, b1),
143             edit_uint64_with_commas(jcr->JobBytes, b2),
144             edit_uint64_with_commas(bps, b3));
145          found = 1;
146 #ifdef DEBUG
147          if (jcr->file_bsock) {
148             bnet_fsend(user, "    FDReadSeqNo=%s in_msg=%u out_msg=%d fd=%d\n", 
149                edit_uint64_with_commas(jcr->file_bsock->read_seqno, b1),
150                jcr->file_bsock->in_msg_no, jcr->file_bsock->out_msg_no,
151                jcr->file_bsock->fd);
152          } else {
153             bnet_fsend(user, "    FDSocket closed\n");
154          }
155 #endif
156       }
157       free_locked_jcr(jcr);
158    }
159    unlock_jcr_chain();
160    if (!found) {
161       bnet_fsend(user, _("No jobs running.\n"));
162    }
163
164 #ifdef full_status
165    bnet_fsend(user, "\n\n");
166    dump_resource(R_DEVICE, resources[R_DEVICE-r_first].res_head, sendit, user);
167 #endif
168    bnet_fsend(user, "====\n");
169
170    bnet_sig(user, BNET_EOD);
171    return 1;
172 }
173
174 static void send_blocked_status(JCR *jcr, DEVICE *dev) 
175 {
176    BSOCK *user = jcr->dir_bsock;
177
178    switch (dev->dev_blocked) {
179    case BST_UNMOUNTED:
180       bnet_fsend(user, _("    Device is BLOCKED. User unmounted.\n"));
181       break;
182    case BST_UNMOUNTED_WAITING_FOR_SYSOP:
183       bnet_fsend(user, _("    Device is BLOCKED. User unmounted during wait for media/mount.\n"));
184       break;
185    case BST_WAITING_FOR_SYSOP:
186       if (jcr->JobStatus == JS_WaitMount) {
187          bnet_fsend(user, _("    Device is BLOCKED waiting for mount.\n"));
188       } else {
189          bnet_fsend(user, _("    Device is BLOCKED waiting for appendable media.\n"));
190       }
191       break;
192    case BST_DOING_ACQUIRE:
193       bnet_fsend(user, _("    Device is being initialized.\n"));
194       break;
195    case BST_WRITING_LABEL:
196       bnet_fsend(user, _("    Device is blocked labeling a Volume.\n"));
197       break;
198    default:
199       break;
200 }
201 }