| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | #!/bin/bash | 
|  | 2 | # | 
|  | 3 | # Create a "bank" of tap network devices that can be used by the | 
|  | 4 | # runqemu script. This script needs to be run as root, and will | 
|  | 5 | # use the tunctl binary from the build system sysroot. Note: many Linux | 
|  | 6 | # distros these days still use an older version of tunctl which does not | 
|  | 7 | # support the group permissions option, hence the need to use the build | 
|  | 8 | # system provided version. | 
|  | 9 | # | 
|  | 10 | # Copyright (C) 2010 Intel Corp. | 
|  | 11 | # | 
| Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 12 | # SPDX-License-Identifier: GPL-2.0-only | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 13 | # | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 14 |  | 
| Brad Bishop | 977dc1a | 2019-02-06 16:01:43 -0500 | [diff] [blame] | 15 | uid=`id -u` | 
|  | 16 | gid=`id -g` | 
|  | 17 | if [ -n "$SUDO_UID" ]; then | 
|  | 18 | uid=$SUDO_UID | 
|  | 19 | fi | 
|  | 20 | if [ -n "$SUDO_GID" ]; then | 
|  | 21 | gid=$SUDO_GID | 
|  | 22 | fi | 
|  | 23 |  | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 24 | usage() { | 
| Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 25 | echo "Usage: sudo $0 <uid> <gid> <num> <staging_bindir_native>" | 
| Brad Bishop | 977dc1a | 2019-02-06 16:01:43 -0500 | [diff] [blame] | 26 | echo "Where <uid> is the numeric user id the tap devices will be owned by" | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 27 | echo "Where <gid> is the numeric group id the tap devices will be owned by" | 
|  | 28 | echo "<num> is the number of tap devices to create (0 to remove all)" | 
|  | 29 | echo "<native-sysroot-basedir> is the path to the build system's native sysroot" | 
| Brad Bishop | 977dc1a | 2019-02-06 16:01:43 -0500 | [diff] [blame] | 30 | echo "For example:" | 
|  | 31 | echo "$ bitbake qemu-helper-native" | 
|  | 32 | echo "$ sudo $0 $uid $gid 4 tmp/sysroots-components/x86_64/qemu-helper-native/usr/bin" | 
|  | 33 | echo "" | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 34 | exit 1 | 
|  | 35 | } | 
|  | 36 |  | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 37 | if [ $# -ne 4 ]; then | 
|  | 38 | echo "Error: Incorrect number of arguments" | 
|  | 39 | usage | 
|  | 40 | fi | 
|  | 41 |  | 
|  | 42 | TUID=$1 | 
|  | 43 | GID=$2 | 
|  | 44 | COUNT=$3 | 
| Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 45 | STAGING_BINDIR_NATIVE=$4 | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 46 |  | 
| Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 47 | TUNCTL=$STAGING_BINDIR_NATIVE/tunctl | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 48 | if [[ ! -x "$TUNCTL" || -d "$TUNCTL" ]]; then | 
|  | 49 | echo "Error: $TUNCTL is not an executable" | 
|  | 50 | usage | 
|  | 51 | fi | 
|  | 52 |  | 
| Brad Bishop | 977dc1a | 2019-02-06 16:01:43 -0500 | [diff] [blame] | 53 | if [ $EUID -ne 0 ]; then | 
|  | 54 | echo "Error: This script must be run with root privileges" | 
|  | 55 | exit | 
|  | 56 | fi | 
|  | 57 |  | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 58 | SCRIPT_DIR=`dirname $0` | 
|  | 59 | RUNQEMU_IFUP="$SCRIPT_DIR/runqemu-ifup" | 
|  | 60 | if [ ! -x "$RUNQEMU_IFUP" ]; then | 
|  | 61 | echo "Error: Unable to find the runqemu-ifup script in $SCRIPT_DIR" | 
|  | 62 | exit 1 | 
|  | 63 | fi | 
|  | 64 |  | 
|  | 65 | IFCONFIG=`which ip 2> /dev/null` | 
|  | 66 | if [ -z "$IFCONFIG" ]; then | 
|  | 67 | # Is it ever anywhere else? | 
|  | 68 | IFCONFIG=/sbin/ip | 
|  | 69 | fi | 
|  | 70 | if [ ! -x "$IFCONFIG" ]; then | 
|  | 71 | echo "$IFCONFIG cannot be executed" | 
|  | 72 | exit 1 | 
|  | 73 | fi | 
|  | 74 |  | 
| Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 75 | if [ $COUNT -ge 0 ]; then | 
|  | 76 | # Ensure we start with a clean slate | 
|  | 77 | for tap in `$IFCONFIG link | grep tap | awk '{ print \$2 }' | sed s/://`; do | 
|  | 78 | echo "Note: Destroying pre-existing tap interface $tap..." | 
|  | 79 | $TUNCTL -d $tap | 
|  | 80 | done | 
|  | 81 | rm -f /etc/runqemu-nosudo | 
|  | 82 | else | 
|  | 83 | echo "Error: Incorrect count: $COUNT" | 
|  | 84 | exit 1 | 
|  | 85 | fi | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 86 |  | 
| Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 87 | if [ $COUNT -gt 0 ]; then | 
| Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 88 | echo "Creating $COUNT tap devices for UID: $TUID GID: $GID..." | 
|  | 89 | for ((index=0; index < $COUNT; index++)); do | 
|  | 90 | echo "Creating tap$index" | 
| Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 91 | ifup=`$RUNQEMU_IFUP $TUID $GID $STAGING_BINDIR_NATIVE 2>&1` | 
| Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 92 | if [ $? -ne 0 ]; then | 
|  | 93 | echo "Error running tunctl: $ifup" | 
|  | 94 | exit 1 | 
|  | 95 | fi | 
|  | 96 | done | 
|  | 97 |  | 
| Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 98 | echo "Note: For systems running NetworkManager, it's recommended" | 
|  | 99 | echo "Note: that the tap devices be set as unmanaged in the" | 
|  | 100 | echo "Note: NetworkManager.conf file. Add the following lines to" | 
|  | 101 | echo "Note: /etc/NetworkManager/NetworkManager.conf" | 
|  | 102 | echo "[keyfile]" | 
|  | 103 | echo "unmanaged-devices=interface-name:tap*" | 
| Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 104 |  | 
| Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 105 | # The runqemu script will check for this file, and if it exists, | 
|  | 106 | # will use the existing bank of tap devices without creating | 
|  | 107 | # additional ones via sudo. | 
|  | 108 | touch /etc/runqemu-nosudo | 
|  | 109 | fi |