[Bugs] [Bug 1296007] New: libgfapi: Errno incorrectly set to EINVAL even on success
bugzilla at redhat.com
bugzilla at redhat.com
Wed Jan 6 05:58:13 UTC 2016
https://bugzilla.redhat.com/show_bug.cgi?id=1296007
Bug ID: 1296007
Summary: libgfapi: Errno incorrectly set to EINVAL even on
success
Product: GlusterFS
Version: 3.7.7
Component: libgfapi
Keywords: EasyFix, Triaged
Severity: low
Priority: high
Assignee: bugs at gluster.org
Reporter: ppai at redhat.com
QA Contact: sdharane at redhat.com
CC: bugs at gluster.org, gluster-bugs at redhat.com,
sdharane at redhat.com, thiago at redhat.com
Depends On: 1289068
+++ This bug was initially created as a clone of Bug #1289068 +++
Description of problem:
Errno is incorrectly set to EINVAL even on success, for subsequent glfs_*
calls.
[root at hummingbird ~]# rpm -qa | grep glusterfs
glusterfs-3.7.6-1.fc22.x86_64
glusterfs-cli-3.7.6-1.fc22.x86_64
glusterfs-devel-3.7.6-1.fc22.x86_64
glusterfs-libs-3.7.6-1.fc22.x86_64
glusterfs-client-xlators-3.7.6-1.fc22.x86_64
glusterfs-fuse-3.7.6-1.fc22.x86_64
glusterfs-server-3.7.6-1.fc22.x86_64
glusterfs-extra-xlators-3.7.6-1.fc22.x86_64
glusterfs-api-devel-3.7.6-1.fc22.x86_64
glusterfs-api-3.7.6-1.fc22.x86_64
Example:
Even though glfs_fstat() returns success (zero), errno is set to EINVAL. It
doesn't matter that the second glfs_* call is glfs_stat(). Even if you have
glfs_write() twice, errno is set to EINVAL for the second call.
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
#include "api/glfs.h"
int main () {
glfs_t *fs = NULL;
int ret = 0;
glfs_fd_t *glfd = NULL;
char *buf = NULL;
struct stat sb;
fs = glfs_new ("test");
glfs_set_volfile_server (fs, "tcp", "localhost", 24007);
glfs_set_logging (fs, NULL, 7);
glfs_init (fs);
glfd = glfs_creat(fs, "/file.txt", O_WRONLY, 0666);
// Comment out this write to see the bug magically go away!
ret = glfs_write (glfd, "qwertyuiopasdfghjklzxcvbnm", 26, 0);
printf("errno after write(), before fstat(): %d\n", errno);
ret = glfs_fstat(glfd, &sb);
printf("glfs_fstat() returned: %d\n", ret);
printf("errno after: %d\n", errno);
ret = glfs_close(glfd);
ret = glfs_fini (fs);
}
Steps to Reproduce:
*******************
# gcc err.c -I /usr/include/glusterfs/ -lgfapi -O0 -ggdb -o ./err
# ./err
Actual results:
***************
# ./err
errno after write(), before fstat(): 0
glfs_fstat() returned: 0
errno after: 22
// After commenting out first call - glfs_write()
# ./err
errno after write(), before fstat(): 0
glfs_fstat() returned: 0
errno after: 0
Expected results:
*****************
# ./err
errno after write(), before fstat(): 0
glfs_fstat() returned: 0
errno after: 0
Additional info:
****************
C programs usually check return value first and then the errno. But the control
flow in golang is different.
ret, err := C.glfs_fstat(fd.fd, (*C.struct_stat)(unsafe.Pointer(stat)))
if err != nil {
// Failure! handle error
} else {
// Success! consume entity returned by C call. In this case "stat"
}
--- Additional comment from Prashanth Pai on 2015-12-07 06:41:52 EST ---
This should also reproduce the behavior:
ret = glfs_write (glfd, "qwertyuiopasdfghjklzxcvbnm", 26, 0);
printf("errno after first write(): %d\n", errno);
ret = glfs_write (glfd, "qwertyuiopasdfghjklzxcvbnm", 26, 0);
printf("errno after second write(): %d\n", errno);
# ./err
errno after first write(): 0
errno after second write(): 22
--- Additional comment from Vijay Bellur on 2015-12-08 06:15:57 EST ---
REVIEW: http://review.gluster.org/12909 (Fix errno being set to EINVAL even on
success) posted (#1) for review on master by Prashanth Pai (ppai at redhat.com)
--- Additional comment from Vijay Bellur on 2015-12-08 10:37:13 EST ---
REVIEW: http://review.gluster.org/12909 (Fix errno being set to EINVAL even on
success) posted (#2) for review on master by Vijay Bellur (vbellur at redhat.com)
--- Additional comment from Vijay Bellur on 2015-12-08 16:49:27 EST ---
REVIEW: http://review.gluster.org/12909 (api: Fix errno being set to EINVAL
even on success) posted (#3) for review on master by Vijay Bellur
(vbellur at redhat.com)
--- Additional comment from Vijay Bellur on 2015-12-08 16:49:33 EST ---
REVIEW: http://review.gluster.org/12909 (api: Fix errno being set to EINVAL
even on success) posted (#4) for review on master by Vijay Bellur
(vbellur at redhat.com)
--- Additional comment from Vijay Bellur on 2016-01-05 10:41:14 EST ---
COMMIT: http://review.gluster.org/12909 committed in master by Shyamsundar
Ranganathan (srangana at redhat.com)
------
commit 1e779acec75842b0e8d5a34ac2ea52f9caeff4d1
Author: Prashanth Pai <ppai at redhat.com>
Date: Tue Dec 8 16:28:39 2015 +0530
api: Fix errno being set to EINVAL even on success
BUG: 1289068
Change-Id: I7905ac70a537f23e1844c097a24eaa6cb762fb82
Signed-off-by: Prashanth Pai <ppai at redhat.com>
Reviewed-on: http://review.gluster.org/12909
Tested-by: NetBSD Build System <jenkins at build.gluster.org>
Tested-by: Gluster Build System <jenkins at build.gluster.com>
Reviewed-by: jiffin tony Thottan <jthottan at redhat.com>
Reviewed-by: Kaushal M <kaushal at redhat.com>
Reviewed-by: Shyamsundar Ranganathan <srangana at redhat.com>
Referenced Bugs:
https://bugzilla.redhat.com/show_bug.cgi?id=1289068
[Bug 1289068] libgfapi: Errno incorrectly set to EINVAL even on success
--
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
More information about the Bugs
mailing list