blob: 45338ec4de01d4cf8652fea1061ff8fa3b00c60f [file] [log] [blame]
Stefan Reinauer6540ae52007-07-12 16:35:42 +00001/*****************************************************************************\
2 * common.c
Stefan Reinauer6540ae52007-07-12 16:35:42 +00003 *****************************************************************************
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 *
Uwe Hermann6e565942008-03-01 19:06:32 +000010 * This file is part of nvramtool, a utility for reading/writing coreboot
Stefan Reinauerf527e702008-01-18 15:33:49 +000011 * parameters and displaying information from the coreboot table.
Uwe Hermann6e565942008-03-01 19:06:32 +000012 * For details, see http://coreboot.org/nvramtool.
Stefan Reinauer6540ae52007-07-12 16:35:42 +000013 *
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.,
Stefan Reinauerac7a2d22009-09-23 21:53:25 +000028 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
Stefan Reinauer6540ae52007-07-12 16:35:42 +000029\*****************************************************************************/
30
31#include "common.h"
32
33/* basename of this program, as reported by argv[0] */
Uwe Hermann6e565942008-03-01 19:06:32 +000034const char prog_name[] = "nvramtool";
Stefan Reinauer6540ae52007-07-12 16:35:42 +000035
36/* version of this program */
Stefan Reinauera67aab72008-09-27 10:08:28 +000037const char prog_version[] = "2.1";
Stefan Reinauer6540ae52007-07-12 16:35:42 +000038
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 ****************************************************************************/
Stefan Reinauer90b96b62010-01-13 21:00:23 +000045int get_line_from_file(FILE * f, char line[], int line_buf_size)
46{
47 if (fgets(line, line_buf_size, f) == NULL)
48 return LINE_EOF;
Stefan Reinauer6540ae52007-07-12 16:35:42 +000049
Stefan Reinauer90b96b62010-01-13 21:00:23 +000050 /* If the file contains a line that is too long, then it's best
Stefan Reinauer14e22772010-04-27 06:56:47 +000051 * to let the user know right away rather than passing back a
Stefan Reinauer90b96b62010-01-13 21:00:23 +000052 * truncated result that will lead to problems later on.
53 */
54 return (strlen(line) == ((size_t) (line_buf_size - 1))) ?
55 LINE_TOO_LONG : OK;
56}
Stefan Reinauer6540ae52007-07-12 16:35:42 +000057
58/****************************************************************************
59 * out_of_memory
60 *
61 * We ran out of memory. Print an error message and die.
62 ****************************************************************************/
Stefan Reinauer90b96b62010-01-13 21:00:23 +000063void out_of_memory(void)
64{
65 fprintf(stderr, "%s: Out of memory.\n", prog_name);
66 exit(1);
67}
Stefan Reinauer6540ae52007-07-12 16:35:42 +000068
69/****************************************************************************
70 * usage
71 *
72 * Write a usage message to 'outfile'. If 'outfile' is 'stderr' then exit
73 * with a value of 1. Otherwise exit with a value of 0.
74 ****************************************************************************/
Stefan Reinauer90b96b62010-01-13 21:00:23 +000075void usage(FILE * outfile)
76{
77 fprintf(outfile,
78 "Usage: %s [-y LAYOUT_FILE | -t] PARAMETER ...\n\n"
79 " Read/write coreboot parameters or show info from "
80 "coreboot table.\n\n"
81 " -y LAYOUT_FILE: Use CMOS layout specified by "
82 "LAYOUT_FILE.\n"
83 " -t: Use CMOS layout specified by CMOS option "
84 "table.\n"
85 " [-n] -r NAME: Show parameter NAME. If -n is given, "
86 "show value only.\n"
87 " -e NAME: Show all possible values for parameter "
88 "NAME.\n"
89 " -a: Show names and values for all "
90 "parameters.\n"
91 " -w NAME=VALUE: Set parameter NAME to VALUE.\n"
92 " -p INPUT_FILE: Set parameters according to INPUT_FILE.\n"
93 " -i: Same as -p but file contents taken from "
94 "standard input.\n"
95 " -c [VALUE]: Show CMOS checksum or set checksum to "
96 "VALUE.\n"
97 " -l [ARG]: Show coreboot table info for ARG, or "
98 "all ARG choices.\n"
99 " -d: Show low-level dump of coreboot table.\n"
100 " -Y: Show CMOS layout info.\n"
101 " -b OUTPUT_FILE: Dump CMOS memory contents to file.\n"
102 " -B INPUT_FILE: Write file contents to CMOS memory.\n"
103 " -x: Show hex dump of CMOS memory.\n"
104 " -X DUMPFILE: Show hex dump of CMOS dumpfile.\n"
105 " -v: Show version info for this program.\n"
106 " -h: Show this message.\n", prog_name);
107 exit(outfile == stderr);
108}