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
|
/*
Copyright (C) 2017 Free Software Foundation, Inc.
Written by Miles Bader <miles@gnu.org>
This file is part of the GNU Hurd.
The GNU Hurd is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2, or (at
your option) any later version.
The GNU Hurd is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with the GNU Hurd. If not, see <http://www.gnu.org/licenses/>.
*/
/* Fsysopts and command line option parsing */
#ifndef OPTIONS_H
#define OPTIONS_H
#include <stdint.h>
#include <sys/types.h>
#include <argp.h>
#include "pcifs.h"
#define STR2(x) #x
#define STR(x) STR2(x)
/* Used to hold data during argument parsing. */
struct parse_hook
{
/* A list of specified permission sets and their corresponding options. */
struct pcifs_perm *permsets;
size_t num_permsets;
/* Permission set to which options apply. */
struct pcifs_perm *curset;
/* Node cache length */
size_t ncache_len;
/* Mach ports */
mach_port_t disk_server_task;
mach_port_t host_priv_port;
mach_port_t dev_master_port;
};
/* Lwip translator options. Used for both startup and runtime. */
static const struct argp_option options[] = {
{0, 0, 0, 0, "Permission scope:", 1},
{"class", 'C', "CLASS", 0, "Device class in hexadecimal"},
{"subclass", 'c', "SUBCLASS", 0,
"Device subclass in hexadecimal, requires -C"},
{"domain", 'd', "DOMAIN", 0, "Device domain in hexadecimal"},
{"bus", 'b', "BUS", 0, "Device bus in hexadecimal"},
{"slot", 's', "SLOT", 0, "Device slot in hexadecimal, requires -b"},
{"func", 'f', "FUNC", 0, "Device func in hexadecimal, requires -s"},
{"device", 'D', "DEVICE", 0,
"Device address in format [<domain>:]<bus>:<slot>.<func>"},
{0, 0, 0, 0, "These apply to a given permission scope:", 2},
{"uid", 'U', "UID", 0, "User ID to give permissions to"},
{"gid", 'G', "GID", 0, "Group ID to give permissions to"},
{0, 0, 0, 0, "Global configuration options:", 3},
{"ncache", 'n', "LENGTH", 0,
"Node cache length. " STR (NODE_CACHE_MAX) " by default"},
{"disk-server-task", 'T', "TASK", 0, "Task for bootstrapping disk server"},
{"host-priv-port", 'H', "PORT", 0, "Port for bootstrapping host"},
{"device-master-port", 'P', "PORT", 0, "Port for bootstrapping device master"},
{0}
};
static const char doc[] = "More than one permission scope may be specified. \
-G and -U options create a new permission scope if the current one already \
has a value for that option. If one device is covered by more than one \
permission scope, only the first permission is applied.";
#endif // OPTIONS_H
|