summaryrefslogtreecommitdiffstats
path: root/os-plugins/plugins/xserver/OpenSLX/OSPlugin/xserver.pm
blob: b172dc224271b89051af48fed054e81e6c254d22 (plain) (blame)
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
# Copyright (c) 2008 - OpenSLX GmbH
#
# This program is free software distributed under the GPL version 2.
# See http://openslx.org/COPYING
#
# If you have any feedback please consult http://openslx.org/feedback and
# send your suggestions, praise, or complaints to feedback@openslx.org
#
# General information about OpenSLX can be found at http://openslx.org/
# -----------------------------------------------------------------------------
# xserver.pm
# -----------------------------------------------------------------------------
package OpenSLX::OSPlugin::xserver;

use strict;
use warnings;

use base qw(OpenSLX::OSPlugin::Base);

use OpenSLX::Basics;
use OpenSLX::Utils;

use File::Basename;

################################################################################
# if you have any questions regarding the concept of OS-plugins and their
# implementation, please drop a mail to: ot@openslx.com, or join the IRC-channel
# '#openslx' (on freenode).
################################################################################
sub new
{
    my $class = shift;

    my $self = {
        name => 'xserver',
    };

    return bless $self, $class;
}

sub getInfo
{
    my $self = shift;

    return {
        description => unshiftHereDoc(<<'        End-of-Here'),
        This plugin tries to configure the local Xorg-Server and 
	integrates binary graphics drivers (closed sourced) into the system.
        Notice that you need to have kernel-headers installed to work properly.
        in some cases. You need to download the driver packages yourself and 
        supply the download folder into the pkgpath option.
        End-of-Here
        precedence => 80,
    };
}

sub getAttrInfo
{   # returns a hash-ref with information about all attributes supported
    # by this specific plugin
    my $self = shift;

    # This default configuration will be added as attributes to the default
    # system, such that it can be overruled for any specific system by means
    # of slxconfig.
    return {
        # attribute 'active' is mandatory for all plugins
        'xserver::active' => {
            applies_to_systems => 1,
            applies_to_clients => 1,
            description => unshiftHereDoc(<<'            End-of-Here'),
            should the 'xserver'-plugin be executed during boot?
            End-of-Here
            content_regex => qr{^(0|1)$},
            content_descr => '1 means active - 0 means inactive',
            default => '1',
        },
        'xserver::ddcinfo' => {
            applies_to_systems => 1,
            applies_to_clients => 1,
            description => unshiftHereDoc(<<'            End-of-Here'),
            should the 'xserver'-plugin use the ddcinfo (if available) for
            the monitor/tft setup? Might help in scenarios with resolutions
            configured much lower than physically possible. (0 ignore, 1 use)
            End-of-Here
            content_regex => qr{^(0|1)$},
            content_descr => '0 ignore ddcinfo, 1 use ddcinfo if available',
            default => '0',
        },
        'xserver::driver' => {
            applies_to_systems => 1,
            applies_to_clients => 1,
            description => unshiftHereDoc(<<'            End-of-Here'),
            force to use defined driver
            End-of-Here
            content_regex => undef,
            content_descr => 'force to use defined driver',
            default => undef,
        },
        'xserver::prefnongpl' => {
            applies_to_systems => 1,
            applies_to_clients => 1,
            description => unshiftHereDoc(<<'            End-of-Here'),
            should the 'xserver'-plugin use the non-gpl drivers for some graphic
            adaptors if available (0 prefer gpl, 1 use the nongpl)
            End-of-Here
            content_regex => qr{^(0|1)$},
            content_descr => '0 prefer gpl, 1 use the nongpl',
            default => '0',
        },
        'xserver::multihead' => {
            applies_to_systems => 1,
            applies_to_clients => 1,
            description => unshiftHereDoc(<<'            End-of-Here'),
            should the 'xserver'-plugin configure multi-head setups of Xorg
            for different scenarios and dynamically added displays
            (not implemented yet)
            End-of-Here
            content_regex => undef,
            content_descr => '',
            default => '1',
        },

        # plugin specific attributes start here ...

        # stage1
        # Currently not needed in scenarios where distro specific packages are
        # available, but for example in SUSE 10.2 we use this method
		# -> provide downloaded packages here.
        'xserver::pkgpath' => {
            applies_to_vendor_os => 1,
            description => unshiftHereDoc(<<'            End-of-Here'),
                Path to downloaded ATI or Nvidia package
            End-of-Here
            content_regex => qr{^.+$}, # not empty
            content_descr => 'Path to Nvidia or ATI packages',
            default => '/root/xserver-pkgs',
        },
        'xserver::ati' => {
            applies_to_vendor_os => 1,
            description => unshiftHereDoc(<<'            End-of-Here'),
                should the non-gpl ATI drivers be available (installed in  vendor-OS - not implemented yet)?
            End-of-Here
            content_regex => qr{^0|1$},
            content_descr => '"0", "1"',
            default => '0',
        },
        'xserver::nvidia' => {
            applies_to_vendor_os => 1,
            description => unshiftHereDoc(<<'            End-of-Here'),
                should the non-gpl NVidia drivers be available (installed in  vendor-OS - not implemented yet)?
            End-of-Here
            content_regex => qr{^0|1$},
            content_descr => '"0", "1"',
            default => '0',
        },
        #'xserver::matrox' => {
        #    applies_to_vendor_os => 1,
        #    description => unshiftHereDoc(<<'            End-of-Here'),
        #        should the non-gpl Matrox drivers (e.g. for the Parhelia) be 
        #        available (installed in vendor-OS)?
        #    End-of-Here
        #    content_regex => qr{^0|1$},
        #    content_descr => '"0", "1"',
        #    default => '0',
        #},
    };
}


sub preInstallationPhase()
{
    my $self = shift;
    my $info = shift;

    $self->{pluginRepositoryPath} = $info->{'plugin-repo-path'};
    $self->{pluginTempPath}       = $info->{'plugin-temp-path'};
    $self->{openslxBasePath}      = $info->{'openslx-base-path'};
    $self->{openslxConfigPath}    = $info->{'openslx-config-path'};
    $self->{attrs}                = $info->{'plugin-attrs'};
    $self->{vendorOsPath}         = $info->{'vendor-os-path'};
                                        

    my $pkgpath = $self->{attrs}->{'xserver::pkgpath'};
    $pkgpath ||= "";
    my $installAti = $self->{attrs}->{'xserver::ati'};
    my $installNvidia = $self->{attrs}->{'xserver::nvidia'};

    if (! -d $pkgpath && ($installAti == 1 || $installNvidia == 1)) {
        print "\n\n * xserver::pkgpath: no such directory!\n";
        print " * xserver plugin can only install ATI or Nvidia driver\n";
		print "   via operating system packaging (e.g. != SuSE-10.2)!\n";
        # exit 1 => xserver plugin is not getting installed because ati
        # or nvidia where selected but are not installable!
		# exit 1;
    }

    if (-d $pkgpath && ($installNvidia == 1 || $installAti == 1)) {
        system("cp -r $pkgpath $self->{pluginRepositoryPath}/packages");
    }

}


sub installationPhase
{   # called while chrooted to the vendor-OS root in order to give the plugin
    # a chance to install required files into the vendor-OS.
    my $self = shift;
    my $info = shift;

    # ehh... every plugin has it's own different installationPhase
    # variable definition?
    my $pluginRepoPath = $info->{'plugin-repo-path'};
        # The folder where the stage1-plugin should store all files
        # required by the corresponding stage3 runlevel script.
        # As this method is being executed while chrooted into the vendor-OS,
        # this path is relative to that root (i.e. directly usable).
    my $pluginTempPath = $info->{'plugin-temp-path'};
        # A temporary playground that will be cleaned up automatically.
        # As this method is being executed while chrooted into the vendor-OS,
        # this path is relative to that root (i.e. directly usable).
    my $openslxBasePath = $info->{'openslx-base-path'};
        # the openslx base path (/opt/openslx) bind-mounted into the chroot
    my $openslxConfigPath = $info->{'openslx-config-path'};
        # the openslx config path (/etc/opt/openlsx) bind-mounted into the 
        # chroot
    my $attrs = $info->{'plugin-attrs'};
        # attributes in effect for this installation
    my $vendorOSName = $self->{'os-plugin-engine'}->{'vendor-os-name'};

    # write the distro specific extension (inclusion) of XX_xserver.sh
    my $script = $self->{distro}->setupXserverScript($pluginRepoPath);
    spitFile("$pluginRepoPath/xserver.sh", $script);

    # if defined: build nvidia or ati binarys
    my $pluginFilesPath =
        "$openslxBasePath/lib/plugins/$self->{'name'}/files";
    my $installationPath = "$pluginRepoPath/";
    my $binDrivers = 0;
    my $engine = $self->{'os-plugin-engine'};

    # removeLinks is to remove Links to the files
    # TODO: In future versions this call can be removed - deprecated version
    $self->removeLinks();

    if ($attrs->{'xserver::nvidia'} == 1  || $attrs->{'xserver::ati'} == 1 ) {
        if($vendorOSName =~ /.*?ubuntu.*?/i) 
        {
            if($vendorOSName =~ /.*?8.10|9.04|9.10.*?/i) 
            {
                copyFile("$pluginFilesPath/ubuntu-ng-gfx-install.sh", 
                   "$installationPath");
                rename("$installationPath/ubuntu-ng-gfx-install.sh",
                    "$installationPath/ubuntu-gfx-install.sh");
            }
            else
            {
                copyFile("$pluginFilesPath/ubuntu-gfx-install.sh", "$installationPath");
            }
        }
        $binDrivers = 1;
    }
    if ($attrs->{'xserver::ati'} == 1 ) {
        $self->{distro}->installAti($pluginRepoPath,"packages");
    }
    if ($attrs->{'xserver::nvidia'} == 1 ) {
        $self->{distro}->installNvidia($pluginRepoPath,"packages");
    }

    if ($binDrivers == 1) {
         $self->ldconf($info);
        system("chmod -R 755 $installationPath");
    }

    return;
}

sub removalPhase
{   # called while chrooted to the vendor-OS root in order to give the plugin
    # a chance to uninstall no longer required files from the vendor-OS.
    my $self = shift;
    my $info = shift;
    
    my $pluginRepoPath = $info->{'plugin-repo-path'};
        # The folder where the stage1-plugin should store all files
        # required by the corresponding stage3 runlevel script.
        # As this method is being executed while chrooted into the vendor-OS,
        # this path is relative to that root (i.e. directly usable).
    my $pluginTempPath = $info->{'plugin-temp-path'};
        # A temporary playground that will be cleaned up automatically.
        # As this method is being executed while chrooted into the vendor-OS,
        # this path is relative to that root (i.e. directly usable).

   
    # TODO (in far future): Remove - linking is deprecated
    # Make sure nobody has installed the old plugin version
    $self->removeLinks();

    return;
}



# Create ld.so.conf for the binary drivers 
sub ldconf
{
    my $self = shift;
    my $info = shift;

    my $attrs = $info->{'plugin-attrs'};
    my $ldincl = $info->{'plugin-repo-path'}.'/';
    my $ldpl = "/etc/ld.conf.preload";
    my $ldconf = "/etc/ld.so.conf";
    my $ldcache = "";

    if( -d $ldincl.'nvidia/') {

        ## WRITE ld.so.conf ##
        
        open(IN,'>'.$ldincl.'nvidia/ld.so.conf');
        print IN $ldincl."nvidia/usr/lib\n".$ldincl.'nvidia/usr/X11R6/lib';
        close(IN);
    
        ## CREATE DIFFERENT 'ld.so.cache' ##
    
        $ldcache = $ldincl.'/nvidia/ld.so.cache';
        system('sed -e "1s,^,include '.$ldincl.'nvidia/ld.so.conf\n,g" -i '.$ldconf);
        #print "Calling ldconfig to create $ldcache ... Please Wait\n";
        system('ldconfig -C '.$ldcache);
        system('sed -e "1d" -i '.$ldconf);
    }


    if( -d $ldincl.'ati/') {
        open(IN,'>'.$ldincl.'ati/ld.so.conf');
        print IN $ldincl."ati/usr/lib\n".$ldincl.'ati/usr/X11R6/lib';
        close(IN);
    
        $ldcache = $ldincl.'/ati/ld.so.cache';
        system('sed -e "1s,^,include '.$ldincl.'ati/ld.so.conf\n,g" -i '.$ldconf);
        #print "Calling ldconfig to create $ldcache ... Please Wait\n";
        system('ldconfig -C '.$ldcache);
        system('sed -e "1d" -i '.$ldconf);
    }
}


# deprecated
# removes linked libraries from /usr/lib/
sub removeLinks
{
    my $instFolders = "/usr/lib";
    if(-d "/usr/X11R6/lib") {
        $instFolders .= " /usr/X11R6/lib";
    }
    my $divertFolder = "/var/X11R6/lib";
    my $pluginFolder = "/opt/openslx/plugin-repo/xserver";

    # get all previously installed links
    my @linkedFiles = 
        `find $instFolders -lname "$divertFolder*" -o -lname "$pluginFolder*" `;


    # also remove _MESA backup files
    my @backupFiles =
        `find $instFolders -name "*_MESA.so*"`;
    my $origfile = '';
    for my $file (@backupFiles) {
        $origfile = $file;
        $file =~ s/_MESA//;
        rename($origfile,$file);
    }
    unlink "/usr/lib/libGL.so", "/usr/lib/libGL.so.1";
    symlink "/usr/lib/libGL.so.1.2", "/usr/lib/libGL.so.1";
    symlink "/usr/lib/libGL.so.1.2", "/usr/lib/libGL.so";

	
    foreach my $file (@linkedFiles) {
		chomp($file);
		unlink $file;
	}

	# this should not print any file at all ;-(
    my @files = `find $instFolders -lname "$divertFolder*" -o -lname "$pluginFolder*" `;
	if ( $#files > 0 ) {
		print "Links were not removed properly! Exiting!\n";
		my $bla;
		foreach (@files) {
			chomp($bla = $_);
			print $bla;
		}
		exit(1);
	}
    return;
}

1;