X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fmodules%2Fvcard%2Fserv_vcard.c;h=439a714a8d5b4d682f24c72b05b5d9077dd8c5f8;hb=ec3a9fd41d060931332bee674e856ce5265a1d8a;hp=36fdb257d60d2f87cf14ed9999fcf06a6f0b8444;hpb=848934c1722edc208c4df49c571586b72c3fc486;p=citadel.git diff --git a/citadel/modules/vcard/serv_vcard.c b/citadel/modules/vcard/serv_vcard.c index 36fdb257d..439a714a8 100644 --- a/citadel/modules/vcard/serv_vcard.c +++ b/citadel/modules/vcard/serv_vcard.c @@ -2,7 +2,7 @@ * A server-side module for Citadel which supports address book information * using the standard vCard format. * - * Copyright (c) 1999-2012 by the citadel.org team + * Copyright (c) 1999-2016 by the citadel.org team * * This program is open source software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3. @@ -63,6 +63,7 @@ #include "user_ops.h" #include "database.h" #include "msgbase.h" +#include "room_ops.h" #include "internet_addressing.h" #include "serv_vcard.h" #include "citadel_ldap.h" @@ -72,10 +73,12 @@ * set global flag calling for an aide to validate new users */ void set_mm_valid(void) { + int flags = 0; + begin_critical_section(S_CONTROL); - get_control(); - CitControl.MMflags = CitControl.MMflags | MM_VALID ; - put_control(); + flags = CtdlGetConfigInt("MMflags"); + flags = flags | MM_VALID ; + CtdlSetConfigInt("MMflags", flags); end_critical_section(S_CONTROL); } @@ -94,8 +97,8 @@ void vcard_extract_internet_addresses(struct CtdlMessage *msg, int (*callback)(c int instance = 0; int found_something = 0; - if (msg->cm_fields[eAuthor] == NULL) return; - if (msg->cm_fields[eNodeName] == NULL) return; + if (CM_IsEmpty(msg, eAuthor)) return; + if (CM_IsEmpty(msg, eNodeName)) return; snprintf(citadel_address, sizeof citadel_address, "%s @ %s", msg->cm_fields[eAuthor], msg->cm_fields[eNodeName]); @@ -184,12 +187,12 @@ int vcard_directory_add_user(char *internet_addr, char *citadel_addr) { void vcard_add_to_directory(long msgnum, void *data) { struct CtdlMessage *msg; - msg = CtdlFetchMessage(msgnum, 1); + msg = CtdlFetchMessage(msgnum, 1, 1); if (msg != NULL) { vcard_extract_internet_addresses(msg, vcard_directory_add_user); } - CtdlFreeMessage(msg); + CM_Free(msg); } @@ -328,9 +331,8 @@ void vcard_extract_vcard(char *name, char *filename, char *partnum, char *disp, * function accordingly (delete the user's existing vCard in the config room * and in the global address book). */ -int vcard_upload_beforesave(struct CtdlMessage *msg) { +int vcard_upload_beforesave(struct CtdlMessage *msg, recptypes *recp) { struct CitContext *CCC = CC; - char *ptr; char *s; char buf[SIZ]; struct ctdluser usbuf; @@ -341,17 +343,16 @@ int vcard_upload_beforesave(struct CtdlMessage *msg) { int yes_my_citadel_config = 0; int yes_any_vcard_room = 0; - if (!CCC->logged_in) return(0); /* Only do this if logged in. */ + if ((!CCC->logged_in) && (CCC->vcard_updated_by_ldap==0)) return(0); /* Only do this if logged in, or if ldap changed the vcard. */ /* Is this some user's "My Citadel Config" room? */ if (((CCC->room.QRflags & QR_MAILBOX) != 0) && (!strcasecmp(&CCC->room.QRname[11], USERCONFIGROOM)) ) { /* Yes, we want to do this */ yes_my_citadel_config = 1; - #ifdef VCARD_SAVES_BY_AIDES_ONLY - /* Prevent non-aides from performing registration changes */ - if (CCC->user.axlevel < AxAideU) { + /* Prevent non-aides from performing registration changes, but ldap is ok. */ + if ((CCC->user.axlevel < AxAideU) && (CCC->vcard_updated_by_ldap==0)) { return(1); } #endif @@ -373,26 +374,29 @@ int vcard_upload_beforesave(struct CtdlMessage *msg) { /* Ok, if we got this far, look into the situation further... */ - ptr = msg->cm_fields[eMesageText]; - if (ptr == NULL) return(0); - - mime_parser(msg->cm_fields[eMesageText], - NULL, - *vcard_extract_vcard, - NULL, NULL, - &v, /* user data ptr - put the vcard here */ - 0 + if (CM_IsEmpty(msg, eMesageText)) return(0); + + mime_parser(CM_RANGE(msg, eMesageText), + *vcard_extract_vcard, + NULL, NULL, + &v, /* user data ptr - put the vcard here */ + 0 ); if (v == NULL) return(0); /* no vCards were found in this message */ /* If users cannot create their own accounts, they cannot re-register either. */ - if ( (yes_my_citadel_config) && (config.c_disable_newu) && (CCC->user.axlevel < AxAideU) ) { + if ( (yes_my_citadel_config) && + (CtdlGetConfigInt("c_disable_newu")) && + (CCC->user.axlevel < AxAideU) && + (CCC->vcard_updated_by_ldap==0) ) + { return(1); } vcard_get_prop(v, "fn", 1, 0, 0); + if (yes_my_citadel_config) { /* Bingo! The user is uploading a new vCard, so * delete the old one. First, figure out which user @@ -425,13 +429,15 @@ int vcard_upload_beforesave(struct CtdlMessage *msg) { CtdlDeleteMessages(CCC->room.QRname, NULL, 0, "[Tt][Ee][Xx][Tt]/.*[Vv][Cc][Aa][Rr][Dd]$"); /* Make the author of the message the name of the user. */ - CM_SetField(msg, eAuthor, usbuf.fullname, strlen(usbuf.fullname)); + if (!IsEmptyStr(usbuf.fullname)) { + CM_SetField(msg, eAuthor, usbuf.fullname, strlen(usbuf.fullname)); + } } /* Insert or replace RFC2739-compliant free/busy URL */ if (yes_my_citadel_config) { sprintf(buf, "http://%s/%s.vfb", - config.c_fqdn, + CtdlGetConfigStr("c_fqdn"), usbuf.fullname); for (i=0; buf[i]; ++i) { if (buf[i] == ' ') buf[i] = '_'; @@ -439,18 +445,19 @@ int vcard_upload_beforesave(struct CtdlMessage *msg) { vcard_set_prop(v, "FBURL;PREF", buf, 0); } - /* If the vCard has no UID, then give it one. */ + s = vcard_get_prop(v, "UID", 1, 0, 0); - if (s == NULL) { + if (s == NULL) { /* Note LDAP auth sets UID from the LDAP UUID, use that if it exists. */ + /* Enforce local UID policy if applicable */ + if (yes_my_citadel_config) { + snprintf(buf, sizeof buf, VCARD_EXT_FORMAT, msg->cm_fields[eAuthor], NODENAME); + } else { + /* If the vCard has no UID, then give it one. */ generate_uuid(buf); - vcard_set_prop(v, "UID", buf, 0); - } + } + vcard_set_prop(v, "UID", buf, 0); + } - /* Enforce local UID policy if applicable */ - if (yes_my_citadel_config) { - snprintf(buf, sizeof buf, VCARD_EXT_FORMAT, msg->cm_fields[eAuthor], NODENAME); - vcard_set_prop(v, "UID", buf, 0); - } /* * Set the EUID of the message to the UID of the vCard. @@ -458,9 +465,9 @@ int vcard_upload_beforesave(struct CtdlMessage *msg) { CM_FlushField(msg, eExclusiveID); s = vcard_get_prop(v, "UID", 1, 0, 0); - if (s != NULL) { + if (!IsEmptyStr(s)) { CM_SetField(msg, eExclusiveID, s, strlen(s)); - if (msg->cm_fields[eMsgSubject] == NULL) { + if (CM_IsEmpty(msg, eMsgSubject)) { CM_CopyField(msg, eMsgSubject, eExclusiveID); } } @@ -472,13 +479,13 @@ int vcard_upload_beforesave(struct CtdlMessage *msg) { if (s == NULL) { s = vcard_get_prop(v, "N", 1, 0, 0); } - if (s != NULL) { + if (!IsEmptyStr(s)) { CM_SetField(msg, eMsgSubject, s, strlen(s)); } /* Re-serialize it back into the msg body */ ser = vcard_serialize(v); - if (ser != NULL) { + if (!IsEmptyStr(ser)) { StrBuf *buf; long serlen; @@ -505,7 +512,7 @@ int vcard_upload_beforesave(struct CtdlMessage *msg) { * function accordingly (copy the vCard from the config room to the global * address book). */ -int vcard_upload_aftersave(struct CtdlMessage *msg) { +int vcard_upload_aftersave(struct CtdlMessage *msg, recptypes *recp) { struct CitContext *CCC = CC; char *ptr; int linelen; @@ -517,11 +524,13 @@ int vcard_upload_aftersave(struct CtdlMessage *msg) { char roomname[ROOMNAMELEN]; if (msg->cm_format_type != 4) return(0); - if (!CCC->logged_in) return(0); /* Only do this if logged in. */ + if ((!CCC->logged_in) && (CCC->vcard_updated_by_ldap==0)) return(0); /* Only do this if logged in, or if ldap changed the vcard. */ /* We're interested in user config rooms only. */ - if ( (strlen(CCC->room.QRname) >= 12) && (!strcasecmp(&CCC->room.QRname[11], USERCONFIGROOM)) ) { + if ( !IsEmptyStr(CCC->room.QRname) && + (strlen(CCC->room.QRname) >= 12) && + (!strcasecmp(&CCC->room.QRname[11], USERCONFIGROOM)) ) { is_UserConf = 1; /* It's someone's config room */ } CtdlMailboxName(roomname, sizeof roomname, &CCC->user, USERCONFIGROOM); @@ -535,8 +544,12 @@ int vcard_upload_aftersave(struct CtdlMessage *msg) { if (!is_UserConf && !is_GAB) return(0); + if (CM_IsEmpty(msg, eMesageText)) + return 0; + ptr = msg->cm_fields[eMesageText]; - if (ptr == NULL) return(0); + + CCC->vcard_updated_by_ldap=0; /* As this will write LDAP's previous changes, disallow LDAP change auth until next LDAP change. */ NewStrBufDupAppendFlush(&CCC->StatusMessage, NULL, NULL, 0); @@ -582,18 +595,18 @@ int vcard_upload_aftersave(struct CtdlMessage *msg) { * Assume they don't need validating. */ if (CCC->user.axlevel >= AxAideU) { - CtdlGetUserLock(&CCC->user, CCC->curr_user); + CtdlLockGetCurrentUser(); CCC->user.flags |= US_REGIS; - CtdlPutUserLock(&CCC->user); + CtdlPutCurrentUserLock(); return (0); } set_mm_valid(); /* ...which also means we need to flag the user */ - CtdlGetUserLock(&CCC->user, CCC->curr_user); + CtdlLockGetCurrentUser(); CCC->user.flags |= (US_REGIS|US_NEEDVALID); - CtdlPutUserLock(&CCC->user); + CtdlPutCurrentUserLock(); return(0); } @@ -646,11 +659,11 @@ struct vCard *vcard_get_user(struct ctdluser *u) { if (VCmsgnum < 0L) return vcard_new(); - msg = CtdlFetchMessage(VCmsgnum, 1); + msg = CtdlFetchMessage(VCmsgnum, 1, 1); if (msg == NULL) return vcard_new(); v = vcard_load(msg->cm_fields[eMesageText]); - CtdlFreeMessage(msg); + CM_Free(msg); return v; } @@ -668,7 +681,7 @@ void vcard_write_user(struct ctdluser *u, struct vCard *v) { if (ser == NULL) { ser = strdup("begin:vcard\r\nend:vcard\r\n"); } - if (!ser) return; + if (ser == NULL) return; /* This handy API function does all the work for us. * NOTE: normally we would want to set that last argument to 1, to @@ -716,7 +729,7 @@ void cmd_regi(char *argbuf) { } /* If users cannot create their own accounts, they cannot re-register either. */ - if ( (config.c_disable_newu) && (CCC->user.axlevel < AxAideU) ) { + if ( (CtdlGetConfigInt("c_disable_newu")) && (CCC->user.axlevel < AxAideU) ) { cprintf("%d Self-service registration is not allowed here.\n", ERROR + HIGHER_ACCESS_REQUIRED); } @@ -843,7 +856,9 @@ void vcard_newuser(struct ctdluser *usbuf) { char buf[256]; int i; struct vCard *v; + int need_default_vcard; + need_default_vcard =1; vcard_fn_to_n(vname, usbuf->fullname, sizeof vname); syslog(LOG_DEBUG, "Converted <%s> to <%s>", usbuf->fullname, vname); @@ -856,7 +871,7 @@ void vcard_newuser(struct ctdluser *usbuf) { #ifdef HAVE_GETPWUID_R /* If using host auth mode, we add an email address based on the login */ - if (config.c_auth_mode == AUTHMODE_HOST) { + if (CtdlGetConfigInt("c_auth_mode") == AUTHMODE_HOST) { struct passwd pwd; char pwd_buffer[SIZ]; @@ -867,19 +882,43 @@ void vcard_newuser(struct ctdluser *usbuf) { syslog(LOG_DEBUG, "Searching for uid %d", usbuf->uid); if (getpwuid_r(usbuf->uid, &pwd, pwd_buffer, sizeof pwd_buffer, &result) == 0) { #endif // HAVE_GETPWUID_R - snprintf(buf, sizeof buf, "%s@%s", pwd.pw_name, config.c_fqdn); + snprintf(buf, sizeof buf, "%s@%s", pwd.pw_name, CtdlGetConfigStr("c_fqdn")); vcard_add_prop(v, "email;internet", buf); + need_default_vcard = 0; } } #endif - /* Everyone gets an email address based on their display name */ - snprintf(buf, sizeof buf, "%s@%s", usbuf->fullname, config.c_fqdn); - for (i=0; buf[i]; ++i) { - if (buf[i] == ' ') buf[i] = '_'; - } - vcard_add_prop(v, "email;internet", buf); +#ifdef HAVE_LDAP + /* + * Is this an LDAP session? If so, copy various LDAP attributes from the directory entry + * into the user's vCard. + */ + if ((CtdlGetConfigInt("c_auth_mode") == AUTHMODE_LDAP) || (CtdlGetConfigInt("c_auth_mode") == AUTHMODE_LDAP_AD)) { + //uid_t ldap_uid; + int found_user; + char ldap_cn[512]; + char ldap_dn[512]; + found_user = CtdlTryUserLDAP(usbuf->fullname, ldap_dn, sizeof ldap_dn, ldap_cn, sizeof ldap_cn, &usbuf->uid,1); + if (found_user == 0) { + if (Ctdl_LDAP_to_vCard(ldap_dn, v)) { + /* Allow global address book and internet directory update without login long enough to write this. */ + CC->vcard_updated_by_ldap++; /* Otherwise we'll only update the user config. */ + need_default_vcard = 0; + syslog(LOG_DEBUG, "LDAP Created Initial Vcard for %s\n",usbuf->fullname); + } + } + } +#endif + if (need_default_vcard!=0) { + /* Everyone gets an email address based on their display name */ + snprintf(buf, sizeof buf, "%s@%s", usbuf->fullname, CtdlGetConfigStr("c_fqdn")); + for (i=0; buf[i]; ++i) { + if (buf[i] == ' ') buf[i] = '_'; + } + vcard_add_prop(v, "email;internet", buf); + } vcard_write_user(usbuf, v); vcard_free(v); @@ -903,9 +942,11 @@ void vcard_purge(struct ctdluser *usbuf) { msg->cm_magic = CTDLMESSAGE_MAGIC; msg->cm_anon_type = MES_NORMAL; msg->cm_format_type = 0; - CM_SetField(msg, eAuthor, usbuf->fullname, strlen(usbuf->fullname)); + if (!IsEmptyStr(usbuf->fullname)) { + CM_SetField(msg, eAuthor, usbuf->fullname, strlen(usbuf->fullname)); + } CM_SetField(msg, eOriginalRoom, HKEY(ADDRESS_BOOK_ROOM)); - CM_SetField(msg, eNodeName, NODENAME, strlen(NODENAME)); + CM_SetField(msg, eNodeName, CtdlGetConfigStr("c_nodename"), strlen(CtdlGetConfigStr("c_nodename"))); CM_SetField(msg, eMesageText, HKEY("Purge this vCard\n")); len = snprintf(buf, sizeof buf, VCARD_EXT_FORMAT, @@ -915,7 +956,7 @@ void vcard_purge(struct ctdluser *usbuf) { CM_SetField(msg, eSpecialField, HKEY("CANCEL")); CtdlSubmitMsg(msg, NULL, ADDRESS_BOOK_ROOM, QP_EADDR); - CtdlFreeMessage(msg); + CM_Free(msg); } @@ -934,8 +975,11 @@ int vcard_extract_from_network(struct CtdlMessage *msg, char *target_room) { if (msg->cm_format_type != 4) return(0); + if (CM_IsEmpty(msg, eMesageText)) + return 0; + ptr = msg->cm_fields[eMesageText]; - if (ptr == NULL) return(0); + while (ptr != NULL) { linelen = strcspn(ptr, "\n"); @@ -974,11 +1018,14 @@ void vcard_delete_remove(char *room, long msgnum) { return; } - msg = CtdlFetchMessage(msgnum, 1); + msg = CtdlFetchMessage(msgnum, 1, 1); if (msg == NULL) return; + if (CM_IsEmpty(msg, eMesageText)) + goto EOH; + ptr = msg->cm_fields[eMesageText]; - if (ptr == NULL) goto EOH; + while (ptr != NULL) { linelen = strcspn(ptr, "\n"); if (linelen == 0) goto EOH; @@ -992,7 +1039,7 @@ void vcard_delete_remove(char *room, long msgnum) { if (ptr != NULL) ++ptr; } -EOH: CtdlFreeMessage(msg); +EOH: CM_Free(msg); } @@ -1098,16 +1145,15 @@ void dvca_mime_callback(char *name, char *filename, char *partnum, char *disp, void dvca_callback(long msgnum, void *userdata) { struct CtdlMessage *msg = NULL; - msg = CtdlFetchMessage(msgnum, 1); + msg = CtdlFetchMessage(msgnum, 1, 1); if (msg == NULL) return; - mime_parser(msg->cm_fields[eMesageText], - NULL, - *dvca_mime_callback, /* callback function */ - NULL, NULL, - NULL, /* user data */ - 0 - ); - CtdlFreeMessage(msg); + mime_parser(CM_RANGE(msg, eMesageText), + *dvca_mime_callback, /* callback function */ + NULL, NULL, + NULL, /* user data */ + 0 + ); + CM_Free(msg); } @@ -1165,7 +1211,7 @@ void check_get(void) { if (strncasecmp(cmdbuf, "GET ", 4)==0) { - struct recptypes *rcpt; + recptypes *rcpt; char *argbuf = &cmdbuf[4]; extract_token(internet_addr, argbuf, 0, '|', sizeof internet_addr); @@ -1243,10 +1289,12 @@ void vcard_session_login_hook(void) { * Is this an LDAP session? If so, copy various LDAP attributes from the directory entry * into the user's vCard. */ - if ((config.c_auth_mode == AUTHMODE_LDAP) || (config.c_auth_mode == AUTHMODE_LDAP_AD)) { + if ((CtdlGetConfigInt("c_auth_mode") == AUTHMODE_LDAP) || (CtdlGetConfigInt("c_auth_mode") == AUTHMODE_LDAP_AD)) { v = vcard_get_user(&CCC->user); if (v) { if (Ctdl_LDAP_to_vCard(CCC->ldap_dn, v)) { + CCC->vcard_updated_by_ldap++; /* Make sure changes make it to the global address book and internet directory, not just the user config. */ + syslog(LOG_DEBUG, "LDAP Detected vcard change.\n"); vcard_write_user(&CCC->user, v); } } @@ -1321,10 +1369,10 @@ void strip_addresses_already_have(long msgnum, void *userdata) { collected_addresses = (char *)userdata; - msg = CtdlFetchMessage(msgnum, 1); + msg = CtdlFetchMessage(msgnum, 1, 1); if (msg == NULL) return; v = vcard_load(msg->cm_fields[eMesageText]); - CtdlFreeMessage(msg); + CM_Free(msg); i = 0; while (value = vcard_get_prop(v, "email", 1, i++, 0), value != NULL) { @@ -1358,7 +1406,7 @@ void store_this_ha(struct addresses_to_be_filed *aptr) { int i; /* First remove any addresses we already have in the address book */ - CtdlUserGoto(aptr->roomname, 0, 0, NULL, NULL); + CtdlUserGoto(aptr->roomname, 0, 0, NULL, NULL, NULL, NULL); CtdlForEachMessage(MSGS_ALL, 0, NULL, "[Tt][Ee][Xx][Tt]/.*[Vv][Cc][Aa][Rr][Dd]$", NULL, strip_addresses_already_have, aptr->collected_addresses); @@ -1378,7 +1426,9 @@ void store_this_ha(struct addresses_to_be_filed *aptr) { vmsg->cm_format_type = FMT_RFC822; CM_SetField(vmsg, eAuthor, HKEY("Citadel")); s = vcard_get_prop(v, "UID", 1, 0, 0); - CM_SetField(vmsg, eExclusiveID, s, strlen(s)); + if (!IsEmptyStr(s)) { + CM_SetField(vmsg, eExclusiveID, s, strlen(s)); + } ser = vcard_serialize(v); if (ser != NULL) { StrBuf *buf; @@ -1397,7 +1447,7 @@ void store_this_ha(struct addresses_to_be_filed *aptr) { syslog(LOG_DEBUG, "Adding contact: %s", recipient); CtdlSubmitMsg(vmsg, NULL, aptr->roomname, QP_EADDR); - CtdlFreeMessage(vmsg); + CM_Free(vmsg); } } @@ -1498,22 +1548,29 @@ CTDL_MODULE_INIT(vcard) * on this room even if we don't share it with any other nodes. * This allows the CANCEL messages (i.e. "Purge this vCard") to be * purged. + * + * FIXME this no longer works */ assoc_file_name(filename, sizeof filename, &qr, ctdl_netcfg_dir); fp = fopen(filename, "a"); - if (fp != NULL) fclose(fp); - rv = chown(filename, CTDLUID, (-1)); - if (rv == -1) - syslog(LOG_EMERG, "Failed to adjust ownership of: %s [%s]", - filename, strerror(errno)); - rv = chmod(filename, 0600); - if (rv == -1) - syslog(LOG_EMERG, "Failed to adjust ownership of: %s [%s]", - filename, strerror(errno)); + if (fp != NULL) { + fclose(fp); + rv = chown(filename, CTDLUID, (-1)); + if (rv == -1) { + syslog(LOG_ERR, "Failed to adjust ownership of %s: %s", filename, strerror(errno)); + } + rv = chmod(filename, 0600); + if (rv == -1) { + syslog(LOG_ERR, "Failed to adjust ownership of %s: %s", filename, strerror(errno)); + } + } + else { + syslog(LOG_ERR, "Cannot create %s: %s", filename, strerror(errno)); + } } /* for postfix tcpdict */ - CtdlRegisterServiceHook(config.c_pftcpdict_port, /* Postfix */ + CtdlRegisterServiceHook(CtdlGetConfigInt("c_pftcpdict_port"), /* Postfix */ NULL, check_get_greeting, check_get,