]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/sysinstall/installUpgrade.c
Add line edit and history support to ngctl(8) via editline(3).
[FreeBSD/FreeBSD.git] / usr.sbin / sysinstall / installUpgrade.c
1 /*
2  * The new sysinstall program.
3  *
4  * This is probably the last program in the `sysinstall' line - the next
5  * generation being essentially a complete rewrite.
6  *
7  * $FreeBSD$
8  *
9  * Copyright (c) 1995
10  *      Jordan Hubbard.  All rights reserved.
11  *
12  * Redistribution and use in source and binary forms, with or without
13  * modification, are permitted provided that the following conditions
14  * are met:
15  * 1. Redistributions of source code must retain the above copyright
16  *    notice, this list of conditions and the following disclaimer,
17  *    verbatim and that no modifications are made prior to this
18  *    point in the file.
19  * 2. Redistributions in binary form must reproduce the above copyright
20  *    notice, this list of conditions and the following disclaimer in the
21  *    documentation and/or other materials provided with the distribution.
22  *
23  * THIS SOFTWARE IS PROVIDED BY JORDAN HUBBARD ``AS IS'' AND
24  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26  * ARE DISCLAIMED.  IN NO EVENT SHALL JORDAN HUBBARD OR HIS PETS BE LIABLE
27  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29  * OR SERVICES; LOSS OF USE, DATA, LIFE OR PROFITS; OR BUSINESS INTERRUPTION)
30  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33  * SUCH DAMAGE.
34  *
35  */
36
37 #include "sysinstall.h"
38 #include <sys/disklabel.h>
39 #include <sys/errno.h>
40 #include <sys/ioctl.h>
41 #include <sys/fcntl.h>
42 #include <sys/wait.h>
43 #include <sys/param.h>
44 #include <sys/stat.h>
45 #include <unistd.h>
46 #include <sys/mount.h>
47
48 static int installUpgradeNonInteractive(dialogMenuItem *self);
49
50 typedef struct _hitList {
51     enum { JUST_COPY, CALL_HANDLER } action ;
52     char *name;
53     Boolean optional;
54     void (*handler)(struct _hitList *self);
55 } HitList;
56
57 /* These are the only meaningful files I know about */
58 static HitList etc_files [] = {
59    { JUST_COPY,         "Xaccel.ini",           TRUE, NULL },
60    { JUST_COPY,         "X11",                  TRUE, NULL },
61    { JUST_COPY,         "adduser.conf",         TRUE, NULL },
62    { JUST_COPY,         "aliases",              TRUE, NULL },
63    { JUST_COPY,         "aliases.db",           TRUE, NULL },
64    { JUST_COPY,         "amd.map",              TRUE, NULL },
65    { JUST_COPY,         "auth.conf",            TRUE, NULL },
66    { JUST_COPY,         "crontab",              TRUE, NULL },
67    { JUST_COPY,         "csh.cshrc",            TRUE, NULL },
68    { JUST_COPY,         "csh.login",            TRUE, NULL },
69    { JUST_COPY,         "csh.logout",           TRUE, NULL },
70    { JUST_COPY,         "cvsupfile",            TRUE, NULL },
71    { JUST_COPY,         "devfs.conf",           TRUE, NULL },
72    { JUST_COPY,         "dhclient.conf",        TRUE, NULL },
73    { JUST_COPY,         "disktab",              TRUE, NULL },
74    { JUST_COPY,         "dumpdates",            TRUE, NULL },
75    { JUST_COPY,         "exports",              TRUE, NULL },
76    { JUST_COPY,         "fbtab",                TRUE, NULL },
77    { JUST_COPY,         "fstab",                FALSE, NULL },
78    { JUST_COPY,         "ftpusers",             TRUE, NULL },
79    { JUST_COPY,         "gettytab",             TRUE, NULL },
80    { JUST_COPY,         "gnats",                TRUE, NULL },
81    { JUST_COPY,         "group",                FALSE, NULL },
82    { JUST_COPY,         "hosts",                TRUE, NULL },
83    { JUST_COPY,         "hosts.allow",          TRUE, NULL },
84    { JUST_COPY,         "hosts.equiv",          TRUE, NULL },
85    { JUST_COPY,         "hosts.lpd",            TRUE, NULL },
86    { JUST_COPY,         "inetd.conf",           TRUE, NULL },
87    { JUST_COPY,         "localtime",            TRUE, NULL },
88    { JUST_COPY,         "login.access",         TRUE, NULL },
89    { JUST_COPY,         "login.conf",           TRUE, NULL },
90    { JUST_COPY,         "mail",                 TRUE, NULL },
91    { JUST_COPY,         "mail.rc",              TRUE, NULL },
92    { JUST_COPY,         "mac.conf",             TRUE, NULL },
93    { JUST_COPY,         "make.conf",            TRUE, NULL },
94    { JUST_COPY,         "manpath.config",       TRUE, NULL },
95    { JUST_COPY,         "master.passwd",        FALSE, NULL },
96    { JUST_COPY,         "mergemaster.rc",       TRUE, NULL },
97    { JUST_COPY,         "motd",                 TRUE, NULL },
98    { JUST_COPY,         "namedb",               TRUE, NULL },
99    { JUST_COPY,         "networks",             TRUE, NULL },
100    { JUST_COPY,         "newsyslog.conf",       TRUE, NULL },
101    { JUST_COPY,         "nsmb.conf",            TRUE, NULL },
102    { JUST_COPY,         "nsswitch.conf",        TRUE, NULL },
103    { JUST_COPY,         "ntp.conf",             TRUE, NULL },
104    { JUST_COPY,         "pam.conf",             TRUE, NULL },
105    { JUST_COPY,         "passwd",               TRUE, NULL },
106    { JUST_COPY,         "periodic",             TRUE, NULL },
107    { JUST_COPY,         "pf.conf",              TRUE, NULL },
108    { JUST_COPY,         "portsnap.conf",        TRUE, NULL },
109    { JUST_COPY,         "ppp",                  TRUE, NULL },
110    { JUST_COPY,         "printcap",             TRUE, NULL },
111    { JUST_COPY,         "profile",              TRUE, NULL },
112    { JUST_COPY,         "protocols",            TRUE, NULL },
113    { JUST_COPY,         "pwd.db",               TRUE, NULL },
114    { JUST_COPY,         "rc.local",             TRUE, NULL },
115    { JUST_COPY,         "rc.firewall",          TRUE, NULL },
116    { JUST_COPY,         "rc.conf.local",        TRUE, NULL },
117    { JUST_COPY,         "remote",               TRUE, NULL },
118    { JUST_COPY,         "resolv.conf",          TRUE, NULL },
119    { JUST_COPY,         "rmt",                  TRUE, NULL },
120    { JUST_COPY,         "sendmail.cf",          TRUE, NULL },
121    { JUST_COPY,         "sendmail.cw",          TRUE, NULL },
122    { JUST_COPY,         "services",             TRUE, NULL },
123    { JUST_COPY,         "shells",               TRUE, NULL },
124    { JUST_COPY,         "skeykeys",             TRUE, NULL },
125    { JUST_COPY,         "snmpd.config",         TRUE, NULL },
126    { JUST_COPY,         "spwd.db",              TRUE, NULL },
127    { JUST_COPY,         "src.conf",             TRUE, NULL },
128    { JUST_COPY,         "ssh",                  TRUE, NULL },
129    { JUST_COPY,         "sysctl.conf",          TRUE, NULL },
130    { JUST_COPY,         "syslog.conf",          TRUE, NULL },
131    { JUST_COPY,         "ttys",                 TRUE, NULL },
132    { 0,                 NULL,                   FALSE, NULL },
133 };
134
135 static void
136 traverseHitlist(HitList *h)
137 {
138     system("rm -rf /etc/upgrade");
139     Mkdir("/etc/upgrade");
140     while (h->name) {
141         if (!file_readable(h->name)) {
142             if (!h->optional)
143                 msgConfirm("Unable to find an old /etc/%s file!  That is decidedly non-standard and\n"
144                            "your upgraded system may function a little strangely as a result.", h->name);
145         }
146         else {
147             if (h->action == JUST_COPY) {
148                 /* Move the just-loaded copy aside */
149                 vsystem("mv /etc/%s /etc/upgrade/%s", h->name, h->name);
150
151                 /* Copy the old one into its place */
152                 msgNotify("Resurrecting %s..", h->name);
153                 /* Do this with tar so that symlinks and such are preserved */
154                 if (vsystem("tar cf - %s | tar xpf - -C /etc", h->name))
155                     msgConfirm("Unable to resurrect your old /etc/%s!  Hmmmm.", h->name);
156             }
157             else /* call handler */
158                 h->handler(h);
159         }
160         ++h;
161     }
162 }
163
164 int
165 installUpgrade(dialogMenuItem *self)
166 {
167     char saved_etc[FILENAME_MAX];
168     Boolean extractingBin = TRUE;
169
170     if (variable_get(VAR_NONINTERACTIVE))
171         return installUpgradeNonInteractive(self);
172
173     variable_set2(SYSTEM_STATE, "upgrade", 0);
174     dialog_clear();
175
176     if (msgYesNo("Before beginning a binary upgrade, please review the upgrade instructions,\n"
177                  "which are located in the \"Install\" document under the main documentation\n"
178                  "menu.  Given that you have read these instructions and understand the risks\n"
179                  "and precautions involved, are you sure that you want to proceed with\n"
180                  "this upgrade?") != 0)
181         return DITEM_FAILURE;
182
183     if (!Dists) {
184         msgConfirm("First, you must select some distribution components.  The upgrade procedure\n"
185                    "will only upgrade the distributions you select in the next set of menus.");
186         if (!dmenuOpenSimple(&MenuDistributions, FALSE) || !Dists)
187             return DITEM_FAILURE;
188     }
189     else if (!(Dists & DIST_BASE)) {        /* No base selected?  Not much of an upgrade.. */
190         if (msgYesNo("You didn't select the base distribution as one of the distributons to load.\n"
191                      "This one is pretty vital to a successful upgrade.  Are you SURE you don't\n"
192                      "want to select the base distribution?  Chose No to bring up the Distributions\n"
193                      "menu again.") != 0) {
194             if (!dmenuOpenSimple(&MenuDistributions, FALSE))
195                 return DITEM_FAILURE;
196         }
197     }
198
199     /* Still?!  OK!  They must know what they're doing.. */
200     if (!(Dists & DIST_BASE))
201         extractingBin = FALSE;
202
203     if (RunningAsInit) {
204         Device **devs;
205         int i, cnt;
206         char *cp;
207
208         cp = variable_get(VAR_DISK);
209         devs = deviceFind(cp, DEVICE_TYPE_DISK);
210         cnt = deviceCount(devs);
211         if (!cnt) {
212             msgConfirm("No disks found!  Please verify that your disk controller is being\n"
213                        "properly probed at boot time.  See the Hardware Guide on the\n"
214                        "Documentation menu for clues on diagnosing this type of problem.");
215             return DITEM_FAILURE | DITEM_RESTORE;
216         }
217         else {
218             /* Enable all the drives before we start */
219             for (i = 0; i < cnt; i++)
220                 devs[i]->enabled = TRUE;
221         }
222
223         msgConfirm("OK.  First, we're going to go to the disk label editor.  In this editor\n"
224                    "you will be expected to Mount any partitions you're interested in\n"
225                    "upgrading.  DO NOT set the Newfs flag to Y on anything in the label editor\n"
226                    "unless you're absolutely sure you know what you're doing!  In this\n"
227                    "instance, you'll be using the label editor as little more than a fancy\n"
228                    "screen-oriented partition mounting tool.\n\n"
229                    "Once you're done in the label editor, press Q to return here for the next\n"
230                    "step.");
231
232         if (DITEM_STATUS(diskLabelEditor(self)) == DITEM_FAILURE) {
233             msgConfirm("The disk label editor returned an error status.  Upgrade operation\n"
234                        "aborted.");
235             return DITEM_FAILURE | DITEM_RESTORE;
236         }
237
238         /* Don't write out MBR info */
239         variable_set2(DISK_PARTITIONED, "written", 0);
240         if (DITEM_STATUS(diskLabelCommit(self)) == DITEM_FAILURE) {
241             msgConfirm("Not all file systems were properly mounted.  Upgrade operation\n"
242                        "aborted.");
243             variable_unset(DISK_PARTITIONED);
244             return DITEM_FAILURE | DITEM_RESTORE;
245         }
246
247         msgNotify("Updating /stand on root filesystem");
248         (void)vsystem("find -x /stand | cpio %s -pdum /mnt", cpioVerbosity());
249
250         if (DITEM_STATUS(chroot("/mnt")) == DITEM_FAILURE) {
251             msgConfirm("Unable to chroot to /mnt - something is wrong with the\n"
252                        "root partition or the way it's mounted if this doesn't work.");
253             variable_unset(DISK_PARTITIONED);
254             return DITEM_FAILURE | DITEM_RESTORE;
255         }
256         chdir("/");
257         installEnvironment();
258         systemCreateHoloshell();
259     }
260
261     saved_etc[0] = '\0';
262
263     /* Don't allow sources to be upgraded unless if we have src already */
264     if (directory_exists("/usr/src/") && (Dists & DIST_SRC)) {
265         Dists &= ~DIST_SRC;
266         SrcDists = 0;
267         msgConfirm("Warning: /usr/src exists and sources were selected as upgrade\n"
268                    "targets.  Unfortunately, this is not the way to upgrade your\n"
269                    "sources - please use CTM or CVSup or some other method which\n"
270                    "handles ``deletion events'', unlike this particular feature.\n\n"
271                    "Your existing /usr/src will not be affected by this upgrade.\n");
272     }
273
274     if (extractingBin) {
275         while (!*saved_etc) {
276             char *cp = msgGetInput("/var/tmp/etc", "Under which directory do you wish to save your current /etc?");
277
278             if (!cp || !*cp || Mkdir(cp)) {
279                 if (msgYesNo("Directory was not specified, was invalid or user selected Cancel.\n\n"
280                              "Doing an upgrade without first backing up your /etc directory is a very\n"
281                              "bad idea!  Do you want to go back and specify the save directory again?") != 0)
282                     break;
283             }
284             else {
285                 SAFE_STRCPY(saved_etc, cp);
286             }
287         }
288
289         if (saved_etc[0]) {
290             msgNotify("Preserving /etc directory..");
291             if (vsystem("tar -cBpf - -C /etc . | tar --unlink -xBpf - -C %s", saved_etc))
292                 if (msgYesNo("Unable to backup your /etc into %s.\n"
293                              "Do you want to continue anyway?", saved_etc) != 0)
294                     return DITEM_FAILURE;
295             msgNotify("Preserving /root directory..");
296             vsystem("tar -cBpf - -C / root | tar --unlink -xBpf - -C %s", saved_etc);
297         }
298
299         msgNotify("chflags'ing old binaries - please wait.");
300         (void)vsystem("chflags -R noschg /bin /sbin /usr/sbin /usr/bin /usr/lib /usr/libexec /var/empty /boot/kernel*");
301
302         if (directory_exists("/boot/kernel")) {
303             msgNotify("Moving old kernel to /boot/kernel.prev");
304             if (system("mv /boot/kernel /boot/kernel.prev")) {
305                 if (!msgYesNo("Hmmm!  I couldn't move the old kernel over!  Do you want to\n"
306                               "treat this as a big problem and abort the upgrade?  Due to the\n"
307                               "way that this upgrade process works, you will have to reboot\n"
308                               "and start over from the beginning.  Select Yes to reboot now"))
309                     systemShutdown(1);
310             }
311             else 
312                 msgConfirm("NOTICE: Your old kernel is in /boot/kernel.prev should this\n"
313                            "upgrade fail for any reason and you need to boot your old\n"
314                            "kernel.");
315         }
316     }
317
318 media:
319     /* We do this very late, but we unfortunately need to back up /etc first */
320     if (!mediaVerify())
321         return DITEM_FAILURE;
322
323     if (!DEVICE_INIT(mediaDevice)) {
324         if (!msgYesNo("Couldn't initialize the media.  Would you like\n"
325                    "to adjust your media selection and try again?")) {
326             mediaDevice = NULL;
327             goto media;
328         }
329         else
330             return DITEM_FAILURE | DITEM_REDRAW | DITEM_RESTORE;
331     }
332     
333     msgNotify("Beginning extraction of distributions..");
334     if (DITEM_STATUS(distExtractAll(self)) == DITEM_FAILURE) {
335         msgConfirm("Hmmmm.  We couldn't even extract the base distribution.  This upgrade\n"
336                    "should be considered a failure and started from the beginning, sorry!\n"
337                    "The system will reboot now.");
338         dialog_clear();
339         systemShutdown(1);
340     }
341     else if (Dists) {
342         if (!extractingBin || !(Dists & DIST_BASE)) {
343             msgNotify("The extraction process seems to have had some problems, but we got most\n"
344                        "of the essentials.  We'll treat this as a warning since it may have been\n"
345                        "only non-essential distributions which failed to load.");
346         }
347         else {
348             msgConfirm("Hmmmm.  We couldn't even extract the base distribution.  This upgrade\n"
349                        "should be considered a failure and started from the beginning, sorry!\n"
350                        "The system will reboot now.");
351             dialog_clear();
352             systemShutdown(1);
353         }
354     }
355
356     if (extractingBin)
357         vsystem("disklabel -B `awk '$2~/\\/$/ {print substr($1, 6, 3)}' /etc/fstab`");
358     msgNotify("First stage of upgrade completed successfully!\n\n"
359                "Next comes stage 2, where we attempt to resurrect your /etc\n"
360                "directory!");
361
362     if (saved_etc && chdir(saved_etc)) {
363         msgConfirm("Unable to go to your saved /etc directory in %s?!  Argh!\n"
364                    "Something went seriously wrong!  It's quite possible that\n"
365                    "your former /etc is toast.  I hope you didn't have any\n"
366                    "important customizations you wanted to keep in there.. :(", saved_etc);
367     }
368     else {
369         /* Now try to resurrect the /etc files */
370         traverseHitlist(etc_files);
371         /* Resurrect the root dotfiles */
372         vsystem("tar -cBpf - root | tar -xBpf - -C / && rm -rf root");
373     }
374
375     msgConfirm("Upgrade completed!  All of your old /etc files have been restored.\n"
376                "For your reference, the new /etc files are in /etc/upgrade/ in case\n"
377                "you wish to upgrade these files by hand (though that should not be\n"
378                "strictly necessary).  If your root partition is specified in /etc/fstab\n"
379                "using the old \"compatibility\" slice, you may also wish to update it to\n"
380                "use a fully qualified slice name in order to avoid warnings on startup.\n\n"
381                "When you're ready to reboot into the new system, simply exit the installation.");
382     return DITEM_SUCCESS | DITEM_REDRAW | DITEM_RESTORE;
383 }
384
385 static int
386 installUpgradeNonInteractive(dialogMenuItem *self)
387 {
388     char *saved_etc;
389     Boolean extractingBin = TRUE;
390
391     variable_set2(SYSTEM_STATE, "upgrade", 0);
392
393     /* Make sure at least BIN is selected */
394     Dists |= DIST_BASE;
395
396     if (RunningAsInit) {
397         Device **devs;
398         int i, cnt;
399         char *cp;
400
401         cp = variable_get(VAR_DISK);
402         devs = deviceFind(cp, DEVICE_TYPE_DISK);
403         cnt = deviceCount(devs);
404         if (!cnt) {
405             msgConfirm("No disks found!  Please verify that your disk controller is being\n"
406                        "properly probed at boot time.  See the Hardware Guide on the\n"
407                        "Documentation menu for clues on diagnosing this type of problem.");
408             return DITEM_FAILURE;
409         }
410         else {
411             /* Enable all the drives befor we start */
412             for (i = 0; i < cnt; i++)
413                 devs[i]->enabled = TRUE;
414         }
415
416         msgConfirm("OK.  First, we're going to go to the disk label editor.  In this editor\n"
417                    "you will be expected to Mount any partitions you're interested in\n"
418                    "upgrading.  DO NOT set the Newfs flag to Y on anything in the label editor\n"
419                    "unless you're absolutely sure you know what you're doing!  In this\n"
420                    "instance, you'll be using the label editor as little more than a fancy\n"
421                    "screen-oriented partition mounting tool.\n\n"
422                    "Once you're done in the label editor, press Q to return here for the next\n"
423                    "step.");
424
425         if (DITEM_STATUS(diskLabelEditor(self)) == DITEM_FAILURE) {
426             msgConfirm("The disk label editor returned an error status.  Upgrade operation\n"
427                        "aborted.");
428             return DITEM_FAILURE;
429         }
430
431         /* Don't write out MBR info */
432         variable_set2(DISK_PARTITIONED, "written", 0);
433         if (DITEM_STATUS(diskLabelCommit(self)) == DITEM_FAILURE) {
434             msgConfirm("Not all file systems were properly mounted.  Upgrade operation\n"
435                        "aborted.");
436             variable_unset(DISK_PARTITIONED);
437             return DITEM_FAILURE;
438         }
439
440         if (extractingBin) {
441             msgNotify("chflags'ing old binaries - please wait.");
442             (void)vsystem("chflags -R noschg /mnt/");
443         }
444         msgNotify("Updating /stand on root filesystem");
445         (void)vsystem("find -x /stand | cpio %s -pdum /mnt", cpioVerbosity());
446
447         if (DITEM_STATUS(chroot("/mnt")) == DITEM_FAILURE) {
448             msgConfirm("Unable to chroot to /mnt - something is wrong with the\n"
449                        "root partition or the way it's mounted if this doesn't work.");
450             variable_unset(DISK_PARTITIONED);
451             return DITEM_FAILURE;
452         }
453         chdir("/");
454         systemCreateHoloshell();
455     }
456
457     if (!mediaVerify() || !DEVICE_INIT(mediaDevice)) {
458         msgNotify("Upgrade: Couldn't initialize media.");
459         return DITEM_FAILURE;
460     }
461
462     saved_etc = "/var/tmp/etc";
463     Mkdir(saved_etc);
464     msgNotify("Preserving /etc directory..");
465     if (vsystem("tar -cpBf - -C /etc . | tar -xpBf - -C %s", saved_etc)) {
466         msgNotify("Unable to backup your /etc into %s.", saved_etc);
467         return DITEM_FAILURE;
468     }
469
470     if (file_readable("/kernel")) {
471         msgNotify("Moving old kernel to /kernel.prev");
472         if (!system("chflags noschg /kernel && mv /kernel /kernel.prev")) {
473             /* Give us a working kernel in case we crash and reboot */
474             system("cp /kernel.prev /kernel");
475         }
476     }
477
478     msgNotify("Beginning extraction of distributions..");
479     if (DITEM_STATUS(distExtractAll(self)) == DITEM_FAILURE) {
480         msgConfirm("Hmmmm.  We couldn't even extract the base distribution.  This upgrade\n"
481                    "should be considered a failure and started from the beginning, sorry!\n"
482                    "The system will reboot now.");
483         dialog_clear();
484         systemShutdown(1);
485     }
486     else if (Dists) {
487         if (!(Dists & DIST_BASE)) {
488             msgNotify("The extraction process seems to have had some problems, but we got most\n"
489                        "of the essentials.  We'll treat this as a warning since it may have been\n"
490                        "only non-essential distributions which failed to upgrade.");
491         }
492         else {
493             msgConfirm("Hmmmm.  We couldn't even extract the base distribution.  This upgrade\n"
494                        "should be considered a failure and started from the beginning, sorry!\n"
495                        "The system will reboot now.");
496             dialog_clear();
497             systemShutdown(1);
498         }
499     }
500
501     msgNotify("First stage of upgrade completed successfully.");
502     if (vsystem("tar -cpBf - -C %s . | tar --unlink -xpBf - -C /etc", saved_etc)) {
503         msgNotify("Unable to resurrect your old /etc!");
504         return DITEM_FAILURE;
505     }
506     return DITEM_SUCCESS | DITEM_REDRAW;
507 }