[f32d557] | 1 | /********************************************************************\ |
---|
| 2 | * BitlBee -- An IRC to other IM-networks gateway * |
---|
| 3 | * * |
---|
| 4 | * Copyright 2002-2004 Wilmer van der Gaast and others * |
---|
| 5 | \********************************************************************/ |
---|
| 6 | |
---|
| 7 | /* Storage backend that uses a LDAP database */ |
---|
| 8 | |
---|
| 9 | /* Copyright (C) 2006 Jelmer Vernooij <jelmer@samba.org> */ |
---|
| 10 | |
---|
| 11 | /* |
---|
| 12 | This program is free software; you can redistribute it and/or modify |
---|
| 13 | it under the terms of the GNU General Public License as published by |
---|
| 14 | the Free Software Foundation; either version 2 of the License, or |
---|
| 15 | (at your option) any later version. |
---|
| 16 | |
---|
| 17 | This program is distributed in the hope that it will be useful, |
---|
| 18 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 19 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 20 | GNU General Public License for more details. |
---|
| 21 | |
---|
| 22 | You should have received a copy of the GNU General Public License with |
---|
| 23 | the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL; |
---|
| 24 | if not, write to the Free Software Foundation, Inc., 59 Temple Place, |
---|
| 25 | Suite 330, Boston, MA 02111-1307 USA |
---|
| 26 | */ |
---|
| 27 | |
---|
| 28 | #define BITLBEE_CORE |
---|
| 29 | #include "bitlbee.h" |
---|
| 30 | #include <ldap.h> |
---|
| 31 | |
---|
| 32 | #define BB_LDAP_HOST "localhost" |
---|
| 33 | #define BB_LDAP_BASE "" |
---|
| 34 | |
---|
| 35 | static char *nick_dn(const char *nick) |
---|
| 36 | { |
---|
| 37 | return g_strdup_printf("bitlBeeNick=%s%s%s", nick, BB_LDAP_BASE?",":"", BB_LDAP_BASE?BB_LDAP_BASE:""); |
---|
| 38 | } |
---|
| 39 | |
---|
| 40 | static storage_status_t nick_connect(const char *nick, const char *password, LDAP **ld) |
---|
| 41 | { |
---|
| 42 | char *mydn; |
---|
| 43 | int ret; |
---|
| 44 | storage_status_t status; |
---|
| 45 | *ld = ldap_init(BB_LDAP_HOST, LDAP_PORT); |
---|
| 46 | |
---|
| 47 | if (!ld) { |
---|
[a15c097] | 48 | log_message( LOGLVL_WARNING, "Unable to connect to LDAP server at %s", BB_LDAP_HOST ); |
---|
[f32d557] | 49 | return STORAGE_OTHER_ERROR; |
---|
| 50 | } |
---|
| 51 | |
---|
| 52 | mydn = nick_dn(nick); |
---|
| 53 | |
---|
| 54 | ret = ldap_simple_bind_s(*ld, mydn, password); |
---|
| 55 | |
---|
| 56 | switch (ret) { |
---|
| 57 | case LDAP_SUCCESS: status = STORAGE_OK; break; |
---|
| 58 | case LDAP_INVALID_CREDENTIALS: status = STORAGE_INVALID_PASSWORD; break; |
---|
| 59 | default: |
---|
[a15c097] | 60 | log_message( LOGLVL_WARNING, "Unable to authenticate %s: %s", mydn, ldap_err2string(ret) ); |
---|
[f32d557] | 61 | status = STORAGE_OTHER_ERROR; |
---|
| 62 | break; |
---|
| 63 | } |
---|
| 64 | |
---|
| 65 | g_free(mydn); |
---|
| 66 | |
---|
| 67 | return status; |
---|
| 68 | } |
---|
| 69 | |
---|
| 70 | static storage_status_t sldap_load ( const char *my_nick, const char* password, irc_t *irc ) |
---|
| 71 | { |
---|
[a15c097] | 72 | LDAPMessage *res, *msg; |
---|
[f32d557] | 73 | LDAP *ld; |
---|
[a15c097] | 74 | int ret, i; |
---|
[f32d557] | 75 | storage_status_t status; |
---|
| 76 | char *mydn; |
---|
| 77 | |
---|
| 78 | status = nick_connect(my_nick, password, &ld); |
---|
| 79 | if (status != STORAGE_OK) |
---|
| 80 | return status; |
---|
| 81 | |
---|
| 82 | mydn = nick_dn(my_nick); |
---|
| 83 | |
---|
[a15c097] | 84 | ret = ldap_search_s(ld, mydn, LDAP_SCOPE_BASE, "(objectClass=*)", NULL, 0, &res); |
---|
| 85 | |
---|
| 86 | if (ret != LDAP_SUCCESS) { |
---|
| 87 | log_message( LOGLVL_WARNING, "Unable to search for %s: %s", mydn, ldap_err2string(ret) ); |
---|
| 88 | ldap_unbind_s(ld); |
---|
| 89 | return STORAGE_OTHER_ERROR; |
---|
| 90 | } |
---|
[f32d557] | 91 | |
---|
| 92 | g_free(mydn); |
---|
| 93 | |
---|
[a15c097] | 94 | for (msg = ldap_first_entry(ld, res); msg; msg = ldap_next_entry(ld, msg)) { |
---|
| 95 | } |
---|
[f32d557] | 96 | |
---|
| 97 | /* FIXME: Store in irc_t */ |
---|
| 98 | |
---|
[a15c097] | 99 | ldap_unbind_s(ld); |
---|
[f32d557] | 100 | |
---|
| 101 | return STORAGE_OK; |
---|
| 102 | } |
---|
| 103 | |
---|
| 104 | static storage_status_t sldap_check_pass( const char *nick, const char *password ) |
---|
| 105 | { |
---|
| 106 | LDAP *ld; |
---|
| 107 | storage_status_t status; |
---|
| 108 | |
---|
| 109 | status = nick_connect(nick, password, &ld); |
---|
| 110 | |
---|
| 111 | ldap_unbind_s(ld); |
---|
| 112 | |
---|
| 113 | return status; |
---|
| 114 | } |
---|
| 115 | |
---|
| 116 | static storage_status_t sldap_remove( const char *nick, const char *password ) |
---|
| 117 | { |
---|
| 118 | storage_status_t status; |
---|
| 119 | LDAP *ld; |
---|
| 120 | char *mydn; |
---|
| 121 | int ret; |
---|
| 122 | |
---|
| 123 | status = nick_connect(nick, password, &ld); |
---|
| 124 | |
---|
| 125 | if (status != STORAGE_OK) |
---|
| 126 | return status; |
---|
| 127 | |
---|
| 128 | mydn = nick_dn(nick); |
---|
| 129 | |
---|
| 130 | ret = ldap_delete(ld, mydn); |
---|
| 131 | |
---|
| 132 | if (ret != LDAP_SUCCESS) { |
---|
[a15c097] | 133 | log_message( LOGLVL_WARNING, "Error removing %s: %s", mydn, ldap_err2string(ret) ); |
---|
| 134 | ldap_unbind_s(ld); |
---|
[f32d557] | 135 | return STORAGE_OTHER_ERROR; |
---|
| 136 | } |
---|
| 137 | |
---|
[a15c097] | 138 | ldap_unbind_s(ld); |
---|
| 139 | |
---|
[f32d557] | 140 | g_free(mydn); |
---|
| 141 | return STORAGE_OK; |
---|
| 142 | } |
---|
| 143 | |
---|
[a15c097] | 144 | static storage_status_t sldap_save( irc_t *irc, int overwrite ) |
---|
| 145 | { |
---|
| 146 | LDAP *ld; |
---|
| 147 | char *mydn; |
---|
| 148 | storage_status_t status; |
---|
| 149 | LDAPMessage *msg; |
---|
| 150 | |
---|
| 151 | status = nick_connect(irc->nick, irc->password, &ld); |
---|
| 152 | if (status != STORAGE_OK) |
---|
| 153 | return status; |
---|
| 154 | |
---|
| 155 | mydn = nick_dn(irc->nick); |
---|
| 156 | |
---|
| 157 | /* FIXME: Make this a bit more atomic? What if we crash after |
---|
| 158 | * removing the old account but before adding the new one ? */ |
---|
| 159 | if (overwrite) |
---|
| 160 | sldap_remove(irc->nick, irc->password); |
---|
| 161 | |
---|
| 162 | g_free(mydn); |
---|
| 163 | |
---|
| 164 | ldap_unbind_s(ld); |
---|
| 165 | |
---|
| 166 | return STORAGE_OK; |
---|
| 167 | } |
---|
| 168 | |
---|
| 169 | |
---|
| 170 | |
---|
[f32d557] | 171 | storage_t storage_ldap = { |
---|
| 172 | .name = "ldap", |
---|
| 173 | .check_pass = sldap_check_pass, |
---|
| 174 | .remove = sldap_remove, |
---|
| 175 | .load = sldap_load, |
---|
| 176 | .save = sldap_save |
---|
| 177 | }; |
---|