winrm 1.8.1 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (139) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +10 -11
  3. data/.rubocop.yml +26 -22
  4. data/.travis.yml +11 -12
  5. data/Gemfile +3 -9
  6. data/LICENSE +202 -202
  7. data/README.md +232 -215
  8. data/Rakefile +34 -36
  9. data/Vagrantfile +6 -9
  10. data/WinrmAppveyor.psm1 +31 -31
  11. data/appveyor.yml +51 -51
  12. data/bin/rwinrm +97 -97
  13. data/changelog.md +86 -86
  14. data/lib/winrm.rb +39 -42
  15. data/lib/winrm/connection.rb +82 -0
  16. data/lib/winrm/connection_opts.rb +87 -0
  17. data/lib/winrm/{exceptions/exceptions.rb → exceptions.rb} +76 -57
  18. data/lib/winrm/http/response_handler.rb +96 -82
  19. data/lib/winrm/http/transport.rb +424 -435
  20. data/lib/winrm/http/transport_factory.rb +68 -0
  21. data/lib/winrm/output.rb +59 -43
  22. data/lib/winrm/psrp/create_pipeline.xml.erb +167 -0
  23. data/lib/winrm/psrp/fragment.rb +70 -0
  24. data/lib/winrm/psrp/init_runspace_pool.xml.erb +224 -0
  25. data/lib/winrm/psrp/message.rb +130 -0
  26. data/lib/winrm/psrp/message_data.rb +41 -0
  27. data/lib/winrm/psrp/message_data/base.rb +49 -0
  28. data/lib/winrm/psrp/message_data/error_record.rb +68 -0
  29. data/lib/winrm/psrp/message_data/pipeline_host_call.rb +32 -0
  30. data/lib/winrm/psrp/message_data/pipeline_output.rb +49 -0
  31. data/lib/winrm/psrp/message_data/runspacepool_host_call.rb +32 -0
  32. data/lib/winrm/psrp/message_data/runspacepool_state.rb +39 -0
  33. data/lib/winrm/psrp/message_data/session_capability.rb +36 -0
  34. data/lib/winrm/psrp/message_defragmenter.rb +62 -0
  35. data/lib/winrm/psrp/message_factory.rb +75 -0
  36. data/lib/winrm/psrp/message_fragmenter.rb +60 -0
  37. data/lib/winrm/psrp/powershell_output_decoder.rb +120 -0
  38. data/lib/winrm/psrp/receive_response_reader.rb +93 -0
  39. data/lib/winrm/psrp/session_capability.xml.erb +7 -0
  40. data/lib/winrm/psrp/uuid.rb +40 -0
  41. data/lib/winrm/shells/base.rb +175 -0
  42. data/lib/winrm/shells/cmd.rb +65 -0
  43. data/lib/winrm/shells/power_shell.rb +201 -0
  44. data/lib/winrm/shells/retryable.rb +45 -0
  45. data/lib/winrm/shells/shell_factory.rb +50 -0
  46. data/lib/winrm/version.rb +7 -7
  47. data/lib/winrm/wsmv/base.rb +59 -0
  48. data/lib/winrm/wsmv/cleanup_command.rb +61 -0
  49. data/lib/winrm/wsmv/close_shell.rb +50 -0
  50. data/lib/winrm/wsmv/command.rb +101 -0
  51. data/lib/winrm/wsmv/command_output.rb +76 -0
  52. data/lib/winrm/wsmv/command_output_decoder.rb +55 -0
  53. data/lib/winrm/wsmv/configuration.rb +46 -0
  54. data/lib/winrm/wsmv/create_pipeline.rb +66 -0
  55. data/lib/winrm/wsmv/create_shell.rb +119 -0
  56. data/lib/winrm/wsmv/header.rb +203 -0
  57. data/lib/winrm/wsmv/init_runspace_pool.rb +95 -0
  58. data/lib/winrm/wsmv/iso8601_duration.rb +60 -0
  59. data/lib/winrm/wsmv/keep_alive.rb +68 -0
  60. data/lib/winrm/wsmv/receive_response_reader.rb +128 -0
  61. data/lib/winrm/wsmv/send_data.rb +68 -0
  62. data/lib/winrm/wsmv/soap.rb +51 -0
  63. data/lib/winrm/wsmv/wql_query.rb +79 -0
  64. data/lib/winrm/wsmv/write_stdin.rb +88 -0
  65. data/preamble +17 -17
  66. data/{spec → tests/integration}/auth_timeout_spec.rb +18 -16
  67. data/{spec → tests/integration}/cmd_spec.rb +104 -102
  68. data/{spec → tests/integration}/config-example.yml +16 -19
  69. data/{spec → tests/integration}/issue_59_spec.rb +26 -23
  70. data/tests/integration/powershell_spec.rb +154 -0
  71. data/{spec → tests/integration}/spec_helper.rb +65 -73
  72. data/{spec → tests/integration}/transport_spec.rb +99 -139
  73. data/{spec → tests/integration}/wql_spec.rb +16 -14
  74. data/{spec → tests}/matchers.rb +60 -74
  75. data/tests/spec/configuration_spec.rb +93 -0
  76. data/tests/spec/connection_spec.rb +39 -0
  77. data/{spec → tests/spec}/exception_spec.rb +50 -50
  78. data/tests/spec/http/transport_factory_spec.rb +68 -0
  79. data/tests/spec/http/transport_spec.rb +44 -0
  80. data/{spec → tests/spec}/output_spec.rb +127 -110
  81. data/tests/spec/psrp/fragment_spec.rb +62 -0
  82. data/tests/spec/psrp/message_data/base_spec.rb +13 -0
  83. data/tests/spec/psrp/message_data/error_record_spec.rb +41 -0
  84. data/tests/spec/psrp/message_data/pipeline_host_call_spec.rb +25 -0
  85. data/tests/spec/psrp/message_data/pipeline_output_spec.rb +32 -0
  86. data/tests/spec/psrp/message_data/runspace_pool_host_call_spec.rb +25 -0
  87. data/tests/spec/psrp/message_data/runspacepool_state_spec.rb +16 -0
  88. data/tests/spec/psrp/message_data/session_capability_spec.rb +30 -0
  89. data/tests/spec/psrp/message_data_spec.rb +35 -0
  90. data/tests/spec/psrp/message_defragmenter_spec.rb +47 -0
  91. data/tests/spec/psrp/message_fragmenter_spec.rb +105 -0
  92. data/tests/spec/psrp/powershell_output_decoder_spec.rb +84 -0
  93. data/tests/spec/psrp/psrp_message_spec.rb +70 -0
  94. data/tests/spec/psrp/recieve_response_reader_spec.rb +154 -0
  95. data/tests/spec/psrp/uuid_spec.rb +28 -0
  96. data/{spec → tests/spec}/response_handler_spec.rb +61 -61
  97. data/tests/spec/shells/base_spec.rb +202 -0
  98. data/tests/spec/shells/cmd_spec.rb +75 -0
  99. data/tests/spec/shells/powershell_spec.rb +175 -0
  100. data/tests/spec/spec_helper.rb +47 -0
  101. data/tests/spec/stubs/clixml/error_record.xml.erb +84 -0
  102. data/{spec → tests/spec}/stubs/responses/get_command_output_response.xml.erb +13 -13
  103. data/tests/spec/stubs/responses/get_command_output_response_not_done.xml.erb +10 -0
  104. data/tests/spec/stubs/responses/get_powershell_keepalive_response.xml.erb +10 -0
  105. data/tests/spec/stubs/responses/get_powershell_output_response.xml.erb +12 -0
  106. data/tests/spec/stubs/responses/get_powershell_output_response_not_done.xml.erb +9 -0
  107. data/{spec → tests/spec}/stubs/responses/open_shell_v1.xml +19 -19
  108. data/{spec → tests/spec}/stubs/responses/open_shell_v2.xml +20 -20
  109. data/{spec → tests/spec}/stubs/responses/soap_fault_v1.xml +36 -36
  110. data/{spec → tests/spec}/stubs/responses/soap_fault_v2.xml +42 -42
  111. data/{spec → tests/spec}/stubs/responses/wmi_error_v2.xml +41 -41
  112. data/tests/spec/wsmv/cleanup_command_spec.rb +22 -0
  113. data/tests/spec/wsmv/close_shell_spec.rb +17 -0
  114. data/{spec → tests/spec/wsmv}/command_output_decoder_spec.rb +37 -37
  115. data/tests/spec/wsmv/command_output_spec.rb +45 -0
  116. data/tests/spec/wsmv/command_spec.rb +19 -0
  117. data/tests/spec/wsmv/configuration_spec.rb +17 -0
  118. data/tests/spec/wsmv/create_pipeline_spec.rb +31 -0
  119. data/tests/spec/wsmv/create_shell_spec.rb +38 -0
  120. data/tests/spec/wsmv/init_runspace_pool_spec.rb +36 -0
  121. data/tests/spec/wsmv/keep_alive_spec.rb +21 -0
  122. data/tests/spec/wsmv/receive_response_reader_spec.rb +123 -0
  123. data/tests/spec/wsmv/send_data_spec.rb +30 -0
  124. data/tests/spec/wsmv/wql_query_spec.rb +13 -0
  125. data/tests/spec/wsmv/write_stdin_spec.rb +22 -0
  126. data/winrm.gemspec +42 -40
  127. metadata +140 -38
  128. data/.rspec +0 -3
  129. data/lib/winrm/command_executor.rb +0 -243
  130. data/lib/winrm/command_output_decoder.rb +0 -53
  131. data/lib/winrm/helpers/iso8601_duration.rb +0 -58
  132. data/lib/winrm/helpers/powershell_script.rb +0 -42
  133. data/lib/winrm/soap_provider.rb +0 -39
  134. data/lib/winrm/winrm_service.rb +0 -550
  135. data/spec/command_executor_spec.rb +0 -475
  136. data/spec/issue_184_spec.rb +0 -67
  137. data/spec/powershell_spec.rb +0 -97
  138. data/spec/winrm_options_spec.rb +0 -76
  139. data/spec/winrm_primitives_spec.rb +0 -51
@@ -0,0 +1,68 @@
1
+ # -*- encoding: utf-8 -*-
2
+ #
3
+ # Copyright 2016 Shawn Neal <sneal@sneal.net>
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ require_relative 'transport'
18
+
19
+ module WinRM
20
+ module HTTP
21
+ # Factory for creating a HTTP transport that can be used for WinRM SOAP calls.
22
+ class TransportFactory
23
+ # Creates a new WinRM HTTP transport using the specified connection options.
24
+ # @param connection_opts [ConnectionOpts|Hash] The connection ConnectionOpts.
25
+ # @return [HttpTransport] A transport instance for making WinRM calls.
26
+ def create_transport(connection_opts)
27
+ transport = connection_opts[:transport]
28
+ validate_transport!(transport)
29
+ send "init_#{transport}_transport", connection_opts
30
+ end
31
+
32
+ private
33
+
34
+ def init_negotiate_transport(opts)
35
+ HTTP::HttpNegotiate.new(opts[:endpoint], opts[:user], opts[:password], opts)
36
+ end
37
+
38
+ def init_kerberos_transport(opts)
39
+ HTTP::HttpGSSAPI.new(opts[:endpoint], opts[:realm], opts, opts[:service])
40
+ end
41
+
42
+ def init_plaintext_transport(opts)
43
+ HTTP::HttpPlaintext.new(opts[:endpoint], opts[:user], opts[:password], opts)
44
+ end
45
+
46
+ def init_ssl_transport(opts)
47
+ if opts[:basic_auth_only]
48
+ HTTP::BasicAuthSSL.new(opts[:endpoint], opts[:user], opts[:password], opts)
49
+ elsif opts[:client_cert]
50
+ HTTP::ClientCertAuthSSL.new(opts[:endpoint], opts[:client_cert],
51
+ opts[:client_key], opts[:key_pass], opts)
52
+ else
53
+ HTTP::HttpNegotiate.new(opts[:endpoint], opts[:user], opts[:password], opts)
54
+ end
55
+ end
56
+
57
+ def validate_transport!(transport)
58
+ valid = private_methods
59
+ .select { |m| m.to_s.start_with?('init_') && m.to_s.end_with?('_transport') }
60
+ .map { |tm| tm.to_s.split('_')[1] }
61
+
62
+ unless valid.include?(transport.to_s)
63
+ raise WinRM::InvalidTransportError.new(transport, valid)
64
+ end
65
+ end
66
+ end
67
+ end
68
+ end
@@ -1,43 +1,59 @@
1
- # encoding: UTF-8
2
- #
3
- # Copyright 2014 Max Lincoln <max@devopsy.com>
4
- #
5
- # Licensed under the Apache License, Version 2.0 (the "License");
6
- # you may not use this file except in compliance with the License.
7
- # You may obtain a copy of the License at
8
- #
9
- # http://www.apache.org/licenses/LICENSE-2.0
10
- #
11
- # Unless required by applicable law or agreed to in writing, software
12
- # distributed under the License is distributed on an "AS IS" BASIS,
13
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
- # See the License for the specific language governing permissions and
15
- # limitations under the License.
16
-
17
- module WinRM
18
- # This class holds raw output as a hash, and has convenience methods to parse.
19
- class Output < Hash
20
- def initialize
21
- super
22
- self[:data] = []
23
- end
24
-
25
- def output
26
- self[:data].flat_map do |line|
27
- [line[:stdout], line[:stderr]]
28
- end.compact.join
29
- end
30
-
31
- def stdout
32
- self[:data].map do |line|
33
- line[:stdout]
34
- end.compact.join
35
- end
36
-
37
- def stderr
38
- self[:data].map do |line|
39
- line[:stderr]
40
- end.compact.join
41
- end
42
- end
43
- end
1
+ # encoding: UTF-8
2
+ #
3
+ # Copyright 2014 Max Lincoln <max@devopsy.com>
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ module WinRM
18
+ # This class holds raw output and has convenience methods to parse.
19
+ class Output
20
+ def initialize
21
+ @data = []
22
+ end
23
+
24
+ # @return [Integer] exitcode returned from command
25
+ attr_reader :exitcode
26
+
27
+ # @return [String] Aggregated stdout and stderr streams
28
+ def output
29
+ @data.flat_map do |line|
30
+ [line[:stdout], line[:stderr]]
31
+ end.compact.join
32
+ end
33
+
34
+ # @return [String] stdout stream output
35
+ def stdout
36
+ @data.map do |line|
37
+ line[:stdout]
38
+ end.compact.join
39
+ end
40
+
41
+ # @return [String] stderr stream output
42
+ def stderr
43
+ @data.map do |line|
44
+ line[:stderr]
45
+ end.compact.join
46
+ end
47
+
48
+ # Sets the exitcode
49
+ def exitcode=(code)
50
+ raise WinRM::InvalidExitCode unless code.is_a? Integer
51
+ @exitcode = code
52
+ end
53
+
54
+ # Appends stream data to the output
55
+ def <<(data)
56
+ @data << data
57
+ end
58
+ end
59
+ end
@@ -0,0 +1,167 @@
1
+ <Obj RefId="0">
2
+ <MS>
3
+ <Obj N="PowerShell" RefId="1">
4
+ <MS>
5
+ <Obj N="Cmds" RefId="2">
6
+ <TN RefId="0">
7
+ <T>System.Collections.Generic.List`1[[System.Management.Automation.PSObject, System.Management.Automation, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]</T>
8
+ <T>System.Object</T>
9
+ </TN>
10
+ <LST>
11
+ <Obj RefId="3">
12
+ <MS>
13
+ <S N="Cmd">Invoke-expression</S>
14
+ <B N="IsScript">false</B>
15
+ <Nil N="UseLocalScope" />
16
+ <Obj N="MergeMyResult" RefId="4">
17
+ <TN RefId="1">
18
+ <T>System.Management.Automation.Runspaces.PipelineResultTypes</T>
19
+ <T>System.Enum</T>
20
+ <T>System.ValueType</T>
21
+ <T>System.Object</T>
22
+ </TN>
23
+ <ToString>None</ToString>
24
+ <I32>0</I32>
25
+ </Obj>
26
+ <Obj N="MergeToResult" RefId="5">
27
+ <TNRef RefId="1" />
28
+ <ToString>None</ToString>
29
+ <I32>0</I32>
30
+ </Obj>
31
+ <Obj N="MergePreviousResults" RefId="6">
32
+ <TNRef RefId="1" />
33
+ <ToString>None</ToString>
34
+ <I32>0</I32>
35
+ </Obj>
36
+ <Obj N="MergeError" RefId="7">
37
+ <TNRef RefId="1" />
38
+ <ToString>None</ToString>
39
+ <I32>0</I32>
40
+ </Obj>
41
+ <Obj N="MergeWarning" RefId="8">
42
+ <TNRef RefId="1" />
43
+ <ToString>None</ToString>
44
+ <I32>0</I32>
45
+ </Obj>
46
+ <Obj N="MergeVerbose" RefId="9">
47
+ <TNRef RefId="1" />
48
+ <ToString>None</ToString>
49
+ <I32>0</I32>
50
+ </Obj>
51
+ <Obj N="MergeDebug" RefId="10">
52
+ <TNRef RefId="1" />
53
+ <ToString>None</ToString>
54
+ <I32>0</I32>
55
+ </Obj>
56
+ <Obj N="Args" RefId="11">
57
+ <TNRef RefId="0" />
58
+ <LST>
59
+ <Obj RefId="12">
60
+ <MS>
61
+ <S N="N">-Command</S>
62
+ <Nil N="V" />
63
+ </MS>
64
+ </Obj>
65
+ <Obj RefId="13">
66
+ <MS>
67
+ <Nil N="N" />
68
+ <S N="V"><%= command %></S>
69
+ </MS>
70
+ </Obj>
71
+ </LST>
72
+ </Obj>
73
+ </MS>
74
+ </Obj>
75
+ <Obj RefId="14">
76
+ <MS>
77
+ <S N="Cmd">Out-string</S>
78
+ <B N="IsScript">false</B>
79
+ <Nil N="UseLocalScope" />
80
+ <Obj N="MergeMyResult" RefId="15">
81
+ <TNRef RefId="1" />
82
+ <ToString>None</ToString>
83
+ <I32>0</I32>
84
+ </Obj>
85
+ <Obj N="MergeToResult" RefId="16">
86
+ <TNRef RefId="1" />
87
+ <ToString>None</ToString>
88
+ <I32>0</I32>
89
+ </Obj>
90
+ <Obj N="MergePreviousResults" RefId="17">
91
+ <TNRef RefId="1" />
92
+ <ToString>None</ToString>
93
+ <I32>0</I32>
94
+ </Obj>
95
+ <Obj N="MergeError" RefId="18">
96
+ <TNRef RefId="1" />
97
+ <ToString>None</ToString>
98
+ <I32>0</I32>
99
+ </Obj>
100
+ <Obj N="MergeWarning" RefId="19">
101
+ <TNRef RefId="1" />
102
+ <ToString>None</ToString>
103
+ <I32>0</I32>
104
+ </Obj>
105
+ <Obj N="MergeVerbose" RefId="20">
106
+ <TNRef RefId="1" />
107
+ <ToString>None</ToString>
108
+ <I32>0</I32>
109
+ </Obj>
110
+ <Obj N="MergeDebug" RefId="21">
111
+ <TNRef RefId="1" />
112
+ <ToString>None</ToString>
113
+ <I32>0</I32>
114
+ </Obj>
115
+ <Obj N="Args" RefId="22">
116
+ <TNRef RefId="0" />
117
+ <LST>
118
+ <Obj RefId="22">
119
+ <MS>
120
+ <S N="N">-Stream</S>
121
+ <Nil N="V" />
122
+ </MS>
123
+ </Obj>
124
+ </LST>
125
+ </Obj>
126
+ </MS>
127
+ </Obj>
128
+ </LST>
129
+ </Obj>
130
+ <B N="IsNested">false</B>
131
+ <Nil N="History" />
132
+ <B N="RedirectShellErrorOutputPipe">true</B>
133
+ </MS>
134
+ </Obj>
135
+ <B N="NoInput">true</B>
136
+ <Obj N="ApartmentState" RefId="23">
137
+ <TN RefId="2">
138
+ <T>System.Threading.ApartmentState</T>
139
+ <T>System.Enum</T>
140
+ <T>System.ValueType</T>
141
+ <T>System.Object</T>
142
+ </TN>
143
+ <ToString>Unknown</ToString>
144
+ <I32>2</I32>
145
+ </Obj>
146
+ <Obj N="RemoteStreamOptions" RefId="24">
147
+ <TN RefId="3">
148
+ <T>System.Management.Automation.RemoteStreamOptions</T>
149
+ <T>System.Enum</T>
150
+ <T>System.ValueType</T>
151
+ <T>System.Object</T>
152
+ </TN>
153
+ <ToString>0</ToString>
154
+ <I32>0</I32>
155
+ </Obj>
156
+ <B N="AddToHistory">true</B>
157
+ <Obj N="HostInfo" RefId="25">
158
+ <MS>
159
+ <B N="_isHostNull">true</B>
160
+ <B N="_isHostUINull">true</B>
161
+ <B N="_isHostRawUINull">true</B>
162
+ <B N="_useRunspaceHost">true</B>
163
+ </MS>
164
+ </Obj>
165
+ <B N="IsNested">false</B>
166
+ </MS>
167
+ </Obj>
@@ -0,0 +1,70 @@
1
+ # encoding: UTF-8
2
+ #
3
+ # Copyright 2016 Matt Wrock <matt@mattwrock.com>
4
+ # Copyright 2016 Shawn Neal <sneal@sneal.net>
5
+ #
6
+ # Licensed under the Apache License, Version 2.0 (the 'License');
7
+ # you may not use this file except in compliance with the License.
8
+ # You may obtain a copy of the License at
9
+ #
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
+ #
12
+ # Unless required by applicable law or agreed to in writing, software
13
+ # distributed under the License is distributed on an 'AS IS' BASIS,
14
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ # See the License for the specific language governing permissions and
16
+ # limitations under the License.
17
+
18
+ module WinRM
19
+ # PowerShell Remoting Protcol module
20
+ module PSRP
21
+ # PowerShell Remoting Protocol message fragment.
22
+ class Fragment
23
+ # Creates a new PSRP message fragment
24
+ # @param object_id [Fixnum] The id of the fragmented message.
25
+ # @param blob [Array] Array of fragmented bytes.
26
+ # @param fragment_id [Fixnum] The id of this fragment
27
+ # @param start_fragment [Boolean] If the fragment is the first fragment
28
+ # @param end_fragment [Boolean] If the fragment is the last fragment
29
+ def initialize(object_id, blob, fragment_id = 0, start_fragment = true, end_fragment = true)
30
+ @object_id = object_id
31
+ @blob = blob
32
+ @fragment_id = fragment_id
33
+ @start_fragment = start_fragment
34
+ @end_fragment = end_fragment
35
+ end
36
+
37
+ attr_reader :object_id, :fragment_id, :end_fragment, :start_fragment, :blob
38
+
39
+ # Returns the raw PSRP message bytes ready for transfer to Windows inside a
40
+ # WinRM message.
41
+ # @return [Array<Byte>] Unencoded raw byte array of the PSRP message.
42
+ def bytes
43
+ [
44
+ int64be(object_id),
45
+ int64be(fragment_id),
46
+ end_start_fragment,
47
+ int16be(blob.length),
48
+ blob
49
+ ].flatten
50
+ end
51
+
52
+ private
53
+
54
+ def end_start_fragment
55
+ end_start = 0
56
+ end_start += 0b10 if end_fragment
57
+ end_start += 0b1 if start_fragment
58
+ [end_start]
59
+ end
60
+
61
+ def int64be(int64)
62
+ [int64 >> 32, int64 & 0x00000000ffffffff].pack('N2').unpack('C8')
63
+ end
64
+
65
+ def int16be(int16)
66
+ [int16].pack('N').unpack('C4')
67
+ end
68
+ end
69
+ end
70
+ end
@@ -0,0 +1,224 @@
1
+ <Obj RefId="0">
2
+ <MS>
3
+ <I32 N="MinRunspaces">1</I32>
4
+ <I32 N="MaxRunspaces">1</I32>
5
+ <Obj N="PSThreadOptions" RefId="1">
6
+ <TN RefId="0">
7
+ <T>System.Management.Automation.Runspaces.PSThreadOptions</T>
8
+ <T>System.Enum</T>
9
+ <T>System.ValueType</T>
10
+ <T>System.Object</T>
11
+ </TN>
12
+ <ToString>Default</ToString>
13
+ <I32>0</I32>
14
+ </Obj>
15
+ <Obj N="ApartmentState" RefId="2">
16
+ <TN RefId="1">
17
+ <T>System.Threading.ApartmentState</T>
18
+ <T>System.Enum</T>
19
+ <T>System.ValueType</T>
20
+ <T>System.Object</T>
21
+ </TN>
22
+ <ToString>Unknown</ToString>
23
+ <I32>2</I32>
24
+ </Obj>
25
+ <Obj N="ApplicationArguments" RefId="3">
26
+ <TN RefId="2">
27
+ <T>System.Management.Automation.PSPrimitiveDictionary</T>
28
+ <T>System.Collections.Hashtable</T>
29
+ <T>System.Object</T>
30
+ </TN>
31
+ <DCT>
32
+ <En>
33
+ <S N="Key">PSVersionTable</S>
34
+ <Obj N="Value" RefId="4">
35
+ <TNRef RefId="2" />
36
+ <DCT>
37
+ <En>
38
+ <S N="Key">PSVersion</S>
39
+ <Version N="Value">5.0.11082.1000</Version>
40
+ </En>
41
+ <En>
42
+ <S N="Key">PSCompatibleVersions</S>
43
+ <Obj N="Value" RefId="5">
44
+ <TN RefId="3">
45
+ <T>System.Version[]</T>
46
+ <T>System.Array</T>
47
+ <T>System.Object</T>
48
+ </TN>
49
+ <LST>
50
+ <Version>1.0</Version>
51
+ <Version>2.0</Version>
52
+ <Version>3.0</Version>
53
+ <Version>4.0</Version>
54
+ <Version>5.0.11082.1000</Version>
55
+ </LST>
56
+ </Obj>
57
+ </En>
58
+ <En>
59
+ <S N="Key">CLRVersion</S>
60
+ <Version N="Value">4.0.30319.42000</Version>
61
+ </En>
62
+ <En>
63
+ <S N="Key">BuildVersion</S>
64
+ <Version N="Value">10.0.11082.1000</Version>
65
+ </En>
66
+ <En>
67
+ <S N="Key">WSManStackVersion</S>
68
+ <Version N="Value">3.0</Version>
69
+ </En>
70
+ <En>
71
+ <S N="Key">PSRemotingProtocolVersion</S>
72
+ <Version N="Value">2.3</Version>
73
+ </En>
74
+ <En>
75
+ <S N="Key">SerializationVersion</S>
76
+ <Version N="Value">1.1.0.1</Version>
77
+ </En>
78
+ </DCT>
79
+ </Obj>
80
+ </En>
81
+ </DCT>
82
+ </Obj>
83
+ <Obj N="HostInfo" RefId="6">
84
+ <MS>
85
+ <Obj N="_hostDefaultData" RefId="7">
86
+ <MS>
87
+ <Obj N="data" RefId="8">
88
+ <TN RefId="4">
89
+ <T>System.Collections.Hashtable</T>
90
+ <T>System.Object</T>
91
+ </TN>
92
+ <DCT>
93
+ <En>
94
+ <I32 N="Key">9</I32>
95
+ <Obj N="Value" RefId="9">
96
+ <MS>
97
+ <S N="T">System.String</S>
98
+ <S N="V">C:\dev\kitchen-vagrant</S>
99
+ </MS>
100
+ </Obj>
101
+ </En>
102
+ <En>
103
+ <I32 N="Key">8</I32>
104
+ <Obj N="Value" RefId="10">
105
+ <MS>
106
+ <S N="T">System.Management.Automation.Host.Size</S>
107
+ <Obj N="V" RefId="11">
108
+ <MS>
109
+ <I32 N="width">199</I32>
110
+ <I32 N="height">52</I32>
111
+ </MS>
112
+ </Obj>
113
+ </MS>
114
+ </Obj>
115
+ </En>
116
+ <En>
117
+ <I32 N="Key">7</I32>
118
+ <Obj N="Value" RefId="12">
119
+ <MS>
120
+ <S N="T">System.Management.Automation.Host.Size</S>
121
+ <Obj N="V" RefId="13">
122
+ <MS>
123
+ <I32 N="width">80</I32>
124
+ <I32 N="height">52</I32>
125
+ </MS>
126
+ </Obj>
127
+ </MS>
128
+ </Obj>
129
+ </En>
130
+ <En>
131
+ <I32 N="Key">6</I32>
132
+ <Obj N="Value" RefId="14">
133
+ <MS>
134
+ <S N="T">System.Management.Automation.Host.Size</S>
135
+ <Obj N="V" RefId="15">
136
+ <MS>
137
+ <I32 N="width">80</I32>
138
+ <I32 N="height">25</I32>
139
+ </MS>
140
+ </Obj>
141
+ </MS>
142
+ </Obj>
143
+ </En>
144
+ <En>
145
+ <I32 N="Key">5</I32>
146
+ <Obj N="Value" RefId="16">
147
+ <MS>
148
+ <S N="T">System.Management.Automation.Host.Size</S>
149
+ <Obj N="V" RefId="17">
150
+ <MS>
151
+ <I32 N="width">80</I32>
152
+ <I32 N="height">9999</I32>
153
+ </MS>
154
+ </Obj>
155
+ </MS>
156
+ </Obj>
157
+ </En>
158
+ <En>
159
+ <I32 N="Key">4</I32>
160
+ <Obj N="Value" RefId="18">
161
+ <MS>
162
+ <S N="T">System.Int32</S>
163
+ <I32 N="V">25</I32>
164
+ </MS>
165
+ </Obj>
166
+ </En>
167
+ <En>
168
+ <I32 N="Key">3</I32>
169
+ <Obj N="Value" RefId="19">
170
+ <MS>
171
+ <S N="T">System.Management.Automation.Host.Coordinates</S>
172
+ <Obj N="V" RefId="20">
173
+ <MS>
174
+ <I32 N="x">0</I32>
175
+ <I32 N="y">9974</I32>
176
+ </MS>
177
+ </Obj>
178
+ </MS>
179
+ </Obj>
180
+ </En>
181
+ <En>
182
+ <I32 N="Key">2</I32>
183
+ <Obj N="Value" RefId="21">
184
+ <MS>
185
+ <S N="T">System.Management.Automation.Host.Coordinates</S>
186
+ <Obj N="V" RefId="22">
187
+ <MS>
188
+ <I32 N="x">0</I32>
189
+ <I32 N="y">9998</I32>
190
+ </MS>
191
+ </Obj>
192
+ </MS>
193
+ </Obj>
194
+ </En>
195
+ <En>
196
+ <I32 N="Key">1</I32>
197
+ <Obj N="Value" RefId="23">
198
+ <MS>
199
+ <S N="T">System.ConsoleColor</S>
200
+ <I32 N="V">0</I32>
201
+ </MS>
202
+ </Obj>
203
+ </En>
204
+ <En>
205
+ <I32 N="Key">0</I32>
206
+ <Obj N="Value" RefId="24">
207
+ <MS>
208
+ <S N="T">System.ConsoleColor</S>
209
+ <I32 N="V">7</I32>
210
+ </MS>
211
+ </Obj>
212
+ </En>
213
+ </DCT>
214
+ </Obj>
215
+ </MS>
216
+ </Obj>
217
+ <B N="_isHostNull">false</B>
218
+ <B N="_isHostUINull">false</B>
219
+ <B N="_isHostRawUINull">false</B>
220
+ <B N="_useRunspaceHost">false</B>
221
+ </MS>
222
+ </Obj>
223
+ </MS>
224
+ </Obj>