| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627 |
- /*
- * Copyright (C) 2015 Google, Inc.
- *
- * This software is licensed under the terms of the GNU General Public
- * License version 2, as published by the Free Software Foundation, and
- * may be copied, distributed, and modified under those terms.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- */
- #include <linux/kernel.h>
- #include <linux/module.h>
- #include <linux/cdev.h>
- #include <linux/slab.h>
- #include <linux/fs.h>
- #include <linux/poll.h>
- #include <linux/idr.h>
- #include <linux/completion.h>
- #include <linux/sched.h>
- #include <linux/compat.h>
- #include <linux/virtio.h>
- #include <linux/virtio_ids.h>
- #include <linux/virtio_config.h>
- #include <linux/trusty/smcall.h>
- #include <linux/trusty/trusty.h>
- #include <linux/trusty/trusty_ipc.h>
- #define MAX_DEVICES 4
- #define REPLY_TIMEOUT 5000
- #define TXBUF_TIMEOUT 15000
- #define MAX_SRV_NAME_LEN 256
- #define MAX_DEV_NAME_LEN 32
- #define DEFAULT_MSG_BUF_SIZE PAGE_SIZE
- #define DEFAULT_MSG_BUF_ALIGN PAGE_SIZE
- #define TIPC_CTRL_ADDR 53
- #define TIPC_ANY_ADDR 0xFFFFFFFF
- #define TIPC_MIN_LOCAL_ADDR 1024
- #define TIPC_IOC_MAGIC 'r'
- #define TIPC_IOC_CONNECT _IOW(TIPC_IOC_MAGIC, 0x80, char *)
- #if defined(CONFIG_COMPAT)
- #define TIPC_IOC_CONNECT_COMPAT _IOW(TIPC_IOC_MAGIC, 0x80, \
- compat_uptr_t)
- #endif
- struct tipc_virtio_dev;
- struct tipc_dev_config {
- u32 msg_buf_max_size;
- u32 msg_buf_alignment;
- char dev_name[MAX_DEV_NAME_LEN];
- } __packed;
- struct tipc_msg_hdr {
- u32 src;
- u32 dst;
- u32 reserved;
- u16 len;
- u16 flags;
- u8 data[0];
- } __packed;
- enum tipc_ctrl_msg_types {
- TIPC_CTRL_MSGTYPE_GO_ONLINE = 1,
- TIPC_CTRL_MSGTYPE_GO_OFFLINE,
- TIPC_CTRL_MSGTYPE_CONN_REQ,
- TIPC_CTRL_MSGTYPE_CONN_RSP,
- TIPC_CTRL_MSGTYPE_DISC_REQ,
- };
- struct tipc_ctrl_msg {
- u32 type;
- u32 body_len;
- u8 body[0];
- } __packed;
- struct tipc_conn_req_body {
- char name[MAX_SRV_NAME_LEN];
- } __packed;
- struct tipc_conn_rsp_body {
- u32 target;
- u32 status;
- u32 remote;
- u32 max_msg_size;
- u32 max_msg_cnt;
- } __packed;
- struct tipc_disc_req_body {
- u32 target;
- } __packed;
- struct tipc_cdev_node {
- struct cdev cdev;
- struct device *dev;
- unsigned int minor;
- };
- enum tipc_device_state {
- VDS_OFFLINE = 0,
- VDS_ONLINE,
- VDS_DEAD,
- };
- struct tipc_virtio_dev {
- struct kref refcount;
- struct mutex lock; /* protects access to this device */
- struct virtio_device *vdev;
- struct virtqueue *rxvq;
- struct virtqueue *txvq;
- uint msg_buf_cnt;
- uint msg_buf_max_cnt;
- size_t msg_buf_max_sz;
- uint free_msg_buf_cnt;
- struct list_head free_buf_list;
- wait_queue_head_t sendq;
- struct idr addr_idr;
- enum tipc_device_state state;
- struct tipc_cdev_node cdev_node;
- char cdev_name[MAX_DEV_NAME_LEN];
- };
- enum tipc_chan_state {
- TIPC_DISCONNECTED = 0,
- TIPC_CONNECTING,
- TIPC_CONNECTED,
- TIPC_STALE,
- };
- struct tipc_chan {
- struct mutex lock; /* protects channel state */
- struct kref refcount;
- enum tipc_chan_state state;
- struct tipc_virtio_dev *vds;
- const struct tipc_chan_ops *ops;
- void *ops_arg;
- u32 remote;
- u32 local;
- u32 max_msg_size;
- u32 max_msg_cnt;
- char srv_name[MAX_SRV_NAME_LEN];
- };
- static struct class *tipc_class;
- static unsigned int tipc_major;
- static DEFINE_IDR(tipc_devices);
- static DEFINE_MUTEX(tipc_devices_lock);
- static int _match_any(int id, void *p, void *data)
- {
- return id;
- }
- static int _match_data(int id, void *p, void *data)
- {
- return (p == data);
- }
- static void *_alloc_shareable_mem(size_t sz, phys_addr_t *ppa, gfp_t gfp)
- {
- return alloc_pages_exact(sz, gfp);
- }
- static void _free_shareable_mem(size_t sz, void *va, phys_addr_t pa)
- {
- free_pages_exact(va, sz);
- }
- static struct tipc_msg_buf *_alloc_msg_buf(size_t sz)
- {
- struct tipc_msg_buf *mb;
- /* allocate tracking structure */
- mb = kzalloc(sizeof(struct tipc_msg_buf), GFP_KERNEL);
- if (!mb)
- return NULL;
- /* allocate buffer that can be shared with secure world */
- mb->buf_va = _alloc_shareable_mem(sz, &mb->buf_pa, GFP_KERNEL);
- if (!mb->buf_va)
- goto err_alloc;
- mb->buf_sz = sz;
- return mb;
- err_alloc:
- kfree(mb);
- return NULL;
- }
- static void _free_msg_buf(struct tipc_msg_buf *mb)
- {
- _free_shareable_mem(mb->buf_sz, mb->buf_va, mb->buf_pa);
- kfree(mb);
- }
- static void _free_msg_buf_list(struct list_head *list)
- {
- struct tipc_msg_buf *mb = NULL;
- mb = list_first_entry_or_null(list, struct tipc_msg_buf, node);
- while (mb) {
- list_del(&mb->node);
- _free_msg_buf(mb);
- mb = list_first_entry_or_null(list, struct tipc_msg_buf, node);
- }
- }
- static inline void mb_reset(struct tipc_msg_buf *mb)
- {
- mb->wpos = 0;
- mb->rpos = 0;
- }
- static void _free_chan(struct kref *kref)
- {
- struct tipc_chan *ch = container_of(kref, struct tipc_chan, refcount);
- kfree(ch);
- }
- static void _free_vds(struct kref *kref)
- {
- struct tipc_virtio_dev *vds =
- container_of(kref, struct tipc_virtio_dev, refcount);
- kfree(vds);
- }
- static struct tipc_msg_buf *vds_alloc_msg_buf(struct tipc_virtio_dev *vds)
- {
- return _alloc_msg_buf(vds->msg_buf_max_sz);
- }
- static void vds_free_msg_buf(struct tipc_virtio_dev *vds,
- struct tipc_msg_buf *mb)
- {
- _free_msg_buf(mb);
- }
- static bool _put_txbuf_locked(struct tipc_virtio_dev *vds,
- struct tipc_msg_buf *mb)
- {
- list_add_tail(&mb->node, &vds->free_buf_list);
- return vds->free_msg_buf_cnt++ == 0;
- }
- static struct tipc_msg_buf *_get_txbuf_locked(struct tipc_virtio_dev *vds)
- {
- struct tipc_msg_buf *mb;
- if (vds->state != VDS_ONLINE)
- return ERR_PTR(-ENODEV);
- if (vds->free_msg_buf_cnt) {
- /* take it out of free list */
- mb = list_first_entry(&vds->free_buf_list,
- struct tipc_msg_buf, node);
- list_del(&mb->node);
- vds->free_msg_buf_cnt--;
- } else {
- if (vds->msg_buf_cnt >= vds->msg_buf_max_cnt)
- return ERR_PTR(-EAGAIN);
- /* try to allocate it */
- mb = _alloc_msg_buf(vds->msg_buf_max_sz);
- if (!mb)
- return ERR_PTR(-ENOMEM);
- vds->msg_buf_cnt++;
- }
- return mb;
- }
- static struct tipc_msg_buf *_vds_get_txbuf(struct tipc_virtio_dev *vds)
- {
- struct tipc_msg_buf *mb;
- mutex_lock(&vds->lock);
- mb = _get_txbuf_locked(vds);
- mutex_unlock(&vds->lock);
- return mb;
- }
- static void vds_put_txbuf(struct tipc_virtio_dev *vds, struct tipc_msg_buf *mb)
- {
- if (!vds)
- return;
- mutex_lock(&vds->lock);
- _put_txbuf_locked(vds, mb);
- wake_up_interruptible(&vds->sendq);
- mutex_unlock(&vds->lock);
- }
- static struct tipc_msg_buf *vds_get_txbuf(struct tipc_virtio_dev *vds,
- long timeout)
- {
- struct tipc_msg_buf *mb;
- if (!vds)
- return ERR_PTR(-EINVAL);
- mb = _vds_get_txbuf(vds);
- if ((PTR_ERR(mb) == -EAGAIN) && timeout) {
- int rc = wait_event_interruptible_timeout(vds->sendq,
- PTR_ERR(mb = _vds_get_txbuf(vds)) != -EAGAIN,
- msecs_to_jiffies(timeout));
- if (rc < 0)
- return ERR_PTR(rc);
- if (rc == 0)
- return ERR_PTR(-ETIMEDOUT);
- }
- if (IS_ERR(mb))
- return mb;
- BUG_ON(!mb);
- /* reset and reserve space for message header */
- mb_reset(mb);
- mb_put_data(mb, sizeof(struct tipc_msg_hdr));
- return mb;
- }
- static int vds_queue_txbuf(struct tipc_virtio_dev *vds,
- struct tipc_msg_buf *mb)
- {
- int err;
- struct scatterlist sg;
- bool need_notify = false;
- if (!vds)
- return -EINVAL;
- mutex_lock(&vds->lock);
- if (vds->state == VDS_ONLINE) {
- sg_init_one(&sg, mb->buf_va, mb->wpos);
- err = virtqueue_add_outbuf(vds->txvq, &sg, 1, mb, GFP_KERNEL);
- need_notify = virtqueue_kick_prepare(vds->txvq);
- } else {
- err = -ENODEV;
- }
- mutex_unlock(&vds->lock);
- if (need_notify)
- virtqueue_notify(vds->txvq);
- return err;
- }
- static int vds_add_channel(struct tipc_virtio_dev *vds,
- struct tipc_chan *chan)
- {
- int ret;
- mutex_lock(&vds->lock);
- if (vds->state == VDS_ONLINE) {
- ret = idr_alloc(&vds->addr_idr, chan,
- TIPC_MIN_LOCAL_ADDR, TIPC_ANY_ADDR - 1,
- GFP_KERNEL);
- if (ret > 0) {
- chan->local = ret;
- kref_get(&chan->refcount);
- ret = 0;
- }
- } else {
- ret = -EINVAL;
- }
- mutex_unlock(&vds->lock);
- return ret;
- }
- static void vds_del_channel(struct tipc_virtio_dev *vds,
- struct tipc_chan *chan)
- {
- mutex_lock(&vds->lock);
- if (chan->local) {
- idr_remove(&vds->addr_idr, chan->local);
- chan->local = 0;
- chan->remote = 0;
- kref_put(&chan->refcount, _free_chan);
- }
- mutex_unlock(&vds->lock);
- }
- static struct tipc_chan *vds_lookup_channel(struct tipc_virtio_dev *vds,
- u32 addr)
- {
- int id;
- struct tipc_chan *chan = NULL;
- mutex_lock(&vds->lock);
- if (addr == TIPC_ANY_ADDR) {
- id = idr_for_each(&vds->addr_idr, _match_any, NULL);
- if (id > 0)
- chan = idr_find(&vds->addr_idr, id);
- } else {
- chan = idr_find(&vds->addr_idr, addr);
- }
- if (chan)
- kref_get(&chan->refcount);
- mutex_unlock(&vds->lock);
- return chan;
- }
- static struct tipc_chan *vds_create_channel(struct tipc_virtio_dev *vds,
- const struct tipc_chan_ops *ops,
- void *ops_arg)
- {
- int ret;
- struct tipc_chan *chan = NULL;
- if (!vds)
- return ERR_PTR(-ENOENT);
- if (!ops)
- return ERR_PTR(-EINVAL);
- chan = kzalloc(sizeof(*chan), GFP_KERNEL);
- if (!chan)
- return ERR_PTR(-ENOMEM);
- kref_get(&vds->refcount);
- chan->vds = vds;
- chan->ops = ops;
- chan->ops_arg = ops_arg;
- mutex_init(&chan->lock);
- kref_init(&chan->refcount);
- chan->state = TIPC_DISCONNECTED;
- ret = vds_add_channel(vds, chan);
- if (ret) {
- kfree(chan);
- kref_put(&vds->refcount, _free_vds);
- return ERR_PTR(ret);
- }
- return chan;
- }
- static void fill_msg_hdr(struct tipc_msg_buf *mb, u32 src, u32 dst)
- {
- struct tipc_msg_hdr *hdr = mb_get_data(mb, sizeof(*hdr));
- hdr->src = src;
- hdr->dst = dst;
- hdr->len = mb_avail_data(mb);
- hdr->flags = 0;
- hdr->reserved = 0;
- }
- /*****************************************************************************/
- struct tipc_chan *tipc_create_channel(struct device *dev,
- const struct tipc_chan_ops *ops,
- void *ops_arg)
- {
- struct virtio_device *vd =
- container_of(dev, struct virtio_device, dev);
- return vds_create_channel(vd->priv, ops, ops_arg);
- }
- EXPORT_SYMBOL(tipc_create_channel);
- struct tipc_msg_buf *tipc_chan_get_rxbuf(struct tipc_chan *chan)
- {
- return vds_alloc_msg_buf(chan->vds);
- }
- EXPORT_SYMBOL(tipc_chan_get_rxbuf);
- void tipc_chan_put_rxbuf(struct tipc_chan *chan, struct tipc_msg_buf *mb)
- {
- vds_free_msg_buf(chan->vds, mb);
- }
- EXPORT_SYMBOL(tipc_chan_put_rxbuf);
- struct tipc_msg_buf *tipc_chan_get_txbuf_timeout(struct tipc_chan *chan,
- long timeout)
- {
- return vds_get_txbuf(chan->vds, timeout);
- }
- EXPORT_SYMBOL(tipc_chan_get_txbuf_timeout);
- void tipc_chan_put_txbuf(struct tipc_chan *chan, struct tipc_msg_buf *mb)
- {
- vds_put_txbuf(chan->vds, mb);
- }
- EXPORT_SYMBOL(tipc_chan_put_txbuf);
- int tipc_chan_queue_msg(struct tipc_chan *chan, struct tipc_msg_buf *mb)
- {
- int err;
- mutex_lock(&chan->lock);
- switch (chan->state) {
- case TIPC_CONNECTED:
- fill_msg_hdr(mb, chan->local, chan->remote);
- err = vds_queue_txbuf(chan->vds, mb);
- if (err) {
- /* this should never happen */
- pr_err("%s: failed to queue tx buffer (%d)\n",
- __func__, err);
- }
- break;
- case TIPC_DISCONNECTED:
- case TIPC_CONNECTING:
- err = -ENOTCONN;
- break;
- case TIPC_STALE:
- err = -ESHUTDOWN;
- break;
- default:
- err = -EBADFD;
- pr_err("%s: unexpected channel state %d\n",
- __func__, chan->state);
- }
- mutex_unlock(&chan->lock);
- return err;
- }
- EXPORT_SYMBOL(tipc_chan_queue_msg);
- int tipc_chan_connect(struct tipc_chan *chan, const char *name)
- {
- int err;
- struct tipc_ctrl_msg *msg;
- struct tipc_conn_req_body *body;
- struct tipc_msg_buf *txbuf;
- txbuf = vds_get_txbuf(chan->vds, TXBUF_TIMEOUT);
- if (IS_ERR(txbuf))
- return PTR_ERR(txbuf);
- /* reserve space for connection request control message */
- msg = mb_put_data(txbuf, sizeof(*msg) + sizeof(*body));
- body = (struct tipc_conn_req_body *)msg->body;
- /* fill message */
- msg->type = TIPC_CTRL_MSGTYPE_CONN_REQ;
- msg->body_len = sizeof(*body);
- strncpy(body->name, name, sizeof(body->name));
- body->name[sizeof(body->name)-1] = '\0';
- mutex_lock(&chan->lock);
- switch (chan->state) {
- case TIPC_DISCONNECTED:
- /* save service name we are connecting to */
- strcpy(chan->srv_name, body->name);
- fill_msg_hdr(txbuf, chan->local, TIPC_CTRL_ADDR);
- err = vds_queue_txbuf(chan->vds, txbuf);
- if (err) {
- /* this should never happen */
- pr_err("%s: failed to queue tx buffer (%d)\n",
- __func__, err);
- } else {
- chan->state = TIPC_CONNECTING;
- txbuf = NULL; /* prevents discarding buffer */
- }
- break;
- case TIPC_CONNECTED:
- case TIPC_CONNECTING:
- /* check if we are trying to connect to the same service */
- if (strcmp(chan->srv_name, body->name) == 0)
- err = 0;
- else
- if (chan->state == TIPC_CONNECTING)
- err = -EALREADY; /* in progress */
- else
- err = -EISCONN; /* already connected */
- break;
- case TIPC_STALE:
- err = -ESHUTDOWN;
- break;
- default:
- err = -EBADFD;
- pr_err("%s: unexpected channel state %d\n",
- __func__, chan->state);
- break;
- }
- mutex_unlock(&chan->lock);
- if (txbuf)
- tipc_chan_put_txbuf(chan, txbuf); /* discard it */
- return err;
- }
- EXPORT_SYMBOL(tipc_chan_connect);
- int tipc_chan_shutdown(struct tipc_chan *chan)
- {
- int err;
- struct tipc_ctrl_msg *msg;
- struct tipc_disc_req_body *body;
- struct tipc_msg_buf *txbuf = NULL;
- /* get tx buffer */
- txbuf = vds_get_txbuf(chan->vds, TXBUF_TIMEOUT);
- if (IS_ERR(txbuf))
- return PTR_ERR(txbuf);
- mutex_lock(&chan->lock);
- if (chan->state == TIPC_CONNECTED || chan->state == TIPC_CONNECTING) {
- /* reserve space for disconnect request control message */
- msg = mb_put_data(txbuf, sizeof(*msg) + sizeof(*body));
- body = (struct tipc_disc_req_body *)msg->body;
- msg->type = TIPC_CTRL_MSGTYPE_DISC_REQ;
- msg->body_len = sizeof(*body);
- body->target = chan->remote;
- fill_msg_hdr(txbuf, chan->local, TIPC_CTRL_ADDR);
- err = vds_queue_txbuf(chan->vds, txbuf);
- if (err) {
- /* this should never happen */
- pr_err("%s: failed to queue tx buffer (%d)\n",
- __func__, err);
- }
- } else {
- err = -ENOTCONN;
- }
- chan->state = TIPC_STALE;
- mutex_unlock(&chan->lock);
- if (err) {
- /* release buffer */
- tipc_chan_put_txbuf(chan, txbuf);
- }
- return err;
- }
- EXPORT_SYMBOL(tipc_chan_shutdown);
- void tipc_chan_destroy(struct tipc_chan *chan)
- {
- mutex_lock(&chan->lock);
- if (chan->vds) {
- vds_del_channel(chan->vds, chan);
- kref_put(&chan->vds->refcount, _free_vds);
- chan->vds = NULL;
- }
- mutex_unlock(&chan->lock);
- kref_put(&chan->refcount, _free_chan);
- }
- EXPORT_SYMBOL(tipc_chan_destroy);
- /***************************************************************************/
- struct tipc_dn_chan {
- int state;
- struct mutex lock; /* protects rx_msg_queue list and channel state */
- struct tipc_chan *chan;
- wait_queue_head_t readq;
- struct completion reply_comp;
- struct list_head rx_msg_queue;
- };
- static int dn_wait_for_reply(struct tipc_dn_chan *dn, int timeout)
- {
- int ret;
- ret = wait_for_completion_interruptible_timeout(&dn->reply_comp,
- msecs_to_jiffies(timeout));
- if (ret < 0)
- return ret;
- mutex_lock(&dn->lock);
- if (!ret) {
- /* no reply from remote */
- dn->state = TIPC_STALE;
- ret = -ETIMEDOUT;
- } else {
- /* got reply */
- if (dn->state == TIPC_CONNECTED)
- ret = 0;
- else if (dn->state == TIPC_DISCONNECTED)
- if (!list_empty(&dn->rx_msg_queue))
- ret = 0;
- else
- ret = -ENOTCONN;
- else
- ret = -EIO;
- }
- mutex_unlock(&dn->lock);
- return ret;
- }
- struct tipc_msg_buf *dn_handle_msg(void *data, struct tipc_msg_buf *rxbuf)
- {
- struct tipc_dn_chan *dn = data;
- struct tipc_msg_buf *newbuf = rxbuf;
- mutex_lock(&dn->lock);
- if (dn->state == TIPC_CONNECTED) {
- /* get new buffer */
- newbuf = tipc_chan_get_rxbuf(dn->chan);
- if (newbuf) {
- /* queue an old buffer and return a new one */
- list_add_tail(&rxbuf->node, &dn->rx_msg_queue);
- wake_up_interruptible(&dn->readq);
- } else {
- /*
- * return an old buffer effectively discarding
- * incoming message
- */
- pr_err("%s: discard incoming message\n", __func__);
- }
- }
- mutex_unlock(&dn->lock);
- return newbuf;
- }
- static void dn_connected(struct tipc_dn_chan *dn)
- {
- mutex_lock(&dn->lock);
- dn->state = TIPC_CONNECTED;
- /* complete all pending */
- complete(&dn->reply_comp);
- mutex_unlock(&dn->lock);
- }
- static void dn_disconnected(struct tipc_dn_chan *dn)
- {
- mutex_lock(&dn->lock);
- dn->state = TIPC_DISCONNECTED;
- /* complete all pending */
- complete(&dn->reply_comp);
- /* wakeup all readers */
- wake_up_interruptible_all(&dn->readq);
- mutex_unlock(&dn->lock);
- }
- static void dn_shutdown(struct tipc_dn_chan *dn)
- {
- mutex_lock(&dn->lock);
- /* set state to STALE */
- dn->state = TIPC_STALE;
- /* complete all pending */
- complete(&dn->reply_comp);
- /* wakeup all readers */
- wake_up_interruptible_all(&dn->readq);
- mutex_unlock(&dn->lock);
- }
- static void dn_handle_event(void *data, int event)
- {
- struct tipc_dn_chan *dn = data;
- switch (event) {
- case TIPC_CHANNEL_SHUTDOWN:
- dn_shutdown(dn);
- break;
- case TIPC_CHANNEL_DISCONNECTED:
- dn_disconnected(dn);
- break;
- case TIPC_CHANNEL_CONNECTED:
- dn_connected(dn);
- break;
- default:
- pr_err("%s: unhandled event %d\n", __func__, event);
- break;
- }
- }
- static struct tipc_chan_ops _dn_ops = {
- .handle_msg = dn_handle_msg,
- .handle_event = dn_handle_event,
- };
- #define cdev_to_cdn(c) container_of((c), struct tipc_cdev_node, cdev)
- #define cdn_to_vds(cdn) container_of((cdn), struct tipc_virtio_dev, cdev_node)
- static struct tipc_virtio_dev *_dn_lookup_vds(struct tipc_cdev_node *cdn)
- {
- int ret;
- struct tipc_virtio_dev *vds = NULL;
- mutex_lock(&tipc_devices_lock);
- ret = idr_for_each(&tipc_devices, _match_data, cdn);
- if (ret) {
- vds = cdn_to_vds(cdn);
- kref_get(&vds->refcount);
- }
- mutex_unlock(&tipc_devices_lock);
- return vds;
- }
- static int tipc_open(struct inode *inode, struct file *filp)
- {
- int ret;
- struct tipc_virtio_dev *vds;
- struct tipc_dn_chan *dn;
- struct tipc_cdev_node *cdn = cdev_to_cdn(inode->i_cdev);
- vds = _dn_lookup_vds(cdn);
- if (!vds) {
- ret = -ENOENT;
- goto err_vds_lookup;
- }
- dn = kzalloc(sizeof(*dn), GFP_KERNEL);
- if (!dn) {
- ret = -ENOMEM;
- goto err_alloc_chan;
- }
- mutex_init(&dn->lock);
- init_waitqueue_head(&dn->readq);
- init_completion(&dn->reply_comp);
- INIT_LIST_HEAD(&dn->rx_msg_queue);
- dn->state = TIPC_DISCONNECTED;
- dn->chan = vds_create_channel(vds, &_dn_ops, dn);
- if (IS_ERR(dn->chan)) {
- ret = PTR_ERR(dn->chan);
- goto err_create_chan;
- }
- filp->private_data = dn;
- kref_put(&vds->refcount, _free_vds);
- return 0;
- err_create_chan:
- kfree(dn);
- err_alloc_chan:
- kref_put(&vds->refcount, _free_vds);
- err_vds_lookup:
- return ret;
- }
- static int dn_connect_ioctl(struct tipc_dn_chan *dn, char __user *usr_name)
- {
- int err;
- char name[MAX_SRV_NAME_LEN];
- /* copy in service name from user space */
- err = strncpy_from_user(name, usr_name, sizeof(name));
- if (err < 0) {
- pr_err("%s: copy_from_user (%p) failed (%d)\n",
- __func__, usr_name, err);
- return err;
- }
- name[sizeof(name)-1] = '\0';
- /* send connect request */
- err = tipc_chan_connect(dn->chan, name);
- if (err)
- return err;
- /* and wait for reply */
- return dn_wait_for_reply(dn, REPLY_TIMEOUT);
- }
- static long tipc_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
- {
- int ret;
- struct tipc_dn_chan *dn = filp->private_data;
- if (_IOC_TYPE(cmd) != TIPC_IOC_MAGIC)
- return -EINVAL;
- switch (cmd) {
- case TIPC_IOC_CONNECT:
- ret = dn_connect_ioctl(dn, (char __user *)arg);
- if (ret) {
- pr_err("%s: TIPC_IOC_CONNECT error (%d)!\n", __func__, ret);
- trusty_fast_call32(dn->chan->vds->vdev->dev.parent->parent,
- MT_SMC_FC_THREADS, 0, 0, 0);
- trusty_std_call32(dn->chan->vds->vdev->dev.parent->parent,
- SMC_SC_NOP, 0, 0, 0);
- }
- break;
- default:
- pr_warn("%s: Unhandled ioctl cmd: 0x%x\n",
- __func__, cmd);
- ret = -EINVAL;
- }
- return ret;
- }
- #if defined(CONFIG_COMPAT)
- static long tipc_compat_ioctl(struct file *filp,
- unsigned int cmd, unsigned long arg)
- {
- int ret;
- struct tipc_dn_chan *dn = filp->private_data;
- void __user *user_req = compat_ptr(arg);
- if (_IOC_TYPE(cmd) != TIPC_IOC_MAGIC)
- return -EINVAL;
- switch (cmd) {
- case TIPC_IOC_CONNECT_COMPAT:
- ret = dn_connect_ioctl(dn, user_req);
- break;
- default:
- pr_warn("%s: Unhandled ioctl cmd: 0x%x\n",
- __func__, cmd);
- ret = -EINVAL;
- }
- return ret;
- }
- #endif
- static inline bool _got_rx(struct tipc_dn_chan *dn)
- {
- if (dn->state != TIPC_CONNECTED)
- return true;
- if (!list_empty(&dn->rx_msg_queue))
- return true;
- return false;
- }
- static ssize_t tipc_read(struct file *filp, char __user *buf, size_t buf_len,
- loff_t *offp)
- {
- ssize_t ret;
- size_t data_len;
- struct tipc_msg_buf *mb;
- struct tipc_dn_chan *dn = filp->private_data;
- mutex_lock(&dn->lock);
- while (list_empty(&dn->rx_msg_queue)) {
- if (dn->state != TIPC_CONNECTED) {
- if (dn->state == TIPC_CONNECTING)
- ret = -ENOTCONN;
- else if (dn->state == TIPC_DISCONNECTED)
- ret = -ENOTCONN;
- else if (dn->state == TIPC_STALE)
- ret = -ESHUTDOWN;
- else
- ret = -EBADFD;
- goto out;
- }
- mutex_unlock(&dn->lock);
- if (filp->f_flags & O_NONBLOCK)
- return -EAGAIN;
- if (wait_event_interruptible(dn->readq, _got_rx(dn)))
- return -ERESTARTSYS;
- mutex_lock(&dn->lock);
- }
- mb = list_first_entry(&dn->rx_msg_queue, struct tipc_msg_buf, node);
- data_len = mb_avail_data(mb);
- if (data_len > buf_len) {
- ret = -EMSGSIZE;
- goto out;
- }
- if (copy_to_user(buf, mb_get_data(mb, data_len), data_len)) {
- ret = -EFAULT;
- goto out;
- }
- ret = data_len;
- list_del(&mb->node);
- tipc_chan_put_rxbuf(dn->chan, mb);
- out:
- mutex_unlock(&dn->lock);
- return ret;
- }
- static ssize_t tipc_write(struct file *filp, const char __user *ubuf,
- size_t len, loff_t *offp)
- {
- ssize_t ret;
- long timeout = TXBUF_TIMEOUT;
- struct tipc_msg_buf *txbuf = NULL;
- struct tipc_dn_chan *dn = filp->private_data;
- if (filp->f_flags & O_NONBLOCK)
- timeout = 0;
- txbuf = tipc_chan_get_txbuf_timeout(dn->chan, timeout);
- if (IS_ERR(txbuf))
- return PTR_ERR(txbuf);
- /* check available space */
- if (len > mb_avail_space(txbuf)) {
- ret = -EMSGSIZE;
- goto err_out;
- }
- /* copy in message data */
- if (copy_from_user(mb_put_data(txbuf, len), ubuf, len)) {
- ret = -EFAULT;
- goto err_out;
- }
- /* queue message */
- ret = tipc_chan_queue_msg(dn->chan, txbuf);
- if (ret)
- goto err_out;
- return len;
- err_out:
- tipc_chan_put_txbuf(dn->chan, txbuf);
- return ret;
- }
- static unsigned int tipc_poll(struct file *filp, poll_table *wait)
- {
- unsigned int mask = 0;
- struct tipc_dn_chan *dn = filp->private_data;
- mutex_lock(&dn->lock);
- poll_wait(filp, &dn->readq, wait);
- /* Writes always succeed for now */
- mask |= POLLOUT | POLLWRNORM;
- if (!list_empty(&dn->rx_msg_queue))
- mask |= POLLIN | POLLRDNORM;
- if (dn->state != TIPC_CONNECTED)
- mask |= POLLERR;
- mutex_unlock(&dn->lock);
- return mask;
- }
- static int tipc_release(struct inode *inode, struct file *filp)
- {
- struct tipc_dn_chan *dn = filp->private_data;
- dn_shutdown(dn);
- /* free all pending buffers */
- _free_msg_buf_list(&dn->rx_msg_queue);
- /* shutdown channel */
- tipc_chan_shutdown(dn->chan);
- /* and destroy it */
- tipc_chan_destroy(dn->chan);
- kfree(dn);
- return 0;
- }
- static const struct file_operations tipc_fops = {
- .open = tipc_open,
- .release = tipc_release,
- .unlocked_ioctl = tipc_ioctl,
- #if defined(CONFIG_COMPAT)
- .compat_ioctl = tipc_compat_ioctl,
- #endif
- .read = tipc_read,
- .write = tipc_write,
- .poll = tipc_poll,
- .owner = THIS_MODULE,
- };
- /*****************************************************************************/
- static void chan_trigger_event(struct tipc_chan *chan, int event)
- {
- if (!event)
- return;
- chan->ops->handle_event(chan->ops_arg, event);
- }
- static void _cleanup_vq(struct virtqueue *vq)
- {
- struct tipc_msg_buf *mb;
- while ((mb = virtqueue_detach_unused_buf(vq)) != NULL)
- _free_msg_buf(mb);
- }
- static int _create_cdev_node(struct device *parent,
- struct tipc_cdev_node *cdn,
- const char *name)
- {
- int ret;
- dev_t devt;
- if (!name) {
- dev_dbg(parent, "%s: cdev name has to be provided\n",
- __func__);
- return -EINVAL;
- }
- /* allocate minor */
- ret = idr_alloc(&tipc_devices, cdn, 0, MAX_DEVICES-1, GFP_KERNEL);
- if (ret < 0) {
- dev_dbg(parent, "%s: failed (%d) to get id\n",
- __func__, ret);
- return ret;
- }
- cdn->minor = ret;
- cdev_init(&cdn->cdev, &tipc_fops);
- cdn->cdev.owner = THIS_MODULE;
- /* Add character device */
- devt = MKDEV(tipc_major, cdn->minor);
- ret = cdev_add(&cdn->cdev, devt, 1);
- if (ret) {
- dev_dbg(parent, "%s: cdev_add failed (%d)\n",
- __func__, ret);
- goto err_add_cdev;
- }
- /* Create a device node */
- cdn->dev = device_create(tipc_class, parent,
- devt, NULL, "trusty-ipc-%s", name);
- if (IS_ERR(cdn->dev)) {
- ret = PTR_ERR(cdn->dev);
- dev_dbg(parent, "%s: device_create failed: %d\n",
- __func__, ret);
- goto err_device_create;
- }
- return 0;
- err_device_create:
- cdn->dev = NULL;
- cdev_del(&cdn->cdev);
- err_add_cdev:
- idr_remove(&tipc_devices, cdn->minor);
- return ret;
- }
- static void create_cdev_node(struct tipc_virtio_dev *vds,
- struct tipc_cdev_node *cdn)
- {
- int err;
- mutex_lock(&tipc_devices_lock);
- if (vds->cdev_name[0] && !cdn->dev) {
- kref_get(&vds->refcount);
- err = _create_cdev_node(&vds->vdev->dev, cdn, vds->cdev_name);
- if (err) {
- dev_err(&vds->vdev->dev,
- "failed (%d) to create cdev node\n", err);
- kref_put(&vds->refcount, _free_vds);
- }
- }
- mutex_unlock(&tipc_devices_lock);
- }
- static void destroy_cdev_node(struct tipc_virtio_dev *vds,
- struct tipc_cdev_node *cdn)
- {
- mutex_lock(&tipc_devices_lock);
- if (cdn->dev) {
- device_destroy(tipc_class, MKDEV(tipc_major, cdn->minor));
- cdev_del(&cdn->cdev);
- idr_remove(&tipc_devices, cdn->minor);
- cdn->dev = NULL;
- kref_put(&vds->refcount, _free_vds);
- }
- mutex_unlock(&tipc_devices_lock);
- }
- static void _go_online(struct tipc_virtio_dev *vds)
- {
- mutex_lock(&vds->lock);
- if (vds->state == VDS_OFFLINE)
- vds->state = VDS_ONLINE;
- mutex_unlock(&vds->lock);
- create_cdev_node(vds, &vds->cdev_node);
- dev_info(&vds->vdev->dev, "is online\n");
- }
- static void _go_offline(struct tipc_virtio_dev *vds)
- {
- struct tipc_chan *chan;
- /* change state to OFFLINE */
- mutex_lock(&vds->lock);
- if (vds->state != VDS_ONLINE) {
- mutex_unlock(&vds->lock);
- return;
- }
- vds->state = VDS_OFFLINE;
- mutex_unlock(&vds->lock);
- /* wakeup all waiters */
- wake_up_interruptible_all(&vds->sendq);
- /* shutdown all channels */
- while ((chan = vds_lookup_channel(vds, TIPC_ANY_ADDR))) {
- mutex_lock(&chan->lock);
- chan->state = TIPC_STALE;
- chan->remote = 0;
- chan_trigger_event(chan, TIPC_CHANNEL_SHUTDOWN);
- mutex_unlock(&chan->lock);
- kref_put(&chan->refcount, _free_chan);
- }
- /* shutdown device node */
- destroy_cdev_node(vds, &vds->cdev_node);
- dev_info(&vds->vdev->dev, "is offline\n");
- }
- static void _handle_conn_rsp(struct tipc_virtio_dev *vds,
- struct tipc_conn_rsp_body *rsp, size_t len)
- {
- struct tipc_chan *chan;
- if (sizeof(*rsp) != len) {
- dev_err(&vds->vdev->dev, "%s: Invalid response length %zd\n",
- __func__, len);
- return;
- }
- dev_dbg(&vds->vdev->dev,
- "%s: connection response: for addr 0x%x: "
- "status %d remote addr 0x%x\n",
- __func__, rsp->target, rsp->status, rsp->remote);
- /* Lookup channel */
- chan = vds_lookup_channel(vds, rsp->target);
- if (chan) {
- mutex_lock(&chan->lock);
- if (chan->state == TIPC_CONNECTING) {
- if (!rsp->status) {
- chan->state = TIPC_CONNECTED;
- chan->remote = rsp->remote;
- chan->max_msg_cnt = rsp->max_msg_cnt;
- chan->max_msg_size = rsp->max_msg_size;
- chan_trigger_event(chan,
- TIPC_CHANNEL_CONNECTED);
- } else {
- chan->state = TIPC_DISCONNECTED;
- chan->remote = 0;
- chan_trigger_event(chan,
- TIPC_CHANNEL_DISCONNECTED);
- }
- }
- mutex_unlock(&chan->lock);
- kref_put(&chan->refcount, _free_chan);
- }
- }
- static void _handle_disc_req(struct tipc_virtio_dev *vds,
- struct tipc_disc_req_body *req, size_t len)
- {
- struct tipc_chan *chan;
- if (sizeof(*req) != len) {
- dev_err(&vds->vdev->dev, "%s: Invalid request length %zd\n",
- __func__, len);
- return;
- }
- dev_dbg(&vds->vdev->dev, "%s: disconnect request: for addr 0x%x\n",
- __func__, req->target);
- chan = vds_lookup_channel(vds, req->target);
- if (chan) {
- mutex_lock(&chan->lock);
- if (chan->state == TIPC_CONNECTED) {
- chan->state = TIPC_DISCONNECTED;
- chan->remote = 0;
- chan_trigger_event(chan, TIPC_CHANNEL_DISCONNECTED);
- }
- mutex_unlock(&chan->lock);
- kref_put(&chan->refcount, _free_chan);
- }
- }
- static void _handle_ctrl_msg(struct tipc_virtio_dev *vds,
- void *data, int len, u32 src)
- {
- struct tipc_ctrl_msg *msg = data;
- if ((len < sizeof(*msg)) || (sizeof(*msg) + msg->body_len != len)) {
- dev_err(&vds->vdev->dev,
- "%s: Invalid message length ( %d vs. %d)\n",
- __func__, (int)(sizeof(*msg) + msg->body_len), len);
- return;
- }
- dev_dbg(&vds->vdev->dev,
- "%s: Incoming ctrl message: src 0x%x type %d len %d\n",
- __func__, src, msg->type, msg->body_len);
- switch (msg->type) {
- case TIPC_CTRL_MSGTYPE_GO_ONLINE:
- _go_online(vds);
- break;
- case TIPC_CTRL_MSGTYPE_GO_OFFLINE:
- _go_offline(vds);
- break;
- case TIPC_CTRL_MSGTYPE_CONN_RSP:
- _handle_conn_rsp(vds, (struct tipc_conn_rsp_body *)msg->body,
- msg->body_len);
- break;
- case TIPC_CTRL_MSGTYPE_DISC_REQ:
- _handle_disc_req(vds, (struct tipc_disc_req_body *)msg->body,
- msg->body_len);
- break;
- default:
- dev_warn(&vds->vdev->dev,
- "%s: Unexpected message type: %d\n",
- __func__, msg->type);
- }
- }
- static int _handle_rxbuf(struct tipc_virtio_dev *vds,
- struct tipc_msg_buf *rxbuf, size_t rxlen)
- {
- int err;
- struct scatterlist sg;
- struct tipc_msg_hdr *msg;
- struct device *dev = &vds->vdev->dev;
- /* message sanity check */
- if (rxlen > rxbuf->buf_sz) {
- dev_warn(dev, "inbound msg is too big: %zd\n", rxlen);
- goto drop_it;
- }
- if (rxlen < sizeof(*msg)) {
- dev_warn(dev, "inbound msg is too short: %zd\n", rxlen);
- goto drop_it;
- }
- /* reset buffer and put data */
- mb_reset(rxbuf);
- mb_put_data(rxbuf, rxlen);
- /* get message header */
- msg = mb_get_data(rxbuf, sizeof(*msg));
- if (mb_avail_data(rxbuf) != msg->len) {
- dev_warn(dev, "inbound msg length mismatch: (%d vs. %d)\n",
- (uint) mb_avail_data(rxbuf), (uint)msg->len);
- goto drop_it;
- }
- dev_dbg(dev, "From: %d, To: %d, Len: %d, Flags: 0x%x, Reserved: %d\n",
- msg->src, msg->dst, msg->len, msg->flags, msg->reserved);
- /* message directed to control endpoint is a special case */
- if (msg->dst == TIPC_CTRL_ADDR) {
- _handle_ctrl_msg(vds, msg->data, msg->len, msg->src);
- } else {
- struct tipc_chan *chan = NULL;
- /* Lookup channel */
- chan = vds_lookup_channel(vds, msg->dst);
- if (chan) {
- /* handle it */
- rxbuf = chan->ops->handle_msg(chan->ops_arg, rxbuf);
- BUG_ON(!rxbuf);
- kref_put(&chan->refcount, _free_chan);
- }
- }
- drop_it:
- /* add the buffer back to the virtqueue */
- sg_init_one(&sg, rxbuf->buf_va, rxbuf->buf_sz);
- err = virtqueue_add_inbuf(vds->rxvq, &sg, 1, rxbuf, GFP_KERNEL);
- if (err < 0) {
- dev_err(dev, "failed to add a virtqueue buffer: %d\n", err);
- return err;
- }
- return 0;
- }
- static void _rxvq_cb(struct virtqueue *rxvq)
- {
- unsigned int len;
- struct tipc_msg_buf *mb;
- unsigned int msg_cnt = 0;
- struct tipc_virtio_dev *vds = rxvq->vdev->priv;
- while ((mb = virtqueue_get_buf(rxvq, &len)) != NULL) {
- if (_handle_rxbuf(vds, mb, len))
- break;
- msg_cnt++;
- }
- /* tell the other size that we added rx buffers */
- if (msg_cnt)
- virtqueue_kick(rxvq);
- }
- static void _txvq_cb(struct virtqueue *txvq)
- {
- unsigned int len;
- struct tipc_msg_buf *mb;
- bool need_wakeup = false;
- struct tipc_virtio_dev *vds = txvq->vdev->priv;
- dev_dbg(&txvq->vdev->dev, "%s\n", __func__);
- /* detach all buffers */
- mutex_lock(&vds->lock);
- while ((mb = virtqueue_get_buf(txvq, &len)) != NULL)
- need_wakeup |= _put_txbuf_locked(vds, mb);
- mutex_unlock(&vds->lock);
- if (need_wakeup) {
- /* wake up potential senders waiting for a tx buffer */
- wake_up_interruptible_all(&vds->sendq);
- }
- }
- static int tipc_virtio_probe(struct virtio_device *vdev)
- {
- int err, i;
- struct tipc_virtio_dev *vds;
- struct tipc_dev_config config;
- struct virtqueue *vqs[2];
- vq_callback_t *vq_cbs[] = {_rxvq_cb, _txvq_cb};
- const char *vq_names[] = { "rx", "tx" };
- dev_dbg(&vdev->dev, "%s:\n", __func__);
- vds = kzalloc(sizeof(*vds), GFP_KERNEL);
- if (!vds)
- return -ENOMEM;
- vds->vdev = vdev;
- mutex_init(&vds->lock);
- kref_init(&vds->refcount);
- init_waitqueue_head(&vds->sendq);
- INIT_LIST_HEAD(&vds->free_buf_list);
- idr_init(&vds->addr_idr);
- /* set default max message size and alignment */
- memset(&config, 0, sizeof(config));
- config.msg_buf_max_size = DEFAULT_MSG_BUF_SIZE;
- config.msg_buf_alignment = DEFAULT_MSG_BUF_ALIGN;
- /* get configuration if present */
- vdev->config->get(vdev, 0, &config, sizeof(config));
- /* copy dev name */
- strncpy(vds->cdev_name, config.dev_name, sizeof(vds->cdev_name));
- vds->cdev_name[sizeof(vds->cdev_name)-1] = '\0';
- /* find tx virtqueues (rx and tx and in this order) */
- err = vdev->config->find_vqs(vdev, 2, vqs, vq_cbs, vq_names);
- if (err)
- goto err_find_vqs;
- vds->rxvq = vqs[0];
- vds->txvq = vqs[1];
- /* save max buffer size and count */
- vds->msg_buf_max_sz = config.msg_buf_max_size;
- vds->msg_buf_max_cnt = virtqueue_get_vring_size(vds->txvq);
- /* set up the receive buffers */
- for (i = 0; i < virtqueue_get_vring_size(vds->rxvq); i++) {
- struct scatterlist sg;
- struct tipc_msg_buf *rxbuf;
- rxbuf = _alloc_msg_buf(vds->msg_buf_max_sz);
- if (!rxbuf) {
- dev_err(&vdev->dev, "failed to allocate rx buffer\n");
- err = -ENOMEM;
- goto err_free_rx_buffers;
- }
- sg_init_one(&sg, rxbuf->buf_va, rxbuf->buf_sz);
- err = virtqueue_add_inbuf(vds->rxvq, &sg, 1, rxbuf, GFP_KERNEL);
- WARN_ON(err); /* sanity check; this can't really happen */
- }
- vdev->priv = vds;
- vds->state = VDS_OFFLINE;
- dev_dbg(&vdev->dev, "%s: done\n", __func__);
- return 0;
- err_free_rx_buffers:
- _cleanup_vq(vds->rxvq);
- err_find_vqs:
- kref_put(&vds->refcount, _free_vds);
- return err;
- }
- static void tipc_virtio_remove(struct virtio_device *vdev)
- {
- struct tipc_virtio_dev *vds = vdev->priv;
- _go_offline(vds);
- mutex_lock(&vds->lock);
- vds->state = VDS_DEAD;
- vds->vdev = NULL;
- mutex_unlock(&vds->lock);
- vdev->config->reset(vdev);
- idr_destroy(&vds->addr_idr);
- _cleanup_vq(vds->rxvq);
- _cleanup_vq(vds->txvq);
- _free_msg_buf_list(&vds->free_buf_list);
- vdev->config->del_vqs(vds->vdev);
- kref_put(&vds->refcount, _free_vds);
- }
- static struct virtio_device_id tipc_virtio_id_table[] = {
- { VIRTIO_ID_TRUSTY_IPC, VIRTIO_DEV_ANY_ID },
- { 0 },
- };
- static unsigned int features[] = {
- 0,
- };
- static struct virtio_driver virtio_tipc_driver = {
- .feature_table = features,
- .feature_table_size = ARRAY_SIZE(features),
- .driver.name = KBUILD_MODNAME,
- .driver.owner = THIS_MODULE,
- .id_table = tipc_virtio_id_table,
- .probe = tipc_virtio_probe,
- .remove = tipc_virtio_remove,
- };
- static int __init tipc_init(void)
- {
- int ret;
- dev_t dev;
- ret = alloc_chrdev_region(&dev, 0, MAX_DEVICES, KBUILD_MODNAME);
- if (ret) {
- pr_err("%s: alloc_chrdev_region failed: %d\n", __func__, ret);
- return ret;
- }
- tipc_major = MAJOR(dev);
- tipc_class = class_create(THIS_MODULE, KBUILD_MODNAME);
- if (IS_ERR(tipc_class)) {
- ret = PTR_ERR(tipc_class);
- pr_err("%s: class_create failed: %d\n", __func__, ret);
- goto err_class_create;
- }
- ret = register_virtio_driver(&virtio_tipc_driver);
- if (ret) {
- pr_err("failed to register virtio driver: %d\n", ret);
- goto err_register_virtio_drv;
- }
- return 0;
- err_register_virtio_drv:
- class_destroy(tipc_class);
- err_class_create:
- unregister_chrdev_region(dev, MAX_DEVICES);
- return ret;
- }
- static void __exit tipc_exit(void)
- {
- unregister_virtio_driver(&virtio_tipc_driver);
- class_destroy(tipc_class);
- unregister_chrdev_region(MKDEV(tipc_major, 0), MAX_DEVICES);
- }
- /* We need to init this early */
- subsys_initcall(tipc_init);
- module_exit(tipc_exit);
- MODULE_DEVICE_TABLE(tipc, tipc_virtio_id_table);
- MODULE_DESCRIPTION("Trusty IPC driver");
- MODULE_LICENSE("GPL v2");
|