<feed xmlns='http://www.w3.org/2005/Atom'>
<title>wsmancli.git/src, branch master</title>
<subtitle>A fork of wsmancli with some iDRAC specific improvements and random fixes.</subtitle>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/skottler/public_git/wsmancli.git/'/>
<entry>
<title>Remove unused code that is duplicated all over the place</title>
<updated>2013-07-01T02:13:29+00:00</updated>
<author>
<name>Sam Kottler</name>
<email>shk@redhat.com</email>
</author>
<published>2013-07-01T02:13:29+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/skottler/public_git/wsmancli.git/commit/?id=8bb5b7681e07e7b442ec8d3c119ffb22a22b2c64'/>
<id>8bb5b7681e07e7b442ec8d3c119ffb22a22b2c64</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>remove unused variables from wseventmgr</title>
<updated>2012-11-08T15:08:00+00:00</updated>
<author>
<name>Klaus Kämpf</name>
<email>kkaempf@suse.de</email>
</author>
<published>2012-11-08T15:08:00+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/skottler/public_git/wsmancli.git/commit/?id=97aaa72feb340e8f2b4ac430b6ba99db64b93d07'/>
<id>97aaa72feb340e8f2b4ac430b6ba99db64b93d07</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Drop unused variable assignments</title>
<updated>2012-11-08T14:59:15+00:00</updated>
<author>
<name>Klaus Kämpf</name>
<email>kkaempf@suse.de</email>
</author>
<published>2012-11-08T14:59:15+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/skottler/public_git/wsmancli.git/commit/?id=c6d3751cdb39cef4295b54896ac2f6a4edaa0702'/>
<id>c6d3751cdb39cef4295b54896ac2f6a4edaa0702</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Evaluate return value from u_option_context_parse()</title>
<updated>2012-11-08T14:57:36+00:00</updated>
<author>
<name>Klaus Kämpf</name>
<email>kkaempf@suse.de</email>
</author>
<published>2012-11-08T14:57:36+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/skottler/public_git/wsmancli.git/commit/?id=e8a28f5f8b3adedf26cdab70f22538719fabb7f1'/>
<id>e8a28f5f8b3adedf26cdab70f22538719fabb7f1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>operation timeout value is in milliseconds</title>
<updated>2012-11-08T14:43:42+00:00</updated>
<author>
<name>Klaus Kämpf</name>
<email>kkaempf@suse.de</email>
</author>
<published>2012-11-08T14:43:42+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/skottler/public_git/wsmancli.git/commit/?id=40dcab7b27e841f8b7df4044a323102eec893b8a'/>
<id>40dcab7b27e841f8b7df4044a323102eec893b8a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Check result of u_parse_query</title>
<updated>2012-03-30T13:11:39+00:00</updated>
<author>
<name>Klaus Kämpf</name>
<email>kkaempf@suse.de</email>
</author>
<published>2012-03-30T13:11:39+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/skottler/public_git/wsmancli.git/commit/?id=b8744c22329467d9317a90544b0dd8999bad9448'/>
<id>b8744c22329467d9317a90544b0dd8999bad9448</id>
<content type='text'>
u_parse_query starts with strtok_r(src, "&amp;,", &amp;pp) thus these filters
will be two tokens. As the second one does not contain an equal sign,
u_parse_query returns NULL, and hash_scan_begin tries to use it
without any checks.

The problem is with the comma in the filter, and I could not find a
way to circumvent it. As these minimal examples demonstrates:
wsman enumerate 'foo' --dialect "http://schemas.dmtf.org/wbem/wsman/1/wsman/SelectorFilter" --filter 'foo="bar,foo"'
wsman enumerate 'foo' --dialect "http://schemas.dmtf.org/wbem/wsman/1/wsman/SelectorFilter" --filter "foo='bar,foo'"

Reported by Zoltan Micskei &lt;zoltan.micskei@mit.bme.hu&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
u_parse_query starts with strtok_r(src, "&amp;,", &amp;pp) thus these filters
will be two tokens. As the second one does not contain an equal sign,
u_parse_query returns NULL, and hash_scan_begin tries to use it
without any checks.

The problem is with the comma in the filter, and I could not find a
way to circumvent it. As these minimal examples demonstrates:
wsman enumerate 'foo' --dialect "http://schemas.dmtf.org/wbem/wsman/1/wsman/SelectorFilter" --filter 'foo="bar,foo"'
wsman enumerate 'foo' --dialect "http://schemas.dmtf.org/wbem/wsman/1/wsman/SelectorFilter" --filter "foo='bar,foo'"

Reported by Zoltan Micskei &lt;zoltan.micskei@mit.bme.hu&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove option '-Q, --request'</title>
<updated>2012-03-28T12:23:20+00:00</updated>
<author>
<name>Klaus Kämpf</name>
<email>kkaempf@suse.de</email>
</author>
<published>2012-03-28T12:23:20+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/skottler/public_git/wsmancli.git/commit/?id=03b9835f93329741c666755cd88648f8d35afcef'/>
<id>03b9835f93329741c666755cd88648f8d35afcef</id>
<content type='text'>
This option should "Only output request. Not send it." which is hard
to implement in wsman-client (wsmc_action_*()) and of little value.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This option should "Only output request. Not send it." which is hard
to implement in wsman-client (wsmc_action_*()) and of little value.
</pre>
</div>
</content>
</entry>
<entry>
<title>Adapt to reduced libu exposure in openwsman public api</title>
<updated>2011-09-14T19:06:29+00:00</updated>
<author>
<name>Klaus Kämpf</name>
<email>kkaempf@suse.de</email>
</author>
<published>2011-09-14T19:06:29+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/skottler/public_git/wsmancli.git/commit/?id=541b4c333bc94841df0e8dcb4d0ef61b4c5e8c9d'/>
<id>541b4c333bc94841df0e8dcb4d0ef61b4c5e8c9d</id>
<content type='text'>
Add a couple of #include "u/libu.h"
See commit 7d91f671 of openwsman
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add a couple of #include "u/libu.h"
See commit 7d91f671 of openwsman
</pre>
</div>
</content>
</entry>
<entry>
<title>wsmancli allow debugging of invalid response XML</title>
<updated>2011-09-08T07:05:16+00:00</updated>
<author>
<name>Klaus Kämpf</name>
<email>kkaempf@suse.de</email>
</author>
<published>2011-09-08T07:05:16+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/skottler/public_git/wsmancli.git/commit/?id=69ddc10b31d158e5ceeab9d2e0fc78b9b1a4c244'/>
<id>69ddc10b31d158e5ceeab9d2e0fc78b9b1a4c244</id>
<content type='text'>
sing wsmancli, when the response XML is invalid (such as due to
invalid characters) an error is displayed with only a partial view of
the XML and no other information that could tell us where exactly the
problem is.

In debug mode (using -d option), it would be useful if the tool could
dump the raw XML for further analysis before it could be interpreted
by libxml functions.

Patch by Chris Poblete
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
sing wsmancli, when the response XML is invalid (such as due to
invalid characters) an error is displayed with only a partial view of
the XML and no other information that could tell us where exactly the
problem is.

In debug mode (using -d option), it would be useful if the tool could
dump the raw XML for further analysis before it could be interpreted
by libxml functions.

Patch by Chris Poblete
</pre>
</div>
</content>
</entry>
<entry>
<title>Use https (port 5986) when cainfo is set.</title>
<updated>2011-06-10T10:01:59+00:00</updated>
<author>
<name>Klaus Kämpf</name>
<email>kkaempf@suse.de</email>
</author>
<published>2011-06-10T10:01:59+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/skottler/public_git/wsmancli.git/commit/?id=503c6951b881b4d10704136dfd57174d5f6d4c59'/>
<id>503c6951b881b4d10704136dfd57174d5f6d4c59</id>
<content type='text'>
This fixes the default port setting to match wsmc_create() call.

(upstream issue 3257661, Zoltan Micskei)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This fixes the default port setting to match wsmc_create() call.

(upstream issue 3257661, Zoltan Micskei)
</pre>
</div>
</content>
</entry>
</feed>
