forked from openai/gym
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathXdummy
executable file
·1955 lines (1726 loc) · 45.3 KB
/
Xdummy
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
# ----------------------------------------------------------------------
# Copyright (C) 2005-2011 Karl J. Runge <[email protected]>
# All rights reserved.
#
# This file is part of Xdummy.
#
# Xdummy 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.
#
# Xdummy 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 Xdummy; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA
# or see <http://www.gnu.org/licenses/>.
# ----------------------------------------------------------------------
#
#
# Xdummy: an LD_PRELOAD hack to run a stock Xorg(1) or XFree86(1) server
# with the "dummy" video driver to make it avoid Linux VT switching, etc.
#
# Run "Xdummy -help" for more info.
#
install=""
uninstall=""
runit=1
prconf=""
notweak=""
root=""
nosudo=""
xserver=""
geom=""
nomodelines=""
depth=""
debug=""
strace=""
cmdline_config=""
PATH=$PATH:/bin:/usr/bin
export PATH
program=`basename "$0"`
help () {
${PAGER:-more} << END
$program:
A hack to run a stock Xorg(1) or XFree86(1) X server with the "dummy"
(RAM-only framebuffer) video driver such that it AVOIDS the Linux VT
switching, opening device files in /dev, keyboard and mouse conflicts,
and other problems associated with the normal use of "dummy".
In other words, it tries to make Xorg/XFree86 with the "dummy"
device driver act more like Xvfb(1).
The primary motivation for the Xdummy script is to provide a virtual X
server for x11vnc but with more features than Xvfb (or Xvnc); however
it could be used for other reasons (e.g. better automated testing
than with Xvfb.) One nice thing is the dummy server supports RANDR
dynamic resizing while Xvfb does not.
So, for example, x11vnc+Xdummy terminal services are a little better
than x11vnc+Xvfb.
To achieve this, while running the real Xserver $program intercepts
system and library calls via the LD_PRELOAD method and modifies
the behavior to make it work correctly (e.g. avoid the VT stuff.)
LD_PRELOAD tricks are usually "clever hacks" and so might not work
in all situations or break when something changes.
WARNING: Take care in using Xdummy, although it never has it is
possible that it could damage hardware. One can use the -prconf
option to have it print out the xorg.conf config that it would use
and then inspect it carefully before actually using it.
This program no longer needs to be run as root as of 12/2009.
However, if there are problems for certain situations (usually older
servers) it may perform better if run as root (use the -root option.)
When running as root remember the previous paragraph and that Xdummy
comes without any warranty.
gcc/cc and other build tools are required for this script to be able
to compile the LD_PRELOAD shared object. Be sure they are installed
on the system. See -install and -uninstall described below.
Your Linux distribution may not install the dummy driver by default,
e.g:
/usr/lib/xorg/modules/drivers/dummy_drv.so
some have it in a package named xserver-xorg-video-dummy you that
need to install.
Usage:
$program <${program}-args> <Xserver-args>
(actually, the arguments can be supplied in any order.)
Examples:
$program -install
$program :1
$program -debug :1
$program -tmpdir ~/mytmp :1 -nolisten tcp
startx example:
startx -e bash -- $program :2 -depth 16
(if startx needs to be run as root, you can su(1) to a normal
user in the bash shell and then launch ~/.xinitrc or ~/.xsession,
gnome-session, startkde, startxfce4, etc.)
xdm example:
xdm -config /usr/local/dummy/xdm-config -nodaemon
where the xdm-config file has line:
DisplayManager.servers: /usr/local/dummy/Xservers
and /usr/local/dummy/Xservers has lines:
:1 local /usr/local/dummy/Xdummy :1 -debug
:2 local /usr/local/dummy/Xdummy :2 -debug
(-debug is optional)
gdm/kdm example:
TBD.
Config file:
If the file $program.cfg exists it will be sourced as shell
commands. Usually one will set some variables this way.
To disable sourcing, supply -nocfg or set XDUMMY_NOCFG=1.
Root permission and x11vnc:
Update: as of 12/2009 this program no longer must be run as root.
So try it as non-root before running it as root and/or the
following schemes.
In some circumstances X server program may need to be run as root.
If so, one could run x11vnc as root with -unixpw (it switches
to the user that logs in) and that may be OK, some other ideas:
- add this to sudo via visudo:
ALL ALL = NOPASSWD: /usr/local/bin/Xdummy
- use this little suid wrapper:
/*
* xdummy.c
*
cc -o ./xdummy xdummy.c
sudo cp ./xdummy /usr/local/bin/xdummy
sudo chown root:root /usr/local/bin/xdummy
sudo chmod u+s /usr/local/bin/xdummy
*
*/
#include <unistd.h>
#include <stdlib.h>
#include <sys/types.h>
#include <stdio.h>
int main (int argc, char *argv[]) {
extern char **environ;
char str[100];
sprintf(str, "XDUMMY_UID=%d", (int) getuid());
putenv(str);
setuid(0);
setgid(0);
execv("/usr/local/bin/Xdummy", argv);
exit(1);
return 1;
}
Options:
${program}-args:
-install Compile the LD_PRELOAD shared object and install it
next to the $program script file as:
$0.so
When that file exists it is used as the LD_PRELOAD
shared object without recompiling. Otherwise,
each time $program is run the LD_PRELOAD shared
object is compiled as a file in /tmp (or -tmpdir)
If you set the environment variable
INTERPOSE_GETUID=1 when building, then when
$program is run as an ordinary user, the shared
object will interpose getuid() calls and pretend
to be root. Otherwise it doesn't pretend to
be root.
You can also set the CFLAGS environment variable
to anything else you want on the compile cmdline.
-uninstall Remove the file:
$0.so
The LD_PRELOAD shared object will then be compiled
each time this program is run.
The X server is not started under -install, -uninstall, or -prconf.
:N The DISPLAY (e.g. :15) is often the first
argument. It is passed to the real X server and
also used by the Xdummy script as an identifier.
-geom geom1[,geom2...] Take the geometry (e.g. 1024x768) or list
of geometries and insert them into the Screen
section of the tweaked X server config file.
Use this to have a different geometry than the
one(s) in the system config file.
The option -geometry can be used instead of -geom;
x11vnc calls Xdummy and Xvfb this way.
-nomodelines When you specify -geom/-geometry, $program will
create Modelines for each geometry and put them
in the Monitor section. If you do not want this
then supply -nomodelines.
-depth n Use pixel color depth n (e.g. 8, 16, or 24). This
makes sure the X config file has a Screen.Display
subsection of this depth. Note this option is
ALSO passed to the X server.
-DEPTH n Same as -depth, except not passed to X server.
-tmpdir dir Specify a temporary directory, owned by you and
only writable by you. This is used in place of
/tmp/Xdummy.\$USER/.. to place the $program.so
shared object, tweaked config files, etc.
-nonroot Run in non-root mode (working 12/2009, now default)
-root Run as root (may still be needed in some
environments.) Same as XDUMMY_RUN_AS_ROOT=1.
-nosudo Do not try to use sudo(1) when re-running as root,
use su(1) instead.
-xserver path Specify the path to the Xserver to use. Default
is to try "Xorg" first and then "XFree86". If
those are not in \$PATH, it tries these locations:
/usr/bin/Xorg
/usr/X11R6/bin/Xorg
/usr/X11R6/bin/XFree86
-n Do not run the command to start the X server,
just show the command that $program would run.
The LD_PRELOAD shared object will be built,
if needed. Also note any XDUMMY* environment
variables that need to be set.
-prconf Print, to stdout, the tweaked Xorg/XFree86
config file (-config and -xf86config server
options, respectively.) The Xserver is not
started.
-notweak Do not tweak (modify) the Xorg/XFree86 config file
(system or server command line) at all. The -geom
and similar config file modifications are ignored.
It is up to you to make sure it is a working
config file (e.g. "dummy" driver, etc.)
Perhaps you want to use a file based on the
-prconf output.
-nocfg Do not try to source $program.cfg even if it
exists. Same as setting XDUMMY_NOCFG=1.
-debug Extra debugging output.
-strace strace(1) the Xserver process (for troubleshooting.)
-ltrace ltrace(1) instead of strace (can be slow.)
-h, -help Print out this help.
Xserver-args:
Most of the Xorg and XFree86 options will work and are simply
passed along if you supply them. Important ones that may be
supplied if missing:
:N X Display number for server to use.
vtNN Linux virtual terminal (VT) to use (a VT is currently
still used, just not switched to and from.)
-config file Driver "dummy" tweaked config file, a
-xf86config file number of settings are tweaked besides Driver.
If -config/-xf86config is not given, the system one
(e.g. /etc/X11/xorg.conf) is used. If the system one cannot be
found, a built-in one is used. Any settings in the config file
that are not consistent with "dummy" mode will be overwritten
(unless -notweak is specified.)
Use -config xdummy-builtin to force usage of the builtin config.
If "file" is only a basename (e.g. "xorg.dummy.conf") with no /'s,
then no tweaking of it is done: the X server will look for that
basename via its normal search algorithm. If the found file does
not refer to the "dummy" driver, etc, then the X server will fail.
You can set the env. var. XDUMMY_EXTRA_SERVER_ARGS to hold some
extra Xserver-args too. (Useful for cfg file.)
Notes:
The Xorg/XFree86 "dummy" driver is currently undocumented. It works
well in this mode, but it is evidently not intended for end-users.
So it could be removed or broken at any time.
If the display Xserver-arg (e.g. :1) is not given, or ":" is given
that indicates $program should try to find a free one (based on
tcp ports.)
If the display virtual terminal, VT, (e.g. vt9) is not given that
indicates $program should try to find a free one (or guess a high one.)
This program is not completely secure WRT files in /tmp (but it tries
to a good degree.) Better is to use the -tmpdir option to supply a
directory only writable by you. Even better is to get rid of users
on the local machine you do not trust :-)
Set XDUMMY_SET_XV=1 to turn on debugging output for this script.
END
}
warn() {
echo "$*" 1>&2
}
if [ "X$XDUMMY_SET_XV" != "X" ]; then
set -xv
fi
if [ "X$XDUMMY_UID" = "X" ]; then
XDUMMY_UID=`id -u`
export XDUMMY_UID
fi
if [ "X$XDUMMY_UID" = "X0" ]; then
if [ "X$SUDO_UID" != "X" ]; then
XDUMMY_UID=$SUDO_UID
export XDUMMY_UID
fi
fi
# check if root=1 first:
#
if [ "X$XDUMMY_RUN_AS_ROOT" = "X1" ]; then
root=1
fi
for arg in $*
do
if [ "X$arg" = "X-nonroot" ]; then
root=""
elif [ "X$arg" = "X-root" ]; then
root=1
elif [ "X$arg" = "X-nocfg" ]; then
XDUMMY_NOCFG=1
export XDUMMY_NOCFG
fi
done
if [ "X$XDUMMY_NOCFG" = "X" -a -f "$0.cfg" ]; then
. "$0.cfg"
fi
# See if it really needs to be run as root:
#
if [ "X$XDUMMY_SU_EXEC" = "X" -a "X$root" = "X1" -a "X`id -u`" != "X0" ]; then
# this is to prevent infinite loop in case su/sudo doesn't work:
XDUMMY_SU_EXEC=1
export XDUMMY_SU_EXEC
dosu=1
nosudo=""
for arg in $*
do
if [ "X$arg" = "X-nonroot" ]; then
dosu=""
elif [ "X$arg" = "X-nosudo" ]; then
nosudo="1"
elif [ "X$arg" = "X-help" ]; then
dosu=""
elif [ "X$arg" = "X-h" ]; then
dosu=""
elif [ "X$arg" = "X-install" ]; then
dosu=""
elif [ "X$arg" = "X-uninstall" ]; then
dosu=""
elif [ "X$arg" = "X-n" ]; then
dosu=""
elif [ "X$arg" = "X-prconf" ]; then
dosu=""
fi
done
if [ $dosu ]; then
# we need to restart it with su/sudo:
if type sudo > /dev/null 2>&1; then
:
else
nosudo=1
fi
if [ "X$nosudo" = "X" ]; then
warn "$program: supply the sudo password to restart as root:"
if [ "X$XDUMMY_UID" != "X" ]; then
exec sudo $0 -uid $XDUMMY_UID "$@"
else
exec sudo $0 "$@"
fi
else
warn "$program: supply the root password to restart as root:"
if [ "X$XDUMMY_UID" != "X" ]; then
exec su -c "$0 -uid $XDUMMY_UID $*"
else
exec su -c "$0 $*"
fi
fi
# DONE:
exit
fi
fi
# This will hold the X display, e.g. :20
#
disp=""
args=""
cmdline_config=""
# Process Xdummy args:
#
while [ "X$1" != "X" ]
do
if [ "X$1" = "X-config" -o "X$1" = "X-xf86config" ]; then
cmdline_config="$2"
fi
case $1 in
":"*) disp=$1
;;
"-install") install=1; runit=""
;;
"-uninstall") uninstall=1; runit=""
;;
"-n") runit=""
;;
"-no") runit=""
;;
"-norun") runit=""
;;
"-prconf") prconf=1; runit=""
;;
"-notweak") notweak=1
;;
"-noconf") notweak=1
;;
"-nonroot") root=""
;;
"-root") root=1
;;
"-nosudo") nosudo=1
;;
"-xserver") xserver="$2"; shift
;;
"-uid") XDUMMY_UID="$2"; shift
export XDUMMY_UID
;;
"-geom") geom="$2"; shift
;;
"-geometry") geom="$2"; shift
;;
"-nomodelines") nomodelines=1
;;
"-depth") depth="$2"; args="$args -depth $2";
shift
;;
"-DEPTH") depth="$2"; shift
;;
"-tmpdir") XDUMMY_TMPDIR="$2"; shift
;;
"-debug") debug=1
;;
"-nocfg") :
;;
"-nodebug") debug=""
;;
"-strace") strace=1
;;
"-ltrace") strace=2
;;
"-h") help; exit 0
;;
"-help") help; exit 0
;;
*) args="$args $1"
;;
esac
shift
done
if [ "X$XDUMMY_EXTRA_SERVER_ARGS" != "X" ]; then
args="$args $XDUMMY_EXTRA_SERVER_ARGS"
fi
# Try to get a username for use in our tmp directory, etc.
#
user=""
if [ X`id -u` = "X0" ]; then
user=root # this will also be used below for id=0
elif [ "X$USER" != "X" ]; then
user=$USER
elif [ "X$LOGNAME" != "X" ]; then
user=$LOGNAME
fi
# Keep trying...
#
if [ "X$user" = "X" ]; then
user=`whoami 2>/dev/null`
fi
if [ "X$user" = "X" ]; then
user=`basename "$HOME"`
fi
if [ "X$user" = "X" -o "X$user" = "X." ]; then
user="u$$"
fi
if [ "X$debug" = "X1" -a "X$runit" != "X" ]; then
echo ""
echo "/usr/bin/env:"
env | egrep -v '^(LS_COLORS|TERMCAP)' | sort
echo ""
fi
# Function to compile the LD_PRELOAD shared object:
#
make_so() {
# extract code embedded in this script into a tmp C file:
n1=`grep -n '^#code_begin' $0 | head -1 | awk -F: '{print $1}'`
n2=`grep -n '^#code_end' $0 | head -1 | awk -F: '{print $1}'`
n1=`expr $n1 + 1`
dn=`expr $n2 - $n1`
tmp=$tdir/Xdummy.$RANDOM$$.c
rm -f $tmp
if [ -e $tmp -o -h $tmp ]; then
warn "$tmp still exists."
exit 1
fi
touch $tmp || exit 1
tail -n +$n1 $0 | head -n $dn > $tmp
# compile it to Xdummy.so:
if [ -f "$SO" ]; then
mv $SO $SO.$$
rm -f $SO.$$
fi
rm -f $SO
touch $SO
if [ ! -f "$SO" ]; then
SO=$tdir/Xdummy.$user.so
warn "warning switching LD_PRELOAD shared object to: $SO"
fi
if [ -f "$SO" ]; then
mv $SO $SO.$$
rm -f $SO.$$
fi
rm -f $SO
# we assume gcc:
if [ "X$INTERPOSE_GETUID" = "X1" ]; then
CFLAGS="$CFLAGS -DINTERPOSE_GETUID"
fi
echo "$program:" cc -shared -fPIC $CFLAGS -o $SO $tmp
cc -shared -fPIC $CFLAGS -o $SO $tmp
rc=$?
rm -f $tmp
if [ $rc != 0 ]; then
warn "$program: cannot build $SO"
exit 1
fi
if [ "X$debug" != "X" -o "X$install" != "X" ]; then
warn "$program: created $SO"
ls -l "$SO"
fi
}
# Set tdir to tmp dir for make_so():
if [ "X$XDUMMY_TMPDIR" != "X" ]; then
tdir=$XDUMMY_TMPDIR
mkdir -p $tdir
else
tdir="/tmp"
fi
# Handle -install/-uninstall case:
SO=$0.so
if [ "X$install" != "X" -o "X$uninstall" != "X" ]; then
if [ -e "$SO" -o -h "$SO" ]; then
warn "$program: removing $SO"
fi
if [ -f "$SO" ]; then
mv $SO $SO.$$
rm -f $SO.$$
fi
rm -f $SO
if [ -e "$SO" -o -h "$SO" ]; then
warn "warning: $SO still exists."
exit 1
fi
if [ $install ]; then
make_so
if [ ! -f "$SO" ]; then
exit 1
fi
fi
exit 0
fi
# We need a tmp directory for the .so, tweaked config file, and for
# redirecting filenames we cannot create (under -nonroot)
#
tack=""
if [ "X$XDUMMY_TMPDIR" = "X" ]; then
XDUMMY_TMPDIR="/tmp/Xdummy.$user"
# try to tack on a unique subdir (display number or pid)
# to allow multiple instances
#
if [ "X$disp" != "X" ]; then
t0=$disp
else
t0=$1
fi
tack=`echo "$t0" | sed -e 's/^.*://'`
if echo "$tack" | grep '^[0-9][0-9]*$' > /dev/null; then
:
else
tack=$$
fi
if [ "X$tack" != "X" ]; then
XDUMMY_TMPDIR="$XDUMMY_TMPDIR/$tack"
fi
fi
tmp=$XDUMMY_TMPDIR
if echo "$tmp" | grep '^/tmp' > /dev/null; then
if [ "X$tmp" != "X/tmp" -a "X$tmp" != "X/tmp/" ]; then
# clean this subdir of /tmp out, otherwise leave it...
rm -rf $XDUMMY_TMPDIR
if [ -e $XDUMMY_TMPDIR ]; then
warn "$XDUMMY_TMPDIR still exists"
exit 1
fi
fi
fi
mkdir -p $XDUMMY_TMPDIR
chmod 700 $XDUMMY_TMPDIR
if [ "X$tack" != "X" ]; then
chmod 700 `dirname "$XDUMMY_TMPDIR"` 2>/dev/null
fi
# See if we can write something there:
#
tfile="$XDUMMY_TMPDIR/test.file"
touch $tfile
if [ ! -f "$tfile" ]; then
XDUMMY_TMPDIR="/tmp/Xdummy.$$.$USER"
warn "warning: setting tmpdir to $XDUMMY_TMPDIR ..."
rm -rf $XDUMMY_TMPDIR || exit 1
mkdir -p $XDUMMY_TMPDIR || exit 1
fi
rm -f $tfile
export XDUMMY_TMPDIR
# Compile the LD_PRELOAD shared object if needed (needs XDUMMY_TMPDIR)
#
if [ ! -f "$SO" ]; then
SO="$XDUMMY_TMPDIR/Xdummy.so"
make_so
fi
# Decide which X server to use:
#
if [ "X$xserver" = "X" ]; then
if type Xorg >/dev/null 2>&1; then
xserver="Xorg"
elif type XFree86 >/dev/null 2>&1; then
xserver="XFree86"
elif -x /usr/bin/Xorg; then
xserver="/usr/bin/Xorg"
elif -x /usr/X11R6/bin/Xorg; then
xserver="/usr/X11R6/bin/Xorg"
elif -x /usr/X11R6/bin/XFree86; then
xserver="/usr/X11R6/bin/XFree86"
fi
if [ "X$xserver" = "X" ]; then
# just let it fail below.
xserver="/usr/bin/Xorg"
warn "$program: cannot locate a stock Xserver... assuming $xserver"
fi
fi
# See if the binary is suid or not readable under -nonroot mode:
#
if [ "X$BASH_VERSION" != "X" ]; then
xserver_path=`type -p $xserver 2>/dev/null`
else
xserver_path=`type $xserver 2>/dev/null | awk '{print $NF}'`
fi
if [ -e "$xserver_path" -a "X$root" = "X" -a "X$runit" != "X" ]; then
if [ ! -r $xserver_path -o -u $xserver_path -o -g $xserver_path ]; then
# XXX not quite correct with rm -rf $XDUMMY_TMPDIR ...
# we keep on a filesystem we know root can write to.
base=`basename "$xserver_path"`
new="/tmp/$base.$user.bin"
if [ -e $new ]; then
snew=`ls -l $new | awk '{print $5}' | grep '^[0-9][0-9]*$'`
sold=`ls -l $xserver_path | awk '{print $5}' | grep '^[0-9][0-9]*$'`
if [ "X$snew" != "X" -a "X$sold" != "X" -a "X$sold" != "X$snew" ]; then
warn "removing different sized copy:"
ls -l $new $xserver_path
rm -f $new
fi
fi
if [ ! -e $new -o ! -s $new ]; then
rm -f $new
touch $new || exit 1
chmod 700 $new || exit 1
if [ ! -r $xserver_path ]; then
warn ""
warn "NEED TO COPY UNREADABLE $xserver_path to $new as root:"
warn ""
ls -l $xserver_path 1>&2
warn ""
warn "This only needs to be done once:"
warn " cat $xserver_path > $new"
warn ""
nos=$nosudo
if type sudo > /dev/null 2>&1; then
:
else
nos=1
fi
if [ "X$nos" = "X1" ]; then
warn "Please supply root passwd to 'su -c'"
su -c "cat $xserver_path > $new"
else
warn "Please supply the sudo passwd if asked:"
sudo /bin/sh -c "cat $xserver_path > $new"
fi
else
warn ""
warn "COPYING SETUID $xserver_path to $new"
warn ""
ls -l $xserver_path 1>&2
warn ""
cat $xserver_path > $new
fi
ls -l $new
if [ -s $new ]; then
:
else
rm -f $new
ls -l $new
exit 1
fi
warn ""
warn "Please restart Xdummy now."
exit 0
fi
if [ ! -O $new ]; then
warn "file \"$new\" not owned by us!"
ls -l $new
exit 1
fi
xserver=$new
fi
fi
# Work out display:
#
if [ "X$disp" != "X" ]; then
:
elif [ "X$1" != "X" ]; then
if echo "$1" | grep '^:[0-9]' > /dev/null; then
disp=$1
shift
elif [ "X$1" = "X:" ]; then
# ":" means for us to find one.
shift
fi
fi
if [ "X$disp" = "X" -o "X$disp" = "X:" ]; then
# try to find an open display port:
# (tcp outdated...)
ports=`netstat -ant | grep LISTEN | awk '{print $4}' | sed -e 's/^.*://'`
n=0
while [ $n -le 20 ]
do
port=`printf "60%02d" $n`
if echo "$ports" | grep "^${port}\$" > /dev/null; then
:
else
disp=":$n"
warn "$program: auto-selected DISPLAY $disp"
break
fi
n=`expr $n + 1`
done
fi
# Work out which vt to use, try to find/guess an open one if necessary.
#
vt=""
for arg in $*
do
if echo "$arg" | grep '^vt' > /dev/null; then
vt=$arg
break
fi
done
if [ "X$vt" = "X" ]; then
if [ "X$user" = "Xroot" ]; then
# root can user fuser(1) to see if it is in use:
if type fuser >/dev/null 2>&1; then
# try /dev/tty17 thru /dev/tty32
n=17
while [ $n -le 32 ]
do
dev="/dev/tty$n"
if fuser $dev >/dev/null 2>&1; then
:
else
vt="vt$n"
warn "$program: auto-selected VT $vt => $dev"
break
fi
n=`expr $n + 1`
done
fi
fi
if [ "X$vt" = "X" ]; then
# take a wild guess...
vt=vt16
warn "$program: selected fallback VT $vt"
fi
else
vt=""
fi
# Decide flavor of Xserver:
#
stype=`basename "$xserver"`
if echo "$stype" | grep -i xfree86 > /dev/null; then
stype=xfree86
else
stype=xorg
fi
tweak_config() {
in="$1"
config2="$XDUMMY_TMPDIR/xdummy_modified_xconfig.conf"
if [ "X$disp" != "X" ]; then
d=`echo "$disp" | sed -e 's,/,,g' -e 's/:/_/g'`
config2="$config2$d"
fi
# perl script to tweak the config file... add/delete options, etc.
#
env XDUMMY_GEOM=$geom \
XDUMMY_DEPTH=$depth \
XDUMMY_NOMODELINES=$nomodelines \
perl > $config2 < $in -e '
$n = 0;
$geom = $ENV{XDUMMY_GEOM};
$depth = $ENV{XDUMMY_DEPTH};
$nomodelines = $ENV{XDUMMY_NOMODELINES};
$mode_str = "";
$videoram = "24000";
$HorizSync = "30.0 - 130.0";
$VertRefresh = "50.0 - 250.0";
if ($geom ne "") {
my $tmp = "";
foreach $g (split(/,/, $geom)) {
$tmp .= "\"$g\" ";
if (!$nomodelines && $g =~ /(\d+)x(\d+)/) {
my $w = $1;
my $h = $2;
$mode_str .= " Modeline \"$g\" ";
my $dot = sprintf("%.2f", $w * $h * 70 * 1.e-6);
$mode_str .= $dot;
$mode_str .= " " . $w;
$mode_str .= " " . int(1.02 * $w);
$mode_str .= " " . int(1.10 * $w);
$mode_str .= " " . int(1.20 * $w);
$mode_str .= " " . $h;
$mode_str .= " " . int($h + 1);
$mode_str .= " " . int($h + 3);
$mode_str .= " " . int($h + 20);
$mode_str .= "\n";
}
}
$tmp =~ s/\s*$//;
$geom = $tmp;
}
while (<>) {
if ($ENV{XDUMMY_NOTWEAK}) {
print $_;
next;
}
$n++;
if (/^\s*#/) {
# pass comments straight thru
print;
next;
}
if (/^\s*Section\s+(\S+)/i) {
# start of Section
$sect = $1;
$sect =~ s/\W//g;
$sect =~ y/A-Z/a-z/;
$sects{$sect} = 1;
print;
next;
}
if (/^\s*EndSection/i) {
# end of Section
if ($sect eq "serverflags") {
if (!$got_DontVTSwitch) {
print " ##Xdummy:##\n";
print " Option \"DontVTSwitch\" \"true\"\n";
}
if (!$got_AllowMouseOpenFail) {
print " ##Xdummy:##\n";
print " Option \"AllowMouseOpenFail\" \"true\"\n";
}
if (!$got_PciForceNone) {
print " ##Xdummy:##\n";
print " Option \"PciForceNone\" \"true\"\n";
}
} elsif ($sect eq "device") {
if (!$got_Driver) {
print " ##Xdummy:##\n";
print " Driver \"dummy\"\n";
}
if (!$got_VideoRam) {
print " ##Xdummy:##\n";
print " VideoRam $videoram\n";
}
} elsif ($sect eq "screen") {
if ($depth ne "" && !got_DefaultDepth) {
print " ##Xdummy:##\n";
print " DefaultDepth $depth\n";
}
if ($got_Monitor eq "") {
print " ##Xdummy:##\n";
print " Monitor \"Monitor0\"\n";
}
} elsif ($sect eq "monitor") {
if (!got_HorizSync) {
print " ##Xdummy:##\n";
print " HorizSync $HorizSync\n";
}
if (!got_VertRefresh) {
print " ##Xdummy:##\n";
print " VertRefresh $VertRefresh\n";
}
if (!$nomodelines) {
print " ##Xdummy:##\n";
print $mode_str;