blob: 1484ba5272bda2ca808763d06f7fa5ada976f528 [file] [log] [blame]
Matt Mower18794c82015-11-11 16:22:45 -06001/* fatlabel.c - User interface
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002
3 Copyright (C) 1993 Werner Almesberger <werner.almesberger@lrc.di.epfl.ch>
4 Copyright (C) 1998 Roman Hodek <Roman.Hodek@informatik.uni-erlangen.de>
5 Copyright (C) 2007 Red Hat, Inc.
Matt Mower18794c82015-11-11 16:22:45 -06006 Copyright (C) 2008-2014 Daniel Baumann <mail@daniel-baumann.ch>
bigbiff bigbiff9c754052013-01-09 09:09:08 -05007
8 This program is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
20
Matt Mower18794c82015-11-11 16:22:45 -060021 The complete text of the GNU General Public License
bigbiff bigbiff9c754052013-01-09 09:09:08 -050022 can be found in /usr/share/common-licenses/GPL-3 file.
23*/
24
25#include "version.h"
26
27#include <stdio.h>
28#include <stdlib.h>
29#include <string.h>
30#include <stdlib.h>
31#include <unistd.h>
32#include <getopt.h>
Matt Mower18794c82015-11-11 16:22:45 -060033#include <ctype.h>
bigbiff bigbiff9c754052013-01-09 09:09:08 -050034
35#include "common.h"
Matt Mower18794c82015-11-11 16:22:45 -060036#include "fsck.fat.h"
bigbiff bigbiff9c754052013-01-09 09:09:08 -050037#include "io.h"
38#include "boot.h"
39#include "fat.h"
40#include "file.h"
41#include "check.h"
42
43int interactive = 0, rw = 0, list = 0, test = 0, verbose = 0, write_immed = 0;
44int atari_format = 0;
45unsigned n_files = 0;
46void *mem_queue = NULL;
47
48static void usage(int error)
49{
50 FILE *f = error ? stderr : stdout;
51 int status = error ? 1 : 0;
52
Matt Mower18794c82015-11-11 16:22:45 -060053 fprintf(f, "usage: fatlabel device [label]\n");
bigbiff bigbiff9c754052013-01-09 09:09:08 -050054 exit(status);
55}
56
57/*
58 * ++roman: On m68k, check if this is an Atari; if yes, turn on Atari variant
59 * of MS-DOS filesystem by default.
60 */
61static void check_atari(void)
62{
63#ifdef __mc68000__
64 FILE *f;
65 char line[128], *p;
66
67 if (!(f = fopen("/proc/hardware", "r"))) {
68 perror("/proc/hardware");
69 return;
70 }
71
72 while (fgets(line, sizeof(line), f)) {
73 if (strncmp(line, "Model:", 6) == 0) {
74 p = line + 6;
75 p += strspn(p, " \t");
76 if (strncmp(p, "Atari ", 6) == 0)
77 atari_format = 1;
78 break;
79 }
80 }
81 fclose(f);
82#endif
83}
84
85int main(int argc, char *argv[])
86{
Matt Mower18794c82015-11-11 16:22:45 -060087 DOS_FS fs = { 0 };
bigbiff bigbiff9c754052013-01-09 09:09:08 -050088 rw = 0;
89
Matt Mower18794c82015-11-11 16:22:45 -060090 int i;
91
bigbiff bigbiff9c754052013-01-09 09:09:08 -050092 char *device = NULL;
Matt Mower18794c82015-11-11 16:22:45 -060093 char label[12] = { 0 };
94
95 loff_t offset;
96 DIR_ENT de;
bigbiff bigbiff9c754052013-01-09 09:09:08 -050097
98 check_atari();
99
100 if (argc < 2 || argc > 3)
101 usage(1);
102
103 if (!strcmp(argv[1], "-h") || !strcmp(argv[1], "--help"))
104 usage(0);
105 else if (!strcmp(argv[1], "-V") || !strcmp(argv[1], "--version")) {
Matt Mower18794c82015-11-11 16:22:45 -0600106 printf("fatlabel " VERSION " (" VERSION_DATE ")\n");
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500107 exit(0);
108 }
109
110 device = argv[1];
111 if (argc == 3) {
Matt Mower18794c82015-11-11 16:22:45 -0600112 strncpy(label, argv[2], 11);
113 if (strlen(argv[2]) > 11) {
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500114 fprintf(stderr,
Matt Mower18794c82015-11-11 16:22:45 -0600115 "fatlabel: labels can be no longer than 11 characters\n");
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500116 exit(1);
117 }
Matt Mower18794c82015-11-11 16:22:45 -0600118 for (i = 0; label[i] && i < 11; i++)
119 /* don't know if here should be more strict !uppercase(label[i]) */
120 if (islower(label[i])) {
121 fprintf(stderr,
122 "fatlabel: warning - lowercase labels might not work properly with DOS or Windows\n");
123 break;
124 }
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500125 rw = 1;
126 }
127
128 fs_open(device, rw);
129 read_boot(&fs);
Matt Mower18794c82015-11-11 16:22:45 -0600130 if (fs.fat_bits == 32)
131 read_fat(&fs);
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500132 if (!rw) {
Matt Mower18794c82015-11-11 16:22:45 -0600133 offset = find_volume_de(&fs, &de);
134 if (offset == 0)
135 fprintf(stdout, "%s\n", fs.label);
136 else
137 fprintf(stdout, "%.8s%.3s\n", de.name, de.ext);
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500138 exit(0);
139 }
140
141 write_label(&fs, label);
142 fs_close(rw);
143 return 0;
144}