]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
net: use common rand()/srand() functions
authorMichael Walle <michael@walle.cc>
Tue, 5 Jun 2012 11:33:15 +0000 (11:33 +0000)
committerAlbert ARIBAUD <albert.u.boot@aribaud.net>
Sat, 7 Jul 2012 12:07:32 +0000 (14:07 +0200)
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 <michael@walle.cc>
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
include/common.h
lib/Makefile
net/Makefile
net/link_local.c
net/net_rand.c [deleted file]
net/net_rand.h

index e16c53e538e1b4ed239e1e68ab86cc070943d2de..d1dd65a851ea3f27786da1102a11d94cd66ba7f0 100644 (file)
@@ -761,7 +761,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);
index 0ca45fc1e958c4941f574f7c2c2c2d42695107f1..556601c291e525d8a5e7f5222dc3e2af21902d53 100644 (file)
@@ -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))
 
index 526468718a4ac0399a689a492a825de4c2db6681..e7764ce93279bbd76f149bbe0b4a64c549f2c1b2 100644 (file)
@@ -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
index 336286395be341f86c40bb8caeefc34a78e58e9d..582d0115b7673d7c9fabc11dfdafa20300d80815 100644 (file)
@@ -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 (file)
index 5387aba..0000000
+++ /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, wd@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;
-}
index c98db64280598692ceb6d52726d443cfb717a5c9..ba9d0642cf231ab2ed14c162f2c7fb975f315574 100644 (file)
@@ -9,18 +9,35 @@
 #ifndef __NET_RAND_H__
 #define __NET_RAND_H__
 
-#define RAND_MAX 0xffffffff
+#include <common.h>
 
 /*
- * Seed the random number generator using the eth0 MAC address
+ * Return a seed for the PRNG derived from the eth0 MAC address.
  */
-void srand_mac(void);
+static inline unsigned int seed_mac(void)
+{
+       unsigned char enetaddr[6];
+       unsigned int seed;
+
+       /* get our mac */
+       eth_getenv_enetaddr("ethaddr", enetaddr);
+
+       seed = enetaddr[5];
+       seed ^= enetaddr[4] << 8;
+       seed ^= enetaddr[3] << 16;
+       seed ^= enetaddr[2] << 24;
+       seed ^= enetaddr[1];
+       seed ^= enetaddr[0] << 8;
+
+       return seed;
+}
 
 /*
- * Get a random number (after seeding with MAC address)
- *
- * @return random number
+ * Seed the random number generator using the eth0 MAC address.
  */
-unsigned long rand(void);
+static inline void srand_mac(void)
+{
+       srand(seed_mac());
+}
 
 #endif /* __NET_RAND_H__ */