]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/cats/mysql.c
This commit was manufactured by cvs2svn to create tag
[bacula/bacula] / bacula / src / cats / mysql.c
1 /*
2  * Bacula Catalog Database routines specific to MySQL
3  *   These are MySQL specific routines -- hopefully all
4  *    other files are generic.
5  *
6  *    Kern Sibbald, March 2000
7  *
8  *    Version $Id$
9  */
10
11 /*
12    Copyright (C) 2000-2003 Kern Sibbald and John Walker
13
14    This program is free software; you can redistribute it and/or
15    modify it under the terms of the GNU General Public License as
16    published by the Free Software Foundation; either version 2 of
17    the License, or (at your option) any later version.
18
19    This program is distributed in the hope that it will be useful,
20    but WITHOUT ANY WARRANTY; without even the implied warranty of
21    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22    General Public License for more details.
23
24    You should have received a copy of the GNU General Public
25    License along with this program; if not, write to the Free
26    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
27    MA 02111-1307, USA.
28
29  */
30
31
32 /* The following is necessary so that we do not include
33  * the dummy external definition of DB.
34  */
35 #define __SQL_C                       /* indicate that this is sql.c */
36
37 #include "bacula.h"
38 #include "cats.h"
39
40 #ifdef HAVE_MYSQL
41
42 /* -----------------------------------------------------------------------
43  *
44  *   MySQL dependent defines and subroutines
45  *
46  * -----------------------------------------------------------------------
47  */
48
49 /* List of open databases */
50 static BQUEUE db_list = {&db_list, &db_list};
51
52 static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
53
54 /*
55  * Initialize database data structure. In principal this should
56  * never have errors, or it is really fatal.
57  */
58 B_DB *
59 db_init_database(JCR *jcr, char *db_name, char *db_user, char *db_password, 
60                  char *db_address, int db_port, char *db_socket) 
61 {
62    B_DB *mdb;
63
64    if (!db_user) {              
65       Jmsg(jcr, M_FATAL, 0, _("A user name for MySQL must be supplied.\n"));
66       return NULL;
67    }
68    P(mutex);                          /* lock DB queue */
69    /* Look to see if DB already open */
70    for (mdb=NULL; (mdb=(B_DB *)qnext(&db_list, &mdb->bq)); ) {
71       if (strcmp(mdb->db_name, db_name) == 0) {
72          Dmsg2(100, "DB REopen %d %s\n", mdb->ref_count, db_name);
73          mdb->ref_count++;
74          V(mutex);
75          return mdb;                  /* already open */
76       }
77    }
78    Dmsg0(100, "db_open first time\n");
79    mdb = (B_DB *) malloc(sizeof(B_DB));
80    memset(mdb, 0, sizeof(B_DB));
81    mdb->db_name = bstrdup(db_name);
82    mdb->db_user = bstrdup(db_user);
83    if (db_password) {
84       mdb->db_password = bstrdup(db_password);
85    }
86    if (db_address) {
87       mdb->db_address = bstrdup(db_address);
88    }
89    if (db_socket) {
90       mdb->db_socket = bstrdup(db_socket);
91    }
92    mdb->db_port = db_port;
93    mdb->have_insert_id = TRUE;
94    mdb->errmsg = get_pool_memory(PM_EMSG); /* get error message buffer */
95    *mdb->errmsg = 0;
96    mdb->cmd = get_pool_memory(PM_EMSG);    /* get command buffer */
97    mdb->cached_path = get_pool_memory(PM_FNAME);
98    mdb->cached_path_id = 0;
99    mdb->ref_count = 1;
100    mdb->fname = get_pool_memory(PM_FNAME);
101    mdb->path = get_pool_memory(PM_FNAME);
102    mdb->esc_name = get_pool_memory(PM_FNAME);
103    qinsert(&db_list, &mdb->bq);            /* put db in list */
104    V(mutex);
105    return mdb;
106 }
107
108 /*
109  * Now actually open the database.  This can generate errors,
110  * which are returned in the errmsg
111  */
112 int
113 db_open_database(JCR *jcr, B_DB *mdb)
114 {
115    int errstat;
116
117    P(mutex);
118    if (mdb->connected) {
119       V(mutex);
120       return 1;
121    }
122    mdb->connected = FALSE;
123
124    if ((errstat=rwl_init(&mdb->lock)) != 0) {
125       Mmsg1(&mdb->errmsg, _("Unable to initialize DB lock. ERR=%s\n"), 
126             strerror(errstat));
127       V(mutex);
128       return 0;
129    }
130
131    /* connect to the database */
132 #ifdef HAVE_EMBEDDED_MYSQL
133    mysql_server_init(0, NULL, NULL);
134 #endif
135    mysql_init(&(mdb->mysql));
136    Dmsg0(50, "mysql_init done\n");
137    mdb->db = mysql_real_connect(
138         &(mdb->mysql),                /* db */
139         mdb->db_address,              /* default = localhost */
140         mdb->db_user,                 /*  login name */
141         mdb->db_password,             /*  password */
142         mdb->db_name,                 /* database name */
143         mdb->db_port,                 /* default port */
144         mdb->db_socket,               /* default = socket */
145         CLIENT_FOUND_ROWS);           /* flags */
146
147    /* If no connect, try once more in case it is a timing problem */
148    if (mdb->db == NULL) {
149       mdb->db = mysql_real_connect(
150            &(mdb->mysql),                /* db */
151            mdb->db_address,              /* default = localhost */
152            mdb->db_user,                 /*  login name */
153            mdb->db_password,             /*  password */
154            mdb->db_name,                 /* database name */
155            mdb->db_port,                 /* default port */
156            mdb->db_socket,               /* default = socket */
157            CLIENT_FOUND_ROWS);           /* flags */
158    }
159     
160    Dmsg0(50, "mysql_real_connect done\n");
161    Dmsg3(50, "db_user=%s db_name=%s db_password=%s\n", mdb->db_user, mdb->db_name, 
162             mdb->db_password==NULL?"(NULL)":mdb->db_password);
163   
164    if (mdb->db == NULL) {
165       Mmsg2(&mdb->errmsg, _("Unable to connect to MySQL server. \n\
166 Database=%s User=%s\n\
167 It is probably not running or your password is incorrect.\n"), 
168          mdb->db_name, mdb->db_user);
169       V(mutex);
170       return 0;
171    }
172
173    if (!check_tables_version(jcr, mdb)) {
174       V(mutex);
175       db_close_database(jcr, mdb);
176       return 0;
177    }
178
179 #ifdef HAVE_TREAD_SAFE_MYSQL
180    my_thread_init();
181 #endif
182
183    mdb->connected = TRUE;
184    V(mutex);
185    return 1;
186 }
187
188 void
189 db_close_database(JCR *jcr, B_DB *mdb)
190 {
191    P(mutex);
192    mdb->ref_count--;
193 #ifdef HAVE_TREAD_SAFE_MYSQL
194    my_thread_end();
195 #endif
196    if (mdb->ref_count == 0) {
197       qdchain(&mdb->bq);
198       if (mdb->connected && mdb->db) {
199          sql_close(mdb);
200 #ifdef HAVE_EMBEDDED_MYSQL
201          mysql_server_end();
202 #endif
203       }
204       rwl_destroy(&mdb->lock);       
205       free_pool_memory(mdb->errmsg);
206       free_pool_memory(mdb->cmd);
207       free_pool_memory(mdb->cached_path);
208       free_pool_memory(mdb->fname);
209       free_pool_memory(mdb->path);
210       free_pool_memory(mdb->esc_name);
211       if (mdb->db_name) {
212          free(mdb->db_name);
213       }
214       if (mdb->db_user) {
215          free(mdb->db_user);
216       }
217       if (mdb->db_password) {
218          free(mdb->db_password);
219       }
220       if (mdb->db_address) {
221          free(mdb->db_address);
222       }
223       if (mdb->db_socket) {
224          free(mdb->db_socket);
225       }
226       free(mdb);
227    }
228    V(mutex);
229 }
230
231 /*
232  * Return the next unique index (auto-increment) for
233  * the given table.  Return NULL on error.
234  *  
235  * For MySQL, NULL causes the auto-increment value
236  *  to be updated.
237  */
238 int db_next_index(JCR *jcr, B_DB *mdb, char *table, char *index)
239 {
240    strcpy(index, "NULL");
241    return 1;
242 }   
243
244
245 /*
246  * Escape strings so that MySQL is happy
247  *
248  *   NOTE! len is the length of the old string. Your new
249  *         string must be long enough (max 2*old+1) to hold
250  *         the escaped output.
251  */
252 void
253 db_escape_string(char *snew, char *old, int len)
254 {
255    mysql_escape_string(snew, old, len);
256
257 #ifdef DO_IT_MYSELF
258
259 /* Should use mysql_real_escape_string ! */
260 unsigned long mysql_real_escape_string(MYSQL *mysql, char *to, const char *from, unsigned long length);
261
262    char *n, *o;
263
264    n = snew;
265    o = old;
266    while (len--) {
267       switch (*o) {
268       case 0:
269          *n++= '\\';
270          *n++= '0';
271          o++;
272          break;
273       case '\n':
274          *n++= '\\';
275          *n++= 'n';
276          o++;
277          break;
278       case '\r':
279          *n++= '\\';
280          *n++= 'r';
281          o++;
282          break;
283       case '\\':
284          *n++= '\\';
285          *n++= '\\';
286          o++;
287          break;
288       case '\'':
289          *n++= '\\';
290          *n++= '\'';
291          o++;
292          break;
293       case '"':
294          *n++= '\\';
295          *n++= '"';
296          o++;
297          break;
298       case '\032':
299          *n++= '\\';
300          *n++= 'Z';
301          o++;
302          break;
303       default:
304          *n++= *o++;
305       }
306    }
307    *n = 0;
308 #endif
309 }
310
311 /*
312  * Submit a general SQL command (cmd), and for each row returned,
313  *  the sqlite_handler is called with the ctx.
314  */
315 int db_sql_query(B_DB *mdb, char *query, DB_RESULT_HANDLER *result_handler, void *ctx)
316 {
317    SQL_ROW row;
318   
319    db_lock(mdb);
320    if (sql_query(mdb, query) != 0) {
321       Mmsg(&mdb->errmsg, _("Query failed: %s: ERR=%s\n"), query, sql_strerror(mdb));
322       db_unlock(mdb);
323       return 0;
324    }
325    if (result_handler != NULL) {
326       if ((mdb->result = sql_store_result(mdb)) != NULL) {
327          int num_fields = sql_num_fields(mdb);
328
329          while ((row = sql_fetch_row(mdb)) != NULL) {
330             if (result_handler(ctx, num_fields, row))
331                break;
332          }
333
334          sql_free_result(mdb);
335       }
336    }
337    db_unlock(mdb);
338    return 1;
339
340 }
341
342
343 static void
344 list_dashes(B_DB *mdb, DB_LIST_HANDLER *send, void *ctx)
345 {
346    SQL_FIELD  *field;
347    unsigned int i, j;
348
349    sql_field_seek(mdb, 0);
350    send(ctx, "+");
351    for (i = 0; i < sql_num_fields(mdb); i++) {
352       field = sql_fetch_field(mdb);
353       for (j = 0; j < field->max_length + 2; j++)
354               send(ctx, "-");
355       send(ctx, "+");
356    }
357    send(ctx, "\n");
358 }
359
360 /*
361  * If full_list is set, we list vertically, otherwise, we 
362  * list on one line horizontally.      
363  */
364 void
365 list_result(B_DB *mdb, DB_LIST_HANDLER *send, void *ctx, e_list_type type)
366 {
367    SQL_FIELD *field;
368    SQL_ROW row;
369    unsigned int i, col_len, max_len = 0;
370    char buf[2000], ewc[30];
371
372    if (mdb->result == NULL) {
373       send(ctx, _("No results to list.\n"));
374       return;
375    }
376    /* determine column display widths */
377    sql_field_seek(mdb, 0);
378    for (i = 0; i < sql_num_fields(mdb); i++) {
379       field = sql_fetch_field(mdb);
380       col_len = strlen(field->name);
381       if (type == VERT_LIST) {
382          if (col_len > max_len) {
383             max_len = col_len;
384          }
385       } else {
386          if (IS_NUM(field->type) && field->max_length > 0) { /* fixup for commas */
387             field->max_length += (field->max_length - 1) / 3;
388          }
389          if (col_len < field->max_length) {
390             col_len = field->max_length;
391          }
392          if (col_len < 4 && !IS_NOT_NULL(field->flags)) {
393             col_len = 4;                 /* 4 = length of the word "NULL" */
394          }
395          field->max_length = col_len;    /* reset column info */
396       }
397    }
398
399    if (type == VERT_LIST) {
400       goto vertical_list;
401    }
402
403    list_dashes(mdb, send, ctx);
404    send(ctx, "|");
405    sql_field_seek(mdb, 0);
406    for (i = 0; i < sql_num_fields(mdb); i++) {
407       field = sql_fetch_field(mdb);
408       bsnprintf(buf, sizeof(buf), " %-*s |", (int)field->max_length, field->name);
409       send(ctx, buf);
410    }
411    send(ctx, "\n");
412    list_dashes(mdb, send, ctx);
413
414    while ((row = sql_fetch_row(mdb)) != NULL) {
415       sql_field_seek(mdb, 0);
416       send(ctx, "|");
417       for (i = 0; i < sql_num_fields(mdb); i++) {
418          field = sql_fetch_field(mdb);
419          if (row[i] == NULL) {
420             bsnprintf(buf, sizeof(buf), " %-*s |", (int)field->max_length, "NULL");
421          } else if (IS_NUM(field->type)) {
422             bsnprintf(buf, sizeof(buf), " %*s |", (int)field->max_length,       
423                add_commas(row[i], ewc));
424          } else {
425             bsnprintf(buf, sizeof(buf), " %-*s |", (int)field->max_length, row[i]);
426          }
427          send(ctx, buf);
428       }
429       send(ctx, "\n");
430    }
431    list_dashes(mdb, send, ctx);
432    return;
433
434 vertical_list:
435    
436    while ((row = sql_fetch_row(mdb)) != NULL) {
437       sql_field_seek(mdb, 0);
438       for (i = 0; i < sql_num_fields(mdb); i++) {
439          field = sql_fetch_field(mdb);
440          if (row[i] == NULL) {
441             bsnprintf(buf, sizeof(buf), " %*s: %s\n", max_len, field->name, "NULL");
442          } else if (IS_NUM(field->type)) {
443             bsnprintf(buf, sizeof(buf), " %*s: %s\n", max_len, field->name, 
444                add_commas(row[i], ewc));
445          } else {
446             bsnprintf(buf, sizeof(buf), " %*s: %s\n", max_len, field->name, row[i]);
447          }
448          send(ctx, buf);
449       }
450       send(ctx, "\n");
451    }
452    return;
453 }
454
455
456 #endif /* HAVE_MYSQL */