/* $OpenBSD: bios.c,v 1.81 2008/06/08 13:55:06 kettenis Exp $ */ /* * Copyright (c) 1997-2001 Michael Shalayeff * 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. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR OR HIS RELATIVES 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 MIND, 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. */ /* #define BIOS_DEBUG */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "apm.h" #include "acpi.h" #include "pcibios.h" #include "pci.h" #include "com.h" #if NCOM > 0 #include #include #include #endif struct bios_softc { struct device sc_dev; }; int biosprobe(struct device *, void *, void *); void biosattach(struct device *, struct device *, void *); int bios_print(void *, const char *); char *fixstring(char *); struct cfattach bios_ca = { sizeof(struct bios_softc), biosprobe, biosattach }; struct cfdriver bios_cd = { NULL, "bios", DV_DULL }; extern dev_t bootdev; #if NAPM > 0 || defined(DEBUG) bios_apminfo_t *apm; #endif #if NPCI > 0 bios_pciinfo_t *bios_pciinfo; #endif bios_diskinfo_t *bios_diskinfo; bios_memmap_t *bios_memmap; u_int32_t bios_cksumlen; struct bios32_entry bios32_entry; struct smbios_entry smbios_entry; #ifdef MULTIPROCESSOR void *bios_smpinfo; #endif bios_bootmac_t *bios_bootmac; void smbios_info(char*); bios_diskinfo_t *bios_getdiskinfo(dev_t); /* * used by hw_sysctl */ extern char *hw_vendor, *hw_prod, *hw_uuid, *hw_serial, *hw_ver; const char *smbios_uninfo[] = { "System", "Not ", "To be", "SYS-" }; int biosprobe(struct device *parent, void *match, void *aux) { struct bios_attach_args *bia = aux; #ifdef BIOS_DEBUG printf("%s%d: boot API ver %x, %x; args %p[%d]\n", bia->bios_dev, bios_cd.cd_ndevs, bootapiver, BOOTARG_APIVER, bootargp, bootargc); #endif /* there could be only one */ if (bios_cd.cd_ndevs || strcmp(bia->ba_name, bios_cd.cd_name)) return 0; if (!(bootapiver & BAPIV_VECTOR) || bootargp == NULL) return 0; return 1; } void biosattach(struct device *parent, struct device *self, void *aux) { struct bios_softc *sc = (struct bios_softc *)self; #if (NPCI > 0 && NPCIBIOS > 0) || NAPM > 0 struct bios_attach_args *bia = aux; #endif struct smbios_struct_bios *sb; struct smbtable bios; volatile u_int8_t *va; char scratch[64], *str; int flags, havesmbios = 0; #if NAPM > 0 || defined(MULTIPROCESSOR) int ncpu = 0; #endif /* remember flags */ flags = sc->sc_dev.dv_cfdata->cf_flags; va = ISA_HOLE_VADDR(0xffff0); switch (va[14]) { default: case 0xff: str = "PC"; break; case 0xfe: str = "PC/XT"; break; case 0xfd: str = "PCjr"; break; case 0xfc: str = "AT/286+"; break; case 0xfb: str = "PC/XT+"; break; case 0xfa: str = "PS/2 25/30"; break; case 0xf9: str = "PC Convertible";break; case 0xf8: str = "PS/2 386+"; break; } printf(": %s BIOS, date %c%c/%c%c/%c%c", str, va[5], va[6], va[8], va[9], va[11], va[12]); /* * Determining whether BIOS32 extensions are available is * done by searching for the BIOS32 service directory. * This 16-byte structure can be found somewhere in the * range 0E0000h - 0FFFFFh and must be 16-byte aligned. * * _______________________________________________________ * | Offset | Bytes | Description | * |-------------------------------------------------------| * | 0 | 4 | ASCII signature string of "_32_". | * | 4 | 4 | 32-bit entry point. | * | 8 | 1 | Revision Level. Typically 00h. | * | 9 | 1 | Header length in 16-byte units. So | * | | | would have the value of 01h. | * | A | 1 | Checksum. The sum of all bytes in | * | | | this header must be zero. | * | B | 5 | Reserved. Set to zero. | * ------------------------------------------------------- * * To find the service directory, we first search for the * signature. If we find a match, we must also verify the * checksum. This service directory may then be used to * determine whether a PCI BIOS is present. * * For more information see the PCI BIOS Specification, * Revision 2.1 (August 26, 1994). */ if (!(flags & BIOSF_BIOS32)) { for (va = ISA_HOLE_VADDR(BIOS32_START); va < (u_int8_t *)ISA_HOLE_VADDR(BIOS32_END); va += 16) { bios32_header_t h = (bios32_header_t)va; u_int8_t cksum; int i; if (h->signature != BIOS32_SIGNATURE) continue; /* verify checksum */ for (cksum = 0, i = h->length * 16; i--; cksum += va[i]) ; if (cksum != 0) continue; if (h->entry <= BIOS32_START || h->entry >= BIOS32_END) continue; bios32_entry.segment = GSEL(GCODE_SEL, SEL_KPL); bios32_entry.offset = (u_int32_t)ISA_HOLE_VADDR(h->entry); printf(", BIOS32 rev. %d @ 0x%lx", h->rev, h->entry); break; } } /* see if we have SMBIOS extensions */ if (!(flags & BIOSF_SMBIOS)) { for (va = ISA_HOLE_VADDR(SMBIOS_START); va < (u_int8_t *)ISA_HOLE_VADDR(SMBIOS_END); va+= 16) { struct smbhdr *sh = (struct smbhdr *)va; u_int8_t chksum; vaddr_t eva; paddr_t pa, end; int i; if (sh->sig != SMBIOS_SIGNATURE) continue; i = sh->len; for (chksum = 0; i--; chksum += va[i]) ; if (chksum != 0) continue; va += 0x10; if (va[0] != '_' && va[1] != 'D' && va[2] != 'M' && va[3] != 'I' && va[4] != '_') continue; for (chksum = 0, i = 0xf; i--; chksum += va[i]); ; if (chksum != 0) continue; pa = trunc_page(sh->addr); end = round_page(sh->addr + sh->size); eva = uvm_km_valloc(kernel_map, end-pa); if (eva == 0) break; smbios_entry.addr = (u_int8_t *)(eva + (sh->addr & PGOFSET)); smbios_entry.len = sh->size; smbios_entry.mjr = sh->majrev; smbios_entry.min = sh->minrev; smbios_entry.count = sh->count; for (; pa < end; pa+= NBPG, eva+= NBPG) pmap_kenter_pa(eva, pa, VM_PROT_READ); havesmbios = 1; printf(", SMBIOS rev. %d.%d @ 0x%lx (%d entries)", sh->majrev, sh->minrev, sh->addr, sh->count); bios.cookie = 0; if (smbios_find_table(SMBIOS_TYPE_BIOS, &bios)) { sb = bios.tblhdr; printf("\n%s:", sc->sc_dev.dv_xname); if ((smbios_get_string(&bios, sb->vendor, scratch, sizeof(scratch))) != NULL) printf(" vendor %s", fixstring(scratch)); if ((smbios_get_string(&bios, sb->version, scratch, sizeof(scratch))) != NULL) printf(" version \"%s\"", fixstring(scratch)); if ((smbios_get_string(&bios, sb->release, scratch, sizeof(scratch))) != NULL) printf(" date %s", fixstring(scratch)); } smbios_info(sc->sc_dev.dv_xname); #ifdef MULTIPROCESSOR /* count cpus so that we can disable apm when cpu > 1 */ bzero(&bios, sizeof(bios)); while (smbios_find_table(SMBIOS_TYPE_PROCESSOR,&bios)) { struct smbios_cpu *cpu = bios.tblhdr; if (cpu->cpu_status & SMBIOS_CPUST_POPULATED) { /* * smbios 2.5 added multi code support */ if (sh->majrev * 100 + sh->minrev >= 250 && cpu->cpu_core_enabled) ncpu += cpu->cpu_core_enabled; else { ncpu++; if (cpu->cpu_id_edx & CPUID_HTT) ncpu++; } } } #endif /* MULTIPROCESSOR */ break; } } printf("\n"); #if NAPM > 0 if (apm && ncpu < 2) { struct bios_attach_args ba; #if defined(DEBUG) || defined(APMDEBUG) printf("apminfo: %x, code %x[%x]/%x[%x], data %x[%x], ept %x\n", apm->apm_detail, apm->apm_code32_base, apm->apm_code_len, apm->apm_code16_base, apm->apm_code16_len, apm->apm_data_base, apm->apm_data_len, apm->apm_entry); #endif ba.ba_name = "apm"; ba.ba_func = 0x15; ba.ba_memt = bia->ba_memt; ba.ba_iot = bia->ba_iot; ba.ba_apmp = apm; config_found(self, &ba, bios_print); } #endif #if NACPI > 0 #if NPCI > 0 if (havesmbios && pci_mode_detect() != 0) #endif { struct bios_attach_args ba; memset(&ba, 0, sizeof(ba)); ba.ba_name = "acpi"; ba.ba_func = 0x00; /* XXX ? */ ba.ba_iot = I386_BUS_SPACE_IO; ba.ba_memt = I386_BUS_SPACE_MEM; if (config_found(self, &ba, bios_print)) flags |= BIOSF_PCIBIOS; } #endif #if NPCI > 0 && NPCIBIOS > 0 if (!(flags & BIOSF_PCIBIOS)) { struct bios_attach_args ba; ba.ba_name = "pcibios"; ba.ba_func = 0x1A; ba.ba_memt = bia->ba_memt; ba.ba_iot = bia->ba_iot; config_found(self, &ba, bios_print); } #endif /* * now that we gave 'em a chance to attach, * scan and map all the proms we can find */ if (!(flags & BIOSF_PROMSCAN)) { volatile u_int8_t *eva; for (str = NULL, va = ISA_HOLE_VADDR(0xc0000), eva = ISA_HOLE_VADDR(0xf0000); va < eva; va += 512) { extern struct extent *iomem_ex; bios_romheader_t romh = (bios_romheader_t)va; u_int32_t off, len; u_int8_t cksum; int i; if (romh->signature != 0xaa55) continue; /* * for this and the next check we probably want * to reserve the page in the extent anyway */ if (!romh->len || romh->len == 0xff) continue; len = romh->len * 512; if (va + len > eva) continue; for (cksum = 0, i = len; i--; cksum += va[i]) ; #ifdef __stinkpad_sucks__ if (cksum != 0) continue; #endif off = 0xc0000 + (va - (u_int8_t *) ISA_HOLE_VADDR(0xc0000)); if (!str) printf("%s: ROM list:", str = sc->sc_dev.dv_xname); printf(" 0x%05x/0x%x%s", off, len, cksum? "!" : ""); if ((i = extent_alloc_region(iomem_ex, (paddr_t)off, len, EX_NOWAIT))) printf(":%d", i); va += len - 512; } } if (str) printf("\n"); } void bios_getopt() { bootarg_t *q; #ifdef BIOS_DEBUG printf("bootargv:"); #endif for(q = bootargp; q->ba_type != BOOTARG_END; q = q->ba_next) { q->ba_next = (bootarg_t *)((caddr_t)q + q->ba_size); switch (q->ba_type) { case BOOTARG_MEMMAP: bios_memmap = (bios_memmap_t *)q->ba_arg; #ifdef BIOS_DEBUG printf(" memmap %p", bios_memmap); #endif break; case BOOTARG_DISKINFO: bios_diskinfo = (bios_diskinfo_t *)q->ba_arg; #ifdef BIOS_DEBUG printf(" diskinfo %p", bios_diskinfo); #endif break; #if NAPM > 0 || defined(DEBUG) case BOOTARG_APMINFO: #ifdef BIOS_DEBUG printf(" apminfo %p", q->ba_arg); #endif apm = (bios_apminfo_t *)q->ba_arg; break; #endif case BOOTARG_CKSUMLEN: bios_cksumlen = *(u_int32_t *)q->ba_arg; #ifdef BIOS_DEBUG printf(" cksumlen %d", bios_cksumlen); #endif break; #if NPCI > 0 case BOOTARG_PCIINFO: bios_pciinfo = (bios_pciinfo_t *)q->ba_arg; #ifdef BIOS_DEBUG printf(" pciinfo %p", bios_pciinfo); #endif break; #endif case BOOTARG_CONSDEV: if (q->ba_size >= sizeof(bios_consdev_t)) { bios_consdev_t *cdp = (bios_consdev_t*)q->ba_arg; #if NCOM > 0 static const int ports[] = { 0x3f8, 0x2f8, 0x3e8, 0x2e8 }; int unit = minor(cdp->consdev); if (major(cdp->consdev) == 8 && unit >= 0 && unit < (sizeof(ports)/sizeof(ports[0]))) { comconsunit = unit; comconsaddr = ports[unit]; comconsrate = cdp->conspeed; /* Probe the serial port this time. */ cninit(); } #endif #ifdef BIOS_DEBUG printf(" console 0x%x:%d", cdp->consdev, cdp->conspeed); #endif cnset(cdp->consdev); } break; #ifdef MULTIPROCESSOR case BOOTARG_SMPINFO: bios_smpinfo = q->ba_arg; printf(" smpinfo %p", bios_smpinfo); break; #endif case BOOTARG_BOOTMAC: bios_bootmac = (bios_bootmac_t *)q->ba_arg; break; default: #ifdef BIOS_DEBUG printf(" unsupported arg (%d) %p", q->ba_type, q->ba_arg); #endif break; } } printf("\n"); } int bios_print(void *aux, const char *pnp) { struct bios_attach_args *ba = aux; if (pnp) printf("%s at %s function 0x%x", ba->ba_name, pnp, ba->ba_func); return (UNCONF); } int bios32_service(u_int32_t service, bios32_entry_t e, bios32_entry_info_t ei) { u_long pa, endpa; vaddr_t va, sva; u_int32_t base, count, off, ent; int slot; if (bios32_entry.offset == 0) return 0; base = 0; __asm __volatile("lcall *(%4)" : "+a" (service), "+b" (base), "=c" (count), "=d" (off) : "D" (&bios32_entry) : "%esi", "cc", "memory"); if (service & 0xff) return 0; /* not found */ ent = base + off; if (ent <= BIOS32_START || ent >= BIOS32_END) return 0; endpa = round_page(BIOS32_END); sva = va = uvm_km_valloc(kernel_map, endpa); if (va == 0) return (0); slot = gdt_get_slot(); setgdt(slot, (caddr_t)va, BIOS32_END, SDT_MEMERA, SEL_KPL, 1, 0); for (pa = trunc_page(BIOS32_START), va += trunc_page(BIOS32_START); pa < endpa; pa += NBPG, va += NBPG) { pmap_enter(pmap_kernel(), va, pa, VM_PROT_READ | VM_PROT_WRITE, VM_PROT_READ | VM_PROT_WRITE | PMAP_WIRED); /* for all you, broken hearted */ if (pa >= trunc_page(base)) { pmap_enter(pmap_kernel(), sva, pa, VM_PROT_READ | VM_PROT_WRITE, VM_PROT_READ | VM_PROT_WRITE | PMAP_WIRED); sva += NBPG; } } e->segment = GSEL(slot, SEL_KPL); e->offset = (vaddr_t)ent; ei->bei_base = base; ei->bei_size = count; ei->bei_entry = ent; return 1; } int biosopen(dev_t dev, int flag, int mode, struct proc *p) { struct bios_softc *sc = bios_cd.cd_devs[0]; if (minor(dev)) return (ENXIO); (void)sc; return 0; } int biosclose(dev_t dev, int flag, int mode, struct proc *p) { struct bios_softc *sc = bios_cd.cd_devs[0]; if (minor(dev)) return (ENXIO); (void)sc; return 0; } int biosioctl(dev_t dev, u_long cmd, caddr_t data, int flag, struct proc *p) { struct bios_softc *sc = bios_cd.cd_devs[0]; if (minor(dev)) return (ENXIO); switch (cmd) { default: return ENXIO; } (void)sc; return 0; } void bioscnprobe(struct consdev *cn) { #if 0 bios_init(I386_BUS_SPACE_MEM); /* XXX */ if (!bios_cd.cd_ndevs) return; if (0 && bios_call(BOOTC_CHECK, NULL)) return; cn->cn_pri = CN_LOWPRI; cn->cn_dev = makedev(48, 0); #endif } void bioscninit(struct consdev *cn) { } void bioscnputc(dev_t dev, int ch) { } int bioscngetc(dev_t dev) { return -1; } void bioscnpollc(dev_t dev, int on) { } int bios_sysctl(int *name, u_int namelen, void *oldp, size_t *oldlenp, void *newp, size_t newlen, struct proc *p) { bios_diskinfo_t *pdi; int biosdev; /* all sysctl names at this level except diskinfo are terminal */ if (namelen != 1 && name[0] != BIOS_DISKINFO) return (ENOTDIR); /* overloaded */ if (!(bootapiver & BAPIV_VECTOR)) return EOPNOTSUPP; switch (name[0]) { case BIOS_DEV: if ((pdi = bios_getdiskinfo(bootdev)) == NULL) return ENXIO; biosdev = pdi->bios_number; return sysctl_rdint(oldp, oldlenp, newp, biosdev); case BIOS_DISKINFO: if (namelen != 2) return ENOTDIR; if ((pdi = bios_getdiskinfo(name[1])) == NULL) return ENXIO; return sysctl_rdstruct(oldp, oldlenp, newp, pdi, sizeof(*pdi)); case BIOS_CKSUMLEN: return sysctl_rdint(oldp, oldlenp, newp, bios_cksumlen); default: return EOPNOTSUPP; } /* NOTREACHED */ } bios_diskinfo_t * bios_getdiskinfo(dev_t dev) { bios_diskinfo_t *pdi; if (bios_diskinfo == NULL) return NULL; for (pdi = bios_diskinfo; pdi->bios_number != -1; pdi++) { if ((dev & B_MAGICMASK) == B_DEVMAGIC) { /* search by bootdev */ if (pdi->bsd_dev == dev) break; } else { if (pdi->bios_number == dev) break; } } if (pdi->bios_number == -1) return NULL; else return pdi; } /* * smbios_find_table() takes a caller supplied smbios struct type and * a pointer to a handle (struct smbtable) returning one if the structure * is successfully located and zero otherwise. Callers should take care * to initialize the cookie field of the smbtable structure to zero before * the first invocation of this function. * Multiple tables of the same type can be located by repeatedly calling * smbios_find_table with the same arguments. */ int smbios_find_table(u_int8_t type, struct smbtable *st) { u_int8_t *va, *end; struct smbtblhdr *hdr; int ret = 0, tcount = 1; va = smbios_entry.addr; end = va + smbios_entry.len; /* * The cookie field of the smtable structure is used to locate * multiple instances of a table of an arbitrary type. Following the * successful location of a table, the type is encoded as bits 0:7 of * the cookie value, the offset in terms of the number of structures * preceding that referenced by the handle is encoded in bits 15:31. */ if ((st->cookie & 0xfff) == type && st->cookie >> 16) { if ((u_int8_t *)st->hdr >= va && (u_int8_t *)st->hdr < end) { hdr = st->hdr; if (hdr->type == type) { va = (u_int8_t *)hdr + hdr->size; for (; va + 1 < end; va++) if (*va == NULL && *(va + 1) == NULL) break; va+= 2; tcount = st->cookie >> 16; } } } for (; va + sizeof(struct smbtblhdr) < end && tcount <= smbios_entry.count; tcount++) { hdr = (struct smbtblhdr *)va; if (hdr->type == type) { ret = 1; st->hdr = hdr; st->tblhdr = va + sizeof(struct smbtblhdr); st->cookie = (tcount + 1) << 16 | type; break; } if (hdr->type == SMBIOS_TYPE_EOT) break; va+= hdr->size; for (; va + 1 < end; va++) if (*va == NULL && *(va + 1) == NULL) break; va+=2; } return ret; } char * smbios_get_string(struct smbtable *st, u_int8_t indx, char *dest, size_t len) { u_int8_t *va, *end; char *ret = NULL; int i; va = (u_int8_t *)st->hdr + st->hdr->size; end = smbios_entry.addr + smbios_entry.len; for (i = 1; va < end && i < indx && *va; i++) while (*va++) ; if (i == indx) { if (va + len < end) { ret = dest; bcopy(va, ret, len); ret[len - 1] = '\0'; } } return ret; } char * fixstring(char *s) { char *p, *e; int i; for (i= 0; i < sizeof(smbios_uninfo)/sizeof(smbios_uninfo[0]); i++) if ((strncasecmp(s, smbios_uninfo[i], strlen(smbios_uninfo[i])))==0) return NULL; /* * Remove leading and trailing whitespace */ for (p = s; *p == ' '; p++) ; /* * Special case entire string is whitespace */ if (p == s + strlen(s)) return NULL; for (e = s + strlen(s) - 1; e > s && *e == ' '; e--) ; if (p > s || e < s + strlen(s) - 1) { bcopy(p, s, e-p + 1); s[e - p + 1] = '\0'; } return s; } void smbios_info(char * str) { char *sminfop, sminfo[64]; struct smbtable stbl, btbl; struct smbios_sys *sys; struct smbios_board *board; int i, infolen, uuidf, havebb; char *p; if (smbios_entry.mjr < 2) return; /* * According to the spec the system table among others is required, * if it is not we do not bother with this smbios implementation. */ stbl.cookie = btbl.cookie = 0; if (!smbios_find_table(SMBIOS_TYPE_SYSTEM, &stbl)) return; havebb = smbios_find_table(SMBIOS_TYPE_BASEBOARD, &btbl); sys = (struct smbios_sys *)stbl.tblhdr; if (havebb) board = (struct smbios_board *)btbl.tblhdr; /* * Some smbios implementations have no system vendor or product strings, * some have very uninformative data which is harder to work around * and we must rely upon various heuristics to detect this. In both * cases we attempt to fall back on the base board information in the * perhaps naive belief that motherboard vendors will supply this * information. */ sminfop = NULL; if ((p = smbios_get_string(&stbl, sys->vendor, sminfo, sizeof(sminfo))) != NULL) sminfop = fixstring(p); if (sminfop == NULL) { if (havebb) { if ((p = smbios_get_string(&btbl, board->vendor, sminfo, sizeof(sminfo))) != NULL) sminfop = fixstring(p); } } if (sminfop) { infolen = strlen(sminfop) + 1; hw_vendor = malloc(infolen, M_DEVBUF, M_NOWAIT); if (hw_vendor) strlcpy(hw_vendor, sminfop, infolen); sminfop = NULL; } if ((p = smbios_get_string(&stbl, sys->product, sminfo, sizeof(sminfo))) != NULL) sminfop = fixstring(p); if (sminfop == NULL) { if (havebb) { if ((p = smbios_get_string(&btbl, board->product, sminfo, sizeof(sminfo))) != NULL) sminfop = fixstring(p); } } if (sminfop) { infolen = strlen(sminfop) + 1; hw_prod = malloc(infolen, M_DEVBUF, M_NOWAIT); if (hw_prod) strlcpy(hw_prod, sminfop, infolen); sminfop = NULL; } if (hw_vendor != NULL && hw_prod != NULL) printf("\n%s: %s %s", str, hw_vendor, hw_prod); if ((p = smbios_get_string(&stbl, sys->version, sminfo, sizeof(sminfo))) != NULL) sminfop = fixstring(p); if (sminfop) { infolen = strlen(sminfop) + 1; hw_ver = malloc(infolen, M_DEVBUF, M_NOWAIT); if (hw_ver) strlcpy(hw_ver, sminfop, infolen); sminfop = NULL; } if ((p = smbios_get_string(&stbl, sys->serial, sminfo, sizeof(sminfo))) != NULL) sminfop = fixstring(p); if (sminfop) { infolen = strlen(sminfop) + 1; hw_serial = malloc(infolen, M_DEVBUF, M_NOWAIT); if (hw_serial) strlcpy(hw_serial, sminfop, infolen); } if (smbios_entry.mjr > 2 || (smbios_entry.mjr == 2 && smbios_entry.min >= 1)) { /* * If the uuid value is all 0xff the uuid is present but not * set, if its all 0 then the uuid isn't present at all. */ uuidf |= SMBIOS_UUID_NPRESENT|SMBIOS_UUID_NSET; for (i = 0; i < sizeof(sys->uuid); i++) { if (sys->uuid[i] != 0xff) uuidf &= ~SMBIOS_UUID_NSET; if (sys->uuid[i] != 0) uuidf &= ~SMBIOS_UUID_NPRESENT; } if (uuidf & SMBIOS_UUID_NPRESENT) hw_uuid = NULL; else if (uuidf & SMBIOS_UUID_NSET) hw_uuid = "Not Set"; else { hw_uuid = malloc(SMBIOS_UUID_REPLEN, M_DEVBUF, M_NOWAIT); if (hw_uuid) { snprintf(hw_uuid, SMBIOS_UUID_REPLEN, SMBIOS_UUID_REP, sys->uuid[0], sys->uuid[1], sys->uuid[2], sys->uuid[3], sys->uuid[4], sys->uuid[5], sys->uuid[6], sys->uuid[7], sys->uuid[8], sys->uuid[9], sys->uuid[10], sys->uuid[11], sys->uuid[12], sys->uuid[13], sys->uuid[14], sys->uuid[15]); } } } }