summaryrefslogtreecommitdiff
path: root/src/fault.c
blob: 6e079a19e8df3af80a1567e3e02b248a1b5b990e (plain)
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
// SPDX-License-Identifier: GPL-2.0
/*
 * Copyright (c) 2000-2003 Silicon Graphics, Inc.
 * All Rights Reserved.
 */

#include "global.h"

void expect_error(int r, int err)
{
    if (r<0) {
        if (errno == err) {
            printf("   --- got error %d as expected\n", err);   
        } else {
            perror("   !!! unexpected error");
        }
    } else {
        printf("   !!! success instead of error %d as expected\n", err);
    }
}

int
main(int argc, char **argv)
{
    int                 fsfd;
    
    if (argc != 2) {
        fprintf(stderr,"usage: %s <filesystem>\n",
                argv[0]);
        exit(0);
    }

    fsfd = open(argv[1], O_RDONLY);

    if (fsfd < 0) {
	perror("open");
	exit(1);
    }
    
    printf("--- xfsctl with bad output address\n");
#ifdef XFS_IOC_FSCOUNTS
    expect_error(xfsctl(argv[1], fsfd, XFS_IOC_FSCOUNTS, NULL), EFAULT);
#else
#ifdef XFS_FS_COUNTS
    expect_error(syssgi(SGI_XFS_FSOPERATIONS, fsfd, XFS_FS_COUNTS, NULL, NULL), EFAULT);
#else
bozo!
#endif
#endif

    printf("--- xfsctl with bad input address\n");
#ifdef XFS_IOC_SET_RESBLKS
    expect_error(xfsctl(argv[1], fsfd, XFS_IOC_SET_RESBLKS, NULL), EFAULT);
#else
#ifdef XFS_SET_RESBLKS
    expect_error(syssgi(SGI_XFS_FSOPERATIONS, fsfd, XFS_SET_RESBLKS, NULL, NULL), EFAULT);
#else
bozo!
#endif
#endif
    
    close(fsfd);
    
    return 0;
}