Linux Audio

Check our new training course

Loading...
v6.13.7
  1/* SPDX-License-Identifier: GPL-2.0 */
  2#include <linux/syscalls.h>
  3#include <linux/export.h>
  4#include <linux/uaccess.h>
  5#include <linux/fs_struct.h>
  6#include <linux/fs.h>
  7#include <linux/slab.h>
  8#include <linux/prefetch.h>
  9#include "mount.h"
 10#include "internal.h"
 11
 12struct prepend_buffer {
 13	char *buf;
 14	int len;
 15};
 16#define DECLARE_BUFFER(__name, __buf, __len) \
 17	struct prepend_buffer __name = {.buf = __buf + __len, .len = __len}
 18
 19static char *extract_string(struct prepend_buffer *p)
 20{
 21	if (likely(p->len >= 0))
 22		return p->buf;
 23	return ERR_PTR(-ENAMETOOLONG);
 24}
 25
 26static bool prepend_char(struct prepend_buffer *p, unsigned char c)
 27{
 28	if (likely(p->len > 0)) {
 29		p->len--;
 30		*--p->buf = c;
 31		return true;
 32	}
 33	p->len = -1;
 34	return false;
 35}
 36
 37/*
 38 * The source of the prepend data can be an optimistic load
 39 * of a dentry name and length. And because we don't hold any
 40 * locks, the length and the pointer to the name may not be
 41 * in sync if a concurrent rename happens, and the kernel
 42 * copy might fault as a result.
 43 *
 44 * The end result will correct itself when we check the
 45 * rename sequence count, but we need to be able to handle
 46 * the fault gracefully.
 47 */
 48static bool prepend_copy(void *dst, const void *src, int len)
 49{
 50	if (unlikely(copy_from_kernel_nofault(dst, src, len))) {
 51		memset(dst, 'x', len);
 52		return false;
 53	}
 54	return true;
 55}
 56
 57static bool prepend(struct prepend_buffer *p, const char *str, int namelen)
 58{
 59	// Already overflowed?
 60	if (p->len < 0)
 61		return false;
 62
 63	// Will overflow?
 64	if (p->len < namelen) {
 65		// Fill as much as possible from the end of the name
 66		str += namelen - p->len;
 67		p->buf -= p->len;
 68		prepend_copy(p->buf, str, p->len);
 69		p->len = -1;
 70		return false;
 71	}
 72
 73	// Fits fully
 74	p->len -= namelen;
 75	p->buf -= namelen;
 76	return prepend_copy(p->buf, str, namelen);
 77}
 78
 79/**
 80 * prepend_name - prepend a pathname in front of current buffer pointer
 81 * @p: prepend buffer which contains buffer pointer and allocated length
 82 * @name: name string and length qstr structure
 
 83 *
 84 * With RCU path tracing, it may race with d_move(). Use READ_ONCE() to
 85 * make sure that either the old or the new name pointer and length are
 86 * fetched. However, there may be mismatch between length and pointer.
 87 * But since the length cannot be trusted, we need to copy the name very
 88 * carefully when doing the prepend_copy(). It also prepends "/" at
 89 * the beginning of the name. The sequence number check at the caller will
 90 * retry it again when a d_move() does happen. So any garbage in the buffer
 91 * due to mismatched pointer and length will be discarded.
 92 *
 93 * Load acquire is needed to make sure that we see the new name data even
 94 * if we might get the length wrong.
 95 */
 96static bool prepend_name(struct prepend_buffer *p, const struct qstr *name)
 97{
 98	const char *dname = smp_load_acquire(&name->name); /* ^^^ */
 99	u32 dlen = READ_ONCE(name->len);
 
100
101	return prepend(p, dname, dlen) && prepend_char(p, '/');
102}
103
104static int __prepend_path(const struct dentry *dentry, const struct mount *mnt,
105			  const struct path *root, struct prepend_buffer *p)
106{
107	while (dentry != root->dentry || &mnt->mnt != root->mnt) {
108		const struct dentry *parent = READ_ONCE(dentry->d_parent);
109
110		if (dentry == mnt->mnt.mnt_root) {
111			struct mount *m = READ_ONCE(mnt->mnt_parent);
112			struct mnt_namespace *mnt_ns;
113
114			if (likely(mnt != m)) {
115				dentry = READ_ONCE(mnt->mnt_mountpoint);
116				mnt = m;
117				continue;
118			}
119			/* Global root */
120			mnt_ns = READ_ONCE(mnt->mnt_ns);
121			/* open-coded is_mounted() to use local mnt_ns */
122			if (!IS_ERR_OR_NULL(mnt_ns) && !is_anon_ns(mnt_ns))
123				return 1;	// absolute root
124			else
125				return 2;	// detached or not attached yet
126		}
127
128		if (unlikely(dentry == parent))
129			/* Escaped? */
130			return 3;
131
132		prefetch(parent);
133		if (!prepend_name(p, &dentry->d_name))
134			break;
135		dentry = parent;
136	}
137	return 0;
138}
139
140/**
141 * prepend_path - Prepend path string to a buffer
142 * @path: the dentry/vfsmount to report
143 * @root: root vfsmnt/dentry
144 * @p: prepend buffer which contains buffer pointer and allocated length
 
145 *
146 * The function will first try to write out the pathname without taking any
147 * lock other than the RCU read lock to make sure that dentries won't go away.
148 * It only checks the sequence number of the global rename_lock as any change
149 * in the dentry's d_seq will be preceded by changes in the rename_lock
150 * sequence number. If the sequence number had been changed, it will restart
151 * the whole pathname back-tracing sequence again by taking the rename_lock.
152 * In this case, there is no need to take the RCU read lock as the recursive
153 * parent pointer references will keep the dentry chain alive as long as no
154 * rename operation is performed.
155 */
156static int prepend_path(const struct path *path,
157			const struct path *root,
158			struct prepend_buffer *p)
159{
 
 
 
 
160	unsigned seq, m_seq = 0;
161	struct prepend_buffer b;
162	int error;
163
164	rcu_read_lock();
165restart_mnt:
166	read_seqbegin_or_lock(&mount_lock, &m_seq);
167	seq = 0;
168	rcu_read_lock();
169restart:
170	b = *p;
 
 
 
 
 
171	read_seqbegin_or_lock(&rename_lock, &seq);
172	error = __prepend_path(path->dentry, real_mount(path->mnt), root, &b);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
173	if (!(seq & 1))
174		rcu_read_unlock();
175	if (need_seqretry(&rename_lock, seq)) {
176		seq = 1;
177		goto restart;
178	}
179	done_seqretry(&rename_lock, seq);
180
181	if (!(m_seq & 1))
182		rcu_read_unlock();
183	if (need_seqretry(&mount_lock, m_seq)) {
184		m_seq = 1;
185		goto restart_mnt;
186	}
187	done_seqretry(&mount_lock, m_seq);
188
189	if (unlikely(error == 3))
190		b = *p;
191
192	if (b.len == p->len)
193		prepend_char(&b, '/');
194
195	*p = b;
 
196	return error;
197}
198
199/**
200 * __d_path - return the path of a dentry
201 * @path: the dentry/vfsmount to report
202 * @root: root vfsmnt/dentry
203 * @buf: buffer to return value in
204 * @buflen: buffer length
205 *
206 * Convert a dentry into an ASCII path name.
207 *
208 * Returns a pointer into the buffer or an error code if the
209 * path was too long.
210 *
211 * "buflen" should be positive.
212 *
213 * If the path is not reachable from the supplied root, return %NULL.
214 */
215char *__d_path(const struct path *path,
216	       const struct path *root,
217	       char *buf, int buflen)
218{
219	DECLARE_BUFFER(b, buf, buflen);
 
 
 
 
220
221	prepend_char(&b, 0);
222	if (unlikely(prepend_path(path, root, &b) > 0))
 
223		return NULL;
224	return extract_string(&b);
225}
226
227char *d_absolute_path(const struct path *path,
228	       char *buf, int buflen)
229{
230	struct path root = {};
231	DECLARE_BUFFER(b, buf, buflen);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
232
233	prepend_char(&b, 0);
234	if (unlikely(prepend_path(path, &root, &b) > 1))
235		return ERR_PTR(-EINVAL);
236	return extract_string(&b);
 
 
237}
238
239static void get_fs_root_rcu(struct fs_struct *fs, struct path *root)
240{
241	unsigned seq;
242
243	do {
244		seq = read_seqcount_begin(&fs->seq);
245		*root = fs->root;
246	} while (read_seqcount_retry(&fs->seq, seq));
247}
248
249/**
250 * d_path - return the path of a dentry
251 * @path: path to report
252 * @buf: buffer to return value in
253 * @buflen: buffer length
254 *
255 * Convert a dentry into an ASCII path name. If the entry has been deleted
256 * the string " (deleted)" is appended. Note that this is ambiguous.
257 *
258 * Returns a pointer into the buffer or an error code if the path was
259 * too long. Note: Callers should use the returned pointer, not the passed
260 * in buffer, to use the name! The implementation often starts at an offset
261 * into the buffer, and may leave 0 bytes at the start.
262 *
263 * "buflen" should be positive.
264 */
265char *d_path(const struct path *path, char *buf, int buflen)
266{
267	DECLARE_BUFFER(b, buf, buflen);
268	struct path root;
 
269
270	/*
271	 * We have various synthetic filesystems that never get mounted.  On
272	 * these filesystems dentries are never used for lookup purposes, and
273	 * thus don't need to be hashed.  They also don't need a name until a
274	 * user wants to identify the object in /proc/pid/fd/.  The little hack
275	 * below allows us to generate a name for these objects on demand:
276	 *
277	 * Some pseudo inodes are mountable.  When they are mounted
278	 * path->dentry == path->mnt->mnt_root.  In that case don't call d_dname
279	 * and instead have d_path return the mounted path.
280	 */
281	if (path->dentry->d_op && path->dentry->d_op->d_dname &&
282	    (!IS_ROOT(path->dentry) || path->dentry != path->mnt->mnt_root))
283		return path->dentry->d_op->d_dname(path->dentry, buf, buflen);
284
285	rcu_read_lock();
286	get_fs_root_rcu(current->fs, &root);
287	if (unlikely(d_unlinked(path->dentry)))
288		prepend(&b, " (deleted)", 11);
289	else
290		prepend_char(&b, 0);
291	prepend_path(path, &root, &b);
292	rcu_read_unlock();
293
294	return extract_string(&b);
 
 
295}
296EXPORT_SYMBOL(d_path);
297
298/*
299 * Helper function for dentry_operations.d_dname() members
300 */
301char *dynamic_dname(char *buffer, int buflen, const char *fmt, ...)
 
302{
303	va_list args;
304	char temp[64];
305	int sz;
306
307	va_start(args, fmt);
308	sz = vsnprintf(temp, sizeof(temp), fmt, args) + 1;
309	va_end(args);
310
311	if (sz > sizeof(temp) || sz > buflen)
312		return ERR_PTR(-ENAMETOOLONG);
313
314	buffer += buflen - sz;
315	return memcpy(buffer, temp, sz);
316}
317
318char *simple_dname(struct dentry *dentry, char *buffer, int buflen)
319{
320	DECLARE_BUFFER(b, buffer, buflen);
321	/* these dentries are never renamed, so d_lock is not needed */
322	prepend(&b, " (deleted)", 11);
323	prepend(&b, dentry->d_name.name, dentry->d_name.len);
324	prepend_char(&b, '/');
325	return extract_string(&b);
 
326}
327
328/*
329 * Write full pathname from the root of the filesystem into the buffer.
330 */
331static char *__dentry_path(const struct dentry *d, struct prepend_buffer *p)
332{
333	const struct dentry *dentry;
334	struct prepend_buffer b;
335	int seq = 0;
 
 
 
 
336
337	rcu_read_lock();
338restart:
339	dentry = d;
340	b = *p;
 
 
 
 
 
341	read_seqbegin_or_lock(&rename_lock, &seq);
342	while (!IS_ROOT(dentry)) {
343		const struct dentry *parent = dentry->d_parent;
344
345		prefetch(parent);
346		if (!prepend_name(&b, &dentry->d_name))
 
347			break;
 
 
348		dentry = parent;
349	}
350	if (!(seq & 1))
351		rcu_read_unlock();
352	if (need_seqretry(&rename_lock, seq)) {
353		seq = 1;
354		goto restart;
355	}
356	done_seqretry(&rename_lock, seq);
357	if (b.len == p->len)
358		prepend_char(&b, '/');
359	return extract_string(&b);
 
 
360}
361
362char *dentry_path_raw(const struct dentry *dentry, char *buf, int buflen)
363{
364	DECLARE_BUFFER(b, buf, buflen);
365
366	prepend_char(&b, 0);
367	return __dentry_path(dentry, &b);
368}
369EXPORT_SYMBOL(dentry_path_raw);
370
371char *dentry_path(const struct dentry *dentry, char *buf, int buflen)
372{
373	DECLARE_BUFFER(b, buf, buflen);
 
374
375	if (unlikely(d_unlinked(dentry)))
376		prepend(&b, "//deleted", 10);
377	else
378		prepend_char(&b, 0);
379	return __dentry_path(dentry, &b);
 
 
 
 
 
 
 
380}
381
382static void get_fs_root_and_pwd_rcu(struct fs_struct *fs, struct path *root,
383				    struct path *pwd)
384{
385	unsigned seq;
386
387	do {
388		seq = read_seqcount_begin(&fs->seq);
389		*root = fs->root;
390		*pwd = fs->pwd;
391	} while (read_seqcount_retry(&fs->seq, seq));
392}
393
394/*
395 * NOTE! The user-level library version returns a
396 * character pointer. The kernel system call just
397 * returns the length of the buffer filled (which
398 * includes the ending '\0' character), or a negative
399 * error value. So libc would do something like
400 *
401 *	char *getcwd(char * buf, size_t size)
402 *	{
403 *		int retval;
404 *
405 *		retval = sys_getcwd(buf, size);
406 *		if (retval >= 0)
407 *			return buf;
408 *		errno = -retval;
409 *		return NULL;
410 *	}
411 */
412SYSCALL_DEFINE2(getcwd, char __user *, buf, unsigned long, size)
413{
414	int error;
415	struct path pwd, root;
416	char *page = __getname();
417
418	if (!page)
419		return -ENOMEM;
420
421	rcu_read_lock();
422	get_fs_root_and_pwd_rcu(current->fs, &root, &pwd);
423
424	if (unlikely(d_unlinked(pwd.dentry))) {
425		rcu_read_unlock();
426		error = -ENOENT;
427	} else {
428		unsigned len;
429		DECLARE_BUFFER(b, page, PATH_MAX);
430
431		prepend_char(&b, 0);
432		if (unlikely(prepend_path(&pwd, &root, &b) > 0))
433			prepend(&b, "(unreachable)", 13);
434		rcu_read_unlock();
435
436		len = PATH_MAX - b.len;
437		if (unlikely(len > PATH_MAX))
438			error = -ENAMETOOLONG;
439		else if (unlikely(len > size))
440			error = -ERANGE;
441		else if (copy_to_user(buf, b.buf, len))
442			error = -EFAULT;
443		else
 
 
 
 
 
444			error = len;
 
 
 
 
 
445	}
 
 
446	__putname(page);
447	return error;
448}
v5.4
  1/* SPDX-License-Identifier: GPL-2.0 */
  2#include <linux/syscalls.h>
  3#include <linux/export.h>
  4#include <linux/uaccess.h>
  5#include <linux/fs_struct.h>
  6#include <linux/fs.h>
  7#include <linux/slab.h>
  8#include <linux/prefetch.h>
  9#include "mount.h"
 
 10
 11static int prepend(char **buffer, int *buflen, const char *str, int namelen)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 12{
 13	*buflen -= namelen;
 14	if (*buflen < 0)
 15		return -ENAMETOOLONG;
 16	*buffer -= namelen;
 17	memcpy(*buffer, str, namelen);
 18	return 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 19}
 20
 21/**
 22 * prepend_name - prepend a pathname in front of current buffer pointer
 23 * @buffer: buffer pointer
 24 * @buflen: allocated length of the buffer
 25 * @name:   name string and length qstr structure
 26 *
 27 * With RCU path tracing, it may race with d_move(). Use READ_ONCE() to
 28 * make sure that either the old or the new name pointer and length are
 29 * fetched. However, there may be mismatch between length and pointer.
 30 * The length cannot be trusted, we need to copy it byte-by-byte until
 31 * the length is reached or a null byte is found. It also prepends "/" at
 32 * the beginning of the name. The sequence number check at the caller will
 33 * retry it again when a d_move() does happen. So any garbage in the buffer
 34 * due to mismatched pointer and length will be discarded.
 35 *
 36 * Load acquire is needed to make sure that we see that terminating NUL.
 
 37 */
 38static int prepend_name(char **buffer, int *buflen, const struct qstr *name)
 39{
 40	const char *dname = smp_load_acquire(&name->name); /* ^^^ */
 41	u32 dlen = READ_ONCE(name->len);
 42	char *p;
 43
 44	*buflen -= dlen + 1;
 45	if (*buflen < 0)
 46		return -ENAMETOOLONG;
 47	p = *buffer -= dlen + 1;
 48	*p++ = '/';
 49	while (dlen--) {
 50		char c = *dname++;
 51		if (!c)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 52			break;
 53		*p++ = c;
 54	}
 55	return 0;
 56}
 57
 58/**
 59 * prepend_path - Prepend path string to a buffer
 60 * @path: the dentry/vfsmount to report
 61 * @root: root vfsmnt/dentry
 62 * @buffer: pointer to the end of the buffer
 63 * @buflen: pointer to buffer length
 64 *
 65 * The function will first try to write out the pathname without taking any
 66 * lock other than the RCU read lock to make sure that dentries won't go away.
 67 * It only checks the sequence number of the global rename_lock as any change
 68 * in the dentry's d_seq will be preceded by changes in the rename_lock
 69 * sequence number. If the sequence number had been changed, it will restart
 70 * the whole pathname back-tracing sequence again by taking the rename_lock.
 71 * In this case, there is no need to take the RCU read lock as the recursive
 72 * parent pointer references will keep the dentry chain alive as long as no
 73 * rename operation is performed.
 74 */
 75static int prepend_path(const struct path *path,
 76			const struct path *root,
 77			char **buffer, int *buflen)
 78{
 79	struct dentry *dentry;
 80	struct vfsmount *vfsmnt;
 81	struct mount *mnt;
 82	int error = 0;
 83	unsigned seq, m_seq = 0;
 84	char *bptr;
 85	int blen;
 86
 87	rcu_read_lock();
 88restart_mnt:
 89	read_seqbegin_or_lock(&mount_lock, &m_seq);
 90	seq = 0;
 91	rcu_read_lock();
 92restart:
 93	bptr = *buffer;
 94	blen = *buflen;
 95	error = 0;
 96	dentry = path->dentry;
 97	vfsmnt = path->mnt;
 98	mnt = real_mount(vfsmnt);
 99	read_seqbegin_or_lock(&rename_lock, &seq);
100	while (dentry != root->dentry || vfsmnt != root->mnt) {
101		struct dentry * parent;
102
103		if (dentry == vfsmnt->mnt_root || IS_ROOT(dentry)) {
104			struct mount *parent = READ_ONCE(mnt->mnt_parent);
105			/* Escaped? */
106			if (dentry != vfsmnt->mnt_root) {
107				bptr = *buffer;
108				blen = *buflen;
109				error = 3;
110				break;
111			}
112			/* Global root? */
113			if (mnt != parent) {
114				dentry = READ_ONCE(mnt->mnt_mountpoint);
115				mnt = parent;
116				vfsmnt = &mnt->mnt;
117				continue;
118			}
119			if (is_mounted(vfsmnt) && !is_anon_ns(mnt->mnt_ns))
120				error = 1;	// absolute root
121			else
122				error = 2;	// detached or not attached yet
123			break;
124		}
125		parent = dentry->d_parent;
126		prefetch(parent);
127		error = prepend_name(&bptr, &blen, &dentry->d_name);
128		if (error)
129			break;
130
131		dentry = parent;
132	}
133	if (!(seq & 1))
134		rcu_read_unlock();
135	if (need_seqretry(&rename_lock, seq)) {
136		seq = 1;
137		goto restart;
138	}
139	done_seqretry(&rename_lock, seq);
140
141	if (!(m_seq & 1))
142		rcu_read_unlock();
143	if (need_seqretry(&mount_lock, m_seq)) {
144		m_seq = 1;
145		goto restart_mnt;
146	}
147	done_seqretry(&mount_lock, m_seq);
148
149	if (error >= 0 && bptr == *buffer) {
150		if (--blen < 0)
151			error = -ENAMETOOLONG;
152		else
153			*--bptr = '/';
154	}
155	*buffer = bptr;
156	*buflen = blen;
157	return error;
158}
159
160/**
161 * __d_path - return the path of a dentry
162 * @path: the dentry/vfsmount to report
163 * @root: root vfsmnt/dentry
164 * @buf: buffer to return value in
165 * @buflen: buffer length
166 *
167 * Convert a dentry into an ASCII path name.
168 *
169 * Returns a pointer into the buffer or an error code if the
170 * path was too long.
171 *
172 * "buflen" should be positive.
173 *
174 * If the path is not reachable from the supplied root, return %NULL.
175 */
176char *__d_path(const struct path *path,
177	       const struct path *root,
178	       char *buf, int buflen)
179{
180	char *res = buf + buflen;
181	int error;
182
183	prepend(&res, &buflen, "\0", 1);
184	error = prepend_path(path, root, &res, &buflen);
185
186	if (error < 0)
187		return ERR_PTR(error);
188	if (error > 0)
189		return NULL;
190	return res;
191}
192
193char *d_absolute_path(const struct path *path,
194	       char *buf, int buflen)
195{
196	struct path root = {};
197	char *res = buf + buflen;
198	int error;
199
200	prepend(&res, &buflen, "\0", 1);
201	error = prepend_path(path, &root, &res, &buflen);
202
203	if (error > 1)
204		error = -EINVAL;
205	if (error < 0)
206		return ERR_PTR(error);
207	return res;
208}
209
210/*
211 * same as __d_path but appends "(deleted)" for unlinked files.
212 */
213static int path_with_deleted(const struct path *path,
214			     const struct path *root,
215			     char **buf, int *buflen)
216{
217	prepend(buf, buflen, "\0", 1);
218	if (d_unlinked(path->dentry)) {
219		int error = prepend(buf, buflen, " (deleted)", 10);
220		if (error)
221			return error;
222	}
223
224	return prepend_path(path, root, buf, buflen);
225}
226
227static int prepend_unreachable(char **buffer, int *buflen)
228{
229	return prepend(buffer, buflen, "(unreachable)", 13);
230}
231
232static void get_fs_root_rcu(struct fs_struct *fs, struct path *root)
233{
234	unsigned seq;
235
236	do {
237		seq = read_seqcount_begin(&fs->seq);
238		*root = fs->root;
239	} while (read_seqcount_retry(&fs->seq, seq));
240}
241
242/**
243 * d_path - return the path of a dentry
244 * @path: path to report
245 * @buf: buffer to return value in
246 * @buflen: buffer length
247 *
248 * Convert a dentry into an ASCII path name. If the entry has been deleted
249 * the string " (deleted)" is appended. Note that this is ambiguous.
250 *
251 * Returns a pointer into the buffer or an error code if the path was
252 * too long. Note: Callers should use the returned pointer, not the passed
253 * in buffer, to use the name! The implementation often starts at an offset
254 * into the buffer, and may leave 0 bytes at the start.
255 *
256 * "buflen" should be positive.
257 */
258char *d_path(const struct path *path, char *buf, int buflen)
259{
260	char *res = buf + buflen;
261	struct path root;
262	int error;
263
264	/*
265	 * We have various synthetic filesystems that never get mounted.  On
266	 * these filesystems dentries are never used for lookup purposes, and
267	 * thus don't need to be hashed.  They also don't need a name until a
268	 * user wants to identify the object in /proc/pid/fd/.  The little hack
269	 * below allows us to generate a name for these objects on demand:
270	 *
271	 * Some pseudo inodes are mountable.  When they are mounted
272	 * path->dentry == path->mnt->mnt_root.  In that case don't call d_dname
273	 * and instead have d_path return the mounted path.
274	 */
275	if (path->dentry->d_op && path->dentry->d_op->d_dname &&
276	    (!IS_ROOT(path->dentry) || path->dentry != path->mnt->mnt_root))
277		return path->dentry->d_op->d_dname(path->dentry, buf, buflen);
278
279	rcu_read_lock();
280	get_fs_root_rcu(current->fs, &root);
281	error = path_with_deleted(path, &root, &res, &buflen);
 
 
 
 
282	rcu_read_unlock();
283
284	if (error < 0)
285		res = ERR_PTR(error);
286	return res;
287}
288EXPORT_SYMBOL(d_path);
289
290/*
291 * Helper function for dentry_operations.d_dname() members
292 */
293char *dynamic_dname(struct dentry *dentry, char *buffer, int buflen,
294			const char *fmt, ...)
295{
296	va_list args;
297	char temp[64];
298	int sz;
299
300	va_start(args, fmt);
301	sz = vsnprintf(temp, sizeof(temp), fmt, args) + 1;
302	va_end(args);
303
304	if (sz > sizeof(temp) || sz > buflen)
305		return ERR_PTR(-ENAMETOOLONG);
306
307	buffer += buflen - sz;
308	return memcpy(buffer, temp, sz);
309}
310
311char *simple_dname(struct dentry *dentry, char *buffer, int buflen)
312{
313	char *end = buffer + buflen;
314	/* these dentries are never renamed, so d_lock is not needed */
315	if (prepend(&end, &buflen, " (deleted)", 11) ||
316	    prepend(&end, &buflen, dentry->d_name.name, dentry->d_name.len) ||
317	    prepend(&end, &buflen, "/", 1))  
318		end = ERR_PTR(-ENAMETOOLONG);
319	return end;
320}
321
322/*
323 * Write full pathname from the root of the filesystem into the buffer.
324 */
325static char *__dentry_path(struct dentry *d, char *buf, int buflen)
326{
327	struct dentry *dentry;
328	char *end, *retval;
329	int len, seq = 0;
330	int error = 0;
331
332	if (buflen < 2)
333		goto Elong;
334
335	rcu_read_lock();
336restart:
337	dentry = d;
338	end = buf + buflen;
339	len = buflen;
340	prepend(&end, &len, "\0", 1);
341	/* Get '/' right */
342	retval = end-1;
343	*retval = '/';
344	read_seqbegin_or_lock(&rename_lock, &seq);
345	while (!IS_ROOT(dentry)) {
346		struct dentry *parent = dentry->d_parent;
347
348		prefetch(parent);
349		error = prepend_name(&end, &len, &dentry->d_name);
350		if (error)
351			break;
352
353		retval = end;
354		dentry = parent;
355	}
356	if (!(seq & 1))
357		rcu_read_unlock();
358	if (need_seqretry(&rename_lock, seq)) {
359		seq = 1;
360		goto restart;
361	}
362	done_seqretry(&rename_lock, seq);
363	if (error)
364		goto Elong;
365	return retval;
366Elong:
367	return ERR_PTR(-ENAMETOOLONG);
368}
369
370char *dentry_path_raw(struct dentry *dentry, char *buf, int buflen)
371{
372	return __dentry_path(dentry, buf, buflen);
 
 
 
373}
374EXPORT_SYMBOL(dentry_path_raw);
375
376char *dentry_path(struct dentry *dentry, char *buf, int buflen)
377{
378	char *p = NULL;
379	char *retval;
380
381	if (d_unlinked(dentry)) {
382		p = buf + buflen;
383		if (prepend(&p, &buflen, "//deleted", 10) != 0)
384			goto Elong;
385		buflen++;
386	}
387	retval = __dentry_path(dentry, buf, buflen);
388	if (!IS_ERR(retval) && p)
389		*p = '/';	/* restore '/' overriden with '\0' */
390	return retval;
391Elong:
392	return ERR_PTR(-ENAMETOOLONG);
393}
394
395static void get_fs_root_and_pwd_rcu(struct fs_struct *fs, struct path *root,
396				    struct path *pwd)
397{
398	unsigned seq;
399
400	do {
401		seq = read_seqcount_begin(&fs->seq);
402		*root = fs->root;
403		*pwd = fs->pwd;
404	} while (read_seqcount_retry(&fs->seq, seq));
405}
406
407/*
408 * NOTE! The user-level library version returns a
409 * character pointer. The kernel system call just
410 * returns the length of the buffer filled (which
411 * includes the ending '\0' character), or a negative
412 * error value. So libc would do something like
413 *
414 *	char *getcwd(char * buf, size_t size)
415 *	{
416 *		int retval;
417 *
418 *		retval = sys_getcwd(buf, size);
419 *		if (retval >= 0)
420 *			return buf;
421 *		errno = -retval;
422 *		return NULL;
423 *	}
424 */
425SYSCALL_DEFINE2(getcwd, char __user *, buf, unsigned long, size)
426{
427	int error;
428	struct path pwd, root;
429	char *page = __getname();
430
431	if (!page)
432		return -ENOMEM;
433
434	rcu_read_lock();
435	get_fs_root_and_pwd_rcu(current->fs, &root, &pwd);
436
437	error = -ENOENT;
438	if (!d_unlinked(pwd.dentry)) {
439		unsigned long len;
440		char *cwd = page + PATH_MAX;
441		int buflen = PATH_MAX;
 
442
443		prepend(&cwd, &buflen, "\0", 1);
444		error = prepend_path(&pwd, &root, &cwd, &buflen);
 
445		rcu_read_unlock();
446
447		if (error < 0)
448			goto out;
449
450		/* Unreachable from current root */
451		if (error > 0) {
452			error = prepend_unreachable(&cwd, &buflen);
453			if (error)
454				goto out;
455		}
456
457		error = -ERANGE;
458		len = PATH_MAX + page - cwd;
459		if (len <= size) {
460			error = len;
461			if (copy_to_user(buf, cwd, len))
462				error = -EFAULT;
463		}
464	} else {
465		rcu_read_unlock();
466	}
467
468out:
469	__putname(page);
470	return error;
471}