1 /* $Cambridge: exim/src/src/lookups/mysql.c,v 1.1 2004/10/07 13:10:01 ph10 Exp $ */
3 /*************************************************
4 * Exim - an Internet mail transport agent *
5 *************************************************/
7 /* Copyright (c) University of Cambridge 1995 - 2004 */
8 /* See the file NOTICE for conditions of use and distribution. */
10 /* Thanks to Paul Kelly for contributing the original code for these
15 #include "lf_functions.h"
16 #include "mysql.h" /* The local header */
19 /* We can't just compile this code and allow the library mechanism to omit the
20 functions if they are not wanted, because we need to have the MYSQL header
21 available for compiling. Therefore, compile these functions only if
22 LOOKUP_MYSQL is defined. However, some compilers don't like compiling empty
23 modules, so keep them happy with a dummy when skipping the rest. Make it
24 reference itself to stop picky compilers complaining that it is unused, and put
25 in a dummy argument to stop even pickier compilers complaining about infinite
29 static void dummy(int x) { dummy(x-1); }
33 #include <mysql.h> /* The system header */
36 /* Structure and anchor for caching connections. */
38 typedef struct mysql_connection {
39 struct mysql_connection *next;
44 static mysql_connection *mysql_connections = NULL;
48 /*************************************************
50 *************************************************/
52 /* See local README for interface description. */
55 mysql_open(uschar *filename, uschar **errmsg)
57 return (void *)(1); /* Just return something non-null */
62 /*************************************************
64 *************************************************/
66 /* See local README for interface description. */
72 while ((cn = mysql_connections) != NULL)
74 mysql_connections = cn->next;
75 DEBUG(D_lookup) debug_printf("close MYSQL connection: %s\n", cn->server);
76 mysql_close(cn->handle);
82 /*************************************************
83 * Internal search function *
84 *************************************************/
86 /* This function is called from the find entry point to do the search for a
90 query the query string
91 server the server string
92 resultptr where to store the result
93 errmsg where to point an error message
94 defer_break TRUE if no more servers are to be tried after DEFER
95 do_cache set false if data is changed
97 The server string is of the form "host/dbname/user/password". The host can be
98 host:port. This string is in a nextinlist temporary buffer, so can be
101 Returns: OK, FAIL, or DEFER
105 perform_mysql_search(uschar *query, uschar *server, uschar **resultptr,
106 uschar **errmsg, BOOL *defer_break, BOOL *do_cache)
108 MYSQL *mysql_handle = NULL; /* Keep compilers happy */
109 MYSQL_RES *mysql_result = NULL;
110 MYSQL_ROW mysql_row_data;
117 unsigned int num_fields;
118 uschar *result = NULL;
119 mysql_connection *cn;
120 uschar *server_copy = NULL;
123 /* Disaggregate the parameters from the server argument. The order is host,
124 database, user, password. We can write to the string, since it is in a
125 nextinlist temporary buffer. The copy of the string that is used for caching
126 has the password removed. This copy is also used for debugging output. */
128 for (i = 3; i > 0; i--)
130 uschar *pp = Ustrrchr(server, '/');
133 *errmsg = string_sprintf("incomplete MySQL server data: %s",
134 (i == 3)? server : server_copy);
140 if (i == 3) server_copy = string_copy(server); /* sans password */
142 sdata[0] = server; /* What's left at the start */
144 /* See if we have a cached connection to the server */
146 for (cn = mysql_connections; cn != NULL; cn = cn->next)
148 if (Ustrcmp(cn->server, server_copy) == 0)
150 mysql_handle = cn->handle;
155 /* If no cached connection, we must set one up. Mysql allows for a host name
156 and port to be specified. It also allows the name of a Unix socket to be used.
157 Unfortunately, this contains slashes, but its use is expected to be rare, so
158 the rather cumbersome syntax shouldn't inconvenience too many people. We use
159 this: host:port(socket) where all the parts are optional. */
164 uschar *socket = NULL;
167 if ((p = Ustrchr(sdata[0], '(')) != NULL)
171 while (*p != 0 && *p != ')') p++;
175 if ((p = Ustrchr(sdata[0], ':')) != NULL)
181 if (Ustrchr(sdata[0], '/') != NULL)
183 *errmsg = string_sprintf("unexpected slash in MySQL server hostname: %s",
189 /* If the database is the empty string, set it NULL - the query must then
192 if (sdata[1][0] == 0) sdata[1] = NULL;
195 debug_printf("MYSQL new connection: host=%s port=%d socket=%s "
196 "database=%s user=%s\n", sdata[0], port, socket, sdata[1], sdata[2]);
198 /* Get store for a new handle, initialize it, and connect to the server */
200 mysql_handle = store_get(sizeof(MYSQL));
201 mysql_init(mysql_handle);
202 if (mysql_real_connect(mysql_handle,
203 /* host user passwd database */
204 CS sdata[0], CS sdata[2], CS sdata[3], CS sdata[1],
205 port, CS socket, 0) == NULL)
207 *errmsg = string_sprintf("MYSQL connection failed: %s",
208 mysql_error(mysql_handle));
209 *defer_break = FALSE;
213 /* Add the connection to the cache */
215 cn = store_get(sizeof(mysql_connection));
216 cn->server = server_copy;
217 cn->handle = mysql_handle;
218 cn->next = mysql_connections;
219 mysql_connections = cn;
222 /* Else use a previously cached connection */
227 debug_printf("MYSQL using cached connection for %s\n", server_copy);
232 if (mysql_query(mysql_handle, CS query) != 0)
234 *errmsg = string_sprintf("MYSQL: query failed: %s\n",
235 mysql_error(mysql_handle));
236 *defer_break = FALSE;
240 /* Pick up the result. If the query was not of the type that returns data,
241 namely INSERT, UPDATE, or DELETE, an error occurs here. However, this situation
242 can be detected by calling mysql_field_count(). If its result is zero, no data
243 was expected (this is all explained clearly in the MySQL manual). In this case,
244 we return the number of rows affected by the command. In this event, we do NOT
245 want to cache the result; also the whole cache for the handle must be cleaned
246 up. Setting do_cache FALSE requests this. */
248 if ((mysql_result = mysql_use_result(mysql_handle)) == NULL)
250 if ( mysql_field_count(mysql_handle) == 0 )
252 DEBUG(D_lookup) debug_printf("MYSQL: query was not one that returns data\n");
253 result = string_sprintf("%d", mysql_affected_rows(mysql_handle));
257 *errmsg = string_sprintf("MYSQL: lookup result failed: %s\n",
258 mysql_error(mysql_handle));
259 *defer_break = FALSE;
263 /* Find the number of fields returned. If this is one, we don't add field
264 names to the data. Otherwise we do. */
266 num_fields = mysql_num_fields(mysql_result);
268 /* Get the fields and construct the result string. If there is more than one
269 row, we insert '\n' between them. */
271 fields = mysql_fetch_fields(mysql_result);
273 while ((mysql_row_data = mysql_fetch_row(mysql_result)) != NULL)
275 unsigned long *lengths = mysql_fetch_lengths(mysql_result);
278 result = string_cat(result, &ssize, &offset, US"\n", 1);
282 if (mysql_row_data[0] != NULL) /* NULL value yields nothing */
283 result = string_cat(result, &ssize, &offset, US mysql_row_data[0],
287 else for (i = 0; i < num_fields; i++)
289 result = lf_quote(US fields[i].name, US mysql_row_data[i], lengths[i],
290 result, &ssize, &offset);
294 /* If result is NULL then no data has been found and so we return FAIL.
295 Otherwise, we must terminate the string which has been built; string_cat()
296 always leaves enough room for a terminating zero. */
301 *errmsg = US"MYSQL: no data found";
306 store_reset(result + offset + 1);
309 /* Get here by goto from various error checks and from the case where no data
310 was read (e.g. an update query). */
314 /* Free mysal store for any result that was got; don't close the connection, as
317 if (mysql_result != NULL) mysql_free_result(mysql_result);
319 /* Non-NULL result indicates a sucessful result */
328 DEBUG(D_lookup) debug_printf("%s\n", *errmsg);
329 return yield; /* FAIL or DEFER */
336 /*************************************************
338 *************************************************/
340 /* See local README for interface description. The handle and filename
341 arguments are not used. Loop through a list of servers while the query is
342 deferred with a retryable error. */
345 mysql_find(void *handle, uschar *filename, uschar *query, int length,
346 uschar **result, uschar **errmsg, BOOL *do_cache)
350 uschar *list = mysql_servers;
353 DEBUG(D_lookup) debug_printf("MYSQL query: %s\n", query);
355 while ((server = string_nextinlist(&list, &sep, buffer, sizeof(buffer))) != NULL)
357 BOOL defer_break = FALSE;
358 int rc = perform_mysql_search(query, server, result, errmsg, &defer_break,
360 if (rc != DEFER || defer_break) return rc;
363 if (mysql_servers == NULL)
364 *errmsg = US"no MYSQL servers defined (mysql_servers option)";
371 /*************************************************
372 * Quote entry point *
373 *************************************************/
375 /* The only characters that need to be quoted (with backslash) are newline,
376 tab, carriage return, backspace, backslash itself, and the quote characters.
377 Percent, and underscore and not escaped. They are only special in contexts
378 where they can be wild cards, and this isn't usually the case for data inserted
379 from messages, since that isn't likely to be treated as a pattern of any kind.
380 Sadly, MySQL doesn't seem to behave like other programs. If you use something
381 like "where id="ab\%cd" it does not treat the string as "ab%cd". So you really
382 can't quote "on spec".
385 s the string to be quoted
386 opt additional option text or NULL if none
388 Returns: the processed string or NULL for a bad option
392 mysql_quote(uschar *s, uschar *opt)
399 if (opt != NULL) return NULL; /* No options recognized */
401 while ((c = *t++) != 0)
402 if (Ustrchr("\n\t\r\b\'\"\\", c) != NULL) count++;
404 if (count == 0) return s;
405 t = quoted = store_get(Ustrlen(s) + count + 1);
407 while ((c = *s++) != 0)
409 if (Ustrchr("\n\t\r\b\'\"\\", c) != NULL)
414 case '\n': *t++ = 'n';
416 case '\t': *t++ = 't';
418 case '\r': *t++ = 'r';
420 case '\b': *t++ = 'b';
434 #endif /* MYSQL_LOOKUP */
436 /* End of lookups/mysql.c */