File: Adaptec.pm

package info (click to toggle)
ocsinventory-agent 2%3A2.10.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,424 kB
  • sloc: perl: 26,492; xml: 773; objc: 528; sh: 386; ansic: 333; makefile: 12
file content (308 lines) | stat: -rw-r--r-- 11,336 bytes parent folder | download | duplicates (4)
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
package Ocsinventory::Agent::Backend::OS::Linux::Storages::Adaptec;
use Ocsinventory::Agent::Backend::OS::Linux::Storages;

#Function parse_config and parse_config_fh are taken from https://github.com/kumy/Parse-Arcconf
#
#LICENSE AND COPYRIGHT
#
#Copyright (C) 2012 Mathieu Alorent
#
#This program is free software; you can redistribute it and/or modify it
#under the terms of either: the GNU General Public License as published
#by the Free Software Foundation; or the Artistic License.
#
#See http://dev.perl.org/licenses/ for more information.


# Tested on 2.6.* kernels
#
# Cards tested :
#
# Adaptec AAC-RAID

use strict;

my @devices = Ocsinventory::Agent::Backend::OS::Linux::Storages::getFromUdev();

sub check {
    my $params = shift;
    my $common = $params->{common};

    #Do we have arcconf
    if ($common->can_run ('arcconf') ) {
        my $conf = `arcconf GETCONFIG 1`;
        if($conf =~ /Controllers found: (\d+)/) {
            if($1>0) {
                return 1;
            }
        }
    }

    #Do we have smartctl
    if ($common->can_run ('smartctl') ) {
        foreach my $hd (@devices) {
            $hd->{MANUFACTURER} eq 'Adaptec'?return 1:1;
        }
    }
    return 0;
}

sub run {
    my $params = shift;
    my $common = $params->{common};
    my $logger = $params->{logger};

    my ($name,$vendor,$model,$serialnumber,$firmware, $size, $description, $media, $manufacturer);
    my ($conf, $cur_cont,$info,$key, $dev, $devkey,$controller);
    #get infos from arcconf if possible
    if ($common->can_run ('arcconf') ) {
        $conf = `arcconf GETCONFIG 1`;
        if($conf =~ /Controllers found: (\d+)/) {
            if($1>0) {

                $controller = parse_config();

                foreach $cur_cont (keys %{$controller}){    #travers Controller
                    $info =  $controller->{$cur_cont};

                    foreach $key (keys %{$info}){           #travers Infos of Controller

                        #physical drives
                        if ($key=~m/physical drive/) {
                            $dev = $info->{$key};
                            foreach $devkey (keys %{$dev}) {     #get infos

                                $vendor = $dev->{$devkey}->{'Vendor'};
                                $model = $dev->{$devkey}->{'Model'};
                                $serialnumber = $dev->{$devkey}->{'Serial number'};
                                $firmware = $dev->{$devkey}->{'Firmware'};
                                $size = $dev->{$devkey}->{'Size'};
                                $description = $dev->{$devkey}->{'Transfer Speed'};
                                $media = $dev->{$devkey}->{'Device is'};
                                unless ( $media=~m/an Enclosure services device/) { #Dont need services device just drives
                                    if ( $media=~m/a Hard drive/ ){
                                        $media = "HDD";

                                        #try to determine if Drive is a Solid State Disk
                                        if (exists $dev->{$devkey}->{'SSD'}) { #SSD Info is explicit in config
                                            my $ssd = $dev->{$devkey}->{'SSD'};
                                            if ($ssd=~m/Yes/) {
                                                 $media = "SSD";
                                            }
                                        } else { #No explicit info try to get it through model name
                                           if($model =~m/SSD|Solid State|WDS/) {
                                                $media = "SSD";
                                           }
                                        }

                                    }

                                    $manufacturer = Ocsinventory::Agent::Backend::OS::Linux::Storages::getManufacturer($vendor);
                                    $logger->debug("Adaptec: $manufacturer $media $size, $manufacturer, $model, $description, $media, $size , $serialnumber, $firmware");
                                    $common->addStorages({
                                        NAME => "$manufacturer $media $size",
                                        MANUFACTURER => $manufacturer,
                                        MODEL => $model,
                                        DESCRIPTION => $description,
                                        TYPE => $media,
                                        DISKSIZE => $size,
                                        SERIALNUMBER => $serialnumber,
                                        FIRMWARE => $firmware,
                                    });
                               }
                            }
                        }
                    }
                }
            }
        }
    }
    elsif (-r '/proc/scsi/scsi') {
        foreach my $hd (@devices) {
            open (PATH, '/proc/scsi/scsi');
            # Example output:
            #
            # Attached devices:
            # Host: scsi0 Channel: 00 Id: 00 Lun: 00
            #   Vendor: Adaptec  Model: raid10           Rev: V1.0
            #   Type:   Direct-Access                    ANSI  SCSI revision: 02
            # Host: scsi0 Channel: 01 Id: 00 Lun: 00
            #   Vendor: HITACHI  Model: HUS151436VL3800  Rev: S3C0
            #   Type:   Direct-Access                    ANSI  SCSI revision: 03
            # Host: scsi0 Channel: 01 Id: 01 Lun: 00
            #   Vendor: HITACHI  Model: HUS151436VL3800  Rev: S3C0
            #   Type:   Direct-Access                    ANSI  SCSI revision: 03

            my ($host, $model, $firmware, $manufacturer, $size, $serialnumber);
            my $count = -1;
            while (<PATH>) {
                ($host, $count) = (1, $count+1) if /^Host:\sscsi$hd->{SCSI_COID}.*/;
                if ($host) {
                    if ((/.*Model:\s(\S+).*Rev:\s(\S+).*/) and ($1 !~ 'raid.*')) {
                        $model = $1;
                        $firmware = $2;
                        $manufacturer = Ocsinventory::Agent::Backend::OS::Linux::Storages::getManufacturer($model);
                        foreach (`smartctl -i /dev/sg$count`) {
                            $serialnumber = $1 if /^Serial Number:\s+(\S*).*/;
                        }
                        $logger->debug("Adaptec: $hd->{NAME}, $manufacturer, $model, SATA, disk, $hd->{DISKSIZE}, $serialnumber, $firmware");
                        $host = undef;

                        $common->addStorages({
                            NAME => $hd->{NAME},
                            MANUFACTURER => $manufacturer,
                            MODEL => $model,
                            DESCRIPTION => 'SATA',
                            TYPE => 'disk',
                            DISKSIZE => $size,
                            SERIALNUMBER => $serialnumber,
                            FIRMWARE => $firmware,
                        });
                    }
                }
            }
            close (PATH);
        }
    }
}



sub parse_config
{
  my $arcconf  = "arcconf";
  my $argument = "GETCONFIG 1";
  my $command = sprintf("%s %s|", $arcconf, $argument);
  my $fh;
  if(open $fh, $command)
  {
    my $c = parse_config_fh($fh);
    close $fh;
    return $c;
  }
  return undef;
}

sub parse_config_fh
{
  my  $fh = $_[0];

  my $controller = {};
  my $total_controller        = 0;
  my $current_controller      = 0;
  my $current_logical_drive   = undef;
  my $current_physical_drive  = undef;
  my $ctrl                    = undef;
  my $line                    = undef;

  LEVEL1: while($line = <$fh>)
  {
    chomp $line;

    next if($line =~ /^$/);
    next if($line =~ /^-+$/);

    if($line =~ /^Controllers found: (\d+)$/) {
      $total_controller = $1;
    }
    if($line =~ /^Controller information/) {
      $current_controller     = $current_controller + 1;
      $current_logical_drive  = undef;
      $current_physical_drive = undef;
      $controller->{$current_controller} = {};
      $ctrl = $controller->{$current_controller};

      while($line = <$fh>) {
        chomp $line;

        if ($line =~ /^\s+(.*\w)\s+:\s+(.*)$/) {
          $ctrl->{$1} = $2;
        } elsif ($line =~ /^\s+-+$/) {
          last;
        }
      }

      LEVEL2: while($line = <$fh>) {
        if ($line =~ /^\s+-+$/) {
          $line = <$fh>;
          chomp $line;
        }
        if($line =~ /^\s+(.*\w)\s*/) {
                my $cat = $1;
                $line = <$fh>;
                LEVEL3: while($line = <$fh>) {
                        chomp $line;

                        if ($line =~ /^\s+(.*\w)\s+:\s+(.*)$/) {
                                $ctrl->{$cat}{$1} = $2;
                        } elsif ($line =~ /^\s+-+$/) {
                                last LEVEL3;
                        } elsif ($line =~ /^$/) {
                                last LEVEL2;
                        }
                }
        }
      }
    }

    next if(!defined($current_controller));

    if($line =~ /^Logical drive information/ or $line =~ /^Logical device information/) {
        LEVEL4: while($line = <$fh>) {
                chomp $line;

                if ($line =~ /^\S+.*\w\s+(\d+)$/) {
                        $current_logical_drive = $1;
                } elsif ($line =~ /^\s+(\S.*\S+)\s+:\s+(.*)$/) {
                        $ctrl->{'logical drive'}{$current_logical_drive}{$1} = $2;
                } elsif ($line =~ /^\s+-+$/) {
                        my $cat = <$fh>;
                        $cat =~ s/^\s+(\S.*\S+)\s+/$1/;
                        chomp $cat;
                        LEVEL5: while($line = <$fh>) {
                                chomp $line;

                                if ($line =~ /^\s+(\S.*\S+)\s+:\s+(.*)$/) {
                                        $ctrl->{'logical drive'}{$current_logical_drive}{$cat}{$1} = $2;
                                } elsif ($line =~ /^\S+.*\w\s+(\d+)$/) {
                                        $current_logical_drive = $1;
                                        last LEVEL5;
                                } elsif ($line =~ /^-+$/) {
                                        last LEVEL4;
                                } elsif ($line =~ /^\s+-+$/) {
                                        next;
                                }
                        }
                }
        }
    }

    if($line =~ /^Physical Device information/) {

        LEVEL2: while($line = <$fh>) {
                if ($line =~ /^\s+-+$/) {
                        $line = <$fh>;
                        chomp $line;
                }
                if ($line =~ /^\s+Device\s+#(\d+)$/) {
                        $current_physical_drive = $1;
                } elsif ($line =~ /^\s+Device is (.*\w)/) {
                        $ctrl->{'physical drive'}{$current_physical_drive}{'Device is'} = $1;
                } elsif ($line =~ /^\s+(.*\w)\s+:\s+(.*)$/) {
                        $ctrl->{'physical drive'}{$current_physical_drive}{$1} = $2;
                } elsif ($line =~ /^\s+-+$/) {
                        last LEVEL3;
                } elsif ($line =~ /^$/) {
                        last LEVEL2;
                }
        }
    }

  }

  return $controller;
}



1;