]> git.ipfire.org Git - thirdparty/lxc.git/commitdiff
network: Restores phys device MTU on container shutdown
authorThomas Parrott <thomas.parrott@canonical.com>
Thu, 9 May 2019 15:40:08 +0000 (16:40 +0100)
committerThomas Parrott <thomas.parrott@canonical.com>
Thu, 9 May 2019 15:55:45 +0000 (16:55 +0100)
The phys devices will now have their original MTUs recorded at start and restored at shutdown.

This is to protect the original phys device from having any container level MTU customisation being applied to the device once it is restored to the host.

Signed-off-by: Thomas Parrott <thomas.parrott@canonical.com>
src/lxc/network.c
src/lxc/network.h

index 74927d8f676c74d6d929befe53554bf188e9e727..954d8b275bd87c39b7e11984e3f51ddb4cbfc1c7 100644 (file)
@@ -635,7 +635,7 @@ on_error:
 
 static int instantiate_phys(struct lxc_handler *handler, struct lxc_netdev *netdev)
 {
-       int err;
+       int err, mtu_orig = 0;
        unsigned int mtu = 0;
 
        if (netdev->link[0] == '\0') {
@@ -661,6 +661,15 @@ static int instantiate_phys(struct lxc_handler *handler, struct lxc_netdev *netd
         */
        netdev->priv.phys_attr.ifindex = netdev->ifindex;
 
+       /* Get original device MTU setting and store for restoration after container shutdown. */
+       mtu_orig = netdev_get_mtu(netdev->ifindex);
+       if (mtu_orig < 0) {
+               SYSERROR("Failed to get original mtu for interface \"%s\"", netdev->link);
+               return minus_one_set_errno(-mtu_orig);
+       }
+
+       netdev->priv.phys_attr.mtu = mtu_orig;
+
        if (netdev->mtu) {
                err = lxc_safe_uint(netdev->mtu, &mtu);
                if (err < 0) {
@@ -3159,11 +3168,22 @@ bool lxc_delete_network_priv(struct lxc_handler *handler)
                                WARN("Failed to rename interface with index %d "
                                     "from \"%s\" to its initial name \"%s\"",
                                     netdev->ifindex, netdev->name, netdev->link);
-                       else
+                       else {
                                TRACE("Renamed interface with index %d from "
                                      "\"%s\" to its initial name \"%s\"",
                                      netdev->ifindex, netdev->name,
                                      netdev->link);
+
+                               /* Restore original MTU */
+                               ret = lxc_netdev_set_mtu(netdev->link, netdev->priv.phys_attr.mtu);
+                               if (ret < 0) {
+                                       WARN("Failed to set interface \"%s\" to its initial mtu \"%d\"",
+                                               netdev->link, netdev->priv.phys_attr.mtu);
+                               } else {
+                                       TRACE("Restored interface \"%s\" to its initial mtu \"%d\"",
+                                               netdev->link, netdev->priv.phys_attr.mtu);
+                               }
+                       }
                        goto clear_ifindices;
                }
 
index d221b255f209c893ea9aec830a81c28c3a9c5f50..591ecb07256d7baca0f26d5178c9f7ac6be115c8 100644 (file)
@@ -122,6 +122,7 @@ struct ifla_ipvlan {
  */
 struct ifla_phys {
        int ifindex;
+       int mtu;
 };
 
 union netdev_p {