/*++ Copyright (c) 2014 Minoca Corp. All Rights Reserved Module Name: version.c Abstract: This module implements support for returning the firmware version information. Author: Evan Green 26-Feb-2014 Environment: Boot --*/ // // ------------------------------------------------------------------- Includes // #include "ueficore.h" #include "version.h" // // --------------------------------------------------------------------- Macros // // // ---------------------------------------------------------------- Definitions // // // Define the system version information. // #define PRODUCT_NAME "Minoca UEFI Firmware" #ifndef VERSION_RELEASE #define VERSION_RELEASE SystemReleaseDevelopment #endif #ifdef DEBUG #define VERSION_DEBUG SystemBuildChecked #else #define VERSION_DEBUG SystemBuildFree #endif #ifndef VERSION_MAJOR #define VERSION_MAJOR 0 #define VERSION_MINOR 0 #define VERSION_REVISION 0 #endif #ifndef VERSION_SERIAL #define VERSION_SERIAL 0 #endif #ifndef VERSION_BUILD_TIME #define VERSION_BUILD_TIME 0 #endif #ifndef VERSION_BUILD_STRING #define VERSION_BUILD_STRING "" #endif // // ------------------------------------------------------ Data Type Definitions // // // ----------------------------------------------- Internal Function Prototypes // // // -------------------------------------------------------------------- Globals // UINT16 EfiVersionMajor = VERSION_MAJOR; UINT16 EfiVersionMinor = VERSION_MINOR; UINT16 EfiVersionRevision = VERSION_REVISION; UINT8 EfiVersionRelease = VERSION_RELEASE; UINT32 EfiVersionSerial = VERSION_SERIAL; UINT32 EfiBuildTime = VERSION_BUILD_TIME; CHAR8 *EfiBuildString = VERSION_BUILD_STRING; CHAR8 *EfiProductName = PRODUCT_NAME; CHAR8 *EfiBuildTimeString = VERSION_BUILD_TIME_STRING; // // ------------------------------------------------------------------ Functions // KSTATUS KeGetSystemVersion ( PSYSTEM_VERSION_INFORMATION VersionInformation, PVOID Buffer, PULONG BufferSize ) /*++ Routine Description: This routine gets the system version information. Arguments: VersionInformation - Supplies a pointer where the system version information will be returned. Buffer - Supplies an optional pointer to the buffer to use for the product name and build string. BufferSize - Supplies an optional pointer that on input contains the size of the supplied string buffer in bytes. On output, returns the needed size of the build string buffer in bytes including the null terminator characters. Return Value: STATUS_SUCCESS on success. STATUS_BUFFER_TOO_SMALL if the supplied buffer was not big enough to hold both strings. --*/ { ULONG BuildStringSize; ULONG ProductNameSize; KSTATUS Status; Status = STATUS_SUCCESS; VersionInformation->MajorVersion = EfiVersionMajor; VersionInformation->MinorVersion = EfiVersionMinor; VersionInformation->Revision = EfiVersionRevision; VersionInformation->SerialVersion = EfiVersionSerial; VersionInformation->ReleaseLevel = EfiVersionRelease; VersionInformation->DebugLevel = VERSION_DEBUG; VersionInformation->BuildTime.Seconds = EfiBuildTime; VersionInformation->BuildTime.Nanoseconds = 0; VersionInformation->ProductName = NULL; VersionInformation->BuildString = NULL; BuildStringSize = RtlStringLength(EfiBuildString); if (BuildStringSize != 0) { BuildStringSize += 1; } ProductNameSize = RtlStringLength(EfiProductName) + 1; if ((BufferSize != NULL) && (Buffer != NULL)) { if (*BufferSize < BuildStringSize + ProductNameSize) { Status = STATUS_BUFFER_TOO_SMALL; } else { RtlCopyMemory(Buffer, EfiProductName, ProductNameSize); VersionInformation->ProductName = Buffer; if (BuildStringSize != 0) { VersionInformation->BuildString = Buffer + ProductNameSize; RtlCopyMemory(VersionInformation->BuildString, EfiBuildString, BuildStringSize); } } } if (BufferSize != NULL) { *BufferSize = BuildStringSize + ProductNameSize; } return Status; } // // --------------------------------------------------------- Internal Functions //