blob: 7313454e403a630d64196a07bfc805891753f00f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* $Id: kcapi.c,v 1.1.2.8 2004/03/26 19:57:20 armin Exp $
Joe Perches475be4d2012-02-19 19:52:38 -08002 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Kernel CAPI 2.0 Module
Joe Perches475be4d2012-02-19 19:52:38 -08004 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Copyright 1999 by Carsten Paeth <calle@calle.de>
6 * Copyright 2002 by Kai Germaschewski <kai@germaschewski.name>
Joe Perches475be4d2012-02-19 19:52:38 -08007 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * This software may be used and distributed according to the terms
9 * of the GNU General Public License, incorporated herein by reference.
10 *
11 */
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include "kcapi.h"
14#include <linux/module.h>
15#include <linux/mm.h>
16#include <linux/interrupt.h>
17#include <linux/ioport.h>
18#include <linux/proc_fs.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010019#include <linux/sched/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/seq_file.h>
21#include <linux/skbuff.h>
22#include <linux/workqueue.h>
23#include <linux/capi.h>
24#include <linux/kernelcapi.h>
25#include <linux/init.h>
26#include <linux/moduleparam.h>
27#include <linux/delay.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080029#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/isdn/capicmd.h>
31#include <linux/isdn/capiutil.h>
Arjan van de Ven9cdf1822006-03-23 03:00:21 -080032#include <linux/mutex.h>
Jan Kiszka88c896e2010-02-08 10:12:15 +000033#include <linux/rcupdate.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Linus Torvalds1da177e2005-04-16 15:20:36 -070035static int showcapimsgs = 0;
Tejun Heo158fa672010-12-24 15:59:06 +010036static struct workqueue_struct *kcapi_wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Linus Torvalds1da177e2005-04-16 15:20:36 -070038module_param(showcapimsgs, uint, 0);
39
40/* ------------------------------------------------------------- */
41
Jan Kiszkaef69bb22010-02-08 10:12:13 +000042struct capictr_event {
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 struct work_struct work;
Jan Kiszkaef69bb22010-02-08 10:12:13 +000044 unsigned int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 u32 controller;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046};
47
48/* ------------------------------------------------------------- */
49
Bhumika Goyal733a7072017-08-06 22:39:06 +053050static const struct capi_version driver_version = {2, 0, 1, 1 << 4};
Linus Torvalds1da177e2005-04-16 15:20:36 -070051static char driver_serial[CAPI_SERIAL_LEN] = "0004711";
52static char capi_manufakturer[64] = "AVM Berlin";
53
54#define NCCI2CTRL(ncci) (((ncci) >> 24) & 0x7f)
55
Jan Kiszka0ca3a012010-02-08 10:12:14 +000056struct capi_ctr *capi_controller[CAPI_MAXCONTR];
57DEFINE_MUTEX(capi_controller_lock);
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059struct capi20_appl *capi_applications[CAPI_MAXAPPL];
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Jan Kiszka52253032010-02-08 10:12:10 +000061static int ncontrollers;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63/* -------- controller ref counting -------------------------------------- */
64
65static inline struct capi_ctr *
Jan Kiszka52253032010-02-08 10:12:10 +000066capi_ctr_get(struct capi_ctr *ctr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{
Jan Kiszka52253032010-02-08 10:12:10 +000068 if (!try_module_get(ctr->owner))
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 return NULL;
Jan Kiszka52253032010-02-08 10:12:10 +000070 return ctr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071}
72
73static inline void
Jan Kiszka52253032010-02-08 10:12:10 +000074capi_ctr_put(struct capi_ctr *ctr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
Jan Kiszka52253032010-02-08 10:12:10 +000076 module_put(ctr->owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077}
78
79/* ------------------------------------------------------------- */
80
81static inline struct capi_ctr *get_capi_ctr_by_nr(u16 contr)
82{
Dan Carpenter25dff942013-05-19 08:36:36 +000083 if (contr < 1 || contr - 1 >= CAPI_MAXCONTR)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 return NULL;
85
Jan Kiszka52253032010-02-08 10:12:10 +000086 return capi_controller[contr - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -070087}
88
Jan Kiszkab003f4e2010-10-17 05:18:15 +000089static inline struct capi20_appl *__get_capi_appl_by_nr(u16 applid)
90{
91 lockdep_assert_held(&capi_controller_lock);
92
Dan Carpenter25dff942013-05-19 08:36:36 +000093 if (applid < 1 || applid - 1 >= CAPI_MAXAPPL)
Jan Kiszkab003f4e2010-10-17 05:18:15 +000094 return NULL;
95
96 return capi_applications[applid - 1];
97}
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099static inline struct capi20_appl *get_capi_appl_by_nr(u16 applid)
100{
Dan Carpenter25dff942013-05-19 08:36:36 +0000101 if (applid < 1 || applid - 1 >= CAPI_MAXAPPL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 return NULL;
103
Jan Kiszka88c896e2010-02-08 10:12:15 +0000104 return rcu_dereference(capi_applications[applid - 1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
106
107/* -------- util functions ------------------------------------ */
108
109static inline int capi_cmd_valid(u8 cmd)
110{
111 switch (cmd) {
112 case CAPI_ALERT:
113 case CAPI_CONNECT:
114 case CAPI_CONNECT_ACTIVE:
115 case CAPI_CONNECT_B3_ACTIVE:
116 case CAPI_CONNECT_B3:
117 case CAPI_CONNECT_B3_T90_ACTIVE:
118 case CAPI_DATA_B3:
119 case CAPI_DISCONNECT_B3:
120 case CAPI_DISCONNECT:
121 case CAPI_FACILITY:
122 case CAPI_INFO:
123 case CAPI_LISTEN:
124 case CAPI_MANUFACTURER:
125 case CAPI_RESET_B3:
126 case CAPI_SELECT_B_PROTOCOL:
127 return 1;
128 }
129 return 0;
130}
131
132static inline int capi_subcmd_valid(u8 subcmd)
133{
134 switch (subcmd) {
135 case CAPI_REQ:
136 case CAPI_CONF:
137 case CAPI_IND:
138 case CAPI_RESP:
139 return 1;
140 }
141 return 0;
142}
143
144/* ------------------------------------------------------------ */
145
Jan Kiszka52253032010-02-08 10:12:10 +0000146static void
147register_appl(struct capi_ctr *ctr, u16 applid, capi_register_params *rparam)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
Jan Kiszka52253032010-02-08 10:12:10 +0000149 ctr = capi_ctr_get(ctr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Jan Kiszka52253032010-02-08 10:12:10 +0000151 if (ctr)
152 ctr->register_appl(ctr, applid, rparam);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 else
Jan Kiszka52253032010-02-08 10:12:10 +0000154 printk(KERN_WARNING "%s: cannot get controller resources\n",
155 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156}
157
158
Jan Kiszka52253032010-02-08 10:12:10 +0000159static void release_appl(struct capi_ctr *ctr, u16 applid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
161 DBG("applid %#x", applid);
Joe Perches475be4d2012-02-19 19:52:38 -0800162
Jan Kiszka52253032010-02-08 10:12:10 +0000163 ctr->release_appl(ctr, applid);
164 capi_ctr_put(ctr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165}
166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167static void notify_up(u32 contr)
168{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 struct capi20_appl *ap;
Jan Kiszka3efecf72010-02-08 10:12:12 +0000170 struct capi_ctr *ctr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 u16 applid;
172
Jan Kiszka0ca3a012010-02-08 10:12:14 +0000173 mutex_lock(&capi_controller_lock);
174
Jan Kiszka3efecf72010-02-08 10:12:12 +0000175 if (showcapimsgs & 1)
Joe Perches475be4d2012-02-19 19:52:38 -0800176 printk(KERN_DEBUG "kcapi: notify up contr %d\n", contr);
Jan Kiszka3efecf72010-02-08 10:12:12 +0000177
178 ctr = get_capi_ctr_by_nr(contr);
179 if (ctr) {
180 if (ctr->state == CAPI_CTR_RUNNING)
Jan Kiszka0ca3a012010-02-08 10:12:14 +0000181 goto unlock_out;
Jan Kiszka3efecf72010-02-08 10:12:12 +0000182
183 ctr->state = CAPI_CTR_RUNNING;
184
185 for (applid = 1; applid <= CAPI_MAXAPPL; applid++) {
Jan Kiszkab003f4e2010-10-17 05:18:15 +0000186 ap = __get_capi_appl_by_nr(applid);
187 if (ap)
188 register_appl(ctr, applid, &ap->rparam);
Jan Kiszka3efecf72010-02-08 10:12:12 +0000189 }
190 } else
Harvey Harrison156f1ed2008-04-28 02:14:40 -0700191 printk(KERN_WARNING "%s: invalid contr %d\n", __func__, contr);
Jan Kiszka0ca3a012010-02-08 10:12:14 +0000192
193unlock_out:
194 mutex_unlock(&capi_controller_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195}
196
Jan Kiszka0ca3a012010-02-08 10:12:14 +0000197static void ctr_down(struct capi_ctr *ctr, int new_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
199 struct capi20_appl *ap;
200 u16 applid;
201
Jan Kiszka0ca3a012010-02-08 10:12:14 +0000202 if (ctr->state == CAPI_CTR_DETECTED || ctr->state == CAPI_CTR_DETACHED)
Jan Kiszka3efecf72010-02-08 10:12:12 +0000203 return;
204
Jan Kiszka0ca3a012010-02-08 10:12:14 +0000205 ctr->state = new_state;
Jan Kiszka3efecf72010-02-08 10:12:12 +0000206
207 memset(ctr->manu, 0, sizeof(ctr->manu));
208 memset(&ctr->version, 0, sizeof(ctr->version));
209 memset(&ctr->profile, 0, sizeof(ctr->profile));
210 memset(ctr->serial, 0, sizeof(ctr->serial));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212 for (applid = 1; applid <= CAPI_MAXAPPL; applid++) {
Jan Kiszkab003f4e2010-10-17 05:18:15 +0000213 ap = __get_capi_appl_by_nr(applid);
Jan Kiszka88c896e2010-02-08 10:12:15 +0000214 if (ap)
Jan Kiszka3efecf72010-02-08 10:12:12 +0000215 capi_ctr_put(ctr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 }
217}
218
Jan Kiszka3efecf72010-02-08 10:12:12 +0000219static void notify_down(u32 contr)
220{
221 struct capi_ctr *ctr;
222
Jan Kiszka0ca3a012010-02-08 10:12:14 +0000223 mutex_lock(&capi_controller_lock);
224
Jan Kiszka3efecf72010-02-08 10:12:12 +0000225 if (showcapimsgs & 1)
226 printk(KERN_DEBUG "kcapi: notify down contr %d\n", contr);
227
228 ctr = get_capi_ctr_by_nr(contr);
229 if (ctr)
Jan Kiszka0ca3a012010-02-08 10:12:14 +0000230 ctr_down(ctr, CAPI_CTR_DETECTED);
Jan Kiszka3efecf72010-02-08 10:12:12 +0000231 else
232 printk(KERN_WARNING "%s: invalid contr %d\n", __func__, contr);
Jan Kiszka0ca3a012010-02-08 10:12:14 +0000233
234 mutex_unlock(&capi_controller_lock);
Jan Kiszka3efecf72010-02-08 10:12:12 +0000235}
236
Jan Kiszkaef69bb22010-02-08 10:12:13 +0000237static void do_notify_work(struct work_struct *work)
238{
239 struct capictr_event *event =
240 container_of(work, struct capictr_event, work);
241
Arnd Bergmannf59aba22019-12-10 21:59:16 +0100242 switch (event->type) {
243 case CAPICTR_UP:
244 notify_up(event->controller);
245 break;
246 case CAPICTR_DOWN:
247 notify_down(event->controller);
248 break;
249 }
250
Jan Kiszkaef69bb22010-02-08 10:12:13 +0000251 kfree(event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252}
253
Jan Kiszkaef69bb22010-02-08 10:12:13 +0000254static int notify_push(unsigned int event_type, u32 controller)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
Jan Kiszkaef69bb22010-02-08 10:12:13 +0000256 struct capictr_event *event = kmalloc(sizeof(*event), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Jan Kiszkaef69bb22010-02-08 10:12:13 +0000258 if (!event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 return -ENOMEM;
260
Jan Kiszkaef69bb22010-02-08 10:12:13 +0000261 INIT_WORK(&event->work, do_notify_work);
262 event->type = event_type;
263 event->controller = controller;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Tejun Heo158fa672010-12-24 15:59:06 +0100265 queue_work(kcapi_wq, &event->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 return 0;
267}
268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269/* -------- Receiver ------------------------------------------ */
270
David Howellsc4028952006-11-22 14:57:56 +0000271static void recv_handler(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
273 struct sk_buff *skb;
David Howellsc4028952006-11-22 14:57:56 +0000274 struct capi20_appl *ap =
275 container_of(work, struct capi20_appl, recv_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277 if ((!ap) || (ap->release_in_progress))
278 return;
279
Matthias Kaehlcke67837f22007-07-17 04:04:16 -0700280 mutex_lock(&ap->recv_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 while ((skb = skb_dequeue(&ap->recv_queue))) {
282 if (CAPIMSG_CMD(skb->data) == CAPI_DATA_B3_IND)
283 ap->nrecvdatapkt++;
284 else
285 ap->nrecvctlpkt++;
286
287 ap->recv_message(ap, skb);
288 }
Matthias Kaehlcke67837f22007-07-17 04:04:16 -0700289 mutex_unlock(&ap->recv_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290}
291
Tilman Schmidt554f2002009-04-23 02:24:21 +0000292/**
293 * capi_ctr_handle_message() - handle incoming CAPI message
Jan Kiszka52253032010-02-08 10:12:10 +0000294 * @ctr: controller descriptor structure.
Tilman Schmidt554f2002009-04-23 02:24:21 +0000295 * @appl: application ID.
296 * @skb: message.
297 *
298 * Called by hardware driver to pass a CAPI message to the application.
299 */
300
Jan Kiszka52253032010-02-08 10:12:10 +0000301void capi_ctr_handle_message(struct capi_ctr *ctr, u16 appl,
302 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
304 struct capi20_appl *ap;
305 int showctl = 0;
306 u8 cmd, subcmd;
Karsten Keil17f0cd22007-02-28 20:13:50 -0800307 _cdebbuf *cdb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Jan Kiszka52253032010-02-08 10:12:10 +0000309 if (ctr->state != CAPI_CTR_RUNNING) {
Karsten Keil17f0cd22007-02-28 20:13:50 -0800310 cdb = capi_message2str(skb->data);
311 if (cdb) {
312 printk(KERN_INFO "kcapi: controller [%03d] not active, got: %s",
Joe Perches475be4d2012-02-19 19:52:38 -0800313 ctr->cnr, cdb->buf);
Karsten Keil17f0cd22007-02-28 20:13:50 -0800314 cdebbuf_free(cdb);
315 } else
316 printk(KERN_INFO "kcapi: controller [%03d] not active, cannot trace\n",
Joe Perches475be4d2012-02-19 19:52:38 -0800317 ctr->cnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 goto error;
319 }
320
321 cmd = CAPIMSG_COMMAND(skb->data);
Joe Perches475be4d2012-02-19 19:52:38 -0800322 subcmd = CAPIMSG_SUBCOMMAND(skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 if (cmd == CAPI_DATA_B3 && subcmd == CAPI_IND) {
Jan Kiszka52253032010-02-08 10:12:10 +0000324 ctr->nrecvdatapkt++;
325 if (ctr->traceflag > 2)
326 showctl |= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 } else {
Jan Kiszka52253032010-02-08 10:12:10 +0000328 ctr->nrecvctlpkt++;
329 if (ctr->traceflag)
330 showctl |= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 }
Jan Kiszka52253032010-02-08 10:12:10 +0000332 showctl |= (ctr->traceflag & 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 if (showctl & 2) {
334 if (showctl & 1) {
Karsten Keil17f0cd22007-02-28 20:13:50 -0800335 printk(KERN_DEBUG "kcapi: got [%03d] id#%d %s len=%u\n",
Jan Kiszka52253032010-02-08 10:12:10 +0000336 ctr->cnr, CAPIMSG_APPID(skb->data),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 capi_cmd2str(cmd, subcmd),
338 CAPIMSG_LEN(skb->data));
339 } else {
Karsten Keil17f0cd22007-02-28 20:13:50 -0800340 cdb = capi_message2str(skb->data);
341 if (cdb) {
342 printk(KERN_DEBUG "kcapi: got [%03d] %s\n",
Joe Perches475be4d2012-02-19 19:52:38 -0800343 ctr->cnr, cdb->buf);
Karsten Keil17f0cd22007-02-28 20:13:50 -0800344 cdebbuf_free(cdb);
345 } else
346 printk(KERN_DEBUG "kcapi: got [%03d] id#%d %s len=%u, cannot trace\n",
Joe Perches475be4d2012-02-19 19:52:38 -0800347 ctr->cnr, CAPIMSG_APPID(skb->data),
348 capi_cmd2str(cmd, subcmd),
349 CAPIMSG_LEN(skb->data));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 }
351
352 }
353
Jan Kiszka88c896e2010-02-08 10:12:15 +0000354 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 ap = get_capi_appl_by_nr(CAPIMSG_APPID(skb->data));
Jan Kiszka88c896e2010-02-08 10:12:15 +0000356 if (!ap) {
357 rcu_read_unlock();
Karsten Keil17f0cd22007-02-28 20:13:50 -0800358 cdb = capi_message2str(skb->data);
359 if (cdb) {
360 printk(KERN_ERR "kcapi: handle_message: applid %d state released (%s)\n",
Joe Perches475be4d2012-02-19 19:52:38 -0800361 CAPIMSG_APPID(skb->data), cdb->buf);
Karsten Keil17f0cd22007-02-28 20:13:50 -0800362 cdebbuf_free(cdb);
363 } else
364 printk(KERN_ERR "kcapi: handle_message: applid %d state released (%s) cannot trace\n",
Joe Perches475be4d2012-02-19 19:52:38 -0800365 CAPIMSG_APPID(skb->data),
366 capi_cmd2str(cmd, subcmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 goto error;
368 }
369 skb_queue_tail(&ap->recv_queue, skb);
Tejun Heo158fa672010-12-24 15:59:06 +0100370 queue_work(kcapi_wq, &ap->recv_work);
Jan Kiszka88c896e2010-02-08 10:12:15 +0000371 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
373 return;
374
375error:
376 kfree_skb(skb);
377}
378
379EXPORT_SYMBOL(capi_ctr_handle_message);
380
Tilman Schmidt554f2002009-04-23 02:24:21 +0000381/**
382 * capi_ctr_ready() - signal CAPI controller ready
Jan Kiszka52253032010-02-08 10:12:10 +0000383 * @ctr: controller descriptor structure.
Tilman Schmidt554f2002009-04-23 02:24:21 +0000384 *
385 * Called by hardware driver to signal that the controller is up and running.
386 */
387
Jan Kiszka52253032010-02-08 10:12:10 +0000388void capi_ctr_ready(struct capi_ctr *ctr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
Jan Kiszka52253032010-02-08 10:12:10 +0000390 printk(KERN_NOTICE "kcapi: controller [%03d] \"%s\" ready.\n",
391 ctr->cnr, ctr->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Jan Kiszkaef69bb22010-02-08 10:12:13 +0000393 notify_push(CAPICTR_UP, ctr->cnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394}
395
396EXPORT_SYMBOL(capi_ctr_ready);
397
Tilman Schmidt554f2002009-04-23 02:24:21 +0000398/**
Tilman Schmidt4e329972009-06-07 09:09:23 +0000399 * capi_ctr_down() - signal CAPI controller not ready
Jan Kiszka52253032010-02-08 10:12:10 +0000400 * @ctr: controller descriptor structure.
Tilman Schmidt554f2002009-04-23 02:24:21 +0000401 *
402 * Called by hardware driver to signal that the controller is down and
403 * unavailable for use.
404 */
405
Jan Kiszka52253032010-02-08 10:12:10 +0000406void capi_ctr_down(struct capi_ctr *ctr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
Jan Kiszka52253032010-02-08 10:12:10 +0000408 printk(KERN_NOTICE "kcapi: controller [%03d] down.\n", ctr->cnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Jan Kiszkaef69bb22010-02-08 10:12:13 +0000410 notify_push(CAPICTR_DOWN, ctr->cnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411}
412
Tilman Schmidt4e329972009-06-07 09:09:23 +0000413EXPORT_SYMBOL(capi_ctr_down);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415/* ------------------------------------------------------------- */
416
Tilman Schmidt554f2002009-04-23 02:24:21 +0000417/**
418 * attach_capi_ctr() - register CAPI controller
Jan Kiszka52253032010-02-08 10:12:10 +0000419 * @ctr: controller descriptor structure.
Tilman Schmidt554f2002009-04-23 02:24:21 +0000420 *
421 * Called by hardware driver to register a controller with the CAPI subsystem.
422 * Return value: 0 on success, error code < 0 on error
423 */
424
Jan Kiszka52253032010-02-08 10:12:10 +0000425int attach_capi_ctr(struct capi_ctr *ctr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426{
427 int i;
428
Jan Kiszka0ca3a012010-02-08 10:12:14 +0000429 mutex_lock(&capi_controller_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
431 for (i = 0; i < CAPI_MAXCONTR; i++) {
Jan Kiszka52253032010-02-08 10:12:10 +0000432 if (!capi_controller[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 break;
434 }
435 if (i == CAPI_MAXCONTR) {
Jan Kiszka0ca3a012010-02-08 10:12:14 +0000436 mutex_unlock(&capi_controller_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 printk(KERN_ERR "kcapi: out of controller slots\n");
Joe Perches475be4d2012-02-19 19:52:38 -0800438 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 }
Jan Kiszka52253032010-02-08 10:12:10 +0000440 capi_controller[i] = ctr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Jan Kiszka52253032010-02-08 10:12:10 +0000442 ctr->nrecvctlpkt = 0;
443 ctr->nrecvdatapkt = 0;
444 ctr->nsentctlpkt = 0;
445 ctr->nsentdatapkt = 0;
446 ctr->cnr = i + 1;
447 ctr->state = CAPI_CTR_DETECTED;
448 ctr->blocked = 0;
449 ctr->traceflag = showcapimsgs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Jan Kiszka52253032010-02-08 10:12:10 +0000451 sprintf(ctr->procfn, "capi/controllers/%d", ctr->cnr);
Christoph Hellwig2cd1f0d2018-04-11 18:39:29 +0200452 ctr->procent = proc_create_single_data(ctr->procfn, 0, NULL,
453 ctr->proc_show, ctr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Jan Kiszka52253032010-02-08 10:12:10 +0000455 ncontrollers++;
Jan Kiszka0ca3a012010-02-08 10:12:14 +0000456
457 mutex_unlock(&capi_controller_lock);
458
Jan Kiszka52253032010-02-08 10:12:10 +0000459 printk(KERN_NOTICE "kcapi: controller [%03d]: %s attached\n",
Joe Perches475be4d2012-02-19 19:52:38 -0800460 ctr->cnr, ctr->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 return 0;
462}
463
464EXPORT_SYMBOL(attach_capi_ctr);
465
Tilman Schmidt554f2002009-04-23 02:24:21 +0000466/**
467 * detach_capi_ctr() - unregister CAPI controller
Jan Kiszka52253032010-02-08 10:12:10 +0000468 * @ctr: controller descriptor structure.
Tilman Schmidt554f2002009-04-23 02:24:21 +0000469 *
470 * Called by hardware driver to remove the registration of a controller
471 * with the CAPI subsystem.
472 * Return value: 0 on success, error code < 0 on error
473 */
474
Jan Kiszka52253032010-02-08 10:12:10 +0000475int detach_capi_ctr(struct capi_ctr *ctr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
Jan Kiszka0ca3a012010-02-08 10:12:14 +0000477 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Jan Kiszka0ca3a012010-02-08 10:12:14 +0000479 mutex_lock(&capi_controller_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Jan Kiszka0ca3a012010-02-08 10:12:14 +0000481 ctr_down(ctr, CAPI_CTR_DETACHED);
482
Xiaolong Huang1f3e2e92021-10-08 14:58:30 +0800483 if (ctr->cnr < 1 || ctr->cnr - 1 >= CAPI_MAXCONTR) {
484 err = -EINVAL;
485 goto unlock_out;
486 }
487
Jan Kiszka0ca3a012010-02-08 10:12:14 +0000488 if (capi_controller[ctr->cnr - 1] != ctr) {
489 err = -EINVAL;
490 goto unlock_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 }
Jan Kiszka52253032010-02-08 10:12:10 +0000492 capi_controller[ctr->cnr - 1] = NULL;
Jan Kiszka0ca3a012010-02-08 10:12:14 +0000493 ncontrollers--;
494
495 if (ctr->procent)
496 remove_proc_entry(ctr->procfn, NULL);
497
Jan Kiszka52253032010-02-08 10:12:10 +0000498 printk(KERN_NOTICE "kcapi: controller [%03d]: %s unregistered\n",
499 ctr->cnr, ctr->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Jan Kiszka0ca3a012010-02-08 10:12:14 +0000501unlock_out:
502 mutex_unlock(&capi_controller_lock);
503
504 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505}
506
507EXPORT_SYMBOL(detach_capi_ctr);
508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509/* ------------------------------------------------------------- */
510/* -------- CAPI2.0 Interface ---------------------------------- */
511/* ------------------------------------------------------------- */
512
Tilman Schmidt554f2002009-04-23 02:24:21 +0000513/**
514 * capi20_isinstalled() - CAPI 2.0 operation CAPI_INSTALLED
515 *
516 * Return value: CAPI result code (CAPI_NOERROR if at least one ISDN controller
517 * is ready for use, CAPI_REGNOTINSTALLED otherwise)
518 */
519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520u16 capi20_isinstalled(void)
521{
Jan Kiszka0ca3a012010-02-08 10:12:14 +0000522 u16 ret = CAPI_REGNOTINSTALLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 int i;
Jan Kiszka0ca3a012010-02-08 10:12:14 +0000524
525 mutex_lock(&capi_controller_lock);
526
527 for (i = 0; i < CAPI_MAXCONTR; i++)
Jan Kiszka52253032010-02-08 10:12:10 +0000528 if (capi_controller[i] &&
Jan Kiszka0ca3a012010-02-08 10:12:14 +0000529 capi_controller[i]->state == CAPI_CTR_RUNNING) {
530 ret = CAPI_NOERROR;
531 break;
532 }
533
534 mutex_unlock(&capi_controller_lock);
535
536 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537}
538
Tilman Schmidt554f2002009-04-23 02:24:21 +0000539/**
540 * capi20_register() - CAPI 2.0 operation CAPI_REGISTER
541 * @ap: CAPI application descriptor structure.
542 *
543 * Register an application's presence with CAPI.
544 * A unique application ID is assigned and stored in @ap->applid.
545 * After this function returns successfully, the message receive
546 * callback function @ap->recv_message() may be called at any time
547 * until capi20_release() has been called for the same @ap.
548 * Return value: CAPI result code
549 */
550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551u16 capi20_register(struct capi20_appl *ap)
552{
553 int i;
554 u16 applid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
556 DBG("");
557
558 if (ap->rparam.datablklen < 128)
559 return CAPI_LOGBLKSIZETOSMALL;
560
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 ap->nrecvctlpkt = 0;
562 ap->nrecvdatapkt = 0;
563 ap->nsentctlpkt = 0;
564 ap->nsentdatapkt = 0;
Matthias Kaehlcke67837f22007-07-17 04:04:16 -0700565 mutex_init(&ap->recv_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 skb_queue_head_init(&ap->recv_queue);
David Howellsc4028952006-11-22 14:57:56 +0000567 INIT_WORK(&ap->recv_work, recv_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 ap->release_in_progress = 0;
569
Jan Kiszka0ca3a012010-02-08 10:12:14 +0000570 mutex_lock(&capi_controller_lock);
571
Jan Kiszka88c896e2010-02-08 10:12:15 +0000572 for (applid = 1; applid <= CAPI_MAXAPPL; applid++) {
573 if (capi_applications[applid - 1] == NULL)
574 break;
575 }
576 if (applid > CAPI_MAXAPPL) {
577 mutex_unlock(&capi_controller_lock);
578 return CAPI_TOOMANYAPPLS;
579 }
580
581 ap->applid = applid;
582 capi_applications[applid - 1] = ap;
583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 for (i = 0; i < CAPI_MAXCONTR; i++) {
Jan Kiszka52253032010-02-08 10:12:10 +0000585 if (!capi_controller[i] ||
586 capi_controller[i]->state != CAPI_CTR_RUNNING)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 continue;
Jan Kiszka52253032010-02-08 10:12:10 +0000588 register_appl(capi_controller[i], applid, &ap->rparam);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 }
Jan Kiszka0ca3a012010-02-08 10:12:14 +0000590
591 mutex_unlock(&capi_controller_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
593 if (showcapimsgs & 1) {
594 printk(KERN_DEBUG "kcapi: appl %d up\n", applid);
595 }
596
597 return CAPI_NOERROR;
598}
599
Tilman Schmidt554f2002009-04-23 02:24:21 +0000600/**
601 * capi20_release() - CAPI 2.0 operation CAPI_RELEASE
602 * @ap: CAPI application descriptor structure.
603 *
604 * Terminate an application's registration with CAPI.
605 * After this function returns successfully, the message receive
606 * callback function @ap->recv_message() will no longer be called.
607 * Return value: CAPI result code
608 */
609
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610u16 capi20_release(struct capi20_appl *ap)
611{
612 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
614 DBG("applid %#x", ap->applid);
615
Jan Kiszka88c896e2010-02-08 10:12:15 +0000616 mutex_lock(&capi_controller_lock);
617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 ap->release_in_progress = 1;
619 capi_applications[ap->applid - 1] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Jan Kiszka88c896e2010-02-08 10:12:15 +0000621 synchronize_rcu();
Jan Kiszka0ca3a012010-02-08 10:12:14 +0000622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 for (i = 0; i < CAPI_MAXCONTR; i++) {
Jan Kiszka52253032010-02-08 10:12:10 +0000624 if (!capi_controller[i] ||
625 capi_controller[i]->state != CAPI_CTR_RUNNING)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 continue;
Jan Kiszka52253032010-02-08 10:12:10 +0000627 release_appl(capi_controller[i], ap->applid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 }
Jan Kiszka0ca3a012010-02-08 10:12:14 +0000629
630 mutex_unlock(&capi_controller_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Tejun Heo158fa672010-12-24 15:59:06 +0100632 flush_workqueue(kcapi_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 skb_queue_purge(&ap->recv_queue);
634
635 if (showcapimsgs & 1) {
636 printk(KERN_DEBUG "kcapi: appl %d down\n", ap->applid);
637 }
638
639 return CAPI_NOERROR;
640}
641
Tilman Schmidt554f2002009-04-23 02:24:21 +0000642/**
643 * capi20_put_message() - CAPI 2.0 operation CAPI_PUT_MESSAGE
644 * @ap: CAPI application descriptor structure.
645 * @skb: CAPI message.
646 *
647 * Transfer a single message to CAPI.
648 * Return value: CAPI result code
649 */
650
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651u16 capi20_put_message(struct capi20_appl *ap, struct sk_buff *skb)
652{
Jan Kiszka52253032010-02-08 10:12:10 +0000653 struct capi_ctr *ctr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 int showctl = 0;
655 u8 cmd, subcmd;
656
657 DBG("applid %#x", ap->applid);
Joe Perches475be4d2012-02-19 19:52:38 -0800658
Jan Kiszka52253032010-02-08 10:12:10 +0000659 if (ncontrollers == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 return CAPI_REGNOTINSTALLED;
661 if ((ap->applid == 0) || ap->release_in_progress)
662 return CAPI_ILLAPPNR;
663 if (skb->len < 12
664 || !capi_cmd_valid(CAPIMSG_COMMAND(skb->data))
665 || !capi_subcmd_valid(CAPIMSG_SUBCOMMAND(skb->data)))
666 return CAPI_ILLCMDORSUBCMDORMSGTOSMALL;
Jan Kiszka0ca3a012010-02-08 10:12:14 +0000667
668 /*
669 * The controller reference is protected by the existence of the
670 * application passed to us. We assume that the caller properly
671 * synchronizes this service with capi20_release.
672 */
Jan Kiszka52253032010-02-08 10:12:10 +0000673 ctr = get_capi_ctr_by_nr(CAPIMSG_CONTROLLER(skb->data));
Jan Kiszkac6af0432010-02-08 10:12:43 +0000674 if (!ctr || ctr->state != CAPI_CTR_RUNNING)
675 return CAPI_REGNOTINSTALLED;
Jan Kiszka52253032010-02-08 10:12:10 +0000676 if (ctr->blocked)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 return CAPI_SENDQUEUEFULL;
678
679 cmd = CAPIMSG_COMMAND(skb->data);
Joe Perches475be4d2012-02-19 19:52:38 -0800680 subcmd = CAPIMSG_SUBCOMMAND(skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Joe Perches475be4d2012-02-19 19:52:38 -0800682 if (cmd == CAPI_DATA_B3 && subcmd == CAPI_REQ) {
Jan Kiszka52253032010-02-08 10:12:10 +0000683 ctr->nsentdatapkt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 ap->nsentdatapkt++;
Jan Kiszka52253032010-02-08 10:12:10 +0000685 if (ctr->traceflag > 2)
686 showctl |= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 } else {
Jan Kiszka52253032010-02-08 10:12:10 +0000688 ctr->nsentctlpkt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 ap->nsentctlpkt++;
Jan Kiszka52253032010-02-08 10:12:10 +0000690 if (ctr->traceflag)
691 showctl |= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 }
Jan Kiszka52253032010-02-08 10:12:10 +0000693 showctl |= (ctr->traceflag & 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 if (showctl & 2) {
695 if (showctl & 1) {
Karsten Keil17f0cd22007-02-28 20:13:50 -0800696 printk(KERN_DEBUG "kcapi: put [%03d] id#%d %s len=%u\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 CAPIMSG_CONTROLLER(skb->data),
698 CAPIMSG_APPID(skb->data),
699 capi_cmd2str(cmd, subcmd),
700 CAPIMSG_LEN(skb->data));
701 } else {
Karsten Keil17f0cd22007-02-28 20:13:50 -0800702 _cdebbuf *cdb = capi_message2str(skb->data);
703 if (cdb) {
704 printk(KERN_DEBUG "kcapi: put [%03d] %s\n",
Joe Perches475be4d2012-02-19 19:52:38 -0800705 CAPIMSG_CONTROLLER(skb->data),
706 cdb->buf);
Karsten Keil17f0cd22007-02-28 20:13:50 -0800707 cdebbuf_free(cdb);
708 } else
709 printk(KERN_DEBUG "kcapi: put [%03d] id#%d %s len=%u cannot trace\n",
Joe Perches475be4d2012-02-19 19:52:38 -0800710 CAPIMSG_CONTROLLER(skb->data),
711 CAPIMSG_APPID(skb->data),
712 capi_cmd2str(cmd, subcmd),
713 CAPIMSG_LEN(skb->data));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 }
Jan Kiszka52253032010-02-08 10:12:10 +0000716 return ctr->send_message(ctr, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717}
718
Tilman Schmidt554f2002009-04-23 02:24:21 +0000719/**
720 * capi20_get_manufacturer() - CAPI 2.0 operation CAPI_GET_MANUFACTURER
721 * @contr: controller number.
722 * @buf: result buffer (64 bytes).
723 *
724 * Retrieve information about the manufacturer of the specified ISDN controller
725 * or (for @contr == 0) the driver itself.
726 * Return value: CAPI result code
727 */
728
Arnd Bergmann5ee7d4c2021-03-22 17:44:29 +0100729u16 capi20_get_manufacturer(u32 contr, u8 buf[CAPI_MANUFACTURER_LEN])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730{
Jan Kiszka52253032010-02-08 10:12:10 +0000731 struct capi_ctr *ctr;
Jan Kiszka0ca3a012010-02-08 10:12:14 +0000732 u16 ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
734 if (contr == 0) {
Eric Dumazetd63967e2019-01-02 09:20:27 -0800735 strncpy(buf, capi_manufakturer, CAPI_MANUFACTURER_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 return CAPI_NOERROR;
737 }
Jan Kiszka0ca3a012010-02-08 10:12:14 +0000738
739 mutex_lock(&capi_controller_lock);
740
Jan Kiszka52253032010-02-08 10:12:10 +0000741 ctr = get_capi_ctr_by_nr(contr);
Jan Kiszka0ca3a012010-02-08 10:12:14 +0000742 if (ctr && ctr->state == CAPI_CTR_RUNNING) {
Eric Dumazetd63967e2019-01-02 09:20:27 -0800743 strncpy(buf, ctr->manu, CAPI_MANUFACTURER_LEN);
Jan Kiszka0ca3a012010-02-08 10:12:14 +0000744 ret = CAPI_NOERROR;
745 } else
746 ret = CAPI_REGNOTINSTALLED;
747
748 mutex_unlock(&capi_controller_lock);
749 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750}
751
Tilman Schmidt554f2002009-04-23 02:24:21 +0000752/**
753 * capi20_get_version() - CAPI 2.0 operation CAPI_GET_VERSION
754 * @contr: controller number.
755 * @verp: result structure.
756 *
757 * Retrieve version information for the specified ISDN controller
758 * or (for @contr == 0) the driver itself.
759 * Return value: CAPI result code
760 */
761
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762u16 capi20_get_version(u32 contr, struct capi_version *verp)
763{
Jan Kiszka52253032010-02-08 10:12:10 +0000764 struct capi_ctr *ctr;
Jan Kiszka0ca3a012010-02-08 10:12:14 +0000765 u16 ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
767 if (contr == 0) {
768 *verp = driver_version;
769 return CAPI_NOERROR;
770 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Jan Kiszka0ca3a012010-02-08 10:12:14 +0000772 mutex_lock(&capi_controller_lock);
773
774 ctr = get_capi_ctr_by_nr(contr);
775 if (ctr && ctr->state == CAPI_CTR_RUNNING) {
776 memcpy(verp, &ctr->version, sizeof(capi_version));
777 ret = CAPI_NOERROR;
778 } else
779 ret = CAPI_REGNOTINSTALLED;
780
781 mutex_unlock(&capi_controller_lock);
782 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783}
784
Tilman Schmidt554f2002009-04-23 02:24:21 +0000785/**
786 * capi20_get_serial() - CAPI 2.0 operation CAPI_GET_SERIAL_NUMBER
787 * @contr: controller number.
788 * @serial: result buffer (8 bytes).
789 *
790 * Retrieve the serial number of the specified ISDN controller
791 * or (for @contr == 0) the driver itself.
792 * Return value: CAPI result code
793 */
794
Arnd Bergmann5ee7d4c2021-03-22 17:44:29 +0100795u16 capi20_get_serial(u32 contr, u8 serial[CAPI_SERIAL_LEN])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796{
Jan Kiszka52253032010-02-08 10:12:10 +0000797 struct capi_ctr *ctr;
Jan Kiszka0ca3a012010-02-08 10:12:14 +0000798 u16 ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
800 if (contr == 0) {
801 strlcpy(serial, driver_serial, CAPI_SERIAL_LEN);
802 return CAPI_NOERROR;
803 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
Jan Kiszka0ca3a012010-02-08 10:12:14 +0000805 mutex_lock(&capi_controller_lock);
806
807 ctr = get_capi_ctr_by_nr(contr);
808 if (ctr && ctr->state == CAPI_CTR_RUNNING) {
809 strlcpy(serial, ctr->serial, CAPI_SERIAL_LEN);
810 ret = CAPI_NOERROR;
811 } else
812 ret = CAPI_REGNOTINSTALLED;
813
814 mutex_unlock(&capi_controller_lock);
815 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816}
817
Tilman Schmidt554f2002009-04-23 02:24:21 +0000818/**
819 * capi20_get_profile() - CAPI 2.0 operation CAPI_GET_PROFILE
820 * @contr: controller number.
821 * @profp: result structure.
822 *
823 * Retrieve capability information for the specified ISDN controller
824 * or (for @contr == 0) the number of installed controllers.
825 * Return value: CAPI result code
826 */
827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828u16 capi20_get_profile(u32 contr, struct capi_profile *profp)
829{
Jan Kiszka52253032010-02-08 10:12:10 +0000830 struct capi_ctr *ctr;
Jan Kiszka0ca3a012010-02-08 10:12:14 +0000831 u16 ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
833 if (contr == 0) {
Jan Kiszka52253032010-02-08 10:12:10 +0000834 profp->ncontroller = ncontrollers;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 return CAPI_NOERROR;
836 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Jan Kiszka0ca3a012010-02-08 10:12:14 +0000838 mutex_lock(&capi_controller_lock);
839
840 ctr = get_capi_ctr_by_nr(contr);
841 if (ctr && ctr->state == CAPI_CTR_RUNNING) {
842 memcpy(profp, &ctr->profile, sizeof(struct capi_profile));
843 ret = CAPI_NOERROR;
844 } else
845 ret = CAPI_REGNOTINSTALLED;
846
847 mutex_unlock(&capi_controller_lock);
848 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849}
850
Tilman Schmidt554f2002009-04-23 02:24:21 +0000851/**
852 * capi20_manufacturer() - CAPI 2.0 operation CAPI_MANUFACTURER
853 * @cmd: command.
854 * @data: parameter.
855 *
856 * Perform manufacturer specific command.
857 * Return value: CAPI result code
858 */
859
Tilman Schmidt9ea8aa82014-10-11 13:46:30 +0200860int capi20_manufacturer(unsigned long cmd, void __user *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861{
Jan Kiszka52253032010-02-08 10:12:10 +0000862 struct capi_ctr *ctr;
Jan Kiszka0ca3a012010-02-08 10:12:14 +0000863 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
865 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 case KCAPI_CMD_TRACE:
867 {
868 kcapi_flagdef fdef;
869
870 if (copy_from_user(&fdef, data, sizeof(kcapi_flagdef)))
871 return -EFAULT;
872
Jan Kiszka0ca3a012010-02-08 10:12:14 +0000873 mutex_lock(&capi_controller_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
Jan Kiszka0ca3a012010-02-08 10:12:14 +0000875 ctr = get_capi_ctr_by_nr(fdef.contr);
876 if (ctr) {
877 ctr->traceflag = fdef.flag;
878 printk(KERN_INFO "kcapi: contr [%03d] set trace=%d\n",
879 ctr->cnr, ctr->traceflag);
880 retval = 0;
881 } else
882 retval = -ESRCH;
883
884 mutex_unlock(&capi_controller_lock);
885
886 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
889 default:
Tilman Schmidt9ea8aa82014-10-11 13:46:30 +0200890 printk(KERN_ERR "kcapi: manufacturer command %lu unknown.\n",
Joe Perches475be4d2012-02-19 19:52:38 -0800891 cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 break;
893
894 }
895 return -EINVAL;
896}
897
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898/* ------------------------------------------------------------- */
899/* -------- Init & Cleanup ------------------------------------- */
900/* ------------------------------------------------------------- */
901
902/*
903 * init / exit functions
904 */
905
Arnd Bergmannf59aba22019-12-10 21:59:16 +0100906int __init kcapi_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907{
Jan Kiszka88549d62010-02-08 10:12:09 +0000908 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
Tejun Heo158fa672010-12-24 15:59:06 +0100910 kcapi_wq = alloc_workqueue("kcapi", 0, 0);
911 if (!kcapi_wq)
912 return -ENOMEM;
913
Jan Kiszka88549d62010-02-08 10:12:09 +0000914 err = cdebug_init();
Tejun Heo158fa672010-12-24 15:59:06 +0100915 if (err) {
Tejun Heo158fa672010-12-24 15:59:06 +0100916 destroy_workqueue(kcapi_wq);
917 return err;
918 }
919
920 kcapi_proc_init();
921 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922}
923
Arnd Bergmannf59aba22019-12-10 21:59:16 +0100924void kcapi_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925{
Joe Perches475be4d2012-02-19 19:52:38 -0800926 kcapi_proc_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
Karsten Keil17f0cd22007-02-28 20:13:50 -0800928 cdebug_exit();
Tejun Heo158fa672010-12-24 15:59:06 +0100929 destroy_workqueue(kcapi_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930}