Revert "conf: allow setting peer address in <ip> element of <interface>"

This reverts commit 93135abf14.

This feature was accidentally pushed in the feature freeze.
This commit is contained in:
Ján Tomko 2016-06-27 11:56:17 +02:00
parent d658456530
commit f6acf039f0
4 changed files with 15 additions and 45 deletions

View File

@ -4967,7 +4967,6 @@ qemu-kvm -net nic,model=? /dev/null
&lt;source network='default'/&gt; &lt;source network='default'/&gt;
&lt;target dev='vnet0'/&gt; &lt;target dev='vnet0'/&gt;
<b>&lt;ip address='192.168.122.5' prefix='24'/&gt;</b> <b>&lt;ip address='192.168.122.5' prefix='24'/&gt;</b>
<b>&lt;ip address='192.168.122.5' prefix='24' peer='10.0.0.10'/&gt;</b>
<b>&lt;route family='ipv4' address='192.168.122.0' prefix='24' gateway='192.168.122.1'/&gt;</b> <b>&lt;route family='ipv4' address='192.168.122.0' prefix='24' gateway='192.168.122.1'/&gt;</b>
<b>&lt;route family='ipv4' address='192.168.122.8' gateway='192.168.122.1'/&gt;</b> <b>&lt;route family='ipv4' address='192.168.122.8' gateway='192.168.122.1'/&gt;</b>
&lt;/interface&gt; &lt;/interface&gt;
@ -4986,30 +4985,21 @@ qemu-kvm -net nic,model=? /dev/null
</pre> </pre>
<p> <p>
<span class="since">Since 1.2.12</span> network devices and <span class="since">Since 1.2.12</span> the network devices and host devices
hostdev devices with network capabilities can optionally be provided with network capabilities can be provided zero or more IP addresses to set
one or more IP addresses to set on the network device in the on the target device. Note that some hypervisors or network device types
guest. Note that some hypervisors or network device types will will simply ignore them or only use the first one. The <code>family</code>
simply ignore them or only use the first one. attribute can be set to either <code>ipv4</code> or <code>ipv6</code>, the
The <code>family</code> attribute can be set to <code>address</code> attribute holds the IP address. The <code>prefix</code>
either <code>ipv4</code> or <code>ipv6</code>, and the is not mandatory since some hypervisors do not handle it.
<code>address</code> attribute contains the IP address. The
optional <code>prefix</code> is the number of 1 bits in the
netmask, and will be automatically set if not specified - for
IPv4 the default prefix is determined according to the network
"class" (A, B, or C - see RFC870), and for IPv6 the default
prefix is 64. The optional <code>peer</code> attribute holds the
IP address of the other end of a point-to-point network
device <span class="since">(since 2.0.0)</span>.
</p> </p>
<p> <p>
<span class="since">Since 1.2.12</span> route elements can also be <span class="since">Since 1.2.12</span> route elements can also be added
added to define IP routes to add in the guest. The attributes of to define the network routes to use for the network device. The attributes
this element are described in the documentation for of this element are described in the documentation for the <code>route</code>
the <code>route</code> element element in <a href="formatnetwork.html#elementsStaticroute">network definitions</a>.
in <a href="formatnetwork.html#elementsStaticroute">network This is only used by the LXC driver.
definitions</a>. This is used by the LXC driver.
</p> </p>
<h5><a name="elementVhostuser">vhost-user interface</a></h5> <h5><a name="elementVhostuser">vhost-user interface</a></h5>

View File

@ -2629,11 +2629,6 @@
<ref name="ipPrefix"/> <ref name="ipPrefix"/>
</attribute> </attribute>
</optional> </optional>
<optional>
<attribute name="peer">
<ref name="ipAddr"/>
</attribute>
</optional>
<empty/> <empty/>
</element> </element>
</zeroOrMore> </zeroOrMore>

View File

@ -6121,7 +6121,7 @@ virDomainNetIPParseXML(xmlNodePtr node)
unsigned int prefixValue = 0; unsigned int prefixValue = 0;
char *familyStr = NULL; char *familyStr = NULL;
int family = AF_UNSPEC; int family = AF_UNSPEC;
char *address = NULL, *peer = NULL; char *address = NULL;
if (!(address = virXMLPropString(node, "address"))) { if (!(address = virXMLPropString(node, "address"))) {
virReportError(VIR_ERR_XML_ERROR, "%s", virReportError(VIR_ERR_XML_ERROR, "%s",
@ -6159,13 +6159,6 @@ virDomainNetIPParseXML(xmlNodePtr node)
} }
ip->prefix = prefixValue; ip->prefix = prefixValue;
if ((peer = virXMLPropString(node, "peer")) != NULL &&
virSocketAddrParse(&ip->peer, peer, family) < 0) {
virReportError(VIR_ERR_INVALID_ARG,
_("Invalid peer '%s' in <ip>"), peer);
goto cleanup;
}
ret = ip; ret = ip;
ip = NULL; ip = NULL;
@ -6173,7 +6166,6 @@ virDomainNetIPParseXML(xmlNodePtr node)
VIR_FREE(prefixStr); VIR_FREE(prefixStr);
VIR_FREE(familyStr); VIR_FREE(familyStr);
VIR_FREE(address); VIR_FREE(address);
VIR_FREE(peer);
VIR_FREE(ip); VIR_FREE(ip);
return ret; return ret;
} }
@ -20272,12 +20264,6 @@ virDomainNetIPInfoFormat(virBufferPtr buf,
virBufferAsprintf(buf, " family='%s'", familyStr); virBufferAsprintf(buf, " family='%s'", familyStr);
if (def->ips[i]->prefix) if (def->ips[i]->prefix)
virBufferAsprintf(buf, " prefix='%u'", def->ips[i]->prefix); virBufferAsprintf(buf, " prefix='%u'", def->ips[i]->prefix);
if (VIR_SOCKET_ADDR_VALID(&def->ips[i]->peer)) {
if (!(ipStr = virSocketAddrFormat(&def->ips[i]->peer)))
return -1;
virBufferAsprintf(buf, " peer='%s'", ipStr);
VIR_FREE(ipStr);
}
virBufferAddLit(buf, "/>\n"); virBufferAddLit(buf, "/>\n");
} }

View File

@ -27,8 +27,7 @@
typedef struct { typedef struct {
virSocketAddr address; /* ipv4 or ipv6 address */ virSocketAddr address; /* ipv4 or ipv6 address */
virSocketAddr peer; /* ipv4 or ipv6 address of peer */ unsigned int prefix; /* number of 1 bits in the net mask */
unsigned int prefix; /* number of 1 bits in the netmask */
} virNetDevIPAddr, *virNetDevIPAddrPtr; } virNetDevIPAddr, *virNetDevIPAddrPtr;
typedef struct { typedef struct {