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
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
|
/*
* dpkg - main program for package management
* archives.c - actions that process archive files, mainly unpack
*
* Copyright © 1994,1995 Ian Jackson <ian@chiark.greenend.org.uk>
* Copyright © 2000 Wichert Akkerman <wakkerma@debian.org>
*
* This 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 of the License, or
* (at your option) any later version.
*
* This 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <config.h>
#include <compat.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <assert.h>
#include <errno.h>
#include <ctype.h>
#include <string.h>
#include <time.h>
#include <utime.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <obstack.h>
#define obstack_chunk_alloc m_malloc
#define obstack_chunk_free free
#include <dpkg/i18n.h>
#include <dpkg/dpkg.h>
#include <dpkg/dpkg-db.h>
#include <dpkg/path.h>
#include <dpkg/buffer.h>
#include <dpkg/subproc.h>
#include <dpkg/command.h>
#include <dpkg/tarfn.h>
#include <dpkg/myopt.h>
#include <dpkg/triglib.h>
#ifdef WITH_SELINUX
#include <selinux/selinux.h>
#endif
#include "filesdb.h"
#include "main.h"
#include "archives.h"
#define MAXCONFLICTORS 20
struct pkginfo *conflictor[MAXCONFLICTORS];
int cflict_index = 0;
/* special routine to handle partial reads from the tarfile */
static int safe_read(int fd, void *buf, int len)
{
int r, have= 0;
char *p = (char *)buf;
while (have < len) {
if ((r= read(fd,p,len-have))==-1) {
if (errno==EINTR || errno==EAGAIN) continue;
return r;
}
if (r==0)
break;
have+= r;
p+= r;
}
return have;
}
static struct obstack tar_obs;
static int tarobs_init= 0;
/* ensure the obstack is properly initialized */
static void ensureobstackinit(void) {
if (!tarobs_init) {
obstack_init(&tar_obs);
tarobs_init= 1;
}
}
/* destroy the obstack */
static void destroyobstack(void) {
if (tarobs_init) {
obstack_free(&tar_obs, NULL);
tarobs_init= 0;
}
}
bool
filesavespackage(struct fileinlist *file,
struct pkginfo *pkgtobesaved,
struct pkginfo *pkgbeinginstalled)
{
struct pkginfo *divpkg, *thirdpkg;
struct filepackages *packageslump;
int i;
debug(dbg_eachfiledetail,"filesavespackage file `%s' package %s",
file->namenode->name,pkgtobesaved->name);
/* A package can only be saved by a file or directory which is part
* only of itself - it must be neither part of the new package being
* installed nor part of any 3rd package (this is important so that
* shared directories don't stop packages from disappearing).
*/
/* If the file is a contended one and it's overridden by either
* the package we're considering disappearing or the package
* we're installing then they're not actually the same file, so
* we can't disappear the package - it is saved by this file.
*/
if (file->namenode->divert && file->namenode->divert->useinstead) {
divpkg= file->namenode->divert->pkg;
if (divpkg == pkgtobesaved || divpkg == pkgbeinginstalled) {
debug(dbg_eachfiledetail,"filesavespackage ... diverted -- save!");
return true;
}
}
/* Is the file in the package being installed ? If so then it can't save.
*/
if (file->namenode->flags & fnnf_new_inarchive) {
debug(dbg_eachfiledetail,"filesavespackage ... in new archive -- no save");
return false;
}
/* Look for a 3rd package which can take over the file (in case
* it's a directory which is shared by many packages.
*/
for (packageslump= file->namenode->packages;
packageslump;
packageslump= packageslump->more) {
for (i=0; i < PERFILEPACKAGESLUMP && packageslump->pkgs[i]; i++) {
thirdpkg= packageslump->pkgs[i];
debug(dbg_eachfiledetail, "filesavespackage ... also in %s",
thirdpkg->name);
/* Is this not the package being installed or the one being
* checked for disappearance ?
*/
if (thirdpkg == pkgbeinginstalled || thirdpkg == pkgtobesaved) continue;
/* If !fileslistvalid then we've already disappeared this one, so
* we shouldn't try to make it take over this shared directory.
*/
debug(dbg_eachfiledetail,"filesavespackage ... is 3rd package");
if (!thirdpkg->clientdata->fileslistvalid) {
debug(dbg_eachfiledetail, "process_archive ... already disappeared!");
continue;
}
/* We've found a package that can take this file. */
debug(dbg_eachfiledetail, "filesavespackage ... taken -- no save");
return false;
}
}
debug(dbg_eachfiledetail, "filesavespackage ... not taken -- save !");
return true;
}
void cu_pathname(int argc, void **argv) {
ensure_pathname_nonexisting((char*)(argv[0]));
}
int tarfileread(void *ud, char *buf, int len) {
struct tarcontext *tc= (struct tarcontext*)ud;
int r;
if ((r= safe_read(tc->backendpipe,buf,len)) == -1)
ohshite(_("error reading from dpkg-deb pipe"));
return r;
}
static void
tarfile_skip_one_forward(struct TarInfo *ti,
struct fileinlist **oldnifd,
struct fileinlist *nifd)
{
struct tarcontext *tc = (struct tarcontext *)ti->UserData;
size_t r;
char databuf[TARBLKSZ];
obstack_free(&tar_obs, nifd);
tc->newfilesp = oldnifd;
*oldnifd = NULL;
/* We need to advance the tar file to the next object, so read the
* file data and set it to oblivion.
*/
if ((ti->Type == NormalFile0) || (ti->Type == NormalFile1)) {
char fnamebuf[256];
fd_null_copy(tc->backendpipe, ti->Size,
_("skipped unpacking file '%.255s' (replaced or excluded?)"),
path_quote_filename(fnamebuf, ti->Name, 256));
r = ti->Size % TARBLKSZ;
if (r > 0)
if (safe_read(tc->backendpipe, databuf, TARBLKSZ - r) == -1)
ohshite(_("error reading from dpkg-deb pipe"));
}
}
int fnameidlu;
struct varbuf fnamevb;
struct varbuf fnametmpvb;
struct varbuf fnamenewvb;
struct pkg_deconf_list *deconfigure = NULL;
static time_t currenttime;
static int
does_replace(struct pkginfo *newpigp, struct pkginfoperfile *newpifp,
struct pkginfo *oldpigp)
{
struct dependency *dep;
debug(dbg_depcon,"does_replace new=%s old=%s (%s)",newpigp->name,
oldpigp->name,versiondescribe(&oldpigp->installed.version,
vdew_always));
for (dep= newpifp->depends; dep; dep= dep->next) {
if (dep->type != dep_replaces || dep->list->ed != oldpigp) continue;
debug(dbg_depcondetail,"does_replace ... found old, version %s",
versiondescribe(&dep->list->version,vdew_always));
if (!versionsatisfied(&oldpigp->installed,dep->list)) continue;
debug(dbg_depcon,"does_replace ... yes");
return true;
}
debug(dbg_depcon,"does_replace ... no");
return false;
}
static void newtarobject_utime(const char *path, struct TarInfo *ti) {
struct utimbuf utb;
utb.actime= currenttime;
utb.modtime= ti->ModTime;
if (utime(path,&utb))
ohshite(_("error setting timestamps of `%.255s'"),ti->Name);
}
static void newtarobject_allmodes(const char *path, struct TarInfo *ti, struct filestatoverride* statoverride) {
if (chown(path,
statoverride ? statoverride->uid : ti->UserID,
statoverride ? statoverride->gid : ti->GroupID))
ohshite(_("error setting ownership of `%.255s'"),ti->Name);
if (chmod(path,(statoverride ? statoverride->mode : ti->Mode) & ~S_IFMT))
ohshite(_("error setting permissions of `%.255s'"),ti->Name);
newtarobject_utime(path,ti);
}
static void
set_selinux_path_context(const char *matchpath, const char *path, mode_t mode)
{
#ifdef WITH_SELINUX
static int selinux_enabled = -1;
security_context_t scontext = NULL;
int ret;
/* Set selinux_enabled if it is not already set (singleton). */
if (selinux_enabled < 0)
selinux_enabled = (is_selinux_enabled() > 0);
/* If SE Linux is not enabled just do nothing. */
if (!selinux_enabled)
return;
/* XXX: Well, we could use set_matchpathcon_printf() to redirect the
* errors from the following bit, but that seems too much effort. */
/* Do nothing if we can't figure out what the context is, or if it has
* no context; in which case the default context shall be applied. */
ret = matchpathcon(matchpath, mode & ~S_IFMT, &scontext);
if (ret == -1 || (ret == 0 && scontext == NULL))
return;
if (strcmp(scontext, "<<none>>") != 0) {
if (lsetfilecon(path, scontext) < 0)
/* XXX: This might need to be fatal instead!? */
perror("Error setting security context for next file object:");
}
freecon(scontext);
#endif /* WITH_SELINUX */
}
void setupfnamevbs(const char *filename) {
fnamevb.used= fnameidlu;
varbufaddstr(&fnamevb,filename);
varbufaddc(&fnamevb,0);
fnametmpvb.used= fnameidlu;
varbufaddstr(&fnametmpvb,filename);
varbufaddstr(&fnametmpvb,DPKGTEMPEXT);
varbufaddc(&fnametmpvb,0);
fnamenewvb.used= fnameidlu;
varbufaddstr(&fnamenewvb,filename);
varbufaddstr(&fnamenewvb,DPKGNEWEXT);
varbufaddc(&fnamenewvb,0);
debug(dbg_eachfiledetail, "setupvnamevbs main=`%s' tmp=`%s' new=`%s'",
fnamevb.buf, fnametmpvb.buf, fnamenewvb.buf);
}
int unlinkorrmdir(const char *filename) {
/* Returns 0 on success or -1 on failure, just like unlink & rmdir */
int r, e;
if (!rmdir(filename)) {
debug(dbg_eachfiledetail,"unlinkorrmdir `%s' rmdir OK",filename);
return 0;
}
if (errno != ENOTDIR) {
e= errno;
debug(dbg_eachfiledetail,"unlinkorrmdir `%s' rmdir %s",filename,strerror(e));
errno= e; return -1;
}
r = secure_unlink(filename);
e = errno;
debug(dbg_eachfiledetail,"unlinkorrmdir `%s' unlink %s",
filename, r ? strerror(e) : "OK");
errno= e; return r;
}
struct fileinlist *addfiletolist(struct tarcontext *tc,
struct filenamenode *namenode) {
struct fileinlist *nifd;
nifd= obstack_alloc(&tar_obs, sizeof(struct fileinlist));
nifd->namenode= namenode;
nifd->next = NULL;
*tc->newfilesp = nifd;
tc->newfilesp = &nifd->next;
return nifd;
}
static bool
linktosameexistingdir(const struct TarInfo *ti, const char *fname,
struct varbuf *symlinkfn)
{
struct stat oldstab, newstab;
int statr;
const char *lastslash;
statr= stat(fname, &oldstab);
if (statr) {
if (!(errno == ENOENT || errno == ELOOP || errno == ENOTDIR))
ohshite(_("failed to stat (dereference) existing symlink `%.250s'"),
fname);
return false;
}
if (!S_ISDIR(oldstab.st_mode))
return false;
/* But is it to the same dir ? */
varbufreset(symlinkfn);
if (ti->LinkName[0] == '/') {
varbufaddstr(symlinkfn, instdir);
} else {
lastslash= strrchr(fname, '/');
assert(lastslash);
varbufaddbuf(symlinkfn, fname, (lastslash - fname) + 1);
}
varbufaddstr(symlinkfn, ti->LinkName);
varbufaddc(symlinkfn, 0);
statr= stat(symlinkfn->buf, &newstab);
if (statr) {
if (!(errno == ENOENT || errno == ELOOP || errno == ENOTDIR))
ohshite(_("failed to stat (dereference) proposed new symlink target"
" `%.250s' for symlink `%.250s'"), symlinkfn->buf, fname);
return false;
}
if (!S_ISDIR(newstab.st_mode))
return false;
if (newstab.st_dev != oldstab.st_dev ||
newstab.st_ino != oldstab.st_ino)
return false;
return true;
}
int tarobject(struct TarInfo *ti) {
static struct varbuf conffderefn, hardlinkfn, symlinkfn;
static int fd;
const char *usename;
struct filenamenode *usenode;
struct conffile *conff;
struct tarcontext *tc= (struct tarcontext*)ti->UserData;
int statr, i, existingdirectory, keepexisting;
ssize_t r;
struct stat stab, stabtmp;
char databuf[TARBLKSZ];
struct fileinlist *nifd, **oldnifd;
struct pkginfo *divpkg, *otherpkg;
struct filepackages *packageslump;
mode_t am;
ensureobstackinit();
/* Append to list of files.
* The trailing / put on the end of names in tarfiles has already
* been stripped by TarExtractor (lib/tarfn.c).
*/
oldnifd= tc->newfilesp;
nifd= addfiletolist(tc, findnamenode(ti->Name, 0));
nifd->namenode->flags |= fnnf_new_inarchive;
debug(dbg_eachfile,
"tarobject ti->Name=`%s' Mode=%lo owner=%u.%u Type=%d(%c)"
" ti->LinkName=`%s' namenode=`%s' flags=%o instead=`%s'",
ti->Name, (long)ti->Mode, (unsigned)ti->UserID, (unsigned)ti->GroupID, ti->Type,
ti->Type == '\0' ? '_' :
ti->Type >= '0' && ti->Type <= '6' ? "-hlcbdp"[ti->Type - '0'] : '?',
ti->LinkName,
nifd->namenode->name, nifd->namenode->flags,
nifd->namenode->divert && nifd->namenode->divert->useinstead
? nifd->namenode->divert->useinstead->name : "<none>");
if (nifd->namenode->divert && nifd->namenode->divert->camefrom) {
divpkg= nifd->namenode->divert->pkg;
if (divpkg) {
forcibleerr(fc_overwritediverted,
_("trying to overwrite `%.250s', which is the "
"diverted version of `%.250s' (package: %.100s)"),
nifd->namenode->name, nifd->namenode->divert->camefrom->name,
divpkg->name);
} else {
forcibleerr(fc_overwritediverted,
_("trying to overwrite `%.250s', which is the "
"diverted version of `%.250s'"),
nifd->namenode->name, nifd->namenode->divert->camefrom->name);
}
}
usenode = namenodetouse(nifd->namenode, tc->pkg);
usename = usenode->name + 1; /* Skip the leading '/'. */
trig_file_activate(usenode, tc->pkg);
if (nifd->namenode->flags & fnnf_new_conff) {
/* If it's a conffile we have to extract it next to the installed
* version (ie, we do the usual link-following).
*/
if (conffderef(tc->pkg, &conffderefn, usename))
usename= conffderefn.buf;
debug(dbg_conff,"tarobject fnnf_new_conff deref=`%s'",usename);
}
setupfnamevbs(usename);
statr= lstat(fnamevb.buf,&stab);
if (statr) {
/* The lstat failed. */
if (errno != ENOENT && errno != ENOTDIR)
ohshite(_("unable to stat `%.255s' (which I was about to install)"),ti->Name);
/* OK, so it doesn't exist.
* However, it's possible that we were in the middle of some other
* backup/restore operation and were rudely interrupted.
* So, we see if we have .dpkg-tmp, and if so we restore it.
*/
if (rename(fnametmpvb.buf,fnamevb.buf)) {
if (errno != ENOENT && errno != ENOTDIR)
ohshite(_("unable to clean up mess surrounding `%.255s' before "
"installing another version"),ti->Name);
debug(dbg_eachfiledetail,"tarobject nonexistent");
} else {
debug(dbg_eachfiledetail,"tarobject restored tmp to main");
statr= lstat(fnamevb.buf,&stab);
if (statr) ohshite(_("unable to stat restored `%.255s' before installing"
" another version"), ti->Name);
}
} else {
debug(dbg_eachfiledetail,"tarobject already exists");
}
/* Check to see if it's a directory or link to one and we don't need to
* do anything. This has to be done now so that we don't die due to
* a file overwriting conflict.
*/
existingdirectory= 0;
switch (ti->Type) {
case SymbolicLink:
/* If it's already an existing directory, do nothing. */
if (!statr && S_ISDIR(stab.st_mode)) {
debug(dbg_eachfiledetail,"tarobject SymbolicLink exists as directory");
existingdirectory= 1;
} else if (!statr && S_ISLNK(stab.st_mode)) {
if (linktosameexistingdir(ti, fnamevb.buf, &symlinkfn))
existingdirectory= 1;
}
break;
case Directory:
/* If it's already an existing directory, do nothing. */
if (!stat(fnamevb.buf,&stabtmp) && S_ISDIR(stabtmp.st_mode)) {
debug(dbg_eachfiledetail,"tarobject Directory exists");
existingdirectory= 1;
}
break;
case NormalFile0: case NormalFile1:
case CharacterDevice: case BlockDevice: case FIFO:
case HardLink:
break;
default:
ohshit(_("archive contained object `%.255s' of unknown type 0x%x"),ti->Name,ti->Type);
}
keepexisting= 0;
if (!existingdirectory) {
for (packageslump= nifd->namenode->packages;
packageslump;
packageslump= packageslump->more) {
for (i=0; i < PERFILEPACKAGESLUMP && packageslump->pkgs[i]; i++) {
otherpkg= packageslump->pkgs[i];
if (otherpkg == tc->pkg) continue;
debug(dbg_eachfile, "tarobject ... found in %s",otherpkg->name);
if (nifd->namenode->divert && nifd->namenode->divert->useinstead) {
/* Right, so we may be diverting this file. This makes the conflict
* OK iff one of us is the diverting package (we don't need to
* check for both being the diverting package, obviously).
*/
divpkg= nifd->namenode->divert->pkg;
debug(dbg_eachfile, "tarobject ... diverted, divpkg=%s",
divpkg ? divpkg->name : "<none>");
if (otherpkg == divpkg || tc->pkg == divpkg) continue;
}
/* Nope ? Hmm, file conflict, perhaps. Check Replaces. */
switch (otherpkg->clientdata->replacingfilesandsaid) {
case 2:
keepexisting= 1;
case 1:
continue;
}
/* Is the package with the conflicting file in the `config files
* only' state ? If so it must be a config file and we can
* silenty take it over.
*/
if (otherpkg->status == stat_configfiles) continue;
/* Perhaps we're removing a conflicting package ? */
if (otherpkg->clientdata->istobe == itb_remove) continue;
/* Is the file an obsolete conffile in the other package
* and a conffile in the new package ? */
if ((nifd->namenode->flags & fnnf_new_conff) &&
!statr && S_ISREG(stab.st_mode)) {
for (conff= otherpkg->installed.conffiles;
conff;
conff= conff->next) {
if (!conff->obsolete)
continue;
if (stat(conff->name, &stabtmp))
if (errno == ENOENT || errno == ENOTDIR || errno == ELOOP)
continue;
if (stabtmp.st_dev == stab.st_dev &&
stabtmp.st_ino == stab.st_ino)
break;
}
if (conff) {
debug(dbg_eachfiledetail,"tarobject other's obsolete conffile");
/* processarc.c will have copied its hash already. */
continue;
}
}
if (does_replace(tc->pkg,&tc->pkg->available,otherpkg)) {
printf(_("Replacing files in old package %s ...\n"),otherpkg->name);
otherpkg->clientdata->replacingfilesandsaid= 1;
} else if (does_replace(otherpkg,&otherpkg->installed,tc->pkg)) {
printf(_("Replaced by files in installed package %s ...\n"),
otherpkg->name);
otherpkg->clientdata->replacingfilesandsaid= 2;
keepexisting = 1;
} else {
if (!statr && S_ISDIR(stab.st_mode)) {
forcibleerr(fc_overwritedir,
_("trying to overwrite directory '%.250s' "
"in package %.250s %.250s with nondirectory"),
nifd->namenode->name, otherpkg->name,
versiondescribe(&otherpkg->installed.version,
vdew_nonambig));
} else {
/* WTA: At this point we are replacing something without a Replaces.
* if the new object is a directory and the previous object does not
* exist assume it's also a directory and don't complain
*/
if (! (statr && ti->Type==Directory))
forcibleerr(fc_overwrite,
_("trying to overwrite '%.250s', "
"which is also in package %.250s %.250s"),
nifd->namenode->name, otherpkg->name,
versiondescribe(&otherpkg->installed.version,
vdew_nonambig));
}
}
}
}
}
if (existingdirectory) return 0;
if (keepexisting) {
tarfile_skip_one_forward(ti, oldnifd, nifd);
return 0;
}
/* Now, at this stage we want to make sure neither of .dpkg-new and .dpkg-tmp
* are hanging around.
*/
ensure_pathname_nonexisting(fnamenewvb.buf);
ensure_pathname_nonexisting(fnametmpvb.buf);
/* Now we start to do things that we need to be able to undo
* if something goes wrong. Watch out for the CLEANUP comments to
* keep an eye on what's installed on the disk at each point.
*/
push_cleanup(cu_installnew, ~ehflag_normaltidy, NULL, 0, 1, (void *)nifd);
/* CLEANUP: Now we either have the old file on the disk, or not, in
* its original filename.
*/
/* Extract whatever it is as .dpkg-new ... */
switch (ti->Type) {
case NormalFile0: case NormalFile1:
/* We create the file with mode 0 to make sure nobody can do anything with
* it until we apply the proper mode, which might be a statoverride.
*/
fd= open(fnamenewvb.buf, (O_CREAT|O_EXCL|O_WRONLY), 0);
if (fd < 0)
ohshite(_("unable to create `%.255s' (while processing `%.255s')"), fnamenewvb.buf, ti->Name);
push_cleanup(cu_closefd, ehflag_bombout, NULL, 0, 1, &fd);
debug(dbg_eachfiledetail,"tarobject NormalFile[01] open size=%lu",
(unsigned long)ti->Size);
{ char fnamebuf[256];
fd_fd_copy(tc->backendpipe, fd, ti->Size,
_("backend dpkg-deb during `%.255s'"),
path_quote_filename(fnamebuf, ti->Name, 256));
}
r= ti->Size % TARBLKSZ;
if (r > 0)
if (safe_read(tc->backendpipe, databuf, TARBLKSZ - r) == -1)
ohshite(_("error reading from dpkg-deb pipe"));
if (nifd->namenode->statoverride)
debug(dbg_eachfile, "tarobject ... stat override, uid=%d, gid=%d, mode=%04o",
nifd->namenode->statoverride->uid,
nifd->namenode->statoverride->gid,
nifd->namenode->statoverride->mode);
if (fchown(fd,
nifd->namenode->statoverride ? nifd->namenode->statoverride->uid : ti->UserID,
nifd->namenode->statoverride ? nifd->namenode->statoverride->gid : ti->GroupID))
ohshite(_("error setting ownership of `%.255s'"),ti->Name);
am=(nifd->namenode->statoverride ? nifd->namenode->statoverride->mode : ti->Mode) & ~S_IFMT;
if (fchmod(fd,am))
ohshite(_("error setting permissions of `%.255s'"),ti->Name);
/* Postpone the fsync, to try to avoid massive I/O degradation. */
nifd->namenode->flags |= fnnf_deferred_fsync;
pop_cleanup(ehflag_normaltidy); /* fd= open(fnamenewvb.buf) */
if (close(fd))
ohshite(_("error closing/writing `%.255s'"),ti->Name);
newtarobject_utime(fnamenewvb.buf,ti);
break;
case FIFO:
if (mkfifo(fnamenewvb.buf,0))
ohshite(_("error creating pipe `%.255s'"),ti->Name);
debug(dbg_eachfiledetail,"tarobject FIFO");
newtarobject_allmodes(fnamenewvb.buf,ti, nifd->namenode->statoverride);
break;
case CharacterDevice:
if (mknod(fnamenewvb.buf,S_IFCHR, ti->Device))
ohshite(_("error creating device `%.255s'"),ti->Name);
debug(dbg_eachfiledetail,"tarobject CharacterDevice");
newtarobject_allmodes(fnamenewvb.buf,ti, nifd->namenode->statoverride);
break;
case BlockDevice:
if (mknod(fnamenewvb.buf,S_IFBLK, ti->Device))
ohshite(_("error creating device `%.255s'"),ti->Name);
debug(dbg_eachfiledetail,"tarobject BlockDevice");
newtarobject_allmodes(fnamenewvb.buf,ti, nifd->namenode->statoverride);
break;
case HardLink:
varbufreset(&hardlinkfn);
varbufaddstr(&hardlinkfn,instdir); varbufaddc(&hardlinkfn,'/');
varbufaddstr(&hardlinkfn,ti->LinkName); varbufaddc(&hardlinkfn,0);
if (link(hardlinkfn.buf,fnamenewvb.buf))
ohshite(_("error creating hard link `%.255s'"),ti->Name);
debug(dbg_eachfiledetail,"tarobject HardLink");
newtarobject_allmodes(fnamenewvb.buf,ti, nifd->namenode->statoverride);
break;
case SymbolicLink:
/* We've already cheched for an existing directory. */
if (symlink(ti->LinkName,fnamenewvb.buf))
ohshite(_("error creating symbolic link `%.255s'"),ti->Name);
debug(dbg_eachfiledetail,"tarobject SymbolicLink creating");
if (lchown(fnamenewvb.buf,
nifd->namenode->statoverride ? nifd->namenode->statoverride->uid : ti->UserID,
nifd->namenode->statoverride ? nifd->namenode->statoverride->gid : ti->GroupID))
ohshite(_("error setting ownership of symlink `%.255s'"),ti->Name);
break;
case Directory:
/* We've already checked for an existing directory. */
if (mkdir(fnamenewvb.buf,0))
ohshite(_("error creating directory `%.255s'"),ti->Name);
debug(dbg_eachfiledetail,"tarobject Directory creating");
newtarobject_allmodes(fnamenewvb.buf,ti,nifd->namenode->statoverride);
break;
default:
internerr("unknown tar type '%d', but already checked", ti->Type);
}
set_selinux_path_context(fnamevb.buf, fnamenewvb.buf,
nifd->namenode->statoverride ?
nifd->namenode->statoverride->mode : ti->Mode);
/* CLEANUP: Now we have extracted the new object in .dpkg-new (or,
* if the file already exists as a directory and we were trying to extract
* a directory or symlink, we returned earlier, so we don't need
* to worry about that here).
*
* The old file is still in the original filename,
*/
/* First, check to see if it's a conffile. If so we don't install
* it now - we leave it in .dpkg-new for --configure to take care of
*/
if (nifd->namenode->flags & fnnf_new_conff) {
debug(dbg_conffdetail,"tarobject conffile extracted");
nifd->namenode->flags |= fnnf_elide_other_lists;
return 0;
}
/* Now we move the old file out of the way, the backup file will
* be deleted later.
*/
if (statr) { /* Don't try to back it up if it didn't exist. */
debug(dbg_eachfiledetail,"tarobject new - no backup");
} else {
if (ti->Type == Directory || S_ISDIR(stab.st_mode)) {
/* One of the two is a directory - can't do atomic install. */
debug(dbg_eachfiledetail,"tarobject directory, nonatomic");
nifd->namenode->flags |= fnnf_no_atomic_overwrite;
if (rename(fnamevb.buf,fnametmpvb.buf))
ohshite(_("unable to move aside `%.255s' to install new version"),ti->Name);
} else if (S_ISLNK(stab.st_mode)) {
/* We can't make a symlink with two hardlinks, so we'll have to copy it.
* (Pretend that making a copy of a symlink is the same as linking to it.)
*/
varbufreset(&symlinkfn);
varbuf_grow(&symlinkfn, stab.st_size + 1);
r = readlink(fnamevb.buf, symlinkfn.buf, symlinkfn.size);
if (r < 0)
ohshite(_("unable to read link `%.255s'"), ti->Name);
assert(r == stab.st_size);
symlinkfn.used= r; varbufaddc(&symlinkfn,0);
if (symlink(symlinkfn.buf,fnametmpvb.buf))
ohshite(_("unable to make backup symlink for `%.255s'"),ti->Name);
if (lchown(fnametmpvb.buf,stab.st_uid,stab.st_gid))
ohshite(_("unable to chown backup symlink for `%.255s'"),ti->Name);
set_selinux_path_context(fnamevb.buf, fnametmpvb.buf, stab.st_mode);
} else {
debug(dbg_eachfiledetail,"tarobject nondirectory, `link' backup");
if (link(fnamevb.buf,fnametmpvb.buf))
ohshite(_("unable to make backup link of `%.255s' before installing new version"),
ti->Name);
}
}
/* CLEANUP: now the old file is in dpkg-tmp, and the new file is still
* in dpkg-new.
*/
if (ti->Type == NormalFile0 || ti->Type == NormalFile1) {
nifd->namenode->flags |= fnnf_deferred_rename;
debug(dbg_eachfiledetail, "tarobject done and installation deferred");
} else {
if (rename(fnamenewvb.buf, fnamevb.buf))
ohshite(_("unable to install new version of `%.255s'"), ti->Name);
/* CLEANUP: now the new file is in the destination file, and the
* old file is in dpkg-tmp to be cleaned up later. We now need
* to take a different attitude to cleanup, because we need to
* remove the new file. */
nifd->namenode->flags |= fnnf_placed_on_disk;
nifd->namenode->flags |= fnnf_elide_other_lists;
debug(dbg_eachfiledetail, "tarobject done and installed");
}
return 0;
}
void
tar_deferred_extract(struct fileinlist *files, struct pkginfo *pkg)
{
struct fileinlist *cfile;
struct filenamenode *usenode;
const char *usename;
for (cfile = files; cfile; cfile = cfile->next) {
debug(dbg_eachfile, "deferred extract of '%.255s'", cfile->namenode->name);
if (!(cfile->namenode->flags & fnnf_deferred_rename))
continue;
debug(dbg_eachfiledetail, "deferred extract needs rename");
usenode = namenodetouse(cfile->namenode, pkg);
usename = usenode->name + 1; /* Skip the leading '/'. */
setupfnamevbs(usename);
if (cfile->namenode->flags & fnnf_deferred_fsync) {
int fd;
debug(dbg_eachfiledetail, "deferred extract needs fsync");
fd = open(fnamenewvb.buf, O_WRONLY);
if (fd < 0)
ohshite(_("unable to open '%.255s'"), fnamenewvb.buf);
if (fsync(fd))
ohshite(_("unable to sync file '%.255s'"), fnamenewvb.buf);
if (close(fd))
ohshite(_("error closing/writing `%.255s'"), fnamenewvb.buf);
cfile->namenode->flags &= ~fnnf_deferred_fsync;
}
if (rename(fnamenewvb.buf, fnamevb.buf))
ohshite(_("unable to install new version of `%.255s'"),
cfile->namenode->name);
cfile->namenode->flags &= ~fnnf_deferred_rename;
/* CLEANUP: now the new file is in the destination file, and the
* old file is in dpkg-tmp to be cleaned up later. We now need
* to take a different attitude to cleanup, because we need to
* remove the new file. */
cfile->namenode->flags |= fnnf_placed_on_disk;
cfile->namenode->flags |= fnnf_elide_other_lists;
debug(dbg_eachfiledetail, "deferred extract done and installed");
}
}
static int
try_deconfigure_can(bool (*force_p)(struct deppossi *), struct pkginfo *pkg,
struct deppossi *pdep, const char *action,
struct pkginfo *removal, const char *why)
{
/* Also checks whether the pdep is forced, first, according to force_p.
* force_p may be 0 in which case nothing is considered forced.
*
* Action is a string describing the action which causes the
* deconfiguration:
* removal of <package> (due to Conflicts+Depends removal!=0)
* installation of <package> (due to Breaks removal==0)
*
* Return values: 2: forced (no deconfiguration needed, why is printed)
* 1: deconfiguration queued ok (no message printed)
* 0: not possible (why is printed)
*/
struct pkg_deconf_list *newdeconf;
if (force_p && force_p(pdep)) {
warning(_("ignoring dependency problem with %s:\n%s"), action, why);
return 2;
} else if (f_autodeconf) {
if (pkg->installed.essential) {
if (fc_removeessential) {
warning(_("considering deconfiguration of essential\n"
" package %s, to enable %s."), pkg->name, action);
} else {
fprintf(stderr, _("dpkg: no, %s is essential, will not deconfigure\n"
" it in order to enable %s.\n"),
pkg->name, action);
return 0;
}
}
pkg->clientdata->istobe= itb_deconfigure;
newdeconf = m_malloc(sizeof(struct pkg_deconf_list));
newdeconf->next= deconfigure;
newdeconf->pkg= pkg;
newdeconf->pkg_removal = removal;
deconfigure= newdeconf;
return 1;
} else {
fprintf(stderr, _("dpkg: no, cannot proceed with %s (--auto-deconfigure will help):\n%s"),
action, why);
return 0;
}
}
static int try_remove_can(struct deppossi *pdep,
struct pkginfo *fixbyrm,
const char *why) {
char action[512];
sprintf(action, _("removal of %.250s"), fixbyrm->name);
return try_deconfigure_can(force_depends, pdep->up->up, pdep,
action, fixbyrm, why);
}
void check_breaks(struct dependency *dep, struct pkginfo *pkg,
const char *pfilename) {
struct pkginfo *fixbydeconf;
struct varbuf why = VARBUF_INIT;
int ok;
fixbydeconf = NULL;
if (depisok(dep, &why, &fixbydeconf, 0)) {
varbuf_destroy(&why);
return;
}
varbufaddc(&why, 0);
if (fixbydeconf && f_autodeconf) {
char action[512];
ensure_package_clientdata(fixbydeconf);
assert(fixbydeconf->clientdata->istobe == itb_normal);
sprintf(action, _("installation of %.250s"), pkg->name);
fprintf(stderr, _("dpkg: considering deconfiguration of %s,"
" which would be broken by %s ...\n"),
fixbydeconf->name, action);
ok= try_deconfigure_can(force_breaks, fixbydeconf, dep->list,
action, NULL, why.buf);
if (ok == 1) {
fprintf(stderr, _("dpkg: yes, will deconfigure %s (broken by %s).\n"),
fixbydeconf->name, pkg->name);
}
} else {
fprintf(stderr, _("dpkg: regarding %s containing %s:\n%s"),
pfilename, pkg->name, why.buf);
ok= 0;
}
varbuf_destroy(&why);
if (ok > 0) return;
if (force_breaks(dep->list)) {
warning(_("ignoring breakage, may proceed anyway!"));
return;
}
if (fixbydeconf && !f_autodeconf) {
ohshit(_("installing %.250s would break %.250s, and\n"
" deconfiguration is not permitted (--auto-deconfigure might help)"),
pkg->name, fixbydeconf->name);
} else {
ohshit(_("installing %.250s would break existing software"),
pkg->name);
}
}
void check_conflict(struct dependency *dep, struct pkginfo *pkg,
const char *pfilename) {
struct pkginfo *fixbyrm;
struct deppossi *pdep, flagdeppossi;
struct varbuf conflictwhy = VARBUF_INIT, removalwhy = VARBUF_INIT;
struct dependency *providecheck;
fixbyrm = NULL;
if (depisok(dep, &conflictwhy, &fixbyrm, 0)) {
varbuf_destroy(&conflictwhy);
varbuf_destroy(&removalwhy);
return;
}
if (fixbyrm) {
ensure_package_clientdata(fixbyrm);
if (fixbyrm->clientdata->istobe == itb_installnew) {
fixbyrm= dep->up;
ensure_package_clientdata(fixbyrm);
}
if (((pkg->available.essential && fixbyrm->installed.essential) ||
(((fixbyrm->want != want_install && fixbyrm->want != want_hold) ||
does_replace(pkg,&pkg->available,fixbyrm)) &&
(!fixbyrm->installed.essential || fc_removeessential)))) {
assert(fixbyrm->clientdata->istobe == itb_normal || fixbyrm->clientdata->istobe == itb_deconfigure);
fixbyrm->clientdata->istobe= itb_remove;
fprintf(stderr, _("dpkg: considering removing %s in favour of %s ...\n"),
fixbyrm->name, pkg->name);
if (!(fixbyrm->status == stat_installed ||
fixbyrm->status == stat_triggerspending ||
fixbyrm->status == stat_triggersawaited)) {
fprintf(stderr,
_("%s is not properly installed - ignoring any dependencies on it.\n"),
fixbyrm->name);
pdep = NULL;
} else {
for (pdep= fixbyrm->installed.depended;
pdep;
pdep= pdep->nextrev) {
if (pdep->up->type != dep_depends && pdep->up->type != dep_predepends)
continue;
if (depisok(pdep->up, &removalwhy, NULL, 0))
continue;
varbufaddc(&removalwhy,0);
if (!try_remove_can(pdep,fixbyrm,removalwhy.buf))
break;
}
if (!pdep) {
/* If we haven't found a reason not to yet, let's look some more. */
for (providecheck= fixbyrm->installed.depends;
providecheck;
providecheck= providecheck->next) {
if (providecheck->type != dep_provides) continue;
for (pdep= providecheck->list->ed->installed.depended;
pdep;
pdep= pdep->nextrev) {
if (pdep->up->type != dep_depends && pdep->up->type != dep_predepends)
continue;
if (depisok(pdep->up, &removalwhy, NULL, 0))
continue;
varbufaddc(&removalwhy,0);
fprintf(stderr, _("dpkg"
": may have trouble removing %s, as it provides %s ...\n"),
fixbyrm->name, providecheck->list->ed->name);
if (!try_remove_can(pdep,fixbyrm,removalwhy.buf))
goto break_from_both_loops_at_once;
}
}
break_from_both_loops_at_once:;
}
}
if (!pdep && skip_due_to_hold(fixbyrm)) {
pdep= &flagdeppossi;
}
if (!pdep && (fixbyrm->eflag & eflag_reinstreq)) {
if (fc_removereinstreq) {
fprintf(stderr, _("dpkg: package %s requires reinstallation, but will"
" remove anyway as you requested.\n"), fixbyrm->name);
} else {
fprintf(stderr, _("dpkg: package %s requires reinstallation, "
"will not remove.\n"), fixbyrm->name);
pdep= &flagdeppossi;
}
}
if (!pdep) {
if (cflict_index >= MAXCONFLICTORS)
ohshit(_("package %s has too many Conflicts/Replaces pairs"),
pkg->name);
/* This conflict is OK - we'll remove the conflictor. */
conflictor[cflict_index++]= fixbyrm;
varbuf_destroy(&conflictwhy); varbuf_destroy(&removalwhy);
fprintf(stderr, _("dpkg: yes, will remove %s in favour of %s.\n"),
fixbyrm->name, pkg->name);
return;
}
fixbyrm->clientdata->istobe= itb_normal; /* put it back */
}
}
varbufaddc(&conflictwhy,0);
fprintf(stderr, _("dpkg: regarding %s containing %s:\n%s"),
pfilename, pkg->name, conflictwhy.buf);
if (!force_conflicts(dep->list))
ohshit(_("conflicting packages - not installing %.250s"),pkg->name);
warning(_("ignoring conflict, may proceed anyway!"));
varbuf_destroy(&conflictwhy);
return;
}
void cu_cidir(int argc, void **argv) {
char *cidir= (char*)argv[0];
char *cidirrest= (char*)argv[1];
cidirrest[-1] = '\0';
ensure_pathname_nonexisting(cidir);
}
void cu_fileslist(int argc, void **argv) {
destroyobstack();
}
void archivefiles(const char *const *argv) {
const char *volatile thisarg;
const char *const *volatile argp;
jmp_buf ejbuf;
int pi[2], fc, nfiles, c, i, r;
FILE *pf;
static struct varbuf findoutput;
const char **arglist;
char *p;
trigproc_install_hooks();
modstatdb_init(admindir,
f_noact ? msdbrw_readonly
: cipaction->arg == act_avail ? msdbrw_write
: fc_nonroot ? msdbrw_write
: msdbrw_needsuperuser);
checkpath();
log_message("startup archives %s", cipaction->olong);
if (f_recursive) {
if (!*argv)
badusage(_("--%s --recursive needs at least one path argument"),cipaction->olong);
m_pipe(pi);
fc = subproc_fork();
if (!fc) {
struct command cmd;
const char *const *ap;
m_dup2(pi[1],1); close(pi[0]); close(pi[1]);
command_init(&cmd, FIND, _("find for dpkg --recursive"));
command_add_args(&cmd, FIND, "-L", NULL);
for (ap = argv; *ap; ap++) {
if (strchr(FIND_EXPRSTARTCHARS,(*ap)[0])) {
char *a;
a= m_malloc(strlen(*ap)+10);
strcpy(a,"./");
strcat(a,*ap);
command_add_arg(&cmd, a);
} else {
command_add_arg(&cmd, (const char *)*ap);
}
}
command_add_args(&cmd, "-name", "*.deb", "-type", "f", "-print0", NULL);
command_exec(&cmd);
}
close(pi[1]);
nfiles= 0;
pf= fdopen(pi[0],"r"); if (!pf) ohshite(_("failed to fdopen find's pipe"));
varbufreset(&findoutput);
while ((c= fgetc(pf)) != EOF) {
varbufaddc(&findoutput,c);
if (!c) nfiles++;
}
if (ferror(pf)) ohshite(_("error reading find's pipe"));
if (fclose(pf)) ohshite(_("error closing find's pipe"));
r = subproc_wait_check(fc, "find", PROCNOERR);
if (r != 0)
ohshit(_("find for --recursive returned unhandled error %i"),r);
if (!nfiles)
ohshit(_("searched, but found no packages (files matching *.deb)"));
varbufaddc(&findoutput,0);
varbufaddc(&findoutput,0);
arglist= m_malloc(sizeof(char*)*(nfiles+1));
p= findoutput.buf; i=0;
while (*p) {
arglist[i++]= p;
while (*p++ != '\0') ;
}
arglist[i] = NULL;
argp= arglist;
} else {
if (!*argv) badusage(_("--%s needs at least one package archive file argument"),
cipaction->olong);
argp= argv;
}
currenttime = time(NULL);
/* Initialize fname variables contents. */
varbufreset(&fnamevb);
varbufreset(&fnametmpvb);
varbufreset(&fnamenewvb);
varbufaddstr(&fnamevb,instdir); varbufaddc(&fnamevb,'/');
varbufaddstr(&fnametmpvb,instdir); varbufaddc(&fnametmpvb,'/');
varbufaddstr(&fnamenewvb,instdir); varbufaddc(&fnamenewvb,'/');
fnameidlu= fnamevb.used;
ensure_diversions();
ensure_statoverrides();
while ((thisarg = *argp++) != NULL) {
if (setjmp(ejbuf)) {
error_unwind(ehflag_bombout);
if (abort_processing)
break;
continue;
}
push_error_handler(&ejbuf,print_error_perpackage,thisarg);
process_archive(thisarg);
onerr_abort++;
m_output(stdout, _("<standard output>"));
m_output(stderr, _("<standard error>"));
onerr_abort--;
set_error_display(NULL, NULL);
error_unwind(ehflag_normaltidy);
}
switch (cipaction->arg) {
case act_install:
case act_configure:
case act_triggers:
case act_remove:
case act_purge:
process_queue();
case act_unpack:
case act_avail:
break;
default:
internerr("unknown action '%d'", cipaction->arg);
}
trigproc_run_deferred();
modstatdb_shutdown();
}
int wanttoinstall(struct pkginfo *pkg, const struct versionrevision *ver, int saywhy) {
/* Decide whether we want to install a new version of the package.
* ver is the version we might want to install. If saywhy is 1 then
* if we skip the package we say what we are doing (and, if we are
* selecting a previously deselected package, say so and actually do
* the select). want_install returns 0 if the package should be
* skipped and 1 if it should be installed.
*
* ver may be 0, in which case saywhy must be 0 and want_install may
* also return -1 to mean it doesn't know because it would depend on
* the version number.
*/
int r;
if (pkg->want != want_install && pkg->want != want_hold) {
if (f_alsoselect) {
if (saywhy) {
printf(_("Selecting previously deselected package %s.\n"),pkg->name);
pkg->want= want_install;
}
return 1;
} else {
if (saywhy) printf(_("Skipping deselected package %s.\n"),pkg->name);
return 0;
}
}
if (!(pkg->status == stat_installed ||
pkg->status == stat_triggersawaited ||
pkg->status == stat_triggerspending))
return 1;
if (!ver) return -1;
r= versioncompare(ver,&pkg->installed.version);
if (r > 0) {
return 1;
} else if (r == 0) {
/* Same version fully installed. */
if (f_skipsame) {
if (saywhy) fprintf(stderr, _("Version %.250s of %.250s already installed, "
"skipping.\n"),
versiondescribe(&pkg->installed.version, vdew_nonambig),
pkg->name);
return 0;
} else {
return 1;
}
} else {
if (fc_downgrade) {
if (saywhy)
warning(_("downgrading %.250s from %.250s to %.250s."), pkg->name,
versiondescribe(&pkg->installed.version, vdew_nonambig),
versiondescribe(&pkg->available.version, vdew_nonambig));
return 1;
} else {
if (saywhy) fprintf(stderr, _("Will not downgrade %.250s from version %.250s "
"to %.250s, skipping.\n"), pkg->name,
versiondescribe(&pkg->installed.version, vdew_nonambig),
versiondescribe(&pkg->available.version, vdew_nonambig));
return 0;
}
}
}
struct fileinlist *newconff_append(struct fileinlist ***newconffileslastp_io,
struct filenamenode *namenode) {
struct fileinlist *newconff;
newconff= m_malloc(sizeof(struct fileinlist));
newconff->next = NULL;
newconff->namenode= namenode;
**newconffileslastp_io= newconff;
*newconffileslastp_io= &newconff->next;
return newconff;
}
/* vi: ts=8 sw=2
*/
|