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
|
/* eurephia-template.c -- Main driver for eurephia authentication plugin for OpenVPN
*
*
* // THIS IS A TEMPLATE FOR A DATABASE DRIVER - IT WILL NOT COMPILE //
*
* Go through the code and you will find examples for SQL queries and
* hints how to implement the database specific code
*
* This template is based on the sqlite/eurephia-sqlite.c
*
*
*
* GPLv2 only - Copyright (C) 2008 David Sommerseth <dazo@users.sourceforge.net>
*
* 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; version 2
* of the License.
*
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <dlfcn.h>
#ifndef
#define DRIVER_MODE
#endif
#include <eurephiadb_driver.h>
#include <eurephia_nullsafe.h>
#include <eurephia_log.h>
#include <eurephia_values.h>
#include <eurephiadb_session.h>
#include <passwd.h>
#define DRIVERVERSION "1.0"
#ifndef DRIVERAPIVERSION
# define DRIVERAPIVERSION 1 // Set this value to 2 to support admin utilities
#endif
// Mapping table - mapping attempt types from .... to database table fields
typedef struct {
char *colname;
char *allow_cfg;
char *descr;
} eDBattempt_types_t;
static const eDBattempt_types_t eDBattempt_types[] = {
{NULL, NULL, NULL},
{"remoteip\0", "allow_ipaddr_attempts\0", "IP Address\0"},
{"digest\0", "allow_cert_attempts\0", "Certificate\0"},
{"username\0", "allow_username_attempts\0", "Username\0"},
{NULL, NULL, NULL}
};
/*
* Driver info
*/
const char *eDB_DriverVersion() {
/* WORK TO DO --- UPDATE INFO */
return "eurephiadb-template (v"DRIVERVERSION") David Sommerseth 2008 (C) GPLv2";
}
int eDB_DriverAPIVersion() {
return DRIVERAPIVERSION;
}
/*
* local functions
*/
// Function for simplifying update of openvpn_blacklist
void update_attempts(eurephiaCTX *ctx, const char *blid) {
if( blid != NULL ) {
/* WORK TO DO -- DO SQL:
"UPDATE openvpn_blacklist "
" SET last_accessed = CURRENT_TIMESTAMP WHERE blid = %s", blid
*/
if( /* SQL COMMAND FAILED */ ) {
eurephia_log(ctx, LOG_CRITICAL, 0,
"Could not update openvpn_blacklist.last_accessed for blid=%s", blid);
}
/* FREE SQL RESULT */
}
}
/*
* Public driver functions
*/
// Connect to the database ... connection is stored in the eurephiaCTX context
int eDBconnect(eurephiaCTX *ctx, const int argc, const char **argv)
{
eDBconn *dbc = NULL;
int rc;
/* WORK TO DO -- Parse arguments
*
* use what ever suitable approach to parse arguments sent to the database module.
*
* The arguments being recieved is everything after the '--' (double dash)
* in the 'plugin' configuration line for OpenVPN.
*
* plugin eurephia-auth.so "-i my_db_module.so -L 3 -- myparam1 myparam2 myparam3"
*
* In this example the following parameters will be available here:
*
* argc = 3
* argv[0] = myparam1
* argv[1] = myparam2
* argv[2] = myparam3
*
* You are free to use whatever parameter syntax you would like to use.
*/
DEBUG(ctx, 20, "Function call: eDBconnect(ctx, %i, '...')", argc, dbame);
// Connect to the database
dbc = (eDBconn *) malloc_nullsafe(ctx, sizeof(eDBconn)+2);
if( !dbc ) {
return 0;
}
dbc->dbname = strdup(argv[1]);
eurephia_log(ctx, LOG_INFO, 1, "Opening database '%s'", dbc->dbname);
/* WORK TO DO -- Open a database connection, and save the handle in dbc->handle */
if( /* IF CONNECTION FAILED */ ) {
eurephia_log(ctx, LOG_PANIC, 0, "Could not open database '%s'", dbc->dbname);
free_nullsafe(dbc->dbname);
free_nullsafe(dbc);
return 0;
}
dbc->config = NULL;
ctx->dbc = dbc;
// Load configuration parameters into memory
eurephia_log(ctx, LOG_INFO, 1, "Reading config from database (openvpn_config)");
/* WORK TO DO - DO SQL:
"SELECT datakey, dataval FROM openvpn_config"
*/
if( /* IF WE GOT SOME RECORDS */ ) {
int i = 0;
eurephiaVALUES *cfg = NULL;
cfg = eCreate_value_space(ctx, 11);
if( cfg == NULL ) {
eurephia_log(ctx, LOG_FATAL, 0, "Could not allocate memory for config variables");
/* FREE SQL RESULT */
return 0;
}
for( /* LOOP THROUGH ALL RECORDS, AND ADD THEM TO THE cfg VARIABLE */ ) {
eAdd_value(ctx, cfg,
/* GET datakey FROM SQL RESULT */,
/* GET dataval FROM SQL RESULT */);
}
/* FREE SQL RESULT */
ctx->dbc->config = cfg;
}
return 1;
}
// Disconnect from the database
void eDBdisconnect(eurephiaCTX *ctx)
{
eDBconn *dbc = NULL;
DEBUG(ctx, 20, "Function call: eDBdisconnect(ctx)");
if( ctx->dbc == NULL ) {
eurephia_log(ctx, LOG_WARNING, 0, "Database not open, cannot close database.");
return;
}
dbc = ctx->dbc;
eurephia_log(ctx, LOG_INFO, 1, "Closing database '%s'", dbc->dbname);
/* WORK TO DO: Close database connection using dbc->dbhandle */
free_nullsafe(dbc->dbname);
dbc->dbhandle = NULL;
// Free up config memory
eFree_values(ctx, dbc->config);
free_nullsafe(dbc);
ctx->dbc = NULL;
}
// Authenticate certificate ... returns certid (certificate ID) on success,
// 0 if not found or -1 if certificate is blacklisted
int eDBauth_TLS(eurephiaCTX *ctx, const char *org, const char *cname, const char *email,
const char *digest, const char *depth)
{
int certid = 0;
char *blid = NULL;
DEBUG(ctx, 20, "Function call: eDBauth_TLS(ctx, '%s', '%s', '%s', '%s', %s)",
org, cname, email, digest, depth);
// Check if certificate is valid, and not too many attempts has been tried with the given certificate
/* WORK TO DO -- DO SQL:
"SELECT cert.certid, blid "
" FROM openvpn_certificates cert"
" LEFT JOIN openvpn_blacklist bl USING(digest)"
" WHERE organisation='%q' AND common_name='%q' "
" AND email='%q' AND depth='%q' AND cert.digest='%q'%c",
org, cname, email, depth, digest
*/
if( /* IF WE GOT A RESULT */ ) {
certid = atoi_nullsafe(/* GET cert.certid FROM SQL RESULT */);
blid = atoi_nullsafe(/* GET blid FROM SQL RESULT */);
/* FREE SQL RESULT */
// Check if the certificate is blacklisted or not. blid != NULL when blacklisted
if( blid != NULL ) {
// If the certificate or IP is blacklisted, update status and deny access.
eurephia_log(ctx, LOG_WARNING, 0,
"Attempt with BLACKLISTED certificate (certid %i)", certid);
update_attempts(ctx, blid);
certid = -1;
}
free_nullsafe(blid);
} else {
eurephia_log(ctx, LOG_FATAL, 0, "Could not look up certificate information");
}
DEBUG(ctx, 20, "Result function call: eDBauth_TLS(ctx, '%s', '%s', '%s', '%s', %s) - %i",
org, cname, email, digest, depth, certid);
return certid;
}
// Authenticate user, using username, password and certid as authentication parameters
// returns -1 if authentication fails. Returns 0 if user account is not found.
int eDBauth_user(eurephiaCTX *ctx, const int certid, const char *username, const char *passwd)
{
char *crpwd = NULL, *activated = NULL, *deactivated = NULL, *blid_uname = NULL, *blid_cert;
int uicid = 0, uid = 0, pwdok = 0;
DEBUG(ctx, 20, "Function call: eDBauth_user(ctx, %i, '%s','xxxxxxxx')", certid, username);
// Generate SHA512 hash of password, used for password auth
crpwd = passwdhash(passwd);
/* WORK TO DO -- DO SQL:
"SELECT uicid, ou.uid, activated, deactivated, bl1.blid, bl2.blid, "
" (password = '%s') AS pwdok"
" FROM openvpn_users ou"
" JOIN openvpn_usercerts uc USING(uid) "
" LEFT JOIN openvpn_blacklist bl1 ON( ou.username = bl1.username) "
" LEFT JOIN (SELECT blid, certid "
" FROM openvpn_certificates "
" JOIN openvpn_blacklist USING(digest)) bl2 ON(uc.certid = bl2.certid)"
" WHERE uc.certid = '%i' AND ou.username = '%q'",
crpwd, certid, username
*/
free_nullsafe(crpwd);
if( /* IF NO RESULT WAS RETURNED */ ) {
eurephia_log(ctx, LOG_FATAL, 0,
"Could not look up user in database (certid %i, username '%s'", certid, username);
return 0;
}
if( /* CHECK THAT WE ONLY GOT 1 RECORD*/ ) {
uid = atoi_nullsafe(/* RETRIEVE uid FROM SQL*/);
activated = ;/* GET activated FIELD FROM SQL RESULT */
deactivated = ;/* GET deactivated FIELD FROM SQL RESULT */
blid_uname = ;/* GET bl1.blid FIELD FROM SQL RESULT */
blid_cert = ;/* GET bl2.blid FIELD FROM SQL RESULT */
pwdok = atoi_nullsafe(/* GET pwdok FIELD FROM SQL RESULT */);
if( blid_uname != NULL ) {
eurephia_log(ctx, LOG_WARNING, 0,
"User account is BLACKLISTED (uid: %i, %s)",
uid, username);
uicid = -1;
} else if( blid_cert != NULL ) {
eurephia_log(ctx, LOG_WARNING, 0,
"User account linked with a BLACKLISTED certificate "
"(uid: %i, %s) - certid: %s",
uid, username, certid);
uicid = -1;
} else if( activated == NULL ) {
eurephia_log(ctx, LOG_WARNING, 0,
"User account is not activated (uid: %i, %s)",
uid, username);
uicid = -1;
} else if( deactivated != NULL ) {
eurephia_log(ctx, LOG_WARNING, 0,
"User account is deactivated (uid: %i, %s)",
uid, username);
uicid = -1;
} else if( pwdok != 1 ) {
eurephia_log(ctx, LOG_WARNING, 0,
"Authentication failed for user '%s'. Wrong password.",
username);
uicid = -1;
} else {
uicid = atoi_nullsafe(/*GET uicid FIELD FROM SQL RESULT */);
}
} else {
eurephia_log(ctx, LOG_WARNING, 0, "Authentication failed for user '%s'. "
"Could not find user or user-certificate link.", username);
uicid = 0;
}
/* FREE SQL RESULT */
DEBUG(ctx, 20, "Result function call: eDBauth_user(ctx, %i, '%s','xxxxxxxx') - %i",
certid, username, uicid);
return uicid;
}
// Retrieve the user id from openvpn_usercerts, based on certid and username
int eDBget_uid(eurephiaCTX *ctx, const int certid, const char *username)
{
int ret = 0;
DEBUG(ctx, 20, "Function call: eDBget_uid(ctx, %i, '%s')", certid, username);
/* WORK TO DO -- DO SQL:
"SELECT uid "
" FROM openvpn_usercerts "
" JOIN openvpn_users USING (uid) "
" WHERE certid = '%i' AND username = '%q'",
certid, username
*/
if( /* IF NO RESULT FOUND */ || /* OR WE GOT MORE THAN 1 RECORD */ ) {
eurephia_log(ctx, LOG_FATAL, 0, "Could not lookup userid for user '%s'", username);
ret = -1;
} else {
ret = atoi_nullsafe(/* GET uid FIELD FROM SQL RESULT */);
}
/* FREE SQL RESULT */
return ret;
}
// If function returns true(1) this control marks it as blacklisted
int eDBblacklist_check(eurephiaCTX *ctx, const int type, const char *val)
{
int atpexceed = -1, blacklisted = 0;
char *atpid = NULL, *blid = NULL;
DEBUG(ctx, 20, "Function call: eDBblacklist_check(ctx, '%s', '%s')",
eDBattempt_types[type].descr, val);
/* WORK TO DO -- DO SQL:
"SELECT blid FROM openvpn_blacklist WHERE %s = '%q'",
eDBattempt_types[type].colname, val
*/
if( /* IF RECORDS WAS FOUND */ ) {
blid = strdup_nullsafe(/* GET blid FIELD FROM SQL RESULT */);
/* FREE SQL RESULT */
if( blid != NULL ) { // If we found a blacklisted record
eurephia_log(ctx, LOG_WARNING, 0, "Attempt from blacklisted %s: %s",
eDBattempt_types[type].descr, val);
blacklisted = 1; // [type] is blacklisted
}
// Update attempt information
update_attempts(ctx, blid);
} else {
eurephia_log(ctx, LOG_FATAL, 0, "Querying openvpn_blacklist for blacklisted %s failed",
eDBattempt_types[type].descr);
}
if( blacklisted == 0 ) {
// Check if this [type] has been attempted earlier - if it has reaced the maximum
// attempt limit, blacklist it
/* WORK TO DO -- DO SQL:
"SELECT atpid, attempts >= %q FROM openvpn_attempts WHERE %s = '%q'",
eGet_value(ctx->dbc->config, eDBattempt_types[type].allow_cfg),
eDBattempt_types[type].colname, val
*/
if( /* IF WE FOUND RECORDS */ ) {
atpid = strdup_nullsafe(/* GET atpid FROM SQL RESULT */);
atpexceed = atoi_nullsafe(/* GET "attempts >= %q" FROM SQL RESULT */);
/* FREE SQL RESULT */
// If [type] has reached attempt limit and it is not black listed, black list it
if( (atpexceed > 0) && (blid == NULL) ) {
eurephia_log(ctx, LOG_WARNING, 0,
"%s got BLACKLISTED due to too many failed attempts: %s",
eDBattempt_types[type].descr, val);
/* WORK TO DO -- DO SQL
"INSERT INTO openvpn_blacklist (%s) VALUES ('%q')",
eDBattempt_types[type].colname, val
*/
if( /* IF SQL QUERY FAILED */ ) {
eurephia_log(ctx, LOG_CRITICAL, 0,
"Could not blacklist %s (%s)",
eDBattempt_types[type].descr, val);
}
/* FREE SQL RESULT */
blacklisted = 1; // [type] is blacklisted
}
free_nullsafe(atpid);
} else {
eurephia_log(ctx, LOG_CRITICAL, 0,
"Querying openvpn_attempts for blacklisted %s failed",
eDBattempt_types[type].descr);
}
free_nullsafe(atpr);
}
free_nullsafe(blid);
DEBUG(ctx, 20, "Result - function call: eDBblacklist_check(ctx, '%s', '%s') - %i",
eDBattempt_types[type].descr, val, blacklisted);
return blacklisted;
}
// Register a failed attempt of authentication or IP address has been tried to many times
void eDBregister_attempt(eurephiaCTX *ctx, int type, int mode, const char *value)
{
char *id = NULL, *atmpt_block = NULL, *blid = NULL;
int attempts = 0;
DEBUG(ctx, 20, "Function call: eDBregister_attempt(ctx, %s, %s, '%s')",
eDBattempt_types[type].colname,
(mode == ATTEMPT_RESET ? "ATTEMPT_RESET" : "ATTEMPT_REGISTER"),
value);
//
// openvpn_attempts
//
/* WORK TO DO -- DO SQL
"SELECT atpid, attempts > %s, blid, attempts "
" FROM openvpn_attempts "
" LEFT JOIN openvpn_blacklist USING(%s)"
" WHERE %s = '%q'",
eGet_value(ctx->dbc->config, eDBattempt_types[type].allow_cfg),
eDBattempt_types[type].colname,
eDBattempt_types[type].colname, value
*/
if( /* IF SQL QUERY FAILED */ ) {
eurephia_log(ctx, LOG_FATAL, 0, "Could not look up atpid in openvpn_attempts");
return;
}
attempts = atoi_nullsafe(/* GET attempts FROM SQL RESULT */);
// If we are asked to reset the attempt counter and we do not find any attempts, exit here
if( (mode == ATTEMPT_RESET) && (/* IF NO RECORDS WHERE FOUND OR attempts == 0 */) ) {
/* FREE SQL RESULT */
return;
}
id = strdup_nullsafe(/* GET atpid FROM SQL RESULT */);
atmpt_block = strdup_nullsafe(/* GET "attempts > %s" FROM SQL RESULT */);
blid = strdup_nullsafe(/* GET blid FROM SQL RESULT */);
/* FREE SQL RESULT */
if( (id == NULL) && (mode == ATTEMPT_REGISTER) ) {
// Only insert record when we are in registering mode
/* WORK TO DO -- DO SQL:
"INSERT INTO openvpn_attempts (%s, attempts) VALUES ('%q', 1)",
eDBattempt_types[type].colname, value);
Result check comes later ...
*/
} else if( id != NULL ) {
// if a attempt record exists, update it according to mode
switch( mode ) {
case ATTEMPT_RESET:
/* WORK TO DO -- DO SQL:
"UPDATE openvpn_attempts "
" SET attempts = 0 "
" WHERE atpid = '%q'",
id
Result check comes later ...
*/
break;
default:
/* WORK TO DO -- DO SQL:
"UPDATE openvpn_attempts "
" SET last_attempt = CURRENT_TIMESTAMP, attempts = attempts + 1"
" WHERE atpid = '%q'",
id
Result check comes later ...
*/
break;
}
}
if( /* IF SQL QUERY FAILED */ ) {
eurephia_log(ctx, LOG_CRITICAL, 0,
"Could not update openvpn_attempts for %s = %s",
eDBattempt_types[type].colname, value);
}
/* FREE SQL RESULT */
// If attempts have exceeded attempt limit, blacklist it immediately if not already registered
if( (mode == ATTEMPT_REGISTER)
&& (blid == NULL) && (atmpt_block != NULL) && (atoi_nullsafe(atmpt_block) > 0) ) {
eurephia_log(ctx, LOG_WARNING, 0, "Blacklisting %s due to too many attempts: %s",
eDBattempt_types[type].descr, value);
/* WORK TO DO -- DO SQL:
"INSERT INTO openvpn_blacklist (%s) VALUES ('%q')",
eDBattempt_types[type].colname, value
*/
if( /* IF SQL FAILED */ ) {
eurephia_log(ctx, LOG_CRITICAL, 0,
"Could not blacklist %s: %s",
eDBattempt_types[type].descr, value);
}
/* FREE SQL RESULT */
}
free_nullsafe(id);
free_nullsafe(atmpt_block);
free_nullsafe(blid);
}
// Register a successful authentication
int eDBregister_login(eurephiaCTX *ctx, eurephiaSESSION *skey, const int certid, const int uid,
const char *proto, const char *remipaddr, const char *remport,
const char *vpnipaddr, const char *vpnipmask)
{
DEBUG(ctx, 20, "Function call: eDBregister_login(ctx, '%s', %i, %i, '%s','%s','%s','%s','%s')",
skey->sessionkey, certid, uid, proto, remipaddr, remport, vpnipaddr, vpnipmask);
if( skey->sessionstatus != SESSION_NEW ) {
eurephia_log(ctx, LOG_ERROR, 5, "Not a new session, will not register it again");
return 1;
}
/* WORK TO DO -- DO SQL:
"INSERT INTO openvpn_lastlog (uid, certid, "
" protocol, remotehost, remoteport,"
" vpnipaddr, vpnipmask,"
" sessionstatus, sessionkey, login) "
"VALUES (%i, %i, '%q','%q','%q','%q','%q', 1,'%q', CURRENT_TIMESTAMP)",
uid, certid, proto, remipaddr, remport, vpnipaddr, vpnipmask, skey->sessionkey
*/
if( /* IF SQL QUERY FAILED */ ) {
eurephia_log(ctx, LOG_FATAL, 0, "Could not insert new session into openvpn_lastlog");
return 0;
}
/* FREE SQL RESULT */
skey->sessionstatus = SESSION_REGISTERED;
return 1;
}
// Register the MAC address of the VPN adapter of the user.
int eDBregister_vpnmacaddr(eurephiaCTX *ctx, eurephiaSESSION *session, const char *macaddr)
{
DEBUG(ctx, 20, "Function call: eDBregister_vpnmacaddr(ctx, '%s', '%s')",
session->sessionkey, macaddr);
if( macaddr == NULL ) {
eurephia_log(ctx, LOG_FATAL, 0, "No MAC address was given to save");
return 0;
}
// Register MAC address into history table
/* WORK TO DO -- DO SQL:
"INSERT INTO openvpn_macaddr_history (sessionkey, macaddr) VALUES ('%q','%q')",
session->sessionkey, macaddr
*/
if( /* IF SQL QUERY FAILED */ ) {
eurephia_log(ctx, LOG_FATAL, 0, "Failed to log new MAC address for session");
return 0;
}
/* FREE SQL RESULT */
// Update lastlog to reflect last used MAC address for the session
/* WORK TO DO -- DO SQL:
"UPDATE openvpn_lastlog SET sessionstatus = 2, macaddr = '%q' "
" WHERE sessionkey = '%q' AND sessionstatus = 1", macaddr, session->sessionkey);
*/
if( /* IF SQL QUERY FAILED */ ) {
eurephia_log(ctx, LOG_FATAL, 0, "Could not update lastlog with new MAC address for session");
return 0;
}
/* FREE SQL RESULT */
// Save the MAC address in the session values register - needed for the destroy session
if( eDBset_session_value(ctx, session, "macaddr", macaddr) == 0 ) {
eurephia_log(ctx, LOG_FATAL, 0, "Could not save MAC address into session variables");
return 0;
}
return 1;
}
// Register the user as logged out
int eDBregister_logout(eurephiaCTX *ctx, eurephiaSESSION *skey,
const char *bytes_sent, const char *bytes_received, const char *duration)
{
DEBUG(ctx, 20, "Function call: eDBregister_logout(ctx, '%s', %s, %s)",
skey->sessionkey, bytes_sent, bytes_received);
/* WORK TO DO -- DO SQL:
"UPDATE openvpn_lastlog "
" SET sessionstatus = 3, logout = CURRENT_TIMESTAMP, "
" bytes_sent = '%i', bytes_received = '%i', session_duration = '%i' "
" WHERE sessionkey = '%q' AND sessionstatus = 2",
atoi_nullsafe(bytes_sent), atoi_nullsafe(bytes_received),
atoi_nullsafe(duration), skey->sessionke
*/
if( /* IF SQL QUERY FAILED */ ) {
eurephia_log(ctx, LOG_FATAL, 0,
"Could not update lastlog with logout information (%s)",
skey->sessionkey);
return 0;
}
/* FREE SQL RESULT */
skey->sessionstatus = SESSION_LOGGEDOUT;
return 1;
}
// Retrieve a session key from openvpn_sessionkeys if it is a current session. Session seed is used
// as criteria
char *eDBget_sessionkey_seed(eurephiaCTX *ctx, const char *sessionseed) {
char *skey = NULL;
DEBUG(ctx, 20, "eDBget_sessionkey(ctx, '%s')", sessionseed);
if( sessionseed == NULL ) {
eurephia_log(ctx, LOG_FATAL, 1,
"eDBget_sessionkey: No session seed given - cannot locate sessionkey");
return NULL;
}
/* WORK TO DO -- DO SQL:
"SELECT sessionkey "
" FROM openvpn_sessionkeys "
" JOIN openvpn_lastlog USING (sessionkey)"
" WHERE sessionstatus IN (1,2)"
" AND sessionseed = '%q'",
sessionseed
*/
if( /* IF SQL QUERY FAILED */ ) {
eurephia_log(ctx, LOG_FATAL, 0,
"Could not retrieve sessionkey from openvpn_sessionkeys (%s)",
sessionseed);
return NULL;
}
if( /* CHECK THAT WE ONLY GOT 1 RECORD */ ) {
skey = strdup_nullsafe(/* GET sessionkey FIELD FROM SQL RESULT */);
} else {
skey = NULL;
}
/* FREE SQL RESULT */
return skey;
}
char *eDBget_sessionkey_macaddr(eurephiaCTX *ctx, const char *macaddr) {
char *skey = NULL;
// Find sessionkey from MAC address
/* WORK TO DO -- DO SQL:
"SELECT sessionkey "
" FROM openvpn_sessions "
" JOIN openvpn_lastlog USING (sessionkey)"
" WHERE sessionstatus = 3 "
" AND datakey = 'macaddr' "
" AND dataval = '%q'",
macaddr
*/
if( /* IF SQL QUERY FAILED */ ) {
eurephia_log(ctx, LOG_FATAL, 0,
"Could not remove session from database (MAC addr: %s)", macaddr);
return 0;
}
skey = strdup_nullsafe(/* GET sessionkey FROM SQL RESULT */);
/* FREE SQL RESULT */
return skey;
}
// Function returns true(1) if session key is unique
int eDBcheck_sessionkey_uniqueness(eurephiaCTX *ctx, const char *seskey) {
int uniq = 0;
DEBUG(ctx, 20, "eDBcheck_sessionkey_uniqueness(ctx, '%s')", seskey);
if( seskey == NULL ) {
eurephia_log(ctx, LOG_FATAL, 1,
"eDBcheck_sessionkey_uniqness: Invalid session key given");
return 0;
}
/* WORK TO DO -- DO SQL:
"SELECT count(sessionkey) = 0 FROM openvpn_lastlog WHERE sessionkey = '%q'",
seskey
*/
if( /* IF SQL QUERY FAILED */ ) {
eurephia_log(ctx, LOG_FATAL, 0,
"eDBcheck_sessionkey_uniqness: Could not check uniqueness of sessionkey");
return 0;
}
uniq = atoi_nullsafe(/* GET "count(sessionkey) == 0" (as integer bool - 1 == true) FROM SQL RESULT */);
/* FREE SQL RESULT */
return uniq;
}
// register a link between a short-term session seed and a long-term session key
int eDBregister_sessionkey(eurephiaCTX *ctx, const char *seed, const char *seskey) {
DEBUG(ctx, 20, "eDBregister_sessionkey(ctx, '%s', '%s')", seed, seskey);
if( (seed == NULL) || (seskey == NULL) ) {
eurephia_log(ctx, LOG_FATAL, 1,
"eDBregister_sessionkey: Invalid session seed or session key given");
return 0;
}
/* WORK TO DO -- DO SQL:
"INSERT INTO openvpn_sessionkeys (sessionseed, sessionkey) VALUES('%q','%q')",
seed, seskey
*/
if( /* IF SQL QUERY FAILED */ ) {
eurephia_log(ctx, LOG_FATAL, 0,
"eDBregister_sessionkey: Error registering sessionkey into openvpn_sessionkeys");
return 0;
}
/* FREE SQL RESULT */
return 1;
}
// remove a session seed/session key link from openvpn_sessionkeys
int eDBremove_sessionkey(eurephiaCTX *ctx, const char *seskey) {
DEBUG(ctx, 20, "eDBremove_sessionkey(ctx, '%s')", seskey);
if( seskey == NULL ) {
eurephia_log(ctx, LOG_FATAL, 1,
"eDBremove_sessionkey: Invalid session key given");
return 0;
}
/* WORK TO DO -- DO SQL:
"DELETE FROM openvpn_sessionkeys WHERE sessionkey = '%q'",
seskey
*/
if( /* IF SQL QUERY FAILED */ ) {
eurephia_log(ctx, LOG_FATAL, 0,
"eDBremove_sessionkey: Error removing sessionkey from openvpn_sessionkeys");
return 0;
}
/* FREE SQL RESULT */
return 1;
}
// Load session values stored in the database into a eurephiaVALUES struct (session values)
eurephiaVALUES *eDBload_sessiondata(eurephiaCTX *ctx, const char *sesskey) {
eurephiaVALUES *sessvals = NULL;
int i;
if( (ctx == NULL) || (sesskey == NULL) ) {
return NULL;
}
DEBUG(ctx, 20, "Function call: eDBload_sessiondata(ctx, '%s')", sesskey);
sessvals = eCreate_value_space(ctx, 10);
/* WORK TO DO -- DO SQL:
"SELECT datakey, dataval FROM openvpn_sessions WHERE sessionkey = '%q'",
sesskey
*/
if( /* IF WE GOT RECORDS IN THE QUERY */ ) {
for( /* LOOP THROUGH ALL RECORDS */ ) {
eAdd_value(ctx, sessvals,
/* GET datakey FROM SQL RESULT */,
/* GET dataval FROM SQL RESULT */);
}
/* FREE SQL RESULT */
} else {
eurephia_log(ctx, LOG_CRITICAL, 0,
"Could not load session values for session '%s'", sesskey);
}
return sessvals;
}
// Store a new, update or delete a sessionvalue in the database
int eDBstore_session_value(eurephiaCTX *ctx, eurephiaSESSION *session, int mode, const char *key, const char *val)
{
if( session == NULL ) {
DEBUG(ctx, 20,
"Function call failed to eDBstore_session_value(ctx, ...): Non-existing session key");
return 0;
}
DEBUG(ctx, 20, "Function call: eDBstore_session_value(ctx, '%s', %i, '%s', '%s')",
session->sessionkey, mode, key, val);
switch( mode ) {
case SESSVAL_NEW:
/* WORK TO DO -- DO SQL:
"INSERT INTO openvpn_sessions (sessionkey, datakey, dataval) "
"VALUES ('%q','%q','%q')",
session->sessionkey, key, val
*/
if( /* IF SQL QUERY FAILED */ ) {
eurephia_log(ctx, LOG_FATAL, 0,
"Could not register new session variable into database: [%s] %s = %s",
session->sessionkey, key, val);
return 0;
}
break;
case SESSVAL_UPDATE:
/* WORK TO DO -- DO SQL:
"UPDATE openvpn_sessions SET dataval = '%q' "
" WHERE sessionkey = '%q' AND datakey = '%q'",
val, session->sessionkey, key
*/
if( /* IF SQL QUERY FAILED */ ) {
eurephia_log(ctx, LOG_FATAL, 0,
"Could not update session variable: [%s] %s = %s ",
session->sessionkey, key, val);
return 0;
}
break;
case SESSVAL_DELETE:
/* WORK TO DO -- DO SQL:
"DELETE FROM openvpn_sessions WHERE sessionkey = '%q' AND datakey = '%q'",
session->sessionkey, key
*/
if( /* IF SQL QUERY FAILED */ ) {
eurephia_log(ctx, LOG_FATAL, 0,
"Could not delete session variable: [%s] %s",
session->sessionkey, key);
return 0;
}
break;
default:
eurephia_log(ctx, LOG_FATAL, 0,
"Unknown eDBstore_session_value mode '%i'", mode);
return 0;
}
/* FREE SQL RESULT */
return 1;
}
// Delete session information from openvpn_sessions and update openvpn_lastlog with status
int eDBdestroy_session(eurephiaCTX *ctx, eurephiaSESSION *session) {
DEBUG(ctx, 20, "Function call: eDBdestroy_session(ctx, '%s')", session->sessionkey);
if( (session == NULL) || (session->sessionkey == NULL) ) {
eurephia_log(ctx, LOG_WARNING, 1, "No active session given to be destroyed");
return 1;
}
// Update session status
/* WORK TO DO -- SQL
"UPDATE openvpn_lastlog "
" SET sessionstatus = 4, session_deleted = CURRENT_TIMESTAMP "
" WHERE sessionkey = '%q' AND sessionstatus = 3",
session->sessionkey
*/
if( /* IF SQL QUERY FAILED */ ) {
eurephia_log(ctx, LOG_FATAL, 0,
"Could not update session status in lastlog (%s))", session->sessionkey);
return 0;
}
/* FREE SQL RESULT */
// Delete session variables
/* WORK TO DO -- DO SQL:
"DELETE FROM openvpn_sessions WHERE sessionkey = '%q'",
session->sessionkey
*/
if( /* IF SQL QUERY FAILED */ ) {
eurephia_log(ctx, LOG_FATAL, 0,
"Could not delete session variables (%s))", session->sessionkey);
return 0;
}
/* FREE SQL RESULT */
// Remove the sessionkey from openvpn_sessions
if( eDBremove_sessionkey(ctx, session->sessionkey) == 0 ) {
return 0;
}
return 1;
}
char *eDBget_firewall_profile(eurephiaCTX *ctx, eurephiaSESSION *session)
{
char *ret = NULL;
DEBUG(ctx, 20, "Function call: eDBget_firewall_profile(ctx, {session}'%s')",
session->sessionkey);
/* WORK TO DO -- DO SQL:
"SELECT fw_profile "
" FROM openvpn_lastlog "
" JOIN openvpn_usercerts USING(certid, uid)"
" JOIN openvpn_accesses USING(accessprofile)"
" WHERE sessionkey = '%q'",
session->sessionkey
*/
if( /* IF SQL QUERY FAILED */ ) {
eurephia_log(ctx, LOG_FATAL, 0,
"Could not retrieve firewall profile for session '%s'",
session->sessionkey);
return NULL;
}
ret = strdup_nullsafe(/* GET fw_profile FROM SQL RESULT */);
/* FREE SQL RESULT */
return ret;
}
eurephiaVALUES *eDBget_blacklisted_ip(eurephiaCTX *ctx) {
eurephiaVALUES *ret = NULL;
DEBUG(ctx, 20, "Function call: eDBget_blacklisted_ip(ctx)");
/* WORK TO DO -- DO SQL:
SELECT remoteip FROM openvpn_blacklist WHERE remoteip IS NOT NULL
*/
if( /* IF SQL QUERY FAILED */ ) {
eurephia_log(ctx, LOG_FATAL, 0,
"Could not retrieve blacklisted IP addresses from the database");
return NULL;
}
ret = eCreate_value_space(ctx, 21);
for( /* LOOP THROUGH ALL RECORDS */ ) {
eAdd_value(ctx, ret, NULL, /* GET remoteip FROM SQL RESULT */);
}
/* FREE SQL RESULT */
return ret;
}
#if DRIVERAPIVERSION > 1
/*
* API Version 2 functions
*
*/
#endif
|