mirror of
https://git.rtems.org/rtems-libbsd/
synced 2025-07-25 06:53:15 +08:00
ftpd01: New test
This commit is contained in:
parent
2815cdbf4d
commit
57bfdf772b
13
Makefile
13
Makefile
@ -95,6 +95,7 @@ LIB_C_FILES += rtemsbsd/rtems/rtems-kvm.c
|
||||
LIB_C_FILES += rtemsbsd/rtems/rtems-net-setup.c
|
||||
LIB_C_FILES += rtemsbsd/rtems/rtems-syslog-initialize.c
|
||||
LIB_C_FILES += rtemsbsd/rtems/syslog.c
|
||||
LIB_C_FILES += rtemsbsd/ftpd/ftpd.c
|
||||
LIB_C_FILES += rtemsbsd/sys/dev/usb/controller/ehci_mpc83xx.c
|
||||
LIB_C_FILES += rtemsbsd/sys/dev/usb/controller/ohci_lpc24xx.c
|
||||
LIB_C_FILES += rtemsbsd/sys/dev/usb/controller/ohci_lpc32xx.c
|
||||
@ -786,6 +787,18 @@ LIB_C_FILES += freebsd/usr.bin/netstat/pfkey.c
|
||||
LIB_C_FILES += freebsd/usr.bin/netstat/sctp.c
|
||||
LIB_C_FILES += freebsd/usr.bin/netstat/unix.c
|
||||
|
||||
TEST_FTPD01 = testsuite/ftpd01/ftpd01.exe
|
||||
TEST_FTPD01_O_FILES =
|
||||
TEST_FTPD01_D_FILES =
|
||||
TEST_FTPD01_O_FILES += testsuite/ftpd01/test_main.o
|
||||
TEST_FTPD01_D_FILES += testsuite/ftpd01/test_main.d
|
||||
$(TEST_FTPD01): $(TEST_FTPD01_O_FILES) $(LIB)
|
||||
$(LINK.c) -Wl,-Map,testsuite/ftpd01/ftpd01.map $^ -lm -lz -o $@
|
||||
NET_TESTS += $(TEST_FTPD01)
|
||||
O_FILES += $(TEST_FTPD01_O_FILES)
|
||||
D_FILES += $(TEST_FTPD01_D_FILES)
|
||||
RUN_NET_TESTS += $(TEST_FTPD01)
|
||||
|
||||
TEST_PING01 = testsuite/ping01/ping01.exe
|
||||
TEST_PING01_O_FILES =
|
||||
TEST_PING01_D_FILES =
|
||||
|
@ -674,6 +674,7 @@ rtems.addRTEMSSourceFiles(
|
||||
'rtems/rtems-net-setup.c',
|
||||
'rtems/rtems-syslog-initialize.c',
|
||||
'rtems/syslog.c',
|
||||
'ftpd/ftpd.c',
|
||||
'sys/dev/usb/controller/ehci_mpc83xx.c',
|
||||
'sys/dev/usb/controller/ohci_lpc24xx.c',
|
||||
'sys/dev/usb/controller/ohci_lpc32xx.c',
|
||||
@ -2418,6 +2419,7 @@ in_cksum.addCPUDependentSourceFiles(
|
||||
)
|
||||
|
||||
tests = Module('tests')
|
||||
tests.addTest('ftpd01', ['test_main'], netTest = True)
|
||||
tests.addTest('ping01', ['test_main'], netTest = True)
|
||||
tests.addTest('selectpollkqueue01', ['test_main'])
|
||||
tests.addTest('rwlock01', ['test_main'])
|
||||
|
2158
rtemsbsd/ftpd/ftpd.c
Normal file
2158
rtemsbsd/ftpd/ftpd.c
Normal file
File diff suppressed because it is too large
Load Diff
74
rtemsbsd/include/rtems/ftpd.h
Normal file
74
rtemsbsd/include/rtems/ftpd.h
Normal 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 */
|
117
testsuite/ftpd01/test_main.c
Normal file
117
testsuite/ftpd01/test_main.c
Normal file
@ -0,0 +1,117 @@
|
||||
/*
|
||||
* Copyright (c) 2013 embedded brains GmbH. All rights reserved.
|
||||
*
|
||||
* embedded brains GmbH
|
||||
* Dornierstr. 4
|
||||
* 82178 Puchheim
|
||||
* Germany
|
||||
* <rtems@embedded-brains.de>
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include <assert.h>
|
||||
|
||||
#include <rtems.h>
|
||||
#include <rtems/ftpd.h>
|
||||
#include <rtems/shell.h>
|
||||
#include <rtems/console.h>
|
||||
|
||||
#define TEST_NAME "LIBBSD FTPD 1"
|
||||
|
||||
struct rtems_ftpd_configuration rtems_ftpd_configuration = {
|
||||
/* FTPD task priority */
|
||||
.priority = 100,
|
||||
|
||||
/* Maximum buffersize for hooks */
|
||||
.max_hook_filesize = 0,
|
||||
|
||||
/* Well-known port */
|
||||
.port = 21,
|
||||
|
||||
/* List of hooks */
|
||||
.hooks = NULL,
|
||||
|
||||
/* Root for FTPD or NULL for "/" */
|
||||
.root = NULL,
|
||||
|
||||
/* Max. connections */
|
||||
.tasks_count = 4,
|
||||
|
||||
/* Idle timeout in seconds or 0 for no (infinite) timeout */
|
||||
.idle = 5 * 60,
|
||||
|
||||
/* Access: 0 - r/w, 1 - read-only, 2 - write-only, 3 - browse-only */
|
||||
.access = 0
|
||||
};
|
||||
|
||||
static void
|
||||
test_main(void)
|
||||
{
|
||||
rtems_status_code sc;
|
||||
int rv;
|
||||
|
||||
rv = rtems_initialize_ftpd();
|
||||
assert(rv == 0);
|
||||
|
||||
sc = rtems_shell_init(
|
||||
"SHLL",
|
||||
32 * 1024,
|
||||
1,
|
||||
CONSOLE_DEVICE_NAME,
|
||||
false,
|
||||
true,
|
||||
NULL
|
||||
);
|
||||
assert(sc == RTEMS_SUCCESSFUL);
|
||||
}
|
||||
|
||||
#define CONFIGURE_APPLICATION_NEEDS_STUB_DRIVER
|
||||
#define CONFIGURE_APPLICATION_NEEDS_ZERO_DRIVER
|
||||
|
||||
#include <rtems/bsd/test/default-network-init.h>
|
||||
|
||||
#define CONFIGURE_SHELL_COMMANDS_INIT
|
||||
|
||||
#include <bsp/irq-info.h>
|
||||
|
||||
#define CONFIGURE_SHELL_USER_COMMANDS &bsp_interrupt_shell_command
|
||||
|
||||
#define CONFIGURE_SHELL_COMMAND_CPUUSE
|
||||
#define CONFIGURE_SHELL_COMMAND_PERIODUSE
|
||||
#define CONFIGURE_SHELL_COMMAND_STACKUSE
|
||||
|
||||
#define CONFIGURE_SHELL_COMMAND_CP
|
||||
#define CONFIGURE_SHELL_COMMAND_PWD
|
||||
#define CONFIGURE_SHELL_COMMAND_LS
|
||||
#define CONFIGURE_SHELL_COMMAND_LN
|
||||
#define CONFIGURE_SHELL_COMMAND_LSOF
|
||||
#define CONFIGURE_SHELL_COMMAND_CHDIR
|
||||
#define CONFIGURE_SHELL_COMMAND_CD
|
||||
#define CONFIGURE_SHELL_COMMAND_MKDIR
|
||||
#define CONFIGURE_SHELL_COMMAND_RMDIR
|
||||
#define CONFIGURE_SHELL_COMMAND_CAT
|
||||
#define CONFIGURE_SHELL_COMMAND_MV
|
||||
#define CONFIGURE_SHELL_COMMAND_RM
|
||||
#define CONFIGURE_SHELL_COMMAND_MALLOC_INFO
|
||||
|
||||
#include <rtems/shellconfig.h>
|
Loading…
x
Reference in New Issue
Block a user