]> CyberLeo.Net >> Repos - FreeBSD/releng/10.1.git/blob - usr.bin/mkimg/pc98.c
Document r273098, options for displaying mkimg(1) internals
[FreeBSD/releng/10.1.git] / usr.bin / mkimg / pc98.c
1 /*-
2  * Copyright (c) 2014 Juniper Networks, Inc.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  */
26
27 #include <sys/cdefs.h>
28 __FBSDID("$FreeBSD$");
29
30 #include <sys/types.h>
31 #include <sys/diskpc98.h>
32 #include <sys/endian.h>
33 #include <sys/errno.h>
34 #include <stdlib.h>
35 #include <string.h>
36 #include <unistd.h>
37
38 #include "image.h"
39 #include "mkimg.h"
40 #include "scheme.h"
41
42 #ifndef PC98_MAGIC
43 #define PC98_MAGIC              0xaa55
44 #endif
45 #ifndef PC98_MAGICOFS
46 #define PC98_MAGICOFS           510
47 #endif
48 #ifndef PC98_NPARTS
49 #define PC98_NPARTS             16
50 #endif
51 #ifndef PC98_PTYP_386BSD
52 #define PC98_PTYP_386BSD        0xc494
53 #endif
54
55 #define PC98_BOOTCODESZ         8192
56
57 static struct mkimg_alias pc98_aliases[] = {
58     {   ALIAS_FREEBSD, ALIAS_INT2TYPE(PC98_PTYP_386BSD) },
59     {   ALIAS_NONE, 0 }
60 };
61
62 static lba_t
63 pc98_metadata(u_int where, lba_t blk)
64 {
65         if (where == SCHEME_META_IMG_START)
66                 blk += PC98_BOOTCODESZ / secsz;
67         return (round_track(blk));
68 }
69
70 static void
71 pc98_chs(u_short *cyl, u_char *hd, u_char *sec, uint32_t lba __unused)
72 {
73
74         *cyl = 0xffff;          /* XXX */
75         *hd = 0xff;             /* XXX */
76         *sec = 0xff;            /* XXX */
77 }
78
79 static int
80 pc98_write(lba_t imgsz __unused, void *bootcode)
81 {
82         struct part *part;
83         struct pc98_partition *dpbase, *dp;
84         u_char *buf;
85         int error, ptyp;
86
87         buf = malloc(PC98_BOOTCODESZ);
88         if (buf == NULL)
89                 return (ENOMEM);
90         if (bootcode != NULL) {
91                 memcpy(buf, bootcode, PC98_BOOTCODESZ);
92                 memset(buf + secsz, 0, secsz);
93         } else
94                 memset(buf, 0, PC98_BOOTCODESZ);
95         le16enc(buf + PC98_MAGICOFS, PC98_MAGIC);
96         dpbase = (void *)(buf + secsz);
97         STAILQ_FOREACH(part, &partlist, link) {
98                 dp = dpbase + part->index;
99                 ptyp = ALIAS_TYPE2INT(part->type);
100                 dp->dp_mid = ptyp;
101                 dp->dp_sid = ptyp >> 8;
102                 pc98_chs(&dp->dp_scyl, &dp->dp_shd, &dp->dp_ssect,
103                     part->block);
104                 pc98_chs(&dp->dp_scyl, &dp->dp_shd, &dp->dp_ssect,
105                     part->block + part->size - 1);
106                 if (part->label != NULL)
107                         memcpy(dp->dp_name, part->label, strlen(part->label));
108         }
109         error = image_write(0, buf, PC98_BOOTCODESZ / secsz);
110         free(buf);
111         return (error);
112 }
113
114 static struct mkimg_scheme pc98_scheme = {
115         .name = "pc98",
116         .description = "PC-9800 disk partitions",
117         .aliases = pc98_aliases,
118         .metadata = pc98_metadata,
119         .write = pc98_write,
120         .bootcode = PC98_BOOTCODESZ,
121         .labellen = 16,
122         .nparts = PC98_NPARTS,
123         .maxsecsz = 512
124 };
125
126 SCHEME_DEFINE(pc98_scheme);