source: mainline/uspace/app/tester/hw/misc/virtchar1.c@ 163fc09

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 163fc09 was 9c4cf0d, checked in by Jakub Jermar <jakub@…>, 9 years ago

Rename close() to vfs_put()

This is motivated mainly by the fact that a file handle does not
necessarily correspond to an open file and close() was no longer the
the opposite operation to open().

  • Property mode set to 100644
File size: 3.1 KB
RevLine 
[424558a]1/*
2 * Copyright (c) 2010 Vojtech Horky
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup tester
30 * @brief Test the virtual char driver
31 * @{
32 */
33/**
34 * @file
35 */
36
37#include <inttypes.h>
38#include <errno.h>
39#include <str_error.h>
40#include <sys/types.h>
41#include <async.h>
[69c664e]42#include <unistd.h>
[5c65e61]43#include <char_dev_iface.h>
[424558a]44#include <str.h>
45#include <vfs/vfs.h>
[79ae36dd]46#include <vfs/vfs_sess.h>
[424558a]47#include "../../tester.h"
48
[b713ff80]49#define DEVICE_PATH_NORMAL "/loc/devices/\\virt\\null\\a"
50
51#define BUFFER_SIZE 64
[424558a]52
[7551706b]53static const char *test_virtchar1_internal(const char *path)
[424558a]54{
[7551706b]55 TPRINTF("Opening `%s'...\n", path);
[b19e892]56 int fd = vfs_lookup(path, WALK_REGULAR);
[424558a]57 if (fd < 0) {
[6afc9d7]58 TPRINTF(" ...error: %s\n", str_error(errno));
[424558a]59 if (fd == ENOENT) {
[7551706b]60 TPRINTF(" (error was ENOENT: " \
[424558a]61 "have you compiled test drivers?)\n");
62 }
[7551706b]63 return "Failed opening devman driver device for reading";
[424558a]64 }
65
[7551706b]66 TPRINTF(" ...file handle %d\n", fd);
[b713ff80]67
[79ae36dd]68 TPRINTF(" Asking for session...\n");
[6afc9d7]69 async_sess_t *sess = vfs_fd_session(fd, INTERFACE_DDF);
[79ae36dd]70 if (!sess) {
[9c4cf0d]71 vfs_put(fd);
[79ae36dd]72 TPRINTF(" ...error: %s\n", str_error(errno));
73 return "Failed to get session to device";
[424558a]74 }
[79ae36dd]75 TPRINTF(" ...session is %p\n", sess);
[424558a]76
[7551706b]77 TPRINTF(" Will try to read...\n");
[0bff73a]78 size_t i;
79 char buffer[BUFFER_SIZE];
[79ae36dd]80 char_dev_read(sess, buffer, BUFFER_SIZE);
[0bff73a]81 TPRINTF(" ...verifying that we read zeroes only...\n");
82 for (i = 0; i < BUFFER_SIZE; i++) {
83 if (buffer[i] != 0) {
84 return "Not all bytes are zeroes";
85 }
86 }
[7551706b]87 TPRINTF(" ...data read okay\n");
[424558a]88
89 /* Clean-up. */
[79ae36dd]90 TPRINTF(" Closing session and file descriptor\n");
91 async_hangup(sess);
[9c4cf0d]92 vfs_put(fd);
[424558a]93
94 return NULL;
95}
96
[7551706b]97const char *test_virtchar1(void)
[b713ff80]98{
99 const char *res = test_virtchar1_internal(DEVICE_PATH_NORMAL);
100 if (res != NULL)
[7551706b]101 return res;
[b713ff80]102
[7551706b]103 return NULL;
104}
105
[424558a]106/** @}
107 */
Note: See TracBrowser for help on using the repository browser.