AMD K8 platforms must use CAR so it makes sense to use the PRINK_IN_CAR
[coreboot.git] / util / nvramtool / common.c
1 /*****************************************************************************\
2  * common.c
3  *****************************************************************************
4  *  Copyright (C) 2002-2005 The Regents of the University of California.
5  *  Produced at the Lawrence Livermore National Laboratory.
6  *  Written by Dave Peterson <dsp@llnl.gov> <dave_peterson@pobox.com>.
7  *  UCRL-CODE-2003-012
8  *  All rights reserved.
9  *
10  *  This file is part of nvramtool, a utility for reading/writing coreboot
11  *  parameters and displaying information from the coreboot table.
12  *  For details, see http://coreboot.org/nvramtool.
13  *
14  *  Please also read the file DISCLAIMER which is included in this software
15  *  distribution.
16  *
17  *  This program is free software; you can redistribute it and/or modify it
18  *  under the terms of the GNU General Public License (as published by the
19  *  Free Software Foundation) version 2, dated June 1991.
20  *
21  *  This program is distributed in the hope that it will be useful, but
22  *  WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
23  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the terms and
24  *  conditions of the GNU General Public License for more details.
25  *
26  *  You should have received a copy of the GNU General Public License along
27  *  with this program; if not, write to the Free Software Foundation, Inc.,
28  *  59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
29 \*****************************************************************************/
30
31 #include "common.h"
32
33 /* basename of this program, as reported by argv[0] */
34 const char prog_name[] = "nvramtool";
35
36 /* version of this program */
37 const char prog_version[] = "2.1";
38
39 /****************************************************************************
40  * get_line_from_file
41  *
42  * Get a line of input from file 'f'.  Store result in 'line' which is an
43  * array of 'line_buf_size' bytes.
44  ****************************************************************************/
45 int get_line_from_file (FILE *f, char line[], int line_buf_size)
46  { if (fgets(line, line_buf_size, f) == NULL)
47       return LINE_EOF;
48
49    /* If the file contains a line that is too long, then it's best to let the
50     * user know right away rather than passing back a truncated result that
51     * will lead to problems later on.
52     */
53    return (strlen(line) == ((size_t) (line_buf_size - 1))) ?
54           LINE_TOO_LONG : OK;
55  }
56
57 /****************************************************************************
58  * out_of_memory
59  *
60  * We ran out of memory.  Print an error message and die.
61  ****************************************************************************/
62 void out_of_memory (void)
63  { fprintf(stderr, "%s: Out of memory.\n", prog_name);
64    exit(1);
65  }
66
67 /****************************************************************************
68  * usage
69  *
70  * Write a usage message to 'outfile'.  If 'outfile' is 'stderr' then exit
71  * with a value of 1.  Otherwise exit with a value of 0.
72  ****************************************************************************/
73 void usage (FILE *outfile)
74  { fprintf(outfile,
75            "Usage: %s [-y LAYOUT_FILE | -t] PARAMETER ...\n\n"
76            "       Read/write coreboot parameters or show info from "
77            "coreboot table.\n\n"
78            "       -y LAYOUT_FILE: Use CMOS layout specified by "
79            "LAYOUT_FILE.\n"
80            "       -t:             Use CMOS layout specified by CMOS option "
81            "table.\n"
82            "       [-n] -r NAME:   Show parameter NAME.  If -n is given, "
83            "show value only.\n"
84            "       -e NAME:        Show all possible values for parameter "
85            "NAME.\n"
86            "       -a:             Show names and values for all "
87            "parameters.\n"
88            "       -w NAME=VALUE:  Set parameter NAME to VALUE.\n"
89            "       -p INPUT_FILE:  Set parameters according to INPUT_FILE.\n"
90            "       -i:             Same as -p but file contents taken from "
91            "standard input.\n"
92            "       -c [VALUE]:     Show CMOS checksum or set checksum to "
93            "VALUE.\n"
94            "       -l [ARG]:       Show coreboot table info for ARG, or "
95            "all ARG choices.\n"
96            "       -d:             Show low-level dump of coreboot table.\n"
97            "       -Y:             Show CMOS layout info.\n"
98            "       -b OUTPUT_FILE: Dump CMOS memory contents to file.\n"
99            "       -B INPUT_FILE:  Write file contents to CMOS memory.\n"
100            "       -x:             Show hex dump of CMOS memory.\n"
101            "       -X DUMPFILE:    Show hex dump of CMOS dumpfile.\n"
102            "       -v:             Show version info for this program.\n"
103            "       -h:             Show this message.\n", prog_name);
104    exit(outfile == stderr);
105  }