Mac-Vlan

Revision as of 01:10, 2 November 2016 by Kir (talk | contribs) (added to api and external cat)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

CRIU supports checkpointing and restoring network namespaces with macvlan devices.

Dump

On dump, criu will automatically detect these devices and no extra arguments are needed. The name of macvlan device inside the checkpointed namespace is saved to images.

Restore

On restore, users *must* specify the master device in the host network namespace via --external macvlan[inner_dev]:outer_dev, where inner_dev is the device name in restored namespace, and outer_dev is a network device existing in the same namespace as CRIU.

Implementation details

The restore process for macvlan interfaces is somewhat convoluted, since the actual macvlan interface lives inside the network namespace, but the master device lives outside. CRIU uses IFLA_NET_NS_ID to specify the network namespace that the master link lives in, and uses IFLA_NET_NS_FD to specify the network namespace the slave link should be created in. In the user namespace case, the netlink call is made from usernsd, since the caller needs to have CAP_NET_ADMIN in both network namespaces. In the non-userns case, we setns around to create a netlink socket in CRIU's netns, and then use that socket to actually create the macvlan link.