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
|
/* Private declarations for fileserver library
Copyright (C) 1994,95,96,97,98,99,2001 Free Software Foundation, Inc.
This program 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.
This program 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 this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#ifndef DISKFS_PRIV_H
#define DISKFS_PRIV_H
#include <mach.h>
#include <hurd.h>
#include <sys/mman.h>
#include <hurd/ports.h>
#include <hurd/fshelp.h>
#include <hurd/iohelp.h>
#include <hurd/port.h>
#include <assert.h>
#include "diskfs.h"
/* These inhibit setuid or exec. */
extern int _diskfs_nosuid, _diskfs_noexec;
/* This relaxes the requirement to set `st_atime'. */
extern int _diskfs_noatime;
/* This is the -C argument value. */
extern char *_diskfs_chroot_directory;
/* If --boot-command is given, this points to the program and args. */
extern char **_diskfs_boot_command;
/* Port cell holding a cached port to the exec server. */
extern struct hurd_port _diskfs_exec_portcell;
volatile struct mapped_time_value *_diskfs_mtime;
extern const struct argp_option diskfs_common_options[];
/* Option keys for long-only options in diskfs_common_options. */
#define OPT_SUID_OK 600 /* --suid-ok */
#define OPT_EXEC_OK 601 /* --exec-ok */
#define OPT_ATIME 602 /* --atime */
/* Common value for diskfs_common_options and diskfs_default_sync_interval. */
#define DEFAULT_SYNC_INTERVAL 5
#define DEFAULT_SYNC_INTERVAL_STRING STRINGIFY(DEFAULT_SYNC_INTERVAL)
#define STRINGIFY(x) STRINGIFY_1(x)
#define STRINGIFY_1(x) #x
/* Diskfs thinks the disk is dirty if this is set. */
extern int _diskfs_diskdirty;
/* Needed for MiG. */
typedef struct protid *protid_t;
/* Actually read or write a file. The file size must already permit
the requested access. NP is the file to read/write. DATA is a buffer
to write from or fill on read. OFFSET is the absolute address (-1
not permitted here); AMT is the size of the read/write to perform;
DIR is set for writing and clear for reading. The inode must
be locked. If NOTIME is set, then don't update the access or
modify times on the file. */
error_t _diskfs_rdwr_internal (struct node *np, char *data, off_t offset,
size_t *amt, int dir, int notime);
/* Called when we have a real user environment (complete with proc
and auth ports). */
void _diskfs_init_completed (void);
/* Called in a bootstrap filesystem only, to get the privileged ports. */
void _diskfs_boot_privports (void);
/* Clean routine for control port. */
void _diskfs_control_clean (void *);
/* Number of outstanding PT_CTL ports. */
extern int _diskfs_ncontrol_ports;
/* Lock for _diskfs_ncontrol_ports. */
extern spin_lock_t _diskfs_control_lock;
/* Callback routines for active translator startup */
extern fshelp_fetch_root_callback1_t _diskfs_translator_callback1;
extern fshelp_fetch_root_callback2_t _diskfs_translator_callback2;
/* This macro locks the node associated with PROTID, and then
evaluates the expression OPERATION; then it syncs the inode
(without waiting) and unlocks everything, and then returns
the value `err' (which can be set by OPERATION if desired). */
#define CHANGE_NODE_FIELD(PROTID, OPERATION) \
({ \
error_t err = 0; \
struct node *np; \
\
if (!(PROTID)) \
return EOPNOTSUPP; \
\
if (diskfs_check_readonly ()) \
return EROFS; \
\
np = (PROTID)->po->np; \
\
mutex_lock (&np->lock); \
(OPERATION); \
if (diskfs_synchronous) \
diskfs_node_update (np, 1); \
mutex_unlock (&np->lock); \
return err; \
})
/* Bits the user is permitted to set with io_*_openmodes */
#define HONORED_STATE_MODES (O_APPEND|O_ASYNC|O_FSYNC|O_NONBLOCK|O_NOATIME)
/* Bits that are turned off after open */
#define OPENONLY_STATE_MODES \
(O_CREAT|O_EXCL|O_NOLINK|O_NOTRANS|O_NONBLOCK|O_EXLOCK|O_SHLOCK)
#endif
|