2007-11-27 22:42:02 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2007, Swedish Institute of Computer Science.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
* 3. Neither the name of the Institute nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE INSTITUTE 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 INSTITUTE 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.
|
|
|
|
*
|
|
|
|
* This file is part of the Contiki operating system.
|
|
|
|
*
|
|
|
|
* Author: Oliver Schmidt <ol.sc@web.de>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2007-12-16 14:08:09 +01:00
|
|
|
#include <stdlib.h>
|
2007-11-27 22:42:02 +01:00
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "contiki-net.h"
|
2007-12-21 02:04:29 +01:00
|
|
|
#include "cfs/cfs.h"
|
2007-12-16 14:08:09 +01:00
|
|
|
#include "sys/log.h"
|
2007-11-27 22:42:02 +01:00
|
|
|
#include "lib/error.h"
|
2017-02-15 23:43:28 +01:00
|
|
|
|
|
|
|
#include "lib/config.h"
|
|
|
|
|
|
|
|
struct {
|
|
|
|
uip_ipaddr_t hostaddr;
|
|
|
|
uip_ipaddr_t netmask;
|
|
|
|
uip_ipaddr_t draddr;
|
|
|
|
uip_ipaddr_t resolvaddr;
|
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
uint16_t addr;
|
|
|
|
#ifndef STATIC_DRIVER
|
|
|
|
char name[12+1];
|
|
|
|
#endif /* !STATIC_DRIVER */
|
|
|
|
} ethernet;
|
|
|
|
uint8_t slip[5];
|
|
|
|
};
|
|
|
|
} config;
|
2007-11-27 22:42:02 +01:00
|
|
|
|
2007-12-16 14:08:09 +01:00
|
|
|
/*-----------------------------------------------------------------------------------*/
|
2007-12-20 21:49:59 +01:00
|
|
|
#if LOG_CONF_ENABLED
|
2015-11-01 18:10:17 +01:00
|
|
|
static char *
|
2007-12-16 14:08:09 +01:00
|
|
|
ipaddrtoa(uip_ipaddr_t *ipaddr, char *buffer)
|
|
|
|
{
|
|
|
|
char *ptr = buffer;
|
2012-02-20 19:42:51 +01:00
|
|
|
uint8_t i;
|
2007-12-16 14:08:09 +01:00
|
|
|
|
|
|
|
for(i = 0; i < 4; ++i) {
|
|
|
|
*ptr = '.';
|
|
|
|
utoa(ipaddr->u8[i], ++ptr, 10);
|
|
|
|
ptr += strlen(ptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
return buffer + 1;
|
|
|
|
}
|
2007-12-20 21:49:59 +01:00
|
|
|
#endif /* LOG_CONF_ENABLED */
|
2007-11-27 22:42:02 +01:00
|
|
|
/*-----------------------------------------------------------------------------------*/
|
2017-02-15 23:43:28 +01:00
|
|
|
void
|
2007-11-27 22:42:02 +01:00
|
|
|
config_read(char *filename)
|
|
|
|
{
|
|
|
|
int file;
|
|
|
|
|
2007-12-21 02:04:29 +01:00
|
|
|
file = cfs_open(filename, CFS_READ);
|
2007-11-27 22:42:02 +01:00
|
|
|
if(file < 0) {
|
2007-12-16 14:08:09 +01:00
|
|
|
log_message(filename, ": File not found");
|
2007-11-27 22:42:02 +01:00
|
|
|
error_exit();
|
|
|
|
}
|
|
|
|
|
2017-02-15 23:43:28 +01:00
|
|
|
if(cfs_read(file, &config, sizeof(config)) < sizeof(uip_ipaddr_t) * 4
|
|
|
|
+ sizeof(uint16_t)) {
|
2007-12-16 14:08:09 +01:00
|
|
|
log_message(filename, ": No config file");
|
2007-11-27 22:42:02 +01:00
|
|
|
error_exit();
|
|
|
|
}
|
|
|
|
|
2007-12-21 02:04:29 +01:00
|
|
|
cfs_close(file);
|
2007-11-27 22:42:02 +01:00
|
|
|
|
2017-02-15 23:43:28 +01:00
|
|
|
log_message("IP Address: ", ipaddrtoa(&config.hostaddr, uip_buf));
|
|
|
|
log_message("Subnet Mask: ", ipaddrtoa(&config.netmask, uip_buf));
|
|
|
|
log_message("Def. Router: ", ipaddrtoa(&config.draddr, uip_buf));
|
|
|
|
log_message("DNS Server: ", ipaddrtoa(&config.resolvaddr, uip_buf));
|
2007-11-27 22:42:02 +01:00
|
|
|
|
2017-02-15 23:43:28 +01:00
|
|
|
#ifdef STATIC_DRIVER
|
2010-09-29 23:48:54 +02:00
|
|
|
#define _stringize(arg) #arg
|
|
|
|
#define stringize(arg) _stringize(arg)
|
2017-02-15 23:43:28 +01:00
|
|
|
#if WITH_SLIP
|
|
|
|
log_message("SLIP Driver: ", stringize(STATIC_DRIVER));
|
|
|
|
#else /* WITH_SLIP */
|
|
|
|
log_message("Eth. Driver: ", stringize(STATIC_DRIVER));
|
|
|
|
#endif /* WITH_SLIP */
|
2010-09-29 23:48:54 +02:00
|
|
|
#undef _stringize
|
|
|
|
#undef stringize
|
2017-02-15 23:43:28 +01:00
|
|
|
#else /* STATIC_DRIVER */
|
|
|
|
log_message("Eth. Driver: ", config.ethernet.name);
|
|
|
|
#endif /* STATIC_DRIVER */
|
|
|
|
#if !WITH_SLIP
|
|
|
|
log_message("Driver Port: $", utoa(config.ethernet.addr, uip_buf, 16));
|
|
|
|
#endif /* !WITH_SLIP */
|
2007-11-27 22:42:02 +01:00
|
|
|
|
|
|
|
uip_sethostaddr(&config.hostaddr);
|
|
|
|
uip_setnetmask(&config.netmask);
|
|
|
|
uip_setdraddr(&config.draddr);
|
2007-12-23 13:33:57 +01:00
|
|
|
#if WITH_DNS
|
2014-04-16 15:52:22 +02:00
|
|
|
uip_nameserver_update(&config.resolvaddr, UIP_NAMESERVER_INFINITE_LIFETIME);
|
2007-12-23 13:33:57 +01:00
|
|
|
#endif /* WITH_DNS */
|
2007-11-27 22:42:02 +01:00
|
|
|
}
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|