]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/ua_dotcmds.c
Fix cancel problem and implement run gnome dialog
[bacula/bacula] / bacula / src / dird / ua_dotcmds.c
1 /*
2  *
3  *   Bacula Director -- User Agent Commands
4  *     These are "dot" commands, i.e. commands preceded
5  *        by a period. These commands are meant to be used
6  *        by a program, so there is no prompting, and the
7  *        returned results are (supposed to be) predictable.
8  *
9  *     Kern Sibbald, April MMII
10  *
11  *   Version $Id$
12  */
13
14 /*
15    Copyright (C) 2002 Kern Sibbald and John Walker
16
17    This program is free software; you can redistribute it and/or
18    modify it under the terms of the GNU General Public License as
19    published by the Free Software Foundation; either version 2 of
20    the License, or (at your option) any later version.
21
22    This program is distributed in the hope that it will be useful,
23    but WITHOUT ANY WARRANTY; without even the implied warranty of
24    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
25    General Public License for more details.
26
27    You should have received a copy of the GNU General Public
28    License along with this program; if not, write to the Free
29    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
30    MA 02111-1307, USA.
31
32  */
33
34 #include "bacula.h"
35 #include "dird.h"
36
37 /* Imported variables */
38 extern int r_first;
39 extern int r_last;
40 extern struct s_res resources[];
41 extern char my_name[];
42
43 /* Imported functions */
44 extern int qmessagescmd(UAContext *ua, char *cmd);
45 extern int quitcmd(UAContext *ua, char *cmd);
46
47 /* Forward referenced functions */
48 static int diecmd(UAContext *ua, char *cmd);
49 static int jobscmd(UAContext *ua, char *cmd);
50 static int filesetscmd(UAContext *ua, char *cmd);
51 static int clientscmd(UAContext *ua, char *cmd);
52 static int msgscmd(UAContext *ua, char *cmd);
53 static int poolscmd(UAContext *ua, char *cmd);
54 static int storagecmd(UAContext *ua, char *cmd);
55 static int defaultscmd(UAContext *ua, char *cmd);
56 static int typescmd(UAContext *ua, char *cmd);
57 static int levelscmd(UAContext *ua, char *cmd);
58
59 struct cmdstruct { char *key; int (*func)(UAContext *ua, char *cmd); char *help; }; 
60 static struct cmdstruct commands[] = {
61  { N_(".die"),        diecmd,       NULL},
62  { N_(".jobs"),       jobscmd,      NULL},
63  { N_(".filesets"),   filesetscmd,  NULL},
64  { N_(".clients"),    clientscmd,   NULL},
65  { N_(".msgs"),       msgscmd,      NULL},
66  { N_(".pools"),      poolscmd,     NULL},
67  { N_(".types"),      typescmd,     NULL},
68  { N_(".levels"),     levelscmd,    NULL},
69  { N_(".storage"),    storagecmd,   NULL},
70  { N_(".defaults"),   defaultscmd,  NULL},
71  { N_(".messages"),   qmessagescmd, NULL},
72  { N_(".quit"),       quitcmd,      NULL},
73  { N_(".exit"),       quitcmd,      NULL} 
74              };
75 #define comsize (sizeof(commands)/sizeof(struct cmdstruct))
76
77 /*
78  * Execute a command from the UA
79  */
80 int do_a_dot_command(UAContext *ua, char *cmd)
81 {
82    unsigned int i;
83    int len, stat;  
84    int found;
85
86    found = 0;
87    stat = 1;
88
89    Dmsg1(200, "Dot command: %s\n", ua->UA_sock->msg);
90    if (ua->argc == 0) {
91       return 1;
92    }
93
94    len = strlen(ua->argk[0]);
95    if (len == 1) {
96       return 1;                       /* no op */
97    }
98    for (i=0; i<comsize; i++) {     /* search for command */
99       if (strncasecmp(ua->argk[0],  _(commands[i].key), len) == 0) {
100          stat = (*commands[i].func)(ua, cmd);   /* go execute command */
101          found = 1;
102          break;
103       }
104    }
105    if (!found) {
106       strcat(ua->UA_sock->msg, _(": is an illegal command\n"));
107       ua->UA_sock->msglen = strlen(ua->UA_sock->msg);
108       bnet_send(ua->UA_sock);
109    }
110    return stat;
111 }
112
113 /*
114  * Create segmentation fault 
115  */
116 static int diecmd(UAContext *ua, char *cmd)
117 {
118    JCR *jcr = NULL;
119    int a;
120    
121    a = jcr->JobId; /* ref NULL pointer */
122    return 0;
123 }
124
125 static int jobscmd(UAContext *ua, char *cmd)
126 {
127    JOB *job = NULL;
128    LockRes();
129    while ( (job = (JOB *)GetNextRes(R_JOB, (RES *)job)) ) {
130       bsendmsg(ua, "%s\n", job->hdr.name);
131    }
132    UnlockRes();
133    return 1;
134 }
135
136 static int filesetscmd(UAContext *ua, char *cmd)
137 {
138    FILESET *fs = NULL;
139    LockRes();
140    while ( (fs = (FILESET *)GetNextRes(R_FILESET, (RES *)fs)) ) {
141       bsendmsg(ua, "%s\n", fs->hdr.name);
142    }
143    UnlockRes();
144    return 1;
145 }
146
147 static int clientscmd(UAContext *ua, char *cmd)
148 {
149    CLIENT *client = NULL;
150    LockRes();
151    while ( (client = (CLIENT *)GetNextRes(R_CLIENT, (RES *)client)) ) {
152       bsendmsg(ua, "%s\n", client->hdr.name);
153    }
154    UnlockRes();
155    return 1;
156 }
157
158 static int msgscmd(UAContext *ua, char *cmd)
159 {
160    MSGS *msgs = NULL;
161    LockRes();
162    while ( (msgs = (MSGS *)GetNextRes(R_MSGS, (RES *)msgs)) ) {
163       bsendmsg(ua, "%s\n", msgs->hdr.name);
164    }
165    UnlockRes();
166    return 1;
167 }
168
169 static int poolscmd(UAContext *ua, char *cmd)
170 {
171    POOL *pool = NULL;
172    LockRes();
173    while ( (pool = (POOL *)GetNextRes(R_POOL, (RES *)pool)) ) {
174       bsendmsg(ua, "%s\n", pool->hdr.name);
175    }
176    UnlockRes();
177    return 1;
178 }
179
180 static int storagecmd(UAContext *ua, char *cmd)
181 {
182    STORE *store = NULL;
183    LockRes();
184    while ( (store = (STORE *)GetNextRes(R_STORAGE, (RES *)store)) ) {
185       bsendmsg(ua, "%s\n", store->hdr.name);
186    }
187    UnlockRes();
188    return 1;
189 }
190
191
192 static int typescmd(UAContext *ua, char *cmd)
193 {
194    bsendmsg(ua, "Backup\n");
195    bsendmsg(ua, "Restore\n");
196    bsendmsg(ua, "Admin\n");
197    bsendmsg(ua, "Verify\n");
198    return 1;
199 }
200
201 static int levelscmd(UAContext *ua, char *cmd)
202 {
203    bsendmsg(ua, "Incremental\n");
204    bsendmsg(ua, "Full\n");
205    bsendmsg(ua, "Differential\n");
206    bsendmsg(ua, "Catalog\n");
207    bsendmsg(ua, "InitCatalog\n");
208    bsendmsg(ua, "VolumeToCatalog\n");
209    return 1;
210 }
211
212
213
214 /*
215  * Return default values for a job
216  */
217 static int defaultscmd(UAContext *ua, char *cmd)
218 {
219    JOB *job;       
220    if (ua->argc == 2 && strcmp(ua->argk[1], "job") == 0) {
221       job = (JOB *)GetResWithName(R_JOB, ua->argv[1]);
222       if (job) {
223          bsendmsg(ua, "job=%s", job->hdr.name);
224          bsendmsg(ua, "pool=%s", job->pool->hdr.name);
225          bsendmsg(ua, "messages=%s", job->messages->hdr.name);
226          bsendmsg(ua, "client=%s", job->client->hdr.name);
227          bsendmsg(ua, "storage=%s", job->storage->hdr.name);
228          bsendmsg(ua, "where=%s", job->RestoreWhere?job->RestoreWhere:"");
229          bsendmsg(ua, "level=%s", level_to_str(job->level));
230          bsendmsg(ua, "type=%s", job_type_to_str(job->JobType));
231          bsendmsg(ua, "fileset=%s", job->fileset->hdr.name);
232       }
233    }
234    return 1;
235 }