This repository has been archived by the owner on Oct 19, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
uninst2.cxx
726 lines (582 loc) · 17.1 KB
/
uninst2.cxx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
//
// ESP Software Removal Wizard main entry for the ESP Package Manager (EPM).
//
// Copyright 1999-2017 by Michael R Sweet
// Copyright 1999-2010 by Easy Software Products.
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2, or (at your option)
// any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
#define _DEFINE_GLOBALS_
#include "uninst.h"
#include <FL/x.H>
#include <FL/filename.H>
#include <FL/fl_ask.H>
#include <FL/Fl_XPM_Image.H>
#include <FL/Fl_JPEG_Image.H>
#include <FL/Fl_PNG_Image.H>
#include <FL/Fl_GIF_Image.H>
#include <errno.h>
#include <ctype.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/stat.h>
#ifdef HAVE_SYS_PARAM_H
# include <sys/param.h>
#endif // HAVE_SYS_PARAM_H
#ifdef HAVE_SYS_MOUNT_H
# include <sys/mount.h>
#endif // HAVE_SYS_MOUNT_H
#ifdef HAVE_SYS_STATFS_H
# include <sys/statfs.h>
#endif // HAVE_SYS_STATFS_H
#ifdef HAVE_SYS_VFS_H
# include <sys/vfs.h>
#endif // HAVE_SYS_VFS_H
#ifdef __osf__
// No prototype for statfs under Tru64...
extern "C" {
extern int statfs(const char *, struct statfs *);
}
#endif // __osf__
#ifdef __APPLE__
# include <CoreFoundation/CoreFoundation.h>
# include <Security/Authorization.h>
# include <Security/AuthorizationTags.h>
AuthorizationRef SetupAuthorizationRef;
#endif // __APPLE__
//
// Panes...
//
#define PANE_WELCOME 0
#define PANE_SELECT 1
#define PANE_CONFIRM 2
#define PANE_REMOVE 3
//
// Local functions...
//
void load_image(void);
void load_readme(void);
void log_cb(int fd, int *fdptr);
int remove_dist(const gui_dist_t *dist);
void show_installed(void);
void update_sizes(void);
//
// 'main()' - Main entry for software wizard...
//
int // O - Exit status
main(int argc, // I - Number of command-line arguments
char *argv[]) // I - Command-line arguments
{
Fl_Window *w; // Main window...
// Use GTK+ scheme for all operating systems...
Fl::background(230, 230, 230);
Fl::scheme("gtk+");
#ifdef __APPLE__
// macOS uses the setup program in a bundle, so get the bundle's directory.
CFBundleRef mainBundle = CFBundleGetMainBundle();
char mainPath[1024] = "";
if (mainBundle)
{
CFURLRef mainURL = CFBundleCopyBundleURL(mainBundle);
CFStringRef mainCFPath = CFURLCopyFileSystemPath(mainURL, kCFURLPOSIXPathStyle);
if (CFStringGetCString(mainCFPath, mainPath, sizeof(mainPath), kCFStringEncodingUTF8))
{
strlcat(mainPath, "/Contents/Resources", sizeof(mainPath));
fprintf(stderr, "Using \"%s\" as the distribution directory.\n", mainPath);
chdir(mainPath);
}
CFRelease(mainCFPath);
CFRelease(mainURL);
}
#endif // __APPLE__
w = make_window();
Pane[PANE_WELCOME]->show();
PrevButton->deactivate();
NextButton->deactivate();
gui_get_installed();
show_installed();
load_image();
load_readme();
w->show();
while (!w->visible())
Fl::wait();
#ifdef __APPLE__
OSStatus status;
status = AuthorizationCreate(NULL, kAuthorizationEmptyEnvironment,
kAuthorizationFlagDefaults,
&SetupAuthorizationRef);
if (status != errAuthorizationSuccess)
{
fl_alert("You must have administrative priviledges to remove this software!");
return (1);
}
AuthorizationItem items = { kAuthorizationRightExecute, 0, NULL, 0 };
AuthorizationRights rights = { 1, &items };
status = AuthorizationCopyRights(SetupAuthorizationRef, &rights, NULL,
kAuthorizationFlagDefaults |
kAuthorizationFlagInteractionAllowed |
kAuthorizationFlagPreAuthorize |
kAuthorizationFlagExtendRights, NULL);
if (status != errAuthorizationSuccess)
{
fl_alert("You must have administrative priviledges to remove this software!");
return (1);
}
#else
if (getuid() != 0)
{
fl_alert("You must be logged in as root to run uninstall!");
return (1);
}
#endif // __APPLE__
NextButton->activate();
Fl::run();
#ifdef __APPLE__
AuthorizationFree(SetupAuthorizationRef, kAuthorizationFlagDefaults);
#endif // __APPLE__
return (0);
}
//
// 'list_cb()' - Handle selections in the software list.
//
void
list_cb(Fl_Check_Browser *, void *)
{
int i, j, k;
gui_dist_t *dist,
*dist2;
gui_depend_t *depend;
if (SoftwareList->nchecked() == 0)
{
update_sizes();
NextButton->deactivate();
return;
}
for (i = 0, dist = Installed; i < NumInstalled; i ++, dist ++)
if (SoftwareList->checked(i + 1))
{
// Check for required/incompatible products...
for (j = 0, depend = dist->depends; j < dist->num_depends; j ++, depend ++)
switch (depend->type)
{
case DEPEND_REQUIRES :
if ((dist2 = gui_find_dist(depend->product, NumInstalled,
Installed)) != NULL)
{
// Software is in the list, is it selected?
k = dist2 - Installed;
if (SoftwareList->checked(k + 1))
continue;
// Nope, select it unless we're unchecked another selection...
if (SoftwareList->value() != (k + 1))
SoftwareList->checked(k + 1, 1);
else
{
SoftwareList->checked(i + 1, 0);
break;
}
}
else if ((dist2 = gui_find_dist(depend->product, NumInstalled,
Installed)) == NULL)
{
// Required but not installed or available!
fl_alert("%s requires %s to be installed, but it is not available "
"for installation.", dist->name, depend->product);
SoftwareList->checked(i + 1, 0);
break;
}
break;
case DEPEND_INCOMPAT :
if ((dist2 = gui_find_dist(depend->product, NumInstalled,
Installed)) != NULL)
{
// Already installed!
fl_alert("%s is incompatible with %s. Please remove it before "
"installing this software.", dist->name, dist2->name);
SoftwareList->checked(i + 1, 0);
break;
}
else if ((dist2 = gui_find_dist(depend->product, NumInstalled,
Installed)) != NULL)
{
// Software is in the list, is it selected?
k = dist2 - Installed;
// Software is in the list, is it selected?
if (!SoftwareList->checked(k + 1))
continue;
// Yes, tell the user...
fl_alert("%s is incompatible with %s. Please deselect it before "
"installing this software.", dist->name, dist2->name);
SoftwareList->checked(i + 1, 0);
break;
}
default :
break;
}
}
update_sizes();
if (SoftwareList->nchecked())
NextButton->activate();
else
NextButton->deactivate();
}
//
// 'load_image()' - Load the setup image file (setup.gif/xpm)...
//
void
load_image(void)
{
Fl_Image *img; // New image
if (!access("setup.xpm", 0))
img = new Fl_XPM_Image("setup.xpm");
else if (!access("setup.gif", 0))
img = new Fl_GIF_Image("setup.gif");
else if (!access("setup.jpg", 0))
img = new Fl_JPEG_Image("setup.jpg");
else if (!access("setup.png", 0))
img = new Fl_PNG_Image("setup.png");
else
img = NULL;
if (img)
WelcomeImage->image(img);
}
//
// 'load_readme()' - Load the readme file...
//
void
load_readme(void)
{
ReadmeFile->textfont(FL_HELVETICA);
ReadmeFile->textsize(14);
if (access("uninst.readme", 0))
{
int i; // Looping var
gui_dist_t *dist; // Current distribution
char *buffer, // Text buffer
*ptr; // Pointer into buffer
buffer = new char[1024 + NumInstalled * 400];
strcpy(buffer, "This program allows you to remove the following "
"software:</p>\n"
"<ul>\n");
ptr = buffer + strlen(buffer);
for (i = NumInstalled, dist = Installed; i > 0; i --, dist ++)
{
sprintf(ptr, "<li>%s, %s\n", dist->name, dist->version);
ptr += strlen(ptr);
}
strcpy(ptr, "</ul>");
ReadmeFile->value(buffer);
delete[] buffer;
}
else
gui_load_file(ReadmeFile, "uninst.readme");
}
//
// 'log_cb()' - Add one or more lines of text to the removal log.
//
void
log_cb(int fd, // I - Pipe to read from
int *fdptr) // O - Pipe to read from
{
int bytes; // Bytes read/to read
char *bufptr; // Pointer into buffer
static int bufused = 0; // Number of bytes used
static char buffer[8193]; // Buffer
bytes = 8192 - bufused;
if ((bytes = read(fd, buffer + bufused, bytes)) <= 0)
{
// End of file; zero the FD to tell the remove_dist() function to
// stop...
Fl::remove_fd(fd);
close(fd);
*fdptr = 0;
if (bufused > 0)
{
// Add remaining text...
buffer[bufused] = '\0';
RemoveLog->add(buffer);
bufused = 0;
}
}
else
{
// Add bytes to the buffer, then add lines as needed...
bufused += bytes;
buffer[bufused] = '\0';
while ((bufptr = strchr(buffer, '\n')) != NULL)
{
*bufptr++ = '\0';
RemoveLog->add(buffer);
strcpy(buffer, bufptr);
bufused -= bufptr - buffer;
}
}
RemoveLog->bottomline(RemoveLog->size());
}
//
// 'next_cb()' - Show software selections or remove software.
//
void
next_cb(Fl_Button *, void *)
{
int i; // Looping var
int progress; // Progress so far...
int error; // Errors?
static char message[1024]; // Progress message...
static int removing = 0; // Removing software?
Wizard->next();
PrevButton->deactivate();
if (Wizard->value() == Pane[PANE_CONFIRM])
{
ConfirmList->clear();
PrevButton->activate();
for (i = 0; i < NumInstalled; i ++)
if (SoftwareList->checked(i + 1))
ConfirmList->add(SoftwareList->text(i + 1));
}
if (Wizard->value() == Pane[PANE_REMOVE] && !removing)
{
removing = 1;
NextButton->deactivate();
CancelButton->deactivate();
CancelButton->label("Close");
for (i = 0, progress = 0, error = 0; i < NumInstalled; i ++)
if (SoftwareList->checked(i + 1))
{
sprintf(message, "Removing %s v%s...", Installed[i].name,
Installed[i].version);
RemovePercent->value(100.0 * progress / SoftwareList->nchecked());
RemovePercent->label(message);
Pane[PANE_REMOVE]->redraw();
if ((error = remove_dist(Installed + i)) != 0)
break;
progress ++;
}
RemovePercent->value(100.0);
if (error)
RemovePercent->label("Removal Failed!");
else
RemovePercent->label("Removal Complete");
Pane[PANE_REMOVE]->redraw();
CancelButton->activate();
fl_beep();
removing = 0;
}
else if (Wizard->value() == Pane[PANE_SELECT] &&
SoftwareList->nchecked() == 0)
NextButton->deactivate();
}
//
// 'remove_dist()' - Remove a distribution...
//
int // O - Remove status
remove_dist(const gui_dist_t *dist) // I - Distribution to remove
{
char command[1024]; // Command string
int fds[2]; // Pipe FDs
int status = 0; // Exit status
#ifndef __APPLE__
int pid; // Process ID
#endif // !__APPLE__
snprintf(command, sizeof(command), "**** %s ****", dist->name);
RemoveLog->add(command);
if (dist->type == PACKAGE_PORTABLE)
snprintf(command, sizeof(command), EPM_SOFTWARE "/%s.remove",
dist->product);
#ifdef __APPLE__
// Run the remove script using Apple's authorization API...
FILE *fp = NULL;
char *args[2] = { (char *)"now", NULL };
OSStatus astatus;
astatus = AuthorizationExecuteWithPrivileges(SetupAuthorizationRef, command, kAuthorizationFlagDefaults,
args, &fp);
if (astatus != errAuthorizationSuccess)
{
RemoveLog->add("Failed to execute remove script!");
return (1);
}
fds[0] = fileno(fp);
#else
// Fork the command and redirect errors and info to stdout...
pipe(fds);
if ((pid = fork()) == 0)
{
// Child comes here; start by redirecting stdout and stderr...
close(1);
close(2);
dup(fds[1]);
dup(fds[1]);
// Close the original pipes...
close(fds[0]);
close(fds[1]);
// Execute the command; if an error occurs, return it...
if (dist->type == PACKAGE_PORTABLE)
execl(command, command, "now", (char *)0);
else
execlp("rpm", "rpm", "-e", "--nodeps", dist->product, (char *)0);
exit(errno);
}
else if (pid < 0)
{
// Unable to fork!
sprintf(command, "Unable to remove %s:", dist->name);
RemoveLog->add(command);
sprintf(command, "\t%s", strerror(errno));
RemoveLog->add(command);
close(fds[0]);
close(fds[1]);
return (1);
}
// Close the output pipe (used by the child)...
close(fds[1]);
#endif // __APPLE__
// Listen for data on the input pipe...
Fl::add_fd(fds[0], (void (*)(int, void *))log_cb, fds);
// Show the user that we're busy...
UninstallWindow->cursor(FL_CURSOR_WAIT);
// Loop until the child is done...
while (fds[0]) // log_cb() will close and zero fds[0]...
{
// Wait for events...
Fl::wait();
#ifndef __APPLE__
// Check to see if the child went away...
if (waitpid(0, &status, WNOHANG) == pid)
break;
#endif // !__APPLE__
}
#ifdef __APPLE__
fclose(fp);
#endif // __APPLE__
if (fds[0])
{
// Close the pipe - have all the data from the child...
Fl::remove_fd(fds[0]);
close(fds[0]);
}
else
{
// Get the child's exit status...
wait(&status);
}
// Show the user that we're ready...
UninstallWindow->cursor(FL_CURSOR_DEFAULT);
// Return...
return (status);
}
//
// 'show_installed()' - Show the installed software products.
//
void
show_installed()
{
int i; // Looping var
gui_dist_t *temp; // Pointer to current distribution
char line[1024]; // Product name and version...
if (NumInstalled == 0)
{
fl_alert("No software found to remove!");
exit(1);
}
for (i = 0, temp = Installed; i < NumInstalled; i ++, temp ++)
{
sprintf(line, "%s v%s", temp->name, temp->version);
SoftwareList->add(line, 0);
}
update_sizes();
}
//
// 'update_size()' - Update the total +/- sizes of the installations.
//
void
update_sizes(void)
{
int i; // Looping var
gui_dist_t *dist, // Distribution
*installed; // Installed distribution
int rootsize, // Total root size difference in kbytes
usrsize; // Total /usr size difference in kbytes
struct statfs rootpart, // Available root partition
usrpart; // Available /usr partition
int rootfree, // Free space on root partition
usrfree; // Free space on /usr partition
static char sizelabel[1024];// Label for selected sizes...
// Get the sizes for the selected products...
for (i = 0, dist = Installed, rootsize = 0, usrsize = 0;
i < NumInstalled;
i ++, dist ++)
if (SoftwareList->checked(i + 1))
{
rootsize += dist->rootsize;
usrsize += dist->usrsize;
if ((installed = gui_find_dist(dist->product, NumInstalled,
Installed)) != NULL)
{
rootsize -= installed->rootsize;
usrsize -= installed->usrsize;
}
}
// Get the sizes of the root and /usr partition...
#if defined(__sgi) || defined(__svr4__) || defined(__SVR4) || defined(M_XENIX)
if (statfs("/", &rootpart, sizeof(rootpart), 0))
#else
if (statfs("/", &rootpart))
#endif // __sgi || __svr4__ || __SVR4 || M_XENIX
rootfree = 1024;
else
rootfree = (int)((double)rootpart.f_bfree * (double)rootpart.f_bsize /
1024.0 / 1024.0 + 0.5);
#if defined(__sgi) || defined(__svr4__) || defined(__SVR4) || defined(M_XENIX)
if (statfs("/usr", &usrpart, sizeof(usrpart), 0))
#else
if (statfs("/usr", &usrpart))
#endif // __sgi || __svr4__ || __SVR4 || M_XENIX
usrfree = 1024;
else
usrfree = (int)((double)usrpart.f_bfree * (double)usrpart.f_bsize /
1024.0 / 1024.0 + 0.5);
// Display the results to the user...
if (rootfree == usrfree)
{
rootsize += usrsize;
if (rootsize >= 1024)
snprintf(sizelabel, sizeof(sizelabel),
"%+.1fm required, %dm available.", rootsize / 1024.0,
rootfree);
else
snprintf(sizelabel, sizeof(sizelabel),
"%+dk required, %dm available.", rootsize, rootfree);
}
else if (rootsize >= 1024 && usrsize >= 1024)
snprintf(sizelabel, sizeof(sizelabel),
"%+.1fm required on /, %dm available,\n"
"%+.1fm required on /usr, %dm available.",
rootsize / 1024.0, rootfree, usrsize / 1024.0, usrfree);
else if (rootsize >= 1024)
snprintf(sizelabel, sizeof(sizelabel),
"%+.1fm required on /, %dm available,\n"
"%+dk required on /usr, %dm available.",
rootsize / 1024.0, rootfree, usrsize, usrfree);
else if (usrsize >= 1024)
snprintf(sizelabel, sizeof(sizelabel),
"%+dk required on /, %dm available,\n"
"%+.1fm required on /usr, %dm available.",
rootsize, rootfree, usrsize / 1024.0, usrfree);
else
snprintf(sizelabel, sizeof(sizelabel),
"%+dk required on /, %dm available,\n"
"%+dk required on /usr, %dm available.",
rootsize, rootfree, usrsize, usrfree);
SoftwareSize->label(sizelabel);
SoftwareSize->redraw();
}