ftpd: Added from old stack

This commit is contained in:
Joel Sherrill 2012-07-28 07:09:54 -05:00
parent 647081dbe3
commit f415cbba07
3 changed files with 2225 additions and 0 deletions

38
services/ftpd/Makefile Normal file
View File

@ -0,0 +1,38 @@
include ../../config.inc
include $(RTEMS_MAKEFILE_PATH)/Makefile.inc
include $(RTEMS_CUSTOM)
include $(PROJECT_ROOT)/make/leaf.cfg
CFLAGS += -I $(INSTALL_BASE)/include
CFLAGS += -w
CFLAGS += -I include
CFLAGS += -std=gnu99
CFLAGS += -MT $@ -MD -MP -MF $(basename $@).d
C_FILES =
C_FILES += ftpd.c
C_O_FILES = $(C_FILES:%.c=%.o)
C_D_FILES = $(C_FILES:%.c=%.d)
LIB = libftpd.a
all: $(LIB)
$(LIB): $(C_O_FILES)
$(AR) rcu $@ $^
install: $(LIB)
install -d $(INSTALL_BASE)/include/rtems
install -c -m 644 ftpd.h $(INSTALL_BASE)/
install -c -m 644 $(LIB) $(INSTALL_BASE)
clean:
rm -f $(LIB) $(C_O_FILES) $(C_D_FILES) $(GEN_FILES)
-include $(C_D_FILES)
doc:

2113
services/ftpd/ftpd.c Normal file

File diff suppressed because it is too large Load Diff

74
services/ftpd/ftpd.h Normal file
View File

@ -0,0 +1,74 @@
/*
* FTP Server Information
*/
#ifndef _RTEMS_FTPD_H
#define _RTEMS_FTPD_H
#include <rtems.h>
#ifdef __cplusplus
extern "C" {
#endif
#define FTPD_CONTROL_PORT 21
/* Various buffer sizes */
enum {
FTPD_BUFSIZE = 256, /* Size for temporary buffers */
FTPD_DATASIZE = 4 * 1024, /* Size for file transfer buffers */
FTPD_STACKSIZE = RTEMS_MINIMUM_STACK_SIZE + FTPD_DATASIZE /* Tasks stack size */
};
/* FTPD access control flags */
enum
{
FTPD_NO_WRITE = 0x1,
FTPD_NO_READ = 0x2,
FTPD_NO_RW = FTPD_NO_WRITE | FTPD_NO_READ
};
typedef int (*rtems_ftpd_hookfunction)(char *, size_t);
#include <rtems/shell.h>
struct rtems_ftpd_hook
{
char *filename;
rtems_ftpd_hookfunction hook_function;
};
struct rtems_ftpd_configuration
{
rtems_task_priority priority; /* FTPD task priority */
unsigned long max_hook_filesize; /* Maximum buffersize */
/* for hooks */
int port; /* Well-known port */
struct rtems_ftpd_hook *hooks; /* List of hooks */
char const *root; /* Root for FTPD or 0 for / */
int tasks_count; /* Max. connections */
int idle; /* Idle timeout in seoconds
or 0 for no (inf) timeout */
int access; /* 0 - r/w, 1 - read-only,
2 - write-only,
3 - browse-only */
rtems_shell_login_check_t login; /* Login check or 0 to ignore
user/passwd. */
};
/*
* Reply codes.
*/
#define PRELIM 1 /* positive preliminary */
#define COMPLETE 2 /* positive completion */
#define CONTINUE 3 /* positive intermediate */
#define TRANSIENT 4 /* transient negative completion */
#define ERROR 5 /* permanent negative completion */
int rtems_initialize_ftpd(void);
#ifdef __cplusplus
}
#endif
#endif /* _RTEMS_FTPD_H */