This file is indexed.

/usr/lib/ruby/vendor_ruby/ohai/plugins/solaris2/virtualization.rb is in ohai 8.4.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
#
# Author:: Sean Walbran (<seanwalbran@gmail.com>)
# Author:: Kurt Yoder (<ktyopscode@yoderhome.com>)
# Copyright:: Copyright (c) 2009 Opscode, Inc.
# Copyright:: Copyright (c) 2010 Kurt Yoder
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

Ohai.plugin(:Virtualization) do
  provides "virtualization"

  def collect_solaris_guestid
    command = '/usr/sbin/zoneadm list -p'
    so = shell_out(command)
    so.stdout.split(':').first
  end

  collect_data(:solaris2) do
    virtualization Mash.new

    # Detect KVM/QEMU from cpuinfo, report as KVM
    psrinfo_path = Ohai.abs_path( "/usr/sbin/psrinfo" )
    if File.exists?(psrinfo_path)
      so = shell_out("#{psrinfo_path} -pv")
      if so.stdout =~ /QEMU Virtual CPU/
        virtualization[:system] = "kvm"
        virtualization[:role] = "guest"
      end
    end

    # http://www.dmo.ca/blog/detecting-virtualization-on-linux
    smbios_path= Ohai.abs_path( "/usr/sbin/smbios" )
    if File.exists?(smbios_path)
      so = shell_out(smbios_path)
      case so.stdout
      when /Manufacturer: Microsoft/
        if so.stdout =~ /Product: Virtual Machine/ 
          virtualization[:system] = "virtualpc"
          virtualization[:role] = "guest"
        end 
      when /Manufacturer: VMware/
        if so.stdout =~ /Product: VMware Virtual Platform/ 
          virtualization[:system] = "vmware"
          virtualization[:role] = "guest"
        end
      else
        nil
      end
    end

    if File.executable?('/usr/sbin/zoneadm')
      zones = Mash.new
      so = shell_out("zoneadm list -pc")
      so.stdout.lines do |line|
        info = line.chomp.split(/:/)
        zones[info[1]] = {
          'id' => info[0],
          'state' => info[2],
          'root' => info[3],
          'uuid' => info[4],
          'brand' => info[5],
          'ip' => info[6],
        }
      end
        
      if (zones.length == 1)
        first_zone = zones.keys[0]
        unless( first_zone == 'global')
          virtualization[:system] = 'zone'
          virtualization[:role] = 'guest'
          virtualization[:guest_uuid] = zones[first_zone]['uuid']
          virtualization[:guest_id] = collect_solaris_guestid
        end
      elsif (zones.length > 1)
        virtualization[:system] = 'zone'
        virtualization[:role] = 'host'
        virtualization[:guests] = zones
      end
    end
  end
end