RE: [PATCH V2 1/1] Drivers: hv: Implement the file copy service

2014-01-20 Thread KY Srinivasan
Olaf,

I am cleaning up the code based on your feedback. By the time I am done with my 
cleanup, I doubt if
this patch would apply. Do you mind if I were to include your changes here as 
part of my cleanup?

Thank you,

K. Y

 -Original Message-
 From: Olaf Hering [mailto:o...@aepfle.de]
 Sent: Thursday, January 16, 2014 2:49 AM
 To: KY Srinivasan
 Cc: gre...@linuxfoundation.org; linux-ker...@vger.kernel.org;
 de...@linuxdriverproject.org; a...@canonical.com; jasow...@redhat.com
 Subject: Re: [PATCH V2 1/1] Drivers: hv: Implement the file copy service
 
 On Tue, Jan 14, K. Y. Srinivasan wrote:
 
  Implement the file copy service for Linux guests on Hyper-V. This permits 
  the
  host to copy a file (over VMBUS) into the guest. This facility is part of
  guest integration services supported on the Windows platform.
  Here is a link that provides additional details on this functionality:
 
 The change below fixes some warnings in the daemon code.
 Compile tested only.
 I also think the newlines in some of the syslog calls should be removed.
 
 Olaf
 
 
 hv_fcopy_daemon.c: In function 'hv_start_fcopy':
 hv_fcopy_daemon.c:44:3: warning: format '%s' expects argument of type 'char
 *', but argument 3 has type '__u16 *' [-Wformat=]
smsg-file_name);
^
 hv_fcopy_daemon.c:44:3: warning: format '%s' expects argument of type 'char
 *', but argument 5 has type '__u16 *' [-Wformat=]
 hv_fcopy_daemon.c:57:6: warning: format '%s' expects argument of type 'char
 *', but argument 3 has type '__u16 *' [-Wformat=]
   errno, strerror(errno));
   ^
 hv_fcopy_daemon.c:61:4: warning: format '%s' expects argument of type 'char
 *', but argument 3 has type '__u16 *' [-Wformat=]
 syslog(LOG_ERR, Invalid path: %s\n, smsg-path_name);
 ^
 hv_fcopy_daemon.c: In function 'main':
 hv_fcopy_daemon.c:117:8: warning: ignoring return value of 'daemon', declared
 with attribute warn_unused_result [-Wunused-result]
   daemon(1, 0);
 ^
 hv_fcopy_daemon.c:132:7: warning: ignoring return value of 'write', declared
 with attribute warn_unused_result [-Wunused-result]
   write(fcopy_fd, version, sizeof(int));
^
 hv_fcopy_daemon.c:171:9: warning: ignoring return value of 'pwrite', declared
 with attribute warn_unused_result [-Wunused-result]
pwrite(fcopy_fd, error, sizeof(int), 0);
  ^
 
 Signed-off-by: Olaf Hering o...@aepfle.de
 
 diff --git a/tools/hv/hv_fcopy_daemon.c b/tools/hv/hv_fcopy_daemon.c
 index c0e5c90..d1fadb7 100644
 --- a/tools/hv/hv_fcopy_daemon.c
 +++ b/tools/hv/hv_fcopy_daemon.c
 @@ -35,14 +35,14 @@
  #include dirent.h
 
  static int target_fd;
 -char target_fname[W_MAX_PATH];
 +static char target_fname[W_MAX_PATH];
 
  static int hv_start_fcopy(struct hv_start_fcopy *smsg)
  {
   int error = HV_E_FAIL;
 
 - sprintf(target_fname, %s%s%s, smsg-path_name, /,
 - smsg-file_name);
 + snprintf(target_fname, sizeof(target_fname), %s/%s,
 + (char *)smsg-path_name, (char*)smsg-file_name);
 
   syslog(LOG_INFO, Target file name: %s\n, target_fname);
   /*
 @@ -54,12 +54,12 @@ static int hv_start_fcopy(struct hv_start_fcopy *smsg)
   if (mkdir((char *)smsg-path_name, 0755)) {
   syslog(LOG_ERR,
   Failed to create '%s'; error: %d %s\n,
 - smsg-path_name,
 + (char *)smsg-path_name,
   errno, strerror(errno));
   goto done;
   }
   } else {
 - syslog(LOG_ERR, Invalid path: %s\n, smsg-
 path_name);
 + syslog(LOG_ERR, Invalid path: %s, (char *)smsg-
 path_name);
   goto done;
   }
   }
 @@ -115,7 +115,8 @@ int main(void)
   char *buffer[4096 * 2];
   struct hv_fcopy_hdr *in_msg;
 
 - daemon(1, 0);
 + if (daemon(1, 0))
 + return 1;
   openlog(HV_FCOPY, 0, LOG_USER);
   syslog(LOG_INFO, HV_FCOPY starting; pid is:%d, getpid());
 
 @@ -130,7 +131,10 @@ int main(void)
   /*
* Register with the kernel.
*/
 - write(fcopy_fd, version, sizeof(int));
 + if (write(fcopy_fd, version, sizeof(int)) != sizeof(int)) {
 + syslog(LOG_ERR, write failed: %s,strerror(errno));
 + exit(EXIT_FAILURE);
 + }
 
   while (1) {
   /*
 @@ -169,6 +173,9 @@ int main(void)
 
   }
 
 - pwrite(fcopy_fd, error, sizeof(int), 0);
 + if (pwrite(fcopy_fd, error, sizeof(int), 0) != sizeof(int)) {
 + syslog(LOG_ERR, pwrite failed: %s,strerror(errno));
 + exit(EXIT_FAILURE);
 + }
   }
  }
___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel


Re: [PATCH V2 1/1] Drivers: hv: Implement the file copy service

2014-01-20 Thread Olaf Hering
On Mon, Jan 20, KY Srinivasan wrote:

 I am cleaning up the code based on your feedback. By the time I am
 done with my cleanup, I doubt if this patch would apply. Do you mind
 if I were to include your changes here as part of my cleanup?

Yes, thats fine.


Olaf
___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel


RE: [PATCH V2 1/1] Drivers: hv: Implement the file copy service

2014-01-20 Thread KY Srinivasan


 -Original Message-
 From: Olaf Hering [mailto:o...@aepfle.de]
 Sent: Monday, January 20, 2014 2:16 PM
 To: KY Srinivasan
 Cc: gre...@linuxfoundation.org; linux-ker...@vger.kernel.org;
 de...@linuxdriverproject.org; a...@canonical.com; jasow...@redhat.com
 Subject: Re: [PATCH V2 1/1] Drivers: hv: Implement the file copy service
 
 On Mon, Jan 20, KY Srinivasan wrote:
 
  I am cleaning up the code based on your feedback. By the time I am
  done with my cleanup, I doubt if this patch would apply. Do you mind
  if I were to include your changes here as part of my cleanup?
 
 Yes, thats fine.

Thanks Olaf.

K. Y
 
 
 Olaf
___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel


Re: [PATCH V2 1/1] Drivers: hv: Implement the file copy service

2014-01-16 Thread Olaf Hering
On Tue, Jan 14, K. Y. Srinivasan wrote:

 +enum hv_fcopy_op {
 + START_FILE_COPY = 0,
 + WRITE_TO_FILE,
 + COMPLETE_FCOPY,
 + CANCEL_FCOPY,
 +};
 +
 +struct hv_fcopy_hdr {
 + enum hv_fcopy_op operation;
 + uuid_le service_id0; /* currently unused */
 + uuid_le service_id1; /* currently unused */
 +} __attribute__((packed));

Is enum a fixed size? This struct is used in other structs, so I wonder
what will happen to the kernel/user protocol if any of that changes. Or
with a 64bit kernel and 32bit daemon. Maybe operation should be __u32?


Olaf
___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel


Re: [PATCH V2 1/1] Drivers: hv: Implement the file copy service

2014-01-16 Thread Olaf Hering
On Tue, Jan 14, K. Y. Srinivasan wrote:

 Implement the file copy service for Linux guests on Hyper-V. This permits the
 host to copy a file (over VMBUS) into the guest. This facility is part of
 guest integration services supported on the Windows platform.
 Here is a link that provides additional details on this functionality:

The change below fixes some warnings in the daemon code.
Compile tested only.
I also think the newlines in some of the syslog calls should be removed.

Olaf


hv_fcopy_daemon.c: In function 'hv_start_fcopy':
hv_fcopy_daemon.c:44:3: warning: format '%s' expects argument of type 'char *', 
but argument 3 has type '__u16 *' [-Wformat=]
   smsg-file_name);
   ^
hv_fcopy_daemon.c:44:3: warning: format '%s' expects argument of type 'char *', 
but argument 5 has type '__u16 *' [-Wformat=]
hv_fcopy_daemon.c:57:6: warning: format '%s' expects argument of type 'char *', 
but argument 3 has type '__u16 *' [-Wformat=]
  errno, strerror(errno));
  ^
hv_fcopy_daemon.c:61:4: warning: format '%s' expects argument of type 'char *', 
but argument 3 has type '__u16 *' [-Wformat=]
syslog(LOG_ERR, Invalid path: %s\n, smsg-path_name);
^
hv_fcopy_daemon.c: In function 'main':
hv_fcopy_daemon.c:117:8: warning: ignoring return value of 'daemon', declared 
with attribute warn_unused_result [-Wunused-result]
  daemon(1, 0);
^
hv_fcopy_daemon.c:132:7: warning: ignoring return value of 'write', declared 
with attribute warn_unused_result [-Wunused-result]
  write(fcopy_fd, version, sizeof(int));
   ^
hv_fcopy_daemon.c:171:9: warning: ignoring return value of 'pwrite', declared 
with attribute warn_unused_result [-Wunused-result]
   pwrite(fcopy_fd, error, sizeof(int), 0);
 ^

Signed-off-by: Olaf Hering o...@aepfle.de

diff --git a/tools/hv/hv_fcopy_daemon.c b/tools/hv/hv_fcopy_daemon.c
index c0e5c90..d1fadb7 100644
--- a/tools/hv/hv_fcopy_daemon.c
+++ b/tools/hv/hv_fcopy_daemon.c
@@ -35,14 +35,14 @@
 #include dirent.h
 
 static int target_fd;
-char target_fname[W_MAX_PATH];
+static char target_fname[W_MAX_PATH];
 
 static int hv_start_fcopy(struct hv_start_fcopy *smsg)
 {
int error = HV_E_FAIL;
 
-   sprintf(target_fname, %s%s%s, smsg-path_name, /,
-   smsg-file_name);
+   snprintf(target_fname, sizeof(target_fname), %s/%s,
+   (char *)smsg-path_name, (char*)smsg-file_name);
 
syslog(LOG_INFO, Target file name: %s\n, target_fname);
/*
@@ -54,12 +54,12 @@ static int hv_start_fcopy(struct hv_start_fcopy *smsg)
if (mkdir((char *)smsg-path_name, 0755)) {
syslog(LOG_ERR,
Failed to create '%s'; error: %d %s\n,
-   smsg-path_name,
+   (char *)smsg-path_name,
errno, strerror(errno));
goto done;
}
} else {
-   syslog(LOG_ERR, Invalid path: %s\n, smsg-path_name);
+   syslog(LOG_ERR, Invalid path: %s, (char 
*)smsg-path_name);
goto done;
}
}
@@ -115,7 +115,8 @@ int main(void)
char *buffer[4096 * 2];
struct hv_fcopy_hdr *in_msg;
 
-   daemon(1, 0);
+   if (daemon(1, 0))
+   return 1;
openlog(HV_FCOPY, 0, LOG_USER);
syslog(LOG_INFO, HV_FCOPY starting; pid is:%d, getpid());
 
@@ -130,7 +131,10 @@ int main(void)
/*
 * Register with the kernel.
 */
-   write(fcopy_fd, version, sizeof(int));
+   if (write(fcopy_fd, version, sizeof(int)) != sizeof(int)) {
+   syslog(LOG_ERR, write failed: %s,strerror(errno));
+   exit(EXIT_FAILURE);
+   }
 
while (1) {
/*
@@ -169,6 +173,9 @@ int main(void)
 
}
 
-   pwrite(fcopy_fd, error, sizeof(int), 0);
+   if (pwrite(fcopy_fd, error, sizeof(int), 0) != sizeof(int)) {
+   syslog(LOG_ERR, pwrite failed: %s,strerror(errno));
+   exit(EXIT_FAILURE);
+   }
}
 }
___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel


Re: [PATCH V2 1/1] Drivers: hv: Implement the file copy service

2014-01-16 Thread Olaf Hering
On Tue, Jan 14, K. Y. Srinivasan wrote:

This function should return valid numbers:

 +static ssize_t fcopy_write(struct file *file, const char __user *buf,
 + size_t count, loff_t *ppos)
 +{
 + int error = 0;
 +
 + if (count != sizeof(int))
 + return 0;

Should be an error.

 +
 + if (copy_from_user(error, buf, sizeof(int)))
 + return -EFAULT;
 +
 + if (in_hand_shake) {
 + fcopy_handle_handshake();
 + return 0;

Should be sizeof(int).

 + }
 +
 + /*
 +  * Complete the transaction by forwarding the result
 +  * to the host. But first, cancel the timeout.
 +  */
 + if (cancel_delayed_work_sync(fcopy_work))
 + fcopy_respond_to_host(error);
 +
 + return sizeof(int);
 +}

___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel


RE: [PATCH V2 1/1] Drivers: hv: Implement the file copy service

2014-01-16 Thread KY Srinivasan


 -Original Message-
 From: Olaf Hering [mailto:o...@aepfle.de]
 Sent: Thursday, January 16, 2014 1:42 AM
 To: KY Srinivasan
 Cc: gre...@linuxfoundation.org; linux-ker...@vger.kernel.org;
 de...@linuxdriverproject.org; a...@canonical.com; jasow...@redhat.com
 Subject: Re: [PATCH V2 1/1] Drivers: hv: Implement the file copy service
 
 On Tue, Jan 14, K. Y. Srinivasan wrote:
 
  +enum hv_fcopy_op {
  +   START_FILE_COPY = 0,
  +   WRITE_TO_FILE,
  +   COMPLETE_FCOPY,
  +   CANCEL_FCOPY,
  +};
  +
  +struct hv_fcopy_hdr {
  +   enum hv_fcopy_op operation;
  +   uuid_le service_id0; /* currently unused */
  +   uuid_le service_id1; /* currently unused */
  +} __attribute__((packed));
 
 Is enum a fixed size? This struct is used in other structs, so I wonder
 what will happen to the kernel/user protocol if any of that changes. Or
 with a 64bit kernel and 32bit daemon. Maybe operation should be __u32?

I will check and make the necessary changes.

Thank you,

K. Y
 
 
 Olaf
___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel


RE: [PATCH V2 1/1] Drivers: hv: Implement the file copy service

2014-01-16 Thread KY Srinivasan


 -Original Message-
 From: Olaf Hering [mailto:o...@aepfle.de]
 Sent: Thursday, January 16, 2014 2:49 AM
 To: KY Srinivasan
 Cc: gre...@linuxfoundation.org; linux-ker...@vger.kernel.org;
 de...@linuxdriverproject.org; a...@canonical.com; jasow...@redhat.com
 Subject: Re: [PATCH V2 1/1] Drivers: hv: Implement the file copy service
 
 On Tue, Jan 14, K. Y. Srinivasan wrote:
 
  Implement the file copy service for Linux guests on Hyper-V. This permits 
  the
  host to copy a file (over VMBUS) into the guest. This facility is part of
  guest integration services supported on the Windows platform.
  Here is a link that provides additional details on this functionality:
 
 The change below fixes some warnings in the daemon code.
 Compile tested only.
 I also think the newlines in some of the syslog calls should be removed.
 
 Olaf
 
 
 hv_fcopy_daemon.c: In function 'hv_start_fcopy':
 hv_fcopy_daemon.c:44:3: warning: format '%s' expects argument of type 'char
 *', but argument 3 has type '__u16 *' [-Wformat=]
smsg-file_name);
^
 hv_fcopy_daemon.c:44:3: warning: format '%s' expects argument of type 'char
 *', but argument 5 has type '__u16 *' [-Wformat=]
 hv_fcopy_daemon.c:57:6: warning: format '%s' expects argument of type 'char
 *', but argument 3 has type '__u16 *' [-Wformat=]
   errno, strerror(errno));
   ^
 hv_fcopy_daemon.c:61:4: warning: format '%s' expects argument of type 'char
 *', but argument 3 has type '__u16 *' [-Wformat=]
 syslog(LOG_ERR, Invalid path: %s\n, smsg-path_name);
 ^
 hv_fcopy_daemon.c: In function 'main':
 hv_fcopy_daemon.c:117:8: warning: ignoring return value of 'daemon', declared
 with attribute warn_unused_result [-Wunused-result]
   daemon(1, 0);
 ^
 hv_fcopy_daemon.c:132:7: warning: ignoring return value of 'write', declared
 with attribute warn_unused_result [-Wunused-result]
   write(fcopy_fd, version, sizeof(int));
^
 hv_fcopy_daemon.c:171:9: warning: ignoring return value of 'pwrite', declared
 with attribute warn_unused_result [-Wunused-result]
pwrite(fcopy_fd, error, sizeof(int), 0);
  ^
 
 Signed-off-by: Olaf Hering o...@aepfle.de
 
 diff --git a/tools/hv/hv_fcopy_daemon.c b/tools/hv/hv_fcopy_daemon.c
 index c0e5c90..d1fadb7 100644
 --- a/tools/hv/hv_fcopy_daemon.c
 +++ b/tools/hv/hv_fcopy_daemon.c
 @@ -35,14 +35,14 @@
  #include dirent.h
 
  static int target_fd;
 -char target_fname[W_MAX_PATH];
 +static char target_fname[W_MAX_PATH];
 
  static int hv_start_fcopy(struct hv_start_fcopy *smsg)
  {
   int error = HV_E_FAIL;
 
 - sprintf(target_fname, %s%s%s, smsg-path_name, /,
 - smsg-file_name);
 + snprintf(target_fname, sizeof(target_fname), %s/%s,
 + (char *)smsg-path_name, (char*)smsg-file_name);
 
   syslog(LOG_INFO, Target file name: %s\n, target_fname);
   /*
 @@ -54,12 +54,12 @@ static int hv_start_fcopy(struct hv_start_fcopy *smsg)
   if (mkdir((char *)smsg-path_name, 0755)) {
   syslog(LOG_ERR,
   Failed to create '%s'; error: %d %s\n,
 - smsg-path_name,
 + (char *)smsg-path_name,
   errno, strerror(errno));
   goto done;
   }
   } else {
 - syslog(LOG_ERR, Invalid path: %s\n, smsg-
 path_name);
 + syslog(LOG_ERR, Invalid path: %s, (char *)smsg-
 path_name);
   goto done;
   }
   }
 @@ -115,7 +115,8 @@ int main(void)
   char *buffer[4096 * 2];
   struct hv_fcopy_hdr *in_msg;
 
 - daemon(1, 0);
 + if (daemon(1, 0))
 + return 1;
   openlog(HV_FCOPY, 0, LOG_USER);
   syslog(LOG_INFO, HV_FCOPY starting; pid is:%d, getpid());
 
 @@ -130,7 +131,10 @@ int main(void)
   /*
* Register with the kernel.
*/
 - write(fcopy_fd, version, sizeof(int));
 + if (write(fcopy_fd, version, sizeof(int)) != sizeof(int)) {
 + syslog(LOG_ERR, write failed: %s,strerror(errno));
 + exit(EXIT_FAILURE);
 + }
 
   while (1) {
   /*
 @@ -169,6 +173,9 @@ int main(void)
 
   }
 
 - pwrite(fcopy_fd, error, sizeof(int), 0);
 + if (pwrite(fcopy_fd, error, sizeof(int), 0) != sizeof(int)) {
 + syslog(LOG_ERR, pwrite failed: %s,strerror(errno));
 + exit(EXIT_FAILURE);
 + }
   }
  }

Thanks Olaf; I will include these changes in the next version.

K. Y
___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel


RE: [PATCH V2 1/1] Drivers: hv: Implement the file copy service

2014-01-16 Thread KY Srinivasan


 -Original Message-
 From: Olaf Hering [mailto:o...@aepfle.de]
 Sent: Thursday, January 16, 2014 3:27 AM
 To: KY Srinivasan
 Cc: gre...@linuxfoundation.org; linux-ker...@vger.kernel.org;
 de...@linuxdriverproject.org; a...@canonical.com; jasow...@redhat.com
 Subject: Re: [PATCH V2 1/1] Drivers: hv: Implement the file copy service
 
 On Tue, Jan 14, K. Y. Srinivasan wrote:
 
 This function should return valid numbers:
 
  +static ssize_t fcopy_write(struct file *file, const char __user *buf,
  +   size_t count, loff_t *ppos)
  +{
  +   int error = 0;
  +
  +   if (count != sizeof(int))
  +   return 0;
 
 Should be an error.
 
  +
  +   if (copy_from_user(error, buf, sizeof(int)))
  +   return -EFAULT;
  +
  +   if (in_hand_shake) {
  +   fcopy_handle_handshake();
  +   return 0;
 
 Should be sizeof(int).
 
  +   }
  +
  +   /*
  +* Complete the transaction by forwarding the result
  +* to the host. But first, cancel the timeout.
  +*/
  +   if (cancel_delayed_work_sync(fcopy_work))
  +   fcopy_respond_to_host(error);
  +
  +   return sizeof(int);
  +}
Olaf,

I will make the changes in the next version of this patch.

Thank you,

K. Y
___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel


Re: [PATCH V2 1/1] Drivers: hv: Implement the file copy service

2014-01-16 Thread Dan Carpenter
On Thu, Jan 16, 2014 at 10:42:01AM +0100, Olaf Hering wrote:
 On Tue, Jan 14, K. Y. Srinivasan wrote:
 
  +enum hv_fcopy_op {
  +   START_FILE_COPY = 0,
  +   WRITE_TO_FILE,
  +   COMPLETE_FCOPY,
  +   CANCEL_FCOPY,
  +};
  +
  +struct hv_fcopy_hdr {
  +   enum hv_fcopy_op operation;
  +   uuid_le service_id0; /* currently unused */
  +   uuid_le service_id1; /* currently unused */
  +} __attribute__((packed));
 
 Is enum a fixed size?

No, it's not.  The compiler has a lot of latitude in choosing the size
for enums.

regards,
dan carpenter

___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel


Re: [PATCH V2 1/1] Drivers: hv: Implement the file copy service

2014-01-15 Thread Olaf Hering
On Tue, Jan 14, K. Y. Srinivasan wrote:

 +static int hv_start_fcopy(struct hv_start_fcopy *smsg)

 + if (access((char *)smsg-path_name, F_OK)) {
 + if (smsg-copy_flags  CREATE_PATH) {
 + if (mkdir((char *)smsg-path_name, 0755)) {

KY,

I guess this needs a loop over every path compoment to implement
'mkdir -p', if the -CreateFullPath option is used?

Hopefully -DestinationPath is an arbitrary string and does not require
some sort of C: prefix. ;-)


Olaf
___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel


RE: [PATCH V2 1/1] Drivers: hv: Implement the file copy service

2014-01-15 Thread KY Srinivasan


 -Original Message-
 From: Olaf Hering [mailto:o...@aepfle.de]
 Sent: Wednesday, January 15, 2014 8:33 AM
 To: KY Srinivasan
 Cc: gre...@linuxfoundation.org; linux-ker...@vger.kernel.org;
 de...@linuxdriverproject.org; a...@canonical.com; jasow...@redhat.com
 Subject: Re: [PATCH V2 1/1] Drivers: hv: Implement the file copy service
 
 On Tue, Jan 14, K. Y. Srinivasan wrote:
 
  +static int hv_start_fcopy(struct hv_start_fcopy *smsg)
 
  +   if (access((char *)smsg-path_name, F_OK)) {
  +   if (smsg-copy_flags  CREATE_PATH) {
  +   if (mkdir((char *)smsg-path_name, 0755)) {
 
 KY,
 
 I guess this needs a loop over every path compoment to implement
 'mkdir -p', if the -CreateFullPath option is used?

Yes; I will make the change. The good news is that for the destination path and 
file name,
the host does not interpret the path components.

Regards,

K. Y
 
 Hopefully -DestinationPath is an arbitrary string and does not require
 some sort of C: prefix. ;-)
 
 
 Olaf
___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel


Re: [PATCH V2 1/1] Drivers: hv: Implement the file copy service

2014-01-14 Thread Olaf Hering
On Tue, Jan 14, K. Y. Srinivasan wrote:


 +static ssize_t fcopy_write(struct file *file, const char __user *buf,
 + size_t count, loff_t *ppos)
 +{
 + int error = 0;
 +
 + if (count != sizeof(int))
 + return 0;
 +
 + if (copy_from_user(error, buf, sizeof(int)))
 + return -EFAULT;
 +
 + if (in_hand_shake) {
 + fcopy_handle_handshake();
 + return 0;
 + }


 + /*
 +  * Register with the kernel.
 +  */
 + write(fcopy_fd, version, sizeof(int));


Shouldnt there be some version check already even in this initial
implementation? What if there will be a newer daemon running on an older
kernel?

Olaf
___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel


RE: [PATCH V2 1/1] Drivers: hv: Implement the file copy service

2014-01-14 Thread KY Srinivasan


 -Original Message-
 From: Olaf Hering [mailto:o...@aepfle.de]
 Sent: Tuesday, January 14, 2014 2:13 PM
 To: KY Srinivasan
 Cc: gre...@linuxfoundation.org; linux-ker...@vger.kernel.org;
 de...@linuxdriverproject.org; a...@canonical.com; jasow...@redhat.com
 Subject: Re: [PATCH V2 1/1] Drivers: hv: Implement the file copy service
 
 On Tue, Jan 14, K. Y. Srinivasan wrote:
 
 
  +static ssize_t fcopy_write(struct file *file, const char __user *buf,
  +   size_t count, loff_t *ppos)
  +{
  +   int error = 0;
  +
  +   if (count != sizeof(int))
  +   return 0;
  +
  +   if (copy_from_user(error, buf, sizeof(int)))
  +   return -EFAULT;
  +
  +   if (in_hand_shake) {
  +   fcopy_handle_handshake();
  +   return 0;
  +   }
 
 
  +   /*
  +* Register with the kernel.
  +*/
  +   write(fcopy_fd, version, sizeof(int));
 
 
 Shouldnt there be some version check already even in this initial
 implementation? What if there will be a newer daemon running on an older
 kernel?

Currently, the daemon registers with the kernel passing its version number. I 
will make the
version check real.

Thanks,

K. Y
 
 Olaf
___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel