#!/bin/ksh -p # # CDDL HEADER START # # The contents of this file are subject to the terms of the # Common Development and Distribution License (the "License"). # You may not use this file except in compliance with the License. # # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE # or http://www.opensolaris.org/os/licensing. # See the License for the specific language governing permissions # and limitations under the License. # # When distributing Covered Code, include this CDDL HEADER in each # file and include the License file at usr/src/OPENSOLARIS.LICENSE. # If applicable, add the following below this CDDL HEADER, with the # fields enclosed by brackets "[]" replaced with your own identifying # information: Portions Copyright [yyyy] [name of copyright owner] # # CDDL HEADER END # # # Copyright 2008 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # # # Copyright (c) 2013, 2016 by Delphix. All rights reserved. # . $STF_SUITE/include/libtest.shlib # # DESCRIPTION: # # Ensure that a set of invalid names cannot be used to create pools. # # STRATEGY: # 1) For each invalid character in the character set, try to create # and destroy the pool. Verify it fails. # 2) Given a list of invalid pool names, ensure the pools are not # created. # verify_runnable "global" log_assert "Ensure that a set of invalid names cannot be used to create pools." # Global variable use to cleanup failures. POOLNAME="" function cleanup { if poolexists $POOLNAME; then log_must zpool destroy $POOLNAME fi if [[ -d $TESTDIR ]]; then log_must rm -rf $TESTDIR fi } log_onexit cleanup for pool in $(get_all_pools); do if [[ "$pool" != "$TESTPOOL" ]]; then log_must zpool destroy $pool fi done DISK=${DISKS%% *} if [[ ! -e $TESTDIR ]]; then log_must mkdir $TESTDIR fi log_note "Ensure invalid characters fail" for POOLNAME in "!" "\"" "#" "$" "%" "&" "'" "(" ")" \ "\*" "+" "," "-" "\." "/" "\\" \ 0 1 2 3 4 5 6 7 8 9 \ ":" ";" "<" "=" ">" "\?" "@" \ "[" "]" "^" "_" "\`" "{" "|" "}" "~" do log_mustnot zpool create -m $TESTDIR $POOLNAME $DISK if poolexists $POOLNAME; then log_fail "Unexpectedly created pool: '$POOLNAME'" fi log_mustnot zpool destroy $POOLNAME done log_note "Check that invalid octal values fail" for oct in "\000" "\001" "\002" "\003" "\004" "\005" "\006" "\007" \ "\010" "\011" "\012" "\013" "\014" "\015" "\017" \ "\020" "\021" "\022" "\023" "\024" "\025" "\026" "\027" \ "\030" "\031" "\032" "\033" "\034" "\035" "\036" "\037" \ "\040" "\177" do POOLNAME=`eval "echo x | tr 'x' '$oct'"` log_mustnot zpool create -m $TESTDIR $POOLNAME $DISK if poolexists $POOLNAME; then log_fail "Unexpectedly created pool: '$POOLNAME'" fi log_mustnot zpool destroy $POOLNAME done log_note "Verify invalid pool names fail" set -A POOLNAME "c0t0d0s0" "c0t0d0" "c0t0d19" "c0t50000E0108D279d0" \ "mirror" "raidz" ",," ",,,,,,,,,,,,,,,,,,,,,,,,," \ "2222222222222222222" "mirror_pool" "raidz_pool" \ "mirror-pool" "raidz-pool" "spare" "spare_pool" \ "spare-pool" "raidz1-" "raidz2:" ":aaa" "-bbb" "_ccc" ".ddd" if verify_slog_support ; then POOLNAME[${#POOLNAME[@]}]='log' fi typeset -i i=0 while ((i < ${#POOLNAME[@]})); do log_mustnot zpool create -m $TESTDIR ${POOLNAME[$i]} $DISK if poolexists ${POOLNAME[$i]}; then log_fail "Unexpectedly created pool: '${POOLNAME[$i]}'" fi log_mustnot zpool destroy ${POOLNAME[$i]} ((i += 1)) done log_pass "Invalid names and characters were caught correctly"