This file is indexed.

/usr/share/arc/schema/ARCSHCLegacy.xsd is in libarccommon3 4.0.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
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema
   xmlns:xt="http://www.nordugrid.org/schemas/arcshclegacy/2011/05"
   xmlns:xsd="http://www.w3.org/2001/XMLSchema"
   targetNamespace="http://www.nordugrid.org/schemas/arcshclegacy/2011/05"
   elementFormDefault="qualified"
   attributeFormDefault="unqualified">

  <!-- This schema defines elements which are accepted by ARCLegacy 
       SecHandler and ARCLegacy PDP. ARCLegacy SecHandler collects
       groups and VOs to which client is assigned according to 
       [group] and [vo] blocks on arc.conf. ARCLegacy PDP is then used 
       to permit only clients belonging to one of particular groups or VOs.
       -->

  <xsd:element name="ConfigFile" type="xsd:string">
    <xsd:annotation>
      <xsd:documentation xml:lang="en">
        This element defines configuration file path for 
        ARCLegacy SecHandler. That file contains [group]
        and [vo] which wil be proessed by that SecHandler.
        This elemnt is mandatory.
      </xsd:documentation>
    </xsd:annotation>
  </xsd:element>

  <xsd:element name="Group" type="xsd:string">
    <xsd:annotation>
      <xsd:documentation xml:lang="en">
        This element defines allowed group for ARCLegacy PDP.
        If client belongs to that group PDP returns 
        positive result.
        There may be multiple such elements.
      </xsd:documentation>
    </xsd:annotation>
  </xsd:element>

  <xsd:element name="VO" type="xsd:string">
    <xsd:annotation>
      <xsd:documentation xml:lang="en">
        This element defines allowed VO for ARCLegacy PDP.
        If client belongs to that VO  PDP returns 
        positive result.
        There may be multiple such elements.
      </xsd:documentation>
    </xsd:annotation>
  </xsd:element>

  <xsd:element name="ConfigBlock">
    <xsd:annotation>
      <xsd:documentation xml:lang="en">
        This element defines configuration file and configuration
        blocks for processing in ARCLegacy Identity Mapper and PDP.
        There may be multiple such elements.
      </xsd:documentation>
    </xsd:annotation>
    <xsd:complexType>
      <xsd:annotation>
        <xsd:documentation xml:lang="en">
        </xsd:documentation>
      </xsd:annotation>
      <xsd:sequence>
        <xsd:element name="ConfigFile" type="xsd:string">
          <xsd:annotation>
            <xsd:documentation xml:lang="en">
            </xsd:documentation>
          </xsd:annotation>
        </xsd:element>
        <xsd:element name="BlockName" type="xsd:string" minOccurs="0" maxOccurs="unbounded">
          <xsd:annotation>
            <xsd:documentation xml:lang="en">
            </xsd:documentation>
          </xsd:annotation>
        </xsd:element>
      </xsd:sequence>
    </xsd:complexType>
  </xsd:element>

</xsd:schema>