-
Notifications
You must be signed in to change notification settings - Fork 197
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pull upstream changes from libxls #442
Conversation
Here's the previous PR I used to reconcile libxls with what we have here: I'm going to transfer knowledge from there to here |
src/libxls/ole.h
Outdated
@@ -37,7 +37,7 @@ | |||
|
|||
#include "libxls/xlstypes.h" | |||
|
|||
#if defined(_AIX) || defined(__sun) | |||
#ifdef AIX |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
src/libxls/ole.h
Outdated
@@ -129,15 +140,15 @@ typedef struct OLE2Stream | |||
} | |||
OLE2Stream; | |||
|
|||
#if defined(_AIX) || defined(__sun) | |||
#ifdef AIX | |||
#pragma pack(1) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See explanation at first instance of this in ole.h
.
src/libxls/xlsstruct.h
Outdated
@@ -80,7 +80,7 @@ | |||
|
|||
#define BLANK_CELL XLS_RECORD_BLANK // compat | |||
|
|||
#if defined(_AIX) || defined(__sun) | |||
#ifdef AIX | |||
#pragma pack(1) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See explanation at first instance of this in ole.h
.
@@ -124,7 +123,7 @@ typedef struct BOUNDSHEET | |||
DWORD filepos; | |||
BYTE type; | |||
BYTE visible; | |||
BYTE name[1]; | |||
char name[]; | |||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@hadley previously said: I have a vague memory that these were necessary to support the version of C/C++ we use
This change and several other instances of []
-> [1]
and [0]
-> [1]
were made by @hadley in 6f8304c "Attempted fixes for CRAN issues". Multiple instances here in xlsstruct.h
as well as several more in xls.c
.
If I ever want to read more about this, this SO thread looks like the place to start. It seems to be about "flexible array members" and, yes, what's kosher varies by compiler.
@@ -195,7 +194,7 @@ typedef struct MULRK | |||
struct { | |||
WORD xf; | |||
DWORD_UA value; | |||
} rk[1]; | |||
} rk[]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See explanation at first instance of this in xlsstruct.h
.
@@ -204,7 +203,7 @@ typedef struct MULBLANK | |||
{ | |||
WORD row; | |||
WORD col; | |||
WORD xf[1]; | |||
WORD xf[]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See explanation at first instance of this in xlsstruct.h
.
@@ -222,7 +221,7 @@ typedef struct LABEL | |||
WORD row; | |||
WORD col; | |||
WORD xf; | |||
BYTE value[1]; // var | |||
BYTE value[]; // var | |||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See explanation at first instance of this in xlsstruct.h
.
} | ||
FONT; | ||
|
||
typedef struct FORMAT | ||
{ | ||
WORD index; | ||
BYTE value[1]; | ||
char value[]; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See explanation at first instance of this in xlsstruct.h
.
src/libxls/xlstool.h
Outdated
@@ -31,15 +31,13 @@ | |||
*/ | |||
|
|||
#include "libxls/xlsstruct.h" | |||
/* Mask illegal functions for CMD check */ | |||
#include "cran.h" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
From previous reconciliation:
cran.h
is also included in ole.c
, prefaced with this comment:
/* Mask illegal functions for CMD check */
From the travis logs on the first commit in this PR, I gather that the inclusion of cran.h
is aimed at preventing these errors:
* checking compiled code ... WARNING
File ‘readxl/libs/readxl.so’:
Found ‘exit’, possibly from ‘exit’ (C)
Object: ‘ole.o’
Found ‘putchar’, possibly from ‘putchar’ (C)
Object: ‘xls.o’
Found ‘puts’, possibly from ‘printf’ (C), ‘puts’ (C)
Objects: ‘ole.o’, ‘xls.o’, ‘xlstool.o’
Found ‘stderr’, possibly from ‘stderr’ (C)
Object: ‘ole.o’
Compiled code should not call entry points which might terminate R nor
write to stdout/stderr instead of to the console, nor the system RNG.
See ‘Writing portable packages’ in the ‘Writing R Extensions’ manual.
From the content of cran.h
, it is obvious to me why it suppresses warnings re: exit
and printf
. It is not obvious to me how it has any effect on the warnings re: putchar
and stderr
.
src/libxls/xlstool.h
Outdated
@@ -49,6 +47,6 @@ extern void xls_showCell(struct st_cell_data* cell); | |||
extern void xls_showFont(struct st_font_data* font); | |||
extern void xls_showXF(XF8* xf); | |||
extern void xls_showFormat(struct st_format_data* format); | |||
extern BYTE* xls_getfcell(xlsWorkBook* pWB,struct st_cell_data* cell,BYTE *label); | |||
extern char* xls_getfcell(xlsWorkBook* pWB, struct st_cell_data* cell, WORD *label); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated signature for xls_getfcell()
: label
should be pointer to BYTE
instead of DWORD
(recent-ish hack from Jenny, semi-unfortunately already accepted upstream) or WORD
(as we found libxls, also incorrect, and what Jenny was trying to fix).
This is one of the changes from @jimhester that I believe should go upstream.
Discussion here: #312 (comment)
readxl commit making this change: 357e473
Patch proposed to libxls: https://sourceforge.net/p/libxls/patches/13/
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Part of libxls/libxls#10
src/ole.c
Outdated
#include "libxls/ole.h" | ||
#include "libxls/xlstool.h" | ||
#include "libxls/endian.h" | ||
/* Mask illegal functions for CMD check */ | ||
#include "cran.h" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See explanation upon first instance of this in xlstool.h
.
src/ole.c
Outdated
|
||
assert(olest->fatpos >= 0); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Came up in last reconciliation but I think we just accept/evaluate the larger change here.
Previous notes: 33dd9a0#r111018675
|
||
#ifndef min | ||
#define min(a,b) ((a) < (b) ? (a) : (b)) | ||
#endif | ||
|
||
// #define DEBUG_DRAWINGS | ||
//#define DEBUG_DRAWINGS |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We had commented this out a long time ago.
src/xls.c
Outdated
extern void xls_parseWorkSheet(xlsWorkSheet* pWS); | ||
extern void xls_dumpSummary(char *buf,int isSummary,xlsSummaryInfo *pSI); | ||
|
||
#if defined(_AIX) || defined(__sun) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See explanation of just the above line at first instance of this in ole.h
.
@@ -91,7 +90,7 @@ typedef struct { | |||
uint32_t os; | |||
uint32_t format[4]; | |||
uint32_t count; | |||
sectionList secList[1]; | |||
sectionList secList[0]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See explanation at first instance of this in xlsstruct.h
.
src/xls.c
Outdated
sscanf((char *)cell->str, "%lf", &cell->d); | ||
if (bof->size < sizeof(LABEL)) | ||
return NULL; | ||
cell->str=xls_getfcell(pWS->workbook,cell,(WORD_UA *)&((LABEL*)buf)->value); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See above. We want the BYTE
version. I believe this is a case where readxl has a change to send upstream.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Part of libxls/libxls#10
src/xls.c
Outdated
@@ -1453,7 +1708,7 @@ xlsCell *xls_cell(xlsWorkSheet* pWS, WORD cellRow, WORD cellCol) | |||
|
|||
if(cellRow > pWS->rows.lastrow) return NULL; | |||
row = &pWS->rows.row[cellRow]; | |||
if(cellCol > row->lcell) return NULL; | |||
if(cellCol >= row->lcell) return NULL; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was me and we want the >
version. However, the situation is murky enough that it's not clear this change should go upstream.
I should definitely test w/o this change, given all the other changes in this file. Perhaps the root problem has been addressed in a different way.
@@ -57,8 +57,6 @@ | |||
|
|||
extern int xls_debug; | |||
|
|||
// static void xls_showBOUNDSHEET(void* bsheet); | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We had deleted. I changed to commenting out. So take this deletion.
#endif | ||
|
||
#endif | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We had edits in the above code FWIW:
src/xlstool.c
Outdated
{ | ||
#ifdef HAVE_ICONV | ||
// Do iconv conversion | ||
#if defined(_AIX) || defined(__sun) | ||
#ifdef AIX | ||
const char *from_enc = "UTF-16le"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See explanation at first instance of this in ole.h
.
st = iconv(ic, (char **)&src_ptr, &inlenleft, (char **)&out_ptr,(size_t *) &outlenleft); | ||
#endif | ||
if(st == (size_t)(-1)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These lines added in 81443a1 "Fix remaining windows/R CMD check problems", along with a very similar change in endian.c
.
src/xlstool.c
Outdated
@@ -628,78 +559,89 @@ void xls_showXF(XF8* xf) | |||
printf("GroundColor: 0x%x\n",xf->groundcolor); | |||
} | |||
|
|||
BYTE *xls_getfcell(xlsWorkBook* pWB,struct st_cell_data* cell,BYTE *label) | |||
char *xls_getfcell(xlsWorkBook* pWB, struct st_cell_data* cell, WORD *label) | |||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See main discussion of this change to xls_getfcell()
in xlstoolh.h
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Part of libxls/libxls#10
break; | ||
case XLS_RECORD_BLANK: | ||
case XLS_RECORD_MULBLANK: | ||
asprintf(&ret, "%s", ""); | ||
ret = strdup(""); | ||
break; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We already/also differed from upstream here. Note that asprintf()
has been deleted above.
src/xlstool.c
Outdated
break; | ||
case XLS_RECORD_LABEL: | ||
len = xlsShortVal(*label); | ||
label += 2; | ||
label++; | ||
if(pWB->is5ver) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See main discussion of this change to xls_getfcell()
in xlstoolh.h
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Part of libxls/libxls#10
@@ -38,13 +38,9 @@ | |||
#include <stdio.h> | |||
#include <stdlib.h> | |||
|
|||
#include <assert.h> | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Related to recent changes in libxls
Eliminate exits and asserts. Hooray!
Libraries should not exit. Rework internal API to bubble errors up instead of exiting.
libxls/libxls@c36e88d
@@ -41,40 +41,39 @@ | |||
#include <sys/types.h> | |||
#include <string.h> | |||
#include <wchar.h> | |||
#include <assert.h> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Related to recent changes in libxls
Eliminate exits and asserts. Hooray!
Libraries should not exit. Rework internal API to bubble errors up instead of exiting.
libxls/libxls@c36e88d
dd42105
to
24f70d4
Compare
e6263ab
to
3bcab5b
Compare
b->min_ver = xlsIntVal(b->min_ver); | ||
} | ||
b->flags = xlsIntVal(b->flags); | ||
b->min_ver = xlsIntVal(b->min_ver); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is being addressed now in libxls, in a different way. We'll let go of our fix.
Fixes #441 Incorporate upstream changes to libxls to address security vulnerabilities
Syncs with libxls as of libxls/libxls@c7e5e49