X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fserv_network.c;h=a769aab3e3c20a4cba7c88abb75881f82f322836;hb=8eac29db12e027867644fcac287a6b4c34e067c7;hp=acbfbfcca0e98de23865a1461e3d7be328609018;hpb=5d4d5878a3213efdaf677233b8de1613590489a1;p=citadel.git diff --git a/citadel/serv_network.c b/citadel/serv_network.c index acbfbfcca..a769aab3e 100644 --- a/citadel/serv_network.c +++ b/citadel/serv_network.c @@ -4,7 +4,7 @@ * This module handles shared rooms, inter-Citadel mail, and outbound * mailing list processing. * - * Copyright (C) 2000-2002 by Art Cancro and others. + * Copyright (C) 2000-2005 by Art Cancro and others. * This code is released under the terms of the GNU General Public License. * * ** NOTE ** A word on the S_NETCONFIGS semaphore: @@ -65,12 +65,13 @@ #include "serv_network.h" #include "clientsocket.h" #include "file_ops.h" +#include "citadel_dirs.h" #ifndef HAVE_SNPRINTF #include "snprintf.h" #endif -/* Nonzero while we are doing outbound network processing */ +/* Nonzero while we are doing network processing */ static int doing_queue = 0; /* @@ -363,7 +364,7 @@ void cmd_gnet(char *argbuf) { FILE *fp; if (CtdlAccessCheck(ac_room_aide)) return; - assoc_file_name(filename, sizeof filename, &CC->room, "netconfigs"); + assoc_file_name(filename, sizeof filename, &CC->room, ctdl_netcfg_dir); cprintf("%d Network settings for room #%ld <%s>\n", LISTING_FOLLOWS, CC->room.QRnumber, CC->room.QRname); @@ -390,8 +391,8 @@ void cmd_snet(char *argbuf) { unbuffer_output(); if (CtdlAccessCheck(ac_room_aide)) return; - safestrncpy(tempfilename, tmpnam(NULL), sizeof tempfilename); - assoc_file_name(filename, sizeof filename, &CC->room, "netconfigs"); + CtdlMakeTempFileName(tempfilename, sizeof tempfilename); + assoc_file_name(filename, sizeof filename, &CC->room, ctdl_netcfg_dir); fp = fopen(tempfilename, "w"); if (fp == NULL) { @@ -419,6 +420,176 @@ void cmd_snet(char *argbuf) { } +/* + * Deliver digest messages + */ +void network_deliver_digest(struct SpoolControl *sc) { + char buf[SIZ]; + int i; + struct CtdlMessage *msg; + long msglen; + long msgnum; + char *instr = NULL; + size_t instr_len = SIZ; + struct CtdlMessage *imsg; + struct namelist *nptr; + + if (sc->num_msgs_spooled < 1) { + fclose(sc->digestfp); + sc->digestfp = NULL; + return; + } + + msg = malloc(sizeof(struct CtdlMessage)); + memset(msg, 0, sizeof(struct CtdlMessage)); + msg->cm_magic = CTDLMESSAGE_MAGIC; + msg->cm_format_type = FMT_RFC822; + msg->cm_anon_type = MES_NORMAL; + + sprintf(buf, "%ld", time(NULL)); + msg->cm_fields['T'] = strdup(buf); + msg->cm_fields['A'] = strdup(CC->room.QRname); + snprintf(buf, sizeof buf, "[%s]", CC->room.QRname); + msg->cm_fields['U'] = strdup(buf); + sprintf(buf, "room_%s@%s", CC->room.QRname, config.c_fqdn); + for (i=0; icm_fields['F'] = strdup(buf); + msg->cm_fields['R'] = strdup(buf); + + /* + * Go fetch the contents of the digest + */ + fseek(sc->digestfp, 0L, SEEK_END); + msglen = ftell(sc->digestfp); + + msg->cm_fields['M'] = malloc(msglen + 1); + fseek(sc->digestfp, 0L, SEEK_SET); + fread(msg->cm_fields['M'], (size_t)msglen, 1, sc->digestfp); + msg->cm_fields['M'][msglen] = 0; + + fclose(sc->digestfp); + sc->digestfp = NULL; + + msgnum = CtdlSubmitMsg(msg, NULL, SMTP_SPOOLOUT_ROOM); + CtdlFreeMessage(msg); + + /* Now generate the delivery instructions */ + + /* + * Figure out how big a buffer we need to allocate + */ + for (nptr = sc->digestrecps; nptr != NULL; nptr = nptr->next) { + instr_len = instr_len + strlen(nptr->name) + 2; + } + + /* + * allocate... + */ + lprintf(CTDL_DEBUG, "Generating delivery instructions\n"); + instr = malloc(instr_len); + if (instr == NULL) { + lprintf(CTDL_EMERG, "Cannot allocate %ld bytes for instr...\n", + (long)instr_len); + abort(); + } + snprintf(instr, instr_len, + "Content-type: %s\n\nmsgid|%ld\nsubmitted|%ld\n" + "bounceto|postmaster@%s\n" , + SPOOLMIME, msgnum, (long)time(NULL), config.c_fqdn ); + + /* Generate delivery instructions for each recipient */ + for (nptr = sc->digestrecps; nptr != NULL; nptr = nptr->next) { + size_t tmp = strlen(instr); + snprintf(&instr[tmp], instr_len - tmp, + "remote|%s|0||\n", nptr->name); + } + + /* + * Generate a message from the instructions + */ + imsg = malloc(sizeof(struct CtdlMessage)); + memset(imsg, 0, sizeof(struct CtdlMessage)); + imsg->cm_magic = CTDLMESSAGE_MAGIC; + imsg->cm_anon_type = MES_NORMAL; + imsg->cm_format_type = FMT_RFC822; + imsg->cm_fields['A'] = strdup("Citadel"); + imsg->cm_fields['M'] = instr; + + /* Save delivery instructions in spoolout room */ + CtdlSubmitMsg(imsg, NULL, SMTP_SPOOLOUT_ROOM); + CtdlFreeMessage(imsg); +} + + +/* + * Deliver list messages to everyone on the list ... efficiently + */ +void network_deliver_list(struct CtdlMessage *msg, struct SpoolControl *sc) { + long msgnum; + char *instr = NULL; + size_t instr_len = SIZ; + struct CtdlMessage *imsg; + struct namelist *nptr; + + /* Don't do this if there were no recipients! */ + if (sc->listrecps == NULL) return; + + /* Save the message to disk... */ + msgnum = CtdlSubmitMsg(msg, NULL, SMTP_SPOOLOUT_ROOM); + + /* Now generate the delivery instructions */ + + /* + * Figure out how big a buffer we need to allocate + */ + for (nptr = sc->listrecps; nptr != NULL; nptr = nptr->next) { + instr_len = instr_len + strlen(nptr->name) + 2; + } + + /* + * allocate... + */ + lprintf(CTDL_DEBUG, "Generating delivery instructions\n"); + instr = malloc(instr_len); + if (instr == NULL) { + lprintf(CTDL_EMERG, "Cannot allocate %ld bytes for instr...\n", + (long)instr_len); + abort(); + } + snprintf(instr, instr_len, + "Content-type: %s\n\nmsgid|%ld\nsubmitted|%ld\n" + "bounceto|postmaster@%s\n" , + SPOOLMIME, msgnum, (long)time(NULL), config.c_fqdn ); + + /* Generate delivery instructions for each recipient */ + for (nptr = sc->listrecps; nptr != NULL; nptr = nptr->next) { + size_t tmp = strlen(instr); + snprintf(&instr[tmp], instr_len - tmp, + "remote|%s|0||\n", nptr->name); + } + + /* + * Generate a message from the instructions + */ + imsg = malloc(sizeof(struct CtdlMessage)); + memset(imsg, 0, sizeof(struct CtdlMessage)); + imsg->cm_magic = CTDLMESSAGE_MAGIC; + imsg->cm_anon_type = MES_NORMAL; + imsg->cm_format_type = FMT_RFC822; + imsg->cm_fields['A'] = strdup("Citadel"); + imsg->cm_fields['M'] = instr; + + /* Save delivery instructions in spoolout room */ + CtdlSubmitMsg(imsg, NULL, SMTP_SPOOLOUT_ROOM); + CtdlFreeMessage(imsg); +} + + + + /* * Spools out one message from the list. */ @@ -438,7 +609,6 @@ void network_spool_msg(long msgnum, void *userdata) { int send = 1; int delete_after_send = 0; /* Set to 1 to delete after spooling */ int ok_to_participate = 0; - char *end_of_headers = NULL; struct recptypes *valid; sc = (struct SpoolControl *)userdata; @@ -449,7 +619,7 @@ void network_spool_msg(long msgnum, void *userdata) { instr_len = SIZ; if (sc->listrecps != NULL) { /* Fetch the message. We're going to need to modify it - * for each recipient in order to satisfy foreign mailers, etc. + * in order to insert the [list name] in it, etc. */ msg = CtdlFetchMessage(msgnum, 1); if (msg != NULL) { @@ -462,19 +632,25 @@ void network_spool_msg(long msgnum, void *userdata) { free(msg->cm_fields['U']); msg->cm_fields['U'] = strdup(buf); - /* For each recipient... */ - for (nptr = sc->listrecps; nptr != NULL; nptr = nptr->next) { - - if (msg->cm_fields['R'] == NULL) { - free(msg->cm_fields['R']); + /* Set the recipient of the list message to the + * email address of the room itself. + * FIXME ... I want to be able to pick any address + */ + if (msg->cm_fields['R'] != NULL) { + free(msg->cm_fields['R']); + } + msg->cm_fields['R'] = malloc(256); + snprintf(msg->cm_fields['R'], 256, + "room_%s@%s", CC->room.QRname, + config.c_fqdn); + for (i=0; icm_fields['R']); ++i) { + if (isspace(msg->cm_fields['R'][i])) { + msg->cm_fields['R'][i] = '_'; } - msg->cm_fields['R'] = strdup(nptr->name); - - valid = validate_recipients(nptr->name); - CtdlSubmitMsg(msg, valid, ""); - free(valid); - } + + /* Handle delivery */ + network_deliver_list(msg, sc); CtdlFreeMessage(msg); } } @@ -508,17 +684,10 @@ void network_spool_msg(long msgnum, void *userdata) { CC->redirect_alloc = SIZ; safestrncpy(CC->preferred_formats, "text/plain", sizeof CC->preferred_formats); - CtdlOutputPreLoadedMsg(msg, 0L, MT_MIME, HEADERS_NONE, 0, 0); + CtdlOutputPreLoadedMsg(msg, MT_CITADEL, HEADERS_NONE, 0, 0); - end_of_headers = bmstrstr(CC->redirect_buffer, "\n\r\n", strncmp); - if (end_of_headers == NULL) { - end_of_headers = bmstrstr(CC->redirect_buffer, "\n\n", strncmp); - } - if (end_of_headers == NULL) { - end_of_headers = CC->redirect_buffer; - } - striplt(end_of_headers); - fprintf(sc->digestfp, "\n%s\n", end_of_headers); + striplt(CC->redirect_buffer); + fprintf(sc->digestfp, "\n%s\n", CC->redirect_buffer); free(CC->redirect_buffer); CC->redirect_buffer = NULL; @@ -593,90 +762,84 @@ void network_spool_msg(long msgnum, void *userdata) { /* * Process IGnet push shares */ - if (sc->ignet_push_shares != NULL) { - - msg = CtdlFetchMessage(msgnum, 1); - if (msg != NULL) { - size_t newpath_len; + msg = CtdlFetchMessage(msgnum, 1); + if (msg != NULL) { + size_t newpath_len; - /* Prepend our node name to the Path field whenever - * sending a message to another IGnet node - */ - if (msg->cm_fields['P'] == NULL) { - msg->cm_fields['P'] = strdup("username"); - } - newpath_len = strlen(msg->cm_fields['P']) + - strlen(config.c_nodename) + 2; - newpath = malloc(newpath_len); - snprintf(newpath, newpath_len, "%s!%s", - config.c_nodename, msg->cm_fields['P']); - free(msg->cm_fields['P']); - msg->cm_fields['P'] = newpath; - - /* - * Determine if this message is set to be deleted - * after sending out on the network - */ - if (msg->cm_fields['S'] != NULL) { - if (!strcasecmp(msg->cm_fields['S'], - "CANCEL")) { - delete_after_send = 1; - } + /* Prepend our node name to the Path field whenever + * sending a message to another IGnet node + */ + if (msg->cm_fields['P'] == NULL) { + msg->cm_fields['P'] = strdup("username"); + } + newpath_len = strlen(msg->cm_fields['P']) + + strlen(config.c_nodename) + 2; + newpath = malloc(newpath_len); + snprintf(newpath, newpath_len, "%s!%s", + config.c_nodename, msg->cm_fields['P']); + free(msg->cm_fields['P']); + msg->cm_fields['P'] = newpath; + + /* + * Determine if this message is set to be deleted + * after sending out on the network + */ + if (msg->cm_fields['S'] != NULL) { + if (!strcasecmp(msg->cm_fields['S'], "CANCEL")) { + delete_after_send = 1; } + } - /* Now send it to every node */ - for (mptr = sc->ignet_push_shares; mptr != NULL; - mptr = mptr->next) { + /* Now send it to every node */ + if (sc->ignet_push_shares != NULL) + for (mptr = sc->ignet_push_shares; mptr != NULL; + mptr = mptr->next) { - send = 1; + send = 1; - /* Check for valid node name */ - if (is_valid_node(NULL, NULL, mptr->remote_nodename) != 0) { - lprintf(CTDL_ERR, "Invalid node <%s>\n", - mptr->remote_nodename); - send = 0; - } + /* Check for valid node name */ + if (is_valid_node(NULL, NULL, mptr->remote_nodename) != 0) { + lprintf(CTDL_ERR, "Invalid node <%s>\n", + mptr->remote_nodename); + send = 0; + } - /* Check for split horizon */ - lprintf(CTDL_DEBUG, "Path is %s\n", msg->cm_fields['P']); - bang = num_tokens(msg->cm_fields['P'], '!'); - if (bang > 1) for (i=0; i<(bang-1); ++i) { - extract_token(buf, msg->cm_fields['P'], - i, '!', sizeof buf); - if (!strcasecmp(buf, mptr->remote_nodename)) { - send = 0; - } + /* Check for split horizon */ + lprintf(CTDL_DEBUG, "Path is %s\n", msg->cm_fields['P']); + bang = num_tokens(msg->cm_fields['P'], '!'); + if (bang > 1) for (i=0; i<(bang-1); ++i) { + extract_token(buf, msg->cm_fields['P'], + i, '!', sizeof buf); + if (!strcasecmp(buf, mptr->remote_nodename)) { + send = 0; } + } - /* Send the message */ - if (send == 1) { + /* Send the message */ + if (send == 1) { - /* - * Force the message to appear in the correct room - * on the far end by setting the C field correctly - */ - if (msg->cm_fields['C'] != NULL) { - free(msg->cm_fields['C']); - } - if (strlen(mptr->remote_roomname) > 0) { - msg->cm_fields['C'] = strdup(mptr->remote_roomname); - } - else { - msg->cm_fields['C'] = strdup(CC->room.QRname); - } + /* + * Force the message to appear in the correct room + * on the far end by setting the C field correctly + */ + if (msg->cm_fields['C'] != NULL) { + free(msg->cm_fields['C']); + } + if (strlen(mptr->remote_roomname) > 0) { + msg->cm_fields['C'] = strdup(mptr->remote_roomname); + } + else { + msg->cm_fields['C'] = strdup(CC->room.QRname); + } - /* serialize it for transmission */ - serialize_message(&sermsg, msg); + /* serialize it for transmission */ + serialize_message(&sermsg, msg); + if (sermsg.len > 0) { /* write it to the spool file */ - snprintf(filename, sizeof filename, -#ifndef HAVE_SPOOL_DIR - "." -#else - SPOOL_DIR -#endif /* HAVE_SPOOL_DIR */ - "/network/spoolout/%s", - mptr->remote_nodename); + snprintf(filename, sizeof filename,"%s/%s", + ctdl_netout_dir, + mptr->remote_nodename); lprintf(CTDL_DEBUG, "Appending to %s\n", filename); fp = fopen(filename, "ab"); if (fp != NULL) { @@ -687,13 +850,14 @@ void network_spool_msg(long msgnum, void *userdata) { else { lprintf(CTDL_ERR, "%s: %s\n", filename, strerror(errno)); } - + /* free the serialized version */ free(sermsg.ser); } + } - CtdlFreeMessage(msg); } + CtdlFreeMessage(msg); } /* update lastsent */ @@ -701,112 +865,12 @@ void network_spool_msg(long msgnum, void *userdata) { /* Delete this message if delete-after-send is set */ if (delete_after_send) { - CtdlDeleteMessages(CC->room.QRname, msgnum, "", 0); + CtdlDeleteMessages(CC->room.QRname, &msgnum, 1, "", 0); } } -/* - * Deliver digest messages - */ -void network_deliver_digest(struct SpoolControl *sc) { - char buf[SIZ]; - int i; - struct CtdlMessage *msg; - long msglen; - long msgnum; - char *instr = NULL; - size_t instr_len = SIZ; - struct CtdlMessage *imsg; - struct namelist *nptr; - - if (sc->num_msgs_spooled < 1) { - fclose(sc->digestfp); - sc->digestfp = NULL; - return; - } - - msg = malloc(sizeof(struct CtdlMessage)); - memset(msg, 0, sizeof(struct CtdlMessage)); - msg->cm_magic = CTDLMESSAGE_MAGIC; - msg->cm_format_type = FMT_RFC822; - msg->cm_anon_type = MES_NORMAL; - - sprintf(buf, "%ld", time(NULL)); - msg->cm_fields['T'] = strdup(buf); - msg->cm_fields['A'] = strdup(CC->room.QRname); - snprintf(buf, sizeof buf, "[%s]", CC->room.QRname); - msg->cm_fields['U'] = strdup(buf); - sprintf(buf, "room_%s@%s", CC->room.QRname, config.c_fqdn); - for (i=0; icm_fields['F'] = strdup(buf); - - fseek(sc->digestfp, 0L, SEEK_END); - msglen = ftell(sc->digestfp); - - msg->cm_fields['M'] = malloc(msglen + 1); - fseek(sc->digestfp, 0L, SEEK_SET); - fread(msg->cm_fields['M'], (size_t)msglen, 1, sc->digestfp); - msg->cm_fields['M'][msglen] = 0; - - fclose(sc->digestfp); - sc->digestfp = NULL; - - msgnum = CtdlSubmitMsg(msg, NULL, SMTP_SPOOLOUT_ROOM); - CtdlFreeMessage(msg); - - /* Now generate the delivery instructions */ - - /* - * Figure out how big a buffer we need to allocate - */ - for (nptr = sc->digestrecps; nptr != NULL; nptr = nptr->next) { - instr_len = instr_len + strlen(nptr->name); - } - - /* - * allocate... - */ - lprintf(CTDL_DEBUG, "Generating delivery instructions\n"); - instr = malloc(instr_len); - if (instr == NULL) { - lprintf(CTDL_EMERG, "Cannot allocate %ld bytes for instr...\n", - (long)instr_len); - abort(); - } - snprintf(instr, instr_len, - "Content-type: %s\n\nmsgid|%ld\nsubmitted|%ld\n" - "bounceto|postmaster@%s\n" , - SPOOLMIME, msgnum, (long)time(NULL), config.c_fqdn ); - - /* Generate delivery instructions for each recipient */ - for (nptr = sc->digestrecps; nptr != NULL; nptr = nptr->next) { - size_t tmp = strlen(instr); - snprintf(&instr[tmp], instr_len - tmp, - "remote|%s|0||\n", nptr->name); - } - - /* - * Generate a message from the instructions - */ - imsg = malloc(sizeof(struct CtdlMessage)); - memset(imsg, 0, sizeof(struct CtdlMessage)); - imsg->cm_magic = CTDLMESSAGE_MAGIC; - imsg->cm_anon_type = MES_NORMAL; - imsg->cm_format_type = FMT_RFC822; - imsg->cm_fields['A'] = strdup("Citadel"); - imsg->cm_fields['M'] = instr; - - /* Save delivery instructions in spoolout room */ - CtdlSubmitMsg(imsg, NULL, SMTP_SPOOLOUT_ROOM); - CtdlFreeMessage(imsg); -} - - /* * Batch up and send all outbound traffic from the current room */ @@ -832,7 +896,7 @@ void network_spoolout_room(char *room_to_spool) { } memset(&sc, 0, sizeof(struct SpoolControl)); - assoc_file_name(filename, sizeof filename, &CC->room, "netconfigs"); + assoc_file_name(filename, sizeof filename, &CC->room, ctdl_netcfg_dir); begin_critical_section(S_NETCONFIGS); @@ -928,7 +992,7 @@ void network_spoolout_room(char *room_to_spool) { } /* Do something useful */ - CtdlForEachMessage(MSGS_GT, sc.lastsent, NULL, NULL, + CtdlForEachMessage(MSGS_GT, sc.lastsent, NULL, NULL, NULL, network_spool_msg, &sc); /* If we wrote a digest, deliver it and then close it */ @@ -1028,7 +1092,7 @@ int network_sync_to(char *target_node) { FILE *fp; /* Grab the configuration line we're looking for */ - assoc_file_name(filename, sizeof filename, &CC->room, "netconfigs"); + assoc_file_name(filename, sizeof filename, &CC->room, ctdl_netcfg_dir); begin_critical_section(S_NETCONFIGS); fp = fopen(filename, "r"); if (fp == NULL) { @@ -1063,7 +1127,7 @@ int network_sync_to(char *target_node) { if (!found_node) return(-1); /* Send ALL messages */ - num_spooled = CtdlForEachMessage(MSGS_ALL, 0L, NULL, NULL, + num_spooled = CtdlForEachMessage(MSGS_ALL, 0L, NULL, NULL, NULL, network_spool_msg, &sc); /* Concise cleanup because we know there's only one node in the sc */ @@ -1228,7 +1292,7 @@ void network_bounce(struct CtdlMessage *msg, char *reason) { /* Now submit the message */ valid = validate_recipients(recipient); - if (valid != NULL) if (valid->num_error > 0) { + if (valid != NULL) if (valid->num_error != 0) { free(valid); valid = NULL; } @@ -1326,13 +1390,11 @@ void network_process_buffer(char *buffer, long size) { if (strlen(nexthop) == 0) { strcpy(nexthop, msg->cm_fields['D']); } - snprintf(filename, sizeof filename, -#ifndef HAVE_SPOOL_DIR - "." -#else - SPOOL_DIR -#endif /* HAVE_SPOOL_DIR */ - "/network/spoolout/%s", nexthop); + snprintf(filename, + sizeof filename, + "%s/%s", + ctdl_netout_dir, + nexthop); lprintf(CTDL_DEBUG, "Appending to %s\n", filename); fp = fopen(filename, "ab"); if (fp != NULL) { @@ -1388,7 +1450,7 @@ void network_process_buffer(char *buffer, long size) { /* Otherwise, does it have a recipient? If so, validate it... */ else if (msg->cm_fields['R'] != NULL) { recp = validate_recipients(msg->cm_fields['R']); - if (recp != NULL) if (recp->num_error > 0) { + if (recp != NULL) if (recp->num_error != 0) { network_bounce(msg, "A message you sent could not be delivered due to an invalid address.\n" "Please check the address and try sending the message again.\n"); @@ -1500,26 +1562,35 @@ void network_process_file(char *filename) { void network_do_spoolin(void) { DIR *dp; struct dirent *d; + struct stat statbuf; char filename[256]; + static time_t last_spoolin_mtime = 0L; - dp = opendir( -#ifndef HAVE_SPOOL_DIR - "." -#else - SPOOL_DIR -#endif /* HAVE_SPOOL_DIR */ - "/network/spoolin"); + /* + * Check the spoolin directory's modification time. If it hasn't + * been touched, we don't need to scan it. + */ + if (stat(ctdl_netin_dir, &statbuf)) return; + if (statbuf.st_mtime == last_spoolin_mtime) { + lprintf(CTDL_DEBUG, "network: nothing in inbound queue\n"); + return; + } + last_spoolin_mtime = statbuf.st_mtime; + lprintf(CTDL_DEBUG, "network: processing inbound queue\n"); + + /* + * Ok, there's something interesting in there, so scan it. + */ + dp = opendir(ctdl_netin_dir); if (dp == NULL) return; while (d = readdir(dp), d != NULL) { if ((strcmp(d->d_name, ".")) && (strcmp(d->d_name, ".."))) { - snprintf(filename, sizeof filename, -#ifndef HAVE_SPOOL_DIR - "." -#else - SPOOL_DIR -#endif /* HAVE_SPOOL_DIR */ - "/network/spoolin/%s", d->d_name); + snprintf(filename, + sizeof filename, + "%s/%s", + ctdl_netin_dir, + d->d_name); network_process_file(filename); } } @@ -1538,25 +1609,17 @@ void network_purge_spoolout(void) { char nexthop[256]; int i; - dp = opendir( -#ifndef HAVE_SPOOL_DIR - "." -#else - SPOOL_DIR -#endif /* HAVE_SPOOL_DIR */ - "/network/spoolout"); + dp = opendir(ctdl_netout_dir); if (dp == NULL) return; while (d = readdir(dp), d != NULL) { if (!strcmp(d->d_name, ".") || !strcmp(d->d_name, "..")) continue; - snprintf(filename, sizeof filename, -#ifndef HAVE_SPOOL_DIR - "." -#else - SPOOL_DIR -#endif /* HAVE_SPOOL_DIR */ - "/network/spoolout/%s", d->d_name); + snprintf(filename, + sizeof filename, + "%s/%s", + ctdl_netout_dir, + d->d_name); strcpy(nexthop, ""); i = is_valid_node(nexthop, NULL, d->d_name); @@ -1583,7 +1646,7 @@ void receive_spool(int sock, char *remote_nodename) { long plen; FILE *fp; - strcpy(tempfilename, tmpnam(NULL)); + CtdlMakeTempFileName(tempfilename, sizeof tempfilename); if (sock_puts(sock, "NDOP") < 0) return; if (sock_gets(sock, buf) < 0) return; lprintf(CTDL_DEBUG, "<%s\n", buf); @@ -1641,14 +1704,13 @@ void receive_spool(int sock, char *remote_nodename) { download_len, remote_nodename); lprintf(CTDL_DEBUG, "%s", buf); /* TODO: make move inline. forking is verry expensive. */ - snprintf(buf, sizeof buf, "mv %s " -#ifndef HAVE_SPOOL_DIR - "." -#else - SPOOL_DIR -#endif /* HAVE_SPOOL_DIR */ - "/network/spoolin/%s.%ld", - tempfilename, remote_nodename, (long) getpid()); + snprintf(buf, + sizeof buf, + "mv %s %s/%s.%ld", + tempfilename, + ctdl_netin_dir, + remote_nodename, + (long) getpid()); system(buf); } @@ -1674,12 +1736,9 @@ void transmit_spool(int sock, char *remote_nodename) } snprintf(sfname, sizeof sfname, -#ifndef HAVE_SPOOL_DIR - "." -#else - SPOOL_DIR -#endif /* HAVE_SPOOL_DIR */ - "/network/spoolout/%s", remote_nodename); + "%s/%s", + ctdl_netout_dir, + remote_nodename); fd = open(sfname, O_RDONLY); if (fd < 0) { if (errno != ENOENT) { @@ -1805,13 +1864,11 @@ void network_poll_other_citadel_nodes(int full_poll) { && (strlen(host) > 0) && strlen(port) > 0) { poll = full_poll; if (poll == 0) { - snprintf(spoolfile, sizeof spoolfile, -#ifndef HAVE_SPOOL_DIR - "." -#else - SPOOL_DIR -#endif - "/network/spoolout/%s", node); + snprintf(spoolfile, + sizeof spoolfile, + "%s/%s", + ctdl_netout_dir, + node); if (access(spoolfile, R_OK) == 0) { poll = 1; } @@ -1831,17 +1888,12 @@ void network_poll_other_citadel_nodes(int full_poll) { * It's ok if these directories already exist. Just fail silently. */ void create_spool_dirs(void) { -#ifndef HAVE_SPOOL_DIR - mkdir("./network", 0700); - mkdir("./network/systems", 0700); - mkdir("./network/spoolin", 0700); - mkdir("./network/spoolout", 0700); -#else - mkdir(SPOOL_DIR "/network", 0700); - mkdir(SPOOL_DIR "/network/systems", 0700); - mkdir(SPOOL_DIR "/network/spoolin", 0700); - mkdir(SPOOL_DIR "/network/spoolout", 0700); -#endif /* HAVE_SPOOL_DIR */ + mkdir(ctdl_spool_dir, 0700); + chown(ctdl_spool_dir, CTDLUID, (-1)); + mkdir(ctdl_netin_dir, 0700); + chown(ctdl_netin_dir, CTDLUID, (-1)); + mkdir(ctdl_netout_dir, 0700); + chown(ctdl_netout_dir, CTDLUID, (-1)); } @@ -1866,8 +1918,6 @@ void network_do_queue(void) { full_processing = 0; } - create_spool_dirs(); - /* * This is a simple concurrency check to make sure only one queue run * is done at a time. We could do this with a mutex, but since we @@ -1909,7 +1959,7 @@ void network_do_queue(void) { } } - lprintf(CTDL_DEBUG, "network: processing inbound queue\n"); + /* If there is anything in the inbound queue, process it */ network_do_spoolin(); /* Save the network map back to disk */