mirror of
https://git.rtems.org/rtems-libbsd/
synced 2025-06-04 00:54:16 +08:00
202 lines
5.1 KiB
C
202 lines
5.1 KiB
C
/*
|
|
* Copyright (c) 2010-2015 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 <stdio.h>
|
|
|
|
#include <rtems/bdbuf.h>
|
|
#include <rtems/console.h>
|
|
#include <rtems/ftpd.h>
|
|
#include <rtems/media.h>
|
|
#include <rtems/shell.h>
|
|
|
|
#define TEST_NAME "LIBBSD MEDIA 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 rtems_status_code
|
|
media_listener(rtems_media_event event, rtems_media_state state,
|
|
const char *src, const char *dest, void *arg)
|
|
{
|
|
printf(
|
|
"media listener: event = %s, state = %s, src = %s",
|
|
rtems_media_event_description(event),
|
|
rtems_media_state_description(state),
|
|
src
|
|
);
|
|
|
|
if (dest != NULL) {
|
|
printf(", dest = %s", dest);
|
|
}
|
|
|
|
if (arg != NULL) {
|
|
printf(", arg = %p\n", arg);
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
if (event == RTEMS_MEDIA_EVENT_MOUNT && state == RTEMS_MEDIA_STATE_SUCCESS) {
|
|
char name[256];
|
|
int n = snprintf(&name[0], sizeof(name), "%s/test.txt", dest);
|
|
FILE *file;
|
|
|
|
assert(n < (int) sizeof(name));
|
|
|
|
printf("write file %s\n", &name[0]);
|
|
file = fopen(&name[0], "w");
|
|
if (file != NULL) {
|
|
const char hello[] = "Hello, world!\n";
|
|
|
|
fwrite(&hello[0], sizeof(hello) - 1, 1, file);
|
|
fclose(file);
|
|
}
|
|
}
|
|
|
|
return RTEMS_SUCCESSFUL;
|
|
}
|
|
|
|
static void
|
|
test_main(void)
|
|
{
|
|
int rv;
|
|
rtems_status_code sc;
|
|
|
|
rv = rtems_initialize_ftpd();
|
|
assert(rv == 0);
|
|
|
|
sc = rtems_shell_init("SHLL", 16 * 1024, 1, CONSOLE_DEVICE_NAME,
|
|
false, true, NULL);
|
|
assert(sc == RTEMS_SUCCESSFUL);
|
|
|
|
exit(0);
|
|
}
|
|
|
|
#define DEFAULT_EARLY_INITIALIZATION
|
|
|
|
static void
|
|
early_initialization(void)
|
|
{
|
|
rtems_status_code sc;
|
|
|
|
sc = rtems_bdbuf_init();
|
|
assert(sc == RTEMS_SUCCESSFUL);
|
|
|
|
sc = rtems_media_initialize();
|
|
assert(sc == RTEMS_SUCCESSFUL);
|
|
|
|
sc = rtems_media_listener_add(media_listener, NULL);
|
|
assert(sc == RTEMS_SUCCESSFUL);
|
|
|
|
sc = rtems_media_server_initialize(
|
|
200,
|
|
32 * 1024,
|
|
RTEMS_DEFAULT_MODES,
|
|
RTEMS_DEFAULT_ATTRIBUTES
|
|
);
|
|
assert(sc == RTEMS_SUCCESSFUL);
|
|
}
|
|
|
|
#define DEFAULT_NETWORK_DHCPCD_ENABLE
|
|
|
|
#define CONFIGURE_FILESYSTEM_DOSFS
|
|
|
|
#define CONFIGURE_SMP_APPLICATION
|
|
|
|
#define CONFIGURE_SMP_MAXIMUM_PROCESSORS 32
|
|
|
|
#include <rtems/bsd/test/default-network-init.h>
|
|
|
|
#define CONFIGURE_SHELL_COMMANDS_INIT
|
|
|
|
#include <bsp/irq-info.h>
|
|
|
|
#include <rtems/netcmds-config.h>
|
|
|
|
#define CONFIGURE_SHELL_USER_COMMANDS \
|
|
&bsp_interrupt_shell_command, \
|
|
&rtems_shell_BSD_Command, \
|
|
&rtems_shell_HOSTNAME_Command, \
|
|
&rtems_shell_PING_Command, \
|
|
&rtems_shell_ROUTE_Command, \
|
|
&rtems_shell_NETSTAT_Command, \
|
|
&rtems_shell_IFCONFIG_Command
|
|
|
|
#define CONFIGURE_SHELL_COMMAND_CPUUSE
|
|
#define CONFIGURE_SHELL_COMMAND_PERIODUSE
|
|
#define CONFIGURE_SHELL_COMMAND_STACKUSE
|
|
#define CONFIGURE_SHELL_COMMAND_PROFREPORT
|
|
|
|
#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
|
|
|
|
#define CONFIGURE_SHELL_COMMAND_FDISK
|
|
#define CONFIGURE_SHELL_COMMAND_BLKSTATS
|
|
#define CONFIGURE_SHELL_COMMAND_BLKSYNC
|
|
#define CONFIGURE_SHELL_COMMAND_MSDOSFMT
|
|
#define CONFIGURE_SHELL_COMMAND_DF
|
|
|
|
#include <rtems/shellconfig.h>
|