Re: [U-Boot] [PATCH v8 2/4] net: use common rand()/srand() functions

2012-07-05 Thread Kim Phillips
On Mon, 4 Jun 2012 15:10:55 -0500
Joe Hershberger joe.hershber...@gmail.com wrote:

 On Fri, Jun 1, 2012 at 3:39 PM, Michael Walle mich...@walle.cc wrote:
  Replace rand() with the functions from lib/. The link-local network code
  stores its own seed, derived from the MAC address. Thus making it
  independent from calls to srand() in other modules.
 
  Signed-off-by: Michael Walle mich...@walle.cc
  Cc: Joe Hershberger joe.hershber...@ni.com
  ---
 
 Acked-by: Joe Hershberger joe.hershber...@ni.com

build-testing mpc83xx on the current u-boot-arm tree
(v1.3.4-10940-gb003588, which contains this patch) produces the
following new warning:

$ ./MAKEALL MPC8313ERDB_66
Configuring for MPC8313ERDB_66 - Board: MPC8313ERDB, Options: SYS_66MHZ
   textdata bss dec hex filename
 271988   13976   41768  327732   50034 ./u-boot
In file included from bootp.c:15:0:
net_rand.h: In function 'srand_mac':
net_rand.h:40:2: warning: implicit declaration of function 'srand' 
[-Wimplicit-function-declaration]

How do we fix this?

Kim

___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH v8 2/4] net: use common rand()/srand() functions

2012-07-05 Thread Michael Walle
Am Donnerstag 05 Juli 2012, 20:18:12 schrieb Kim Phillips:
 On Mon, 4 Jun 2012 15:10:55 -0500
 
 Joe Hershberger joe.hershber...@gmail.com wrote:
  On Fri, Jun 1, 2012 at 3:39 PM, Michael Walle mich...@walle.cc wrote:
   Replace rand() with the functions from lib/. The link-local network
   code stores its own seed, derived from the MAC address. Thus making it
   independent from calls to srand() in other modules.
   
   Signed-off-by: Michael Walle mich...@walle.cc
   Cc: Joe Hershberger joe.hershber...@ni.com
   ---
  
  Acked-by: Joe Hershberger joe.hershber...@ni.com
 
 build-testing mpc83xx on the current u-boot-arm tree
 (v1.3.4-10940-gb003588, which contains this patch) produces the
 following new warning:
 
 $ ./MAKEALL MPC8313ERDB_66
 Configuring for MPC8313ERDB_66 - Board: MPC8313ERDB, Options: SYS_66MHZ
text  data bss dec hex filename
  271988 13976   41768  327732   50034 ./u-boot
 In file included from bootp.c:15:0:
 net_rand.h: In function 'srand_mac':
 net_rand.h:40:2: warning: implicit declaration of function 'srand'
 [-Wimplicit-function-declaration]
 
 How do we fix this?

sth like that for example?

diff --git a/net/bootp.c b/net/bootp.c
index 0f0867b..87e30ab 100644
--- a/net/bootp.c
+++ b/net/bootp.c
@@ -12,12 +12,14 @@
 #include command.h
 #include net.h
 #include bootp.h
-#include net_rand.h
 #include tftp.h
 #include nfs.h
 #ifdef CONFIG_STATUS_LED
 #include status_led.h
 #endif
+#ifdef CONFIG_BOOTP_RANDOM_DELAY
+#include net_rand.h
+#endif
 

-- 
Michael
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH v8 2/4] net: use common rand()/srand() functions

2012-06-04 Thread Joe Hershberger
Hi Michael,

On Fri, Jun 1, 2012 at 3:39 PM, Michael Walle mich...@walle.cc wrote:
 Replace rand() with the functions from lib/. The link-local network code
 stores its own seed, derived from the MAC address. Thus making it
 independent from calls to srand() in other modules.

 Signed-off-by: Michael Walle mich...@walle.cc
 Cc: Joe Hershberger joe.hershber...@ni.com
 ---

Acked-by: Joe Hershberger joe.hershber...@ni.com
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] [PATCH v8 2/4] net: use common rand()/srand() functions

2012-06-01 Thread Michael Walle
Replace rand() with the functions from lib/. The link-local network code
stores its own seed, derived from the MAC address. Thus making it
independent from calls to srand() in other modules.

Signed-off-by: Michael Walle mich...@walle.cc
Cc: Joe Hershberger joe.hershber...@ni.com
---
 include/common.h |4 ++-
 lib/Makefile |4 ++-
 net/Makefile |2 -
 net/link_local.c |7 +++--
 net/net_rand.c   |   68 --
 net/net_rand.h   |   31 +++-
 6 files changed, 34 insertions(+), 82 deletions(-)
 delete mode 100644 net/net_rand.c

diff --git a/include/common.h b/include/common.h
index 6ba27bc..c42f93b 100644
--- a/include/common.h
+++ b/include/common.h
@@ -752,7 +752,9 @@ char *  strmhz(char *buf, unsigned long hz);
 #include u-boot/crc.h
 
 /* lib/rand.c */
-#ifdef CONFIG_RANDOM_MACADDR
+#if defined(CONFIG_RANDOM_MACADDR) || \
+   defined(CONFIG_BOOTP_RANDOM_DELAY) || \
+   defined(CONFIG_CMD_LINK_LOCAL)
 #define RAND_MAX -1U
 void srand(unsigned int seed);
 unsigned int rand(void);
diff --git a/lib/Makefile b/lib/Makefile
index 0ca45fc..556601c 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -67,8 +67,10 @@ COBJS-y += time.o
 COBJS-$(CONFIG_BOOTP_PXE) += uuid.o
 COBJS-y += vsprintf.o
 COBJS-$(CONFIG_RANDOM_MACADDR) += rand.o
+COBJS-$(CONFIG_BOOTP_RANDOM_DELAY) += rand.o
+COBJS-$(CONFIG_CMD_LINK_LOCAL) += rand.o
 
-COBJS  := $(COBJS-y)
+COBJS  := $(sort $(COBJS-y))
 SRCS   := $(COBJS:.o=.c)
 OBJS   := $(addprefix $(obj),$(COBJS))
 
diff --git a/net/Makefile b/net/Makefile
index 5264687..e7764ce 100644
--- a/net/Makefile
+++ b/net/Makefile
@@ -34,8 +34,6 @@ COBJS-$(CONFIG_CMD_DNS)  += dns.o
 COBJS-$(CONFIG_CMD_NET)  += eth.o
 COBJS-$(CONFIG_CMD_LINK_LOCAL) += link_local.o
 COBJS-$(CONFIG_CMD_NET)  += net.o
-COBJS-$(CONFIG_BOOTP_RANDOM_DELAY) += net_rand.o
-COBJS-$(CONFIG_CMD_LINK_LOCAL) += net_rand.o
 COBJS-$(CONFIG_CMD_NFS)  += nfs.o
 COBJS-$(CONFIG_CMD_PING) += ping.o
 COBJS-$(CONFIG_CMD_RARP) += rarp.o
diff --git a/net/link_local.c b/net/link_local.c
index 3362863..582d011 100644
--- a/net/link_local.c
+++ b/net/link_local.c
@@ -56,6 +56,7 @@ static unsigned conflicts;
 static unsigned nprobes;
 static unsigned nclaims;
 static int ready;
+static unsigned int seed;
 
 static void link_local_timeout(void);
 
@@ -68,7 +69,7 @@ static IPaddr_t pick(void)
unsigned tmp;
 
do {
-   tmp = rand()  IN_CLASSB_HOST;
+   tmp = rand_r(seed)  IN_CLASSB_HOST;
} while (tmp  (IN_CLASSB_HOST - 0x0200));
return (IPaddr_t) htonl((LINKLOCAL_ADDR + 0x0100) + tmp);
 }
@@ -78,7 +79,7 @@ static IPaddr_t pick(void)
  */
 static inline unsigned random_delay_ms(unsigned secs)
 {
-   return rand() % (secs * 1000);
+   return rand_r(seed) % (secs * 1000);
 }
 
 static void configure_wait(void)
@@ -109,7 +110,7 @@ void link_local_start(void)
}
NetOurSubnetMask = IN_CLASSB_NET;
 
-   srand_mac();
+   seed = seed_mac();
if (ip == 0)
ip = pick();
 
diff --git a/net/net_rand.c b/net/net_rand.c
deleted file mode 100644
index 5387aba..000
--- a/net/net_rand.c
+++ /dev/null
@@ -1,68 +0,0 @@
-/*
- * Based on LiMon - BOOTP.
- *
- * Copyright 1994, 1995, 2000 Neil Russell.
- * (See License)
- * Copyright 2000 Roland Borde
- * Copyright 2000 Paolo Scaffardi
- * Copyright 2000-2004 Wolfgang Denk, w...@denx.de
- */
-
-#include common.h
-#include net.h
-#include net_rand.h
-
-static ulong seed1, seed2;
-
-void srand_mac(void)
-{
-   ulong tst1, tst2, m_mask;
-   ulong m_value = 0;
-   int reg;
-   unsigned char bi_enetaddr[6];
-
-   /* get our mac */
-   eth_getenv_enetaddr(ethaddr, bi_enetaddr);
-
-   debug(BootpRequest = Our Mac: );
-   for (reg = 0; reg  6; reg++)
-   debug(%x%c, bi_enetaddr[reg], reg == 5 ? '\n' : ':');
-
-   /* Mac-Manipulation 2 get seed1 */
-   tst1 = 0;
-   tst2 = 0;
-   for (reg = 2; reg  6; reg++) {
-   tst1 = tst1  8;
-   tst1 = tst1 | bi_enetaddr[reg];
-   }
-   for (reg = 0; reg  2; reg++) {
-   tst2 = tst2 | bi_enetaddr[reg];
-   tst2 = tst2  8;
-   }
-
-   seed1 = tst1^tst2;
-
-   /* Mirror seed1*/
-   m_mask = 0x1;
-   for (reg = 1; reg = 32; reg++) {
-   m_value |= (m_mask  seed1);
-   seed1 = seed1  1;
-   m_value = m_value  1;
-   }
-   seed1 = m_value;
-   seed2 = 0xb78d0945;
-}
-
-unsigned long rand(void)
-{
-   ulong sum;
-
-   /* Random Number Generator */
-   sum = seed1 + seed2;
-   if (sum  seed1 || sum  seed2)
-   sum++;
-   seed2 = seed1;
-   seed1 = sum;
-
-   return sum;
-}
diff --git a/net/net_rand.h b/net/net_rand.h
index c98db64..ba9d064 100644
--- a/net/net_rand.h
+++ b/net/net_rand.h
@@ -9,18 +9,35 @@
 #ifndef __NET_RAND_H__
 #define