TRACE("%p", list_ptr);
+ if (!list_ptr)
+ RETURN_ERROR(SP_ERR_ARG, "Null result pointer");
+
DEBUG("Enumerating ports");
if (!(list = malloc(sizeof(struct sp_port **))))
TRACE("%p", list);
+ if (!list) {
+ DEBUG("Null list");
+ RETURN();
+ }
+
DEBUG("Freeing port list");
for (i = 0; list[i]; i++)
RETURN();
}
-#ifdef _WIN32
#define CHECK_PORT() do { \
if (port == NULL) \
RETURN_ERROR(SP_ERR_ARG, "Null port"); \
+ if (port->name == NULL) \
+ RETURN_ERROR(SP_ERR_ARG, "Null port name"); \
+} while (0)
+#ifdef _WIN32
+#define CHECK_PORT_HANDLE() do { \
if (port->hdl == INVALID_HANDLE_VALUE) \
RETURN_ERROR(SP_ERR_ARG, "Invalid port handle"); \
-} while(0);
+} while (0)
#else
-#define CHECK_PORT() do { \
- if (port == NULL) \
- RETURN_ERROR(SP_ERR_ARG, "Null port"); \
+#define CHECK_PORT_HANDLE() do { \
if (port->fd < 0) \
RETURN_ERROR(SP_ERR_ARG, "Invalid port fd"); \
-} while(0);
+} while (0)
#endif
+#define CHECK_OPEN_PORT() do { \
+ CHECK_PORT(); \
+ CHECK_PORT_HANDLE(); \
+} while (0)
enum sp_return sp_open(struct sp_port *port, enum sp_mode flags)
{
TRACE("%p, %x", port, flags);
- if (!port)
- RETURN_ERROR(SP_ERR_ARG, "Null port");
+ CHECK_PORT();
+
+ if (flags > (SP_MODE_READ | SP_MODE_WRITE | SP_MODE_NONBLOCK))
+ RETURN_ERROR(SP_ERR_ARG, "Invalid flags");
DEBUG("Opening port %s", port->name);
{
TRACE("%p", port);
- CHECK_PORT();
+ CHECK_OPEN_PORT();
DEBUG("Closing port %s", port->name);
{
TRACE("%p, %x", port, buffers);
- CHECK_PORT();
+ CHECK_OPEN_PORT();
+
+ if (buffers > SP_BUF_BOTH)
+ RETURN_ERROR(SP_ERR_ARG, "Invalid buffer selection");
const char *buffer_names[] = {"input", "output", "both"};
{
TRACE("%p", port);
- CHECK_PORT();
+ CHECK_OPEN_PORT();
DEBUG("Draining port %s", port->name);
{
TRACE("%p, %p, %d", port, buf, count);
- CHECK_PORT();
+ CHECK_OPEN_PORT();
if (!buf)
RETURN_ERROR(SP_ERR_ARG, "Null buffer");
{
TRACE("%p, %p, %d", port, buf, count);
- CHECK_PORT();
+ CHECK_OPEN_PORT();
if (!buf)
RETURN_ERROR(SP_ERR_ARG, "Null buffer");
TRACE("%p, %p", port, config);
- CHECK_PORT();
+ CHECK_OPEN_PORT();
if (!config)
RETURN_ERROR(SP_ERR_ARG, "Null config");
struct port_data data; \
struct sp_port_config config; \
TRACE("%p, %d", port, x); \
- CHECK_PORT(); \
+ CHECK_OPEN_PORT(); \
TRY(get_config(port, &data, &config)); \
config.x = x; \
TRY(set_config(port, &data, &config)); \
TRACE("%p, %d", port, flowcontrol);
- CHECK_PORT();
+ CHECK_OPEN_PORT();
+
+ if (flowcontrol > SP_FLOWCONTROL_DTRDSR)
+ RETURN_ERROR(SP_ERR_ARG, "Invalid flow control setting");
TRY(get_config(port, &data, &config));
{
TRACE("%p, %p", port, signals);
- CHECK_PORT();
+ CHECK_OPEN_PORT();
if (!signals)
RETURN_ERROR(SP_ERR_ARG, "Null result pointer");
{
TRACE("%p", port);
- CHECK_PORT();
+ CHECK_OPEN_PORT();
#ifdef _WIN32
if (SetCommBreak(port->hdl) == 0)
RETURN_FAIL("SetCommBreak() failed");
{
TRACE("%p", port);
- CHECK_PORT();
+ CHECK_OPEN_PORT();
#ifdef _WIN32
if (ClearCommBreak(port->hdl) == 0)
RETURN_FAIL("ClearCommBreak() failed");