From 58f665583e8023f1245910e953eafff05121e782 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Tue, 3 Apr 2012 16:15:34 +0200 Subject: networking: socket to/from file descriptor o Move rtems_bsdnet_fdToSocket() and rtems_bsdnet_makeFdForSocket() to "cpukit/libnetworking/rtems/rtems_syscall.c". o The rtems_bsdnet_makeFdForSocket() function is now static. o Check in rtems_bsdnet_fdToSocket() function that the file descriptor uses the socket handlers, otherwise an error status will be returned and errno set to ENOTSOCK. o New test libtests/syscall01. --- testsuites/libtests/Makefile.am | 1 + testsuites/libtests/configure.ac | 1 + testsuites/libtests/syscall01/Makefile.am | 19 +++++ testsuites/libtests/syscall01/init.c | 115 ++++++++++++++++++++++++++++ testsuites/libtests/syscall01/syscall01.doc | 11 +++ testsuites/libtests/syscall01/syscall01.scn | 2 + 6 files changed, 149 insertions(+) create mode 100644 testsuites/libtests/syscall01/Makefile.am create mode 100644 testsuites/libtests/syscall01/init.c create mode 100644 testsuites/libtests/syscall01/syscall01.doc create mode 100644 testsuites/libtests/syscall01/syscall01.scn (limited to 'testsuites') diff --git a/testsuites/libtests/Makefile.am b/testsuites/libtests/Makefile.am index 3bcd8c2e70..9521825441 100644 --- a/testsuites/libtests/Makefile.am +++ b/testsuites/libtests/Makefile.am @@ -21,6 +21,7 @@ SUBDIRS += bspcmdline01 cpuuse devfs01 devfs02 devfs03 devfs04 \ if NETTESTS SUBDIRS += ftp01 +SUBDIRS += syscall01 endif include $(top_srcdir)/../automake/subdirs.am diff --git a/testsuites/libtests/configure.ac b/testsuites/libtests/configure.ac index ec022bcf10..d1ce3745df 100644 --- a/testsuites/libtests/configure.ac +++ b/testsuites/libtests/configure.ac @@ -43,6 +43,7 @@ AM_CONDITIONAL(NETTESTS,test "$rtems_cv_RTEMS_NETWORKING" = "yes") # Explicitly list all Makefiles here AC_CONFIG_FILES([Makefile +syscall01/Makefile flashdisk01/Makefile block01/Makefile block02/Makefile diff --git a/testsuites/libtests/syscall01/Makefile.am b/testsuites/libtests/syscall01/Makefile.am new file mode 100644 index 0000000000..126cd30aa7 --- /dev/null +++ b/testsuites/libtests/syscall01/Makefile.am @@ -0,0 +1,19 @@ +rtems_tests_PROGRAMS = syscall01 +syscall01_SOURCES = init.c + +dist_rtems_tests_DATA = syscall01.scn syscall01.doc + +include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg +include $(top_srcdir)/../automake/compile.am +include $(top_srcdir)/../automake/leaf.am + +AM_CPPFLAGS += -I$(top_srcdir)/../support/include + +LINK_OBJS = $(syscall01_OBJECTS) +LINK_LIBS = $(syscall01_LDLIBS) + +syscall01$(EXEEXT): $(syscall01_OBJECTS) $(syscall01_DEPENDENCIES) + @rm -f syscall01$(EXEEXT) + $(make-exe) + +include $(top_srcdir)/../automake/local.am diff --git a/testsuites/libtests/syscall01/init.c b/testsuites/libtests/syscall01/init.c new file mode 100644 index 0000000000..b438a9306c --- /dev/null +++ b/testsuites/libtests/syscall01/init.c @@ -0,0 +1,115 @@ +/* + * Copyright (c) 2012 embedded brains GmbH. All rights reserved. + * + * embedded brains GmbH + * Obere Lagerstr. 30 + * 82178 Puchheim + * Germany + * + * + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.com/license/LICENSE. + */ + +#ifdef HAVE_CONFIG_H + #include "config.h" +#endif + +#include "tmacros.h" + +#include +#include +#include +#include +#include + +#include +#include + +static const char open_driver_path [] = "/dev/open_driver"; + +struct rtems_bsdnet_config rtems_bsdnet_config; + +static void test(void) +{ + int rv; + char buf [1]; + ssize_t n; + int fd = open(open_driver_path, O_RDWR); + rtems_test_assert(fd >= 0); + + n = send(fd, buf, sizeof(buf), 0); + rtems_test_assert(n == -1); + rtems_test_assert(errno == ENOTSOCK); + + n = recv(fd, buf, sizeof(buf), 0); + rtems_test_assert(n == -1); + rtems_test_assert(errno == ENOTSOCK); + + rv = close(fd); + rtems_test_assert(rv == 0); +} + +static void Init(rtems_task_argument arg) +{ + int rv; + + puts("\n\n*** TEST SYSCALL 1 ***"); + + rv = rtems_bsdnet_initialize_network(); + rtems_test_assert(rv == 0); + + test(); + + puts("*** END OF TEST SYSCALL 1 ***"); + + rtems_test_exit(0); +} + +static rtems_device_driver open_driver_initialize( + rtems_device_major_number major, + rtems_device_minor_number minor, + void *arg +) +{ + rtems_status_code sc = rtems_io_register_name(open_driver_path, major, 0); + rtems_test_assert(sc == RTEMS_SUCCESSFUL); + + return RTEMS_SUCCESSFUL; +} + +static rtems_device_driver open_driver_open( + rtems_device_major_number major, + rtems_device_minor_number minor, + void *arg +) +{ + rtems_libio_open_close_args_t *oc = arg; + + oc->iop->data0 = 1; + oc->iop->data1 = (void *) 1; + + return RTEMS_SUCCESSFUL; +} + +#define OPEN_DRIVER { \ + .initialization_entry = open_driver_initialize, \ + .open_entry = open_driver_open \ +} + +#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER +#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER +#define CONFIGURE_APPLICATION_EXTRA_DRIVERS OPEN_DRIVER + +#define CONFIGURE_USE_IMFS_AS_BASE_FILESYSTEM + +#define CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS 4 + +#define CONFIGURE_MAXIMUM_TASKS 2 + +#define CONFIGURE_RTEMS_INIT_TASKS_TABLE + +#define CONFIGURE_INIT + +#include diff --git a/testsuites/libtests/syscall01/syscall01.doc b/testsuites/libtests/syscall01/syscall01.doc new file mode 100644 index 0000000000..6ae2ec34e7 --- /dev/null +++ b/testsuites/libtests/syscall01/syscall01.doc @@ -0,0 +1,11 @@ +This file describes the directives and concepts tested by this test set. + +test set name: syscall01 + +directives: + + TBD + +concepts: + + TBD diff --git a/testsuites/libtests/syscall01/syscall01.scn b/testsuites/libtests/syscall01/syscall01.scn new file mode 100644 index 0000000000..598a0f419a --- /dev/null +++ b/testsuites/libtests/syscall01/syscall01.scn @@ -0,0 +1,2 @@ +*** TEST SYSCALL 1 *** +*** END OF TEST SYSCALL 1 *** -- cgit v1.2.3