Sponsored Content
Full Discussion: VSFTPD sees old mount --bind
Top Forums UNIX for Beginners Questions & Answers VSFTPD sees old mount --bind Post 303045568 by mojoman on Wednesday 1st of April 2020 06:45:33 PM
Old 04-01-2020
VSFTPD sees old mount --bind

Hi guys,

Our company sells a product that has two servers than run in a pair--for the part I explain below the two systems run independently.

On both servers I did the following. I used the mount --bind command. to allow the FTP user to see the contents of another directory. I found an easier to way to accomplish what I wanted. Removing the mount -- bind, rysnc was used in the crontab to constantly mirror the two directories. My manger did not like that. He said I should use the user on the system to access the directory that has the files the client wants. Rysnc's were removed from the crontabs. On the second server everything works great using FTP and SFTP--client can get into the correct home directory and sees the right files.

However on the first server the client is getting into what is the /var/ftp directory. WinSCP lists the home directory properly in the header but the listing is incorrect--it shows the files of /var/ftp. However when I check the home directory on the first sever the directory listing is correct. Home directory is correct, shell is set to /bin/bash in the /etc/passwd file. Permissions are the same on both (Before they were different but I fixed that but the problem stayed.)

I am stumped. Any ideas what I should be looking for? I did not chroot anything either and like I said, the second server works fine. What would make winscp list the contents of /var/ftp?
 

7 More Discussions You Might Find Interesting

1. What is on Your Mind?

IT recruiter sees staff shortages looming

This is just 2 small cuts from a article I've read. It's stats for Australia but I'm sure they shouldn't be much different over the World! Were are all safe! God bless Unix :cool: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ IT recruitment firm Candle ICT is predicting a shortage... (0 Replies)
Discussion started by: woofie
0 Replies

2. AIX

p595 LPAR no longer sees SAN boot disk

Hello, we have a wierd and urgent problem, with a few of our p595 LPARs running AIX 5.3. The LPARs ran AIX 5.3 TL 7 and booted off EMC SAN disks, using EMC Powerpath. Every boot we run "pprootdev on" and "pprootdev fix". We can issue "bosboot -a" and we can reboot the machines. Now, on two... (2 Replies)
Discussion started by: rwesterik
2 Replies

3. UNIX for Dummies Questions & Answers

mount --bind

I read it create hard link but I want to be sure, what does this command do exactly? Thank in advance. (1 Reply)
Discussion started by: programAngel
1 Replies

4. Red Hat

Linux Bind mount issues.

Hi All, we have an issue in bind mounting LINUX. we are able to see the bound mounts in mount command and df -h <file system name> but they are not visible in normal df -h command. all these mounts are local mounts. we have a /xyz is mount and abc is a directory in /xyz ( /xyz/abc ) ... (1 Reply)
Discussion started by: Naveen.6025
1 Replies

5. Emergency UNIX and Linux Support

Help with autos and mount bind

I have a sftp server running on Centos 5.10. It servers as upload/download interface for three users who basically are chrooted to three different locations. User A -- > /home/REGIONA/ User B -- > /home/REGIONB/ User C -- > /home/REGIONC/ The users run certain application procedures on... (4 Replies)
Discussion started by: maverick_here
4 Replies

6. UNIX for Advanced & Expert Users

Does vsftpd support user access with client certificate with priv/pub key + vsftpd certificate?

:rolleyes:I am trying to setup all certificate based client-server environment in Linux using vsftpd and curl with openssl. I would like to make a user access with vsftpd certificate and user own client certificate (self-signed) with private/public key. I don't see google posts about the my plan... (4 Replies)
Discussion started by: gogogo
4 Replies

7. UNIX for Beginners Questions & Answers

Mount point bind issues

Hi ALL I am unable to do mount bind to connect new storage Once I run the below commands both file systems were empty Code: mount --bind /prod/OpenCSS /var/lib/test Code: echo "/prod/OpenCSS /var/lib/pgsql bind bind 0 0" >> /etc/fstab Please use code tags for code and data (9 Replies)
Discussion started by: anil529
9 Replies
UNSHARE(1)                                                         User Commands                                                        UNSHARE(1)

NAME
unshare - run program with some namespaces unshared from parent SYNOPSIS
unshare [options] [program [arguments]] DESCRIPTION
Unshares the indicated namespaces from the parent process and then executes the specified program. If program is not given, then ``${SHELL}'' is run (default: /bin/sh). The namespaces can optionally be made persistent by bind mounting /proc/pid/ns/type files to a filesystem path and entered with nsenter(1) even after the program terminates (except PID namespaces where permanently running init process is required). Once a persistent namespace is no longer needed, it can be unpersisted with umount(8). See the EXAMPLES section for more details. The namespaces to be unshared are indicated via options. Unshareable namespaces are: mount namespace Mounting and unmounting filesystems will not affect the rest of the system, except for filesystems which are explicitly marked as shared (with mount --make-shared; see /proc/self/mountinfo or findmnt -o+PROPAGATION for the shared flags). For further details, see mount_namespaces(7) and the discussion of the CLONE_NEWNS flag in clone(2). unshare since util-linux version 2.27 automatically sets propagation to private in a new mount namespace to make sure that the new namespace is really unshared. It's possible to disable this feature with option --propagation unchanged. Note that private is the kernel default. UTS namespace Setting hostname or domainname will not affect the rest of the system. For further details, see namespaces(7) and the discussion of the CLONE_NEWUTS flag in clone(2). IPC namespace The process will have an independent namespace for POSIX message queues as well as System V message queues, semaphore sets and shared memory segments. For further details, see namespaces(7) and the discussion of the CLONE_NEWIPC flag in clone(2). network namespace The process will have independent IPv4 and IPv6 stacks, IP routing tables, firewall rules, the /proc/net and /sys/class/net direc- tory trees, sockets, etc. For further details, see namespaces(7) and the discussion of the CLONE_NEWNET flag in clone(2). PID namespace Children will have a distinct set of PID-to-process mappings from their parent. For further details, see pid_namespaces(7) and the discussion of the CLONE_NEWPID flag in clone(2). cgroup namespace The process will have a virtualized view of /proc/self/cgroup, and new cgroup mounts will be rooted at the namespace cgroup root. For further details, see cgroup_namespaces(7) and the discussion of the CLONE_NEWCGROUP flag in clone(2). user namespace The process will have a distinct set of UIDs, GIDs and capabilities. For further details, see user_namespaces(7) and the discussion of the CLONE_NEWUSER flag in clone(2). OPTIONS
-i, --ipc[=file] Unshare the IPC namespace. If file is specified, then a persistent namespace is created by a bind mount. -m, --mount[=file] Unshare the mount namespace. If file is specified, then a persistent namespace is created by a bind mount. Note that file has to be located on a filesystem with the propagation flag set to private. Use the command findmnt -o+PROPAGATION when not sure about the current setting. See also the examples below. -n, --net[=file] Unshare the network namespace. If file is specified, then a persistent namespace is created by a bind mount. -p, --pid[=file] Unshare the PID namespace. If file is specified then persistent namespace is created by a bind mount. See also the --fork and --mount-proc options. -u, --uts[=file] Unshare the UTS namespace. If file is specified, then a persistent namespace is created by a bind mount. -U, --user[=file] Unshare the user namespace. If file is specified, then a persistent namespace is created by a bind mount. -C, --cgroup[=file] Unshare the cgroup namespace. If file is specified then persistent namespace is created by bind mount. -f, --fork Fork the specified program as a child process of unshare rather than running it directly. This is useful when creating a new PID namespace. --mount-proc[=mountpoint] Just before running the program, mount the proc filesystem at mountpoint (default is /proc). This is useful when creating a new PID namespace. It also implies creating a new mount namespace since the /proc mount would otherwise mess up existing programs on the system. The new proc filesystem is explicitly mounted as private (with MS_PRIVATE|MS_REC). -r, --map-root-user Run the program only after the current effective user and group IDs have been mapped to the superuser UID and GID in the newly cre- ated user namespace. This makes it possible to conveniently gain capabilities needed to manage various aspects of the newly created namespaces (such as configuring interfaces in the network namespace or mounting filesystems in the mount namespace) even when run unprivileged. As a mere convenience feature, it does not support more sophisticated use cases, such as mapping multiple ranges of UIDs and GIDs. This option implies --setgroups=deny. --propagation private|shared|slave|unchanged Recursively set the mount propagation flag in the new mount namespace. The default is to set the propagation to private. It is possible to disable this feature with the argument unchanged. The option is silently ignored when the mount namespace (--mount) is not requested. --setgroups allow|deny Allow or deny the setgroups(2) system call in a user namespace. To be able to call setgroups(2), the calling process must at least have CAP_SETGID. But since Linux 3.19 a further restriction applies: the kernel gives permission to call setgroups(2) only after the GID map (/proc/pid/gid_map) has been set. The GID map is writable by root when setgroups(2) is enabled (i.e. allow, the default), and the GID map becomes writable by unprivileged processes when setgroups(2) is permanently disabled (with deny). -V, --version Display version information and exit. -h, --help Display help text and exit. NOTES
The proc and sysfs filesystems mounting as root in a user namespace have to be restricted so that a less privileged user can not get more access to sensitive files that a more privileged user made unavailable. In short the rule for proc and sysfs is as close to a bind mount as possible. EXAMPLES
# unshare --fork --pid --mount-proc readlink /proc/self 1 Establish a PID namespace, ensure we're PID 1 in it against a newly mounted procfs instance. $ unshare --map-root-user --user sh -c whoami root Establish a user namespace as an unprivileged user with a root user within it. # touch /root/uts-ns # unshare --uts=/root/uts-ns hostname FOO # nsenter --uts=/root/uts-ns hostname FOO # umount /root/uts-ns Establish a persistent UTS namespace, and modify the hostname. The namespace is then entered with nsenter. The namespace is destroyed by unmounting the bind reference. # mount --bind /root/namespaces /root/namespaces # mount --make-private /root/namespaces # touch /root/namespaces/mnt # unshare --mount=/root/namespaces/mnt Establish a persistent mount namespace referenced by the bind mount /root/namespaces/mnt. This example shows a portable solution, because it makes sure that the bind mount is created on a shared filesystem. SEE ALSO
clone(2), unshare(2), namespaces(7), mount(8) AUTHORS
Mikhail Gusarov <dottedmag@dottedmag.net> Karel Zak <kzak@redhat.com> AVAILABILITY
The unshare command is part of the util-linux package and is available from https://www.kernel.org/pub/linux/utils/util-linux/. util-linux February 2016 UNSHARE(1)
All times are GMT -4. The time now is 06:37 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy