2014-09-17 02:32:22 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
# Hyper-V specific events
|
|
|
|
|
|
|
|
notify 10 {
|
|
|
|
match "system" "DEVFS";
|
|
|
|
match "subsystem" "CDEV";
|
|
|
|
match "type" "CREATE";
|
2014-09-19 07:18:45 +00:00
|
|
|
match "cdev" "hv_kvp_dev";
|
2014-09-17 02:32:22 +00:00
|
|
|
action "/usr/sbin/hv_kvp_daemon";
|
|
|
|
};
|
|
|
|
|
|
|
|
notify 10 {
|
|
|
|
match "system" "DEVFS";
|
|
|
|
match "subsystem" "CDEV";
|
|
|
|
match "type" "DESTROY";
|
2014-09-19 07:18:45 +00:00
|
|
|
match "cdev" "hv_kvp_dev";
|
2014-09-17 02:32:22 +00:00
|
|
|
action "pkill -x hv_kvp_daemon";
|
|
|
|
};
|
hyperv/vss: Add driver and tools for VSS
VSS stands for "Volume Shadow Copy Service". Unlike virtual machine
snapshot, it only takes snapshot for the virtual disks, so both
filesystem and applications have to aware of it, and cooperate the
whole VSS process.
This driver exposes two device files to the userland:
/dev/hv_fsvss_dev
Normally userland programs should _not_ mess with this device file.
It is currently used by the hv_vss_daemon(8), which freezes and
thaws the filesystem. NOTE: currently only UFS is supported, if
the system mounts _any_ other filesystems, the hv_vss_daemon(8)
will veto the VSS process.
If hv_vss_daemon(8) was disabled, then this device file must be
opened, and proper ioctls must be issued to keep the VSS working.
/dev/hv_appvss_dev
Userland application can opened this device file to receive the
VSS freeze notification, hold the VSS for a while (mainly to flush
application data to filesystem), release the VSS process, and
receive the VSS thaw notification i.e. applications can run again.
The VSS will still work, even if this device file is not opened.
However, only filesystem consistency is promised, if this device
file is not opened or is not operated properly.
hv_vss_daemon(8) is started by devd(8) by default. It can be disabled
by editting /etc/devd/hyperv.conf.
Submitted by: Hongjiang Zhang <honzhan microsoft com>
Reviewed by: kib, mckusick
MFC after: 3 weeks
Sponsored by: Microsoft
Differential Revision: https://reviews.freebsd.org/D8224
2016-11-15 02:36:12 +00:00
|
|
|
|
|
|
|
notify 11 {
|
|
|
|
match "system" "DEVFS";
|
|
|
|
match "subsystem" "CDEV";
|
|
|
|
match "type" "CREATE";
|
|
|
|
match "cdev" "hv_fsvss_dev";
|
|
|
|
action "/usr/sbin/hv_vss_daemon";
|
|
|
|
};
|
|
|
|
|
|
|
|
notify 11 {
|
|
|
|
match "system" "DEVFS";
|
|
|
|
match "subsystem" "CDEV";
|
|
|
|
match "type" "DESTROY";
|
|
|
|
match "cdev" "hv_fsvss_dev";
|
|
|
|
action "pkill -x hv_vss_daemon";
|
|
|
|
};
|
2017-07-31 07:18:15 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Rules for non-transparent network VF.
|
|
|
|
#
|
|
|
|
# How network VF works with hn(4) on Hyper-V in non-transparent mode:
|
|
|
|
#
|
2017-12-27 03:23:01 +00:00
|
|
|
# - Each network VF has a corresponding hn(4).
|
|
|
|
# - The network VF and the it's corresponding hn(4) have the same hardware
|
2017-07-31 07:18:15 +00:00
|
|
|
# address.
|
|
|
|
# - Once the network VF is up, e.g. ifconfig VF up:
|
|
|
|
# o All of the transmission should go through the network VF.
|
|
|
|
# o Most of the reception goes through the network VF.
|
2017-12-27 03:23:01 +00:00
|
|
|
# o Small amount of reception may go through the corresponding hn(4).
|
|
|
|
# This reception will happen, even if the corresponding hn(4) is
|
|
|
|
# down. The corresponding hn(4) will change the reception interface
|
2017-07-31 07:18:15 +00:00
|
|
|
# to the network VF, so that network layer and application layer will
|
|
|
|
# be tricked into thinking that these packets were received by the
|
|
|
|
# network VF.
|
2017-12-27 03:23:01 +00:00
|
|
|
# o The corresponding hn(4) pretends the physical link is down.
|
2017-07-31 07:18:15 +00:00
|
|
|
# - Once the network VF is down or detached:
|
2017-12-27 03:23:01 +00:00
|
|
|
# o All of the transmission should go through the corresponding hn(4).
|
|
|
|
# o All of the reception goes through the corresponding hn(4).
|
|
|
|
# o The corresponding hn(4) fallbacks to the original physical link
|
2017-07-31 07:18:15 +00:00
|
|
|
# detection logic.
|
|
|
|
#
|
|
|
|
# All these features are mainly used to help live migration, during which
|
|
|
|
# the network VF will be detached, while the network communication to the
|
|
|
|
# VM must not be cut off. In order to reach this level of live migration
|
|
|
|
# transparency, we use failover mode lagg(4) with the network VF and the
|
2017-12-27 03:23:01 +00:00
|
|
|
# corresponding hn(4) attached to it.
|
2017-07-31 07:18:15 +00:00
|
|
|
#
|
|
|
|
# To ease user configuration for both network VF and non-network VF, the
|
|
|
|
# lagg(4) will be created by the following rules, and the configuration
|
2017-12-27 03:23:01 +00:00
|
|
|
# of the corresponding hn(4) will be applied to the lagg(4) automatically.
|
2017-07-31 07:18:15 +00:00
|
|
|
#
|
|
|
|
# NOTE:
|
|
|
|
# If live migration is not needed at all, the following rules could be
|
|
|
|
# commented out, and the network VF interface could be used exclusively.
|
2017-12-27 03:23:01 +00:00
|
|
|
# Most often the corresponding hn(4) could be completely ignored.
|
2017-07-31 07:18:15 +00:00
|
|
|
#
|
|
|
|
#
|
|
|
|
# Default workflow for the network VF bringup:
|
|
|
|
# 1) ETHERNET/IFATTACH -> VF interface up (delayed by rc.conf hyperv_vf_delay
|
|
|
|
# seconds). This operation will trigger HYPERV_NIC_VF/VF_UP.
|
|
|
|
# 2) HYPERV_NIC_VF/VF_UP:
|
|
|
|
# a) Create laggX coresponding to hnX.
|
|
|
|
# b) Add hnX and VF to laggX.
|
|
|
|
# c) Whack all previous network configuration on hnX, including stopping
|
|
|
|
# dhclient.
|
|
|
|
# d) Apply rc.conf ifconfig_hnX to laggX; i.e. including starting dhclient.
|
|
|
|
#
|
|
|
|
# NOTE:
|
|
|
|
# HYPERV_NIC_VF/VF_UP action script could be customized per-interface by
|
|
|
|
# adding /usr/libexec/hyperv/hyperv_vfup.hnX script.
|
|
|
|
# /usr/libexec/hyperv/hyperv_vfup could be used as the template for the
|
|
|
|
# customized per-interface script.
|
|
|
|
#
|
|
|
|
# NOTE:
|
|
|
|
# For transparent network VF, hyperv_vfattach does nothing and
|
|
|
|
# HYPERV_NIC_VF/VF_UP will not be triggered at all.
|
|
|
|
#
|
|
|
|
|
|
|
|
notify 10 {
|
|
|
|
match "system" "HYPERV_NIC_VF";
|
|
|
|
match "type" "VF_UP";
|
|
|
|
action "/usr/libexec/hyperv/hyperv_vfup $subsystem";
|
|
|
|
};
|
|
|
|
|
|
|
|
notify 10 {
|
|
|
|
match "system" "ETHERNET";
|
|
|
|
match "type" "IFATTACH";
|
|
|
|
action "/usr/libexec/hyperv/hyperv_vfattach $subsystem 0";
|
|
|
|
};
|