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
130
131
|
/* Implement ifsock inteface
Copyright (C) 1994, 1996 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 "ifsock_S.h"
#include <hurd/paths.h>
#include <sys/socket.h>
#include <stdio.h>
#include <hurd/socket.h>
static pthread_spinlock_t pflocalserverlock = PTHREAD_SPINLOCK_INITIALIZER;
static mach_port_t pflocalserver = MACH_PORT_NULL;
kern_return_t
diskfs_S_ifsock_getsockaddr (struct protid *cred,
mach_port_t *address)
{
error_t err;
struct node *np;
unsigned restart_tries = 0;
/* Make sure this is a socket */
if (!cred)
return EOPNOTSUPP;
np = cred->po->np;
retry:
pthread_mutex_lock (&np->lock);
if ((np->dn_stat.st_mode & S_IFMT) != S_IFSOCK)
{
pthread_mutex_unlock (&np->lock);
return EOPNOTSUPP;
}
err = fshelp_access (&np->dn_stat, S_IWRITE, cred->user);
if (err)
{
pthread_mutex_unlock (&np->lock);
return err;
}
if (np->sockaddr == MACH_PORT_NULL)
{
mach_port_t server;
mach_port_t sockaddr;
mach_port_t old;
pthread_mutex_unlock (&np->lock);
/* Fetch a port to the PF_LOCAL server, caching it. */
pthread_spin_lock (&pflocalserverlock);
if (pflocalserver == MACH_PORT_NULL)
{
/* Find out who the PF_LOCAL server is. */
char buf[100];
pthread_spin_unlock (&pflocalserverlock);
/* Look it up */
sprintf (buf, "%s/%d", _SERVERS_SOCKET, PF_LOCAL);
server = file_name_lookup (buf, 0, 0);
if (server == MACH_PORT_NULL)
return EIEIO;
/* Set it unless someone is already here */
pthread_spin_lock (&pflocalserverlock);
if (pflocalserver != MACH_PORT_NULL)
mach_port_deallocate (mach_task_self (), server);
else
pflocalserver = server;
pthread_spin_unlock (&pflocalserverlock);
goto retry;
}
server = pflocalserver;
pthread_spin_unlock (&pflocalserverlock);
/* Create an address for the node */
err = socket_fabricate_address (server, AF_LOCAL, &sockaddr);
if ((err == MACH_SEND_INVALID_DEST || err == MIG_SERVER_DIED)
&& restart_tries++ == 0)
/* The PF_LOCAL server died; try to restart it. */
{
pthread_spin_lock (&pflocalserverlock);
if (pflocalserver == server)
pflocalserver = MACH_PORT_NULL;
pthread_spin_unlock (&pflocalserverlock);
goto retry;
}
if (err)
return EIEIO;
pthread_mutex_lock (&np->lock);
if (np->sockaddr != MACH_PORT_NULL)
/* Someone beat us */
mach_port_deallocate (mach_task_self (), sockaddr);
else
{
/* The receive right of the sockaddr holds a reference;
when we get a dead name on that right we drop our
reference. */
mach_port_request_notification (mach_task_self (), sockaddr,
MACH_NOTIFY_DEAD_NAME, 1,
cred->pi.port_right,
MACH_MSG_TYPE_MAKE_SEND_ONCE,
&old);
if (old != MACH_PORT_NULL)
mach_port_deallocate (mach_task_self (), old);
np->sockaddr = sockaddr;
diskfs_nref_light (np);
}
}
*address = np->sockaddr;
pthread_mutex_unlock (&np->lock);
return 0;
}
|