[3eddaff] | 1 | /*
|
---|
| 2 | * Copyright (C) 2005 Martin Decky
|
---|
| 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 |
|
---|
[350514c] | 29 | #include "version.h"
|
---|
[b419162] | 30 | #include <ipc.h>
|
---|
[00c4994] | 31 | #include <stdio.h>
|
---|
| 32 | #include <unistd.h>
|
---|
| 33 | #include <stdlib.h>
|
---|
[5106e98] | 34 | #include <ns.h>
|
---|
[c05290e] | 35 | #include <thread.h>
|
---|
[936351c1] | 36 |
|
---|
[c05290e] | 37 | extern void utest(void *arg);
|
---|
| 38 | void utest(void *arg)
|
---|
| 39 | {
|
---|
[e5a1f82f] | 40 | // printf("Uspace thread started.\n");
|
---|
[c05290e] | 41 | for (;;)
|
---|
| 42 | ;
|
---|
| 43 | }
|
---|
[48627ab] | 44 |
|
---|
[56972c81] | 45 | static void test_printf(void)
|
---|
| 46 | {
|
---|
| 47 | printf("Simple text.\n");
|
---|
| 48 | printf("Now insert '%s' string.\n","this");
|
---|
[11a4fbf] | 49 | printf("Signed formats on uns. numbers: '%d', '%+d', '% d', '%u' (,+, ,u)\n", 321, 321, 321, 321);
|
---|
| 50 | printf("Signed formats on sig. numbers: '%d', '%+d', '% d', '%u' (,+, ,u)\n", -321, -321, -321, -321);
|
---|
| 51 | printf("Signed with different sized: '%hhd', '%hd', '%d', '%ld', %lld;\n", -3, -32, -321, -32101l, -3210123ll);
|
---|
| 52 | printf("And now... '%hhd' byte! '%hd' word! '%d' int! \n", 11, 11111, 1111111111);
|
---|
| 53 | printf("Different bases: %#hx, %#hu, %#ho and %#hb\n", 123, 123, 123, 123);
|
---|
| 54 | printf("Different bases signed: %#hx, %#hu, %#ho and %#hb\n", -123, -123, -123, -123);
|
---|
| 55 | printf("'%llX' llX! Another '%llx' llx! \n", 0x1234567887654321ll, 0x1234567887654321ll);
|
---|
| 56 | printf("'%llX' with 64bit value and '%x' with 32 bit value. \n", 0x1234567887654321ll, 0x12345678 );
|
---|
| 57 | printf("'%llx' 64bit, '%x' 32bit, '%hhx' 8bit, '%hx' 16bit, '%llX' 64bit and '%s' string.\n", 0x1234567887654321ll, 0x12345678, 0x12, 0x1234, 0x1234567887654321ull, "Lovely string" );
|
---|
[48627ab] | 58 |
|
---|
[56972c81] | 59 | printf("Thats all, folks!\n");
|
---|
| 60 | }
|
---|
[48627ab] | 61 |
|
---|
[936351c1] | 62 |
|
---|
[5106e98] | 63 | extern char _heap;
|
---|
[4241683] | 64 | static void test_mremap(void)
|
---|
[00c4994] | 65 | {
|
---|
| 66 | printf("Writing to good memory\n");
|
---|
| 67 | mremap(&_heap, 120000, 0);
|
---|
| 68 | printf("%P\n", ((char *)&_heap));
|
---|
| 69 | printf("%P\n", ((char *)&_heap) + 80000);
|
---|
| 70 | *(((char *)&_heap) + 80000) = 10;
|
---|
| 71 | printf("Making small\n");
|
---|
| 72 | mremap(&_heap, 16000, 0);
|
---|
| 73 | printf("Failing..\n");
|
---|
| 74 | *((&_heap) + 80000) = 10;
|
---|
| 75 |
|
---|
| 76 | printf("memory done\n");
|
---|
| 77 | }
|
---|
| 78 | /*
|
---|
| 79 | static void test_sbrk(void)
|
---|
| 80 | {
|
---|
| 81 | printf("Writing to good memory\n");
|
---|
| 82 | printf("Got: %P\n", sbrk(120000));
|
---|
| 83 | printf("%P\n", ((char *)&_heap));
|
---|
| 84 | printf("%P\n", ((char *)&_heap) + 80000);
|
---|
| 85 | *(((char *)&_heap) + 80000) = 10;
|
---|
| 86 | printf("Making small, got: %P\n",sbrk(-120000));
|
---|
| 87 | printf("Testing access to heap\n");
|
---|
| 88 | _heap = 10;
|
---|
| 89 | printf("Failing..\n");
|
---|
| 90 | *((&_heap) + 80000) = 10;
|
---|
| 91 |
|
---|
| 92 | printf("memory done\n");
|
---|
| 93 | }
|
---|
| 94 | */
|
---|
| 95 | /*
|
---|
| 96 | static void test_malloc(void)
|
---|
| 97 | {
|
---|
| 98 | char *data;
|
---|
| 99 |
|
---|
| 100 | data = malloc(10);
|
---|
| 101 | printf("Heap: %P, data: %P\n", &_heap, data);
|
---|
| 102 | data[0] = 'a';
|
---|
| 103 | free(data);
|
---|
| 104 | }
|
---|
| 105 | */
|
---|
[3eddaff] | 106 |
|
---|
[5106e98] | 107 |
|
---|
| 108 | static void test_ping(void)
|
---|
| 109 | {
|
---|
| 110 | ipcarg_t result;
|
---|
| 111 | int retval;
|
---|
| 112 |
|
---|
| 113 | retval = ipc_call_sync(PHONE_NS, NS_PING, 0xbeef,&result);
|
---|
| 114 | printf("Retval: %d - received: %P\n", retval, result);
|
---|
| 115 | }
|
---|
| 116 |
|
---|
[936351c1] | 117 | static void got_answer(void *private, int retval, ipc_data_t *data)
|
---|
| 118 | {
|
---|
[11a4fbf] | 119 | printf("Retval: %d...%s...%zX, %zX\n", retval, private,
|
---|
[936351c1] | 120 | IPC_GET_ARG1(*data), IPC_GET_ARG2(*data));
|
---|
| 121 | }
|
---|
| 122 | static void test_async_ipc(void)
|
---|
| 123 | {
|
---|
[5106e98] | 124 | ipc_call_t data;
|
---|
[936351c1] | 125 | int i;
|
---|
| 126 |
|
---|
| 127 | printf("Sending ping\n");
|
---|
| 128 | ipc_call_async_2(PHONE_NS, NS_PING, 1, 0xbeefbee2,
|
---|
| 129 | "Pong1", got_answer);
|
---|
| 130 | ipc_call_async_2(PHONE_NS, NS_PING, 2, 0xbeefbee4,
|
---|
| 131 | "Pong2", got_answer);
|
---|
| 132 | ipc_call_async_2(PHONE_NS, NS_PING, 3, 0xbeefbee4,
|
---|
| 133 | "Pong3", got_answer);
|
---|
| 134 | ipc_call_async_2(PHONE_NS, NS_PING, 4, 0xbeefbee4,
|
---|
| 135 | "Pong4", got_answer);
|
---|
| 136 | ipc_call_async_2(PHONE_NS, NS_PING, 5, 0xbeefbee4,
|
---|
| 137 | "Pong5", got_answer);
|
---|
| 138 | ipc_call_async_2(PHONE_NS, NS_PING, 6, 0xbeefbee4,
|
---|
| 139 | "Pong6", got_answer);
|
---|
| 140 | printf("Waiting forever...\n");
|
---|
| 141 | for (i=0; i<100;i++)
|
---|
| 142 | printf(".");
|
---|
| 143 | printf("\n");
|
---|
| 144 | ipc_wait_for_call(&data, NULL);
|
---|
| 145 | printf("Received call???\n");
|
---|
| 146 | }
|
---|
| 147 |
|
---|
[5106e98] | 148 |
|
---|
| 149 | static void got_answer_2(void *private, int retval, ipc_data_t *data)
|
---|
| 150 | {
|
---|
| 151 | printf("Pong\n");
|
---|
| 152 | }
|
---|
| 153 | static void test_advanced_ipc(void)
|
---|
[3eddaff] | 154 | {
|
---|
[5106e98] | 155 | int res;
|
---|
| 156 | unsigned long long taskid;
|
---|
| 157 | ipc_callid_t callid;
|
---|
| 158 | ipc_call_t data;
|
---|
[11eae82] | 159 | int i;
|
---|
[936351c1] | 160 |
|
---|
[5106e98] | 161 | printf("Asking 0 to connect to me...\n");
|
---|
| 162 | res = ipc_connect_to_me(0, 1, 2, &taskid);
|
---|
[11a4fbf] | 163 | printf("Result: %d - taskid: %llu\n", res, taskid);
|
---|
[11eae82] | 164 | for (i=0; i < 100; i++) {
|
---|
[5106e98] | 165 | printf("----------------\n");
|
---|
| 166 | ipc_call_async(PHONE_NS, NS_PING_SVC, 0, "prov",
|
---|
| 167 | got_answer_2);
|
---|
| 168 | callid = ipc_wait_for_call(&data, NULL);
|
---|
| 169 | printf("Received ping\n");
|
---|
| 170 | ipc_answer(callid, 0, 0, 0);
|
---|
[11eae82] | 171 | }
|
---|
| 172 | callid = ipc_wait_for_call(&data, NULL);
|
---|
| 173 | }
|
---|
| 174 |
|
---|
| 175 | static void test_connection_ipc(void)
|
---|
| 176 | {
|
---|
| 177 | int res;
|
---|
| 178 | ipcarg_t result;
|
---|
| 179 |
|
---|
| 180 | printf("Starting connect...\n");
|
---|
| 181 | res = ipc_connect_me_to(PHONE_NS, 10, 20);
|
---|
| 182 | printf("Connected: %d\n", res);
|
---|
| 183 | printf("pinging.\n");
|
---|
| 184 | res = ipc_call_sync(res, NS_PING, 0xbeef,&result);
|
---|
[11a4fbf] | 185 | printf("Retval: %d - received: %zd\n", res, result);
|
---|
[11eae82] | 186 |
|
---|
[5106e98] | 187 | }
|
---|
| 188 |
|
---|
| 189 | int main(int argc, char *argv[])
|
---|
| 190 | {
|
---|
[c05290e] | 191 | int tid;
|
---|
[7fc78da] | 192 | version_print();
|
---|
[b419162] | 193 |
|
---|
[48627ab] | 194 | /* test_printf(); */
|
---|
[5106e98] | 195 | // test_ping();
|
---|
| 196 | // test_async_ipc();
|
---|
[11eae82] | 197 | // test_advanced_ipc();
|
---|
| 198 | test_connection_ipc();
|
---|
[c05290e] | 199 |
|
---|
[e5a1f82f] | 200 | if ((tid = thread_create(utest, NULL, "utest") != -1)) {
|
---|
| 201 | printf("Created thread tid=%d\n", tid);
|
---|
[c05290e] | 202 | }
|
---|
| 203 |
|
---|
[3eddaff] | 204 | return 0;
|
---|
| 205 | }
|
---|