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
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
|
############################################################### smallutils
smallyes() {
YES="${1-y}"
while echo "$YES" 2>/dev/null ; do : ; done
}
############################################################### interaction
error () {
# <error code> <name> <string> <args>
local err="$1"
local name="$2"
local fmt="$3"
shift; shift; shift
if [ "$USE_DEBIANINSTALLER_INTERACTION" ]; then
(echo "E: $name"
for x in "$@"; do echo "EA: $x"; done
echo "EF: $fmt") >&4
else
(printf "E: $fmt\n" "$@") >&4
fi
exit $err
}
warning () {
# <name> <string> <args>
local name="$1"
local fmt="$2"
shift; shift
if [ "$USE_DEBIANINSTALLER_INTERACTION" ]; then
(echo "W: $name"
for x in "$@"; do echo "WA: $x"; done
echo "WF: $fmt") >&4
else
printf "W: $fmt\n" "$@" >&4
fi
}
info () {
# <name> <string> <args>
local name="$1"
local fmt="$2"
shift; shift
if [ "$USE_DEBIANINSTALLER_INTERACTION" ]; then
(echo "I: $name"
for x in "$@"; do echo "IA: $x"; done
echo "IF: $fmt") >&4
else
printf "I: $fmt\n" "$@" >&4
fi
}
PROGRESS_NOW=0
PROGRESS_END=0
PROGRESS_NEXT=""
PROGRESS_WHAT=""
progress_next () {
PROGRESS_NEXT="$1"
}
wgetprogress () {
[ ! "$verbose" ] && QSWITCH="-q"
local ret=0
if [ "$USE_DEBIANINSTALLER_INTERACTION" ] && [ "$PROGRESS_NEXT" ]; then
wget "$@" 2>&1 >/dev/null | $PKGDETAILS "WGET%" $PROGRESS_NOW $PROGRESS_NEXT $PROGRESS_END >&3
ret=$?
elif [ "$USE_BOOTFLOPPIES_INTERACTION" ] && [ "$PROGRESS_NEXT" ]; then
wget "$@" 2>&1 >/dev/null | $PKGDETAILS "WGET%" $PROGRESS_NOW $PROGRESS_NEXT $PROGRESS_END "$PROGRESS_WHAT" >&3
ret=$?
else
wget $QSWITCH "$@"
ret=$?
fi
return $ret
}
progress () {
# <now> <end> <name> <string> <args>
local now="$1"
local end="$2"
local name="$3"
local fmt="$4"
shift; shift; shift; shift
if [ "$USE_DEBIANINSTALLER_INTERACTION" ]; then
PROGRESS_NOW="$now"
PROGRESS_END="$end"
PROGRESS_NEXT=""
(echo "P: $now $end $name"
for x in "$@"; do echo "PA: $x"; done
echo "PF: $fmt") >&3
elif [ "$USE_BOOTFLOPPIES_INTERACTION" ]; then
PROGRESS_NOW="$now"
PROGRESS_END="$end"
PROGRESS_WHAT="`printf "$fmt" "$@"`"
PROGRESS_NEXT=""
printf "P: %s %s %s\n" $now $end "$PROGRESS_WHAT" >&3
fi
}
dpkg_progress () {
# <now> <end> <name> <desc> UNPACKING|CONFIGURING
local now="$1"
local end="$2"
local name="$3"
local desc="$4"
local action="$5"
local expect=
if [ "$action" = UNPACKING ]; then
expect=half-installed
elif [ "$action" = CONFIGURING ]; then
expect=half-configured
fi
dp () {
now="$(($now + ${1:-1}))"
}
exitcode=0
while read status pkg qstate; do
if [ "$status" = "EXITCODE" ]; then
exitcode="$pkg"
continue
fi
[ "$qstate" = "$expect" ] || continue
case $qstate in
half-installed)
dp; progress "$now" "$end" "$name" "$desc"
info "$action" "Unpacking %s..." "${pkg%:}"
expect=unpacked
;;
unpacked)
expect=half-installed
;;
half-configured)
dp; progress "$now" "$end" "$name" "$desc"
info "$action" "Configuring %s..." "${pkg%:}"
expect=installed
;;
installed)
expect=half-configured
;;
esac
done
return $exitcode
}
############################################################# set variables
default_mirror () {
DEF_MIRROR="$1"
}
FINDDEBS_NEEDS_INDICES=false
finddebs_style () {
case "$1" in
hardcoded)
;;
from-indices)
FINDDEBS_NEEDS_INDICES=true
;;
*)
error 1 BADFINDDEBS "unknown finddebs style"
;;
esac
}
mk_download_dirs () {
if [ $DLDEST = "apt_dest" ]; then
mkdir -p "$TARGET/$APTSTATE/lists/partial"
mkdir -p "$TARGET/var/cache/apt/archives/partial"
fi
}
download_style () {
case "$1" in
apt)
if [ "$2" = "var-state" ]; then
APTSTATE=var/state/apt
else
APTSTATE=var/lib/apt
fi
DLDEST=apt_dest
export APTSTATE DLDEST DEBFOR
;;
*)
error 1 BADDLOAD "unknown download style"
;;
esac
}
keyring () {
if [ -z "$KEYRING" ] && [ -e "$1" ]; then
KEYRING="$1"
fi
}
########################################################## variant handling
doing_variant () {
if [ "$1" = "$VARIANT" ]; then return 0; fi
if [ "$1" = "-" ] && [ "$VARIANT" = "" ]; then return 0; fi
return 1
}
SUPPORTED_VARIANTS="-"
variants () {
SUPPORTED_VARIANTS="$*"
for v in $*; do
if doing_variant "$v"; then return 0; fi
done
error 1 UNSUPPVARIANT "unsupported variant"
}
################################################# work out names for things
mirror_style () {
case "$1" in
release)
DOWNLOAD_INDICES=download_release_indices
DOWNLOAD_DEBS=download_release
;;
main)
DOWNLOAD_INDICES=download_main_indices
DOWNLOAD_DEBS=download_main
;;
*)
error 1 BADMIRROR "unknown mirror style"
;;
esac
export DOWNLOAD_INDICES
export DOWNLOAD_DEBS
}
verify_checksum () {
# args: dest checksum size
local expchecksum="$2"
local expsize="$3"
relchecksum=`sha${SHA_SIZE}sum < "$1" | sed 's/ .*$//'`
relsize=`wc -c < "$1"`
if [ "$expsize" -ne "$relsize" ] || [ "$expchecksum" != "$relchecksum" ]; then
return 1
fi
return 0
}
get () {
# args: from dest 'nocache'
# args: from dest [checksum size] [alt {checksum size type}]
local displayname
if [ "${2%.deb}" != "$2" ]; then
displayname="$(echo "$2" | sed 's,^.*/,,;s,_.*$,,')"
else
displayname="$(echo "$1" | sed 's,^.*/,,')"
fi
if [ -e "$2" ]; then
if [ -z "$3" ]; then
return 0
elif [ "$3" = nocache ]; then
rm -f "$2"
else
info VALIDATING "Validating %s" "$displayname"
if verify_checksum "$2" "$3" "$4"; then
return 0
else
rm -f "$2"
fi
fi
fi
# Drop 'nocache' option
if [ "$3" = nocache ]; then
set "$1" "$2"
fi
if [ "$#" -gt 5 ]; then
local st=3
if [ "$5" = "-" ]; then st=6; fi
local order="$(a=$st; while [ "$a" -le $# ]; do eval echo \"\${$(($a+1))}\" $a;
a=$(($a + 3)); done | sort -n | sed 's/.* //')"
else
local order=3
fi
for a in $order; do
local checksum="$(eval echo \${$a})"
local siz="$(eval echo \${$(( $a+1 ))})"
local typ="$(eval echo \${$(( $a+2 ))})"
local from
local dest
case "$typ" in
bz2) from="$1.bz2"; dest="$2.bz2" ;;
gz) from="$1.gz"; dest="$2.gz" ;;
*) from="$1"; dest="$2" ;;
esac
if [ "${dest#/}" = "$dest" ]; then
dest="./$dest"
fi
local dest2="$dest"
if [ -d "${dest2%/*}/partial" ]; then
dest2="${dest2%/*}/partial/${dest2##*/}"
fi
info RETRIEVING "Retrieving %s" "$displayname"
if ! just_get "$from" "$dest2"; then continue; fi
if [ "$checksum" != "" ]; then
info VALIDATING "Validating %s" "$displayname"
if verify_checksum "$dest2" "$checksum" "$siz"; then
checksum=""
fi
fi
if [ -z "$checksum" ]; then
[ "$dest2" = "$dest" ] || mv "$dest2" "$dest"
case "$typ" in
gz) gunzip "$dest" ;;
bz2) bunzip2 "$dest" ;;
esac
return 0
else
warning CORRUPTFILE "%s was corrupt" "$from"
fi
done
return 1
}
just_get () {
# args: from dest
local from="$1"
local dest="$2"
mkdir -p "${dest%/*}"
if [ "${from#null:}" != "$from" ]; then
error 1 NOTPREDL "%s was not pre-downloaded" "${from#null:}"
elif [ "${from#http://}" != "$from" ] || [ "${from#ftp://}" != "$from" ]; then
# http/ftp mirror
if wgetprogress -O "$dest" "$from"; then
return 0
elif [ -s "$dest" ]; then
local iters=0
while [ "$iters" -lt 3 ]; do
warning RETRYING "Retrying failed download of %s" "$from"
if wgetprogress -c -O "$dest" "$from"; then break; fi
iters="$(($iters + 1))"
done
else
rm -f "$dest"
return 1
fi
elif [ "${from#https://}" != "$from" ] ; then
# http/ftp mirror
if wgetprogress $CHECKCERTIF $CERTIFICATE $PRIVATEKEY -O "$dest" "$from"; then
return 0
elif [ -s "$dest" ]; then
local iters=0
while [ "$iters" -lt 3 ]; do
warning RETRYING "Retrying failed download of %s" "$from"
if wgetprogress $CHECKCERTIF $CERTIFICATE $PRIVATEKEY -c -O "$dest" "$from"; then break; fi
iters="$(($iters + 1))"
done
else
rm -f "$dest"
return 1
fi
elif [ "${from#file:}" != "$from" ]; then
local base="${from#file:}"
if [ "${base#//}" != "$base" ]; then
base="/${from#file://*/}"
fi
if [ -e "$base" ]; then
cp "$base" "$dest"
return 0
else
return 1
fi
elif [ "${from#ssh:}" != "$from" ]; then
local ssh_dest="$(echo $from | sed -e 's#ssh://##' -e 's#/#:/#')"
if [ -n "$ssh_dest" ]; then
scp "$ssh_dest" "$dest"
return 0
else
return 1
fi
else
error 1 UNKNOWNLOC "unknown location %s" "$from"
fi
}
download () {
mk_download_dirs
"$DOWNLOAD_DEBS" $(echo "$@" | tr ' ' '\n' | sort)
}
download_indices () {
mk_download_dirs
"$DOWNLOAD_INDICES" $(echo "$@" | tr ' ' '\n' | sort)
}
debfor () {
(while read pkg path; do
for p in "$@"; do
[ "$p" = "$pkg" ] || continue;
echo "$path"
done
done <"$TARGET/debootstrap/debpaths"
)
}
apt_dest () {
# args:
# deb package version arch mirror path
# pkg suite component arch mirror path
# rel suite mirror path
case "$1" in
deb)
echo "/var/cache/apt/archives/${2}_${3}_${4}.deb" | sed 's/:/%3a/'
;;
pkg)
local m="$5"
m="debootstrap.invalid"
#if [ "${m#http://}" != "$m" ]; then
# m="${m#http://}"
#elif [ "${m#file://}" != "$m" ]; then
# m="file_localhost_${m#file://*/}"
#elif [ "${m#file:/}" != "$m" ]; then
# m="file_localhost_${m#file:/}"
#fi
printf "%s" "$APTSTATE/lists/"
echo "${m}_$6" | sed 's/\//_/g'
;;
rel)
local m="$3"
m="debootstrap.invalid"
#if [ "${m#http://}" != "$m" ]; then
# m="${m#http://}"
#elif [ "${m#file://}" != "$m" ]; then
# m="file_localhost_${m#file://*/}"
#elif [ "${m#file:/}" != "$m" ]; then
# m="file_localhost_${m#file:/}"
#fi
printf "%s" "$APTSTATE/lists/"
echo "${m}_$4" | sed 's/\//_/g'
;;
esac
}
################################################################## download
get_release_checksum () {
local reldest="$1"
local path="$2"
sed -n "/^[Sa][Hh][Aa]$SHA_SIZE:/,/^[^ ]/p" < "$reldest" | \
while read a b c; do
if [ "$c" = "$path" ]; then echo "$a $b"; fi
done | head -n 1
}
download_release_sig () {
local m1="$1"
local reldest="$2"
local relsigdest="$TARGET/$($DLDEST rel "$SUITE" "$m1" "dists/$SUITE/Release.gpg")"
if [ -n "$KEYRING" ] && [ -z "$DISABLE_KEYRING" ]; then
progress 0 100 DOWNRELSIG "Downloading Release file signature"
progress_next 50
get "$m1/dists/$SUITE/Release.gpg" "$relsigdest" nocache ||
error 1 NOGETRELSIG "Failed getting release signature file %s" \
"$m1/dists/$SUITE/Release.gpg"
progress 50 100 DOWNRELSIG "Downloading Release file signature"
info RELEASESIG "Checking Release signature"
# Don't worry about the exit status from gpgv; parsing the output will
# take care of that.
(gpgv --status-fd 1 --keyring "$KEYRING" --ignore-time-conflict \
"$relsigdest" "$reldest" || true) | read_gpg_status
progress 100 100 DOWNRELSIG "Downloading Release file signature"
fi
}
download_release_indices () {
local m1="${MIRRORS%% *}"
local reldest="$TARGET/$($DLDEST rel "$SUITE" "$m1" "dists/$SUITE/Release")"
progress 0 100 DOWNREL "Downloading Release file"
progress_next 100
get "$m1/dists/$SUITE/Release" "$reldest" nocache ||
error 1 NOGETREL "Failed getting release file %s" "$m1/dists/$SUITE/Release"
TMPCOMPONENTS="$(sed -n 's/Components: *//p' "$reldest")"
for c in $TMPCOMPONENTS ; do
eval "
case \"\$c\" in
$USE_COMPONENTS)
COMPONENTS=\"\$COMPONENTS \$c\"
;;
esac
"
done
COMPONENTS="$(echo $COMPONENTS)"
if [ -z "$COMPONENTS" ]; then
mv "$reldest" "$reldest.malformed"
error 1 INVALIDREL "Invalid Release file, no valid components"
fi
progress 100 100 DOWNREL "Downloading Release file"
download_release_sig "$m1" "$reldest"
local totalpkgs=0
for c in $COMPONENTS; do
local subpath="$c/binary-$ARCH/Packages"
local bz2i="`get_release_checksum "$reldest" "$subpath.bz2"`"
local gzi="`get_release_checksum "$reldest" "$subpath.gz"`"
local normi="`get_release_checksum "$reldest" "$subpath"`"
local i=
if [ "$normi" != "" ]; then
i="$normi"
elif [ -x /bin/bunzip2 ] && [ "$bz2i" != "" ]; then
i="$bz2i"
elif [ -x /bin/gunzip ] && [ "$gzi" != "" ]; then
i="$gzi"
fi
if [ "$i" != "" ]; then
totalpkgs="$(( $totalpkgs + ${i#* } ))"
else
mv "$reldest" "$reldest.malformed"
error 1 MISSINGRELENTRY "Invalid Release file, no entry for %s" "$subpath"
fi
done
local donepkgs=0
local pkgdest
progress 0 $totalpkgs DOWNPKGS "Downloading Packages files"
for c in $COMPONENTS; do
local subpath="$c/binary-$ARCH/Packages"
local path="dists/$SUITE/$subpath"
local bz2i="`get_release_checksum "$reldest" "$subpath.bz2"`"
local gzi="`get_release_checksum "$reldest" "$subpath.gz"`"
local normi="`get_release_checksum "$reldest" "$subpath"`"
local ext=
local i=
if [ "$normi" != "" ]; then
ext="$ext $normi ."
i="$normi"
fi
if [ -x /bin/bunzip2 ] && [ "$bz2i" != "" ]; then
ext="$ext $bz2i bz2"
i="${i:-$bz2i}"
fi
if [ -x /bin/gunzip ] && [ "$gzi" != "" ]; then
ext="$ext $gzi gz"
i="${i:-$gzi}"
fi
progress_next "$(($donepkgs + ${i#* }))"
for m in $MIRRORS; do
pkgdest="$TARGET/$($DLDEST pkg "$SUITE" "$c" "$ARCH" "$m" "$path")"
if get "$m/$path" "$pkgdest" $ext; then break; fi
done
if [ ! -f "$pkgdest" ]; then
error 1 COULDNTDL "Couldn't download %s" "$path"
fi
donepkgs="$(($donepkgs + ${i#* }))"
progress $donepkgs $totalpkgs DOWNPKGS "Downloading Packages files"
done
}
get_package_sizes () {
# mirror pkgdest debs..
local m="$1"; shift
local pkgdest="$1"; shift
$PKGDETAILS PKGS "$m" "$pkgdest" "$@" | (
newleft=""
totaldebs=0
countdebs=0
while read p details; do
if [ "$details" = "-" ]; then
newleft="$newleft $p"
else
size="${details##* }";
totaldebs="$(($totaldebs + $size))"
countdebs="$(($countdebs + 1))"
fi
done
echo "$countdebs $totaldebs$newleft"
)
}
# note, leftovers come back on fd5 !!
download_debs () {
local m="$1"
local pkgdest="$2"
shift; shift
$PKGDETAILS PKGS "$m" "$pkgdest" "$@" | (
leftover=""
while read p ver arc mdup fil checksum size; do
if [ "$ver" = "-" ]; then
leftover="$leftover $p"
else
progress_next "$(($dloaddebs + $size))"
local debdest="$($DLDEST deb "$p" "$ver" "$arc" "$m" "$fil")"
if get "$m/$fil" "$TARGET/$debdest" "$checksum" "$size"; then
dloaddebs="$(($dloaddebs + $size))"
echo >>$TARGET/debootstrap/debpaths "$p $debdest"
else
warning COULDNTDL "Couldn't download package %s" "$p"
fi
fi
done
echo >&5 ${leftover# }
)
}
download_release () {
local m1="${MIRRORS%% *}"
local numdebs="$#"
local countdebs=0
progress $countdebs $numdebs SIZEDEBS "Finding package sizes"
local totaldebs=0
local leftoverdebs="$*"
for c in $COMPONENTS; do
if [ "$countdebs" -ge "$numdebs" ]; then break; fi
local path="dists/$SUITE/$c/binary-$ARCH/Packages"
local pkgdest="$TARGET/$($DLDEST pkg "$SUITE" "$c" "$ARCH" "$m1" "$path")"
if [ ! -e "$pkgdest" ]; then continue; fi
info CHECKINGSIZES "Checking component %s on %s..." "$c" "$m1"
leftoverdebs="$(get_package_sizes "$m1" "$pkgdest" $leftoverdebs)"
countdebs=$(($countdebs + ${leftoverdebs%% *}))
leftoverdebs=${leftoverdebs#* }
totaldebs=${leftoverdebs%% *}
leftoverdebs=${leftoverdebs#* }
progress $countdebs $numdebs SIZEDEBS "Finding package sizes"
done
if [ "$countdebs" -ne "$numdebs" ]; then
error 1 LEFTOVERDEBS "Couldn't find these debs: %s" "$leftoverdebs"
fi
local dloaddebs=0
progress $dloaddebs $totaldebs DOWNDEBS "Downloading packages"
:>$TARGET/debootstrap/debpaths
pkgs_to_get="$*"
for c in $COMPONENTS; do
local path="dists/$SUITE/$c/binary-$ARCH/Packages"
for m in $MIRRORS; do
local pkgdest="$TARGET/$($DLDEST pkg "$SUITE" "$c" "$ARCH" "$m" "$path")"
if [ ! -e "$pkgdest" ]; then continue; fi
pkgs_to_get="$(download_debs "$m" "$pkgdest" $pkgs_to_get 5>&1 1>&6)"
if [ -z "$pkgs_to_get" ]; then break; fi
done 6>&1
if [ -z "$pkgs_to_get" ]; then break; fi
done
progress $dloaddebs $totaldebs DOWNDEBS "Downloading packages"
if [ "$pkgs_to_get" != "" ]; then
error 1 COULDNTDLPKGS "Couldn't download packages: %s" "$pkgs_to_get"
fi
}
download_main_indices () {
local m1="${MIRRORS%% *}"
local comp="${USE_COMPONENTS}"
progress 0 100 DOWNMAINPKGS "Downloading Packages file"
progress_next 100
if [ -z "$comp" ]; then comp=main; fi
COMPONENTS="$(echo $comp | tr '|' ' ')"
export COMPONENTS
for m in $MIRRORS; do
for c in $COMPONENTS; do
local path="dists/$SUITE/$c/binary-$ARCH/Packages"
local pkgdest="$TARGET/$($DLDEST pkg "$SUITE" "$c" "$ARCH" "$m" "$path")"
if [ -x /bin/gunzip ] && get "$m/${path}.gz" "${pkgdest}.gz"; then
rm -f "$pkgdest"
gunzip "$pkgdest.gz"
elif get "$m/$path" "$pkgdest"; then
true
fi
done
done
progress 100 100 DOWNMAINPKGS "Downloading Packages file"
}
download_main () {
local m1="${MIRRORS%% *}"
:>$TARGET/debootstrap/debpaths
for p in "$@"; do
for c in $COMPONENTS; do
local details=""
for m in $MIRRORS; do
local path="dists/$SUITE/$c/binary-$ARCH/Packages"
local pkgdest="$TARGET/$($DLDEST pkg "$SUITE" "$c" "$ARCH" "$m" "$path")"
if [ ! -e "$pkgdest" ]; then continue; fi
details="$($PKGDETAILS PKGS "$m" "$pkgdest" "$p")"
if [ "$details" = "$p -" ]; then
details=""
continue
fi
size="${details##* }"; details="${details% *}"
checksum="${details##* }"; details="${details% *}"
local debdest="$($DLDEST deb $details)"
if get "$m/${details##* }" "$TARGET/$debdest" "$checksum" "$size"; then
echo >>$TARGET/debootstrap/debpaths "$p $debdest"
details="done"
break
fi
done
if [ "$details" != "" ]; then
break
fi
done
if [ "$details" != "done" ]; then
error 1 COULDNTDL "Couldn't download %s" "$p"
fi
done
}
###################################################### deb choosing support
get_debs () {
local field="$1"
shift
local m1 c
for m1 in $MIRRORS; do
for c in $COMPONENTS; do
local path="dists/$SUITE/$c/binary-$ARCH/Packages"
local pkgdest="$TARGET/$($DLDEST pkg "$SUITE" "$c" "$ARCH" "$m1" "$path")"
echo $("$PKGDETAILS" FIELD "$field" "$m1" "$pkgdest" "$@" | sed 's/ .*//')
done
done
}
################################################################ extraction
EXTRACTORS_SUPPORTED="dpkg-deb ar"
# Native dpkg-deb based extractors
extract_dpkg_deb_field () {
local pkg="$1"
local field="$2"
dpkg-deb -f "$pkg" "$field"
}
extract_dpkg_deb_data () {
local pkg="$1"
dpkg-deb --fsys-tarfile "$pkg" | tar -xf -
}
# Raw .deb extractors
extract_ar_deb_field () {
local pkg="$1"
local field="$2"
ar -p "$pkg" control.tar.gz | zcat |
tar -O -xf - control ./control 2>/dev/null |
grep -i "^$field:" | sed -e 's/[^:]*: *//' | head -n 1
}
extract_ar_deb_data () {
local pkg="$1"
local tarball=$(ar -t "$pkg" | grep "^data.tar.[bgx]z")
case "$tarball" in
data.tar.gz) cat_cmd=zcat ;;
data.tar.bz2) cat_cmd=bzcat ;;
data.tar.xz) cat_cmd=xzcat ;;
*) error 1 UNKNOWNDATACOMP "Unknown compression type for %s in %s" "$tarball" "$pkg" ;;
esac
if type $cat_cmd >/dev/null 2>&1; then
ar -p "$pkg" "$tarball" | $cat_cmd | tar -xf -
else
error 1 UNPACKCMDUNVL "The $cat_cmd is not available on the system"
fi
}
valid_extractor () {
local extractor="$1"
for E in $EXTRACTORS_SUPPORTED; do
if [ "$extractor" = "$E" ]; then
return 0
fi
done
return 1
}
choose_extractor () {
local extractor
if [ -n "$EXTRACTOR_OVERRIDE" ]; then
extractor="$EXTRACTOR_OVERRIDE"
elif type dpkg-deb >/dev/null 2>&1; then
extractor="dpkg-deb"
else
extractor="ar"
fi
info CHOSENEXTRACTOR "Chosen extractor for .deb packages: %s" "$extractor"
case "$extractor" in
dpkg-deb)
extract_deb_field () { extract_dpkg_deb_field "$@"; }
extract_deb_data () { extract_dpkg_deb_data "$@"; }
;;
ar)
extract_deb_field () { extract_ar_deb_field "$@"; }
extract_deb_data () { extract_ar_deb_data "$@"; }
;;
esac
}
extract () { (
cd "$TARGET"
local p=0 cat_cmd
for pkg in $(debfor "$@"); do
p="$(($p + 1))"
progress "$p" "$#" EXTRACTPKGS "Extracting packages"
packagename="$(echo "$pkg" | sed 's,^.*/,,;s,_.*$,,')"
info EXTRACTING "Extracting %s..." "$packagename"
extract_deb_data "./$pkg"
done
); }
in_target_nofail () {
if ! $CHROOT_CMD "$@" 2>/dev/null; then
true
fi
return 0
}
in_target_failmsg () {
local code="$1"
local msg="$2"
local arg="$3"
shift; shift; shift
if ! $CHROOT_CMD "$@"; then
warning "$code" "$msg" "$arg"
return 1
fi
return 0
}
in_target () {
in_target_failmsg IN_TARGET_FAIL "Failure trying to run: %s" "$CHROOT_CMD $*" "$@"
}
###################################################### standard setup stuff
conditional_cp () {
if [ ! -e "$2/$1" ]; then
if [ -L "$1" ] && [ -e "$1" ]; then
cat "$1" >"$2/$1"
elif [ -e "$1" ]; then
cp -a "$1" "$2/$1"
fi
fi
}
mv_invalid_to () {
local m="$1"
m="$(echo "${m#http://}" | tr '/' '_' | sed 's/_*//')"
(cd "$TARGET/$APTSTATE/lists"
for a in debootstrap.invalid_*; do
mv "$a" "${m}_${a#*_}"
done
)
}
setup_apt_sources () {
mkdir -p "$TARGET/etc/apt"
for m in "$@"; do
local cs=""
for c in $COMPONENTS; do
local path="dists/$SUITE/$c/binary-$ARCH/Packages"
local pkgdest="$TARGET/$($DLDEST pkg "$SUITE" "$c" "$ARCH" "$m" "$path")"
if [ -e "$pkgdest" ]; then cs="$cs $c"; fi
done
if [ "$cs" != "" ]; then echo "deb $m $SUITE$cs"; fi
done > "$TARGET/etc/apt/sources.list"
}
setup_etc () {
mkdir -p "$TARGET/etc"
conditional_cp /etc/resolv.conf "$TARGET"
conditional_cp /etc/hostname "$TARGET"
if [ "$DLDEST" = apt_dest ] && [ ! -e "$TARGET/etc/apt/sources.list" ]; then
setup_apt_sources "http://debootstrap.invalid/"
fi
}
UMOUNT_DIRS=
umount_exit_function () {
for dir in $UMOUNT_DIRS; do
umount "$TARGET/${dir#/}" || true
done
}
umount_on_exit () {
if [ "$UMOUNT_DIRS" ]; then
UMOUNT_DIRS="$UMOUNT_DIRS $1"
else
UMOUNT_DIRS="$1"
on_exit umount_exit_function
fi
}
clear_mtab () {
if [ -f "$TARGET/etc/mtab" ] && [ ! -h "$TARGET/etc/mtab" ]; then
rm -f "$TARGET/etc/mtab"
fi
}
setup_proc () {
case "$ARCH" in
kfreebsd-*)
umount_on_exit /dev
umount_on_exit /proc
umount "$TARGET/proc" 2>/dev/null || true
in_target mount -t linprocfs proc /proc
;;
hurd-*)
;;
*)
umount_on_exit /dev/pts
umount_on_exit /dev/shm
umount_on_exit /proc/bus/usb
umount_on_exit /proc
umount "$TARGET/proc" 2>/dev/null || true
in_target mount -t proc proc /proc
if [ -d "$TARGET/sys" ] && \
grep -q '[[:space:]]sysfs' /proc/filesystems 2>/dev/null; then
umount_on_exit /sys
umount "$TARGET/sys" 2>/dev/null || true
in_target mount -t sysfs sysfs /sys
fi
on_exit clear_mtab
;;
esac
umount_on_exit /lib/init/rw
}
setup_proc_fakechroot () {
rm -rf "$TARGET/proc"
ln -s /proc "$TARGET"
}
setup_devices () {
case "$ARCH" in
kfreebsd-*)
in_target mount -t devfs devfs /dev ;;
hurd-*)
setup_devices_hurd ;;
*)
if [ -e "$DEVICES_TARGZ" ]; then
zcat "$DEVICES_TARGZ" | (cd "$TARGET"; tar -xf -)
else
if [ -e /dev/.devfsd ] ; then
in_target mount -t devfs devfs /dev
else
error 1 NODEVTGZ "no %s. cannot create devices" "$DEVICES_TARGZ"
fi
fi
;;
esac
}
setup_devices_hurd () {
# Use the setup-translators of the hurd package, and firmlink
# $TARGET/{dev,servers} to the system ones.
in_target /usr/lib/hurd/setup-translators -k
settrans -a $TARGET/dev /hurd/firmlink /dev
settrans -a $TARGET/servers /hurd/firmlink /servers
}
setup_devices_fakechroot () {
rm -rf "$TARGET/dev"
ln -s /dev "$TARGET"
}
setup_dselect_method () {
case "$1" in
apt)
mkdir -p "$TARGET/var/lib/dpkg"
echo "apt apt" > "$TARGET/var/lib/dpkg/cmethopt"
chmod 644 "$TARGET/var/lib/dpkg/cmethopt"
;;
*)
error 1 UNKNOWNDSELECT "unknown dselect method"
;;
esac
}
################################################################ pkgdetails
# NOTE
# For the debootstrap udeb, pkgdetails is provided by the bootstrap-base
# udeb, so the pkgdetails API needs to be kept in sync with that.
if [ -x /usr/bin/perl ]; then
PKGDETAILS=pkgdetails_perl
pkgdetails_field () {
# uniq field mirror Packages values...
perl -le '
$unique = shift @ARGV; $field = lc(shift @ARGV); $mirror = shift @ARGV;
$cnt = length(@ARGV);
%fields = map { $_, 0 } @ARGV;
while (<STDIN>) {
chomp;
next if (/^ /);
if (/^([^:]*:)\s*(.*)$/) {
$f = lc($1); $v = $2;
$pkg = $v if ($f eq "package:");
$ver = $v if ($f eq "version:");
$arc = $v if ($f eq "architecture:");
$fil = $v if ($f eq "filename:");
$chk = $v if ($f eq lc($ENV{DEBOOTSTRAP_CHECKSUM_FIELD}).":");
$siz = $v if ($f eq "size:");
$val = $v if ($f eq $field);
} elsif (/^$/) {
if (defined $val && defined $fields{$val}) {
$cnt++;
printf "%s %s %s %s %s %s %s\n",
$pkg, $ver, $arc, $mirror, $fil, $chk, $siz;
if ($unique) {
delete $fields{$val};
last if (--$cnt <= 0);
}
}
undef $val;
}
}
for $v (keys %fields) {
printf ("%s -\n", $v) if ($unique);
}
' "$@"
}
pkgdetails_perl () {
if [ "$1" = "WGET%" ]; then
shift;
perl -e '
$v = 0;
while (read STDIN, $x, 1) {
if ($x =~ m/\d/) {
$v *= 10;
$v += $x;
} elsif ($x eq "%") {
printf "P: %d %d%s\n", int($v / 100.0 * ($ARGV[1] - $ARGV[0]) + $ARGV[0]), $ARGV[2], ($#ARGV == 3 ? " $ARGV[3]" : "");
$v = 0;
} else {
$v = 0;
}
}' "$@"
elif [ "$1" = "GETDEPS" ]; then
local pkgdest="$2"; shift; shift
perl -e '
while (<STDIN>) {
chomp;
$in = 1 if (/^Package: (.*)$/ && grep {$_ eq $1} @ARGV);
$in = 0 if (/^$/);
if ($in and (/^Depends: (.*)$/ or /^Pre-Depends: (.*)$/)) {
for $d (split /\s*,\s*/, $1) {
$d =~ s/\s*[|].*$//;
$d =~ s/\s*[(].*[)]\s*//;
print "$d\n";
}
}
}' <"$pkgdest" "$@" | sort | uniq
elif [ "$1" = "PKGS" ]; then
local m="$2"
local p="$3"
shift; shift; shift
pkgdetails_field 1 Package: "$m" "$@" < "$p"
elif [ "$1" = "FIELD" ]; then
local f="$2"
local m="$3"
local p="$4"
shift; shift; shift; shift
pkgdetails_field 0 "$f" "$m" "$@" < "$p"
elif [ "$1" = "STANZAS" ]; then
local pkgdest="$2"; shift; shift
perl -e '
my $accum = "";
while (<STDIN>) {
$accum .= $_;
$in = 1 if (/^Package: (.*)$/ && grep {$_ eq $1} @ARGV);
if ($in and /^$/) {
print $accum;
if (substr($accum, -1) != "\n") {
print "\n\n";
} elsif (substr($accum, -2, 1) != "\n") {
print "\n";
}
$in = 0;
}
$accum = "" if /^$/;
}' <"$pkgdest" "$@"
fi
}
elif [ -e "/usr/lib/debootstrap/pkgdetails" ]; then
PKGDETAILS="/usr/lib/debootstrap/pkgdetails"
elif [ -e "$DEBOOTSTRAP_DIR/pkgdetails" ]; then
PKGDETAILS="$DEBOOTSTRAP_DIR/pkgdetails"
else
PKGDETAILS=""
fi
##################################################### dependency resolution
resolve_deps () {
local m1="${MIRRORS%% *}"
# XXX: I can't think how to deal well with dependency resolution and
# lots of Packages files. -- aj 2005/06/12
c="${COMPONENTS%% *}"
local path="dists/$SUITE/$c/binary-$ARCH/Packages"
local pkgdest="$TARGET/$($DLDEST pkg "$SUITE" "$c" "$ARCH" "$m1" "$path")"
local PKGS="$*"
local ALLPKGS="$PKGS";
local ALLPKGS2="";
while [ "$PKGS" != "" ]; do
PKGS=$("$PKGDETAILS" GETDEPS "$pkgdest" $PKGS)
PKGS=$("$PKGDETAILS" PKGS REAL "$pkgdest" $PKGS | sed -n 's/ .*REAL.*$//p')
ALLPKGS2=$(echo "$PKGS $ALLPKGS" | tr ' ' '\n' | sort | uniq)
PKGS=$(without "$ALLPKGS2" "$ALLPKGS")
ALLPKGS="$ALLPKGS2"
done
echo $ALLPKGS
}
setup_available () {
local m1="${MIRRORS%% *}"
for c in $COMPONENTS; do
local path="dists/$SUITE/$c/binary-$ARCH/Packages"
local pkgdest="$TARGET/$($DLDEST pkg "$SUITE" "$c" "$ARCH" "$m1" "$path")"
# XXX: What if a package is in more than one component?
# -- cjwatson 2009-07-29
"$PKGDETAILS" STANZAS "$pkgdest" "$@"
done >"$TARGET/var/lib/dpkg/available"
for pkg; do
echo "$pkg install"
done | in_target dpkg --set-selections
}
get_next_predep () {
local stanza="$(in_target_nofail dpkg --predep-package)"
[ "$stanza" ] || return 1
echo "$stanza" | grep '^Package:' | sed 's/^Package://; s/^ *//'
}
################################################################### helpers
# Return zero if it is possible to create devices and execute programs in
# this directory. (Both may be forbidden by mount options, e.g. nodev and
# noexec respectively.)
check_sane_mount () {
mkdir -p "$1"
case "$ARCH" in
kfreebsd-*|hurd-*)
;;
*)
mknod "$1/test-dev-null" c 1 3 || return 1
if ! echo test > "$1/test-dev-null"; then
rm -f "$1/test-dev-null"
return 1
fi
rm -f "$1/test-dev-null"
;;
esac
cat > "$1/test-exec" <<EOF
#! /bin/sh
:
EOF
chmod +x "$1/test-exec"
if ! "$1/test-exec"; then
rm -f "$1/test-exec"
return 1
fi
rm -f "$1/test-exec"
return 0
}
read_gpg_status () {
badsig=
unkkey=
validsig=
while read prefix keyword keyid rest; do
[ "$prefix" = '[GNUPG:]' ] || continue
case $keyword in
BADSIG) badsig="$keyid" ;;
NO_PUBKEY) unkkey="$keyid" ;;
VALIDSIG) validsig="$keyid" ;;
esac
done
if [ "$validsig" ]; then
info VALIDRELSIG "Valid Release signature (key id %s)" "$validsig"
elif [ "$badsig" ]; then
error 1 BADRELSIG "Invalid Release signature (key id %s)" "$badsig"
elif [ "$unkkey" ]; then
error 1 UNKNOWNRELSIG "Release signed by unknown key (key id %s)" "$unkkey"
else
error 1 SIGCHECK "Error executing gpgv to check Release signature"
fi
}
without () {
# usage: without "a b c" "a d" -> "b" "c"
(echo $1 | tr ' ' '\n' | sort | uniq;
echo $2 $2 | tr ' ' '\n') | sort | uniq -u | tr '\n' ' '
echo
}
# Formerly called 'repeat', but that's a reserved word in zsh.
repeatn () {
local n="$1"
shift
while [ "$n" -gt 0 ]; do
if "$@"; then
break
else
n="$(( $n - 1 ))"
sleep 1
fi
done
if [ "$n" -eq 0 ]; then return 1; fi
return 0
}
N_EXIT_THINGS=0
exit_function () {
local n=0
while [ "$n" -lt "$N_EXIT_THINGS" ]; do
(eval $(eval echo \${EXIT_THING_$n}) 2>/dev/null || true)
n="$(( $n + 1 ))"
done
N_EXIT_THINGS=0
}
trap "exit_function" 0
trap "exit 129" 1
trap "error 130 INTERRUPTED \"Interrupt caught ... exiting\"" 2
trap "exit 131" 3
trap "exit 143" 15
on_exit () {
eval `echo EXIT_THING_${N_EXIT_THINGS}=\"$1\"`
N_EXIT_THINGS="$(( $N_EXIT_THINGS + 1 ))"
}
############################################################## fakechroot tools
install_fakechroot_tools () {
mv "$TARGET/sbin/ldconfig" "$TARGET/sbin/ldconfig.REAL"
echo \
"#!/bin/sh
echo
echo \"Warning: Fake ldconfig called, doing nothing\"" > "$TARGET/sbin/ldconfig"
chmod 755 "$TARGET/sbin/ldconfig"
echo \
"/sbin/ldconfig
/sbin/ldconfig.REAL
fakechroot" >> "$TARGET/var/lib/dpkg/diversions"
mv "$TARGET/usr/bin/ldd" "$TARGET/usr/bin/ldd.REAL"
cat << 'END' > "$TARGET/usr/bin/ldd"
#!/usr/bin/perl
# fakeldd
#
# Replacement for ldd with usage of objdump
#
# (c) 2003-2005 Piotr Roszatycki <dexter@debian.org>, BSD
my %libs = ();
my $status = 0;
my $dynamic = 0;
my $biarch = 0;
my $ldlinuxsodir = "/lib";
my @ld_library_path = qw(/usr/lib /lib);
sub ldso($) {
my ($lib) = @_;
my @files = ();
if ($lib =~ /^\//) {
$libs{$lib} = $lib;
push @files, $lib;
} else {
foreach my $ld_path (@ld_library_path) {
next unless -f "$ld_path/$lib";
my $badformat = 0;
open OBJDUMP, "objdump -p $ld_path/$lib 2>/dev/null |";
while (my $line = <OBJDUMP>) {
if ($line =~ /file format (\S*)$/) {
$badformat = 1 unless $format eq $1;
last;
}
}
close OBJDUMP;
next if $badformat;
$libs{$lib} = "$ld_path/$lib";
push @files, "$ld_path/$lib";
}
objdump(@files);
}
}
sub objdump(@) {
my (@files) = @_;
my @libs = ();
foreach my $file (@files) {
open OBJDUMP, "objdump -p $file 2>/dev/null |";
while (my $line = <OBJDUMP>) {
$line =~ s/^\s+//;
my @f = split (/\s+/, $line);
if ($line =~ /file format (\S*)$/) {
if (not $format) {
$format = $1;
if ($unamearch eq "x86_64" and $format eq "elf32-i386") {
my $link = readlink "/lib/ld-linux.so.2";
if ($link =~ /^\/emul\/ia32-linux\//) {
$ld_library_path[-2] = "/emul/ia32-linux/usr/lib";
$ld_library_path[-1] = "/emul/ia32-linux/lib";
}
} elsif ($unamearch =~ /^(sparc|sparc64)$/ and $format eq "elf64-sparc") {
$ldlinuxsodir = "/lib64";
$ld_library_path[-2] = "/usr/lib64";
$ld_library_path[-1] = "/lib64";
}
} else {
next unless $format eq $1;
}
}
if (not $dynamic and $f[0] eq "Dynamic") {
$dynamic = 1;
}
next unless $f[0] eq "NEEDED";
if ($f[1] =~ /^ld-linux(\.|-)/) {
$f[1] = "$ldlinuxsodir/" . $f[1];
}
if (not defined $libs{$f[1]}) {
$libs{$f[1]} = undef;
push @libs, $f[1];
}
}
close OBJDUMP;
}
foreach my $lib (@libs) {
ldso($lib);
}
}
if ($#ARGV < 0) {
print STDERR "fakeldd: missing file arguments\n";
exit 1;
}
while ($ARGV[0] =~ /^-/) {
my $arg = $ARGV[0];
shift @ARGV;
last if $arg eq "--";
}
open LD_SO_CONF, "/etc/ld.so.conf";
while ($line = <LD_SO_CONF>) {
chomp $line;
unshift @ld_library_path, $line;
}
close LD_SO_CONF;
unshift @ld_library_path, split(/:/, $ENV{LD_LIBRARY_PATH});
$unamearch = `/bin/uname -m`;
chomp $unamearch;
foreach my $file (@ARGV) {
my $address;
%libs = ();
$dynamic = 0;
if ($#ARGV > 0) {
print "$file:\n";
}
if (not -f $file) {
print STDERR "ldd: $file: No such file or directory\n";
$status = 1;
next;
}
objdump($file);
if ($dynamic == 0) {
print "\tnot a dynamic executable\n";
$status = 1;
} elsif (scalar %libs eq "0") {
print "\tstatically linked\n";
}
if ($format =~ /^elf64-/) {
$address = "0x0000000000000000";
} else {
$address = "0x00000000";
}
foreach $lib (keys %libs) {
if ($libs{$lib}) {
printf "\t%s => %s (%s)\n", $lib, $libs{$lib}, $address;
} else {
printf "\t%s => not found\n", $lib;
}
}
}
exit $status;
END
chmod 755 "$TARGET/usr/bin/ldd"
echo \
"/usr/bin/ldd
/usr/bin/ldd.REAL
fakechroot" >> "$TARGET/var/lib/dpkg/diversions"
}
|