]> git.ipfire.org Git - people/ms/network.git/blobdiff - src/hooks/ports/vlan
vlan: Rename PARENT_DEVICE to PARENT_PORT
[people/ms/network.git] / src / hooks / ports / vlan
index bc12a9e11a8eec5815c9684206c1cd0e9e53761a..f19eda493aaaf2910a6b87de198923dcb3e931fb 100644 (file)
 
 . /usr/lib/network/header-port
 
-HOOK_SETTINGS="ADDRESS PARENT_DEVICE TAG"
+HOOK_SETTINGS=(
+       "ADDRESS"
+       "PARENT_PORT"
+       "TAG"
+)
 
-PORT_PARENTS_VAR="PARENT"
+PORT_PARENTS_VAR="PARENT_PORT"
 
 hook_check_settings() {
-       assert isset PARENT_DEVICE
+       assert isset PARENT_PORT
        assert isinteger TAG
 
        if isset ADDRESS; then
@@ -47,54 +51,49 @@ hook_check_settings() {
        done
 }
 
-hook_new() {
-       while [ $# -gt 0 ]; do
-               case "${1}" in
-                       --parent-device=*)
-                               PARENT_DEVICE=$(cli_get_val "${1}")
-                               ;;
-                       --address=*)
-                               ADDRESS=$(cli_get_val "${1}")
-                               ;;
-                       --tag=*)
-                               TAG=$(cli_get_val "${1}")
-                               ;;
-                       *)
-                               warning "Unknown argument '${1}'"
-                               ;;
-               esac
-               shift
-       done
+hook_find_port_name() {
+       assert isset PARENT_PORT
+       assert isset TAG
 
-       local port="${PARENT_DEVICE}${VLAN_PORT_INTERFIX}${TAG}"
-
-       port_settings_write "${port}" ${HOOK_SETTINGS}
-
-       exit ${EXIT_OK}
+       print "${PARENT_PORT}${VLAN_PORT_INTERFIX}${TAG}"
 }
 
-hook_edit() {
-       local port=${1}
-       assert isset port
-       shift
-
-       port_settings_read "${port}" ${HOOK_SETTINGS}
-
+hook_parse_cmdline() {
        while [ $# -gt 0 ]; do
                case "${1}" in
                        --address=*)
                                ADDRESS=$(cli_get_val "${1}")
+
+                               # Validate address
+                               if ! mac_is_valid "${ADDRESS}"; then
+                                       error "Invalid MAC address given: ${ADDRESS}"
+                                       return ${EXIT_CONF_ERROR}
+                               fi
+                               ;;
+                       --port=*)
+                               PARENT_PORT=$(cli_get_val "${1}")
+
+                               # Check if PARENT_PORT exists
+                               if ! port_exists "${PARENT_PORT}"; then
+                                       error "Port '${PARENT_PORT}' does not exist"
+                                       return ${EXIT_CONF_ERROR}
+                               fi
+                               ;;
+                       --tag=*)
+                               TAG=$(cli_get_val "${1}")
                                ;;
                        *)
-                               warning "Unknown argument '${1}'"
+                               error "Unknown argument '${1}'"
+                               return ${EXIT_CONF_ERROR}
                                ;;
                esac
                shift
        done
 
-       port_settings_write "${port}" ${HOOK_SETTINGS}
-
-       exit ${EXIT_OK} 
+       # Generate a random MAC address if none given
+       if ! isset ADDRESS; then
+               ADDRESS="$(mac_generate)"
+       fi
 }
 
 hook_create() {
@@ -104,10 +103,10 @@ hook_create() {
        device_exists "${port}" && exit ${EXIT_OK}
 
        # Read configruation
-       port_settings_read "${port}" ${HOOK_SETTINGS}
+       port_settings_read "${port}"
 
        # Create the VLAN device
-       vlan_create "${port}" "${PARENT_DEVICE}" "${TAG}" "${ADDRESS}"
+       vlan_create "${port}" "${PARENT_PORT}" "${TAG}" "${ADDRESS}"
 
        exit ${EXIT_OK}
 }