* [Qemu-devel] [PATCH v2] slirp: Ensure smbd and shared directory exist when enable smb
@ 2012-07-06 6:04 Dunrong Huang
2012-07-06 6:43 ` Jan Kiszka
0 siblings, 1 reply; 2+ messages in thread
From: Dunrong Huang @ 2012-07-06 6:04 UTC (permalink / raw)
To: qemu-devel; +Cc: Mark McLoughlin, Anthony Liguori, Jan Kiszka
Users may pass the following parameters to qemu:
$ qemu-kvm -net nic -net user,smb= ...
$ qemu-kvm -net nic -net user,smb ...
$ qemu-kvm -net nic -net user,smb=bad_directory ...
In these cases, qemu started successfully while samba server
failed to start. Users will confuse since samba server
failed silently without any indication of what it did wrong.
To avoid it, we check whether the shared directory exist and
if users have permission to access this directory when QEMU's
"built-in" SMB server is enabled.
Signed-off-by: Dunrong Huang <riegamaths@gmail.com>
---
net/slirp.c | 12 ++++++++++++
1 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/net/slirp.c b/net/slirp.c
index 37b6ccf..ff36fa2 100644
--- a/net/slirp.c
+++ b/net/slirp.c
@@ -489,6 +489,18 @@ static int slirp_smb(SlirpState* s, const char *exported_dir,
char smb_cmdline[128];
FILE *f;
+ if (access(CONFIG_SMBD_COMMAND, F_OK)) {
+ error_report("could not find '%s', please install it",
+ CONFIG_SMBD_COMMAND);
+ return -1;
+ }
+
+ if (access(exported_dir, R_OK | X_OK)) {
+ error_report("no such directory '%s', or you do not have permission "
+ "to access it, please check it", exported_dir);
+ return -1;
+ }
+
snprintf(s->smb_dir, sizeof(s->smb_dir), "/tmp/qemu-smb.%ld-%d",
(long)getpid(), instance++);
if (mkdir(s->smb_dir, 0700) < 0) {
--
1.7.8.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [Qemu-devel] [PATCH v2] slirp: Ensure smbd and shared directory exist when enable smb
2012-07-06 6:04 [Qemu-devel] [PATCH v2] slirp: Ensure smbd and shared directory exist when enable smb Dunrong Huang
@ 2012-07-06 6:43 ` Jan Kiszka
0 siblings, 0 replies; 2+ messages in thread
From: Jan Kiszka @ 2012-07-06 6:43 UTC (permalink / raw)
To: Dunrong Huang; +Cc: Mark McLoughlin, Anthony Liguori, qemu-devel
[-- Attachment #1: Type: text/plain, Size: 2315 bytes --]
On 2012-07-06 08:04, Dunrong Huang wrote:
> Users may pass the following parameters to qemu:
> $ qemu-kvm -net nic -net user,smb= ...
> $ qemu-kvm -net nic -net user,smb ...
> $ qemu-kvm -net nic -net user,smb=bad_directory ...
>
> In these cases, qemu started successfully while samba server
> failed to start. Users will confuse since samba server
> failed silently without any indication of what it did wrong.
>
> To avoid it, we check whether the shared directory exist and
> if users have permission to access this directory when QEMU's
> "built-in" SMB server is enabled.
>
> Signed-off-by: Dunrong Huang <riegamaths@gmail.com>
> ---
> net/slirp.c | 12 ++++++++++++
> 1 files changed, 12 insertions(+), 0 deletions(-)
>
> diff --git a/net/slirp.c b/net/slirp.c
> index 37b6ccf..ff36fa2 100644
> --- a/net/slirp.c
> +++ b/net/slirp.c
> @@ -489,6 +489,18 @@ static int slirp_smb(SlirpState* s, const char *exported_dir,
> char smb_cmdline[128];
> FILE *f;
>
> + if (access(CONFIG_SMBD_COMMAND, F_OK)) {
> + error_report("could not find '%s', please install it",
> + CONFIG_SMBD_COMMAND);
> + return -1;
> + }
> +
> + if (access(exported_dir, R_OK | X_OK)) {
> + error_report("no such directory '%s', or you do not have permission "
> + "to access it, please check it", exported_dir);
> + return -1;
> + }
> +
> snprintf(s->smb_dir, sizeof(s->smb_dir), "/tmp/qemu-smb.%ld-%d",
> (long)getpid(), instance++);
> if (mkdir(s->smb_dir, 0700) < 0) {
>
Thanks, applied to slirp queue.
I added a tiny patch on top that reports the exact error returned by
access():
diff --git a/net/slirp.c b/net/slirp.c
index eb80889..b82eab0 100644
--- a/net/slirp.c
+++ b/net/slirp.c
@@ -504,8 +504,8 @@ static int slirp_smb(SlirpState* s, const char *exported_dir,
}
if (access(exported_dir, R_OK | X_OK)) {
- error_report("no such directory '%s', or you do not have permission "
- "to access it, please check it", exported_dir);
+ error_report("error accessing shared directory '%s': %s",
+ exported_dir, strerror(errno));
return -1;
}
Jan
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 262 bytes --]
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-07-06 6:44 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-06 6:04 [Qemu-devel] [PATCH v2] slirp: Ensure smbd and shared directory exist when enable smb Dunrong Huang
2012-07-06 6:43 ` Jan Kiszka
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).