newrelic 6.7.1 → 6.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (206) hide show
  1. package/CODE_OF_CONDUCT.md +46 -0
  2. package/CONTRIBUTING.md +61 -29
  3. package/LICENSE +201 -295
  4. package/NEWS.md +90 -0
  5. package/README.md +85 -681
  6. package/THIRD_PARTY_NOTICES.md +1908 -232
  7. package/THIRD_PARTY_NOTICES_ADDENDUM.md +206 -0
  8. package/api.js +31 -12
  9. package/bin/ca-gen.js +6 -0
  10. package/bin/cassandra-setup.sh +3 -0
  11. package/bin/clean.sh +3 -0
  12. package/bin/compare-bench-results.js +5 -0
  13. package/bin/docker-env-vars.sh +3 -0
  14. package/bin/docker-services.sh +3 -0
  15. package/bin/publish-docs.sh +3 -0
  16. package/bin/run-bench.js +5 -0
  17. package/bin/run-versioned-tests.sh +13 -1
  18. package/bin/smoke.sh +3 -0
  19. package/bin/ssl.sh +6 -3
  20. package/bin/test-naming-rules.js +6 -0
  21. package/bin/tracetractor +5 -0
  22. package/bin/travis-install-gcc5.sh +3 -0
  23. package/bin/travis-install-mongo.sh +3 -0
  24. package/bin/travis-node.sh +3 -0
  25. package/bin/travis-setup.sh +2 -0
  26. package/bin/update-ca-bundle.sh +3 -0
  27. package/bin/update-cats.sh +3 -0
  28. package/index.js +5 -0
  29. package/lib/adaptive-sampler.js +5 -0
  30. package/lib/agent.js +5 -0
  31. package/lib/aggregators/base-aggregator.js +5 -0
  32. package/lib/aggregators/event-aggregator.js +5 -0
  33. package/lib/aggregators/trace-aggregator.js +5 -0
  34. package/lib/attributes.js +5 -0
  35. package/lib/collector/api.js +5 -0
  36. package/lib/collector/facts.js +5 -0
  37. package/lib/collector/http-agents.js +5 -0
  38. package/lib/collector/key-parser.js +5 -0
  39. package/lib/collector/parse-response.js +5 -0
  40. package/lib/collector/remote-method.js +5 -0
  41. package/lib/collector/response.js +5 -0
  42. package/lib/collector/serverless.js +5 -0
  43. package/lib/collector/ssl/certificates.js +5 -0
  44. package/lib/config/attribute-filter.js +5 -0
  45. package/lib/config/default.js +5 -7
  46. package/lib/config/env.js +5 -6
  47. package/lib/config/harvest-config-validator.js +5 -0
  48. package/lib/config/hsm.js +5 -0
  49. package/lib/config/index.js +15 -1
  50. package/lib/config/lasp.js +5 -0
  51. package/lib/config/merge-server-config.js +5 -0
  52. package/lib/custom-events/custom-event-aggregator.js +5 -0
  53. package/lib/db/parse-sql.js +5 -0
  54. package/lib/db/parsed-statement.js +5 -0
  55. package/lib/db/query-parsers/sql.js +5 -0
  56. package/lib/db/query-sample.js +5 -0
  57. package/lib/db/query-trace-aggregator.js +5 -0
  58. package/lib/db/slow-query.js +5 -0
  59. package/lib/db/statement-matcher.js +5 -0
  60. package/lib/db/utils.js +5 -0
  61. package/lib/environment.js +5 -0
  62. package/lib/errors/error-collector.js +35 -14
  63. package/lib/errors/error-event-aggregator.js +5 -0
  64. package/lib/errors/error-trace-aggregator.js +5 -0
  65. package/lib/errors/helper.js +5 -0
  66. package/lib/errors/index.js +5 -0
  67. package/lib/feature_flags.js +7 -1
  68. package/lib/grpc/connection/states.js +5 -0
  69. package/lib/grpc/connection.js +65 -90
  70. package/lib/header-attributes.js +9 -0
  71. package/lib/header-processing.js +5 -0
  72. package/lib/instrumentation/@hapi/hapi.js +5 -0
  73. package/lib/instrumentation/amqplib.js +5 -0
  74. package/lib/instrumentation/bluebird.js +5 -0
  75. package/lib/instrumentation/cassandra-driver.js +5 -0
  76. package/lib/instrumentation/connect.js +5 -0
  77. package/lib/instrumentation/core/async_hooks.js +5 -0
  78. package/lib/instrumentation/core/child_process.js +5 -0
  79. package/lib/instrumentation/core/crypto.js +5 -0
  80. package/lib/instrumentation/core/dns.js +5 -0
  81. package/lib/instrumentation/core/domain.js +5 -0
  82. package/lib/instrumentation/core/fs.js +5 -0
  83. package/lib/instrumentation/core/globals.js +5 -0
  84. package/lib/instrumentation/core/http-outbound.js +8 -3
  85. package/lib/instrumentation/core/http.js +21 -0
  86. package/lib/instrumentation/core/inspector.js +5 -0
  87. package/lib/instrumentation/core/net.js +5 -0
  88. package/lib/instrumentation/core/timers.js +5 -0
  89. package/lib/instrumentation/core/zlib.js +5 -0
  90. package/lib/instrumentation/director.js +5 -0
  91. package/lib/instrumentation/express.js +5 -0
  92. package/lib/instrumentation/fastify/spec-builders.js +106 -0
  93. package/lib/instrumentation/fastify.js +79 -0
  94. package/lib/instrumentation/generic-pool.js +5 -0
  95. package/lib/instrumentation/hapi/hapi-17.js +5 -0
  96. package/lib/instrumentation/hapi/shared.js +5 -0
  97. package/lib/instrumentation/hapi.js +5 -0
  98. package/lib/instrumentation/ioredis.js +5 -0
  99. package/lib/instrumentation/memcached.js +5 -0
  100. package/lib/instrumentation/mongodb.js +5 -0
  101. package/lib/instrumentation/mysql.js +5 -0
  102. package/lib/instrumentation/oracle.js +5 -0
  103. package/lib/instrumentation/pg.js +5 -0
  104. package/lib/instrumentation/promise.js +5 -0
  105. package/lib/instrumentation/q.js +5 -0
  106. package/lib/instrumentation/redis.js +5 -0
  107. package/lib/instrumentation/restify.js +5 -0
  108. package/lib/instrumentation/vision.js +5 -0
  109. package/lib/instrumentation/when.js +5 -0
  110. package/lib/instrumentations.js +6 -0
  111. package/lib/logger.js +5 -0
  112. package/lib/metrics/index.js +5 -0
  113. package/lib/metrics/mapper.js +5 -0
  114. package/lib/metrics/metric-aggregator.js +4 -1
  115. package/lib/metrics/names.js +5 -0
  116. package/lib/metrics/normalizer/rule.js +5 -0
  117. package/lib/metrics/normalizer/tx_segment.js +5 -0
  118. package/lib/metrics/normalizer.js +10 -5
  119. package/lib/metrics/recorders/custom.js +5 -0
  120. package/lib/metrics/recorders/distributed-trace.js +5 -0
  121. package/lib/metrics/recorders/generic.js +5 -0
  122. package/lib/metrics/recorders/http.js +5 -0
  123. package/lib/metrics/recorders/http_external.js +5 -0
  124. package/lib/metrics/recorders/message-transaction.js +5 -0
  125. package/lib/metrics/recorders/other.js +5 -0
  126. package/lib/parse-proc-cpuinfo.js +5 -0
  127. package/lib/parse-proc-meminfo.js +5 -0
  128. package/lib/prioritized-attributes.js +201 -0
  129. package/lib/priority-queue.js +5 -0
  130. package/lib/proxy/grpc.js +5 -0
  131. package/lib/reservoir.js +5 -0
  132. package/lib/sampler.js +5 -0
  133. package/lib/serverless/api-gateway.js +5 -0
  134. package/lib/serverless/aws-lambda.js +42 -4
  135. package/lib/serverless/event-sources.json +1 -1
  136. package/lib/shim/conglomerate-shim.js +5 -0
  137. package/lib/shim/constants.js +5 -0
  138. package/lib/shim/datastore-shim.js +5 -0
  139. package/lib/shim/index.js +5 -0
  140. package/lib/shim/message-shim.js +21 -0
  141. package/lib/shim/promise-shim.js +5 -0
  142. package/lib/shim/shim.js +5 -0
  143. package/lib/shim/specs/index.js +5 -0
  144. package/lib/shim/transaction-shim.js +5 -0
  145. package/lib/shim/webframework-shim.js +7 -1
  146. package/lib/shimmer.js +5 -116
  147. package/lib/spans/create-span-event-aggregator.js +5 -0
  148. package/lib/spans/map-to-streaming-type.js +5 -0
  149. package/lib/spans/span-context.js +41 -0
  150. package/lib/spans/span-event-aggregator.js +5 -0
  151. package/lib/spans/span-event.js +13 -1
  152. package/lib/spans/span-streamer.js +8 -2
  153. package/lib/spans/streaming-span-attributes.js +5 -0
  154. package/lib/spans/streaming-span-event-aggregator.js +16 -1
  155. package/lib/spans/streaming-span-event.js +12 -1
  156. package/lib/stats/apdex.js +5 -0
  157. package/lib/stats/index.js +5 -5
  158. package/lib/system-info.js +5 -0
  159. package/lib/timer.js +5 -0
  160. package/lib/transaction/dt-payload.js +5 -0
  161. package/lib/transaction/handle.js +5 -0
  162. package/lib/transaction/index.js +88 -15
  163. package/lib/transaction/name-state.js +5 -0
  164. package/lib/transaction/trace/aggregator.js +5 -0
  165. package/lib/transaction/trace/exclusive-time-calculator.js +5 -0
  166. package/lib/transaction/trace/index.js +27 -0
  167. package/lib/transaction/trace/segment.js +33 -9
  168. package/lib/transaction/tracecontext.js +5 -0
  169. package/lib/transaction/tracer/index.js +10 -0
  170. package/lib/transaction/transaction-event-aggregator.js +5 -0
  171. package/lib/uninstrumented.js +5 -0
  172. package/lib/util/arity.js +5 -0
  173. package/lib/util/attribute-types.js +5 -0
  174. package/lib/util/byte-limit.js +5 -0
  175. package/lib/util/cat.js +5 -0
  176. package/lib/util/codec.js +5 -0
  177. package/lib/util/copy.js +5 -0
  178. package/lib/util/deep-equal.js +5 -0
  179. package/lib/util/flatten.js +5 -0
  180. package/lib/util/get.js +5 -0
  181. package/lib/util/hashes.js +5 -0
  182. package/lib/util/label-parser.js +5 -0
  183. package/lib/util/logger.js +5 -0
  184. package/lib/util/process-version.js +5 -0
  185. package/lib/util/properties.js +5 -0
  186. package/lib/util/sql/obfuscate.js +5 -0
  187. package/lib/util/stream-sink.js +5 -0
  188. package/lib/util/unwrapped-core.js +5 -0
  189. package/lib/util/urltils.js +5 -0
  190. package/lib/utilization/aws-info.js +5 -0
  191. package/lib/utilization/azure-info.js +5 -0
  192. package/lib/utilization/common.js +5 -0
  193. package/lib/utilization/docker-info.js +5 -0
  194. package/lib/utilization/gcp-info.js +5 -0
  195. package/lib/utilization/index.js +5 -0
  196. package/lib/utilization/kubernetes-info.js +5 -0
  197. package/lib/utilization/pcf-info.js +5 -0
  198. package/newrelic.js +16 -0
  199. package/package.json +26 -11
  200. package/stub_api.js +5 -0
  201. package/third_party_manifest.json +624 -0
  202. package/.eslintignore +0 -1
  203. package/.eslintrc.js +0 -67
  204. package/.github/PULL_REQUEST_TEMPLATE.md +0 -5
  205. package/.travis.yml +0 -40
  206. package/lib/injector.js +0 -161
package/LICENSE CHANGED
@@ -1,295 +1,201 @@
1
- All components of this product are
2
- Copyright (c) 2012-2019 New Relic, Inc. All rights reserved.
3
-
4
- Certain inventions disclosed in this file may be claimed within
5
- patents owned or patent applications filed by New Relic, Inc. or third
6
- parties.
7
-
8
- Subject to the terms of this notice, New Relic grants you a nonexclusive,
9
- nontransferable license, without the right to sublicense, to (a) install and
10
- execute one copy of these files on any number of workstations owned or
11
- controlled by you and (b) distribute verbatim copies of these files to third
12
- parties. You may install, execute, and distribute these files and their
13
- contents only in conjunction with your direct use of New Relic’s services.
14
- These files and their contents shall not be used in conjunction with any other
15
- product or software, including but not limited to those that may compete with
16
- any New Relic product, feature, or software. As a condition to the foregoing
17
- grant, you must provide this notice along with each copy you distribute and you
18
- must not remove, alter, or obscure this notice. In the event you submit or
19
- provide any feedback, code, pull requests, or suggestions to New Relic you
20
- hereby grant New Relic a worldwide, non-exclusive, irrevocable, transferrable,
21
- fully paid-up license to use the code, algorithms, patents, and ideas therein in
22
- our products.
23
-
24
- All other use, reproduction, modification, distribution, or other exploitation
25
- of these files is strictly prohibited, except as may be set forth in a separate
26
- written license agreement between you and New Relic. The terms of any such
27
- license agreement will control over this notice. The license stated above will
28
- be automatically terminated and revoked if you exceed its scope or violate any
29
- of the terms of this notice.
30
-
31
- This License does not grant permission to use the trade names, trademarks,
32
- service marks, or product names of New Relic, except as required for reasonable
33
- and customary use in describing the origin of this file and reproducing the
34
- content of this notice. You may not mark or brand this file with any trade
35
- name, trademarks, service marks, or product names other than the original brand
36
- (if any) provided by New Relic.
37
-
38
- Unless otherwise expressly agreed by New Relic in a separate written license
39
- agreement, these files are provided AS IS, WITHOUT WARRANTY OF ANY KIND,
40
- including without any implied warranties of MERCHANTABILITY, FITNESS FOR A
41
- PARTICULAR PURPOSE, TITLE, or NON-INFRINGEMENT. As a condition to your use of
42
- these files, you are solely responsible for such use. New Relic will have no
43
- liability to you for direct, indirect, consequential, incidental, special, or
44
- punitive damages or for lost profits or data.
45
-
46
- This product includes certificates from Symantec which are used under the
47
- following license
48
- (http://www.symantec.com/content/en/us/about/media/repository/root-certificate-license-agreement.pdf)
49
- :
50
-
51
- ROOT CERTIFICATE LICENSE AGREEMENT
52
- SYMANTEC CORPORATION AND/OR ITS AFFILIATES (“SYMANTEC”) IS WILLING TO PROVIDE
53
- THE ROOT CERTIFICATES TO YOU AS THE INDIVIDUAL, THE COMPANY, OR THE LEGAL
54
- ENTITY THAT WILL BE UTILIZING THE ROOT CERTIFICATES (REFERENCED BELOW AS “YOU”
55
- OR “YOUR”) ONLY ON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS OF THIS
56
- AGREEMENT (“AGREEMENT”). READ THE TERMS AND CONDITIONS OF THIS AGREEMENT
57
- CAREFULLY BEFORE USING THE ROOT CERTIFICATES. THIS IS A LEGAL AND ENFORCEABLE
58
- CONTRACT BETWEEN YOU AND SYMANTEC. BY USING THE ROOT CERTIFICATES, YOU AGREE TO
59
- THE TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE TO THESE TERMS
60
- AND CONDITIONS, MAKE NO FURTHER USE OF THE ROOT CERTIFICATES. UNLESS OTHERWISE
61
- DEFINED HEREIN, CAPITALIZED TERMS WILL HAVE THE MEANING GIVEN IN THE
62
- “DEFINITIONS” SECTION OF THIS AGREEMENT AND SUCH CAPITALIZED TERMS MAY BE USED
63
- IN THE SINGULAR OR IN THE PLURAL, AS THE CONTEXT REQUIRES.
64
- If You require a counter-signed copy of this Agreement, sign the Agreement and
65
- send it via email to dl-tss-root@symantec.com. You may make use of the Root
66
- Certificates prior to Your receipt of a fully signed copy of this Agreement.
67
-
68
- ROOT CERTIFICATE TERMS AND CONDITIONS
69
- "Certificate" means an electronic file that, at least, states a name or
70
- identifies the issuing Certificate Authority, identifies the subscriber,
71
- contains the subscriber's public key, identifies the Certificate's operational
72
- period, contains a Certificate serial number, and contains a digital signature
73
- of the issuing Certificate Authority. “Certificate Authority” or “CA” means a
74
- person or entity authorized to issue, suspend, or revoke Certificates.
75
- “Intermediate CA” means a CA Certificate signed by a Root Certificate
76
- Intermediate that issues Certificates either to end-entities or other
77
- Certificate Authorities, but not to both.
78
- "Products" means all versions of Your product or service with which the Root
79
- Certificates are incorporated (including successor products and services or any
80
- major or minor upgrades thereto).
81
- "Root Certificate" means a self-signed Certificate issued by a top-level
82
- Certificate Authority to itself, which includes such Certificate Authority's
83
- public key. The Root Certificates and Root Certificate files to be provided by
84
- Company to Customer pursuant to this Agreement are available for download at
85
- https://www.verisign.com/support/roots.html,
86
- https://www.thawte.com/roots/index.html or
87
- https://www.geotrust.com/resources/rootcertificates/index.html.
88
- 2. LICENSE. During the term of this Agreement, Symantec grants You a
89
- royalty-free, non-exclusive, non- transferable license to (a) use the Root
90
- Certificate for the purposes of testing (without the right to modify); (b) make
91
- copies of Root Certificates only in order to embed and incorporate them,
92
- unmodified and in full, as roots in Your Products; (c) distribute the Root
93
- Certificates as embedded and incorporated in such Products; and (d) use the
94
- relevant logos and trademarks of Symantec in Your marketing materials,
95
- advertisements, product data sheets, product packaging and websites solely
96
- conjunction with the distribution of the Root Certificates in accordance with
97
- Symantec’s published guidelines for such usage. You shall not have the right to
98
- further distribute the Root Certificates other than as described herein without
99
- an additional license grant, in a separate writing, from Symantec.
100
- 3. RESTRICTIONS. You may not: (a) modify or create any derivative works of Root
101
- Certificates; (b) assign, sublicense, sell, rent, or lease Symantec's root keys
102
- or Root Certificates; (c) use such Root Certificates except as expressly
103
- permitted under this Agreement; (d) remove or alter any trademark, logo,
104
- copyright, or other proprietary notices, legends, symbols, or labels provided
105
- in the Root Certificates; or (e) certify, or cause a third party to certify,
106
- the public key contained in the Root Certificates by issuing or creating a
107
- Certificate containing such public key.
108
- 4. CUSTOMER’S OBLIGATIONS.
109
- 4.1. During the term of this Agreement, You shall use commercially reasonable
110
- efforts regularly check the applicable Symantec URL for updates to the Root
111
- Certificates and update Root Certificates embedded into Your Products with the
112
- most currently available Root Certificates, unmodified and in full, or as a
113
- patch or update. If Symantec updates its Root Certificates,, You shall use
114
- commercially reasonable efforts to (i) discontinue all copying and use of the
115
- Root Certificates which have been replaced, and (ii) to use Symantec’s
116
- then-current Root Certificates. Any updates to the Root Certificates are
117
- incorporated into and subject to the terms of this Agreement.
118
- 4.2. You shall appoint at least one (1) individual as the administrative
119
- contact designated to address any Root Certificate issues and shall provide the
120
- contact information for such individual to dl-tss- root@symantec.com.
121
- 4.3 In the event You become aware of or suspect any event that diminishes the
122
- integrity of Symantec's data or public key system ("Compromise"), You shall
123
- immediately notify Symantec at dl-tss-root@symantec.com of such Compromise, and
124
- take reasonable steps to assist and cooperate with Symantec to remedy the
125
- Compromise.
126
- 4.4 In the event that Symantec modifies these terms of use for the Root
127
- certificates for all end users, Symantec shall post the modified terms for the
128
- Agreement on the applicable URL and may post the modified terms on the Symantec
129
- corporate website. You shall be responsible for regularly checking the
130
- applicable URL for modifications to this Agreement. Such modifications shall be
131
- effective and binding on Customer within thirty (30) days of Symantec’s posting
132
- such modifications to its website. If you do not accept the modified Agreement,
133
- discontinue use of the Root Certificates and this Agreement will be deemed as
134
- terminated.
135
- 5. CONFIDENTIALITY.
136
- 5.1. Confidential Information. "Confidential Information" means the root
137
- private keys corresponding to the public key in a Root Certificate, and any
138
- confidential, trade secret, or other proprietary information disclosed by a
139
- party to the other party under this Agreement, except for Information that: (i)
140
- is public knowledge at the time of disclosure, (ii) was known by the receiving
141
- party before disclosure by the disclosing party, or becomes public knowledge or
142
- otherwise known to the receiving party after such disclosure, other than by
143
- breach of a confidentiality obligation, or (iii) is independently developed by
144
- the receiving party by persons without access to Confidential Information of
145
- the disclosing party.
146
- 5.2. Protection of Confidential Information. The receiving party shall: (i) not
147
- disclose the Confidential information to any third party, (ii) not use the
148
- Confidential Information except for purposes of performing this Agreement, and
149
- (iii) take steps consistent with its protection of its own confidential and
150
- proprietary information (but in no event exercise less than reasonable care) to
151
- prevent unauthorized disclosure of the Confidential Information. Each party
152
- acknowledges that breach of this Section 5 may cause irreparable harm to the
153
- disclosing party entitling the disclosing party to injunctive relief, among
154
- other remedies.
155
- 5.3. Mutual Cooperation. Each party will notify and cooperate with the other
156
- party in enforcing the disclosing party's rights if such party becomes aware of
157
- a threatened or actual violation of the confidentiality requirements of this
158
- Section 5. Each party shall have confidentiality agreements with its employees,
159
- agents or independent contractors sufficient in scope to fulfill its
160
- confidentiality obligations under this Agreement.
161
- 6. INTELLECTUAL PROPERTY. You acknowledge that Symantec, including its wholly
162
- owned subsidiaries, retains all intellectual property rights and title
163
- (including any patent, copyright, trademark, trade secret, and other rights) in
164
- and to the Root Certificates, the public and private keys corresponding to such
165
- Root Certificates ("Symantec Intellectual Property"). This Agreement does not
166
- give You any intellectual property rights in the Symantec intellectual property
167
- except for the license granted in Section 2. To the extent You use Symantec's
168
- trademarks or logos as permitted herein, You agree to comply with all usage
169
- requirements set forth in the then current version of Symantec's Logo and
170
- Trademark Usage Guide
171
- (http://www.symantec.com/about/profile/policies/trademarks.jsp) and any other
172
- guides and procedures of Symantec.
173
- 7. NO WARRANTIES. THE ROOT CERTIFICATES, INCLUDING UPDATES, ARE PROVIDED "AS
174
- IS" WITHOUT ANY WARRANTY WHATSOEVER. SYMANTEC HEREBY DISCLAIMS ALL WARRANTIES,
175
- WHETHER EXPRESS, IMPLIED, OR STATUTORY, INCLUDING WITHOUT LIMITATION, ANY
176
- IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
177
- NONINFRINGEMENT OF THIRD PARTY RIGHTS.
178
- 8. LIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY
179
- WILL SYMANTEC OR ITS LICENSORS BE LIABLE TO YOU OR ANY THIRD PARTY FOR ANY
180
- CONSEQUENTIAL, INDIRECT, SPECIAL, INCIDENTAL, OR EXEMPLARY DAMAGES, WHETHER
181
- FORESEEABLE OR UNFORESEEABLE, EVEN IF SUCH PARTY HAS BEEN ADVISED OF THE
182
- POSSIBILITY OF SUCH DAMAGES. YOU WILL TAKE REASONABLE MEASURES TO INSURE THAT
183
- THE TERMS AND CONDITIONS SET FORTH IN THE PRECEDING SENTENCE OF THIS SECTION 8
184
- ARE INCORPORATED INTO ANY AGREEMENT BETWEEN YOU AND YOUR CUSTOMERS OR
185
- LICENSEES. SYMANTEC SHALL NOT BE LIABLE TO YOU OR ANY THIRD PARTY FOR ANY
186
- DAMAGES CAUSED BY YOUR OR A THIRD PARTY’S CONTINUED USE OF ANY OUTDATED ROOTS
187
- FOR WHICH AN UPDATED VERSION IS MADE AVAILABLE BY SYMANTEC. FURTHER, UNDER NO
188
- CIRCUMSTANCES WILL SYMANTEC'S LIABILITY FOR ANY ACTION OR CLAIM EXCEED
189
- USD$1,000, REGARDLESS OF WHETHER SUCH ACTION OR CLAIM IS BASED IN CONTRACT,
190
- TORT, STRICT LIABILITY, OR OTHERWISE.
191
- 9. TERM AND TERMINATION.
192
- 9.1. Term. This Agreement shall become effective as of the earlier of, Your
193
- first use of the Root Certificates, and shall remain in effect until the
194
- earlier of (i) Your discontinued use of the Root Certificates; (ii) termination
195
- by either party under the terms of Section 9.2, below; or (iii) Symantec’s
196
- notice to You that Symantec is no longer providing Root Certificates for use.
197
- 9.2. Termination for Default/Insolvency. Either party shall be entitled to
198
- terminate this Agreement in the event of a failure by the other party to
199
- perform any of its material obligations under this Agreement if such breach is
200
- not cured within thirty (30) days after receipt of written notice thereof from
201
- the non-defaulting party or within forty-eight (48) hours after receipt of such
202
- written notice if a breach by You may compromise the security of the Symantec
203
- Trust Network or other system. This Agreement shall terminate upon the election
204
- of and notice from a party to the other if the other party is adjudged
205
- insolvent or bankrupt, or the institution of any proceedings by or against the
206
- other party seeking relief, reorganization, or arrangement under any laws
207
- relating to insolvency, or any assignment for the benefit of creditors, or the
208
- appointment of a receiver, liquidator, or trustee of any of the other party's
209
- property or assets, or the liquidation, dissolution, or winding up of the other
210
- party's business.
211
- 9.3. Effect of Expiration or Termination. Upon expiration or termination of
212
- this Agreement, except for a breach by You, You may continue to distribute the
213
- current version of Your Products which incorporate the Root Certificates. Any
214
- updates or upgrades thereto may not include the Root Certificates and You shall
215
- stop making copies of Root Certificates, shall stop including Root Certificates
216
- in Your Products, and shall stop using Symantec’s logos and trademarks. The
217
- provisions of Sections 3, 4.3, 5, 6, 7, 8, 9.3, and 10 shall survive
218
- termination of this Agreement.
219
- 10. GENERAL.
220
- 10.1. Governing Laws. This Agreement and any disputes relating to the services
221
- provided hereunder shall be governed and interpreted according to each of the
222
- following laws, respectively, without regard to its conflicts of law
223
- provisions: (a) the laws of the State of California, if You are located in
224
- North America or Latin America; or (b) the law of England, if You are located
225
- in Europe, Middle East or Africa; or (c) the laws of Singapore, if You are
226
- located in Asia Pacific including Japan. The United Nations Convention on
227
- Contracts for the International Sale of Goods shall not apply to this
228
- Agreement.
229
- 10.2. Binding Upon Successors; Assignment. This Agreement shall be binding
230
- upon, and inure to the benefit of, the successors, executors, heirs,
231
- representatives, administrators, and assigns of the parties hereto.
232
- Notwithstanding the foregoing, You may not assign Your rights or obligations
233
- under this Agreement without the prior written consent of Symantec. Any such
234
- purported assignment of this Agreement without obtaining written consent shall
235
- be void and of no effect.
236
- 10.3. Severability; Enforcement; No Waiver. The unenforceability of any
237
- provision or provisions of this Agreement shall not impair the enforceability
238
- of any other part of this Agreement. If any provision of this Agreement shall
239
- be deemed invalid or unenforceable, in whole or in part, this Agreement shall
240
- be deemed amended to delete or modify, as necessary, the invalid or
241
- unenforceable provision to render it valid, enforceable, and, insofar as
242
- possible, consistent with the original intent of the parties. The failure of a
243
- party, at any time or from time to time, to require performance of any
244
- obligations of the other party hereunder shall not be deemed a waiver and shall
245
- not affect its right to enforce any provision of this Agreement at a subsequent
246
- time.
247
- 10.4. Entire Agreement; Amendments; Waivers. This Agreement constitutes the
248
- entire understanding and agreement of the parties, whether written or oral,
249
- with respect to the subject matter hereof and supersede all prior and
250
- contemporaneous agreements or understandings between the parties. Any term or
251
- provision of this Agreement may be amended, and the observance of any term of
252
- this Agreement may be waived, only by writing signed by the parties to be bound
253
- thereby.
254
- 10.5. Compliance with Law, Export Requirements and Foreign Reshipment
255
- Liability. Each party shall comply with all applicable federal, state and local
256
- laws and regulations in connection with its performance under this Agreement.
257
- Services, including documentation, may include controlled technology or
258
- technical data (collectively “Controlled Technology”) that is subject to the
259
- U.S. Export Administration Regulations (EAR), and diversion contrary to U.S.
260
- law is prohibited. You agree to comply with all relevant laws including the
261
- U.S. EAR and the laws of any country from which Controlled Technology is
262
- exported. All Controlled Technology is prohibited for export or re-export to
263
- Cuba, North Korea, Iran, Sudan and Syria and to any country or its nationals
264
- subject to relevant embargo or sanction or to any entity or person for which an
265
- export license is required per any relevant restricted party list, without
266
- first obtaining a license. Furthermore, You hereby agree that You will not use
267
- or allow use of Controlled Technology in connection with chemical, biological,
268
- or nuclear weapons, or missiles, drones or space launch vehicles capable of
269
- delivering such weapons. Symantec shall have the right to suspend performance
270
- of any of its obligations under this Agreement, without any prior notice being
271
- required and without any liability to Customer, if You fail to comply with this
272
- provision.
273
- 10.6. Notices. You will make all notices, demands or requests to Symantec with
274
- respect to this Agreement in writing to the "Contact" address listed on the
275
- website from where you downloaded the Root Certificates, with a copy to:
276
- General Counsel – Legal Department, Symantec Corporation, 350 Ellis Street,
277
- Mountain View, California 94043, USA. Notices shall be effective on the date
278
- received (unless the notice specifies a later date) only if it is sent by a
279
- courier service that confirms delivery in writing or if sent by certified or
280
- registered mail, postage prepaid, return receipt requested. Symantec may post
281
- notices and updates regarding the Agreement or the Root Certificates at the URL
282
- provided to You for the Root Certificates. You shall be responsible for
283
- regularly checking the applicable URL for notices from Symantec regarding the
284
- Agreement or the Root Certificates. No notices, demands, or requests to
285
- Symantec with respect to this Agreement may be delivered by electronic mail.
286
- You shall immediately notify Symantec of any legal notices served on You that
287
- might affect Symantec, and shall promptly forward the original or a copy of
288
- such notice to Symantec.
289
- 10.7. Independent Parties. The relationship between You and Symantec is that of
290
- independent contractors. Neither party nor its employees, consultants,
291
- contractors, or agents are agents, employees, or joint venturers of the other
292
- party, nor do they have any authority to bind the other party by contract or
293
- otherwise to any obligation.
294
-
295
- Root Certificate License Agreement v3.0 (January 2014)
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.