summaryrefslogtreecommitdiffstats
path: root/NetworkPkg/Application
diff options
context:
space:
mode:
authortye1 <tye1@6f19259b-4bc3-4df7-8a09-765794883524>2010-11-18 08:09:09 +0000
committertye1 <tye1@6f19259b-4bc3-4df7-8a09-765794883524>2010-11-18 08:09:09 +0000
commitcda10fe42c95c187902a7d4e980a133e89e59da5 (patch)
tree8e5386dc42977620db2199431404e32c4e20e2c0 /NetworkPkg/Application
parent255a3f33bd8474f8835857a13ed7564cdbe5a39b (diff)
downloadedk2-cda10fe42c95c187902a7d4e980a133e89e59da5.tar.gz
edk2-cda10fe42c95c187902a7d4e980a133e89e59da5.tar.bz2
edk2-cda10fe42c95c187902a7d4e980a133e89e59da5.zip
Fix a potential issue in calling Cpu->GetTimerValue (Cpu, 0, &CurrentTick, (UINT64 *) &TimerPeriod);
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11076 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'NetworkPkg/Application')
-rw-r--r--NetworkPkg/Application/Ping6/Ping6.c22
-rw-r--r--NetworkPkg/Application/Ping6/Ping6.h6
2 files changed, 14 insertions, 14 deletions
diff --git a/NetworkPkg/Application/Ping6/Ping6.c b/NetworkPkg/Application/Ping6/Ping6.c
index b86ee18ae5..345d3b90fd 100644
--- a/NetworkPkg/Application/Ping6/Ping6.c
+++ b/NetworkPkg/Application/Ping6/Ping6.c
@@ -59,7 +59,7 @@ EFI_HII_HANDLE mHiiHandle;
CONST CHAR16 *mIp6DstString;
CONST CHAR16 *mIp6SrcString;
EFI_GUID mEfiPing6Guid = EFI_PING6_GUID;
-UINT32 mFrequency = 0;
+UINT64 mFrequency = 0;
/**
Get and caculate the frequency in tick/ms.
The result is saved in the globle variable mFrequency
@@ -76,7 +76,7 @@ Ping6GetFrequency (
EFI_STATUS Status;
EFI_CPU_ARCH_PROTOCOL *Cpu;
UINT64 CurrentTick;
- UINT32 TimerPeriod;
+ UINT64 TimerPeriod;
Status = gBS->LocateProtocol (&gEfiCpuArchProtocolGuid, NULL, (VOID **) &Cpu);
@@ -84,20 +84,20 @@ Ping6GetFrequency (
return Status;
}
- Status = Cpu->GetTimerValue (Cpu, 0, &CurrentTick, (UINT64 *) &TimerPeriod);
+ Status = Cpu->GetTimerValue (Cpu, 0, &CurrentTick, &TimerPeriod);
if (EFI_ERROR (Status)) {
//
// For NT32 Simulator only. 358049 is a similar value to keep timer granularity.
// Set the timer period by ourselves.
//
- TimerPeriod = NTTIMERPERIOD;
+ TimerPeriod = (UINT64) NTTIMERPERIOD;
}
//
// The timer period is in femtosecond (1 femtosecond is 1e-15 second).
// So 1e+12 is divided by timer period to produce the freq in tick/ms.
//
- mFrequency = (UINT32) DivU64x32 (1000000000000ULL, TimerPeriod);
+ mFrequency = DivU64x64Remainder (1000000000000ULL, TimerPeriod, NULL);
return EFI_SUCCESS;
}
@@ -111,14 +111,14 @@ Ping6GetFrequency (
@return The duration in ms.
**/
-UINT32
+UINT64
Ping6CalculateTick (
IN UINT64 Begin,
IN UINT64 End
)
{
ASSERT (End > Begin);
- return (UINT32) DivU64x32 (End - Begin, mFrequency);
+ return DivU64x64Remainder (End - Begin, mFrequency, NULL);
}
/**
@@ -242,7 +242,7 @@ Ping6OnEchoReplyReceived (
EFI_IP6_RECEIVE_DATA *RxData;
ICMP6_ECHO_REQUEST_REPLY *Reply;
UINT32 PayLoad;
- UINT32 Rtt;
+ UINT64 Rtt;
CHAR8 Near;
Private = (PING6_PRIVATE_DATA *) Context;
@@ -524,7 +524,7 @@ Ping6OnTimerRoutine (
PING6_ICMP6_TX_INFO *TxInfo;
LIST_ENTRY *Entry;
LIST_ENTRY *NextEntry;
- UINT32 Time;
+ UINT64 Time;
Private = (PING6_PRIVATE_DATA *) Context;
@@ -870,7 +870,7 @@ Ping6 (
Private->ImageHandle = ImageHandle;
Private->SendNum = SendNumber;
Private->BufferSize = BufferSize;
- Private->RttMin = 0xFFFF;
+ Private->RttMin = ~((UINT64 )(0x0));
Private->Status = EFI_NOT_READY;
InitializeListHead (&Private->TxList);
@@ -989,7 +989,7 @@ ON_STAT:
mHiiHandle,
Private->RttMin,
Private->RttMax,
- Private->RttSum / Private->RxCount
+ DivU64x64Remainder (Private->RttSum, Private->RxCount, NULL)
);
}
diff --git a/NetworkPkg/Application/Ping6/Ping6.h b/NetworkPkg/Application/Ping6/Ping6.h
index 02271e1b58..914e5e46e1 100644
--- a/NetworkPkg/Application/Ping6/Ping6.h
+++ b/NetworkPkg/Application/Ping6/Ping6.h
@@ -65,9 +65,9 @@ typedef struct _PING6_PRIVATE_DATA {
EFI_IP6_COMPLETION_TOKEN RxToken;
UINT16 RxCount;
UINT16 TxCount;
- UINT32 RttSum;
- UINT32 RttMin;
- UINT32 RttMax;
+ UINT64 RttSum;
+ UINT64 RttMin;
+ UINT64 RttMax;
UINT32 SequenceNum;
EFI_IPv6_ADDRESS SrcAddress;