1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461
|
/*
* ProFTPD: mod_sql_mysql -- Support for connecting to MySQL databases.
* Copyright (c) 2001 Andrew Houghton
* Copyright (c) 2004-2005 TJ Saunders
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* 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
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
*
* As a special exemption, Andrew Houghton and other respective copyright
* holders give permission to link this program with OpenSSL, and distribute
* the resulting executable, without including the source code for OpenSSL in
* the source distribution.
*
* $Id: mod_sql_mysql.c,v 1.39 2005/06/27 20:41:14 castaglia Exp $
*/
/*
* $Libraries: -lm -lmysqlclient -lz $
*/
/* INTRO:
*
* mod_sql_mysql is the reference backend module for mod_sql. As such,
* it's very, very over-commented.
*
* COPYRIGHT NOTICE:
*
* The section of the copyright notice above that refers to OpenSSL *must*
* be present in every backend module. Without that exemption the backend
* module cannot legally be compiled into ProFTPD, even if the backend
* module makes no use of OpenSSL.
*
* FUNCTIONS IN THIS CODE:
*
* Backend modules are only called into via the functions listed in
* sql_cmdtable (see the end of this file). All other functions are
* internal.
*
* For stylistic reasons, it's requested that backend authors maintain the
* following conventions:
* 1) when returning data in a modret_t, use the standard ProFTPD macros
* whenever possible (ERR_MSG, HANDLED, etc.)
* 2) although 'static modret_t *' and 'MODRET' are equivalent, please
* use MODRET only for those functions listed in sql_cmdtable.
*
* NAMED CONNECTIONS:
*
* Backend modules need to handle named connections. A named connection
* is the complete specification of how to access a database coupled with
* a unique (to the session) descriptive name. Every call mod_sql makes
* into a backend is directed at a particular named connection.
* mod_sql_mysql includes a set of simplistic cache functions to keep an
* internal map of names to connections -- other backends should feel free
* to handle this however they want.
*
* OPEN/CLOSE SEMANTICS & CONNECTION COUNTING:
*
* Administrators using mod_sql decide on one of three connection policies:
* 1) open a connection to the database and hold it open for the life of
* the client process
* 2) open a connection to the database and hold it open for the life of
* each call
* 3) open a connection to the database and hold it open until a specified
* period of time has elapsed with no activity
*
* mod_sql enforces this choice by requiring that backends:
* 1) wrap each call in an open/close bracket (so if a connection isn't
* currently open, it will be opened for the call and closed afterwards)
* 2) properly do connection counting to ensure that a connection is not
* re-opened unnecessarily, and not closed too early.
*
* In simple terms: if an administrator chooses the "one connection for the
* life of the process" policy, mod_sql will send an initial cmd_open call
* for that connection at the start of the client session, and a final
* cmd_close call when the session ends. If an administrator chooses the
* "per-call" connection policy, the initial cmd_open and final cmd_close
* calls will not be made. If an administrator chooses the "timeout"
* connection policy, connections may be closed at any time and may need
* to be reopened for any call.
*
* CONNECTION TIMERS
*
* Backends are required to handle connection timers; when a connection is
* defined via cmd_defineconnection, a time value (in seconds) will be sent
* with the definition. Given the complexity of the semantics, it's
* recommended that backend authors simply copy the timer handling code from
* this module. Timer handling code exists in nearly every function in this
* module; read the code for more information.
*
* ERROR HANDLING AND LOGGING:
*
* Proper error handling is required of backend modules -- the modret_t
* structure passed back to mod_sql should have the error fields correctly
* filled. mod_sql handles backend errors by logging them then closing the
* connection and the session. Therefore, it's not necessary for backends
* to log errors which will be passed back to mod_sql, but they should log
* any errors or useful information which will not be returned in the
* modret_t. If an error is transient -- if there's any way for the backend
* module to handle an error intelligently -- it should do so. mod_sql
* will always handle backend errors by ending the client session.
*
* Good debug logging is encouraged -- major functions (the functions that
* mod_sql calls directly) should be wrapped in 'entering' and 'exiting'
* DEBUG_FUNC level output, the text of SQL queries should be visible with
* DEBUG_INFO level output, and any errors should be visible with DEBUG_WARN
* level output.
*
* Check the code if this makes no sense.
*
* COMMENTS / QUESTIONS:
*
* Backend module writers are encouraged to read through all comments in this
* file. If anything is unclear, please contact the author.
*/
/*
* Internal define used for debug and logging. All backends are encouraged
* to use the same format.
*/
#define MOD_SQL_MYSQL_VERSION "mod_sql_mysql/4.05"
#define _MYSQL_PORT "3306"
#include <mysql.h>
#include "conf.h"
#include "../contrib/mod_sql.h"
/*
* timer-handling code adds the need for a couple of forward declarations
*/
MODRET cmd_close(cmd_rec *cmd);
module sql_mysql_module;
/*
* db_conn_struct: an internal struct to hold connection information. This
* connection information is backend-specific; the members here reflect
* the information MySQL needs for connections.
*
* Other backends are expected to make whatever changes are necessary.
*/
struct db_conn_struct {
/* MySQL-specific members */
char *host;
char *user;
char *pass;
char *db;
char *port;
MYSQL *mysql;
};
typedef struct db_conn_struct db_conn_t;
/*
* This struct is a wrapper for whatever backend data is needed to access
* the database, and supports named connections, connection counting, and
* timer handling. In most cases it should be enough for backend authors
* to change db_conn_t and leave this struct alone.
*/
struct conn_entry_struct {
char *name;
void *data;
/* timer handling */
int timer;
int ttl;
/* connection handling */
unsigned int connections;
};
typedef struct conn_entry_struct conn_entry_t;
#define DEF_CONN_POOL_SIZE 10
static pool *conn_pool = NULL;
static array_header *conn_cache = NULL;
/*
* _sql_get_connection: walks the connection cache looking for the named
* connection. Returns NULL if unsuccessful, a pointer to the conn_entry_t
* if successful.
*/
static conn_entry_t *_sql_get_connection(char *name)
{
conn_entry_t *entry = NULL;
int cnt;
if (name == NULL) return NULL;
/* walk the array looking for our entry */
for (cnt=0; cnt < conn_cache->nelts; cnt++) {
entry = ((conn_entry_t **) conn_cache->elts)[cnt];
if (!strcmp(name, entry->name)) {
return entry;
}
}
return NULL;
}
/*
* _sql_add_connection: internal helper function to maintain a cache of
* connections. Since we expect the number of named connections to
* be small, simply use an array header to hold them. We don't allow
* duplicate connection names.
*
* Returns: NULL if the insertion was unsuccessful, a pointer to the
* conn_entry_t that was created if successful.
*/
static void *_sql_add_connection(pool *p, char *name, db_conn_t *conn)
{
conn_entry_t *entry = NULL;
if ((!name) || (!conn) || (!p)) return NULL;
if (_sql_get_connection(name)) {
/* duplicated name */
return NULL;
}
entry = (conn_entry_t *) pcalloc( p, sizeof( conn_entry_t ));
entry->name = name;
entry->data = conn;
*((conn_entry_t **) push_array(conn_cache)) = entry;
return entry;
}
/* _sql_check_cmd: tests to make sure the cmd_rec is valid and is
* properly filled in. If not, it's grounds for the daemon to
* shutdown.
*/
static void _sql_check_cmd(cmd_rec *cmd, char *msg) {
if (!cmd ||
!cmd->tmp_pool) {
pr_log_pri(PR_LOG_ERR, MOD_SQL_MYSQL_VERSION
": '%s' was passed an invalid cmd_rec. Shutting down.", msg);
sql_log(DEBUG_WARN, "'%s' was passed an invalid cmd_rec. Shutting down.",
msg);
end_login(1);
}
return;
}
/*
* _sql_timer_callback: when a timer goes off, this is the function
* that gets called. This function makes assumptions about the
* db_conn_t members.
*/
static int _sql_timer_callback(CALLBACK_FRAME) {
conn_entry_t *entry = NULL;
int cnt = 0;
cmd_rec *cmd = NULL;
for (cnt=0; cnt < conn_cache->nelts; cnt++) {
entry = ((conn_entry_t **) conn_cache->elts)[cnt];
if (entry->timer == p2) {
sql_log(DEBUG_INFO, "timer expired for connection '%s'", entry->name);
cmd = _sql_make_cmd( conn_pool, 2, entry->name, "1" );
cmd_close( cmd );
SQL_FREE_CMD(cmd);
entry->timer = 0;
}
}
return 0;
}
/* _build_error: constructs a modret_t filled with error information;
* mod_sql_mysql calls this function and returns the resulting mod_ret_t
* whenever a call to the database results in an error. Other backends
* may want to use a different method to return error information.
*/
static modret_t *_build_error(cmd_rec *cmd, db_conn_t *conn) {
char num[20] = {'\0'};
if (!conn)
return ERROR_MSG(cmd, MOD_SQL_MYSQL_VERSION, "badly formed request");
snprintf(num, 20, "%u", mysql_errno(conn->mysql) );
return ERROR_MSG(cmd, num, (char *) mysql_error(conn->mysql));
}
/*
* _build_data: both cmd_select and cmd_procedure potentially
* return data to mod_sql; this function builds a modret to return
* that data. This is MySQL specific; other backends may choose
* to do things differently.
*/
static modret_t *_build_data(cmd_rec *cmd, db_conn_t *conn) {
modret_t *mr = NULL;
MYSQL *mysql = NULL;
MYSQL_RES *result = NULL;
MYSQL_ROW row;
sql_data_t *sd = NULL;
char **data = NULL;
unsigned long cnt = 0;
unsigned long i = 0;
if (!conn)
return ERROR_MSG(cmd, MOD_SQL_MYSQL_VERSION, "badly formed request");
mysql = conn->mysql;
/* would much rather use mysql_use_result here but without knowing
* the number of rows returned we can't presize the data[] array.
*/
result = mysql_store_result( mysql );
if (!result) {
return _build_error( cmd, conn );
}
sd = (sql_data_t *) pcalloc(cmd->tmp_pool, sizeof(sql_data_t));
sd->rnum = (unsigned long) mysql_num_rows(result);
sd->fnum = (unsigned long) mysql_num_fields(result);
cnt = sd->rnum * sd->fnum;
data = (char **) pcalloc( cmd->tmp_pool, sizeof(char *) * (cnt + 1) );
while ((row = mysql_fetch_row( result ))) {
for (cnt = 0; cnt < sd->fnum; cnt++)
data[i++] = pstrdup(cmd->tmp_pool, row[cnt]);
}
/* at this point either we finished correctly or an error occurred in the
* fetch. Do the right thing.
*/
if ( mysql_errno( mysql ) ) {
mr = _build_error( cmd, conn );
mysql_free_result( result );
return mr;
}
mysql_free_result( result );
data[i] = NULL;
sd->data = data;
return mod_create_data( cmd, (void *) sd );
}
/*
* cmd_open: attempts to open a named connection to the database.
*
* Inputs:
* cmd->argv[0]: connection name
*
* Returns:
* either a properly filled error modret_t if a connection could not be
* opened, or a simple non-error modret_t.
*
* Notes:
* mod_sql depends on these semantics -- a backend should not open
* a connection unless mod_sql requests it, nor close one unless
* mod_sql requests it. Connection counting is *REQUIRED* for complete
* compatibility; a connection should not be closed unless the count
* reaches 0, and ideally will not need to be re-opened for counts > 1.
*/
MODRET cmd_open(cmd_rec *cmd) {
conn_entry_t *entry = NULL;
db_conn_t *conn = NULL;
sql_log(DEBUG_FUNC, "%s", "entering \tmysql cmd_open");
_sql_check_cmd(cmd, "cmd_open" );
if (cmd->argc < 1) {
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_open");
return ERROR_MSG(cmd, MOD_SQL_MYSQL_VERSION, "badly formed request");
}
/* get the named connection */
if (!(entry = _sql_get_connection( cmd->argv[0]))) {
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_open");
return ERROR_MSG(cmd, MOD_SQL_MYSQL_VERSION, "unknown named connection");
}
conn = (db_conn_t *) entry->data;
/* if we're already open (connections > 0) increment connections
* reset our timer if we have one, and return HANDLED
*/
if ((entry->connections > 0) && (!mysql_ping(conn->mysql))) {
entry->connections++;
if (entry->timer)
pr_timer_reset(entry->timer, &sql_mysql_module);
sql_log(DEBUG_INFO, "connection '%s' count is now %d", entry->name,
entry->connections);
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_open");
return HANDLED(cmd);
}
/* Make sure we have a new conn struct */
conn->mysql = mysql_init(NULL);
if (!conn->mysql) {
pr_log_pri(PR_LOG_ERR, MOD_SQL_MYSQL_VERSION
": failed to allocate memory for MYSQL structure. Shutting down.");
sql_log(DEBUG_WARN, "%s", "failed to allocate memory for MYSQL structure. "
"Shutting down.");
end_login(1);
}
/* Make sure the MySQL config files are read in. This will read in
* options from group "client" in the MySQL .cnf files.
*/
mysql_options(conn->mysql, MYSQL_READ_DEFAULT_GROUP, "client");
if (!mysql_real_connect(conn->mysql, conn->host, conn->user, conn->pass,
conn->db, (int) strtol(conn->port, (char **) NULL, 10), NULL,
CLIENT_INTERACTIVE)) {
/* If it didn't work, return an error. */
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_open");
return _build_error(cmd, conn);
}
/* bump connections */
entry->connections++;
/* set up our timer if necessary */
if (entry->ttl > 0) {
entry->timer = pr_timer_add(entry->ttl, -1, &sql_mysql_module,
_sql_timer_callback);
sql_log(DEBUG_INFO, "connection '%s' - %d second timer started",
entry->name, entry->ttl);
/* timed connections get re-bumped so they don't go away when cmd_close
* is called.
*/
entry->connections++;
}
/* return HANDLED */
sql_log(DEBUG_INFO, "connection '%s' opened", entry->name);
sql_log(DEBUG_INFO, "connection '%s' count is now %d", entry->name,
entry->connections);
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_open");
return HANDLED(cmd);
}
/*
* cmd_close: attempts to close the named connection.
*
* Inputs:
* cmd->argv[0]: connection name
* Optional:
* cmd->argv[1]: close immediately
*
* Returns:
* either a properly filled error modret_t if a connection could not be
* closed, or a simple non-error modret_t. For the case of mod_sql_mysql,
* there are no error codes returned by the close call; other backends
* may be able to return a useful error message.
*
* Notes:
* mod_sql depends on these semantics -- a backend should not open
* a connection unless mod_sql requests it, nor close one unless
* mod_sql requests it. Connection counting is *REQUIRED* for complete
* compatibility; a connection should not be closed unless the count
* reaches 0, and should not need to be re-opened for counts > 1.
*
* If argv[1] exists and is not NULL, the connection should be immediately
* closed and the connection count should be reset to 0.
*/
MODRET cmd_close(cmd_rec *cmd) {
conn_entry_t *entry = NULL;
db_conn_t *conn = NULL;
sql_log(DEBUG_FUNC, "%s", "entering \tmysql cmd_close");
_sql_check_cmd(cmd, "cmd_close");
if ((cmd->argc < 1) || (cmd->argc > 2)) {
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_close");
return ERROR_MSG(cmd, MOD_SQL_MYSQL_VERSION, "badly formed request");
}
/* get the named connection */
if (!(entry = _sql_get_connection( cmd->argv[0] ))) {
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_close");
return ERROR_MSG(cmd, MOD_SQL_MYSQL_VERSION, "unknown named connection");
}
conn = (db_conn_t *) entry->data;
/* if we're closed already (connections == 0) return HANDLED */
if (entry->connections == 0) {
sql_log(DEBUG_INFO, "connection '%s' count is now %d", entry->name,
entry->connections);
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_close");
return HANDLED(cmd);
}
/* decrement connections. If our count is 0 or we received a second arg
* close the connection, explicitly set the counter to 0, and remove any
* timers.
*/
if (((--entry->connections) == 0 ) || ((cmd->argc == 2) && (cmd->argv[1]))) {
mysql_close(conn->mysql);
conn->mysql = NULL;
entry->connections = 0;
if (entry->timer) {
pr_timer_remove(entry->timer, &sql_mysql_module);
entry->timer = 0;
sql_log(DEBUG_INFO, "connection '%s' - timer stopped", entry->name);
}
sql_log(DEBUG_INFO, "connection '%s' closed", entry->name);
}
sql_log(DEBUG_INFO, "connection '%s' count is now %d", entry->name,
entry->connections);
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_close");
return HANDLED(cmd);
}
/*
* cmd_defineconnection: takes all information about a database
* connection and stores it for later use.
*
* Inputs:
* cmd->argv[0]: connection name
* cmd->argv[1]: username portion of the SQLConnectInfo directive
* cmd->argv[2]: password portion of the SQLConnectInfo directive
* cmd->argv[3]: info portion of the SQLConnectInfo directive
* Optional:
* cmd->argv[4]: time-to-live in seconds
*
* Returns:
* either a properly filled error modret_t if the connection could not
* defined, or a simple non-error modret_t.
*
* Notes:
* time-to-live is the length of time to allow a connection to remain unused;
* once that amount of time has passed, a connection should be closed and
* it's connection count should be reduced to 0. If ttl is 0, or ttl is not
* a number or ttl is negative, the connection will be assumed to have no
* associated timer.
*/
MODRET cmd_defineconnection(cmd_rec *cmd)
{
char *info = NULL;
char *name = NULL;
char *db = NULL;
char *host = NULL;
char *port = NULL;
char *havehost = NULL;
char *haveport = NULL;
conn_entry_t *entry = NULL;
db_conn_t *conn = NULL;
sql_log(DEBUG_FUNC, "%s", "entering \tmysql cmd_defineconnection");
_sql_check_cmd(cmd, "cmd_defineconnection");
if ((cmd->argc < 4) || (cmd->argc > 5) || (!cmd->argv[0])) {
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_defineconnection");
return ERROR_MSG(cmd, MOD_SQL_MYSQL_VERSION, "badly formed request");
}
conn = (db_conn_t *) palloc(conn_pool, sizeof(db_conn_t));
name = pstrdup(conn_pool, cmd->argv[0]);
conn->user = pstrdup(conn_pool, cmd->argv[1]);
conn->pass = pstrdup(conn_pool, cmd->argv[2]);
info = cmd->argv[3];
db = pstrdup(cmd->tmp_pool, info);
havehost = strchr(db, '@');
haveport = strchr(db, ':');
/*
* if haveport, parse it, otherwise default it.
* if haveport, set it to '\0'
*
* if havehost, parse it, otherwise default it.
* if havehost, set it to '\0'
*/
if (haveport) {
port = haveport + 1;
*haveport = '\0';
} else {
port = _MYSQL_PORT;
}
if (havehost) {
host = havehost + 1;
*havehost = '\0';
} else {
host = "localhost";
}
conn->host = pstrdup(conn_pool, host);
conn->db = pstrdup(conn_pool, db);
conn->port = pstrdup(conn_pool, port);
/* insert the new conn_info into the connection hash */
if (!(entry = _sql_add_connection(conn_pool, name, (void *) conn))) {
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_defineconnection");
return ERROR_MSG(cmd, MOD_SQL_MYSQL_VERSION,
"named connection already exists");
}
entry->ttl = (cmd->argc == 5) ?
(int) strtol(cmd->argv[4], (char **)NULL, 10) : 0;
if (entry->ttl < 0)
entry->ttl = 0;
entry->timer = 0;
entry->connections = 0;
sql_log(DEBUG_INFO, " name: '%s'", entry->name);
sql_log(DEBUG_INFO, " user: '%s'", conn->user);
sql_log(DEBUG_INFO, " host: '%s'", conn->host);
sql_log(DEBUG_INFO, " db: '%s'", conn->db);
sql_log(DEBUG_INFO, " port: '%s'", conn->port);
sql_log(DEBUG_INFO, " ttl: '%d'", entry->ttl);
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_defineconnection");
return HANDLED(cmd);
}
/*
* cmd_exit: closes all open connections.
*
* Inputs:
* None
*
* Returns:
* A simple non-error modret_t.
*/
static modret_t *cmd_exit(cmd_rec *cmd) {
register unsigned int i = 0;
sql_log(DEBUG_FUNC, "%s", "entering \tmysql cmd_exit");
for (i = 0; i < conn_cache->nelts; i++) {
conn_entry_t *entry = ((conn_entry_t **) conn_cache->elts)[i];
if (entry->connections > 0) {
cmd_rec *close_cmd = _sql_make_cmd(conn_pool, 2, entry->name, "1");
cmd_close(close_cmd);
destroy_pool(close_cmd->pool);
}
}
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_exit");
return HANDLED(cmd);
}
/*
* cmd_select: executes a SELECT query. properly constructing the query
* based on the inputs. See mod_sql.h for the definition of the _sql_data
* structure which is used to return the result data.
*
* cmd_select takes either exactly two inputs, or more than two. If only
* two inputs are given, the second is a monolithic query string. See
* the examples below.
*
* Inputs:
* cmd->argv[0]: connection name
* cmd->argv[1]: table
* cmd->argv[2]: select string
* Optional:
* cmd->argv[3]: where clause
* cmd->argv[4]: requested number of return rows (LIMIT)
*
* etc. : other options, such as "GROUP BY", "ORDER BY",
* and "DISTINCT" will start at cmd->arg[5]. All
* backends MUST support 'DISTINCT', the other
* arguments are optional (but encouraged).
*
* Returns:
* either a properly filled error modret_t if the select failed, or a
* modret_t with the result data filled in.
*
* Example:
* These are example queries that would be executed for MySQL; other
* backends will have different SQL syntax.
*
* argv[] = "default","user","userid, count", "userid='aah'","2"
* query = "SELECT userid, count FROM user WHERE userid='aah' LIMIT 2"
*
* argv[] = "default","usr1, usr2","usr1.foo, usr2.bar"
* query = "SELECT usr1.foo, usr2.bar FROM usr1, usr2"
*
* argv[] = "default","usr1","foo",,,"DISTINCT"
* query = "SELECT DISTINCT foo FROM usr1"
*
* argv[] = "default","bar FROM usr1 WHERE tmp=1 ORDER BY bar"
* query = "SELECT bar FROM usr1 WHERE tmp=1 ORDER BY bar"
*
* Notes:
* certain selects could return huge amounts of data. do whatever is
* possible to minimize the amount of data copying here.
*/
MODRET cmd_select(cmd_rec *cmd) {
conn_entry_t *entry = NULL;
db_conn_t *conn = NULL;
modret_t *cmr = NULL;
modret_t *dmr = NULL;
char *query = NULL;
int cnt = 0;
cmd_rec *close_cmd;
sql_log(DEBUG_FUNC, "%s", ": entering \tmysql cmd_select");
_sql_check_cmd(cmd, "cmd_select");
if (cmd->argc < 2) {
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_select");
return ERROR_MSG(cmd, MOD_SQL_MYSQL_VERSION, "badly formed request");
}
/* get the named connection */
entry = _sql_get_connection( cmd->argv[0] );
if (!entry) {
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_select");
return ERROR_MSG(cmd, MOD_SQL_MYSQL_VERSION, "unknown named connection");
}
conn = (db_conn_t *) entry->data;
cmr = cmd_open(cmd);
if (MODRET_ERROR(cmr)) {
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_select");
return cmr;
}
/* construct the query string */
if (cmd->argc == 2) {
query = pstrcat(cmd->tmp_pool, "SELECT ", cmd->argv[1], NULL);
} else {
query = pstrcat( cmd->tmp_pool, cmd->argv[2], " FROM ",
cmd->argv[1], NULL );
if ((cmd->argc > 3) && (cmd->argv[3]))
query = pstrcat( cmd->tmp_pool, query, " WHERE ", cmd->argv[3], NULL );
if ((cmd->argc > 4) && (cmd->argv[4]))
query = pstrcat( cmd->tmp_pool, query, " LIMIT ", cmd->argv[4], NULL );
if (cmd->argc > 5) {
/* handle the optional arguments -- they're rare, so in this case
* we'll play with the already constructed query string, but in
* general we should probably take optional arguments into account
* and put the query string together later once we know what they are.
*/
for (cnt=5; cnt < cmd->argc; cnt++) {
if ((cmd->argv[cnt]) && !strcasecmp("DISTINCT",cmd->argv[cnt])) {
query = pstrcat( cmd->tmp_pool, "DISTINCT ", query, NULL);
}
}
}
query = pstrcat( cmd->tmp_pool, "SELECT ", query, NULL);
}
/* log the query string */
sql_log( DEBUG_INFO, "query \"%s\"", query);
/* perform the query. if it doesn't work, log the error, close the
* connection then return the error from the query processing.
*/
if ( mysql_real_query( conn->mysql, query, strlen(query) ) ) {
dmr = _build_error( cmd, conn );
close_cmd = _sql_make_cmd( cmd->tmp_pool, 1, entry->name );
cmd_close(close_cmd);
SQL_FREE_CMD(close_cmd);
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_select");
return dmr;
}
/* get the data. if it doesn't work, log the error, close the
* connection then return the error from the data processing.
*/
dmr = _build_data( cmd, conn );
if (MODRET_ERROR(dmr)) {
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_select");
close_cmd = _sql_make_cmd( cmd->tmp_pool, 1, entry->name );
cmd_close(close_cmd);
SQL_FREE_CMD(close_cmd);
return dmr;
}
/* close the connection, return the data. */
close_cmd = _sql_make_cmd( cmd->tmp_pool, 1, entry->name );
cmd_close(close_cmd);
SQL_FREE_CMD(close_cmd);
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_select");
return dmr;
}
/*
* cmd_insert: executes an INSERT query, properly constructing the query
* based on the inputs.
*
* cmd_insert takes either exactly two inputs, or exactly four. If only
* two inputs are given, the second is a monolithic query string. See
* the examples below.
*
* Inputs:
* cmd->argv[0]: connection name
* cmd->argv[1]: table
* cmd->argv[2]: field string
* cmd->argv[3]: value string
*
* Returns:
* either a properly filled error modret_t if the insert failed, or a
* simple non-error modret_t.
*
* Example:
* These are example queries that would be executed for MySQL; other
* backends will have different SQL syntax.
*
* argv[] = "default","log","userid, date, count", "'aah', now(), 2"
* query = "INSERT INTO log (userid, date, count) VALUES ('aah', now(), 2)"
*
* argv[] = "default"," INTO foo VALUES ('do','re','mi','fa')"
* query = "INSERT INTO foo VALUES ('do','re','mi','fa')"
*
* Notes:
* none
*/
MODRET cmd_insert(cmd_rec *cmd) {
conn_entry_t *entry = NULL;
db_conn_t *conn = NULL;
modret_t *cmr = NULL;
modret_t *dmr = NULL;
char *query = NULL;
cmd_rec *close_cmd;
sql_log(DEBUG_FUNC, "%s", "entering \tmysql cmd_insert");
_sql_check_cmd(cmd, "cmd_insert");
if ((cmd->argc != 2) && (cmd->argc != 4)) {
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_insert");
return ERROR_MSG(cmd, MOD_SQL_MYSQL_VERSION, "badly formed request");
}
/* get the named connection */
entry = _sql_get_connection(cmd->argv[0]);
if (!entry) {
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_insert");
return ERROR_MSG(cmd, MOD_SQL_MYSQL_VERSION, "unknown named connection");
}
conn = (db_conn_t *) entry->data;
cmr = cmd_open(cmd);
if (MODRET_ERROR(cmr)) {
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_insert");
return cmr;
}
/* construct the query string */
if (cmd->argc == 2) {
query = pstrcat(cmd->tmp_pool, "INSERT ", cmd->argv[1], NULL);
} else {
query = pstrcat( cmd->tmp_pool, "INSERT INTO ", cmd->argv[1], " (",
cmd->argv[2], ") VALUES (", cmd->argv[3], ")",
NULL );
}
/* log the query string */
sql_log(DEBUG_INFO, "query \"%s\"", query);
/* perform the query. if it doesn't work, log the error, close the
* connection (and log any errors there, too) then return the error
* from the query processing.
*/
if ( mysql_real_query( conn->mysql, query, strlen(query) ) ) {
dmr = _build_error( cmd, conn );
close_cmd = _sql_make_cmd( cmd->tmp_pool, 1, entry->name );
cmd_close(close_cmd);
SQL_FREE_CMD(close_cmd);
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_insert");
return dmr;
}
/* close the connection and return HANDLED. */
close_cmd = _sql_make_cmd( cmd->tmp_pool, 1, entry->name );
cmd_close(close_cmd);
SQL_FREE_CMD(close_cmd);
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_insert");
return HANDLED(cmd);
}
/*
* cmd_update: executes an UPDATE query, properly constructing the query
* based on the inputs.
*
* cmd_update takes either exactly two, three, or four inputs. If only
* two inputs are given, the second is a monolithic query string. See
* the examples below.
*
* Inputs:
* cmd->argv[0]: connection name
* cmd->argv[1]: table
* cmd->argv[2]: update string
* Optional:
* cmd->argv[3]: where string
*
* Returns:
* either a properly filled error modret_t if the update failed, or a
* simple non-error modret_t. *
*
* Example:
* These are example queries that would be executed for MySQL; other
* backends will have different SQL syntax.
*
* argv[] = "default","user","count=count+1", "userid='joesmith'"
* query = "UPDATE user SET count=count+1 WHERE userid='joesmith'"
*
* Notes:
* argv[3] is optional -- it may be NULL, or it may not exist at all.
* make sure this is handled correctly.
*/
MODRET cmd_update(cmd_rec *cmd) {
conn_entry_t *entry = NULL;
db_conn_t *conn = NULL;
modret_t *cmr = NULL;
modret_t *dmr = NULL;
char *query = NULL;
cmd_rec *close_cmd;
sql_log(DEBUG_FUNC, "%s", "entering \tmysql cmd_update");
_sql_check_cmd(cmd, "cmd_update");
if ((cmd->argc < 2) || (cmd->argc > 4)) {
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_update");
return ERROR_MSG(cmd, MOD_SQL_MYSQL_VERSION, "badly formed request");
}
/* get the named connection */
entry = _sql_get_connection(cmd->argv[0]);
if (!entry) {
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_update");
return ERROR_MSG(cmd, MOD_SQL_MYSQL_VERSION, "unknown named connection");
}
conn = (db_conn_t *) entry->data;
cmr = cmd_open(cmd);
if (MODRET_ERROR(cmr)) {
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_update");
return cmr;
}
if (cmd->argc == 2) {
query = pstrcat(cmd->tmp_pool, "UPDATE ", cmd->argv[1], NULL);
} else {
/* construct the query string */
query = pstrcat( cmd->tmp_pool, "UPDATE ", cmd->argv[1], " SET ",
cmd->argv[2], NULL );
if ((cmd->argc > 3) && (cmd->argv[3]))
query = pstrcat( cmd->tmp_pool, query, " WHERE ", cmd->argv[3], NULL );
}
/* log the query string */
sql_log(DEBUG_INFO, "query \"%s\"", query);
/* perform the query. if it doesn't work close the connection, then
* return the error from the query processing.
*/
if ( mysql_real_query( conn->mysql, query, strlen(query) ) ) {
dmr = _build_error( cmd, conn );
close_cmd = _sql_make_cmd( cmd->tmp_pool, 1, entry->name );
cmd_close(close_cmd);
SQL_FREE_CMD(close_cmd);
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_update");
return dmr;
}
/* close the connection, return HANDLED. */
close_cmd = _sql_make_cmd( cmd->tmp_pool, 1, entry->name );
cmd_close(close_cmd);
SQL_FREE_CMD(close_cmd);
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_update");
return HANDLED(cmd);
}
/*
* cmd_procedure: executes a stored procedure.
*
* Inputs:
* cmd->argv[0]: connection name
* cmd->argv[1]: procedure name
* cmd->argv[2]: procedure string
*
* Returns:
* either a properly filled error modret_t if the procedure failed in
* some way, or a modret_t with the result data. If a procedure
* returns data, it should be returned in the same way as cmd_select.
*
* Notes:
* not every backend will support stored procedures. Backends which do
* not support stored procedures should return an error with a descriptive
* error message (something like 'backend does not support procedures').
*/
MODRET cmd_procedure(cmd_rec *cmd) {
sql_log(DEBUG_FUNC, "%s", "entering \tmysql cmd_procedure");
_sql_check_cmd(cmd, "cmd_procedure");
if (cmd->argc != 3) {
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_procedure");
return ERROR_MSG(cmd, MOD_SQL_MYSQL_VERSION, "badly formed request");
}
/* MySQL does not support procedures. Nothing to do. */
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_procedure");
return ERROR_MSG(cmd, MOD_SQL_MYSQL_VERSION,
"backend does not support procedures");
}
/*
* cmd_query: executes a freeform query string, with no syntax checking.
*
* cmd_query takes exactly two inputs, the connection and the query string.
*
* Inputs:
* cmd->argv[0]: connection name
* cmd->argv[1]: query string
*
* Returns:
* depending on the query type, returns a modret_t with data, a non-error
* modret_t, or a properly filled error modret_t if the query failed.
*
* Example:
* None. The query should be passed directly to the backend database.
*
* Notes:
* None.
*/
MODRET cmd_query(cmd_rec *cmd) {
conn_entry_t *entry = NULL;
db_conn_t *conn = NULL;
modret_t *cmr = NULL;
modret_t *dmr = NULL;
char *query = NULL;
cmd_rec *close_cmd;
sql_log(DEBUG_FUNC, "%s", "entering \tmysql cmd_query");
_sql_check_cmd(cmd, "cmd_query");
if (cmd->argc != 2) {
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_query");
return ERROR_MSG(cmd, MOD_SQL_MYSQL_VERSION, "badly formed request");
}
/* get the named connection */
entry = _sql_get_connection(cmd->argv[0]);
if (!entry) {
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_query");
return ERROR_MSG(cmd, MOD_SQL_MYSQL_VERSION, "unknown named connection");
}
conn = (db_conn_t *) entry->data;
cmr = cmd_open(cmd);
if (MODRET_ERROR(cmr)) {
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_query");
return cmr;
}
query = pstrcat(cmd->tmp_pool, cmd->argv[1], NULL);
/* log the query string */
sql_log(DEBUG_INFO, "query \"%s\"", query);
/* perform the query. if it doesn't work close the connection, then
* return the error from the query processing.
*/
if ( mysql_real_query( conn->mysql, query, strlen(query) ) ) {
dmr = _build_error( cmd, conn );
close_cmd = _sql_make_cmd( cmd->tmp_pool, 1, entry->name );
cmd_close(close_cmd);
SQL_FREE_CMD(close_cmd);
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_query");
return dmr;
}
/* get data if necessary. if it doesn't work, log the error, close the
* connection then return the error from the data processing.
*/
if ( mysql_field_count( conn->mysql ) ) {
dmr = _build_data( cmd, conn );
if (MODRET_ERROR(dmr)) {
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_query");
}
} else {
dmr = HANDLED(cmd);
}
/* close the connection, return the data. */
close_cmd = _sql_make_cmd( cmd->tmp_pool, 1, entry->name );
cmd_close(close_cmd);
SQL_FREE_CMD(close_cmd);
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_query");
return dmr;
}
/*
* cmd_escapestring: certain strings sent to a database should be properly
* escaped -- for instance, quotes need to be escaped to insure that
* a query string is properly formatted. cmd_escapestring does whatever
* is necessary to escape the special characters in a string.
*
* Inputs:
* cmd->argv[0]: connection name
* cmd->argv[1]: string to escape
*
* Returns:
* this command CANNOT fail. The return string is null-terminated and
* stored in the data field of the modret_t structure.
*
* Notes:
* Different languages may escape different characters in different ways.
* A backend should handle this correctly, where possible. If there is
* no client library function to do the string conversion, it is strongly
* recommended that the backend module writer do whatever is necessry (read
* the database documentation and figure it out) to do the conversion
* themselves in this function.
*
* A backend MUST supply a working escapestring implementation. Simply
* copying the data from argv[0] into the data field of the modret allows
* for possible SQL injection attacks when this backend is used.
*/
MODRET cmd_escapestring(cmd_rec * cmd) {
conn_entry_t *entry = NULL;
db_conn_t *conn = NULL;
char *unescaped = NULL;
char *escaped = NULL;
sql_log(DEBUG_FUNC, "%s", "entering \tmysql cmd_escapestring");
_sql_check_cmd(cmd, "cmd_escapestring");
if (cmd->argc != 2) {
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_escapestring");
return ERROR_MSG(cmd, MOD_SQL_MYSQL_VERSION, "badly formed request");
}
/* get the named connection */
entry = _sql_get_connection(cmd->argv[0]);
if (!entry) {
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_escapestring");
return ERROR_MSG(cmd, MOD_SQL_MYSQL_VERSION, "unknown named connection");
}
conn = (db_conn_t *) entry->data;
unescaped = cmd->argv[1];
escaped = (char *) pcalloc(cmd->tmp_pool, sizeof(char) *
(strlen(unescaped) * 2) + 1);
/* Note: the mysql_real_escape_string() function appeared in the C API
* as of MySQL 3.23.14; this macro allows functioning with older mysql
* installations.
*/
#if MYSQL_VERSION_ID >= 32314
mysql_real_escape_string(conn->mysql, escaped, unescaped, strlen(unescaped));
#else
mysql_escape_string(escaped, unescaped, strlen(unescaped));
#endif
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_escapestring");
return mod_create_data(cmd, (void *) escaped);
}
/*
* cmd_checkauth: some backend databases may provide backend-specific
* methods to check passwords. This function takes a cleartext password
* and a hashed password and checks to see if they are the same.
*
* Inputs:
* cmd->argv[0]: connection name
* cmd->argv[1]: cleartext string
* cmd->argv[2]: hashed string
*
* Returns:
* HANDLED(cmd) -- passwords match
* ERROR_INT(cmd, PR_AUTH_NOPWD) -- missing password
* ERROR_INT(cmd, PR_AUTH_BADPWD) -- passwords don't match
* ERROR_INT(cmd, PR_AUTH_DISABLEPWD) -- password is disabled
* ERROR_INT(cmd, PR_AUTH_AGEPWD) -- password is aged
* ERROR(cmd) -- unknown error
*
* Notes:
* If this backend does not provide this functionality, this cmd *must*
* return ERROR.
*/
MODRET cmd_checkauth(cmd_rec * cmd) {
conn_entry_t *entry = NULL;
db_conn_t *conn = NULL;
char scrambled[256]={'\0'};
char *c_clear = NULL;
char *c_hash = NULL;
int success = 0;
sql_log(DEBUG_FUNC, "%s", "entering \tmysql cmd_checkauth");
_sql_check_cmd(cmd, "cmd_checkauth");
if (cmd->argc != 3) {
sql_log(DEBUG_FUNC, "exiting \tmysql cmd_checkauth");
return ERROR_MSG(cmd, MOD_SQL_MYSQL_VERSION, "badly formed request");
}
/* get the named connection -- not used in this case, but for consistency */
entry = _sql_get_connection( cmd->argv[0] );
if (!entry) {
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_checkauth");
return ERROR_MSG(cmd, MOD_SQL_MYSQL_VERSION, "unknown named connection");
}
if (cmd->argv[1] == NULL) {
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_checkauth");
return ERROR_INT(cmd, PR_AUTH_NOPWD);
}
conn = (db_conn_t *) entry->data;
c_clear = cmd->argv[1];
c_hash = cmd->argv[2];
#if MYSQL_VERSION_ID >= 40100 && MYSQL_VERSION_ID < 40101
make_scrambled_password(scrambled, c_clear, 1, NULL);
#else
make_scrambled_password(scrambled, c_clear);
#endif
success = !strcmp(scrambled, c_hash);
if (!success) {
#if MYSQL_VERSION_ID >= 40101
/* Try to work around MySQL's stupid handling of password length
* changes in 4.1, and the stupidity and whining of admins who
* cannot deal with those changes.
*/
memset(scrambled, '\0', sizeof(scrambled));
make_scrambled_password_323(scrambled, c_clear);
sql_log(DEBUG_FUNC, "%s",
"checking again using deprecated legacy MySQL password algorithm");
success = !strcmp(scrambled, c_hash);
if (!success)
sql_log(DEBUG_FUNC, "%s", "password mismatch");
#else
sql_log(DEBUG_FUNC, "%s", "password mismatch");
#endif
}
sql_log(DEBUG_FUNC, "%s", "exiting \tmysql cmd_checkauth");
return success ? HANDLED(cmd) : ERROR_INT(cmd, PR_AUTH_BADPWD);
}
/*
* cmd_identify: returns API information and an identification string for
* the backend handler. mod_sql will call this at initialization and
* display the identification string. The API version information is
* used by mod_sql to identify available command handlers.
*
* Inputs:
* None. The cmd->tmp_pool can be used to construct the return data, but
* do not depend on any other portion of the cmd_rec to be useful in any way.
*
* Returns:
* A sql_data_t of *exactly* this form:
* sql_data_t->rnum = 1;
* sql_data_t->fnum = 2;
* sql_data_t->data[0] = "identification string"
* sql_data_t->data[0] = "API version"
*
* Notes:
* See mod_sql.h for currently accepted APIs.
*/
MODRET cmd_identify(cmd_rec * cmd) {
sql_data_t *sd = NULL;
_sql_check_cmd(cmd, "cmd_identify");
sd = (sql_data_t *) pcalloc( cmd->tmp_pool, sizeof(sql_data_t));
sd->data = (char **) pcalloc( cmd->tmp_pool, sizeof(char *) * 2);
sd->rnum = 1;
sd->fnum = 2;
sd->data[0] = MOD_SQL_MYSQL_VERSION;
sd->data[1] = MOD_SQL_API_V1;
return mod_create_data(cmd, (void *) sd);
}
/* SQL cmdtable: mod_sql requires each backend module to define a cmdtable
* with this exact name. ALL these functions must be defined; mod_sql checks
* that they all exist on startup and ProFTPD will refuse to start if they
* aren't defined.
*/
static cmdtable sql_mysql_cmdtable[] = {
{ CMD, "sql_open", G_NONE, cmd_open, FALSE, FALSE },
{ CMD, "sql_close", G_NONE, cmd_close, FALSE, FALSE },
{ CMD, "sql_defineconnection", G_NONE, cmd_defineconnection, FALSE, FALSE },
{ CMD, "sql_exit", G_NONE, cmd_exit, FALSE, FALSE },
{ CMD, "sql_select", G_NONE, cmd_select, FALSE, FALSE },
{ CMD, "sql_insert", G_NONE, cmd_insert, FALSE, FALSE },
{ CMD, "sql_update", G_NONE, cmd_update, FALSE, FALSE },
{ CMD, "sql_procedure", G_NONE, cmd_procedure, FALSE, FALSE },
{ CMD, "sql_query", G_NONE, cmd_query, FALSE, FALSE },
{ CMD, "sql_escapestring", G_NONE, cmd_escapestring, FALSE, FALSE },
{ CMD, "sql_checkauth", G_NONE, cmd_checkauth, FALSE, FALSE },
{ CMD, "sql_identify", G_NONE, cmd_identify, FALSE, FALSE },
{ 0, NULL }
};
/* Event handlers
*/
static void sql_mysql_mod_load_ev(const void *event_data, void *user_data) {
if (strcmp("mod_sql_mysql.c", (const char *) event_data) == 0) {
/* Register ourselves with mod_sql. */
if (sql_register_backend("mysql", sql_mysql_cmdtable) < 0) {
pr_log_pri(PR_LOG_NOTICE, MOD_SQL_MYSQL_VERSION
": notice: error registering backend: %s", strerror(errno));
end_login(1);
}
}
}
static void sql_mysql_mod_unload_ev(const void *event_data, void *user_data) {
if (strcmp("mod_sql_mysql.c", (const char *) event_data) == 0) {
/* Unegister ourselves with mod_sql. */
if (sql_unregister_backend("mysql") < 0) {
pr_log_pri(PR_LOG_NOTICE, MOD_SQL_MYSQL_VERSION
": notice: error unregistering backend: %s", strerror(errno));
end_login(1);
}
/* Unregister ourselves from all events. */
pr_event_unregister(&sql_mysql_module, NULL, NULL);
}
}
/* Initialization routines
*/
static int sql_mysql_init(void) {
/* Register listeners for the load and unload events. */
pr_event_register(&sql_mysql_module, "core.module-load",
sql_mysql_mod_load_ev, NULL);
pr_event_register(&sql_mysql_module, "core.module-unload",
sql_mysql_mod_unload_ev, NULL);
return 0;
}
static int sql_mysql_sess_init(void) {
conn_pool = make_sub_pool(session.pool);
conn_cache = make_array(make_sub_pool(session.pool), DEF_CONN_POOL_SIZE,
sizeof(conn_entry_t));
return 0;
}
/*
* sql_mysql_module: The standard module struct for all ProFTPD modules.
* We use the pre-fork handler to initialize the conn_cache array header.
* Other backend modules may not need any init functions, or may need
* to extend the init functions to initialize other internal variables.
*/
module sql_mysql_module = {
/* Always NULL */
NULL, NULL,
/* Module API version */
0x20,
/* Module name */
"sql_mysql",
/* Module configuration directive handlers */
NULL,
/* Module command handlers */
NULL,
/* Module authentication handlers */
NULL,
/* Module initialization */
sql_mysql_init,
/* Session initialization */
sql_mysql_sess_init,
/* Module version */
MOD_SQL_MYSQL_VERSION
};
|