Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
# $NetBSD: t_ifconfig.sh,v 1.22 2021/08/17 22:00:33 andvar Exp $
#
# Copyright (c) 2015 The NetBSD Foundation, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
#    notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
#    notice, this list of conditions and the following disclaimer in the
#    documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#

RUMP_SERVER1=unix://./r1
RUMP_SERVER2=unix://./r2

RUMP_FLAGS=\
"-lrumpnet -lrumpnet_net -lrumpnet_netinet -lrumpnet_netinet6 -lrumpnet_shmif"
RUMP_FLAGS="${RUMP_FLAGS}"

TIMEOUT=3

anycast="[Aa][Nn][Yy][Cc][Aa][Ss][Tt]"
deprecated="[Dd][Ee][Pp][Rr][Ee][Cc][Aa][Tt][Ee][Dd]"

atf_test_case ifconfig_create_destroy cleanup
ifconfig_create_destroy_head()
{

	atf_set "descr" "tests of ifconfig create and destroy"
	atf_set "require.progs" "rump_server"
}

ifconfig_create_destroy_body()
{
	atf_check -s exit:0 rump_server ${RUMP_FLAGS} ${RUMP_SERVER1}

	export RUMP_SERVER=${RUMP_SERVER1}

	# Create and destroy (no address)
	atf_check -s exit:0 rump.ifconfig shmif0 create
	atf_check -s exit:0 rump.ifconfig shmif0 destroy

	# Create and destroy (with an IPv4 address)
	atf_check -s exit:0 rump.ifconfig shmif0 create
	atf_check -s exit:0 rump.ifconfig shmif0 linkstr shmbus
	atf_check -s exit:0 rump.ifconfig shmif0 192.168.0.1/24
	atf_check -s exit:0 rump.ifconfig shmif0 up
	atf_check -s exit:0 rump.ifconfig shmif0 destroy

	# Create and destroy (with an IPv6 address)
	atf_check -s exit:0 rump.ifconfig shmif0 create
	atf_check -s exit:0 rump.ifconfig shmif0 linkstr shmbus
	atf_check -s exit:0 rump.ifconfig shmif0 inet6 fc00::1
	atf_check -s exit:0 rump.ifconfig shmif0 up
	atf_check -s exit:0 rump.ifconfig shmif0 destroy

	# Check if ifconfig (ioctl) works after a failure of ifconfig destroy
	atf_check -s exit:0 -o ignore rump.ifconfig lo0
	atf_check -s not-exit:0 -e ignore rump.ifconfig lo0 destroy
	atf_check -s exit:0 -o ignore rump.ifconfig lo0

	unset RUMP_SERVER
}

ifconfig_create_destroy_cleanup()
{

	RUMP_SERVER=${RUMP_SERVER1} rump.halt
}

atf_test_case ifconfig_options cleanup
ifconfig_options_head()
{

	atf_set "descr" "tests of ifconfig options"
	atf_set "require.progs" "rump_server"
}

ifconfig_options_body()
{

	export RUMP_SERVER=${RUMP_SERVER1}
	atf_check -s exit:0 rump_server $RUMP_FLAGS $RUMP_SERVER1

	atf_check -s exit:0 -o ignore rump.ifconfig shmif0 create
	atf_check -s exit:0 -o ignore rump.ifconfig shmif0 linkstr bus1
	atf_check -s exit:0 -o ignore rump.ifconfig shmif0 inet 10.0.0.1/24
	atf_check -s exit:0 -o ignore rump.ifconfig shmif0 inet6 fc00::1/64
	atf_check -s exit:0 -o ignore rump.ifconfig shmif0 up
	atf_check -s exit:0 -o ignore rump.ifconfig -w 10
	$DEBUG && rump.ifconfig shmif0

	# ifconfig [-N] interface address_family
	#   -N resolves hostnames
	atf_check -s exit:0 -o match:'inet 127.0.0.1' rump.ifconfig lo0 inet
	atf_check -s exit:0 -o match:'inet localhost' rump.ifconfig -N lo0 inet
	atf_check -s exit:0 -o match:'inet6 ::1' rump.ifconfig lo0 inet6
	atf_check -s exit:0 -o match:'inet6 localhost' rump.ifconfig -N lo0 inet6
	atf_check -s not-exit:0 -e match:'not supported' rump.ifconfig lo0 atalk
	atf_check -s not-exit:0 -e match:'not supported' rump.ifconfig -N lo0 atalk
	atf_check -s exit:0 -o ignore rump.ifconfig lo0 link
	atf_check -s exit:0 -o ignore rump.ifconfig -N lo0 link

	# ifconfig [-hLmNvz] interface
	#   -h -v shows statistics in human readable format
	atf_check -s exit:0 -o ignore rump.ifconfig -h -v lo0
	#   -L shows IPv6 lifetime
	atf_check -s exit:0 -o ignore rump.ifconfig shmif0 inet6 fc00::2 \
	    pltime 100
	$DEBUG && rump.ifconfig -L shmif0
	atf_check -s exit:0 -o match:'pltime' rump.ifconfig -L shmif0
	atf_check -s exit:0 -o match:'vltime' rump.ifconfig -L shmif0
	#   -m shows all of the supported media (not supported in shmif)
	$DEBUG && rump.ifconfig -m shmif0
	atf_check -s exit:0 -o ignore rump.ifconfig -m shmif0
	atf_check -s exit:0 -o match:'localhost' rump.ifconfig -N lo0
	atf_check -s exit:0 -o match:'0 packets' rump.ifconfig -v lo0
	atf_check -s exit:0 -o ignore rump.ping -c 1 -w $TIMEOUT localhost
	#   -z clears and shows statistics at that point
	atf_check -s exit:0 -o match:'2 packets' rump.ifconfig -z lo0
	atf_check -s exit:0 -o match:'0 packets' rump.ifconfig -v lo0

	# ifconfig -a [-bdhLNmsuvz]
	#   -a shows all interfaces in the system
	$DEBUG && rump.ifconfig -a
	atf_check -s exit:0 -o match:'shmif0' -o match:'lo0' rump.ifconfig -a
	#   -a -b shows only broadcast interfaces
	atf_check -s exit:0 -o match:'shmif0' -o not-match:'lo0' rump.ifconfig -a -b
	#   -a -d shows only down interfaces
	atf_check -s exit:0 -o ignore rump.ifconfig shmif0 down
	atf_check -s exit:0 -o match:'shmif0' rump.ifconfig -a -d
	atf_check -s exit:0 -o ignore rump.ifconfig shmif0 up
	atf_check -s exit:0 -o not-match:'shmif0' rump.ifconfig -a -d
	atf_check -s exit:0 -o match:'pltime' rump.ifconfig -a -L
	atf_check -s exit:0 -o match:'vltime' rump.ifconfig -a -L
	atf_check -s exit:0 -o match:'localhost' rump.ifconfig -a -N
	atf_check -s exit:0 -o ignore rump.ifconfig -a -m
	#   -a -s shows only interfaces connected to a network
	#   (shmif is always connected)
	$DEBUG && rump.ifconfig -a -s
	atf_check -s exit:0 -o ignore rump.ifconfig -a -s
	#   -a -u shows only up interfaces
	atf_check -s exit:0 -o match:'shmif0' rump.ifconfig -a -u
	atf_check -s exit:0 -o ignore rump.ifconfig shmif0 down
	atf_check -s exit:0 -o not-match:'shmif0' rump.ifconfig -a -u
	atf_check -s exit:0 -o ignore rump.ifconfig shmif0 up
	atf_check -s exit:0 -o match:'0 packets' rump.ifconfig -a -v
	atf_check -s exit:0 -o ignore rump.ping -c 1 -w $TIMEOUT localhost
	atf_check -s exit:0 -o ignore rump.ifconfig shmif0 down
	atf_check -s exit:0 -o match:'2 packets' rump.ifconfig -a -z
	atf_check -s exit:0 -o not-match:'2 packets' rump.ifconfig -a -v
	atf_check -s exit:0 -o match:'0 packets' rump.ifconfig -a -v
	atf_check -s exit:0 -o ignore rump.ifconfig shmif0 up

	# ifconfig -l [-bdsu]
	#   -l shows only interface names
	atf_check -s exit:0 -o match:'lo0' rump.ifconfig -l
	atf_check -s exit:0 -o match:'shmif0' rump.ifconfig -l
	atf_check -s exit:0 -o match:'shmif0' rump.ifconfig -l -b
	atf_check -s exit:0 -o not-match:'lo0' rump.ifconfig -l -b
	atf_check -s exit:0 -o ignore rump.ifconfig -l -d
	atf_check -s exit:0 -o match:'lo0' rump.ifconfig -l -s
	atf_check -s exit:0 -o match:'shmif0' rump.ifconfig -l -s
	atf_check -s exit:0 -o match:'lo0' rump.ifconfig -l -u
	atf_check -s exit:0 -o match:'shmif0' rump.ifconfig -l -u

	# ifconfig -s interface
	#   -s interface exists with 0 / 1 if connected / disconnected
	atf_check -s exit:0 -o empty rump.ifconfig -s lo0
	atf_check -s exit:0 -o empty rump.ifconfig -s shmif0

	# ifconfig -C
	#   -C shows all of the interface cloners available on the system
	atf_check -s exit:0 -o match:'shmif carp lo' rump.ifconfig -C

	unset RUMP_SERVER
}

ifconfig_options_cleanup()
{

	env RUMP_SERVER=${RUMP_SERVER1} rump.halt
}


atf_test_case ifconfig_parameters cleanup
ifconfig_parameters_head()
{
	atf_set "descr" "tests of interface parameters"
	atf_set "require.progs" "rump_server"
}

ifconfig_parameters_body()
{
	local interval=

	atf_check -s exit:0 rump_server ${RUMP_FLAGS} ${RUMP_SERVER1}
	atf_check -s exit:0 rump_server ${RUMP_FLAGS} ${RUMP_SERVER2}

	export RUMP_SERVER=${RUMP_SERVER1}
	atf_check -s exit:0 rump.ifconfig shmif0 create
	atf_check -s exit:0 rump.ifconfig shmif0 linkstr shmbus
	atf_check -s exit:0 rump.ifconfig shmif0 192.168.0.1/24
	atf_check -s exit:0 rump.ifconfig shmif0 up
	unset RUMP_SERVER

	export RUMP_SERVER=${RUMP_SERVER2}
	atf_check -s exit:0 rump.ifconfig shmif0 create
	atf_check -s exit:0 rump.ifconfig shmif0 linkstr shmbus
	atf_check -s exit:0 rump.ifconfig shmif0 192.168.0.2/24
	atf_check -s exit:0 rump.ifconfig shmif0 inet 192.168.0.3/24 alias
	atf_check -s exit:0 rump.ifconfig shmif0 up
	unset RUMP_SERVER

	export RUMP_SERVER=${RUMP_SERVER1}

	# active
	atf_check -s exit:0 rump.ifconfig shmif0 link b2:a0:75:00:00:01 active
	atf_check -s exit:0 -o match:'address:.b2:a0:75:00:00:01' \
	    rump.ifconfig shmif0
	# down, up
	atf_check -s exit:0 rump.ifconfig shmif0 down
	atf_check -s not-exit:0 -o ignore -e ignore rump.ping -c 1 \
	    -w $TIMEOUT -n 192.168.0.2
	atf_check -s exit:0 rump.ifconfig shmif0 up
	atf_check -s exit:0 rump.ifconfig -w 10
	atf_check -s exit:0 -o ignore rump.ping -c 1 -w $TIMEOUT -n 192.168.0.2

	# alias
	atf_check -s exit:0 rump.ifconfig shmif0 inet 192.168.1.1/24 alias
	atf_check -s exit:0 -o match:'192.168.1.1/24' rump.ifconfig shmif0
	atf_check -s exit:0 rump.ifconfig shmif0 inet 192.168.1.1/24 -alias
	atf_check -s exit:0 -o not-match:'192.168.1.1/24' rump.ifconfig shmif0
	atf_check -s exit:0 rump.ifconfig shmif0 inet6 fc00::1
	atf_check -s exit:0 rump.ifconfig shmif0 inet6 fc00::2
	atf_check -s exit:0 -o match:'fc00::1' rump.ifconfig shmif0 inet6
	atf_check -s exit:0 -o match:'fc00::2' rump.ifconfig shmif0 inet6

	# delete
	atf_check -s exit:0 rump.ifconfig shmif0 inet 192.168.1.1 alias
	atf_check -s exit:0 rump.ifconfig shmif0 inet 192.168.1.1 delete
	atf_check -s exit:0 -o not-match:'192.168.1.1' rump.ifconfig shmif0 inet
	atf_check -s exit:0 rump.ifconfig shmif0 inet 192.168.0.1 delete
	atf_check -s exit:0 -o not-match:'192.168.0.1' rump.ifconfig shmif0 inet
	atf_check -s exit:0 rump.ifconfig shmif0 inet6 fc00::1 delete
	atf_check -s exit:0 rump.ifconfig shmif0 inet6 fc00::2 delete
	atf_check -s exit:0 -o not-match:'fc00::1' rump.ifconfig shmif0 inet6
	atf_check -s exit:0 -o not-match:'fc00::2' rump.ifconfig shmif0 inet6
	# can delete inactive link
	atf_check -s exit:0 rump.ifconfig shmif0 link b2:a0:75:00:00:02
	atf_check -s exit:0 rump.ifconfig shmif0 link b2:a0:75:00:00:02 delete
	# cannot delete active link
	atf_check -s not-exit:0 -e match:'SIOCDLIFADDR: Device busy' \
	    rump.ifconfig shmif0 link b2:a0:75:00:00:01 delete

	atf_check -s exit:0 rump.ifconfig shmif0 inet 192.168.0.1/24

	# arp
	atf_check -s exit:0 rump.ifconfig shmif0 -arp
	atf_check -s not-exit:0 -o ignore -e ignore \
	    rump.ping -c 1 -w $TIMEOUT -n 192.168.0.3
	atf_check -s exit:0 -o not-match:'192.168.0.3' rump.arp -an
	# The entry shouldn't appear in the routing table anymore
	atf_check -s exit:0 -o not-match:'192.168.0.3' rump.netstat -nr

	# netmask
	atf_check -s exit:0 rump.ifconfig shmif0 inet 172.16.0.1 netmask 255.255.255.0 alias
	atf_check -s exit:0 -o match:'172.16.0/24' rump.netstat -rn -f inet
	atf_check -s exit:0 rump.ifconfig shmif0 inet 172.16.0.1 delete

	# broadcast (does it not work?)
	atf_check -s exit:0 rump.ifconfig shmif0 inet 172.16.0.1 \
	    broadcast 255.255.255.255 alias
	atf_check -s exit:0 -o match:'broadcast 255.255.255.255' \
	    rump.ifconfig shmif0 inet

	# metric (external only)
	atf_check -s exit:0 rump.ifconfig shmif0 metric 10
	atf_check -s exit:0 rump.ifconfig shmif0 metric 0

	# prefixlen
	atf_check -s exit:0 rump.ifconfig shmif0 inet6 fc00::1 prefixlen 70
	atf_check -s exit:0 -o match:'fc00::/70' rump.netstat -rn -f inet6

	# anycast
	atf_check -s exit:0 rump.ifconfig shmif0 inet6 fc00::2 anycast
	atf_check -s exit:0 -o match:"fc00::2.+$anycast" rump.ifconfig shmif0 inet6

	# deprecated
	atf_check -s exit:0 rump.ifconfig shmif0 inet6 fc00::3 deprecated
	# Not deprecated immediately. Need to wait nd6_timer that does it is scheduled.
	interval=$(sysctl -n net.inet6.icmp6.nd6_prune)
	atf_check -s exit:0 sleep $((interval + 1))
	atf_check -s exit:0 -o match:"fc00::3.+$deprecated" rump.ifconfig shmif0 inet6
	atf_check -s exit:0 rump.ifconfig shmif0 inet6 fc00::3 -deprecated
	atf_check -s exit:0 -o not-match:"fc00::3.+$deprecated" rump.ifconfig shmif0 inet6

	# pltime
	atf_check -s exit:0 rump.ifconfig shmif0 inet6 fc00::3 pltime 3
	atf_check -s exit:0 -o not-match:"fc00::3.+$deprecated" rump.ifconfig shmif0 inet6
	atf_check -s exit:0 sleep 5
	atf_check -s exit:0 -o match:"fc00::3.+$deprecated" rump.ifconfig shmif0 inet6

	# eui64
	atf_check -s exit:0 rump.ifconfig shmif0 inet6 fc00:1::0 eui64
	atf_check -s exit:0 -o match:'fc00:1::' rump.ifconfig shmif0 inet6

	unset RUMP_SERVER
}

ifconfig_parameters_cleanup()
{
	env RUMP_SERVER=${RUMP_SERVER1} rump.halt
	env RUMP_SERVER=${RUMP_SERVER2} rump.halt
}

ifconfig_up_down_common()
{
	local family=$1
	local ip=$2

	if [ $family = inet6 ]; then
		rump_server_start $RUMP_SERVER1 netinet6
	else
		rump_server_start $RUMP_SERVER1
	fi
	rump_server_add_iface $RUMP_SERVER1 shmif0 bus1

	export RUMP_SERVER=$RUMP_SERVER1
	rump.ifconfig shmif0

	# Set the same number of trials to make the following test
	# work for both IPv4 and IPv6
	if [ $family = inet6 ]; then
		atf_check -s exit:0 -o ignore \
		    rump.sysctl -w net.inet6.ip6.dad_count=5
	else
		atf_check -s exit:0 -o ignore \
		    rump.sysctl -w net.inet.ip.dad_count=5
	fi

	#
	# Assign an address and up the interface at once
	#
	atf_check -s exit:0 rump.ifconfig shmif0 $family $ip/24 up
	# UP
	atf_check -s exit:0 \
	    -o match:'shmif0.*UP.*RUNNING' rump.ifconfig shmif0
	# The address is TENTATIVE
	atf_check -s exit:0 \
	    -o match:"$ip.*TENTATIVE" rump.ifconfig shmif0
	# Waiting for DAD completion
	atf_check -s exit:0 rump.ifconfig -w 10
	# The address left TENTATIVE
	atf_check -s exit:0 \
	    -o not-match:"$ip.*TENTATIVE" rump.ifconfig shmif0

	#
	# ifconfig down
	#
	atf_check -s exit:0 rump.ifconfig shmif0 down
	atf_check -s exit:0 \
	    -o not-match:'shmif0.*UP.*RUNNING' rump.ifconfig shmif0
	# The address becomes DETATCHED
	atf_check -s exit:0 \
	    -o match:"$ip.*DETACHED" rump.ifconfig shmif0
	# ifconfig up
	atf_check -s exit:0 rump.ifconfig shmif0 up
	# The address becomes TENTATIVE
	atf_check -s exit:0 \
	    -o match:"$ip.*TENTATIVE" rump.ifconfig shmif0
	# Waiting for DAD completion
	atf_check -s exit:0 rump.ifconfig -w 10
	# The address left TENTATIVE
	atf_check -s exit:0 \
	    -o not-match:"$ip.*TENTATIVE" rump.ifconfig shmif0

	# Clean up
	atf_check -s exit:0 rump.ifconfig shmif0 $family $ip delete

	#
	# Assign an address
	#
	atf_check -s exit:0 rump.ifconfig shmif0 $family $ip/24
	# UP automatically
	atf_check -s exit:0 \
	    -o match:'shmif0.*UP.*RUNNING' rump.ifconfig shmif0
	# Need some delay
	sleep 1
	# The IP becomes TENTATIVE
	atf_check -s exit:0 \
	    -o match:"$ip.*TENTATIVE" rump.ifconfig shmif0
	# Waiting for DAD completion
	atf_check -s exit:0 rump.ifconfig -w 10
	# The address left TENTATIVE
	atf_check -s exit:0 \
	    -o not-match:"$ip.*TENTATIVE" rump.ifconfig shmif0

	rump_server_destroy_ifaces
}

atf_test_case ifconfig_up_down_ipv4 cleanup
ifconfig_up_down_ipv4_head()
{
	atf_set "descr" "tests of interface up/down (IPv4)"
	atf_set "require.progs" "rump_server"
}

ifconfig_up_down_ipv4_body()
{

	ifconfig_up_down_common inet 10.0.0.1
}

ifconfig_up_down_ipv4_cleanup()
{

	$DEBUG && dump
	cleanup
}

atf_test_case ifconfig_up_down_ipv6 cleanup
ifconfig_up_down_ipv6_head()
{
	atf_set "descr" "tests of interface up/down (IPv6)"
	atf_set "require.progs" "rump_server"
}

ifconfig_up_down_ipv6_body()
{

	ifconfig_up_down_common inet6 fc00::1
}

ifconfig_up_down_ipv6_cleanup()
{

	$DEBUG && dump
	cleanup
}

atf_test_case ifconfig_number cleanup
ifconfig_number_head()
{
	atf_set "descr" "tests of passing a number (if_index) to ifconfig"
	atf_set "require.progs" "rump_server"
}

ifconfig_number_body()
{

	rump_server_start $RUMP_SERVER1
	rump_server_add_iface $RUMP_SERVER1 shmif0 bus1

	export RUMP_SERVER=$RUMP_SERVER1
	atf_check -s not-exit:0 -e match:'Device not configured' rump.ifconfig 0
	atf_check -s exit:0 rump.ifconfig 1 # lo0
	atf_check -s exit:0 rump.ifconfig 2 # shmif0
	atf_check -s not-exit:0 -e match:'Device not configured' rump.ifconfig 3

	rump_server_destroy_ifaces
}

ifconfig_number_cleanup()
{

	$DEBUG && dump
	cleanup
}

atf_test_case ifconfig_description cleanup
ifconfig_description_head()
{
	atf_set "descr" "tests of setting and unsetting interface description"
	atf_set "require.progs" "rump_server"
}

ifconfig_description_body()
{

	rump_server_start $RUMP_SERVER1

	export RUMP_SERVER=$RUMP_SERVER1
	for descr in description descr; do
		atf_check -s exit:0 rump.ifconfig lo0 $descr DESCRIPTION-TEST
		atf_check -s exit:0 -o match:"DESCRIPTION-TEST" rump.ifconfig lo0
		atf_check -s exit:0 rump.ifconfig lo0 $descr DESCRIPTION-TEST-MODIFIED
		atf_check -s exit:0 -o match:"DESCRIPTION-TEST-MODIFIED" rump.ifconfig lo0
		atf_check -s exit:0 rump.ifconfig lo0 -$descr
		atf_check -s exit:0 -o not-match:'DESCRIPTION-TEST-MODIFIED' rump.ifconfig lo0

		atf_check -s exit:0 rump.ifconfig lo0 $descr `printf "%063d" 0`	
		atf_check -s not-exit:0 -e match:"description too long" rump.ifconfig lo0 $descr `printf "%064d" 0`
		atf_check -s exit:0 rump.ifconfig lo0 $descr ""
	done
}

ifconfig_description_cleanup()
{

	$DEBUG && dump
	cleanup
}

atf_init_test_cases()
{

	atf_add_test_case ifconfig_create_destroy
	atf_add_test_case ifconfig_options
	atf_add_test_case ifconfig_parameters
	atf_add_test_case ifconfig_up_down_ipv4
	atf_add_test_case ifconfig_up_down_ipv6
	atf_add_test_case ifconfig_number
	atf_add_test_case ifconfig_description
}