-
Notifications
You must be signed in to change notification settings - Fork 106
/
Customize
executable file
·1151 lines (1028 loc) · 25.5 KB
/
Customize
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
#!/bin/sh
#
# $Id: Customize,v 1.9 2005/05/11 13:02:18 abe Exp $
#
# Customize: customize dialect's machine.h header file.
#
# Allows easy modification of some important compile-time definitions for
# lsof, made in the dialect's machine.h header file, including:
#
# HASSECURITY the security option
# HASNOSOCKSECURITY
# the socket oberalization of HASSECURITY
# HASDCACHE enabling/disabling the device cache file
# (Note: changing the device cache file option isn't
# offered when machine.h contains NEVER_HASDCACHE
# anywhere, including in a comment.)
# HASENVDC enabling/disabling device cache path from environment
# HASKERNIDCK enabling/disabling the kernel identity check
# (not done for some dialects)
# HASPERSDC enabling/disabling personal device cache path
# construction
# HASPERSDCPATH enabling/disabling additional personal device cache
# path component
# HASSYSDC enabling/disabling system-wide device cache file path
# HASXOPT_ROOT enabling/disabling root use of the -X option
# WARNDEVACCESS enabling inaccessible /dev node warnings
# (Note: changing the inaccessible /dev/node warning
# option isn't offered when machine.h contains
# NEVER_WARNDEVACCESS anywhere, including in a
# comment.)
# WARNINGSTATE enable/disabling default warning message state
#
# Usage: Customize [dialect_directory]
#
# where: dialect_directory (optional) is the directory in which the dialect's
# dialect's sources, Makefile and scripts are found
OLD=machine.h
NEW=new_machine.h
# Save optional dialect directory.
if test $# -eq 1
then
DialDir=$1
else
DialDir=""
fi
# Establish trap and stty handling.
ISIG=":"
trap 'rm -f $NEW; $ISIG; exit 1' 1 2 3 15
stty -a 2>&1 | grep isig > /dev/null
if test $? -eq 0
then
stty -a 2>&1 | egrep -e -isig > /dev/null
if test $? -eq 0
then
ISIG="stty -isig"
stty isig
fi
fi
# Decide how to use echo.
ECHO=`echo -n ""`
if test "X$ECHO" = "X-n "
then
EC="\c"
EO=""
else
EC=""
EO="-n"
fi
# Decide how to use tail(1).
TMP1=`tail -n 1 $0 2> /dev/null`
if test $? -eq 0 -a "X$TMP1" = "X#LAST_LINE"
then
TA="-n 1"
else
TA="-1"
fi
# Display the introduction and basic explanation.
cat << .CAT_MARK
You may now customize the machine.h header file for this UNIX
dialect. The customizations will take effect when you compile
lsof. You may also choose to skip customization and proceed to
the compilation of lsof.
If you don't know if you need to customize or want to know more
about what you can customize, consult the 00DCACHE, 00FAQ, 00PORTING,
and 00README files of the lsof distribution. You might also find
it helpful to examine the machine.h header file for the dialect
you're customizing.
You don't need to use this procedure to customize lsof; you can
edit the machine.h header file directly. If you later decide you
want to use this procedure to customize machine.h, execute the
./Customize script.
.CAT_MARK
END=0
while test $END -eq 0
do
echo ""
echo $EO "Do you want to customize (y|n) [y]? $EC"
read ANS EXCESS
if test "X$ANS" = "Xn" -o "X$ANS" = "XN"
then
exit 0
fi
if test "X$ANS" = "Xy" -o "X$ANS" = "XY" -o "X$ANS" = "X"
then
echo ""
echo "Customizing ..."
END=1
else
echo ""
echo "Please answer y|n [y]."
fi
done
# See if $OLD exists.
if test ! -r $OLD
then
echo ""
echo "FATAL: The file \"$OLD\" doesn't exist. Customization can't"
echo "continue without it."
echo ""
echo "Did you run the Configure script?"
echo ""
echo "Customize quits."
echo ""
exit 1
fi
# See if $NEW exists.
if test -r $NEW
then
echo ""
echo "====================================================================="
echo ""
echo "WARNING: \"$NEW\" exists. Customization will replace it."
END=0
while test $END -eq 0
do
echo ""
echo $EO "Do you want to remove $NEW (y|n) [y]? $EC"
read ANS EXCESS
if test "X$ANS" = "Xy" -o "X$ANS" = "XY" -o "X$ANS" = "X"
then
echo ""
echo "Removing $NEW"
echo ""
rm -f $NEW
END=1
else
if test "X$ANS" = "Xn" -o "X$ANS" = "XN"
then
echo ""
echo "FATAL: Customize quits; it must be able to create \"$NEW\"."
echo ""
exit 1
else
echo ""
echo "Please answer y|n [y]."
fi
fi
done
fi
# Process HASSECURITY.
cat << .CAT_MARK
=====================================================================
When HASSECURITY is enabled, only the root user may use lsof to
examine all open files; other users may examine only the files
belonging to the real user ID of their lsof process. If
HASNOSOCKSECURITY is also defined, anyone may list anyone else's
open socket files, provided their listing is selected with the "-i"
option.
When HASSECURITY is disabled, anyone may use lsof to examine all
open files.
.CAT_MARK
grep HASSECURITY $OLD | tail $TA | egrep "^#define" > /dev/null
if test $? -eq 0
then
echo "HASSECURITY is enabled."
NSEC=1
else
echo "HASSECURITY is disabled."
NSEC=0
fi
END=0
while test $END -eq 0
do
echo ""
if test $NSEC -eq 1
then
echo $EO "Disable HASSECURITY (y|n) [n]? $EC"
else
echo $EO "Enable HASSECURITY (y|n) [n]? $EC"
fi
read ANS EXCESS
if test "X$ANS" = "Xy" -o "X$ANS" = "XY"
then
echo ""
if test $NSEC -eq 1
then
NSEC=0
echo "HASSECURITY will be disabled."
else
NSEC=1
echo "HASSECURITY will be enabled."
fi
END=1
else
if test "X$ANS" = "Xn" -o "X$ANS" = "XN" -o "X$ANS" = "X"
then
echo ""
echo "HASSECURITY will not be changed."
END=1
else
echo ""
echo "Please answer y|n [n]."
fi
fi
done
# If HASSECURITY is enabled, see if HASNOSOCKSECURITY should also be defined.
if test $NSEC -eq 1
then
cat << .CAT_MARK
====================================================================
When HASSECURITY is enabled, you may also define HASNOSOCKSECURITY.
When both are defined, no one but root may list all of anyone else's
open files -- only their own open files -- but anyone may list
anyone else's open socket files.
This option is useful with ntop (http://www.ntop.org).
.CAT_MARK
grep HASNOSOCKSECURITY $OLD | tail $TA | egrep "^#define" > /dev/null
if test $? -eq 0
then
echo "HASNOSOCKSECURITY is enabled."
SOCKSEC=1
else
echo "HASNOSOCKSECURITY is disabled."
SOCKSEC=0
fi
END=0
while test $END -eq 0
do
echo ""
if test $SOCKSEC -eq 1
then
echo $EO "Disable HASNOSOCKSECURITY (y|n) [n]? $EC"
else
echo $EO "Enable HASNOSOCKSECURITY (y|n) [n]? $EC"
fi
read ANS EXCESS
if test "X$ANS" = "Xy" -o "X$ANS" = "XY"
then
echo ""
if test $SOCKSEC -eq 1
then
SOCKSEC=0
echo "HASNOSOCKSECURITY will be disabled."
else
SOCKSEC=1
echo "HASNOSOCKSECURITY will be enabled."
fi
END=1
else
if test "X$ANS" = "Xn" -o "X$ANS" = "XN" -o "X$ANS" = "X"
then
echo ""
echo "HASNOSOCKSECURITY will not be changed."
END=1
else
echo ""
echo "Please answer y|n [n]."
fi
fi
done
else
SOCKSEC=0
fi
# Process WARNINGSTATE.
cat << .CAT_MARK
=====================================================================
When WARNINGSTATE is enabled, lsof will issue whatever warning
messages it finds necessary. When WARNINGSTATE is disabled, lsof
will issue no warning messages. For individual uses of lsof, -w
disables warning state and +w enables it.
.CAT_MARK
grep WARNINGSTATE $OLD | tail $TA | egrep "^#define" > /dev/null
if test $? -eq 0
then
echo "WARNINGSTATE is disabled."
WST=0
else
echo "WARNINGSTATE is enabled."
WST=1
fi
END=0
NWST=$WST
while test $END -eq 0
do
echo ""
if test $NWST -eq 0
then
echo $EO "Enable WARNINGSTATE? (y|n) [n]? $EC"
else
echo $EO "Disable WARNINGSTATE? (y|n) [n]? $EC"
fi
read ANS EXCESS
if test "X$ANS" = "Xy" -o "X$ANS" = "XY"
then
echo ""
if test $NWST -eq 0
then
echo "WARNINGSTATE will be enabled."
NWST=1
else
echo "WARNINGSTATE will be disabled."
NWST=0
fi
END=1
else
if test "X$ANS" = "Xn" -o "X$ANS" = "XN" -o "X$ANS" = "X"
then
echo ""
echo "WARNINGSTATE will not be changed."
END=1
else
echo ""
echo "Please answer y|n [n]."
fi
fi
done
# Process WARNDEVACCESS, unless the dialect's machine.h header file contains
# NEVER_WARNDEVACCESS.
grep NEVER_WARNDEVACCESS $OLD > /dev/null
if test $? -eq 0
then
NEVERWDA=1
NWDA=0
else
NEVERWDA=0
cat << .CAT_MARK
=====================================================================
When WARNDEVACCESS is enabled, lsof will issue warning messages
when it can't access nodes in /dev (or /devices), subject to the
default or explicit (-w) WARNINGSTATE.
When WARNDEVACCESS is disabled, lsof will silently skip nodes in
/dev (or /devices) that it can't access.
.CAT_MARK
grep WARNDEVACCESS $OLD | tail $TA | egrep "^#define" > /dev/null
if test $? -eq 0
then
echo "WARNDEVACCESS is enabled."
WDA=1
else
echo "WARNDEVACCESS is disabled."
WDA=0
fi
END=0
NWDA=$WDA
while test $END -eq 0
do
echo ""
if test $NWDA -eq 1
then
echo $EO "Disable WARNDEVACCESS (y|n) [n]? $EC"
else
echo $EO "Enable WARNDEVACCESS (y|n) [n]? $EC"
fi
read ANS EXCESS
if test "X$ANS" = "Xy" -o "X$ANS" = "XY"
then
echo ""
if test $NWDA -eq 1
then
echo "WARNDEVACCESS will be disabled."
NWDA=0
else
echo "WARNDEVACCESS will be enabled."
NWDA=1
fi
END=1
else
if test "X$ANS" = "Xn" -o "X$ANS" = "XN" -o "X$ANS" = "X"
then
echo ""
echo "WARNDEVACCESS will not be changed."
END=1
else
echo ""
echo "Please answer y|n [n]."
fi
fi
done
fi
# Process HASDCACHE, unless the dialect's machine.h header file contains
# NEVER_HASDCACHE.
ENVV=""
ENVN=0
PDCV=""
PDCN=0
PDCPV=""
PDCPN=0
SDCV=""
SDCN=0
grep NEVER_HASDCACHE $OLD > /dev/null
if test $? -eq 0
then
NEVERDC=1
CDC=0
DC=0
NDC=0
else
NEVERDC=0
cat << .CAT_MARK
=====================================================================
When HASDCACHE is enabled, lsof will write a device cache file that
contains information about the nodes in /dev (or /devices). The
options HASENVDC, HASPERSDC, HASPERSDCPATH, and HASSYSDC define
the device cache file path.
When HASDCACHE is disabled, lsof won't write a device cache file.
Consult the 00DCACHE and 00FAQ files of the lsof distribution for
more information.
.CAT_MARK
grep HASDCACHE $OLD | tail $TA | egrep "^#define" > /dev/null
if test $? -eq 0
then
echo "HASDCACHE is enabled."
DC=1
else
echo "HASDCACHE is disabled."
DC=0
fi
END=0
NDC=$DC
while test $END -eq 0
do
echo ""
if test $NDC -eq 1
then
echo $EO "Disable HASDCACHE (y|n) [n]? $EC"
else
echo $EO "Enable HASDCACHE (y|n) [n]? $EC"
fi
read ANS EXCESS
if test "X$ANS" = "Xy" -o "X$ANS" = "XY"
then
echo ""
if test $NDC -eq 1
then
echo "HASDCACHE will be disabled."
NDC=0
else
echo "HASDCACHE will be enabled."
NDC=1
fi
END=1
else
if test "X$ANS" = "Xn" -o "X$ANS" = "XN" -o "X$ANS" = "X"
then
echo ""
echo "HASDCACHE will not be changed."
END=1
else
echo ""
echo "Please answer y|n [n]."
fi
fi
done
# See if other device cache options need to be declared.
if test $DC -eq 1 -a $NDC -eq 1
then
cat << .CAT_MARK
=====================================================================
You have decided that HASDCACHE should be defined. There are other
definitions associated with HASDCACHE that specify options for the
formation of the device cache file path. You may change them.
Consult the 00DCACHE and 00FAQ files of the lsof distribution for
more information.
The current path options are:
.CAT_MARK
grep HASENVDC $OLD | tail $TA | egrep "^#define"
egrep "HASPERSDC$|HASPERSDC[ ]" $OLD | tail $TA | egrep "^#define"
grep HASPERSDCPATH $OLD | tail $TA | egrep "^#define"
grep HASSYSDC $OLD | tail $TA | egrep "^#define"
END=0
while test $END -eq 0
do
echo ""
echo $EO "Do you want to change path options (y|n) [n]? $EC"
read ANS EXCESS
if test "X$ANS" = "Xy" -o "X$ANS" = "XY"
then
CDC=1
END=1
else
if test "X$ANS" = "Xn" -o "X$ANS" = "XN"
then
CDC=0
END=1
else
if test "X$ANS" = "X"
then
echo ""
echo "The path options will not be changed."
CDC=0
END=1
else
echo ""
echo "Please answer y|n [n]."
fi
fi
fi
done
else
CDC=0
fi
if test \( $NDC -eq 1 -a $DC -eq 0 \) -o \( $DC -eq 1 -a $CDC -eq 1 \)
then
cat << .CAT_MARK
=====================================================================
You may specify for HASENVDC the name of the environment variable
from which lsof should take the device cache file path for non-root
users. Press ENTER to use the current value of HASENVDC:
.CAT_MARK
echo $EO " $EC"
TMP1=`grep HASENVDC $OLD | tail $TA | egrep "^#define"`
if test "X$TMP1" != "X"
then
TMP1=`echo "$TMP1" | sed 's/^#define[ ]HASENVDC[ ]"\([^"]*\)".*$/\1/'`
echo "$TMP1"
else
echo "no current HASENVDC value"
fi
END=0
GV=0
while test $END -eq 0
do
echo ""
echo $EO "Do you want to define a name for HASENVDC (y|n) [n]? $EC"
read ANS EXCESS
if test "X$ANS" = "Xn" -o "X$ANS" = "XN"
then
ENVV=""
END=1
else
if test "X$ANS" = "Xy" -o "X$ANS" = "XY"
then
GV=1
END=1
else
if test "X$ANS" = "X"
then
echo ""
echo "HASENVDC will not be changed."
ENVV=$TMP1
END=1
else
echo ""
echo "Please answer y|n [n]."
fi
fi
fi
done
if test $GV -eq 1
then
echo ""
echo $EO "Please enter the HASENVDC name (no quotes): $EC"
read TMP1 EXCESS
ENVV=`echo $TMP1 | sed 's/^\"//' | sed 's/\"$//'`
if test "X$ENVV" = "X"
then
ENVN=1
fi
fi
cat << .CAT_MARK
=====================================================================
HASPERSDC is a format that specifies how the personal device cache
path is constructed. Consult the 00DCACHE and 00FAQ files of the
lsof distribution for information on the conversions supported in
HASPERSDC. Press ENTER to use the current HASPERSDC format:
.CAT_MARK
echo $EO " $EC"
TMP1=`egrep "HASPERSDC$|HASPERSDC[ ]" $OLD | tail $TA | egrep "^#define"`
if test "X$TMP1" != "X"
then
TMP1=`echo "$TMP1" | sed 's/^#define[ ]HASPERSDC[ ]"\([^"]*\)".*$/\1/'`
echo "$TMP1"
else
echo "no current HASPERSDC format"
fi
END=0
GV=0
while test $END -eq 0
do
echo ""
echo $EO "Do you want to define a format for HASPERSDC (y|n) [n]? $EC"
read ANS EXCESS
if test "X$ANS" = "Xn" -o "X$ANS" = "XN"
then
END=1
else
if test "X$ANS" = "Xy" -o "X$ANS" = "XY"
then
GV=1
END=1
else
if test "X$ANS" = "X"
then
echo ""
echo "HASPERSDC will not be changed."
PDCV=$TMP1
END=1
else
echo ""
echo "Please answer y|n [n]."
fi
fi
fi
done
if test $GV -eq 1
then
echo ""
echo $EO "Please enter the HASPERSDC format (no quotes): $EC"
read TMP1 EXCESS
PDCV=`echo $TMP1 | sed 's/^\"//' | sed 's/\"$//'`
if test "X$PDCV" = "X"
then
PDCN=1
fi
fi
cat << .CAT_MARK
=====================================================================
Specify for HASPERSDCPATH the name of the environment variable from
which lsof should take a path name component to insert at the %p
conversion in the HASPERSDC format.
Consult the 00FAQ and 00DCACHE files of the lsof distribution for
more information on HASPERSDCPATH usage.
Press ENTER to use the current value for HASPERSDCPATH:
.CAT_MARK
echo $EO " $EC"
TMP1=`grep HASPERSDCPATH $OLD | tail $TA | egrep "^#define"`
if test "X$TMP1" != "X"
then
TMP1=`echo "$TMP1" | sed 's/^#define[ ]HASPERSDCPATH[ ]"\([^"]*\)".*$/\1/'`
echo "$TMP1"
else
echo "no current HASPERSDCPATH value"
fi
END=0
GV=0
while test $END -eq 0
do
echo ""
echo $EO "Do you want to change HASPERSDCPATH (y|n) [n]? $EC"
read ANS EXCESS
if test "X$ANS" = "Xn" -o "X$ANS" = "XN" -o "X$ANS" = "X"
then
echo ""
echo "HASPERSDCPATH will not be changed."
PDCPV=$TMP1
END=1
else
if test "X$ANS" = "Xy" -o "X$ANS" = "XY"
then
GV=1
END=1
else
echo ""
echo "Please answer y|n [n]."
fi
fi
done
if test $GV -eq 1
then
echo ""
echo $EO "Please enter the HASPERSDCPATH name (no quotes): $EC"
read TMP1 EXCESS
PDCPV=`echo $TMP1 | sed 's/^\"//' | sed 's/\"$//'`
if test "X$PDCPV" = "X"
then
PDCPN=1
fi
fi
cat << .CAT_MARK
=====================================================================
Specify for HASSYSDC the system-wide device cache file path. Press
ENTER to use the current HASSYSDC value:
.CAT_MARK
echo $EO " $EC"
TMP1=`grep HASSYSDC $OLD | tail $TA | egrep "^#define"`
if test "X$TMP1" != "X"
then
TMP1=`echo "$TMP1" | sed 's/^#define[ ]HASSYSDC[ ]"\([^"]*\)".*$/\1/'`
echo "$TMP1"
else
echo "no current HASSYSDC value"
fi
END=0
GV=0
while test $END -eq 0
do
echo ""
echo $EO "Do you want to define a system-device path (y|n) [n]? $EC"
read ANS EXCESS
if test "X$ANS" = "Xn" -o "X$ANS" = "XN"
then
END=1
else
if test "X$ANS" = "Xy" -o "X$ANS" = "XY"
then
GV=1
END=1
else
if test "X$ANS" = "X"
then
echo ""
echo "No HASSYSDC change will be made."
SDCV=$TMP1
END=1
else
echo ""
echo "Please answer y|n [n]."
fi
fi
fi
done
if test $GV -eq 1
then
echo ""
echo $EO "Please enter the system-wide path (no quotes): $EC"
read TMP1 EXCESS
SDCV=`echo $TMP1 | sed 's/^\"//' | sed 's/\"$//'`
if test "X$SDCV" = "X"
then
SDCN=1
fi
fi
fi
fi
# If HASXOPT is defined, and HASXOPT_ROOT is mentioned,
# ask about changing HASXOPT_ROOT.
HXRC=0
grep HASXOPT $OLD | tail $TA | egrep "^#define" > /dev/null
if test $? -eq 0
then
grep HASXOPT_ROOT $OLD > /dev/null
if test $? -eq 0
then
cat << .CAT_MARK
=====================================================================
HASXOPT is defined. If the dialect for which you are customizing
appears in the following list, you may want to change the definition
of HASXOPT_ROOT to restrict the use of the X option to lsof processes
whose real user ID is root, or enable use of it by all user IDs.
AIX the -X option enables the risky operation of letting
lsof read library entry structures with readx().
If HASXOPT_ROOT is defined, only processes whose
real user ID is root will be allowed to use -X.
If HASXOPT_ROOT is undefined, any process will be
allowed to use -X. Consult the 00FAQ file of the
lsof distribution for more information on why
readx() may be risky.
.CAT_MARK
grep HASXOPT_ROOT $OLD | tail $TA | egrep "^#define" > /dev/null
if test $? -eq 0
then
echo "HASXOPT_ROOT is defined."
HXR="undefine"
HXRS=1
else
echo "HASXOPT_ROOT is not defined."
HXR="define"
HXRS=0
fi
END=0
while test $END -eq 0
do
echo ""
echo $EO "Do you want to $HXR HASXOPT_ROOT (y|n) [n]? $EC"
read ANS EXCESS
if test "X$ANS" = "Xy" -o "X$ANS" = "XY"
then
HXRA=1
END=1
else
if test "X$ANS" = "Xn" -o "X$ANS" = "XN" -o "X$ANS" = "X"
then
echo ""
echo "HASXOPT_ROOT will not be changed."
HXRA=0
END=1
else
echo ""
echo "Please answer y|n [n]."
fi
fi
done
if test $HXRA -eq 1
then
HXRC=1
fi
fi
fi
# Process HASKERNIDCK. Skip processing for selected dialect directories.
case $DialDir in
linux/proc)
NIDCK=0
;;
*)
cat << .CAT_MARK
=====================================================================
When HASKERNIDCK is enabled, lsof compares the identity of the
kernel where it was built to the identity of the kernel where it
is running. This check can detect an lsof executable inappropriate
for the system on which it is being run.
The kernel identity check can take considerable time on some UNIX
dialects -- e.g., AIX -- so there may be occasions when it is
desirable to disable it, in spite of the increased risk of using
an inappropriate lsof executable.
.CAT_MARK
grep HASKERNIDCK $OLD | tail $TA | grep "^#define" > /dev/null
if test $? -eq 0
then
echo "HASKERNIDCK is enabled."
IDCK=1
else
echo "HASKERNIDCK is disabled."
IDCK=0
fi
END=0
NIDCK=$IDCK
while test $END -eq 0
do
echo ""
if test $NIDCK -eq 1
then
echo $EO "Disable HASKERNIDCK (y|n) [n]? $EC"
else
echo $EO "Enable HASKERNIDCK (y|n) [n]? $EC"
fi
read ANS EXCESS
if test "X$ANS" = "Xy" -o "X$ANS" = "XY"
then
echo ""
if test $NIDCK -eq 1
then
NIDCK=0
echo "HASKERNIDCK will be disabled."
else
NIDCK=1
echo "HASKERNIDCK will be enabled."
fi
END=1
else
if test "X$ANS" = "Xn" -o "X$ANS" = "XN" -o "X$ANS" = "X"
then
echo ""
echo "HASKERNIDCK will not be changed."
END=1
NIDCK=$IDCK
else
echo ""
echo "Please answer y|n [n]."
fi
fi
done
;;
esac
# Initialize new machine.h.
rm -f $NEW
cp $OLD $NEW
chmod 0644 $NEW
echo "" >> $NEW
echo "/*" >> $NEW
echo $EO " * Added by Customize on $EC" >> $NEW
date >> $NEW
echo " */" >> $NEW
echo "" >> $NEW
# Change HASSECURITY and HASNOSOCKSECURITY, as required.
echo "#undef HASSECURITY" >> $NEW
echo "#undef HASNOSOCKSECURITY" >> $NEW
if test $NSEC -eq 1
then
echo "#define HASSECURITY 1" >> $NEW
if test $SOCKSEC -eq 1
then
echo "#define HASNOSOCKSECURITY 1" >> $NEW
fi
fi
# Change WARNDEVACCESS, as required.
if test $NEVERWDA -eq 0
then
echo "#undef WARNDEVACCESS" >> $NEW
if test $NWDA -eq 1
then
echo "#define WARNDEVACCESS 1" >> $NEW
fi
fi
# Change WARNINGSTATE, as required.
echo "#undef WARNINGSTATE" >> $NEW
if test $NWST -eq 0
then