blob: c4839ba3791f9dd160842a96312be588ba0dd6bf (
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
|
/*
Copyright (C) 1994 Free Software Foundation
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. */
#include "priv.h"
#include <hurd/ioserver.h>
/* Update our copy of the relevant fields from a shared page. Callers
must have the share lock on the shared page as well as the inode
toplock. This is called by the conch management facilities of
libioserver as well as by us. */
void
ioserver_fetch_shared_data (void *arg)
{
struct protid *cred = arg;
/* Don't allow the user to grow the file past the alloc size. */
if (cred->mapped->file_size > cred->po->np->allocsize)
cred->mapped->file_size = cred->po->np->allocsize;
/* Don't allow the user to truncate the file this way. */
if (cred->mapped->file_size < cred->po->np->dn_stat.st_size)
cred->mapped->file_size = cred->po->np->dn_stat.st_size;
else if (cred->po->np->dn_stat.st_size != cred->mapped->file_size)
{
/* The user can validly set the size, but block the attempt
if we are readonly. */
if (readonly)
cred->mapped->file_size = cred->po->np->dn_stat.st_size;
else
{
cred->po->np->dn_stat.st_size = cred->mapped->file_size;
cred->po->np->dn_set_ctime = 1;
}
}
cred->po->filepointer = cred->mapped->xx_file_pointer;
if (!readonly)
{
if (cred->mapped->written)
cred->po->ip->dn_set_mtime = 1;
if (cred->mapped->accessed)
cred->po->ip->dn_set_atime = 1;
}
cred->mapped->written = 0;
cred->mapped->accessed = 0;
}
|