move file_ops to modules/ctdlsrv/serv_file.c
authorWilfried Goesgens <dothebart@citadel.org>
Sat, 14 Sep 2013 17:36:23 +0000 (19:36 +0200)
committerWilfried Goesgens <dothebart@citadel.org>
Sat, 14 Sep 2013 17:36:23 +0000 (19:36 +0200)
  - resolve dependency in session termination via EVT_LOGOUT-hook-function.

18 files changed:
citadel/Makefile.in
citadel/euidindex.c
citadel/file_ops.c [deleted file]
citadel/file_ops.h [deleted file]
citadel/journaling.c
citadel/ldap.c
citadel/modules/ctdlproto/files.h [new file with mode: 0644]
citadel/modules/ctdlproto/serv_file.c [new file with mode: 0644]
citadel/modules/ctdlproto/serv_messages.c
citadel/modules/ctdlproto/serv_user.c
citadel/modules/listsub/serv_listsub.c
citadel/modules/network/serv_netmail.c
citadel/modules/network/serv_netspool.c
citadel/modules/network/serv_network.c
citadel/modules/networkclient/serv_networkclient.c
citadel/msgbase.c
citadel/scripts/mk_module_init.sh
citadel/user_ops.c

index 8a982d920490c3ae1e1acced8b525a137e2d986e..7586e782ed8b1ace168bd1fefff12c9fa4431c71 100644 (file)
@@ -76,7 +76,7 @@ SOURCES=utils/aidepost.c utils/citmail.c \
        utils/ctdlmigrate.c utils/base64.c utils/chkpwd.c \
        utillib/citadel_dirs.c \
        citserver.c clientsocket.c config.c control.c $(DATABASE) \
-       domain.c serv_extensions.c file_ops.c genstamp.c \
+       domain.c serv_extensions.c genstamp.c \
        housekeeping.c ical_dezonify.c internet_addressing.c ecrash.c \
        locate_host.c auth.c msgbase.c parsedate.c \
        room_ops.c euidindex.c server_main.c ldap.c \
@@ -131,7 +131,7 @@ SERV_OBJS = server_main.o utillib/citadel_dirs.o event_client.o \
        user_ops.o citserver.o sysdep.o serv_extensions.o \
        $(DATABASE:.c=.o) domain.o \
        control.o config.o support.o room_ops.o \
-       file_ops.o msgbase.o euidindex.o \
+       msgbase.o euidindex.o \
        locate_host.o housekeeping.o ical_dezonify.o \
        internet_addressing.o journaling.o \
        parsedate.o genstamp.o ecrash.o threads.o context.o \
index f103de2d4529a830456a2c3ae8e47e6cb7fcc8ef..85d9ccbf5875df83d45b531d5006b2ba69eaa9f6 100644 (file)
@@ -36,7 +36,6 @@
 #include "citserver.h"
 #include "room_ops.h"
 #include "user_ops.h"
-#include "file_ops.h"
 #include "config.h"
 #include "control.h"
 #include "euidindex.h"
diff --git a/citadel/file_ops.c b/citadel/file_ops.c
deleted file mode 100644 (file)
index 098554c..0000000
+++ /dev/null
@@ -1,806 +0,0 @@
-/* 
- * Server functions which handle file transfers and room directories.
- */
-
-#include "sysdep.h"
-#include <stdlib.h>
-#include <unistd.h>
-#include <stdio.h>
-#include <fcntl.h>
-#include <sys/stat.h>
-#include <errno.h>
-#include <ctype.h>
-#include <string.h>
-#include <sys/stat.h>
-#include <sys/mman.h>
-
-#if TIME_WITH_SYS_TIME
-# include <sys/time.h>
-# include <time.h>
-#else
-# if HAVE_SYS_TIME_H
-#  include <sys/time.h>
-# else
-#  include <time.h>
-# endif
-#endif
-
-#include <limits.h>
-#include <libcitadel.h>
-#include "citadel.h"
-#include "server.h"
-#include "config.h"
-#include "file_ops.h"
-#include "sysdep_decls.h"
-#include "support.h"
-#include "room_ops.h"
-#include "msgbase.h"
-#include "citserver.h"
-#include "threads.h"
-#include "ctdl_module.h"
-#include "user_ops.h"
-
-
-
-/*
- * Server command to delete a file from a room's directory
- */
-void cmd_delf(char *filename)
-{
-       char pathname[64];
-       int a;
-
-       if (CtdlAccessCheck(ac_room_aide))
-               return;
-
-       if ((CC->room.QRflags & QR_DIRECTORY) == 0) {
-               cprintf("%d No directory in this room.\n",
-                       ERROR + NOT_HERE);
-               return;
-       }
-
-       if (IsEmptyStr(filename)) {
-               cprintf("%d You must specify a file name.\n",
-                       ERROR + FILE_NOT_FOUND);
-               return;
-       }
-       for (a = 0; !IsEmptyStr(&filename[a]); ++a) {
-               if ( (filename[a] == '/') || (filename[a] == '\\') ) {
-                       filename[a] = '_';
-               }
-       }
-       snprintf(pathname, sizeof pathname,
-                        "%s/%s/%s",
-                        ctdl_file_dir,
-                        CC->room.QRdirname, filename);
-       a = unlink(pathname);
-       if (a == 0) {
-               cprintf("%d File '%s' deleted.\n", CIT_OK, pathname);
-       }
-       else {
-               cprintf("%d File '%s' not found.\n",
-                       ERROR + FILE_NOT_FOUND, pathname);
-       }
-}
-
-
-
-
-/*
- * move a file from one room directory to another
- */
-void cmd_movf(char *cmdbuf)
-{
-       char filename[PATH_MAX];
-       char pathname[PATH_MAX];
-       char newpath[PATH_MAX];
-       char newroom[ROOMNAMELEN];
-       char buf[PATH_MAX];
-       int a;
-       struct ctdlroom qrbuf;
-
-       extract_token(filename, cmdbuf, 0, '|', sizeof filename);
-       extract_token(newroom, cmdbuf, 1, '|', sizeof newroom);
-
-       if (CtdlAccessCheck(ac_room_aide)) return;
-
-       if ((CC->room.QRflags & QR_DIRECTORY) == 0) {
-               cprintf("%d No directory in this room.\n",
-                       ERROR + NOT_HERE);
-               return;
-       }
-
-       if (IsEmptyStr(filename)) {
-               cprintf("%d You must specify a file name.\n",
-                       ERROR + FILE_NOT_FOUND);
-               return;
-       }
-
-       for (a = 0; !IsEmptyStr(&filename[a]); ++a) {
-               if ( (filename[a] == '/') || (filename[a] == '\\') ) {
-                       filename[a] = '_';
-               }
-       }
-       snprintf(pathname, sizeof pathname, "./files/%s/%s",
-                CC->room.QRdirname, filename);
-       if (access(pathname, 0) != 0) {
-               cprintf("%d File '%s' not found.\n",
-                       ERROR + FILE_NOT_FOUND, pathname);
-               return;
-       }
-
-       if (CtdlGetRoom(&qrbuf, newroom) != 0) {
-               cprintf("%d '%s' does not exist.\n", ERROR + ROOM_NOT_FOUND, newroom);
-               return;
-       }
-       if ((qrbuf.QRflags & QR_DIRECTORY) == 0) {
-               cprintf("%d '%s' is not a directory room.\n",
-                       ERROR + NOT_HERE, qrbuf.QRname);
-               return;
-       }
-       snprintf(newpath, sizeof newpath, "./files/%s/%s", qrbuf.QRdirname,
-                filename);
-       if (link(pathname, newpath) != 0) {
-               cprintf("%d Couldn't move file: %s\n", ERROR + INTERNAL_ERROR,
-                       strerror(errno));
-               return;
-       }
-       unlink(pathname);
-
-       /* this is a crude method of copying the file description */
-       snprintf(buf, sizeof buf,
-                "cat ./files/%s/filedir |grep \"%s\" >>./files/%s/filedir",
-                CC->room.QRdirname, filename, qrbuf.QRdirname);
-       system(buf);
-       cprintf("%d File '%s' has been moved.\n", CIT_OK, filename);
-}
-
-
-/*
- * This code is common to all commands which open a file for downloading,
- * regardless of whether it's a file from the directory, an image, a network
- * spool file, a MIME attachment, etc.
- * It examines the file and displays the OK result code and some information
- * about the file.  NOTE: this stuff is Unix dependent.
- */
-void OpenCmdResult(char *filename, const char *mime_type)
-{
-       struct stat statbuf;
-       time_t modtime;
-       long filesize;
-
-       fstat(fileno(CC->download_fp), &statbuf);
-       CC->download_fp_total = statbuf.st_size;
-       filesize = (long) statbuf.st_size;
-       modtime = (time_t) statbuf.st_mtime;
-
-       cprintf("%d %ld|%ld|%s|%s\n",
-               CIT_OK, filesize, (long)modtime, filename, mime_type);
-}
-
-
-/*
- * open a file for downloading
- */
-void cmd_open(char *cmdbuf)
-{
-       char filename[256];
-       char pathname[PATH_MAX];
-       int a;
-
-       extract_token(filename, cmdbuf, 0, '|', sizeof filename);
-
-       if (CtdlAccessCheck(ac_logged_in)) return;
-
-       if ((CC->room.QRflags & QR_DIRECTORY) == 0) {
-               cprintf("%d No directory in this room.\n",
-                       ERROR + NOT_HERE);
-               return;
-       }
-
-       if (IsEmptyStr(filename)) {
-               cprintf("%d You must specify a file name.\n",
-                       ERROR + FILE_NOT_FOUND);
-               return;
-       }
-       if (strstr(filename, "../") != NULL)
-       {
-               cprintf("%d syntax error.\n",
-                       ERROR + ILLEGAL_VALUE);
-               return;
-       }
-
-       if (CC->download_fp != NULL) {
-               cprintf("%d You already have a download file open.\n",
-                       ERROR + RESOURCE_BUSY);
-               return;
-       }
-
-       for (a = 0; !IsEmptyStr(&filename[a]); ++a) {
-               if ( (filename[a] == '/') || (filename[a] == '\\') ) {
-                       filename[a] = '_';
-               }
-       }
-
-       snprintf(pathname, sizeof pathname,
-                        "%s/%s/%s",
-                        ctdl_file_dir,
-                        CC->room.QRdirname, filename);
-       CC->download_fp = fopen(pathname, "r");
-
-       if (CC->download_fp == NULL) {
-               cprintf("%d cannot open %s: %s\n",
-                       ERROR + INTERNAL_ERROR, pathname, strerror(errno));
-               return;
-       }
-
-       OpenCmdResult(filename, "application/octet-stream");
-}
-
-/*
- * open an image file
- */
-void cmd_oimg(char *cmdbuf)
-{
-       char filename[256];
-       char pathname[PATH_MAX];
-       char MimeTestBuf[32];
-       struct ctdluser usbuf;
-       char which_user[USERNAME_SIZE];
-       int which_floor;
-       int a;
-       int rv;
-
-       extract_token(filename, cmdbuf, 0, '|', sizeof filename);
-
-       if (IsEmptyStr(filename)) {
-               cprintf("%d You must specify a file name.\n",
-                       ERROR + FILE_NOT_FOUND);
-               return;
-       }
-
-       if (CC->download_fp != NULL) {
-               cprintf("%d You already have a download file open.\n",
-                       ERROR + RESOURCE_BUSY);
-               return;
-       }
-
-       if (!strcasecmp(filename, "_userpic_")) {
-               extract_token(which_user, cmdbuf, 1, '|', sizeof which_user);
-               if (CtdlGetUser(&usbuf, which_user) != 0) {
-                       cprintf("%d No such user.\n",
-                               ERROR + NO_SUCH_USER);
-                       return;
-               }
-               snprintf(pathname, sizeof pathname, 
-                                "%s/%ld",
-                                ctdl_usrpic_dir,
-                                usbuf.usernum);
-       } else if (!strcasecmp(filename, "_floorpic_")) {
-               which_floor = extract_int(cmdbuf, 1);
-               snprintf(pathname, sizeof pathname,
-                                "%s/floor.%d",
-                                ctdl_image_dir, which_floor);
-       } else if (!strcasecmp(filename, "_roompic_")) {
-               assoc_file_name(pathname, sizeof pathname, &CC->room, ctdl_image_dir);
-       } else {
-               for (a = 0; !IsEmptyStr(&filename[a]); ++a) {
-                       filename[a] = tolower(filename[a]);
-                       if ( (filename[a] == '/') || (filename[a] == '\\') ) {
-                               filename[a] = '_';
-                       }
-               }
-               if (strstr(filename, "../") != NULL)
-               {
-                       cprintf("%d syntax error.\n",
-                               ERROR + ILLEGAL_VALUE);
-                       return;
-               }
-
-               snprintf(pathname, sizeof pathname,
-                                "%s/%s",
-                                ctdl_image_dir,
-                                filename);
-       }
-
-       CC->download_fp = fopen(pathname, "rb");
-       if (CC->download_fp == NULL) {
-               strcat(pathname, ".gif");
-               CC->download_fp = fopen(pathname, "rb");
-       }
-       if (CC->download_fp == NULL) {
-               cprintf("%d Cannot open %s: %s\n",
-                       ERROR + FILE_NOT_FOUND, pathname, strerror(errno));
-               return;
-       }
-       rv = fread(&MimeTestBuf[0], 1, 32, CC->download_fp);
-       if (rv == -1) {
-               cprintf("%d Cannot access %s: %s\n",
-                       ERROR + FILE_NOT_FOUND, pathname, strerror(errno));
-               return;
-       }
-
-       rewind (CC->download_fp);
-       OpenCmdResult(pathname, GuessMimeType(&MimeTestBuf[0], 32));
-}
-
-/*
- * open a file for uploading
- */
-void cmd_uopn(char *cmdbuf)
-{
-       int a;
-
-       extract_token(CC->upl_file, cmdbuf, 0, '|', sizeof CC->upl_file);
-       extract_token(CC->upl_mimetype, cmdbuf, 1, '|', sizeof CC->upl_mimetype);
-       extract_token(CC->upl_comment, cmdbuf, 2, '|', sizeof CC->upl_comment);
-
-       if (CtdlAccessCheck(ac_logged_in)) return;
-
-       if ((CC->room.QRflags & QR_DIRECTORY) == 0) {
-               cprintf("%d No directory in this room.\n",
-                       ERROR + NOT_HERE);
-               return;
-       }
-
-       if (IsEmptyStr(CC->upl_file)) {
-               cprintf("%d You must specify a file name.\n",
-                       ERROR + FILE_NOT_FOUND);
-               return;
-       }
-
-       if (CC->upload_fp != NULL) {
-               cprintf("%d You already have a upload file open.\n",
-                       ERROR + RESOURCE_BUSY);
-               return;
-       }
-
-       for (a = 0; !IsEmptyStr(&CC->upl_file[a]); ++a) {
-               if ( (CC->upl_file[a] == '/') || (CC->upl_file[a] == '\\') ) {
-                       CC->upl_file[a] = '_';
-               }
-       }
-       snprintf(CC->upl_path, sizeof CC->upl_path, 
-                        "%s/%s/%s",
-                        ctdl_file_dir,
-                        CC->room.QRdirname, CC->upl_file);
-       snprintf(CC->upl_filedir, sizeof CC->upl_filedir,
-                        "%s/%s/filedir", 
-                        ctdl_file_dir,
-                        CC->room.QRdirname);
-
-       CC->upload_fp = fopen(CC->upl_path, "r");
-       if (CC->upload_fp != NULL) {
-               fclose(CC->upload_fp);
-               CC->upload_fp = NULL;
-               cprintf("%d '%s' already exists\n",
-                       ERROR + ALREADY_EXISTS, CC->upl_path);
-               return;
-       }
-
-       CC->upload_fp = fopen(CC->upl_path, "wb");
-       if (CC->upload_fp == NULL) {
-               cprintf("%d Cannot open %s: %s\n",
-                       ERROR + INTERNAL_ERROR, CC->upl_path, strerror(errno));
-               return;
-       }
-       cprintf("%d Ok\n", CIT_OK);
-}
-
-
-
-/*
- * open an image file for uploading
- */
-void cmd_uimg(char *cmdbuf)
-{
-       int is_this_for_real;
-       char basenm[256];
-       int which_floor;
-       int a;
-
-       if (num_parms(cmdbuf) < 2) {
-               cprintf("%d Usage error.\n", ERROR + ILLEGAL_VALUE);
-               return;
-       }
-
-       is_this_for_real = extract_int(cmdbuf, 0);
-       extract_token(CC->upl_mimetype, cmdbuf, 1, '|', sizeof CC->upl_mimetype);
-       extract_token(basenm, cmdbuf, 2, '|', sizeof basenm);
-       if (CC->upload_fp != NULL) {
-               cprintf("%d You already have an upload file open.\n",
-                       ERROR + RESOURCE_BUSY);
-               return;
-       }
-
-       strcpy(CC->upl_path, "");
-
-       for (a = 0; !IsEmptyStr(&basenm[a]); ++a) {
-               basenm[a] = tolower(basenm[a]);
-               if ( (basenm[a] == '/') || (basenm[a] == '\\') ) {
-                       basenm[a] = '_';
-               }
-       }
-
-       if (CC->user.axlevel >= AxAideU) {
-               snprintf(CC->upl_path, sizeof CC->upl_path, 
-                                "%s/%s",
-                                ctdl_image_dir,
-                                basenm);
-       }
-
-       if (!strcasecmp(basenm, "_userpic_")) {
-               snprintf(CC->upl_path, sizeof CC->upl_path,
-                                "%s/%ld.gif",
-                                ctdl_usrpic_dir,
-                                CC->user.usernum);
-       }
-
-       if ((!strcasecmp(basenm, "_floorpic_"))
-           && (CC->user.axlevel >= AxAideU)) {
-               which_floor = extract_int(cmdbuf, 2);
-               snprintf(CC->upl_path, sizeof CC->upl_path,
-                                "%s/floor.%d.gif",
-                                ctdl_image_dir,
-                                which_floor);
-       }
-
-       if ((!strcasecmp(basenm, "_roompic_")) && (is_room_aide())) {
-               assoc_file_name(CC->upl_path, sizeof CC->upl_path, &CC->room, ctdl_image_dir);
-       }
-
-       if (IsEmptyStr(CC->upl_path)) {
-               cprintf("%d Higher access required.\n",
-                       ERROR + HIGHER_ACCESS_REQUIRED);
-               return;
-       }
-
-       if (is_this_for_real == 0) {
-               cprintf("%d Ok to send image\n", CIT_OK);
-               return;
-       }
-
-       CC->upload_fp = fopen(CC->upl_path, "wb");
-       if (CC->upload_fp == NULL) {
-               cprintf("%d Cannot open %s: %s\n",
-                       ERROR + INTERNAL_ERROR, CC->upl_path, strerror(errno));
-               return;
-       }
-       cprintf("%d Ok\n", CIT_OK);
-       CC->upload_type = UPL_IMAGE;
-}
-
-
-/*
- * close the download file
- */
-void cmd_clos(char *cmdbuf)
-{
-       char buf[256];
-
-       if (CC->download_fp == NULL) {
-               cprintf("%d You don't have a download file open.\n",
-                       ERROR + RESOURCE_NOT_OPEN);
-               return;
-       }
-
-       fclose(CC->download_fp);
-       CC->download_fp = NULL;
-
-       if (CC->dl_is_net == 1) {
-               CC->dl_is_net = 0;
-               snprintf(buf, sizeof buf, 
-                                "%s/%s",
-                                ctdl_netout_dir,
-                                CC->net_node);
-               unlink(buf);
-       }
-
-       cprintf("%d Ok\n", CIT_OK);
-}
-
-
-/*
- * abort an upload
- */
-void abort_upl(CitContext *who)
-{
-       if (who->upload_fp != NULL) {
-               fclose(who->upload_fp);
-               who->upload_fp = NULL;
-               unlink(CC->upl_path);
-       }
-}
-
-
-
-/*
- * close the upload file
- */
-void cmd_ucls(char *cmd)
-{
-       FILE *fp;
-       char upload_notice[512];
-       static int seq = 0;
-
-       if (CC->upload_fp == NULL) {
-               cprintf("%d You don't have an upload file open.\n", ERROR + RESOURCE_NOT_OPEN);
-               return;
-       }
-
-       fclose(CC->upload_fp);
-       CC->upload_fp = NULL;
-
-       if ((!strcasecmp(cmd, "1")) && (CC->upload_type != UPL_FILE)) {
-               cprintf("%d Upload completed.\n", CIT_OK);
-
-               if (CC->upload_type == UPL_NET) {
-                       char final_filename[PATH_MAX];
-                       snprintf(final_filename, sizeof final_filename,
-                               "%s/%s.%04lx.%04x",
-                               ctdl_netin_dir,
-                               CC->net_node,
-                               (long)getpid(),
-                               ++seq
-                       );
-
-                       if (link(CC->upl_path, final_filename) == 0) {
-                               syslog(LOG_INFO, "UCLS: updoaded %s\n",
-                                      final_filename);
-                               unlink(CC->upl_path);
-                       }
-                       else {
-                               syslog(LOG_ALERT, "Cannot link %s to %s: %s\n",
-                                       CC->upl_path, final_filename, strerror(errno)
-                               );
-                       }
-                       
-
-                       /* FIXME ... here we need to trigger a network run */
-               }
-
-               CC->upload_type = UPL_FILE;
-               return;
-       }
-
-       if (!strcasecmp(cmd, "1")) {
-               cprintf("%d File '%s' saved.\n", CIT_OK, CC->upl_path);
-               fp = fopen(CC->upl_filedir, "a");
-               if (fp == NULL) {
-                       fp = fopen(CC->upl_filedir, "w");
-               }
-               if (fp != NULL) {
-                       fprintf(fp, "%s %s %s\n", CC->upl_file,
-                               CC->upl_mimetype,
-                               CC->upl_comment);
-                       fclose(fp);
-               }
-
-               /* put together an upload notice */
-               snprintf(upload_notice, sizeof upload_notice,
-                       "NEW UPLOAD: '%s'\n %s\n%s\n",
-                        CC->upl_file, 
-                        CC->upl_comment, 
-                        CC->upl_mimetype);
-               quickie_message(CC->curr_user, NULL, NULL, CC->room.QRname,
-                               upload_notice, 0, NULL);
-       } else {
-               abort_upl(CC);
-               cprintf("%d File '%s' aborted.\n", CIT_OK, CC->upl_path);
-       }
-}
-
-
-/*
- * read from the download file
- */
-void cmd_read(char *cmdbuf)
-{
-       long start_pos;
-       size_t bytes;
-       char buf[SIZ];
-       int rc;
-
-       /* The client will transmit its requested offset and byte count */
-       start_pos = extract_long(cmdbuf, 0);
-       bytes = extract_int(cmdbuf, 1);
-       if ((start_pos < 0) || (bytes <= 0)) {
-               cprintf("%d you have to specify a value > 0.\n", ERROR + ILLEGAL_VALUE);
-               return;
-       }
-
-       if (CC->download_fp == NULL) {
-               cprintf("%d You don't have a download file open.\n",
-                       ERROR + RESOURCE_NOT_OPEN);
-               return;
-       }
-
-       /* If necessary, reduce the byte count to the size of our buffer */
-       if (bytes > sizeof(buf)) {
-               bytes = sizeof(buf);
-       }
-
-       rc = fseek(CC->download_fp, start_pos, 0);
-       if (rc < 0) {
-               cprintf("%d your file is smaller then %ld.\n", ERROR + ILLEGAL_VALUE, start_pos);
-               syslog(LOG_ALERT, "your file %s is smaller then %ld. [%s]\n", 
-                      CC->upl_path, 
-                      start_pos,
-                      strerror(errno));
-
-               return;
-       }
-       bytes = fread(buf, 1, bytes, CC->download_fp);
-       if (bytes > 0) {
-               /* Tell the client the actual byte count and transmit it */
-               cprintf("%d %d\n", BINARY_FOLLOWS, (int)bytes);
-               client_write(buf, bytes);
-       }
-       else {
-               cprintf("%d %s\n", ERROR, strerror(errno));
-       }
-}
-
-
-/*
- * write to the upload file
- */
-void cmd_writ(char *cmdbuf)
-{
-       int bytes;
-       char *buf;
-       int rv;
-
-       unbuffer_output();
-
-       bytes = extract_int(cmdbuf, 0);
-
-       if (CC->upload_fp == NULL) {
-               cprintf("%d You don't have an upload file open.\n", ERROR + RESOURCE_NOT_OPEN);
-               return;
-       }
-       if (bytes <= 0) {
-               cprintf("%d you have to specify a value > 0.\n", ERROR + ILLEGAL_VALUE);
-               return;
-       }
-
-       if (bytes > 100000) {
-               bytes = 100000;
-       }
-
-       cprintf("%d %d\n", SEND_BINARY, bytes);
-       buf = malloc(bytes + 1);
-       client_read(buf, bytes);
-       rv = fwrite(buf, bytes, 1, CC->upload_fp);
-       if (rv == -1) {
-               syslog(LOG_EMERG, "Couldn't write: %s\n",
-                      strerror(errno));
-       }
-       free(buf);
-}
-
-
-
-
-/*
- * cmd_ndop() - open a network spool file for downloading
- */
-void cmd_ndop(char *cmdbuf)
-{
-       char pathname[256];
-       struct stat statbuf;
-
-       if (IsEmptyStr(CC->net_node)) {
-               cprintf("%d Not authenticated as a network node.\n",
-                       ERROR + NOT_LOGGED_IN);
-               return;
-       }
-
-       if (CC->download_fp != NULL) {
-               cprintf("%d You already have a download file open.\n",
-                       ERROR + RESOURCE_BUSY);
-               return;
-       }
-
-       snprintf(pathname, sizeof pathname, 
-                        "%s/%s",
-                        ctdl_netout_dir,
-                        CC->net_node);
-
-       /* first open the file in append mode in order to create a
-        * zero-length file if it doesn't already exist 
-        */
-       CC->download_fp = fopen(pathname, "a");
-       if (CC->download_fp != NULL)
-               fclose(CC->download_fp);
-
-       /* now open it */
-       CC->download_fp = fopen(pathname, "r");
-       if (CC->download_fp == NULL) {
-               cprintf("%d cannot open %s: %s\n",
-                       ERROR + INTERNAL_ERROR, pathname, strerror(errno));
-               return;
-       }
-
-
-       /* set this flag so other routines know that the download file
-        * currently open is a network spool file 
-        */
-       CC->dl_is_net = 1;
-
-       stat(pathname, &statbuf);
-       CC->download_fp_total = statbuf.st_size;
-       cprintf("%d %ld\n", CIT_OK, (long)statbuf.st_size);
-}
-
-/*
- * cmd_nuop() - open a network spool file for uploading
- */
-void cmd_nuop(char *cmdbuf)
-{
-       static int seq = 1;
-
-       if (IsEmptyStr(CC->net_node)) {
-               cprintf("%d Not authenticated as a network node.\n",
-                       ERROR + NOT_LOGGED_IN);
-               return;
-       }
-
-       if (CC->upload_fp != NULL) {
-               cprintf("%d You already have an upload file open.\n",
-                       ERROR + RESOURCE_BUSY);
-               return;
-       }
-
-       snprintf(CC->upl_path, sizeof CC->upl_path,
-                        "%s/%s.%04lx.%04x",
-                        ctdl_nettmp_dir,
-                        CC->net_node, 
-                        (long)getpid(), 
-                        ++seq);
-
-       CC->upload_fp = fopen(CC->upl_path, "r");
-       if (CC->upload_fp != NULL) {
-               fclose(CC->upload_fp);
-               CC->upload_fp = NULL;
-               cprintf("%d '%s' already exists\n",
-                       ERROR + ALREADY_EXISTS, CC->upl_path);
-               return;
-       }
-
-       CC->upload_fp = fopen(CC->upl_path, "w");
-       if (CC->upload_fp == NULL) {
-               cprintf("%d Cannot open %s: %s\n",
-                       ERROR + INTERNAL_ERROR, CC->upl_path, strerror(errno));
-               return;
-       }
-
-       CC->upload_type = UPL_NET;
-       cprintf("%d Ok\n", CIT_OK);
-}
-
-
-/*****************************************************************************/
-/*                      MODULE INITIALIZATION STUFF                          */
-/*****************************************************************************/
-
-CTDL_MODULE_INIT(file_ops)
-{
-       if (!threading) {
-
-               CtdlRegisterProtoHook(cmd_delf, "DELF", "Delete a file");
-               CtdlRegisterProtoHook(cmd_movf, "MOVF", "Move a file");
-               CtdlRegisterProtoHook(cmd_open, "OPEN", "Open a download file transfer");
-               CtdlRegisterProtoHook(cmd_clos, "CLOS", "Close a download file transfer");
-               CtdlRegisterProtoHook(cmd_uopn, "UOPN", "Open an upload file transfer");
-               CtdlRegisterProtoHook(cmd_ucls, "UCLS", "Close an upload file transfer");
-               CtdlRegisterProtoHook(cmd_read, "READ", "File transfer read operation");
-               CtdlRegisterProtoHook(cmd_writ, "WRIT", "File transfer write operation");
-               CtdlRegisterProtoHook(cmd_ndop, "NDOP", "Open a network spool file for download");
-               CtdlRegisterProtoHook(cmd_nuop, "NUOP", "Open a network spool file for upload");
-               CtdlRegisterProtoHook(cmd_oimg, "OIMG", "Open an image file for download");
-               CtdlRegisterProtoHook(cmd_uimg, "UIMG", "Upload an image file");
-       }
-        /* return our Subversion id for the Log */
-       return "file_ops";
-}
diff --git a/citadel/file_ops.h b/citadel/file_ops.h
deleted file mode 100644 (file)
index 080c83e..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-#ifndef FILE_OPS_H
-#define FILE_OPS_H
-
-#include "context.h"
-
-void OpenCmdResult (char *, const char *);
-void abort_upl (CitContext *who);
-
-
-#endif /* FILE_OPS_H */
index 27cf0580c307d881f6c37d132cd65ae4309cacc4..4ebb118847803a18f2d70a8db319b4330d2d9e22 100644 (file)
@@ -36,7 +36,6 @@
 #include "citserver.h"
 #include "room_ops.h"
 #include "user_ops.h"
-#include "file_ops.h"
 #include "config.h"
 #include "control.h"
 #include "genstamp.h"
index 385498443839cc8c4d3754652da535bbdad03f59..9035ec8136a7a5ebfb6d2f13134d2f8cff7c4e36 100644 (file)
@@ -51,7 +51,6 @@ int ctdl_require_ldap_version = 3;
 #include "sysdep_decls.h"
 #include "support.h"
 #include "room_ops.h"
-#include "file_ops.h"
 #include "control.h"
 #include "msgbase.h"
 #include "config.h"
diff --git a/citadel/modules/ctdlproto/files.h b/citadel/modules/ctdlproto/files.h
new file mode 100644 (file)
index 0000000..080c83e
--- /dev/null
@@ -0,0 +1,10 @@
+#ifndef FILE_OPS_H
+#define FILE_OPS_H
+
+#include "context.h"
+
+void OpenCmdResult (char *, const char *);
+void abort_upl (CitContext *who);
+
+
+#endif /* FILE_OPS_H */
diff --git a/citadel/modules/ctdlproto/serv_file.c b/citadel/modules/ctdlproto/serv_file.c
new file mode 100644 (file)
index 0000000..2970f1c
--- /dev/null
@@ -0,0 +1,827 @@
+/* 
+ * Server functions which handle file transfers and room directories.
+ */
+
+#include "sysdep.h"
+#include <stdlib.h>
+#include <unistd.h>
+#include <stdio.h>
+#include <fcntl.h>
+#include <sys/stat.h>
+#include <errno.h>
+#include <ctype.h>
+#include <string.h>
+#include <sys/stat.h>
+#include <sys/mman.h>
+
+#if TIME_WITH_SYS_TIME
+# include <sys/time.h>
+# include <time.h>
+#else
+# if HAVE_SYS_TIME_H
+#  include <sys/time.h>
+# else
+#  include <time.h>
+# endif
+#endif
+
+#include <limits.h>
+#include <libcitadel.h>
+#include "citadel.h"
+#include "server.h"
+#include "config.h"
+#include "files.h"
+#include "sysdep_decls.h"
+#include "support.h"
+#include "room_ops.h"
+#include "msgbase.h"
+#include "citserver.h"
+#include "threads.h"
+#include "ctdl_module.h"
+#include "user_ops.h"
+
+
+
+/*
+ * Server command to delete a file from a room's directory
+ */
+void cmd_delf(char *filename)
+{
+       char pathname[64];
+       int a;
+
+       if (CtdlAccessCheck(ac_room_aide))
+               return;
+
+       if ((CC->room.QRflags & QR_DIRECTORY) == 0) {
+               cprintf("%d No directory in this room.\n",
+                       ERROR + NOT_HERE);
+               return;
+       }
+
+       if (IsEmptyStr(filename)) {
+               cprintf("%d You must specify a file name.\n",
+                       ERROR + FILE_NOT_FOUND);
+               return;
+       }
+       for (a = 0; !IsEmptyStr(&filename[a]); ++a) {
+               if ( (filename[a] == '/') || (filename[a] == '\\') ) {
+                       filename[a] = '_';
+               }
+       }
+       snprintf(pathname, sizeof pathname,
+                        "%s/%s/%s",
+                        ctdl_file_dir,
+                        CC->room.QRdirname, filename);
+       a = unlink(pathname);
+       if (a == 0) {
+               cprintf("%d File '%s' deleted.\n", CIT_OK, pathname);
+       }
+       else {
+               cprintf("%d File '%s' not found.\n",
+                       ERROR + FILE_NOT_FOUND, pathname);
+       }
+}
+
+
+
+
+/*
+ * move a file from one room directory to another
+ */
+void cmd_movf(char *cmdbuf)
+{
+       char filename[PATH_MAX];
+       char pathname[PATH_MAX];
+       char newpath[PATH_MAX];
+       char newroom[ROOMNAMELEN];
+       char buf[PATH_MAX];
+       int a;
+       struct ctdlroom qrbuf;
+
+       extract_token(filename, cmdbuf, 0, '|', sizeof filename);
+       extract_token(newroom, cmdbuf, 1, '|', sizeof newroom);
+
+       if (CtdlAccessCheck(ac_room_aide)) return;
+
+       if ((CC->room.QRflags & QR_DIRECTORY) == 0) {
+               cprintf("%d No directory in this room.\n",
+                       ERROR + NOT_HERE);
+               return;
+       }
+
+       if (IsEmptyStr(filename)) {
+               cprintf("%d You must specify a file name.\n",
+                       ERROR + FILE_NOT_FOUND);
+               return;
+       }
+
+       for (a = 0; !IsEmptyStr(&filename[a]); ++a) {
+               if ( (filename[a] == '/') || (filename[a] == '\\') ) {
+                       filename[a] = '_';
+               }
+       }
+       snprintf(pathname, sizeof pathname, "./files/%s/%s",
+                CC->room.QRdirname, filename);
+       if (access(pathname, 0) != 0) {
+               cprintf("%d File '%s' not found.\n",
+                       ERROR + FILE_NOT_FOUND, pathname);
+               return;
+       }
+
+       if (CtdlGetRoom(&qrbuf, newroom) != 0) {
+               cprintf("%d '%s' does not exist.\n", ERROR + ROOM_NOT_FOUND, newroom);
+               return;
+       }
+       if ((qrbuf.QRflags & QR_DIRECTORY) == 0) {
+               cprintf("%d '%s' is not a directory room.\n",
+                       ERROR + NOT_HERE, qrbuf.QRname);
+               return;
+       }
+       snprintf(newpath, sizeof newpath, "./files/%s/%s", qrbuf.QRdirname,
+                filename);
+       if (link(pathname, newpath) != 0) {
+               cprintf("%d Couldn't move file: %s\n", ERROR + INTERNAL_ERROR,
+                       strerror(errno));
+               return;
+       }
+       unlink(pathname);
+
+       /* this is a crude method of copying the file description */
+       snprintf(buf, sizeof buf,
+                "cat ./files/%s/filedir |grep \"%s\" >>./files/%s/filedir",
+                CC->room.QRdirname, filename, qrbuf.QRdirname);
+       system(buf);
+       cprintf("%d File '%s' has been moved.\n", CIT_OK, filename);
+}
+
+
+/*
+ * This code is common to all commands which open a file for downloading,
+ * regardless of whether it's a file from the directory, an image, a network
+ * spool file, a MIME attachment, etc.
+ * It examines the file and displays the OK result code and some information
+ * about the file.  NOTE: this stuff is Unix dependent.
+ */
+void OpenCmdResult(char *filename, const char *mime_type)
+{
+       struct stat statbuf;
+       time_t modtime;
+       long filesize;
+
+       fstat(fileno(CC->download_fp), &statbuf);
+       CC->download_fp_total = statbuf.st_size;
+       filesize = (long) statbuf.st_size;
+       modtime = (time_t) statbuf.st_mtime;
+
+       cprintf("%d %ld|%ld|%s|%s\n",
+               CIT_OK, filesize, (long)modtime, filename, mime_type);
+}
+
+
+/*
+ * open a file for downloading
+ */
+void cmd_open(char *cmdbuf)
+{
+       char filename[256];
+       char pathname[PATH_MAX];
+       int a;
+
+       extract_token(filename, cmdbuf, 0, '|', sizeof filename);
+
+       if (CtdlAccessCheck(ac_logged_in)) return;
+
+       if ((CC->room.QRflags & QR_DIRECTORY) == 0) {
+               cprintf("%d No directory in this room.\n",
+                       ERROR + NOT_HERE);
+               return;
+       }
+
+       if (IsEmptyStr(filename)) {
+               cprintf("%d You must specify a file name.\n",
+                       ERROR + FILE_NOT_FOUND);
+               return;
+       }
+       if (strstr(filename, "../") != NULL)
+       {
+               cprintf("%d syntax error.\n",
+                       ERROR + ILLEGAL_VALUE);
+               return;
+       }
+
+       if (CC->download_fp != NULL) {
+               cprintf("%d You already have a download file open.\n",
+                       ERROR + RESOURCE_BUSY);
+               return;
+       }
+
+       for (a = 0; !IsEmptyStr(&filename[a]); ++a) {
+               if ( (filename[a] == '/') || (filename[a] == '\\') ) {
+                       filename[a] = '_';
+               }
+       }
+
+       snprintf(pathname, sizeof pathname,
+                        "%s/%s/%s",
+                        ctdl_file_dir,
+                        CC->room.QRdirname, filename);
+       CC->download_fp = fopen(pathname, "r");
+
+       if (CC->download_fp == NULL) {
+               cprintf("%d cannot open %s: %s\n",
+                       ERROR + INTERNAL_ERROR, pathname, strerror(errno));
+               return;
+       }
+
+       OpenCmdResult(filename, "application/octet-stream");
+}
+
+/*
+ * open an image file
+ */
+void cmd_oimg(char *cmdbuf)
+{
+       char filename[256];
+       char pathname[PATH_MAX];
+       char MimeTestBuf[32];
+       struct ctdluser usbuf;
+       char which_user[USERNAME_SIZE];
+       int which_floor;
+       int a;
+       int rv;
+
+       extract_token(filename, cmdbuf, 0, '|', sizeof filename);
+
+       if (IsEmptyStr(filename)) {
+               cprintf("%d You must specify a file name.\n",
+                       ERROR + FILE_NOT_FOUND);
+               return;
+       }
+
+       if (CC->download_fp != NULL) {
+               cprintf("%d You already have a download file open.\n",
+                       ERROR + RESOURCE_BUSY);
+               return;
+       }
+
+       if (!strcasecmp(filename, "_userpic_")) {
+               extract_token(which_user, cmdbuf, 1, '|', sizeof which_user);
+               if (CtdlGetUser(&usbuf, which_user) != 0) {
+                       cprintf("%d No such user.\n",
+                               ERROR + NO_SUCH_USER);
+                       return;
+               }
+               snprintf(pathname, sizeof pathname, 
+                                "%s/%ld",
+                                ctdl_usrpic_dir,
+                                usbuf.usernum);
+       } else if (!strcasecmp(filename, "_floorpic_")) {
+               which_floor = extract_int(cmdbuf, 1);
+               snprintf(pathname, sizeof pathname,
+                                "%s/floor.%d",
+                                ctdl_image_dir, which_floor);
+       } else if (!strcasecmp(filename, "_roompic_")) {
+               assoc_file_name(pathname, sizeof pathname, &CC->room, ctdl_image_dir);
+       } else {
+               for (a = 0; !IsEmptyStr(&filename[a]); ++a) {
+                       filename[a] = tolower(filename[a]);
+                       if ( (filename[a] == '/') || (filename[a] == '\\') ) {
+                               filename[a] = '_';
+                       }
+               }
+               if (strstr(filename, "../") != NULL)
+               {
+                       cprintf("%d syntax error.\n",
+                               ERROR + ILLEGAL_VALUE);
+                       return;
+               }
+
+               snprintf(pathname, sizeof pathname,
+                                "%s/%s",
+                                ctdl_image_dir,
+                                filename);
+       }
+
+       CC->download_fp = fopen(pathname, "rb");
+       if (CC->download_fp == NULL) {
+               strcat(pathname, ".gif");
+               CC->download_fp = fopen(pathname, "rb");
+       }
+       if (CC->download_fp == NULL) {
+               cprintf("%d Cannot open %s: %s\n",
+                       ERROR + FILE_NOT_FOUND, pathname, strerror(errno));
+               return;
+       }
+       rv = fread(&MimeTestBuf[0], 1, 32, CC->download_fp);
+       if (rv == -1) {
+               cprintf("%d Cannot access %s: %s\n",
+                       ERROR + FILE_NOT_FOUND, pathname, strerror(errno));
+               return;
+       }
+
+       rewind (CC->download_fp);
+       OpenCmdResult(pathname, GuessMimeType(&MimeTestBuf[0], 32));
+}
+
+/*
+ * open a file for uploading
+ */
+void cmd_uopn(char *cmdbuf)
+{
+       int a;
+
+       extract_token(CC->upl_file, cmdbuf, 0, '|', sizeof CC->upl_file);
+       extract_token(CC->upl_mimetype, cmdbuf, 1, '|', sizeof CC->upl_mimetype);
+       extract_token(CC->upl_comment, cmdbuf, 2, '|', sizeof CC->upl_comment);
+
+       if (CtdlAccessCheck(ac_logged_in)) return;
+
+       if ((CC->room.QRflags & QR_DIRECTORY) == 0) {
+               cprintf("%d No directory in this room.\n",
+                       ERROR + NOT_HERE);
+               return;
+       }
+
+       if (IsEmptyStr(CC->upl_file)) {
+               cprintf("%d You must specify a file name.\n",
+                       ERROR + FILE_NOT_FOUND);
+               return;
+       }
+
+       if (CC->upload_fp != NULL) {
+               cprintf("%d You already have a upload file open.\n",
+                       ERROR + RESOURCE_BUSY);
+               return;
+       }
+
+       for (a = 0; !IsEmptyStr(&CC->upl_file[a]); ++a) {
+               if ( (CC->upl_file[a] == '/') || (CC->upl_file[a] == '\\') ) {
+                       CC->upl_file[a] = '_';
+               }
+       }
+       snprintf(CC->upl_path, sizeof CC->upl_path, 
+                        "%s/%s/%s",
+                        ctdl_file_dir,
+                        CC->room.QRdirname, CC->upl_file);
+       snprintf(CC->upl_filedir, sizeof CC->upl_filedir,
+                        "%s/%s/filedir", 
+                        ctdl_file_dir,
+                        CC->room.QRdirname);
+
+       CC->upload_fp = fopen(CC->upl_path, "r");
+       if (CC->upload_fp != NULL) {
+               fclose(CC->upload_fp);
+               CC->upload_fp = NULL;
+               cprintf("%d '%s' already exists\n",
+                       ERROR + ALREADY_EXISTS, CC->upl_path);
+               return;
+       }
+
+       CC->upload_fp = fopen(CC->upl_path, "wb");
+       if (CC->upload_fp == NULL) {
+               cprintf("%d Cannot open %s: %s\n",
+                       ERROR + INTERNAL_ERROR, CC->upl_path, strerror(errno));
+               return;
+       }
+       cprintf("%d Ok\n", CIT_OK);
+}
+
+
+
+/*
+ * open an image file for uploading
+ */
+void cmd_uimg(char *cmdbuf)
+{
+       int is_this_for_real;
+       char basenm[256];
+       int which_floor;
+       int a;
+
+       if (num_parms(cmdbuf) < 2) {
+               cprintf("%d Usage error.\n", ERROR + ILLEGAL_VALUE);
+               return;
+       }
+
+       is_this_for_real = extract_int(cmdbuf, 0);
+       extract_token(CC->upl_mimetype, cmdbuf, 1, '|', sizeof CC->upl_mimetype);
+       extract_token(basenm, cmdbuf, 2, '|', sizeof basenm);
+       if (CC->upload_fp != NULL) {
+               cprintf("%d You already have an upload file open.\n",
+                       ERROR + RESOURCE_BUSY);
+               return;
+       }
+
+       strcpy(CC->upl_path, "");
+
+       for (a = 0; !IsEmptyStr(&basenm[a]); ++a) {
+               basenm[a] = tolower(basenm[a]);
+               if ( (basenm[a] == '/') || (basenm[a] == '\\') ) {
+                       basenm[a] = '_';
+               }
+       }
+
+       if (CC->user.axlevel >= AxAideU) {
+               snprintf(CC->upl_path, sizeof CC->upl_path, 
+                                "%s/%s",
+                                ctdl_image_dir,
+                                basenm);
+       }
+
+       if (!strcasecmp(basenm, "_userpic_")) {
+               snprintf(CC->upl_path, sizeof CC->upl_path,
+                                "%s/%ld.gif",
+                                ctdl_usrpic_dir,
+                                CC->user.usernum);
+       }
+
+       if ((!strcasecmp(basenm, "_floorpic_"))
+           && (CC->user.axlevel >= AxAideU)) {
+               which_floor = extract_int(cmdbuf, 2);
+               snprintf(CC->upl_path, sizeof CC->upl_path,
+                                "%s/floor.%d.gif",
+                                ctdl_image_dir,
+                                which_floor);
+       }
+
+       if ((!strcasecmp(basenm, "_roompic_")) && (is_room_aide())) {
+               assoc_file_name(CC->upl_path, sizeof CC->upl_path, &CC->room, ctdl_image_dir);
+       }
+
+       if (IsEmptyStr(CC->upl_path)) {
+               cprintf("%d Higher access required.\n",
+                       ERROR + HIGHER_ACCESS_REQUIRED);
+               return;
+       }
+
+       if (is_this_for_real == 0) {
+               cprintf("%d Ok to send image\n", CIT_OK);
+               return;
+       }
+
+       CC->upload_fp = fopen(CC->upl_path, "wb");
+       if (CC->upload_fp == NULL) {
+               cprintf("%d Cannot open %s: %s\n",
+                       ERROR + INTERNAL_ERROR, CC->upl_path, strerror(errno));
+               return;
+       }
+       cprintf("%d Ok\n", CIT_OK);
+       CC->upload_type = UPL_IMAGE;
+}
+
+
+/*
+ * close the download file
+ */
+void cmd_clos(char *cmdbuf)
+{
+       char buf[256];
+
+       if (CC->download_fp == NULL) {
+               cprintf("%d You don't have a download file open.\n",
+                       ERROR + RESOURCE_NOT_OPEN);
+               return;
+       }
+
+       fclose(CC->download_fp);
+       CC->download_fp = NULL;
+
+       if (CC->dl_is_net == 1) {
+               CC->dl_is_net = 0;
+               snprintf(buf, sizeof buf, 
+                                "%s/%s",
+                                ctdl_netout_dir,
+                                CC->net_node);
+               unlink(buf);
+       }
+
+       cprintf("%d Ok\n", CIT_OK);
+}
+
+
+/*
+ * abort an upload
+ */
+void abort_upl(CitContext *who)
+{
+       if (who->upload_fp != NULL) {
+               fclose(who->upload_fp);
+               who->upload_fp = NULL;
+               unlink(CC->upl_path);
+       }
+}
+
+
+
+/*
+ * close the upload file
+ */
+void cmd_ucls(char *cmd)
+{
+       FILE *fp;
+       char upload_notice[512];
+       static int seq = 0;
+
+       if (CC->upload_fp == NULL) {
+               cprintf("%d You don't have an upload file open.\n", ERROR + RESOURCE_NOT_OPEN);
+               return;
+       }
+
+       fclose(CC->upload_fp);
+       CC->upload_fp = NULL;
+
+       if ((!strcasecmp(cmd, "1")) && (CC->upload_type != UPL_FILE)) {
+               cprintf("%d Upload completed.\n", CIT_OK);
+
+               if (CC->upload_type == UPL_NET) {
+                       char final_filename[PATH_MAX];
+                       snprintf(final_filename, sizeof final_filename,
+                               "%s/%s.%04lx.%04x",
+                               ctdl_netin_dir,
+                               CC->net_node,
+                               (long)getpid(),
+                               ++seq
+                       );
+
+                       if (link(CC->upl_path, final_filename) == 0) {
+                               syslog(LOG_INFO, "UCLS: updoaded %s\n",
+                                      final_filename);
+                               unlink(CC->upl_path);
+                       }
+                       else {
+                               syslog(LOG_ALERT, "Cannot link %s to %s: %s\n",
+                                       CC->upl_path, final_filename, strerror(errno)
+                               );
+                       }
+                       
+
+                       /* FIXME ... here we need to trigger a network run */
+               }
+
+               CC->upload_type = UPL_FILE;
+               return;
+       }
+
+       if (!strcasecmp(cmd, "1")) {
+               cprintf("%d File '%s' saved.\n", CIT_OK, CC->upl_path);
+               fp = fopen(CC->upl_filedir, "a");
+               if (fp == NULL) {
+                       fp = fopen(CC->upl_filedir, "w");
+               }
+               if (fp != NULL) {
+                       fprintf(fp, "%s %s %s\n", CC->upl_file,
+                               CC->upl_mimetype,
+                               CC->upl_comment);
+                       fclose(fp);
+               }
+
+               /* put together an upload notice */
+               snprintf(upload_notice, sizeof upload_notice,
+                       "NEW UPLOAD: '%s'\n %s\n%s\n",
+                        CC->upl_file, 
+                        CC->upl_comment, 
+                        CC->upl_mimetype);
+               quickie_message(CC->curr_user, NULL, NULL, CC->room.QRname,
+                               upload_notice, 0, NULL);
+       } else {
+               abort_upl(CC);
+               cprintf("%d File '%s' aborted.\n", CIT_OK, CC->upl_path);
+       }
+}
+
+
+/*
+ * read from the download file
+ */
+void cmd_read(char *cmdbuf)
+{
+       long start_pos;
+       size_t bytes;
+       char buf[SIZ];
+       int rc;
+
+       /* The client will transmit its requested offset and byte count */
+       start_pos = extract_long(cmdbuf, 0);
+       bytes = extract_int(cmdbuf, 1);
+       if ((start_pos < 0) || (bytes <= 0)) {
+               cprintf("%d you have to specify a value > 0.\n", ERROR + ILLEGAL_VALUE);
+               return;
+       }
+
+       if (CC->download_fp == NULL) {
+               cprintf("%d You don't have a download file open.\n",
+                       ERROR + RESOURCE_NOT_OPEN);
+               return;
+       }
+
+       /* If necessary, reduce the byte count to the size of our buffer */
+       if (bytes > sizeof(buf)) {
+               bytes = sizeof(buf);
+       }
+
+       rc = fseek(CC->download_fp, start_pos, 0);
+       if (rc < 0) {
+               cprintf("%d your file is smaller then %ld.\n", ERROR + ILLEGAL_VALUE, start_pos);
+               syslog(LOG_ALERT, "your file %s is smaller then %ld. [%s]\n", 
+                      CC->upl_path, 
+                      start_pos,
+                      strerror(errno));
+
+               return;
+       }
+       bytes = fread(buf, 1, bytes, CC->download_fp);
+       if (bytes > 0) {
+               /* Tell the client the actual byte count and transmit it */
+               cprintf("%d %d\n", BINARY_FOLLOWS, (int)bytes);
+               client_write(buf, bytes);
+       }
+       else {
+               cprintf("%d %s\n", ERROR, strerror(errno));
+       }
+}
+
+
+/*
+ * write to the upload file
+ */
+void cmd_writ(char *cmdbuf)
+{
+       int bytes;
+       char *buf;
+       int rv;
+
+       unbuffer_output();
+
+       bytes = extract_int(cmdbuf, 0);
+
+       if (CC->upload_fp == NULL) {
+               cprintf("%d You don't have an upload file open.\n", ERROR + RESOURCE_NOT_OPEN);
+               return;
+       }
+       if (bytes <= 0) {
+               cprintf("%d you have to specify a value > 0.\n", ERROR + ILLEGAL_VALUE);
+               return;
+       }
+
+       if (bytes > 100000) {
+               bytes = 100000;
+       }
+
+       cprintf("%d %d\n", SEND_BINARY, bytes);
+       buf = malloc(bytes + 1);
+       client_read(buf, bytes);
+       rv = fwrite(buf, bytes, 1, CC->upload_fp);
+       if (rv == -1) {
+               syslog(LOG_EMERG, "Couldn't write: %s\n",
+                      strerror(errno));
+       }
+       free(buf);
+}
+
+
+
+
+/*
+ * cmd_ndop() - open a network spool file for downloading
+ */
+void cmd_ndop(char *cmdbuf)
+{
+       char pathname[256];
+       struct stat statbuf;
+
+       if (IsEmptyStr(CC->net_node)) {
+               cprintf("%d Not authenticated as a network node.\n",
+                       ERROR + NOT_LOGGED_IN);
+               return;
+       }
+
+       if (CC->download_fp != NULL) {
+               cprintf("%d You already have a download file open.\n",
+                       ERROR + RESOURCE_BUSY);
+               return;
+       }
+
+       snprintf(pathname, sizeof pathname, 
+                        "%s/%s",
+                        ctdl_netout_dir,
+                        CC->net_node);
+
+       /* first open the file in append mode in order to create a
+        * zero-length file if it doesn't already exist 
+        */
+       CC->download_fp = fopen(pathname, "a");
+       if (CC->download_fp != NULL)
+               fclose(CC->download_fp);
+
+       /* now open it */
+       CC->download_fp = fopen(pathname, "r");
+       if (CC->download_fp == NULL) {
+               cprintf("%d cannot open %s: %s\n",
+                       ERROR + INTERNAL_ERROR, pathname, strerror(errno));
+               return;
+       }
+
+
+       /* set this flag so other routines know that the download file
+        * currently open is a network spool file 
+        */
+       CC->dl_is_net = 1;
+
+       stat(pathname, &statbuf);
+       CC->download_fp_total = statbuf.st_size;
+       cprintf("%d %ld\n", CIT_OK, (long)statbuf.st_size);
+}
+
+/*
+ * cmd_nuop() - open a network spool file for uploading
+ */
+void cmd_nuop(char *cmdbuf)
+{
+       static int seq = 1;
+
+       if (IsEmptyStr(CC->net_node)) {
+               cprintf("%d Not authenticated as a network node.\n",
+                       ERROR + NOT_LOGGED_IN);
+               return;
+       }
+
+       if (CC->upload_fp != NULL) {
+               cprintf("%d You already have an upload file open.\n",
+                       ERROR + RESOURCE_BUSY);
+               return;
+       }
+
+       snprintf(CC->upl_path, sizeof CC->upl_path,
+                        "%s/%s.%04lx.%04x",
+                        ctdl_nettmp_dir,
+                        CC->net_node, 
+                        (long)getpid(), 
+                        ++seq);
+
+       CC->upload_fp = fopen(CC->upl_path, "r");
+       if (CC->upload_fp != NULL) {
+               fclose(CC->upload_fp);
+               CC->upload_fp = NULL;
+               cprintf("%d '%s' already exists\n",
+                       ERROR + ALREADY_EXISTS, CC->upl_path);
+               return;
+       }
+
+       CC->upload_fp = fopen(CC->upl_path, "w");
+       if (CC->upload_fp == NULL) {
+               cprintf("%d Cannot open %s: %s\n",
+                       ERROR + INTERNAL_ERROR, CC->upl_path, strerror(errno));
+               return;
+       }
+
+       CC->upload_type = UPL_NET;
+       cprintf("%d Ok\n", CIT_OK);
+}
+void files_logout_hook(void)
+{
+        CitContext *CCC = MyContext();
+
+       /*
+        * If there is a download in progress, abort it.
+        */
+       if (CCC->download_fp != NULL) {
+               fclose(CCC->download_fp);
+               CCC->download_fp = NULL;
+       }
+
+       /*
+        * If there is an upload in progress, abort it.
+        */
+       if (CCC->upload_fp != NULL) {
+               abort_upl(CCC);
+       }
+
+}
+
+
+/*****************************************************************************/
+/*                      MODULE INITIALIZATION STUFF                          */
+/*****************************************************************************/
+
+CTDL_MODULE_INIT(file_ops)
+{
+       if (!threading) {
+                CtdlRegisterSessionHook(files_logout_hook, EVT_LOGOUT, PRIO_LOGOUT + 8);
+
+               CtdlRegisterProtoHook(cmd_delf, "DELF", "Delete a file");
+               CtdlRegisterProtoHook(cmd_movf, "MOVF", "Move a file");
+               CtdlRegisterProtoHook(cmd_open, "OPEN", "Open a download file transfer");
+               CtdlRegisterProtoHook(cmd_clos, "CLOS", "Close a download file transfer");
+               CtdlRegisterProtoHook(cmd_uopn, "UOPN", "Open an upload file transfer");
+               CtdlRegisterProtoHook(cmd_ucls, "UCLS", "Close an upload file transfer");
+               CtdlRegisterProtoHook(cmd_read, "READ", "File transfer read operation");
+               CtdlRegisterProtoHook(cmd_writ, "WRIT", "File transfer write operation");
+               CtdlRegisterProtoHook(cmd_ndop, "NDOP", "Open a network spool file for download");
+               CtdlRegisterProtoHook(cmd_nuop, "NUOP", "Open a network spool file for upload");
+               CtdlRegisterProtoHook(cmd_oimg, "OIMG", "Open an image file for download");
+               CtdlRegisterProtoHook(cmd_uimg, "UIMG", "Upload an image file");
+       }
+        /* return our Subversion id for the Log */
+       return "file_ops";
+}
index 4d9230bddcf8107f22984813254fc8e1da2652a6..9f08d880f626f05cd164bc1348d022300a8e4038 100644 (file)
@@ -52,7 +52,7 @@
 #include "citserver.h"
 #include "room_ops.h"
 #include "user_ops.h"
-#include "file_ops.h"
+#include "files.h"
 #include "config.h"
 #include "control.h"
 #include "genstamp.h"
index c8c8aaa2dfae9899332d774cf58b56410a3926b4..a632aa43f370632d828f9e893aed40807962a2e3 100644 (file)
@@ -49,7 +49,6 @@
 #include "sysdep_decls.h"
 #include "support.h"
 #include "room_ops.h"
-#include "file_ops.h"
 #include "control.h"
 #include "msgbase.h"
 #include "config.h"
index a9fd95bfb8761a8706c2fc1af3f644fa55e5f761..889926ac48d250bd5717d7645c5d2500dfd4eaab 100644 (file)
@@ -48,7 +48,6 @@
 #include "msgbase.h"
 #include "internet_addressing.h"
 #include "clientsocket.h"
-#include "file_ops.h"
 #include "ctdl_module.h"
 
 /*
index d44be90745cb17882c9727825379b75c67931440..d71cbdbfb331c24184a534c29258a45a5e96ec68 100644 (file)
@@ -72,7 +72,6 @@
 #include "internet_addressing.h"
 #include "serv_network.h"
 #include "clientsocket.h"
-#include "file_ops.h"
 #include "citadel_dirs.h"
 #include "threads.h"
 #include "context.h"
index be4da12af30317f19d422a5f1ee6f37edb809bcb..c75e682fb74a1b51d30e0821e8635c39bc3851b7 100644 (file)
@@ -72,7 +72,6 @@
 #include "internet_addressing.h"
 #include "serv_network.h"
 #include "clientsocket.h"
-#include "file_ops.h"
 #include "citadel_dirs.h"
 #include "threads.h"
 #include "context.h"
index c0baa5f9a342f33955936dbd55bf831016262a0f..998a83df1c8415cfa166f18aecae11e58a492278 100644 (file)
@@ -72,7 +72,6 @@
 #include "internet_addressing.h"
 #include "serv_network.h"
 #include "clientsocket.h"
-#include "file_ops.h"
 #include "citadel_dirs.h"
 #include "threads.h"
 #include "context.h"
index 5d6a6e2dc99a39d438220856b56701bf5de588e3..2d57f90b75d8f2735de915cf4393b35a39167d2a 100644 (file)
@@ -66,7 +66,6 @@
 #include "msgbase.h"
 #include "internet_addressing.h"
 #include "clientsocket.h"
-#include "file_ops.h"
 #include "citadel_dirs.h"
 #include "threads.h"
 #include "context.h"
index b09850a4dbbb84dd576c9b4eb488dcf03d03f1b7..1539992d85ea257e863b516bf4de4a7c5b92123c 100644 (file)
@@ -52,7 +52,6 @@
 #include "citserver.h"
 #include "room_ops.h"
 #include "user_ops.h"
-#include "file_ops.h"
 #include "config.h"
 #include "control.h"
 #include "genstamp.h"
@@ -1028,7 +1027,9 @@ void list_this_suff(char *name, char *filename, char *partnum, char *disp,
 
 /*
  * Callback function for mime parser that opens a section for downloading
+ * we use serv_files function here: 
  */
+extern void OpenCmdResult(char *filename, const char *mime_type);
 void mime_download(char *name, char *filename, char *partnum, char *disp,
                   void *content, char *cbtype, char *cbcharset, size_t length,
                   char *encoding, char *cbid, void *cbuserdata)
index 2bac57e9bb80e813dd5c1850220eb52678e5ce4d..84de37702308221f280304ac64bfaee2c2f3990a 100755 (executable)
@@ -30,7 +30,7 @@ U_FILE="$CUR_DIR/modules_upgrade.c"
 
 /usr/bin/printf "Scanning extension modules for entry points.\n"
 
-STATIC_FIRST_MODULES="citserver control modules euidindex file_ops msgbase nttlist database internet_addressing"
+STATIC_FIRST_MODULES="citserver control modules euidindex msgbase nttlist database internet_addressing"
 DYNAMIC_MODULES=`grep CTDL_MODULE_INIT modules/*/*.c |$SED 's;.*(\(.*\));\1;'`
 if test -d user_modules; then 
     USER_MODULES=`grep CTDL_MODULE_INIT user_modules/*/*.c |$SED 's;.*(\(.*\));\1;'`
index 3e0791f4a159c187d4ba2141808b2e662df99742..3e28fec7cbd39ffc1eb0ad09d294b2a22550be22 100644 (file)
@@ -49,7 +49,6 @@
 #include "sysdep_decls.h"
 #include "support.h"
 #include "room_ops.h"
-#include "file_ops.h"
 #include "control.h"
 #include "msgbase.h"
 #include "config.h"
@@ -764,21 +763,6 @@ void CtdlUserLogout(void)
                   CCC->curr_user, CCC->cs_pid
        );
 
-       /*
-        * If there is a download in progress, abort it.
-        */
-       if (CCC->download_fp != NULL) {
-               fclose(CCC->download_fp);
-               CCC->download_fp = NULL;
-       }
-
-       /*
-        * If there is an upload in progress, abort it.
-        */
-       if (CCC->upload_fp != NULL) {
-               abort_upl(CCC);
-       }
-
        /* Run any hooks registered by modules... */
        PerformSessionHooks(EVT_LOGOUT);