/* * rlm_sqlhpwippool.c * Chooses an IPv4 address from pools defined in ASN Netvim * * Version: $Id: rlm_sqlhpwippool.c,v 1.1.2.2 2007/02/27 11:30:26 pnixon Exp $ * * 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 * * Copyright (c) 2005-2006 Pawel Foremski , * 2000-2006 The FreeRADIUS server project * * Current bugs/limits: * - probably works only with newer versions of MySQL (subqueries) * - requires FreeRADIUS' SQL user to have proper permissions on proper tables * from Netvim database * - of course uses dirty hacks to get access to the database * - queries and table names are not configurable * - IPv4 only (I don't even care about IPv6 by now) * - pool names (fetched from database) are not "escaped" * - you have to set encoding of radius.acctuniqueid to same as * netvim.ips.rsv_by */ #include "config.h" #include "autoconf.h" #include "libradius.h" #include #include #include #include #include #include #include "radiusd.h" #include "modules.h" #include "conffile.h" #include "modpriv.h" #include "rlm_sql.h" #define VENDOR_ASN 23782 #define ASN_IP_POOL_NAME 1 #define PW_ASN_IP_POOL_NAME (ASN_IP_POOL_NAME | (VENDOR_ASN << 16)) #define RLM_NETVIM_LOG_FMT "rlm_sqlhpwippool(%s, line %u): %s" #define RLM_NETVIM_MAX_ROWS 1000000 #define RLM_NETVIM_TMP_PREFIX "auth-tmp-" static const char rcsid[] = "$Id: rlm_sqlhpwippool.c,v 1.1.2.2 2007/02/27 11:30:26 pnixon Exp $"; typedef struct rlm_sqlhpwippool_t { const char *myname; /* name of this instance */ SQL_INST *sqlinst; /* SQL_INST for requested instance */ rlm_sql_module_t *db; /* here the fun takes place ;-) */ #ifdef HAVE_PTHREAD_D pthread_mutex_t mutex; /* used "with" syncafter */ #endif int sincesync; /* req. done so far since last free IP sync. */ /* from config */ char *sqlinst_name; /* rlm_sql instance to use */ char *db_name; /* netvim database */ int nofreefail; /* fail if no free IP addresses found */ int freeafter; /* how many seconds an IP should not be used after freeing */ int syncafter; /* how often to sync with radacct */ } rlm_sqlhpwippool_t; /* char *name, int type, * size_t offset, void *data, char *dflt */ static CONF_PARSER module_config[] = { { "sqlinst_name", PW_TYPE_STRING_PTR, offsetof(rlm_sqlhpwippool_t, sqlinst_name), NULL, "sql" }, { "db_name", PW_TYPE_STRING_PTR, offsetof(rlm_sqlhpwippool_t, db_name), NULL, "netvim" }, { "nofreefail", PW_TYPE_BOOLEAN, offsetof(rlm_sqlhpwippool_t, nofreefail), NULL, "yes" }, { "freeafter", PW_TYPE_INTEGER, offsetof(rlm_sqlhpwippool_t, freeafter), NULL, "300" }, { "syncafter", PW_TYPE_INTEGER, offsetof(rlm_sqlhpwippool_t, syncafter), NULL, "25" }, { NULL, -1, 0, NULL, NULL } /* end */ }; /* wrapper around radlog which adds prefix with module and instance name */ static int nvp_log(unsigned int line, rlm_sqlhpwippool_t *data, int lvl, const char *fmt, ...) { va_list ap; int r; char pfmt[4096]; /* prefix log message with RLM_NETVIM_LOG_FMT */ snprintf(pfmt, sizeof(pfmt), RLM_NETVIM_LOG_FMT, data->myname, line, fmt); va_start(ap, fmt); r = vradlog(lvl, pfmt, ap); va_end(ap); return r; } /* handy SQL query tool */ static int nvp_vquery(unsigned int line, rlm_sqlhpwippool_t *data, SQLSOCK *sqlsock, const char *fmt, va_list ap) { char query[MAX_QUERY_LEN]; vsnprintf(query, MAX_QUERY_LEN, fmt, ap); if (rlm_sql_query(sqlsock, data->sqlinst, query)) { nvp_log(__LINE__, data, L_ERR, "nvp_vquery(): query from line %u: %s", line, (char *)(data->db->sql_error)(sqlsock, data->sqlinst->config)); return 0; } return 1; } /* wrapper around nvp_vquery */ static int nvp_query(unsigned int line, rlm_sqlhpwippool_t *data, SQLSOCK *sqlsock, const char *fmt, ...) { int r; va_list ap; va_start(ap, fmt); r = nvp_vquery(line, data, sqlsock, fmt, ap); va_end(ap); return r; } /* handy wrapper around data->db->sql_finish_query() */ static int nvp_finish(rlm_sqlhpwippool_t *data, SQLSOCK *sqlsock) { return (data->db->sql_finish_query)(sqlsock, data->sqlinst->config); } /* executes query and fetches first row * -1 on no results * 0 on db error * 1 on success */ static int nvp_select(unsigned int line, rlm_sqlhpwippool_t *data, SQLSOCK *sqlsock, const char *fmt, ...) { va_list ap; va_start(ap, fmt); if (!nvp_vquery(line, data, sqlsock, fmt, ap)) { va_end(ap); return 0; } va_end(ap); if ((data->db->sql_store_result)(sqlsock, data->sqlinst->config)) { nvp_log(__LINE__, data, L_ERR, "nvp_select(): error while saving results of query from line %u", line); return 0; } if ((data->db->sql_num_rows)(sqlsock, data->sqlinst->config) < 1) { nvp_log(__LINE__, data, L_DBG, "nvp_select(): no results in query from line %u", line); return -1; } if ((data->db->sql_fetch_row)(sqlsock, data->sqlinst->config)) { nvp_log(__LINE__, data, L_ERR, "nvp_select(): couldn't fetch row " "from results of query from line %u", line); return 0; } return 1; } static int nvp_select_finish(rlm_sqlhpwippool_t *data, SQLSOCK *sqlsock) { return ((data->db->sql_free_result)(sqlsock, data->sqlinst->config) || nvp_finish(data, sqlsock)); } /* frees IPs of closed sessions (eg. by external modifications to db) */ static int nvp_freeclosed(rlm_sqlhpwippool_t *data, SQLSOCK *sqlsock) { if (!nvp_query(__LINE__, data, sqlsock, "UPDATE `%s`.`ips`, `radacct` " "SET " "`ips`.`rsv_until` = `radacct`.`acctstoptime` + INTERVAL %u SECOND " "WHERE " "`radacct`.`acctstoptime` IS NOT NULL AND " /* session is closed */ "(" /* address is being used */ "`ips`.`pid` IS NOT NULL AND " "(`rsv_until` = 0 OR `rsv_until` > NOW())" ") AND " "`radacct`.`acctuniqueid` = `ips`.`rsv_by`", data->db_name, data->freeafter)) { return 0; } nvp_finish(data, sqlsock); return 1; } /* updates number of free IP addresses in pools */ static int nvp_syncfree(rlm_sqlhpwippool_t *data, SQLSOCK *sqlsock) { if (!nvp_query(__LINE__, data, sqlsock, "UPDATE `%s`.`ip_pools` " "SET `ip_pools`.`free` = " "(SELECT COUNT(*) " "FROM `%1$s`.`ips` " "WHERE " "`ips`.`ip` BETWEEN " "`ip_pools`.`ip_start` AND `ip_pools`.`ip_stop` AND " "(" "`ips`.`pid` IS NULL OR " "(`ips`.`rsv_until` > 0 AND `ips`.`rsv_until` < NOW())" "))", data->db_name)) { return 0; } nvp_finish(data, sqlsock); return 1; } /* cleanup IP pools and sync them with radacct */ static int nvp_cleanup(rlm_sqlhpwippool_t *data) { SQLSOCK *sqlsock; /* initialize the SQL socket */ sqlsock = sql_get_socket(data->sqlinst); if (!sqlsock) { nvp_log(__LINE__, data, L_ERR, "nvp_cleanup(): error while " "requesting new SQL connection"); return 0; } /* free IPs of closed sessions */ if (!nvp_freeclosed(data, sqlsock)) { sql_release_socket(data->sqlinst, sqlsock); return 0; } /* add sessions opened in the meantime */ if (!nvp_query(__LINE__, data, sqlsock, "UPDATE `%s`.`ips`, `radacct` " "SET " "`ips`.`pid` = 0, " "`ips`.`rsv_by` = `radacct`.`acctuniqueid`, " "`ips`.`rsv_since` = `radacct`.`acctstarttime`, " "`ips`.`rsv_until` = 0 " "WHERE " "`radacct`.`acctstoptime` IS NULL AND " /* session is opened */ "`ips`.`ip` = INET_ATON(`radacct`.`framedipaddress`) AND " "(" "`ips`.`pid` IS NULL OR " /* "(`ips`.`rsv_until` > 0 AND `ips.`rsv_until` < NOW()) " */ "`ips`.`rsv_until` != 0" /* no acct pkt received yet */ ")", data->db_name)) { sql_release_socket(data->sqlinst, sqlsock); return 0; } else { nvp_finish(data, sqlsock); } /* count number of free IP addresses in IP pools */ if (!nvp_syncfree(data, sqlsock)) { sql_release_socket(data->sqlinst, sqlsock); return 0; } sql_release_socket(data->sqlinst, sqlsock); return 1; } static int sqlhpwippool_detach(void *instance) { rlm_sqlhpwippool_t *data = (rlm_sqlhpwippool_t *) instance; /* (*data) is zeroed on instantiation */ if (data->sqlinst_name) free(data->sqlinst_name); if (data->db_name) free(data->db_name); free(data); return 0; } /* standard foobar code */ static int sqlhpwippool_instantiate(CONF_SECTION *conf, void **instance) { rlm_sqlhpwippool_t *data; module_instance_t *modinst; /* set up a storage area for instance data */ data = rad_malloc(sizeof(*data)); if (!data) return -1; memset(data, 0, sizeof(*data)); /* so _detach will know what to free */ /* fail if the configuration parameters can't be parsed */ if (cf_section_parse(conf, data, module_config) < 0) { sqlhpwippool_detach(*instance); return -1; } /* save my name */ data->myname = cf_section_name2(conf); if (!data->myname) { data->myname = "(no name)"; } data->sincesync = 0; modinst = find_module_instance(data->sqlinst_name); if (!modinst) { nvp_log(__LINE__, data, L_ERR, "sqlhpwippool_instantiate(): cannot find module instance " "named \"%s\"", data->sqlinst_name); return -1; } /* check if the given instance is really a rlm_sql instance */ if (strcmp(modinst->entry->name, "rlm_sql") != 0) { nvp_log(__LINE__, data, L_ERR, "sqlhpwippool_instantiate(): given instance (%s) is not " "an instance of the rlm_sql module", data->sqlinst_name); return -1; } /* save pointers to useful "objects" */ data->sqlinst = (SQL_INST *) modinst->insthandle; data->db = (rlm_sql_module_t *) data->sqlinst->module; /* everything went ok, cleanup pool */ *instance = data; return ((nvp_cleanup(data)) ? 0 : -1); } /* assign new IP address, if required */ static int sqlhpwippool_postauth(void *instance, REQUEST *request) { VALUE_PAIR *vp; unsigned char *pname; /* name of requested IP pool */ uint32_t nasip; /* NAS IP in host byte order */ struct in_addr ip = {0}; /* reserved IP for client (net. byte order) */ SQLSOCK *sqlsock; unsigned long s_gid, /* _s_elected in sql result set */ s_prio, /* as above */ s_pid, /* as above */ gid, /* real integer value */ pid, /* as above */ weights_sum, used_sum, ip_start, ip_stop, connid; long prio; rlm_sqlhpwippool_t *data = (rlm_sqlhpwippool_t *) instance; /* if IP is already there, then nothing to do */ vp = pairfind(request->reply->vps, PW_FRAMED_IP_ADDRESS); if (vp) { nvp_log(__LINE__, data, L_DBG, "sqlhpwippool_postauth(): IP address " "already in the reply packet - exiting"); return RLM_MODULE_NOOP; } /* if no pool name, we don't need to do anything */ vp = pairfind(request->reply->vps, PW_ASN_IP_POOL_NAME); if (vp) { pname = vp->strvalue; nvp_log(__LINE__, data, L_DBG, "sqlhpwippool_postauth(): pool name = '%s'", pname); } else { nvp_log(__LINE__, data, L_DBG, "sqlhpwippool_postauth(): no IP pool name - exiting"); return RLM_MODULE_NOOP; } /* if no NAS IP address, assign 0 */ vp = pairfind(request->packet->vps, PW_NAS_IP_ADDRESS); if (vp) { nasip = ntohl(vp->lvalue); } else { nasip = 0; nvp_log(__LINE__, data, L_DBG, "sqlhpwippool_postauth(): no NAS IP address in " "the request packet - using \"0.0.0.0/0\" (any)"); } /* get our database connection */ sqlsock = sql_get_socket(data->sqlinst); if (!sqlsock) { nvp_log(__LINE__, data, L_ERR, "sqlhpwippool_postauth(): error while requesting an SQL socket"); return RLM_MODULE_FAIL; } /* get connection id as temporary unique integer */ if (nvp_select(__LINE__, data, sqlsock, "SELECT CONNECTION_ID()") < 1) { nvp_log(__LINE__, data, L_ERR, "sqlhpwippool_postauth(): WTF ;-)!"); nvp_select_finish(data, sqlsock); sql_release_socket(data->sqlinst, sqlsock); return RLM_MODULE_FAIL; } connid = strtoul(sqlsock->row[0], (char **) NULL, 10); nvp_select_finish(data, sqlsock); /* synchronize with radacct db, if needed */ if (++data->sincesync >= data->syncafter #ifdef HAVE_PTHREAD_D && (pthread_mutex_trylock(&data->mutex)) == 0 #endif ) { int r; data->sincesync = 0; nvp_log(__LINE__, data, L_DBG, "sqlhpwippool_postauth(): syncing with radacct table"); r = (nvp_freeclosed(data, sqlsock) && nvp_syncfree(data, sqlsock)); #ifdef HAVE_PTHREAD_D pthread_mutex_unlock(&data->mutex); #endif if (!r) { nvp_log(__LINE__, data, L_ERR, "sqlhpwippool_postauth(): synchronization failed"); sql_release_socket(data->sqlinst, sqlsock); return RLM_MODULE_FAIL; } } for (s_gid = 0; s_gid < RLM_NETVIM_MAX_ROWS && !(ip.s_addr); s_gid++) { nvp_log(__LINE__, data, L_DBG, "sqlhpwippool_postauth(): selecting gid on position %lu", s_gid); /* find the most specific group which NAS belongs to */ switch (nvp_select(__LINE__, data, sqlsock, "SELECT `host_groups`.`gid` " "FROM " "`%s`.`host_groups`, " "`%1$s`.`gid_ip`, " "`%1$s`.`ids` " "WHERE " "`host_groups`.`gid` = `ids`.`id` AND " "`ids`.`enabled` = 1 AND " "`host_groups`.`gid` = `gid_ip`.`gid` AND " "%lu BETWEEN `gid_ip`.`ip_start` AND `gid_ip`.`ip_stop` " "ORDER BY (`gid_ip`.`ip_stop` - `gid_ip`.`ip_start`) ASC " "LIMIT %lu, 1", data->db_name, nasip, s_gid)) { case -1: nvp_log(__LINE__, data, L_ERR, "sqlhpwippool_postauth(): couldn't find " "any more matching host groups"); goto end_gid; /* exit the main loop */ case 0: sql_release_socket(data->sqlinst, sqlsock); return RLM_MODULE_FAIL; } /* store the group ID and free memory occupied by results */ gid = strtoul(sqlsock->row[0], (char **) NULL, 10); nvp_select_finish(data, sqlsock); for (s_prio = 0; s_prio < RLM_NETVIM_MAX_ROWS && !(ip.s_addr); s_prio++) { nvp_log(__LINE__, data, L_DBG, "sqlhpwippool_postauth(): selecting prio on position %lu", s_prio); /* prepare to search for best fit pool */ switch (nvp_select(__LINE__, data, sqlsock, "SELECT " "`ip_pools`.`prio`, " "SUM(`ip_pools`.`weight`) AS `weights_sum`, " "(SUM(`ip_pools`.`total`) - " "SUM(`ip_pools`.`free`)) AS `used_sum` " "FROM " "`%s`.`ip_pools`, " "`%1$s`.`ids`, " "`%1$s`.`pool_names` " "WHERE " "`ip_pools`.`gid` = %lu AND " "`ids`.`id` = `ip_pools`.`pid` AND " "`ids`.`enabled` = 1 AND " "`pool_names`.`pnid` = `ip_pools`.`pnid` AND " "`pool_names`.`name` = '%s' AND " "`ip_pools`.`free` > 0 " "GROUP BY `prio` " "ORDER BY `prio` ASC " "LIMIT %lu, 1", data->db_name, gid, pname, s_prio)) { case -1: nvp_log(__LINE__, data, L_DBG, "sqlhpwippool_postauth(): couldn't find " "any more matching pools for gid = %u", gid); goto end_prio; /* select next gid */ case 0: sql_release_socket(data->sqlinst, sqlsock); return RLM_MODULE_FAIL; } /* store the prio and weights sum */ prio = strtol(sqlsock->row[0], (char **) NULL, 10); weights_sum = strtoul(sqlsock->row[1], (char **) NULL, 10); used_sum = strtoul(sqlsock->row[2], (char **) NULL, 10); /* free memory */ nvp_select_finish(data, sqlsock); for (s_pid = 0; s_pid < RLM_NETVIM_MAX_ROWS && !(ip.s_addr); s_pid++) { nvp_log(__LINE__, data, L_DBG, "sqlhpwippool_postauth(): selecting PID on position %lu", s_pid); /* search for best fit pool */ switch (nvp_select(__LINE__, data, sqlsock, "SELECT " "`ip_pools`.`pid`, " "`ip_pools`.`ip_start`, " "`ip_pools`.`ip_stop` " "FROM " "`%s`.`ip_pools`, " "`%1$s`.`ids`, " "`%1$s`.`pool_names` " "WHERE " "`ip_pools`.`gid` = %lu AND " "`ids`.`id` = `ip_pools`.`pid` AND " "`ids`.`enabled` = 1 AND " "`pool_names`.`pnid` = `ip_pools`.`pnid` AND " "`pool_names`.`name` = '%s' AND " "`ip_pools`.`free` > 0 AND " "`prio` = %ld " "ORDER BY (`weight`/%lu.0000 - (`total` - `free`)/%lu) DESC " "LIMIT %lu, 1", data->db_name, gid, pname, prio, weights_sum, used_sum, s_pid)) { case -1: nvp_log(__LINE__, data, L_DBG, "sqlhpwippool_postauth(): couldn't find any more " "matching pools of prio = %ld for gid = %lu", prio, gid); goto end_pid; /* select next prio */ case 0: sql_release_socket(data->sqlinst, sqlsock); return RLM_MODULE_FAIL; } /* store the data and free memory occupied by results */ pid = strtoul(sqlsock->row[0], (char **) NULL, 10); ip_start = strtoul(sqlsock->row[1], (char **) NULL, 10); ip_stop = strtoul(sqlsock->row[2], (char **) NULL, 10); nvp_select_finish(data, sqlsock); /* reserve an IP address */ if (!nvp_query(__LINE__, data, sqlsock, "UPDATE `%s`.`ips` " "SET " "`pid` = %lu, " "`rsv_since` = NOW(), " "`rsv_by` = '" RLM_NETVIM_TMP_PREFIX "%lu', " "`rsv_until` = NOW() + INTERVAL %d SECOND " "WHERE " "`ip` BETWEEN %lu AND %lu AND " "(" "`pid` IS NULL OR " "(`rsv_until` > 0 AND `rsv_until` < NOW())" ") " "ORDER BY RAND() " "LIMIT 1", data->db_name, pid, connid, data->freeafter, ip_start, ip_stop)) { sql_release_socket(data->sqlinst, sqlsock); return RLM_MODULE_FAIL; } else { nvp_finish(data, sqlsock); } /* select assigned IP address */ switch (nvp_select(__LINE__, data, sqlsock, "SELECT `ip` " "FROM `%s`.`ips` " "WHERE `rsv_by` = '" RLM_NETVIM_TMP_PREFIX "%lu' " "ORDER BY `rsv_since` DESC " "LIMIT 1", data->db_name, connid)) { case -1: nvp_log(__LINE__, data, L_ERR, "sqlhpwippool_postauth(): couldn't reserve an IP address " "from pool of pid = %lu (prio = %ld, gid = %lu)", pid, prio, gid); continue; /* select next pid */ case 0: sql_release_socket(data->sqlinst, sqlsock); return RLM_MODULE_FAIL; } /* update free IPs count */ if (!nvp_query(__LINE__, data, sqlsock, "UPDATE `%s`.`ip_pools` " "SET " "`free` = `free` - 1 " "WHERE " "`pid` = %lu " "LIMIT 1", data->db_name, pid)) { sql_release_socket(data->sqlinst, sqlsock); return RLM_MODULE_FAIL; } else { nvp_finish(data, sqlsock); } /* get assigned IP and free memory */ ip.s_addr = htonl(strtoul(sqlsock->row[0], (char **) NULL, 10)); nvp_select_finish(data, sqlsock); } /* pid */ end_pid: continue; /* stupid */ } /* prio */ end_prio: continue; /* stupid */ } /* gid */ end_gid: /* release SQL socket */ sql_release_socket(data->sqlinst, sqlsock); /* no free IP address found */ if (!ip.s_addr) { nvp_log(__LINE__, data, L_INFO, "sqlhpwippool_postauth(): no free IP address found!"); if (data->nofreefail) { nvp_log(__LINE__, data, L_DBG, "sqlhpwippool_postauth(): rejecting user"); return RLM_MODULE_REJECT; } else { nvp_log(__LINE__, data, L_DBG, "sqlhpwippool_postauth(): exiting"); return RLM_MODULE_NOOP; } } /* add IP address to reply packet */ vp = paircreate(PW_FRAMED_IP_ADDRESS, PW_TYPE_IPADDR); if (!vp) { nvp_log(__LINE__, data, L_ERR, "sqlhpwippool_postauth(): couldn't save chosen IP - no memory - " "exiting with error"); /* don't free chosen IP, because we have no memory (now adress will need to * wait for timeout, what's not so bad, BTW) */ return RLM_MODULE_FAIL; } vp->lvalue = ip.s_addr; pairadd(&request->reply->vps, vp); nvp_log(__LINE__, data, L_DBG, "sqlhpwippool_postauth(): returning %s", inet_ntoa(ip)); return RLM_MODULE_OK; } static int sqlhpwippool_accounting(void *instance, REQUEST *request) { VALUE_PAIR *vp; SQLSOCK *sqlsock; struct in_addr nasip; /* NAS IP */ unsigned char *sessid; /* unique session id */ char nasipstr[16]; /* NAS IP in string format */ uint32_t framedip = 0; /* client's IP, host byte order */ uint32_t acct_type; rlm_sqlhpwippool_t *data = (rlm_sqlhpwippool_t *) instance; /* if no unique session ID, don't even try */ vp = pairfind(request->packet->vps, PW_ACCT_UNIQUE_SESSION_ID); if (vp) { sessid = vp->strvalue; } else { nvp_log(__LINE__, data, L_ERR, "sqlhpwippool_accounting(): unique session ID not found"); return RLM_MODULE_FAIL; } vp = pairfind(request->packet->vps, PW_ACCT_STATUS_TYPE); if (vp) { acct_type = vp->lvalue; } else { nvp_log(__LINE__, data, L_ERR, "sqlhpwippool_accounting(): " "couldn't find type of accounting packet"); return RLM_MODULE_FAIL; } if (!(acct_type == PW_STATUS_START || acct_type == PW_STATUS_ALIVE || acct_type == PW_STATUS_STOP || acct_type == PW_STATUS_ACCOUNTING_OFF || acct_type == PW_STATUS_ACCOUNTING_ON)) { return RLM_MODULE_NOOP; } /* connect to database */ sqlsock = sql_get_socket(data->sqlinst); if (!sqlsock) { nvp_log(__LINE__, data, L_ERR, "sqlhpwippool_accounting(): couldn't connect to database"); return RLM_MODULE_FAIL; } switch (acct_type) { case PW_STATUS_START: case PW_STATUS_ALIVE: vp = pairfind(request->packet->vps, PW_FRAMED_IP_ADDRESS); if (!vp) { nvp_log(__LINE__, data, L_ERR, "sqlhpwippool_accounting(): no framed IP"); sql_release_socket(data->sqlinst, sqlsock); return RLM_MODULE_FAIL; } framedip = ntohl(vp->lvalue); if (!nvp_query(__LINE__, data, sqlsock, "UPDATE `%s`.`ips` " "SET " "`rsv_until` = 0, " "`rsv_by` = '%s' " "WHERE `ip` = %lu", data->db_name, sessid, framedip)) { sql_release_socket(data->sqlinst, sqlsock); return RLM_MODULE_FAIL; } nvp_finish(data, sqlsock); break; case PW_STATUS_STOP: if (!nvp_query(__LINE__, data, sqlsock, "UPDATE `%s`.`ips`, `%1$s`.`ip_pools` " "SET " "`ips`.`rsv_until` = NOW() + INTERVAL %u SECOND, " "`ip_pools`.`free` = `ip_pools`.`free` + 1 " "WHERE " "`ips`.`rsv_by` = '%s' AND " "`ips`.`ip` BETWEEN `ip_pools`.`ip_start` AND `ip_pools`.`ip_stop`", data->db_name, data->freeafter, sessid)) { sql_release_socket(data->sqlinst, sqlsock); return RLM_MODULE_FAIL; } nvp_finish(data, sqlsock); break; case PW_STATUS_ACCOUNTING_OFF: case PW_STATUS_ACCOUNTING_ON: vp = pairfind(request->packet->vps, PW_NAS_IP_ADDRESS); if (!vp) { nvp_log(__LINE__, data, L_ERR, "sqlhpwippool_accounting(): no NAS IP"); sql_release_socket(data->sqlinst, sqlsock); return RLM_MODULE_FAIL; } nasip.s_addr = vp->lvalue; strncpy(nasipstr, inet_ntoa(nasip), sizeof(nasipstr) - 1); nasipstr[sizeof(nasipstr)] = 0; if (!nvp_query(__LINE__, data, sqlsock, "UPDATE `%s`.`ips`, `radacct` " "SET `ips`.`rsv_until` = NOW() + INTERVAL %u SECOND " "WHERE " "`radacct`.`nasipaddress` = '%s' AND " "`ips`.`rsv_by` = `radacct`.`acctuniqueid`", data->db_name, data->freeafter, nasipstr)) { sql_release_socket(data->sqlinst, sqlsock); return RLM_MODULE_FAIL; } nvp_finish(data, sqlsock); break; } sql_release_socket(data->sqlinst, sqlsock); return RLM_MODULE_OK; } module_t rlm_sqlhpwippool = { "sqlhpwippool", /* name */ RLM_TYPE_THREAD_SAFE, /* type */ NULL, sqlhpwippool_instantiate, /* instantiation */ { NULL, /* authentication */ NULL, /* authorization */ NULL, /* preaccounting */ sqlhpwippool_accounting, /* accounting */ NULL, /* checksimul */ NULL, /* pre-proxy */ NULL, /* post-proxy */ sqlhpwippool_postauth /* post-auth */ }, sqlhpwippool_detach, /* detach */ NULL };