1 /* hairy bits of Hurd file name lookup
2 Copyright (C) 1992-2013 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
20 #include <hurd/lookup.h>
21 #include <hurd/term.h>
22 #include <hurd/paths.h>
27 #include <eloop-threshold.h>
29 /* Translate the error from dir_lookup into the error the user sees. */
31 lookup_error (error_t error
)
37 /* These indicate that the server does not understand dir_lookup
38 at all. If it were a directory, it would, by definition. */
46 __hurd_file_name_lookup_retry (error_t (*use_init_port
)
47 (int which
, error_t (*operate
) (file_t
)),
48 file_t (*get_dtable_port
) (int fd
),
50 (file_t dir
, char *name
,
51 int flags
, mode_t mode
,
52 retry_type
*do_retry
, string_t retry_name
,
54 enum retry_type doretry
,
56 int flags
, mode_t mode
,
63 error_t
lookup_op (file_t startdir
)
65 while (file_name
[0] == '/')
68 return lookup_error ((*lookup
) (startdir
, file_name
, flags
, mode
,
69 &doretry
, retryname
, result
));
71 error_t
reauthenticate (file_t unauth
)
74 mach_port_t ref
= __mach_reply_port ();
75 error_t
reauth (auth_t auth
)
77 return __auth_user_authenticate (auth
, ref
,
78 MACH_MSG_TYPE_MAKE_SEND
,
81 err
= __io_reauthenticate (unauth
, ref
, MACH_MSG_TYPE_MAKE_SEND
);
83 err
= (*use_init_port
) (INIT_PORT_AUTH
, &reauth
);
84 __mach_port_destroy (__mach_task_self (), ref
);
85 __mach_port_deallocate (__mach_task_self (), unauth
);
90 lookup
= __dir_lookup
;
96 file_t startdir
= MACH_PORT_NULL
;
97 int dirport
= INIT_PORT_CWDIR
;
101 case FS_RETRY_REAUTH
:
102 if (err
= reauthenticate (*result
))
106 case FS_RETRY_NORMAL
:
107 if (nloops
++ >= __eloop_threshold ())
109 __mach_port_deallocate (__mach_task_self (), *result
);
113 /* An empty RETRYNAME indicates we have the final port. */
114 if (retryname
[0] == '\0' &&
115 /* If reauth'd, we must do one more retry on "" to give the new
116 translator a chance to make a new port for us. */
117 doretry
== FS_RETRY_NORMAL
)
119 if (flags
& O_NOFOLLOW
)
121 /* In Linux, O_NOFOLLOW means to reject symlinks. If we
122 did an O_NOLINK lookup above and io_stat here to check
123 for S_IFLNK, a translator like firmlink could easily
124 spoof this check by not showing S_IFLNK, but in fact
125 redirecting the lookup to some other name
126 (i.e. opening the very same holes a symlink would).
128 Instead we do an O_NOTRANS lookup above, and stat the
129 underlying node: if it has a translator set, and its
130 owner is not root (st_uid 0) then we reject it.
131 Since the motivation for this feature is security, and
132 that security presumes we trust the containing
133 directory, this check approximates the security of
134 refusing symlinks while accepting mount points.
135 Note that we actually permit something Linux doesn't:
136 we follow root-owned symlinks; if that is deemed
137 undesireable, we can add a final check for that
138 one exception to our general translator-based rule. */
140 err
= __io_stat (*result
, &st
);
142 && (st
.st_mode
& (S_IPTRANS
|S_IATRANS
)))
146 else if (st
.st_mode
& S_IPTRANS
)
150 size_t translen
= sizeof buf
;
151 err
= __file_get_translator (*result
,
154 && translen
> sizeof _HURD_SYMLINK
156 _HURD_SYMLINK
, sizeof _HURD_SYMLINK
))
162 /* We got a successful translation. Now apply any open-time
163 action flags we were passed. */
165 if (!err
&& (flags
& O_TRUNC
)) /* Asked to truncate the file. */
166 err
= __file_set_size (*result
, 0);
169 __mach_port_deallocate (__mach_task_self (), *result
);
174 file_name
= retryname
;
177 case FS_RETRY_MAGICAL
:
178 switch (retryname
[0])
181 dirport
= INIT_PORT_CRDIR
;
182 if (*result
!= MACH_PORT_NULL
)
183 __mach_port_deallocate (__mach_task_self (), *result
);
184 if (nloops
++ >= __eloop_threshold ())
186 file_name
= &retryname
[1];
190 if (retryname
[1] == 'd' && retryname
[2] == '/')
196 fd
= (int) __strtoul_internal (&retryname
[3], &end
, 10, 0);
197 if (end
== NULL
|| errno
|| /* Malformed number. */
198 /* Check for excess text after the number. A slash
199 is valid; it ends the component. Anything else
200 does not name a numeric file descriptor. */
201 (*end
!= '/' && *end
!= '\0'))
206 if (! get_dtable_port
)
210 *result
= (*get_dtable_port
) (fd
);
211 if (*result
== MACH_PORT_NULL
)
213 /* If the name was a proper number, but the file
214 descriptor does not exist, we return EBADF instead
227 /* Do a normal retry on the remaining components. */
229 file_name
= end
+ 1; /* Skip the slash. */
238 if (retryname
[1] == 'a' && retryname
[2] == 'c' &&
239 retryname
[3] == 'h' && retryname
[4] == 't' &&
240 retryname
[5] == 'y' && retryname
[6] == 'p' &&
244 struct host_basic_info hostinfo
;
245 mach_msg_type_number_t hostinfocnt
= HOST_BASIC_INFO_COUNT
;
247 /* XXX want client's host */
248 if (err
= __host_info (__mach_host_self (), HOST_BASIC_INFO
,
249 (integer_t
*) &hostinfo
,
252 if (hostinfocnt
!= HOST_BASIC_INFO_COUNT
)
254 p
= _itoa (hostinfo
.cpu_subtype
, &retryname
[8], 10, 0);
256 p
= _itoa (hostinfo
.cpu_type
, &retryname
[8], 10, 0);
258 abort (); /* XXX write this right if this ever happens */
260 strcpy (retryname
, p
);
268 if (retryname
[1] == 't' && retryname
[2] == 'y')
269 switch (retryname
[3])
271 error_t
opentty (file_t
*result
)
274 error_t
ctty_open (file_t port
)
276 if (port
== MACH_PORT_NULL
)
277 return ENXIO
; /* No controlling terminal. */
278 return __termctty_open_terminal (port
,
282 err
= (*use_init_port
) (INIT_PORT_CTTYID
, &ctty_open
);
284 err
= reauthenticate (*result
);
289 return opentty (result
);
291 if (err
= opentty (&startdir
))
293 strcpy (retryname
, &retryname
[4]);
312 if (startdir
!= MACH_PORT_NULL
)
314 err
= lookup_op (startdir
);
315 __mach_port_deallocate (__mach_task_self (), startdir
);
316 startdir
= MACH_PORT_NULL
;
319 err
= (*use_init_port
) (dirport
, &lookup_op
);
324 weak_alias (__hurd_file_name_lookup_retry
, hurd_file_name_lookup_retry
)