Commit c9231f82 authored by David S. Miller's avatar David S. Miller

Merge branch 'gigaset_modem_response'

Tilman Schmidt says:

====================
isdn/gigaset: restructure modem response parser

This series of patches restructures the Gigaset ISDN driver's
modem response parser to improve code readability and conform
better to the device's specification and actual behaviour.
Could you please merge these through net-next?
====================
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parents 558d51fa 4656e0a3
...@@ -389,22 +389,49 @@ zsau_resp[] = ...@@ -389,22 +389,49 @@ zsau_resp[] =
{NULL, ZSAU_UNKNOWN} {NULL, ZSAU_UNKNOWN}
}; };
/* retrieve CID from parsed response /* check for and remove fixed string prefix
* returns 0 if no CID, -1 if invalid CID, or CID value 1..65535 * If s starts with prefix terminated by a non-alphanumeric character,
* return pointer to the first character after that, otherwise return NULL.
*/ */
static int cid_of_response(char *s) static char *skip_prefix(char *s, const char *prefix)
{ {
int cid; while (*prefix)
int rc; if (*s++ != *prefix++)
return NULL;
if (s[-1] != ';') if (isalnum(*s))
return 0; /* no CID separator */ return NULL;
rc = kstrtoint(s, 10, &cid); return s;
if (rc) }
return 0; /* CID not numeric */
if (cid < 1 || cid > 65535) /* queue event with CID */
return -1; /* CID out of range */ static void add_cid_event(struct cardstate *cs, int cid, int type,
return cid; void *ptr, int parameter)
{
unsigned long flags;
unsigned next, tail;
struct event_t *event;
gig_dbg(DEBUG_EVENT, "queueing event %d for cid %d", type, cid);
spin_lock_irqsave(&cs->ev_lock, flags);
tail = cs->ev_tail;
next = (tail + 1) % MAX_EVENTS;
if (unlikely(next == cs->ev_head)) {
dev_err(cs->dev, "event queue full\n");
kfree(ptr);
} else {
event = cs->events + tail;
event->type = type;
event->cid = cid;
event->ptr = ptr;
event->arg = NULL;
event->parameter = parameter;
event->at_state = NULL;
cs->ev_tail = next;
}
spin_unlock_irqrestore(&cs->ev_lock, flags);
} }
/** /**
...@@ -417,190 +444,188 @@ static int cid_of_response(char *s) ...@@ -417,190 +444,188 @@ static int cid_of_response(char *s)
*/ */
void gigaset_handle_modem_response(struct cardstate *cs) void gigaset_handle_modem_response(struct cardstate *cs)
{ {
unsigned char *argv[MAX_REC_PARAMS + 1]; char *eoc, *psep, *ptr;
int params;
int i, j;
const struct resp_type_t *rt; const struct resp_type_t *rt;
const struct zsau_resp_t *zr; const struct zsau_resp_t *zr;
int curarg; int cid, parameter;
unsigned long flags; u8 type, value;
unsigned next, tail, head;
struct event_t *event; if (!cs->cbytes) {
int resp_code;
int param_type;
int abort;
size_t len;
int cid;
int rawstring;
len = cs->cbytes;
if (!len) {
/* ignore additional LFs/CRs (M10x config mode or cx100) */ /* ignore additional LFs/CRs (M10x config mode or cx100) */
gig_dbg(DEBUG_MCMD, "skipped EOL [%02X]", cs->respdata[0]); gig_dbg(DEBUG_MCMD, "skipped EOL [%02X]", cs->respdata[0]);
return; return;
} }
cs->respdata[len] = 0; cs->respdata[cs->cbytes] = 0;
argv[0] = cs->respdata;
params = 1;
if (cs->at_state.getstring) { if (cs->at_state.getstring) {
/* getstring only allowed without cid at the moment */ /* state machine wants next line verbatim */
cs->at_state.getstring = 0; cs->at_state.getstring = 0;
rawstring = 1; ptr = kstrdup(cs->respdata, GFP_ATOMIC);
cid = 0; gig_dbg(DEBUG_EVENT, "string==%s", ptr ? ptr : "NULL");
} else { add_cid_event(cs, 0, RSP_STRING, ptr, 0);
/* parse line */ return;
for (i = 0; i < len; i++)
switch (cs->respdata[i]) {
case ';':
case ',':
case '=':
if (params > MAX_REC_PARAMS) {
dev_warn(cs->dev,
"too many parameters in response\n");
/* need last parameter (might be CID) */
params--;
}
argv[params++] = cs->respdata + i + 1;
} }
rawstring = 0; /* look up response type */
cid = params > 1 ? cid_of_response(argv[params - 1]) : 0; for (rt = resp_type; rt->response; ++rt) {
if (cid < 0) { eoc = skip_prefix(cs->respdata, rt->response);
gigaset_add_event(cs, &cs->at_state, RSP_INVAL, if (eoc)
NULL, 0, NULL); break;
}
if (!rt->response) {
add_cid_event(cs, 0, RSP_NONE, NULL, 0);
gig_dbg(DEBUG_EVENT, "unknown modem response: '%s'\n",
cs->respdata);
return; return;
} }
for (j = 1; j < params; ++j) /* check for CID */
argv[j][-1] = 0; psep = strrchr(cs->respdata, ';');
if (psep &&
gig_dbg(DEBUG_EVENT, "CMD received: %s", argv[0]); !kstrtoint(psep + 1, 10, &cid) &&
if (cid) { cid >= 1 && cid <= 65535) {
--params; /* valid CID: chop it off */
gig_dbg(DEBUG_EVENT, "CID: %s", argv[params]); *psep = 0;
} } else {
gig_dbg(DEBUG_EVENT, "available params: %d", params - 1); /* no valid CID: leave unchanged */
for (j = 1; j < params; j++) cid = 0;
gig_dbg(DEBUG_EVENT, "param %d: %s", j, argv[j]);
} }
spin_lock_irqsave(&cs->ev_lock, flags); gig_dbg(DEBUG_EVENT, "CMD received: %s", cs->respdata);
head = cs->ev_head; if (cid)
tail = cs->ev_tail; gig_dbg(DEBUG_EVENT, "CID: %d", cid);
abort = 1; switch (rt->type) {
curarg = 0; case RT_NOTHING:
while (curarg < params) { /* check parameter separator */
next = (tail + 1) % MAX_EVENTS; if (*eoc)
if (unlikely(next == head)) { goto bad_param; /* extra parameter */
dev_err(cs->dev, "event queue full\n");
add_cid_event(cs, cid, rt->resp_code, NULL, 0);
break; break;
}
event = cs->events + tail; case RT_RING:
event->at_state = NULL; /* check parameter separator */
event->cid = cid; if (!*eoc)
event->ptr = NULL; eoc = NULL; /* no parameter */
event->arg = NULL; else if (*eoc++ != ',')
tail = next; goto bad_param;
if (rawstring) { add_cid_event(cs, 0, rt->resp_code, NULL, cid);
resp_code = RSP_STRING;
param_type = RT_STRING;
} else {
for (rt = resp_type; rt->response; ++rt)
if (!strcmp(argv[curarg], rt->response))
break;
if (!rt->response) { /* process parameters as individual responses */
event->type = RSP_NONE; while (eoc) {
gig_dbg(DEBUG_EVENT, /* look up parameter type */
"unknown modem response: '%s'\n", psep = NULL;
argv[curarg]); for (rt = resp_type; rt->response; ++rt) {
psep = skip_prefix(eoc, rt->response);
if (psep)
break; break;
} }
resp_code = rt->resp_code; /* all legal parameters are of type RT_STRING */
param_type = rt->type; if (!psep || rt->type != RT_STRING) {
++curarg; dev_warn(cs->dev,
"illegal RING parameter: '%s'\n",
eoc);
return;
} }
event->type = resp_code; /* skip parameter value separator */
if (*psep++ != '=')
goto bad_param;
switch (param_type) { /* look up end of parameter */
case RT_NOTHING: eoc = strchr(psep, ',');
break; if (eoc)
case RT_RING: *eoc++ = 0;
if (!cid) {
dev_err(cs->dev, /* retrieve parameter value */
"received RING without CID!\n"); ptr = kstrdup(psep, GFP_ATOMIC);
event->type = RSP_INVAL;
abort = 1; /* queue event */
} else { add_cid_event(cs, cid, rt->resp_code, ptr, 0);
event->cid = 0;
event->parameter = cid;
abort = 0;
} }
break; break;
case RT_ZSAU: case RT_ZSAU:
if (curarg >= params) { /* check parameter separator */
event->parameter = ZSAU_NONE; if (!*eoc) {
/* no parameter */
add_cid_event(cs, cid, rt->resp_code, NULL, ZSAU_NONE);
break; break;
} }
if (*eoc++ != '=')
goto bad_param;
/* look up parameter value */
for (zr = zsau_resp; zr->str; ++zr) for (zr = zsau_resp; zr->str; ++zr)
if (!strcmp(argv[curarg], zr->str)) if (!strcmp(eoc, zr->str))
break; break;
event->parameter = zr->code;
if (!zr->str) if (!zr->str)
dev_warn(cs->dev, goto bad_param;
"%s: unknown parameter %s after ZSAU\n",
__func__, argv[curarg]); add_cid_event(cs, cid, rt->resp_code, NULL, zr->code);
++curarg;
break; break;
case RT_STRING: case RT_STRING:
if (curarg < params) { /* check parameter separator */
event->ptr = kstrdup(argv[curarg], GFP_ATOMIC); if (*eoc++ != '=')
if (!event->ptr) goto bad_param;
dev_err(cs->dev, "out of memory\n");
++curarg; /* retrieve parameter value */
} ptr = kstrdup(eoc, GFP_ATOMIC);
gig_dbg(DEBUG_EVENT, "string==%s",
event->ptr ? (char *) event->ptr : "NULL"); /* queue event */
add_cid_event(cs, cid, rt->resp_code, ptr, 0);
break; break;
case RT_ZCAU: case RT_ZCAU:
event->parameter = -1; /* check parameter separators */
if (curarg + 1 < params) { if (*eoc++ != '=')
u8 type, value; goto bad_param;
psep = strchr(eoc, ',');
if (!psep)
goto bad_param;
*psep++ = 0;
i = kstrtou8(argv[curarg++], 16, &type); /* decode parameter values */
j = kstrtou8(argv[curarg++], 16, &value); if (kstrtou8(eoc, 16, &type) || kstrtou8(psep, 16, &value)) {
if (i == 0 && j == 0) *--psep = ',';
event->parameter = (type << 8) | value; goto bad_param;
} else }
curarg = params - 1; parameter = (type << 8) | value;
add_cid_event(cs, cid, rt->resp_code, NULL, parameter);
break; break;
case RT_NUMBER: case RT_NUMBER:
if (curarg >= params || /* check parameter separator */
kstrtoint(argv[curarg++], 10, &event->parameter)) if (*eoc++ != '=')
event->parameter = -1; goto bad_param;
gig_dbg(DEBUG_EVENT, "parameter==%d", event->parameter);
break; /* decode parameter value */
} if (kstrtoint(eoc, 10, &parameter))
goto bad_param;
if (resp_code == RSP_ZDLE) /* special case ZDLE: set flag before queueing event */
cs->dle = event->parameter; if (rt->resp_code == RSP_ZDLE)
cs->dle = parameter;
if (abort) add_cid_event(cs, cid, rt->resp_code, NULL, parameter);
break; break;
}
cs->ev_tail = tail; bad_param:
spin_unlock_irqrestore(&cs->ev_lock, flags); /* parameter unexpected, incomplete or malformed */
dev_warn(cs->dev, "bad parameter in response '%s'\n",
cs->respdata);
add_cid_event(cs, cid, rt->resp_code, NULL, -1);
break;
if (curarg != params) default:
gig_dbg(DEBUG_EVENT, dev_err(cs->dev, "%s: internal error on '%s'\n",
"invalid number of processed parameters: %d/%d", __func__, cs->respdata);
curarg, params); }
} }
EXPORT_SYMBOL_GPL(gigaset_handle_modem_response); EXPORT_SYMBOL_GPL(gigaset_handle_modem_response);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment