~ubuntu-branches/ubuntu/wily/apparmor/wily

« back to all changes in this revision

Viewing changes to tests/regression/subdomain/access.c

  • Committer: Bazaar Package Importer
  • Author(s): Kees Cook
  • Date: 2011-04-27 10:38:07 UTC
  • mfrom: (5.1.118 natty)
  • Revision ID: james.westby@ubuntu.com-20110427103807-ym3rhwys6o84ith0
Tags: 2.6.1-2
debian/copyright: clarify for some full organization names.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: access.c 61 2006-05-19 18:32:14Z steve-beattie $ */
2
 
 
3
 
/*
4
 
 *      Copyright (C) 2002-2005 Novell/SUSE
5
 
 *
6
 
 *      This program is free software; you can redistribute it and/or
7
 
 *      modify it under the terms of the GNU General Public License as
8
 
 *      published by the Free Software Foundation, version 2 of the
9
 
 *      License.
10
 
 */
11
 
 
12
 
#include <stdio.h>
13
 
#include <unistd.h>
14
 
#include <errno.h>
15
 
#include <sys/types.h>
16
 
#include <sys/stat.h>
17
 
#include <fcntl.h>
18
 
#include <string.h>
19
 
 
20
 
int main(int argc, char *argv[])
21
 
{
22
 
int rc, mode;
23
 
char *path, *perm, *tmp;
24
 
 
25
 
        if (argc != 3){
26
 
                fprintf(stderr, "usage: %s path mode\n",
27
 
                        argv[0]);
28
 
                return 1;
29
 
        }
30
 
 
31
 
        path=argv[1];
32
 
        perm=argv[2];
33
 
 
34
 
        tmp = perm;
35
 
        mode = 0;
36
 
        while (*tmp){
37
 
                switch (*tmp){
38
 
                        case 'r':  mode |= R_OK; break;
39
 
                        case 'w':  mode |= W_OK; break;
40
 
                        case 'x':  mode |= X_OK; break;
41
 
                        default:   fprintf(stderr, "Invalid perm '%c'\n",
42
 
                                        *tmp);
43
 
                                   return 1;
44
 
                }
45
 
                tmp++;
46
 
        }
47
 
        
48
 
 
49
 
        rc=access(path, mode);
50
 
        if (rc == -1){
51
 
                fprintf(stderr, "FAIL: access %s %s failed - %s\n",
52
 
                        path, perm, strerror(errno));
53
 
                return 1;
54
 
        }
55
 
 
56
 
        printf("PASS\n");
57
 
 
58
 
        return 0;
59
 
}