1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
|
/*
* Copyright (c) 1997-1999 University of Utah and the Flux Group.
* All rights reserved.
*
* This file is part of the Flux OSKit. The OSKit is free software, also known
* as "open source;" you can redistribute it and/or modify it under the terms
* of the GNU General Public License (GPL), version 2, as published by the Free
* Software Foundation (FSF). To explore alternate licensing terms, contact
* the University of Utah at csl-dist@cs.utah.edu or +1-801-585-3271.
*
* The OSKit is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GPL for more details. You should have
* received a copy of the GPL along with the OSKit; see the file COPYING. If
* not, write to the FSF, 59 Temple Place #330, Boston, MA 02111-1307, USA.
*/
/*
* This is the test program for the COM interfaces for the TCP/IP stack
* It first does two fingers and then waits for incoming date requests.
*
* It assumes that libc's sockaddr_in is compatible with the
* COM interface's oskit_sockaddr type.
*/
#include <oskit/dev/dev.h>
#include <oskit/dev/osenv.h>
#include <oskit/dev/error.h>
#include <oskit/dev/linux.h>
#include <oskit/dev/freebsd.h>
#include <oskit/dev/clock.h>
#include <oskit/dev/timer.h>
#include <oskit/com/listener.h>
#include <oskit/clientos.h>
#include <oskit/dev/net.h>
#include <oskit/dev/ethernet.h>
#include <oskit/net/freebsd.h>
#include <oskit/net/socket.h>
#include <sys/types.h>
#include <sys/time.h>
#include <time.h>
#include <stdio.h>
#include <string.h>
#include <assert.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include "bootp.h"
/* MST: Salt Lake City, UT */
long secondswest = 6 * 60 * 60;
#define LOCAL_TO_GMT(t) (t)->tv_sec += secondswest;
char IPADDR[20];
char GATEWAY[20];
char NETMASK[20];
/* This doesn't really matter; it's for the ifconfig hack */
#define IFNAME "eth0"
/* variable to hold the socket creator function */
static oskit_socket_factory_t *socket_create;
/*
* this is a simple finger client, programmed to the socket COM interface
*/
void
fingerclient(char *name, char *host)
{
oskit_socket_t *so;
oskit_stream_t *oso;
oskit_error_t err;
int namelen;
oskit_u32_t retval, msg_len;
struct sockaddr_in addr;
char message[256];
if ((err = oskit_socket_factory_create(socket_create, OSKIT_AF_INET,
OSKIT_SOCK_STREAM, IPPROTO_TCP, &so))) {
printf("socket_create: errno = %x\n", (int)err);
return;
}
/* fill in the sin_addr structure */
memset(&addr, 0, namelen = sizeof(addr));
addr.sin_addr.s_addr = inet_addr(host);
addr.sin_family = OSKIT_AF_INET;
addr.sin_port = htons(79);
if ((err = oskit_socket_connect(so,
(struct oskit_sockaddr *)&addr, sizeof(addr))))
{
printf("connect: errno = 0x%x: %s\n", (int)err, strerror(err));
return;
}
if ((err = oskit_socket_query(so, &oskit_stream_iid, (void **)&oso))) {
printf("query: errno is 0x%x\n", (int)err);
return;
}
sprintf(message, "%s\r\n", name);
err = oskit_stream_write(oso,
message, msg_len = strlen(message), &retval);
if (err) {
printf("oskit_stream_write returned = %x\n", (int)err);
return;
}
do {
err = oskit_stream_read(oso, message,
sizeof(message), &retval);
if (!err) {
int i;
for (i = 0; i < retval; i++)
putchar(message[i]);
} else {
printf("read: errno %x\n", (int)err);
return;
}
} while (retval > 0);
oskit_stream_release(oso);
oskit_socket_release(so);
}
/* timeout handler - just raise a flag */
static int
timeout(struct oskit_iunknown *clock, void *arg)
{
return *(int *)arg = 1;
}
/*
* this is a simple server responding to requests on port 13 (daytime)
*/
void
dateserver(int seconds)
{
oskit_socket_t *so, *nso;
oskit_stream_t *oso;
int err, namelen;
struct sockaddr_in addr;
oskit_timer_t *timer;
oskit_listener_t *l;
oskit_itimerspec_t expire;
oskit_timespec_t tod;
oskit_clock_t *clock = oskit_clock_init();
volatile int stop = 0;
if ((err = oskit_socket_factory_create(socket_create,
OSKIT_AF_INET, OSKIT_SOCK_STREAM, IPPROTO_TCP, &so))) {
printf("oskit_freebsd_net_socket_create: errno = %d\n", err);
return;
}
/* fill in the sin_addr structure */
memset(&addr, 0, namelen = sizeof(addr));
addr.sin_addr.s_addr = htonl(INADDR_ANY);
addr.sin_family = OSKIT_AF_INET;
addr.sin_port = htons(13);
if ((err = oskit_socket_bind(so,
(struct oskit_sockaddr *)&addr, sizeof(addr)))) {
printf("bind: errno = %d\n", err);
return;
}
if ((err = oskit_socket_listen(so, 5))) {
printf("listen: errno = %d\n", err);
return;
}
oskit_rtc_get(&tod);
LOCAL_TO_GMT(&tod);
oskit_clock_settime(clock, &tod);
oskit_clock_createtimer(clock, &timer);
oskit_timer_setlistener(timer,
l = oskit_create_listener(timeout, (void *)&stop));
oskit_listener_release(l);
memset(&expire, 0, sizeof expire);
expire.it_value.tv_sec = seconds;
oskit_timer_settime(timer, 0, &expire);
for (;!stop;) {
char time_message[BUFSIZ];
oskit_u32_t msg_len, written;
oskit_timespec_t currenttime;
if ((err = oskit_socket_accept(so,
(struct oskit_sockaddr *)&addr, &namelen, &nso)))
{
printf("accept: errno = %d\n", err);
return;
}
if ((err = oskit_socket_query(nso, &oskit_stream_iid,
(void **)&oso))) {
printf("query: errno = %d\n", err);
return;
}
oskit_clock_gettime(clock, ¤ttime);
sprintf(time_message,
"At the tone, the time will be %u:%u ... ding\n",
currenttime.tv_sec, currenttime.tv_nsec);
msg_len = strlen(time_message);
err = oskit_stream_write(oso,
time_message, msg_len, &written);
if (err)
{
printf("oskit_stream_write returned = %d\n", err);
return;
} else {
printf("write %d out of %d bytes\n",
written, msg_len);
}
oskit_stream_release(oso);
oskit_socket_release(nso);
}
printf("bailing out of loop...\n");
oskit_socket_release(so);
}
/*
* the initialization follows the ping_reply example...
*/
int
main(int argc, char **argv)
{
struct oskit_freebsd_net_ether_if *eif;
oskit_etherdev_t **etherdev;
oskit_etherdev_t *dev;
int err, ndev;
oskit_osenv_t *osenv;
oskit_clientos_init();
printf("Initializing devices...\n");
osenv = oskit_osenv_create_default();
oskit_register(&oskit_osenv_iid, (void *) osenv);
oskit_dev_init(osenv);
oskit_linux_init_osenv(osenv);
oskit_linux_init_net();
printf("Probing devices...\n");
oskit_dev_probe();
oskit_dump_devices();
/* initialize network code */
err = oskit_freebsd_net_init(osenv, &socket_create);
assert(!err);
/*
* Find all the Ethernet device nodes.
*/
ndev = osenv_device_lookup(&oskit_etherdev_iid, (void***)ðerdev);
if (ndev <= 0)
panic("no Ethernet adaptors found!");
/*
* for now, we just go for the first device...
*/
dev = etherdev[0];
/* get the IP address & other info */
get_ipinfo(dev, IPADDR, GATEWAY, NETMASK, &secondswest);
/*
* Open first one; could use oskit_freebsd_net_open_first_ether_if,
* but we already have a handle on that one.
*/
err = oskit_freebsd_net_open_ether_if(dev, &eif);
assert(!err);
/* configure the interface */
err = oskit_freebsd_net_ifconfig(eif, IFNAME, IPADDR, NETMASK);
assert(!err);
err = oskit_freebsd_net_add_default_route(GATEWAY);
if (err)
printf("couldn't add default route (%d)\n", err);
fingerclient("oskit", "155.99.212.1"); /* fast */
fingerclient("ftp", "155.99.212.1"); /* fast */
printf("now responding to date (port 13) requests for 30 seconds\n");
printf("type 'telnet %s 13' to test\n", IPADDR);
dateserver(30);
/* close etherdev and release net_io devices */
oskit_freebsd_net_close_ether_if(eif);
exit(0);
}
|