libvirtd_qemu.aug 4.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
(* /etc/libvirt/qemu.conf *)

module Libvirtd_qemu =
   autoload xfm

   let eol   = del /[ \t]*\n/ "\n"
   let value_sep   = del /[ \t]*=[ \t]*/  " = "
   let indent = del /[ \t]*/ ""

   let array_sep  = del /,[ \t\n]*/ ", "
   let array_start = del /\[[ \t\n]*/ "[ "
   let array_end = del /\]/ "]"

   let str_val = del /\"/ "\"" . store /[^\"]*/ . del /\"/ "\""
   let bool_val = store /0|1/
16
   let int_val = store /[0-9]+/
17 18 19 20 21
   let str_array_element = [ seq "el" . str_val ] . del /[ \t\n]*/ ""
   let str_array_val = counter "el" . array_start . ( str_array_element . ( array_sep . str_array_element ) * ) ? . array_end

   let str_entry       (kw:string) = [ key kw . value_sep . str_val ]
   let bool_entry      (kw:string) = [ key kw . value_sep . bool_val ]
22
   let int_entry       (kw:string) = [ key kw . value_sep . int_val ]
23 24
   let str_array_entry (kw:string) = [ key kw . value_sep . str_array_val ]

25 26 27
   let unlimited_val =  del /\"/ "\"" . store /unlimited/ . del /\"/ "\""
   let limits_entry (kw:string) = [ key kw . value_sep . unlimited_val ] |  [ key kw . value_sep . int_val ]

28 29 30

   (* Config entry grouped by function - same order as example config *)
   let vnc_entry = str_entry "vnc_listen"
31
                 | bool_entry "vnc_auto_unix_socket"
32 33 34
                 | bool_entry "vnc_tls"
                 | str_entry "vnc_tls_x509_cert_dir"
                 | bool_entry "vnc_tls_x509_verify"
35
                 | str_entry "vnc_password"
36 37
                 | bool_entry "vnc_sasl"
                 | str_entry "vnc_sasl_dir"
38 39 40
                 | bool_entry "vnc_allow_host_audio"

   let spice_entry = str_entry "spice_listen"
41 42
                 | bool_entry "spice_tls"
                 | str_entry  "spice_tls_x509_cert_dir"
43
                 | bool_entry "spice_auto_unix_socket"
D
Daniel P. Berrange 已提交
44
                 | str_entry "spice_password"
45 46
                 | bool_entry "spice_sasl"
                 | str_entry "spice_sasl_dir"
47

48 49
   let nogfx_entry = bool_entry "nographics_allow_host_audio"

50 51
   let remote_display_entry = int_entry "remote_display_port_min"
                 | int_entry "remote_display_port_max"
52 53
                 | int_entry "remote_websocket_port_min"
                 | int_entry "remote_websocket_port_max"
54

55
   let security_entry = str_entry "security_driver"
56 57
                 | bool_entry "security_default_confined"
                 | bool_entry "security_require_confined"
58 59
                 | str_entry "user"
                 | str_entry "group"
60
                 | bool_entry "dynamic_ownership"
61 62
                 | str_array_entry "cgroup_controllers"
                 | str_array_entry "cgroup_device_acl"
63
                 | int_entry "seccomp_sandbox"
64 65

   let save_entry =  str_entry "save_image_format"
66
                 | str_entry "dump_image_format"
67
                 | str_entry "snapshot_image_format"
H
Hu Tao 已提交
68
                 | str_entry "auto_dump_path"
69 70
                 | bool_entry "auto_dump_bypass_cache"
                 | bool_entry "auto_start_bypass_cache"
71 72

   let process_entry = str_entry "hugetlbfs_mount"
73
                 | bool_entry "clear_emulator_capabilities"
74
                 | str_entry "bridge_helper"
75
                 | bool_entry "set_process_name"
76
                 | int_entry "max_processes"
77
                 | int_entry "max_files"
78
                 | limits_entry "max_core"
79
                 | bool_entry "dump_guest_core"
80
                 | str_entry "stdio_handler"
81 82 83 84

   let device_entry = bool_entry "mac_filter"
                 | bool_entry "relaxed_acs_check"
                 | bool_entry "allow_disk_format_probing"
85
                 | str_entry "lock_manager"
86 87

   let rpc_entry = int_entry "max_queued"
88 89
                 | int_entry "keepalive_interval"
                 | int_entry "keepalive_count"
90

91
   let network_entry = str_entry "migration_address"
92 93
                 | int_entry "migration_port_min"
                 | int_entry "migration_port_max"
94
                 | str_entry "migration_host"
95

96 97
   let log_entry = bool_entry "log_timestamp"

98 99
   let nvram_entry = str_array_entry "nvram"

M
Martin Kletzander 已提交
100
   (* Each entry in the config is one of the following ... *)
101
   let entry = vnc_entry
102
             | spice_entry
103
             | nogfx_entry
104
             | remote_display_entry
105 106 107 108 109
             | security_entry
             | save_entry
             | process_entry
             | device_entry
             | rpc_entry
110
             | network_entry
111
             | log_entry
112
             | nvram_entry
113

114 115 116 117 118 119 120 121 122 123 124
   let comment = [ label "#comment" . del /#[ \t]*/ "# " .  store /([^ \t\n][^\n]*)?/ . del /\n/ "\n" ]
   let empty = [ label "#empty" . eol ]

   let record = indent . entry . eol

   let lns = ( record | comment | empty ) *

   let filter = incl "/etc/libvirt/qemu.conf"
              . Util.stdexcl

   let xfm = transform lns filter