blob: aca00af93afeebe8253483cd20004ee9c3702aa6 [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Abstract layer for MIDI v1.0 stream
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02004 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
6
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <sound/core.h>
8#include <linux/major.h>
9#include <linux/init.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010010#include <linux/sched/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/slab.h>
12#include <linux/time.h>
13#include <linux/wait.h>
Ingo Molnar1a60d4c2006-01-16 16:29:08 +010014#include <linux/mutex.h>
Paul Gortmaker65a77212011-07-15 13:13:37 -040015#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/delay.h>
Takashi Iwaief4db232018-07-17 23:12:33 +020017#include <linux/mm.h>
Gustavo A. R. Silva2b1d9c82019-03-20 16:15:24 -050018#include <linux/nospec.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <sound/rawmidi.h>
20#include <sound/info.h>
21#include <sound/control.h>
22#include <sound/minors.h>
23#include <sound/initval.h>
24
Jaroslav Kyselac1017a42007-10-15 09:50:19 +020025MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
Linus Torvalds1da177e2005-04-16 15:20:36 -070026MODULE_DESCRIPTION("Midlevel RawMidi code for ALSA.");
27MODULE_LICENSE("GPL");
28
29#ifdef CONFIG_SND_OSSEMUL
Takashi Iwai6581f4e2006-05-17 17:14:51 +020030static int midi_map[SNDRV_CARDS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070031static int amidi_map[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)] = 1};
32module_param_array(midi_map, int, NULL, 0444);
33MODULE_PARM_DESC(midi_map, "Raw MIDI device number assigned to 1st OSS device.");
34module_param_array(amidi_map, int, NULL, 0444);
35MODULE_PARM_DESC(amidi_map, "Raw MIDI device number assigned to 2nd OSS device.");
36#endif /* CONFIG_SND_OSSEMUL */
37
Pierre-Louis Bossart93fcef82020-09-02 16:21:30 -050038static int snd_rawmidi_free(struct snd_rawmidi *rmidi);
Takashi Iwai48c9d412005-11-17 13:56:51 +010039static int snd_rawmidi_dev_free(struct snd_device *device);
40static int snd_rawmidi_dev_register(struct snd_device *device);
41static int snd_rawmidi_dev_disconnect(struct snd_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Clemens Ladischf87135f2005-11-20 14:06:59 +010043static LIST_HEAD(snd_rawmidi_devices);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +010044static DEFINE_MUTEX(register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Takashi Iwaica20d292014-02-04 18:21:39 +010046#define rmidi_err(rmidi, fmt, args...) \
Takashi Iwai07cc3e82015-01-30 15:31:52 +010047 dev_err(&(rmidi)->dev, fmt, ##args)
Takashi Iwaica20d292014-02-04 18:21:39 +010048#define rmidi_warn(rmidi, fmt, args...) \
Takashi Iwai07cc3e82015-01-30 15:31:52 +010049 dev_warn(&(rmidi)->dev, fmt, ##args)
Takashi Iwaica20d292014-02-04 18:21:39 +010050#define rmidi_dbg(rmidi, fmt, args...) \
Takashi Iwai07cc3e82015-01-30 15:31:52 +010051 dev_dbg(&(rmidi)->dev, fmt, ##args)
Takashi Iwaica20d292014-02-04 18:21:39 +010052
Baolin Wangd9e55822018-04-24 20:06:12 +080053struct snd_rawmidi_status32 {
54 s32 stream;
55 s32 tstamp_sec; /* Timestamp */
56 s32 tstamp_nsec;
57 u32 avail; /* available bytes */
58 u32 xruns; /* count of overruns since last status (in bytes) */
59 unsigned char reserved[16]; /* reserved for future use */
60};
61
62#define SNDRV_RAWMIDI_IOCTL_STATUS32 _IOWR('W', 0x20, struct snd_rawmidi_status32)
63
64struct snd_rawmidi_status64 {
65 int stream;
66 u8 rsvd[4]; /* alignment */
67 s64 tstamp_sec; /* Timestamp */
68 s64 tstamp_nsec;
69 size_t avail; /* available bytes */
70 size_t xruns; /* count of overruns since last status (in bytes) */
71 unsigned char reserved[16]; /* reserved for future use */
72};
73
74#define SNDRV_RAWMIDI_IOCTL_STATUS64 _IOWR('W', 0x20, struct snd_rawmidi_status64)
75
Clemens Ladischf87135f2005-11-20 14:06:59 +010076static struct snd_rawmidi *snd_rawmidi_search(struct snd_card *card, int device)
77{
Clemens Ladischf87135f2005-11-20 14:06:59 +010078 struct snd_rawmidi *rawmidi;
79
Johannes Berg9244b2c2006-10-05 16:02:22 +020080 list_for_each_entry(rawmidi, &snd_rawmidi_devices, list)
Clemens Ladischf87135f2005-11-20 14:06:59 +010081 if (rawmidi->card == card && rawmidi->device == device)
82 return rawmidi;
Clemens Ladischf87135f2005-11-20 14:06:59 +010083 return NULL;
84}
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086static inline unsigned short snd_rawmidi_file_flags(struct file *file)
87{
88 switch (file->f_mode & (FMODE_READ | FMODE_WRITE)) {
89 case FMODE_WRITE:
90 return SNDRV_RAWMIDI_LFLG_OUTPUT;
91 case FMODE_READ:
92 return SNDRV_RAWMIDI_LFLG_INPUT;
93 default:
94 return SNDRV_RAWMIDI_LFLG_OPEN;
95 }
96}
97
Takashi Iwai88a06d62020-12-06 09:35:27 +010098static inline bool __snd_rawmidi_ready(struct snd_rawmidi_runtime *runtime)
99{
100 return runtime->avail >= runtime->avail_min;
101}
102
103static bool snd_rawmidi_ready(struct snd_rawmidi_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
Takashi Iwai48c9d412005-11-17 13:56:51 +0100105 struct snd_rawmidi_runtime *runtime = substream->runtime;
Takashi Iwai88a06d62020-12-06 09:35:27 +0100106 unsigned long flags;
107 bool ready;
Takashi Iwai5bed9132018-07-17 22:32:52 +0200108
Takashi Iwai88a06d62020-12-06 09:35:27 +0100109 spin_lock_irqsave(&runtime->lock, flags);
110 ready = __snd_rawmidi_ready(runtime);
111 spin_unlock_irqrestore(&runtime->lock, flags);
112 return ready;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
114
Takashi Iwai48c9d412005-11-17 13:56:51 +0100115static inline int snd_rawmidi_ready_append(struct snd_rawmidi_substream *substream,
116 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
Takashi Iwai48c9d412005-11-17 13:56:51 +0100118 struct snd_rawmidi_runtime *runtime = substream->runtime;
Takashi Iwai5bed9132018-07-17 22:32:52 +0200119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 return runtime->avail >= runtime->avail_min &&
121 (!substream->append || runtime->avail >= count);
122}
123
Takashi Iwaib3c705a2011-06-14 14:37:06 +0200124static void snd_rawmidi_input_event_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
Takashi Iwaib3c705a2011-06-14 14:37:06 +0200126 struct snd_rawmidi_runtime *runtime =
127 container_of(work, struct snd_rawmidi_runtime, event_work);
Takashi Iwai5bed9132018-07-17 22:32:52 +0200128
Takashi Iwaib3c705a2011-06-14 14:37:06 +0200129 if (runtime->event)
130 runtime->event(runtime->substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131}
132
Takashi Iwaic1f6e3c2020-05-07 13:44:56 +0200133/* buffer refcount management: call with runtime->lock held */
134static inline void snd_rawmidi_buffer_ref(struct snd_rawmidi_runtime *runtime)
135{
136 runtime->buffer_ref++;
137}
138
139static inline void snd_rawmidi_buffer_unref(struct snd_rawmidi_runtime *runtime)
140{
141 runtime->buffer_ref--;
142}
143
Takashi Iwai48c9d412005-11-17 13:56:51 +0100144static int snd_rawmidi_runtime_create(struct snd_rawmidi_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
Takashi Iwai48c9d412005-11-17 13:56:51 +0100146 struct snd_rawmidi_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Takashi Iwai5bed9132018-07-17 22:32:52 +0200148 runtime = kzalloc(sizeof(*runtime), GFP_KERNEL);
149 if (!runtime)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 return -ENOMEM;
Takashi Iwaib3c705a2011-06-14 14:37:06 +0200151 runtime->substream = substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 spin_lock_init(&runtime->lock);
153 init_waitqueue_head(&runtime->sleep);
Takashi Iwaib3c705a2011-06-14 14:37:06 +0200154 INIT_WORK(&runtime->event_work, snd_rawmidi_input_event_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 runtime->event = NULL;
156 runtime->buffer_size = PAGE_SIZE;
157 runtime->avail_min = 1;
158 if (substream->stream == SNDRV_RAWMIDI_STREAM_INPUT)
159 runtime->avail = 0;
160 else
161 runtime->avail = runtime->buffer_size;
Takashi Iwai5a7b44a2018-09-03 15:16:43 +0200162 runtime->buffer = kvzalloc(runtime->buffer_size, GFP_KERNEL);
Takashi Iwai5bed9132018-07-17 22:32:52 +0200163 if (!runtime->buffer) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 kfree(runtime);
165 return -ENOMEM;
166 }
167 runtime->appl_ptr = runtime->hw_ptr = 0;
168 substream->runtime = runtime;
169 return 0;
170}
171
Takashi Iwai48c9d412005-11-17 13:56:51 +0100172static int snd_rawmidi_runtime_free(struct snd_rawmidi_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
Takashi Iwai48c9d412005-11-17 13:56:51 +0100174 struct snd_rawmidi_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Takashi Iwaief4db232018-07-17 23:12:33 +0200176 kvfree(runtime->buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 kfree(runtime);
178 substream->runtime = NULL;
179 return 0;
180}
181
Takashi Iwai5bed9132018-07-17 22:32:52 +0200182static inline void snd_rawmidi_output_trigger(struct snd_rawmidi_substream *substream, int up)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
Takashi Iwai219df322008-11-03 08:17:05 +0100184 if (!substream->opened)
185 return;
Takashi Iwaib3c705a2011-06-14 14:37:06 +0200186 substream->ops->trigger(substream, up);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187}
188
Takashi Iwai48c9d412005-11-17 13:56:51 +0100189static void snd_rawmidi_input_trigger(struct snd_rawmidi_substream *substream, int up)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
Takashi Iwai219df322008-11-03 08:17:05 +0100191 if (!substream->opened)
192 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 substream->ops->trigger(substream, up);
Takashi Iwaib3c705a2011-06-14 14:37:06 +0200194 if (!up)
195 cancel_work_sync(&substream->runtime->event_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196}
197
Takashi Iwaif5beb592018-07-17 23:07:29 +0200198static void __reset_runtime_ptrs(struct snd_rawmidi_runtime *runtime,
199 bool is_input)
200{
201 runtime->drain = 0;
202 runtime->appl_ptr = runtime->hw_ptr = 0;
203 runtime->avail = is_input ? 0 : runtime->buffer_size;
204}
205
206static void reset_runtime_ptrs(struct snd_rawmidi_runtime *runtime,
207 bool is_input)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
209 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 spin_lock_irqsave(&runtime->lock, flags);
Takashi Iwaif5beb592018-07-17 23:07:29 +0200212 __reset_runtime_ptrs(runtime, is_input);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 spin_unlock_irqrestore(&runtime->lock, flags);
Takashi Iwaif5beb592018-07-17 23:07:29 +0200214}
215
216int snd_rawmidi_drop_output(struct snd_rawmidi_substream *substream)
217{
218 snd_rawmidi_output_trigger(substream, 0);
219 reset_runtime_ptrs(substream->runtime, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 return 0;
221}
Takashi Iwai6776a5d2014-02-27 16:00:17 +0100222EXPORT_SYMBOL(snd_rawmidi_drop_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Takashi Iwai48c9d412005-11-17 13:56:51 +0100224int snd_rawmidi_drain_output(struct snd_rawmidi_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
226 int err;
227 long timeout;
Takashi Iwai48c9d412005-11-17 13:56:51 +0100228 struct snd_rawmidi_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 err = 0;
231 runtime->drain = 1;
232 timeout = wait_event_interruptible_timeout(runtime->sleep,
233 (runtime->avail >= runtime->buffer_size),
234 10*HZ);
235 if (signal_pending(current))
236 err = -ERESTARTSYS;
237 if (runtime->avail < runtime->buffer_size && !timeout) {
Takashi Iwaica20d292014-02-04 18:21:39 +0100238 rmidi_warn(substream->rmidi,
239 "rawmidi drain error (avail = %li, buffer_size = %li)\n",
240 (long)runtime->avail, (long)runtime->buffer_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 err = -EIO;
242 }
243 runtime->drain = 0;
244 if (err != -ERESTARTSYS) {
245 /* we need wait a while to make sure that Tx FIFOs are empty */
246 if (substream->ops->drain)
247 substream->ops->drain(substream);
248 else
249 msleep(50);
250 snd_rawmidi_drop_output(substream);
251 }
252 return err;
253}
Takashi Iwai6776a5d2014-02-27 16:00:17 +0100254EXPORT_SYMBOL(snd_rawmidi_drain_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Takashi Iwai48c9d412005-11-17 13:56:51 +0100256int snd_rawmidi_drain_input(struct snd_rawmidi_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 snd_rawmidi_input_trigger(substream, 0);
Takashi Iwaif5beb592018-07-17 23:07:29 +0200259 reset_runtime_ptrs(substream->runtime, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 return 0;
261}
Takashi Iwai6776a5d2014-02-27 16:00:17 +0100262EXPORT_SYMBOL(snd_rawmidi_drain_input);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Takashi Iwai9a1b64c2009-02-11 17:03:49 +0100264/* look for an available substream for the given stream direction;
265 * if a specific subdevice is given, try to assign it
266 */
267static int assign_substream(struct snd_rawmidi *rmidi, int subdevice,
268 int stream, int mode,
269 struct snd_rawmidi_substream **sub_ret)
270{
271 struct snd_rawmidi_substream *substream;
272 struct snd_rawmidi_str *s = &rmidi->streams[stream];
Takashi Iwaiedb87ed2020-01-05 15:47:56 +0100273 static const unsigned int info_flags[2] = {
Takashi Iwai9a1b64c2009-02-11 17:03:49 +0100274 [SNDRV_RAWMIDI_STREAM_OUTPUT] = SNDRV_RAWMIDI_INFO_OUTPUT,
275 [SNDRV_RAWMIDI_STREAM_INPUT] = SNDRV_RAWMIDI_INFO_INPUT,
276 };
277
278 if (!(rmidi->info_flags & info_flags[stream]))
279 return -ENXIO;
280 if (subdevice >= 0 && subdevice >= s->substream_count)
281 return -ENODEV;
Takashi Iwai9a1b64c2009-02-11 17:03:49 +0100282
283 list_for_each_entry(substream, &s->substreams, list) {
284 if (substream->opened) {
285 if (stream == SNDRV_RAWMIDI_STREAM_INPUT ||
Clemens Ladisch16fb1092009-10-21 09:10:16 +0200286 !(mode & SNDRV_RAWMIDI_LFLG_APPEND) ||
287 !substream->append)
Takashi Iwai9a1b64c2009-02-11 17:03:49 +0100288 continue;
289 }
290 if (subdevice < 0 || subdevice == substream->number) {
291 *sub_ret = substream;
292 return 0;
293 }
294 }
295 return -EAGAIN;
296}
297
298/* open and do ref-counting for the given substream */
299static int open_substream(struct snd_rawmidi *rmidi,
300 struct snd_rawmidi_substream *substream,
301 int mode)
302{
303 int err;
304
Clemens Ladisch8579d2d2009-10-21 09:09:38 +0200305 if (substream->use_count == 0) {
306 err = snd_rawmidi_runtime_create(substream);
307 if (err < 0)
308 return err;
309 err = substream->ops->open(substream);
Clemens Ladischb7fe7502009-10-21 09:11:43 +0200310 if (err < 0) {
311 snd_rawmidi_runtime_free(substream);
Clemens Ladisch8579d2d2009-10-21 09:09:38 +0200312 return err;
Clemens Ladischb7fe7502009-10-21 09:11:43 +0200313 }
Clemens Ladisch8579d2d2009-10-21 09:09:38 +0200314 substream->opened = 1;
Clemens Ladisch2d4b8422009-07-13 13:52:46 +0200315 substream->active_sensing = 0;
Clemens Ladisch8579d2d2009-10-21 09:09:38 +0200316 if (mode & SNDRV_RAWMIDI_LFLG_APPEND)
317 substream->append = 1;
Clemens Ladisch7584af12009-11-10 10:14:04 +0100318 substream->pid = get_pid(task_pid(current));
Clemens Ladisch91d12c42009-10-21 09:12:26 +0200319 rmidi->streams[substream->stream].substream_opened++;
Clemens Ladisch8579d2d2009-10-21 09:09:38 +0200320 }
321 substream->use_count++;
Takashi Iwai9a1b64c2009-02-11 17:03:49 +0100322 return 0;
323}
324
325static void close_substream(struct snd_rawmidi *rmidi,
326 struct snd_rawmidi_substream *substream,
327 int cleanup);
328
329static int rawmidi_open_priv(struct snd_rawmidi *rmidi, int subdevice, int mode,
330 struct snd_rawmidi_file *rfile)
331{
332 struct snd_rawmidi_substream *sinput = NULL, *soutput = NULL;
333 int err;
334
335 rfile->input = rfile->output = NULL;
336 if (mode & SNDRV_RAWMIDI_LFLG_INPUT) {
337 err = assign_substream(rmidi, subdevice,
338 SNDRV_RAWMIDI_STREAM_INPUT,
339 mode, &sinput);
340 if (err < 0)
Clemens Ladischb7fe7502009-10-21 09:11:43 +0200341 return err;
Takashi Iwai9a1b64c2009-02-11 17:03:49 +0100342 }
343 if (mode & SNDRV_RAWMIDI_LFLG_OUTPUT) {
344 err = assign_substream(rmidi, subdevice,
345 SNDRV_RAWMIDI_STREAM_OUTPUT,
346 mode, &soutput);
347 if (err < 0)
Clemens Ladischb7fe7502009-10-21 09:11:43 +0200348 return err;
Takashi Iwai9a1b64c2009-02-11 17:03:49 +0100349 }
350
351 if (sinput) {
352 err = open_substream(rmidi, sinput, mode);
353 if (err < 0)
Clemens Ladischb7fe7502009-10-21 09:11:43 +0200354 return err;
Takashi Iwai9a1b64c2009-02-11 17:03:49 +0100355 }
356 if (soutput) {
357 err = open_substream(rmidi, soutput, mode);
358 if (err < 0) {
359 if (sinput)
360 close_substream(rmidi, sinput, 0);
Clemens Ladischb7fe7502009-10-21 09:11:43 +0200361 return err;
Takashi Iwai9a1b64c2009-02-11 17:03:49 +0100362 }
363 }
364
365 rfile->rmidi = rmidi;
366 rfile->input = sinput;
367 rfile->output = soutput;
368 return 0;
Takashi Iwai9a1b64c2009-02-11 17:03:49 +0100369}
370
371/* called from sound/core/seq/seq_midi.c */
Clemens Ladischf87135f2005-11-20 14:06:59 +0100372int snd_rawmidi_kernel_open(struct snd_card *card, int device, int subdevice,
Takashi Iwai5bed9132018-07-17 22:32:52 +0200373 int mode, struct snd_rawmidi_file *rfile)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
Takashi Iwai48c9d412005-11-17 13:56:51 +0100375 struct snd_rawmidi *rmidi;
Takashi Iwai7fdc9b02018-07-17 22:45:50 +0200376 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Takashi Iwai9a1b64c2009-02-11 17:03:49 +0100378 if (snd_BUG_ON(!rfile))
379 return -EINVAL;
380
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100381 mutex_lock(&register_mutex);
Clemens Ladischf87135f2005-11-20 14:06:59 +0100382 rmidi = snd_rawmidi_search(card, device);
Takashi Iwai7fdc9b02018-07-17 22:45:50 +0200383 if (!rmidi)
384 err = -ENODEV;
385 else if (!try_module_get(rmidi->card->module))
386 err = -ENXIO;
Takashi Iwaif9d20282009-02-11 14:55:59 +0100387 mutex_unlock(&register_mutex);
Takashi Iwai7fdc9b02018-07-17 22:45:50 +0200388 if (err < 0)
389 return err;
Takashi Iwaif9d20282009-02-11 14:55:59 +0100390
Takashi Iwai9a1b64c2009-02-11 17:03:49 +0100391 mutex_lock(&rmidi->open_mutex);
392 err = rawmidi_open_priv(rmidi, subdevice, mode, rfile);
393 mutex_unlock(&rmidi->open_mutex);
394 if (err < 0)
395 module_put(rmidi->card->module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 return err;
397}
Takashi Iwai6776a5d2014-02-27 16:00:17 +0100398EXPORT_SYMBOL(snd_rawmidi_kernel_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
400static int snd_rawmidi_open(struct inode *inode, struct file *file)
401{
402 int maj = imajor(inode);
Takashi Iwai48c9d412005-11-17 13:56:51 +0100403 struct snd_card *card;
Clemens Ladischf87135f2005-11-20 14:06:59 +0100404 int subdevice;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 unsigned short fflags;
406 int err;
Takashi Iwai48c9d412005-11-17 13:56:51 +0100407 struct snd_rawmidi *rmidi;
Takashi Iwai9a1b64c2009-02-11 17:03:49 +0100408 struct snd_rawmidi_file *rawmidi_file = NULL;
Ingo Molnarac6424b2017-06-20 12:06:13 +0200409 wait_queue_entry_t wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Takashi Iwai5bed9132018-07-17 22:32:52 +0200411 if ((file->f_flags & O_APPEND) && !(file->f_flags & O_NONBLOCK))
Takashi Iwai9a1b64c2009-02-11 17:03:49 +0100412 return -EINVAL; /* invalid combination */
413
Kirill Smelkovc5bf68f2019-03-26 23:51:19 +0300414 err = stream_open(inode, file);
Takashi Iwai02f48652010-04-13 11:49:04 +0200415 if (err < 0)
416 return err;
417
Clemens Ladischf1902862005-10-24 17:05:03 +0200418 if (maj == snd_major) {
Clemens Ladischf87135f2005-11-20 14:06:59 +0100419 rmidi = snd_lookup_minor_data(iminor(inode),
420 SNDRV_DEVICE_TYPE_RAWMIDI);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421#ifdef CONFIG_SND_OSSEMUL
Clemens Ladischf1902862005-10-24 17:05:03 +0200422 } else if (maj == SOUND_MAJOR) {
Clemens Ladischf87135f2005-11-20 14:06:59 +0100423 rmidi = snd_lookup_oss_minor_data(iminor(inode),
424 SNDRV_OSS_DEVICE_TYPE_MIDI);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425#endif
Clemens Ladischf1902862005-10-24 17:05:03 +0200426 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 if (rmidi == NULL)
430 return -ENODEV;
Takashi Iwai9a1b64c2009-02-11 17:03:49 +0100431
Takashi Iwaia0830db2012-10-16 13:05:59 +0200432 if (!try_module_get(rmidi->card->module)) {
433 snd_card_unref(rmidi->card);
Takashi Iwai9a1b64c2009-02-11 17:03:49 +0100434 return -ENXIO;
Takashi Iwaia0830db2012-10-16 13:05:59 +0200435 }
Takashi Iwai9a1b64c2009-02-11 17:03:49 +0100436
437 mutex_lock(&rmidi->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 card = rmidi->card;
439 err = snd_card_file_add(card, file);
440 if (err < 0)
Takashi Iwai9a1b64c2009-02-11 17:03:49 +0100441 goto __error_card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 fflags = snd_rawmidi_file_flags(file);
Clemens Ladischf1902862005-10-24 17:05:03 +0200443 if ((file->f_flags & O_APPEND) || maj == SOUND_MAJOR) /* OSS emul? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 fflags |= SNDRV_RAWMIDI_LFLG_APPEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 rawmidi_file = kmalloc(sizeof(*rawmidi_file), GFP_KERNEL);
446 if (rawmidi_file == NULL) {
Takashi Iwai9a1b64c2009-02-11 17:03:49 +0100447 err = -ENOMEM;
448 goto __error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 }
450 init_waitqueue_entry(&wait, current);
451 add_wait_queue(&rmidi->open_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 while (1) {
Takashi Iwai23c18d42014-02-19 14:30:29 +0100453 subdevice = snd_ctl_get_preferred_subdevice(card, SND_CTL_SUBDEV_RAWMIDI);
Takashi Iwai9a1b64c2009-02-11 17:03:49 +0100454 err = rawmidi_open_priv(rmidi, subdevice, fflags, rawmidi_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 if (err >= 0)
456 break;
457 if (err == -EAGAIN) {
458 if (file->f_flags & O_NONBLOCK) {
459 err = -EBUSY;
460 break;
461 }
462 } else
463 break;
464 set_current_state(TASK_INTERRUPTIBLE);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100465 mutex_unlock(&rmidi->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 schedule();
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100467 mutex_lock(&rmidi->open_mutex);
Takashi Iwai0914f792012-10-16 16:43:39 +0200468 if (rmidi->card->shutdown) {
469 err = -ENODEV;
470 break;
471 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 if (signal_pending(current)) {
473 err = -ERESTARTSYS;
474 break;
475 }
476 }
Takashi Iwai9a1b64c2009-02-11 17:03:49 +0100477 remove_wait_queue(&rmidi->open_wait, &wait);
478 if (err < 0) {
479 kfree(rawmidi_file);
480 goto __error;
481 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482#ifdef CONFIG_SND_OSSEMUL
483 if (rawmidi_file->input && rawmidi_file->input->runtime)
484 rawmidi_file->input->runtime->oss = (maj == SOUND_MAJOR);
485 if (rawmidi_file->output && rawmidi_file->output->runtime)
486 rawmidi_file->output->runtime->oss = (maj == SOUND_MAJOR);
487#endif
Takashi Iwai9a1b64c2009-02-11 17:03:49 +0100488 file->private_data = rawmidi_file;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100489 mutex_unlock(&rmidi->open_mutex);
Takashi Iwaia0830db2012-10-16 13:05:59 +0200490 snd_card_unref(rmidi->card);
Takashi Iwai9a1b64c2009-02-11 17:03:49 +0100491 return 0;
492
493 __error:
494 snd_card_file_remove(card, file);
495 __error_card:
496 mutex_unlock(&rmidi->open_mutex);
497 module_put(rmidi->card->module);
Takashi Iwaia0830db2012-10-16 13:05:59 +0200498 snd_card_unref(rmidi->card);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 return err;
500}
501
Takashi Iwai9a1b64c2009-02-11 17:03:49 +0100502static void close_substream(struct snd_rawmidi *rmidi,
503 struct snd_rawmidi_substream *substream,
504 int cleanup)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505{
Takashi Iwai9a1b64c2009-02-11 17:03:49 +0100506 if (--substream->use_count)
507 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Takashi Iwai9a1b64c2009-02-11 17:03:49 +0100509 if (cleanup) {
510 if (substream->stream == SNDRV_RAWMIDI_STREAM_INPUT)
511 snd_rawmidi_input_trigger(substream, 0);
512 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 if (substream->active_sensing) {
514 unsigned char buf = 0xfe;
Takashi Iwai9a1b64c2009-02-11 17:03:49 +0100515 /* sending single active sensing message
516 * to shut the device up
517 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 snd_rawmidi_kernel_write(substream, &buf, 1);
519 }
520 if (snd_rawmidi_drain_output(substream) == -ERESTARTSYS)
521 snd_rawmidi_output_trigger(substream, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 }
Takashi Iwai9a1b64c2009-02-11 17:03:49 +0100524 substream->ops->close(substream);
525 if (substream->runtime->private_free)
526 substream->runtime->private_free(substream);
527 snd_rawmidi_runtime_free(substream);
528 substream->opened = 0;
529 substream->append = 0;
Clemens Ladisch7584af12009-11-10 10:14:04 +0100530 put_pid(substream->pid);
531 substream->pid = NULL;
Clemens Ladisch91d12c42009-10-21 09:12:26 +0200532 rmidi->streams[substream->stream].substream_opened--;
Takashi Iwai9a1b64c2009-02-11 17:03:49 +0100533}
534
535static void rawmidi_release_priv(struct snd_rawmidi_file *rfile)
536{
537 struct snd_rawmidi *rmidi;
538
539 rmidi = rfile->rmidi;
540 mutex_lock(&rmidi->open_mutex);
541 if (rfile->input) {
542 close_substream(rmidi, rfile->input, 1);
543 rfile->input = NULL;
544 }
545 if (rfile->output) {
546 close_substream(rmidi, rfile->output, 1);
547 rfile->output = NULL;
548 }
549 rfile->rmidi = NULL;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100550 mutex_unlock(&rmidi->open_mutex);
Takashi Iwai9a1b64c2009-02-11 17:03:49 +0100551 wake_up(&rmidi->open_wait);
552}
553
554/* called from sound/core/seq/seq_midi.c */
555int snd_rawmidi_kernel_release(struct snd_rawmidi_file *rfile)
556{
557 struct snd_rawmidi *rmidi;
558
559 if (snd_BUG_ON(!rfile))
560 return -ENXIO;
Takashi Iwai5bed9132018-07-17 22:32:52 +0200561
Takashi Iwai9a1b64c2009-02-11 17:03:49 +0100562 rmidi = rfile->rmidi;
563 rawmidi_release_priv(rfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 module_put(rmidi->card->module);
565 return 0;
566}
Takashi Iwai6776a5d2014-02-27 16:00:17 +0100567EXPORT_SYMBOL(snd_rawmidi_kernel_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569static int snd_rawmidi_release(struct inode *inode, struct file *file)
570{
Takashi Iwai48c9d412005-11-17 13:56:51 +0100571 struct snd_rawmidi_file *rfile;
572 struct snd_rawmidi *rmidi;
Clemens Ladischaa73aec2010-10-15 12:06:18 +0200573 struct module *module;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
575 rfile = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 rmidi = rfile->rmidi;
Takashi Iwai9a1b64c2009-02-11 17:03:49 +0100577 rawmidi_release_priv(rfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 kfree(rfile);
Clemens Ladischaa73aec2010-10-15 12:06:18 +0200579 module = rmidi->card->module;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 snd_card_file_remove(rmidi->card, file);
Clemens Ladischaa73aec2010-10-15 12:06:18 +0200581 module_put(module);
Takashi Iwai9a1b64c2009-02-11 17:03:49 +0100582 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583}
584
Adrian Bunk18612042005-11-23 13:14:50 +0100585static int snd_rawmidi_info(struct snd_rawmidi_substream *substream,
586 struct snd_rawmidi_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
Takashi Iwai48c9d412005-11-17 13:56:51 +0100588 struct snd_rawmidi *rmidi;
Takashi Iwai5bed9132018-07-17 22:32:52 +0200589
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 if (substream == NULL)
591 return -ENODEV;
592 rmidi = substream->rmidi;
593 memset(info, 0, sizeof(*info));
594 info->card = rmidi->card->number;
595 info->device = rmidi->device;
596 info->subdevice = substream->number;
597 info->stream = substream->stream;
598 info->flags = rmidi->info_flags;
599 strcpy(info->id, rmidi->id);
600 strcpy(info->name, rmidi->name);
601 strcpy(info->subname, substream->name);
602 info->subdevices_count = substream->pstr->substream_count;
603 info->subdevices_avail = (substream->pstr->substream_count -
604 substream->pstr->substream_opened);
605 return 0;
606}
607
Takashi Iwai48c9d412005-11-17 13:56:51 +0100608static int snd_rawmidi_info_user(struct snd_rawmidi_substream *substream,
Takashi Iwai5bed9132018-07-17 22:32:52 +0200609 struct snd_rawmidi_info __user *_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610{
Takashi Iwai48c9d412005-11-17 13:56:51 +0100611 struct snd_rawmidi_info info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 int err;
Takashi Iwai5bed9132018-07-17 22:32:52 +0200613
614 err = snd_rawmidi_info(substream, &info);
615 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 return err;
Takashi Iwai48c9d412005-11-17 13:56:51 +0100617 if (copy_to_user(_info, &info, sizeof(struct snd_rawmidi_info)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 return -EFAULT;
619 return 0;
620}
621
Takashi Iwaic1cfd902017-12-14 16:44:12 +0100622static int __snd_rawmidi_info_select(struct snd_card *card,
623 struct snd_rawmidi_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{
Takashi Iwai48c9d412005-11-17 13:56:51 +0100625 struct snd_rawmidi *rmidi;
626 struct snd_rawmidi_str *pstr;
627 struct snd_rawmidi_substream *substream;
Clemens Ladischf87135f2005-11-20 14:06:59 +0100628
Clemens Ladischf87135f2005-11-20 14:06:59 +0100629 rmidi = snd_rawmidi_search(card, info->device);
Clemens Ladischa106cd32005-11-20 13:59:56 +0100630 if (!rmidi)
631 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 if (info->stream < 0 || info->stream > 1)
633 return -EINVAL;
Gustavo A. R. Silva2b1d9c82019-03-20 16:15:24 -0500634 info->stream = array_index_nospec(info->stream, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 pstr = &rmidi->streams[info->stream];
636 if (pstr->substream_count == 0)
637 return -ENOENT;
638 if (info->subdevice >= pstr->substream_count)
639 return -ENXIO;
Johannes Berg9244b2c2006-10-05 16:02:22 +0200640 list_for_each_entry(substream, &pstr->substreams, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 if ((unsigned int)substream->number == info->subdevice)
642 return snd_rawmidi_info(substream, info);
643 }
644 return -ENXIO;
645}
Takashi Iwaic1cfd902017-12-14 16:44:12 +0100646
647int snd_rawmidi_info_select(struct snd_card *card, struct snd_rawmidi_info *info)
648{
649 int ret;
650
651 mutex_lock(&register_mutex);
652 ret = __snd_rawmidi_info_select(card, info);
653 mutex_unlock(&register_mutex);
654 return ret;
655}
Takashi Iwai6776a5d2014-02-27 16:00:17 +0100656EXPORT_SYMBOL(snd_rawmidi_info_select);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Takashi Iwai48c9d412005-11-17 13:56:51 +0100658static int snd_rawmidi_info_select_user(struct snd_card *card,
659 struct snd_rawmidi_info __user *_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660{
661 int err;
Takashi Iwai48c9d412005-11-17 13:56:51 +0100662 struct snd_rawmidi_info info;
Takashi Iwai5bed9132018-07-17 22:32:52 +0200663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 if (get_user(info.device, &_info->device))
665 return -EFAULT;
666 if (get_user(info.stream, &_info->stream))
667 return -EFAULT;
668 if (get_user(info.subdevice, &_info->subdevice))
669 return -EFAULT;
Takashi Iwai5bed9132018-07-17 22:32:52 +0200670 err = snd_rawmidi_info_select(card, &info);
671 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 return err;
Takashi Iwai48c9d412005-11-17 13:56:51 +0100673 if (copy_to_user(_info, &info, sizeof(struct snd_rawmidi_info)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 return -EFAULT;
675 return 0;
676}
677
Takashi Iwaif5beb592018-07-17 23:07:29 +0200678static int resize_runtime_buffer(struct snd_rawmidi_runtime *runtime,
679 struct snd_rawmidi_params *params,
680 bool is_input)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681{
Takashi Iwai39675f72018-07-17 17:26:43 +0200682 char *newbuf, *oldbuf;
Takashi Iwai5bed9132018-07-17 22:32:52 +0200683
Takashi Iwai5bed9132018-07-17 22:32:52 +0200684 if (params->buffer_size < 32 || params->buffer_size > 1024L * 1024L)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 return -EINVAL;
Takashi Iwai5bed9132018-07-17 22:32:52 +0200686 if (params->avail_min < 1 || params->avail_min > params->buffer_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 if (params->buffer_size != runtime->buffer_size) {
Takashi Iwai5a7b44a2018-09-03 15:16:43 +0200689 newbuf = kvzalloc(params->buffer_size, GFP_KERNEL);
Jesper Juhl4fa95ef2006-03-28 01:56:54 -0800690 if (!newbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 return -ENOMEM;
Takashi Iwai39675f72018-07-17 17:26:43 +0200692 spin_lock_irq(&runtime->lock);
Takashi Iwaic1f6e3c2020-05-07 13:44:56 +0200693 if (runtime->buffer_ref) {
694 spin_unlock_irq(&runtime->lock);
695 kvfree(newbuf);
696 return -EBUSY;
697 }
Takashi Iwai39675f72018-07-17 17:26:43 +0200698 oldbuf = runtime->buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 runtime->buffer = newbuf;
700 runtime->buffer_size = params->buffer_size;
Takashi Iwaif5beb592018-07-17 23:07:29 +0200701 __reset_runtime_ptrs(runtime, is_input);
Takashi Iwai39675f72018-07-17 17:26:43 +0200702 spin_unlock_irq(&runtime->lock);
Takashi Iwaief4db232018-07-17 23:12:33 +0200703 kvfree(oldbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 }
705 runtime->avail_min = params->avail_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 return 0;
707}
Takashi Iwaif5beb592018-07-17 23:07:29 +0200708
709int snd_rawmidi_output_params(struct snd_rawmidi_substream *substream,
710 struct snd_rawmidi_params *params)
711{
712 if (substream->append && substream->use_count > 1)
713 return -EBUSY;
714 snd_rawmidi_drain_output(substream);
715 substream->active_sensing = !params->no_active_sensing;
716 return resize_runtime_buffer(substream->runtime, params, false);
717}
Takashi Iwai6776a5d2014-02-27 16:00:17 +0100718EXPORT_SYMBOL(snd_rawmidi_output_params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
Takashi Iwai48c9d412005-11-17 13:56:51 +0100720int snd_rawmidi_input_params(struct snd_rawmidi_substream *substream,
Takashi Iwai5bed9132018-07-17 22:32:52 +0200721 struct snd_rawmidi_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 snd_rawmidi_drain_input(substream);
Takashi Iwaif5beb592018-07-17 23:07:29 +0200724 return resize_runtime_buffer(substream->runtime, params, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725}
Takashi Iwai6776a5d2014-02-27 16:00:17 +0100726EXPORT_SYMBOL(snd_rawmidi_input_params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Takashi Iwai48c9d412005-11-17 13:56:51 +0100728static int snd_rawmidi_output_status(struct snd_rawmidi_substream *substream,
Baolin Wangd9e55822018-04-24 20:06:12 +0800729 struct snd_rawmidi_status64 *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730{
Takashi Iwai48c9d412005-11-17 13:56:51 +0100731 struct snd_rawmidi_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
733 memset(status, 0, sizeof(*status));
734 status->stream = SNDRV_RAWMIDI_STREAM_OUTPUT;
735 spin_lock_irq(&runtime->lock);
736 status->avail = runtime->avail;
737 spin_unlock_irq(&runtime->lock);
738 return 0;
739}
740
Takashi Iwai48c9d412005-11-17 13:56:51 +0100741static int snd_rawmidi_input_status(struct snd_rawmidi_substream *substream,
Baolin Wangd9e55822018-04-24 20:06:12 +0800742 struct snd_rawmidi_status64 *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743{
Takashi Iwai48c9d412005-11-17 13:56:51 +0100744 struct snd_rawmidi_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
746 memset(status, 0, sizeof(*status));
747 status->stream = SNDRV_RAWMIDI_STREAM_INPUT;
748 spin_lock_irq(&runtime->lock);
749 status->avail = runtime->avail;
750 status->xruns = runtime->xruns;
751 runtime->xruns = 0;
752 spin_unlock_irq(&runtime->lock);
753 return 0;
754}
755
Baolin Wangd9e55822018-04-24 20:06:12 +0800756static int snd_rawmidi_ioctl_status32(struct snd_rawmidi_file *rfile,
757 struct snd_rawmidi_status32 __user *argp)
758{
759 int err = 0;
760 struct snd_rawmidi_status32 __user *status = argp;
761 struct snd_rawmidi_status32 status32;
762 struct snd_rawmidi_status64 status64;
763
764 if (copy_from_user(&status32, argp,
765 sizeof(struct snd_rawmidi_status32)))
766 return -EFAULT;
767
768 switch (status32.stream) {
769 case SNDRV_RAWMIDI_STREAM_OUTPUT:
770 if (rfile->output == NULL)
771 return -EINVAL;
772 err = snd_rawmidi_output_status(rfile->output, &status64);
773 break;
774 case SNDRV_RAWMIDI_STREAM_INPUT:
775 if (rfile->input == NULL)
776 return -EINVAL;
777 err = snd_rawmidi_input_status(rfile->input, &status64);
778 break;
779 default:
780 return -EINVAL;
781 }
782 if (err < 0)
783 return err;
784
785 status32 = (struct snd_rawmidi_status32) {
786 .stream = status64.stream,
787 .tstamp_sec = status64.tstamp_sec,
788 .tstamp_nsec = status64.tstamp_nsec,
789 .avail = status64.avail,
790 .xruns = status64.xruns,
791 };
792
793 if (copy_to_user(status, &status32, sizeof(*status)))
794 return -EFAULT;
795
796 return 0;
797}
798
799static int snd_rawmidi_ioctl_status64(struct snd_rawmidi_file *rfile,
800 struct snd_rawmidi_status64 __user *argp)
801{
802 int err = 0;
803 struct snd_rawmidi_status64 status;
804
805 if (copy_from_user(&status, argp, sizeof(struct snd_rawmidi_status64)))
806 return -EFAULT;
807
808 switch (status.stream) {
809 case SNDRV_RAWMIDI_STREAM_OUTPUT:
810 if (rfile->output == NULL)
811 return -EINVAL;
812 err = snd_rawmidi_output_status(rfile->output, &status);
813 break;
814 case SNDRV_RAWMIDI_STREAM_INPUT:
815 if (rfile->input == NULL)
816 return -EINVAL;
817 err = snd_rawmidi_input_status(rfile->input, &status);
818 break;
819 default:
820 return -EINVAL;
821 }
822 if (err < 0)
823 return err;
824 if (copy_to_user(argp, &status,
825 sizeof(struct snd_rawmidi_status64)))
826 return -EFAULT;
827 return 0;
828}
829
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830static long snd_rawmidi_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
831{
Takashi Iwai48c9d412005-11-17 13:56:51 +0100832 struct snd_rawmidi_file *rfile;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 void __user *argp = (void __user *)arg;
834
835 rfile = file->private_data;
836 if (((cmd >> 8) & 0xff) != 'W')
837 return -ENOTTY;
838 switch (cmd) {
839 case SNDRV_RAWMIDI_IOCTL_PVERSION:
840 return put_user(SNDRV_RAWMIDI_VERSION, (int __user *)argp) ? -EFAULT : 0;
841 case SNDRV_RAWMIDI_IOCTL_INFO:
842 {
Takashi Iwai48c9d412005-11-17 13:56:51 +0100843 int stream;
844 struct snd_rawmidi_info __user *info = argp;
Takashi Iwai5bed9132018-07-17 22:32:52 +0200845
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 if (get_user(stream, &info->stream))
847 return -EFAULT;
848 switch (stream) {
849 case SNDRV_RAWMIDI_STREAM_INPUT:
850 return snd_rawmidi_info_user(rfile->input, info);
851 case SNDRV_RAWMIDI_STREAM_OUTPUT:
852 return snd_rawmidi_info_user(rfile->output, info);
853 default:
854 return -EINVAL;
855 }
856 }
857 case SNDRV_RAWMIDI_IOCTL_PARAMS:
858 {
Takashi Iwai48c9d412005-11-17 13:56:51 +0100859 struct snd_rawmidi_params params;
Takashi Iwai5bed9132018-07-17 22:32:52 +0200860
Takashi Iwai48c9d412005-11-17 13:56:51 +0100861 if (copy_from_user(&params, argp, sizeof(struct snd_rawmidi_params)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 return -EFAULT;
863 switch (params.stream) {
864 case SNDRV_RAWMIDI_STREAM_OUTPUT:
865 if (rfile->output == NULL)
866 return -EINVAL;
867 return snd_rawmidi_output_params(rfile->output, &params);
868 case SNDRV_RAWMIDI_STREAM_INPUT:
869 if (rfile->input == NULL)
870 return -EINVAL;
871 return snd_rawmidi_input_params(rfile->input, &params);
872 default:
873 return -EINVAL;
874 }
875 }
Baolin Wangd9e55822018-04-24 20:06:12 +0800876 case SNDRV_RAWMIDI_IOCTL_STATUS32:
877 return snd_rawmidi_ioctl_status32(rfile, argp);
878 case SNDRV_RAWMIDI_IOCTL_STATUS64:
879 return snd_rawmidi_ioctl_status64(rfile, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 case SNDRV_RAWMIDI_IOCTL_DROP:
881 {
882 int val;
Takashi Iwai5bed9132018-07-17 22:32:52 +0200883
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 if (get_user(val, (int __user *) argp))
885 return -EFAULT;
886 switch (val) {
887 case SNDRV_RAWMIDI_STREAM_OUTPUT:
888 if (rfile->output == NULL)
889 return -EINVAL;
890 return snd_rawmidi_drop_output(rfile->output);
891 default:
892 return -EINVAL;
893 }
894 }
895 case SNDRV_RAWMIDI_IOCTL_DRAIN:
896 {
897 int val;
Takashi Iwai5bed9132018-07-17 22:32:52 +0200898
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 if (get_user(val, (int __user *) argp))
900 return -EFAULT;
901 switch (val) {
902 case SNDRV_RAWMIDI_STREAM_OUTPUT:
903 if (rfile->output == NULL)
904 return -EINVAL;
905 return snd_rawmidi_drain_output(rfile->output);
906 case SNDRV_RAWMIDI_STREAM_INPUT:
907 if (rfile->input == NULL)
908 return -EINVAL;
909 return snd_rawmidi_drain_input(rfile->input);
910 default:
911 return -EINVAL;
912 }
913 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 default:
Takashi Iwaica20d292014-02-04 18:21:39 +0100915 rmidi_dbg(rfile->rmidi,
916 "rawmidi: unknown command = 0x%x\n", cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 }
918 return -ENOTTY;
919}
920
Takashi Iwai48c9d412005-11-17 13:56:51 +0100921static int snd_rawmidi_control_ioctl(struct snd_card *card,
922 struct snd_ctl_file *control,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 unsigned int cmd,
924 unsigned long arg)
925{
926 void __user *argp = (void __user *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 switch (cmd) {
929 case SNDRV_CTL_IOCTL_RAWMIDI_NEXT_DEVICE:
930 {
931 int device;
Takashi Iwai5bed9132018-07-17 22:32:52 +0200932
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 if (get_user(device, (int __user *)argp))
934 return -EFAULT;
Dan Carpentera7a13d02010-09-09 00:11:41 +0200935 if (device >= SNDRV_RAWMIDI_DEVICES) /* next device is -1 */
936 device = SNDRV_RAWMIDI_DEVICES - 1;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100937 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 device = device < 0 ? 0 : device + 1;
939 while (device < SNDRV_RAWMIDI_DEVICES) {
Clemens Ladischf87135f2005-11-20 14:06:59 +0100940 if (snd_rawmidi_search(card, device))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 break;
942 device++;
943 }
944 if (device == SNDRV_RAWMIDI_DEVICES)
945 device = -1;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100946 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 if (put_user(device, (int __user *)argp))
948 return -EFAULT;
949 return 0;
950 }
951 case SNDRV_CTL_IOCTL_RAWMIDI_PREFER_SUBDEVICE:
952 {
953 int val;
Takashi Iwai5bed9132018-07-17 22:32:52 +0200954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 if (get_user(val, (int __user *)argp))
956 return -EFAULT;
Takashi Iwai23c18d42014-02-19 14:30:29 +0100957 control->preferred_subdevice[SND_CTL_SUBDEV_RAWMIDI] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 return 0;
959 }
960 case SNDRV_CTL_IOCTL_RAWMIDI_INFO:
961 return snd_rawmidi_info_select_user(card, argp);
962 }
963 return -ENOIOCTLCMD;
964}
965
966/**
967 * snd_rawmidi_receive - receive the input data from the device
968 * @substream: the rawmidi substream
969 * @buffer: the buffer pointer
970 * @count: the data size to read
971 *
972 * Reads the data from the internal buffer.
973 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100974 * Return: The size of read data, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 */
Takashi Iwai48c9d412005-11-17 13:56:51 +0100976int snd_rawmidi_receive(struct snd_rawmidi_substream *substream,
977 const unsigned char *buffer, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978{
979 unsigned long flags;
980 int result = 0, count1;
Takashi Iwai48c9d412005-11-17 13:56:51 +0100981 struct snd_rawmidi_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
Takashi Iwai219df322008-11-03 08:17:05 +0100983 if (!substream->opened)
984 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 if (runtime->buffer == NULL) {
Takashi Iwaica20d292014-02-04 18:21:39 +0100986 rmidi_dbg(substream->rmidi,
987 "snd_rawmidi_receive: input is not active!!!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 return -EINVAL;
989 }
990 spin_lock_irqsave(&runtime->lock, flags);
991 if (count == 1) { /* special case, faster code */
992 substream->bytes++;
993 if (runtime->avail < runtime->buffer_size) {
994 runtime->buffer[runtime->hw_ptr++] = buffer[0];
995 runtime->hw_ptr %= runtime->buffer_size;
996 runtime->avail++;
997 result++;
998 } else {
999 runtime->xruns++;
1000 }
1001 } else {
1002 substream->bytes += count;
1003 count1 = runtime->buffer_size - runtime->hw_ptr;
1004 if (count1 > count)
1005 count1 = count;
1006 if (count1 > (int)(runtime->buffer_size - runtime->avail))
1007 count1 = runtime->buffer_size - runtime->avail;
1008 memcpy(runtime->buffer + runtime->hw_ptr, buffer, count1);
1009 runtime->hw_ptr += count1;
1010 runtime->hw_ptr %= runtime->buffer_size;
1011 runtime->avail += count1;
1012 count -= count1;
1013 result += count1;
1014 if (count > 0) {
1015 buffer += count1;
1016 count1 = count;
1017 if (count1 > (int)(runtime->buffer_size - runtime->avail)) {
1018 count1 = runtime->buffer_size - runtime->avail;
1019 runtime->xruns += count - count1;
1020 }
1021 if (count1 > 0) {
1022 memcpy(runtime->buffer, buffer, count1);
1023 runtime->hw_ptr = count1;
1024 runtime->avail += count1;
1025 result += count1;
1026 }
1027 }
1028 }
1029 if (result > 0) {
1030 if (runtime->event)
Takashi Iwaib3c705a2011-06-14 14:37:06 +02001031 schedule_work(&runtime->event_work);
Takashi Iwai88a06d62020-12-06 09:35:27 +01001032 else if (__snd_rawmidi_ready(runtime))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 wake_up(&runtime->sleep);
1034 }
1035 spin_unlock_irqrestore(&runtime->lock, flags);
1036 return result;
1037}
Takashi Iwai6776a5d2014-02-27 16:00:17 +01001038EXPORT_SYMBOL(snd_rawmidi_receive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
Takashi Iwai48c9d412005-11-17 13:56:51 +01001040static long snd_rawmidi_kernel_read1(struct snd_rawmidi_substream *substream,
Marcin Åšlusarz17596a82008-01-09 17:56:07 +01001041 unsigned char __user *userbuf,
1042 unsigned char *kernelbuf, long count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043{
1044 unsigned long flags;
1045 long result = 0, count1;
Takashi Iwai48c9d412005-11-17 13:56:51 +01001046 struct snd_rawmidi_runtime *runtime = substream->runtime;
Takashi Iwai81f57752016-02-03 14:41:22 +01001047 unsigned long appl_ptr;
Takashi Iwaic1f6e3c2020-05-07 13:44:56 +02001048 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
Takashi Iwai81f57752016-02-03 14:41:22 +01001050 spin_lock_irqsave(&runtime->lock, flags);
Takashi Iwaic1f6e3c2020-05-07 13:44:56 +02001051 snd_rawmidi_buffer_ref(runtime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 while (count > 0 && runtime->avail) {
1053 count1 = runtime->buffer_size - runtime->appl_ptr;
1054 if (count1 > count)
1055 count1 = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 if (count1 > (int)runtime->avail)
1057 count1 = runtime->avail;
Takashi Iwai81f57752016-02-03 14:41:22 +01001058
1059 /* update runtime->appl_ptr before unlocking for userbuf */
1060 appl_ptr = runtime->appl_ptr;
1061 runtime->appl_ptr += count1;
1062 runtime->appl_ptr %= runtime->buffer_size;
1063 runtime->avail -= count1;
1064
Marcin Åšlusarz17596a82008-01-09 17:56:07 +01001065 if (kernelbuf)
Takashi Iwai81f57752016-02-03 14:41:22 +01001066 memcpy(kernelbuf + result, runtime->buffer + appl_ptr, count1);
Marcin Åšlusarz17596a82008-01-09 17:56:07 +01001067 if (userbuf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 spin_unlock_irqrestore(&runtime->lock, flags);
Marcin Åšlusarz17596a82008-01-09 17:56:07 +01001069 if (copy_to_user(userbuf + result,
Takashi Iwaic1f6e3c2020-05-07 13:44:56 +02001070 runtime->buffer + appl_ptr, count1))
1071 err = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 spin_lock_irqsave(&runtime->lock, flags);
Takashi Iwaic1f6e3c2020-05-07 13:44:56 +02001073 if (err)
1074 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 result += count1;
1077 count -= count1;
1078 }
Takashi Iwaic1f6e3c2020-05-07 13:44:56 +02001079 out:
1080 snd_rawmidi_buffer_unref(runtime);
Takashi Iwai81f57752016-02-03 14:41:22 +01001081 spin_unlock_irqrestore(&runtime->lock, flags);
Takashi Iwaic1f6e3c2020-05-07 13:44:56 +02001082 return result > 0 ? result : err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083}
1084
Takashi Iwai48c9d412005-11-17 13:56:51 +01001085long snd_rawmidi_kernel_read(struct snd_rawmidi_substream *substream,
1086 unsigned char *buf, long count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087{
1088 snd_rawmidi_input_trigger(substream, 1);
Marcin Åšlusarz17596a82008-01-09 17:56:07 +01001089 return snd_rawmidi_kernel_read1(substream, NULL/*userbuf*/, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090}
Takashi Iwai6776a5d2014-02-27 16:00:17 +01001091EXPORT_SYMBOL(snd_rawmidi_kernel_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
Takashi Iwai48c9d412005-11-17 13:56:51 +01001093static ssize_t snd_rawmidi_read(struct file *file, char __user *buf, size_t count,
1094 loff_t *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095{
1096 long result;
1097 int count1;
Takashi Iwai48c9d412005-11-17 13:56:51 +01001098 struct snd_rawmidi_file *rfile;
1099 struct snd_rawmidi_substream *substream;
1100 struct snd_rawmidi_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
1102 rfile = file->private_data;
1103 substream = rfile->input;
1104 if (substream == NULL)
1105 return -EIO;
1106 runtime = substream->runtime;
1107 snd_rawmidi_input_trigger(substream, 1);
1108 result = 0;
1109 while (count > 0) {
1110 spin_lock_irq(&runtime->lock);
Takashi Iwai88a06d62020-12-06 09:35:27 +01001111 while (!__snd_rawmidi_ready(runtime)) {
Ingo Molnarac6424b2017-06-20 12:06:13 +02001112 wait_queue_entry_t wait;
Takashi Iwai5bed9132018-07-17 22:32:52 +02001113
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 if ((file->f_flags & O_NONBLOCK) != 0 || result > 0) {
1115 spin_unlock_irq(&runtime->lock);
1116 return result > 0 ? result : -EAGAIN;
1117 }
1118 init_waitqueue_entry(&wait, current);
1119 add_wait_queue(&runtime->sleep, &wait);
1120 set_current_state(TASK_INTERRUPTIBLE);
1121 spin_unlock_irq(&runtime->lock);
1122 schedule();
1123 remove_wait_queue(&runtime->sleep, &wait);
Takashi Iwai0914f792012-10-16 16:43:39 +02001124 if (rfile->rmidi->card->shutdown)
1125 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 if (signal_pending(current))
1127 return result > 0 ? result : -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 spin_lock_irq(&runtime->lock);
Takashi Iwai88a06d62020-12-06 09:35:27 +01001129 if (!runtime->avail) {
1130 spin_unlock_irq(&runtime->lock);
1131 return result > 0 ? result : -EIO;
1132 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 }
1134 spin_unlock_irq(&runtime->lock);
Clemens Ladisch4d233592005-09-05 10:35:20 +02001135 count1 = snd_rawmidi_kernel_read1(substream,
Marcin Åšlusarz17596a82008-01-09 17:56:07 +01001136 (unsigned char __user *)buf,
1137 NULL/*kernelbuf*/,
1138 count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 if (count1 < 0)
1140 return result > 0 ? result : count1;
1141 result += count1;
1142 buf += count1;
1143 count -= count1;
1144 }
1145 return result;
1146}
1147
1148/**
1149 * snd_rawmidi_transmit_empty - check whether the output buffer is empty
1150 * @substream: the rawmidi substream
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001151 *
1152 * Return: 1 if the internal output buffer is empty, 0 if not.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 */
Takashi Iwai48c9d412005-11-17 13:56:51 +01001154int snd_rawmidi_transmit_empty(struct snd_rawmidi_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155{
Takashi Iwai48c9d412005-11-17 13:56:51 +01001156 struct snd_rawmidi_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 int result;
1158 unsigned long flags;
1159
1160 if (runtime->buffer == NULL) {
Takashi Iwaica20d292014-02-04 18:21:39 +01001161 rmidi_dbg(substream->rmidi,
1162 "snd_rawmidi_transmit_empty: output is not active!!!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 return 1;
1164 }
1165 spin_lock_irqsave(&runtime->lock, flags);
1166 result = runtime->avail >= runtime->buffer_size;
1167 spin_unlock_irqrestore(&runtime->lock, flags);
Takashi Iwai5bed9132018-07-17 22:32:52 +02001168 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169}
Takashi Iwai6776a5d2014-02-27 16:00:17 +01001170EXPORT_SYMBOL(snd_rawmidi_transmit_empty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
1172/**
Takashi Iwai06ab3002016-01-31 11:57:41 +01001173 * __snd_rawmidi_transmit_peek - copy data from the internal buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 * @substream: the rawmidi substream
1175 * @buffer: the buffer pointer
1176 * @count: data size to transfer
1177 *
Takashi Iwai06ab3002016-01-31 11:57:41 +01001178 * This is a variant of snd_rawmidi_transmit_peek() without spinlock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 */
Takashi Iwai06ab3002016-01-31 11:57:41 +01001180int __snd_rawmidi_transmit_peek(struct snd_rawmidi_substream *substream,
Takashi Iwai48c9d412005-11-17 13:56:51 +01001181 unsigned char *buffer, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 int result, count1;
Takashi Iwai48c9d412005-11-17 13:56:51 +01001184 struct snd_rawmidi_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
1186 if (runtime->buffer == NULL) {
Takashi Iwaica20d292014-02-04 18:21:39 +01001187 rmidi_dbg(substream->rmidi,
1188 "snd_rawmidi_transmit_peek: output is not active!!!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 return -EINVAL;
1190 }
1191 result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 if (runtime->avail >= runtime->buffer_size) {
1193 /* warning: lowlevel layer MUST trigger down the hardware */
1194 goto __skip;
1195 }
1196 if (count == 1) { /* special case, faster code */
1197 *buffer = runtime->buffer[runtime->hw_ptr];
1198 result++;
1199 } else {
1200 count1 = runtime->buffer_size - runtime->hw_ptr;
1201 if (count1 > count)
1202 count1 = count;
1203 if (count1 > (int)(runtime->buffer_size - runtime->avail))
1204 count1 = runtime->buffer_size - runtime->avail;
1205 memcpy(buffer, runtime->buffer + runtime->hw_ptr, count1);
1206 count -= count1;
1207 result += count1;
1208 if (count > 0) {
1209 if (count > (int)(runtime->buffer_size - runtime->avail - count1))
1210 count = runtime->buffer_size - runtime->avail - count1;
1211 memcpy(buffer + count1, runtime->buffer, count);
1212 result += count;
1213 }
1214 }
1215 __skip:
Takashi Iwai06ab3002016-01-31 11:57:41 +01001216 return result;
1217}
1218EXPORT_SYMBOL(__snd_rawmidi_transmit_peek);
1219
1220/**
1221 * snd_rawmidi_transmit_peek - copy data from the internal buffer
1222 * @substream: the rawmidi substream
1223 * @buffer: the buffer pointer
1224 * @count: data size to transfer
1225 *
1226 * Copies data from the internal output buffer to the given buffer.
1227 *
1228 * Call this in the interrupt handler when the midi output is ready,
1229 * and call snd_rawmidi_transmit_ack() after the transmission is
1230 * finished.
1231 *
1232 * Return: The size of copied data, or a negative error code on failure.
1233 */
1234int snd_rawmidi_transmit_peek(struct snd_rawmidi_substream *substream,
1235 unsigned char *buffer, int count)
1236{
1237 struct snd_rawmidi_runtime *runtime = substream->runtime;
1238 int result;
1239 unsigned long flags;
1240
1241 spin_lock_irqsave(&runtime->lock, flags);
1242 result = __snd_rawmidi_transmit_peek(substream, buffer, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 spin_unlock_irqrestore(&runtime->lock, flags);
1244 return result;
1245}
Takashi Iwai6776a5d2014-02-27 16:00:17 +01001246EXPORT_SYMBOL(snd_rawmidi_transmit_peek);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
1248/**
Takashi Iwai06ab3002016-01-31 11:57:41 +01001249 * __snd_rawmidi_transmit_ack - acknowledge the transmission
1250 * @substream: the rawmidi substream
1251 * @count: the transferred count
1252 *
1253 * This is a variant of __snd_rawmidi_transmit_ack() without spinlock.
1254 */
1255int __snd_rawmidi_transmit_ack(struct snd_rawmidi_substream *substream, int count)
1256{
1257 struct snd_rawmidi_runtime *runtime = substream->runtime;
1258
1259 if (runtime->buffer == NULL) {
1260 rmidi_dbg(substream->rmidi,
1261 "snd_rawmidi_transmit_ack: output is not active!!!\n");
1262 return -EINVAL;
1263 }
1264 snd_BUG_ON(runtime->avail + count > runtime->buffer_size);
1265 runtime->hw_ptr += count;
1266 runtime->hw_ptr %= runtime->buffer_size;
1267 runtime->avail += count;
1268 substream->bytes += count;
1269 if (count > 0) {
Takashi Iwai88a06d62020-12-06 09:35:27 +01001270 if (runtime->drain || __snd_rawmidi_ready(runtime))
Takashi Iwai06ab3002016-01-31 11:57:41 +01001271 wake_up(&runtime->sleep);
1272 }
1273 return count;
1274}
1275EXPORT_SYMBOL(__snd_rawmidi_transmit_ack);
1276
1277/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 * snd_rawmidi_transmit_ack - acknowledge the transmission
1279 * @substream: the rawmidi substream
Masanari Iida0a114582014-02-09 00:47:36 +09001280 * @count: the transferred count
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 *
1282 * Advances the hardware pointer for the internal output buffer with
1283 * the given size and updates the condition.
1284 * Call after the transmission is finished.
1285 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001286 * Return: The advanced size if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 */
Takashi Iwai48c9d412005-11-17 13:56:51 +01001288int snd_rawmidi_transmit_ack(struct snd_rawmidi_substream *substream, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289{
Takashi Iwai48c9d412005-11-17 13:56:51 +01001290 struct snd_rawmidi_runtime *runtime = substream->runtime;
Takashi Iwai06ab3002016-01-31 11:57:41 +01001291 int result;
1292 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 spin_lock_irqsave(&runtime->lock, flags);
Takashi Iwai06ab3002016-01-31 11:57:41 +01001295 result = __snd_rawmidi_transmit_ack(substream, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 spin_unlock_irqrestore(&runtime->lock, flags);
Takashi Iwai06ab3002016-01-31 11:57:41 +01001297 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298}
Takashi Iwai6776a5d2014-02-27 16:00:17 +01001299EXPORT_SYMBOL(snd_rawmidi_transmit_ack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
1301/**
1302 * snd_rawmidi_transmit - copy from the buffer to the device
1303 * @substream: the rawmidi substream
Takashi Iwaidf8db932005-09-07 13:38:19 +02001304 * @buffer: the buffer pointer
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 * @count: the data size to transfer
Takashi Iwai5bed9132018-07-17 22:32:52 +02001306 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 * Copies data from the buffer to the device and advances the pointer.
1308 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001309 * Return: The copied size if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 */
Takashi Iwai48c9d412005-11-17 13:56:51 +01001311int snd_rawmidi_transmit(struct snd_rawmidi_substream *substream,
1312 unsigned char *buffer, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313{
Takashi Iwai06ab3002016-01-31 11:57:41 +01001314 struct snd_rawmidi_runtime *runtime = substream->runtime;
1315 int result;
1316 unsigned long flags;
1317
1318 spin_lock_irqsave(&runtime->lock, flags);
Takashi Iwai219df322008-11-03 08:17:05 +01001319 if (!substream->opened)
Takashi Iwai06ab3002016-01-31 11:57:41 +01001320 result = -EBADFD;
1321 else {
1322 count = __snd_rawmidi_transmit_peek(substream, buffer, count);
1323 if (count <= 0)
1324 result = count;
1325 else
1326 result = __snd_rawmidi_transmit_ack(substream, count);
1327 }
1328 spin_unlock_irqrestore(&runtime->lock, flags);
1329 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330}
Takashi Iwai6776a5d2014-02-27 16:00:17 +01001331EXPORT_SYMBOL(snd_rawmidi_transmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
Takashi Iwai6aea5702018-09-13 08:20:43 +02001333/**
1334 * snd_rawmidi_proceed - Discard the all pending bytes and proceed
1335 * @substream: rawmidi substream
1336 *
1337 * Return: the number of discarded bytes
1338 */
1339int snd_rawmidi_proceed(struct snd_rawmidi_substream *substream)
1340{
1341 struct snd_rawmidi_runtime *runtime = substream->runtime;
1342 unsigned long flags;
1343 int count = 0;
1344
1345 spin_lock_irqsave(&runtime->lock, flags);
1346 if (runtime->avail < runtime->buffer_size) {
1347 count = runtime->buffer_size - runtime->avail;
1348 __snd_rawmidi_transmit_ack(substream, count);
1349 }
1350 spin_unlock_irqrestore(&runtime->lock, flags);
1351 return count;
1352}
1353EXPORT_SYMBOL(snd_rawmidi_proceed);
1354
Takashi Iwai48c9d412005-11-17 13:56:51 +01001355static long snd_rawmidi_kernel_write1(struct snd_rawmidi_substream *substream,
Marcin Åšlusarz17596a82008-01-09 17:56:07 +01001356 const unsigned char __user *userbuf,
1357 const unsigned char *kernelbuf,
1358 long count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359{
1360 unsigned long flags;
1361 long count1, result;
Takashi Iwai48c9d412005-11-17 13:56:51 +01001362 struct snd_rawmidi_runtime *runtime = substream->runtime;
Takashi Iwai81f57752016-02-03 14:41:22 +01001363 unsigned long appl_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
Takashi Iwaicc85f7a2016-02-01 12:04:55 +01001365 if (!kernelbuf && !userbuf)
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001366 return -EINVAL;
1367 if (snd_BUG_ON(!runtime->buffer))
1368 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
1370 result = 0;
1371 spin_lock_irqsave(&runtime->lock, flags);
1372 if (substream->append) {
1373 if ((long)runtime->avail < count) {
1374 spin_unlock_irqrestore(&runtime->lock, flags);
1375 return -EAGAIN;
1376 }
1377 }
Takashi Iwaic1f6e3c2020-05-07 13:44:56 +02001378 snd_rawmidi_buffer_ref(runtime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 while (count > 0 && runtime->avail > 0) {
1380 count1 = runtime->buffer_size - runtime->appl_ptr;
1381 if (count1 > count)
1382 count1 = count;
1383 if (count1 > (long)runtime->avail)
1384 count1 = runtime->avail;
Takashi Iwai81f57752016-02-03 14:41:22 +01001385
1386 /* update runtime->appl_ptr before unlocking for userbuf */
1387 appl_ptr = runtime->appl_ptr;
1388 runtime->appl_ptr += count1;
1389 runtime->appl_ptr %= runtime->buffer_size;
1390 runtime->avail -= count1;
1391
Marcin Åšlusarz17596a82008-01-09 17:56:07 +01001392 if (kernelbuf)
Takashi Iwai81f57752016-02-03 14:41:22 +01001393 memcpy(runtime->buffer + appl_ptr,
Marcin Åšlusarz17596a82008-01-09 17:56:07 +01001394 kernelbuf + result, count1);
1395 else if (userbuf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 spin_unlock_irqrestore(&runtime->lock, flags);
Takashi Iwai81f57752016-02-03 14:41:22 +01001397 if (copy_from_user(runtime->buffer + appl_ptr,
Marcin Åšlusarz17596a82008-01-09 17:56:07 +01001398 userbuf + result, count1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 spin_lock_irqsave(&runtime->lock, flags);
1400 result = result > 0 ? result : -EFAULT;
1401 goto __end;
1402 }
1403 spin_lock_irqsave(&runtime->lock, flags);
1404 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 result += count1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 count -= count1;
1407 }
1408 __end:
1409 count1 = runtime->avail < runtime->buffer_size;
Takashi Iwaic1f6e3c2020-05-07 13:44:56 +02001410 snd_rawmidi_buffer_unref(runtime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 spin_unlock_irqrestore(&runtime->lock, flags);
1412 if (count1)
1413 snd_rawmidi_output_trigger(substream, 1);
1414 return result;
1415}
1416
Takashi Iwai48c9d412005-11-17 13:56:51 +01001417long snd_rawmidi_kernel_write(struct snd_rawmidi_substream *substream,
1418 const unsigned char *buf, long count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419{
Marcin Åšlusarz17596a82008-01-09 17:56:07 +01001420 return snd_rawmidi_kernel_write1(substream, NULL, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421}
Takashi Iwai6776a5d2014-02-27 16:00:17 +01001422EXPORT_SYMBOL(snd_rawmidi_kernel_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
Takashi Iwai48c9d412005-11-17 13:56:51 +01001424static ssize_t snd_rawmidi_write(struct file *file, const char __user *buf,
1425 size_t count, loff_t *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426{
1427 long result, timeout;
1428 int count1;
Takashi Iwai48c9d412005-11-17 13:56:51 +01001429 struct snd_rawmidi_file *rfile;
1430 struct snd_rawmidi_runtime *runtime;
1431 struct snd_rawmidi_substream *substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
1433 rfile = file->private_data;
1434 substream = rfile->output;
1435 runtime = substream->runtime;
1436 /* we cannot put an atomic message to our buffer */
1437 if (substream->append && count > runtime->buffer_size)
1438 return -EIO;
1439 result = 0;
1440 while (count > 0) {
1441 spin_lock_irq(&runtime->lock);
1442 while (!snd_rawmidi_ready_append(substream, count)) {
Ingo Molnarac6424b2017-06-20 12:06:13 +02001443 wait_queue_entry_t wait;
Takashi Iwai5bed9132018-07-17 22:32:52 +02001444
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 if (file->f_flags & O_NONBLOCK) {
1446 spin_unlock_irq(&runtime->lock);
1447 return result > 0 ? result : -EAGAIN;
1448 }
1449 init_waitqueue_entry(&wait, current);
1450 add_wait_queue(&runtime->sleep, &wait);
1451 set_current_state(TASK_INTERRUPTIBLE);
1452 spin_unlock_irq(&runtime->lock);
1453 timeout = schedule_timeout(30 * HZ);
1454 remove_wait_queue(&runtime->sleep, &wait);
Takashi Iwai0914f792012-10-16 16:43:39 +02001455 if (rfile->rmidi->card->shutdown)
1456 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 if (signal_pending(current))
1458 return result > 0 ? result : -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 spin_lock_irq(&runtime->lock);
Takashi Iwai88a06d62020-12-06 09:35:27 +01001460 if (!runtime->avail && !timeout) {
1461 spin_unlock_irq(&runtime->lock);
1462 return result > 0 ? result : -EIO;
1463 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 }
1465 spin_unlock_irq(&runtime->lock);
Marcin Åšlusarz17596a82008-01-09 17:56:07 +01001466 count1 = snd_rawmidi_kernel_write1(substream, buf, NULL, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 if (count1 < 0)
1468 return result > 0 ? result : count1;
1469 result += count1;
1470 buf += count1;
1471 if ((size_t)count1 < count && (file->f_flags & O_NONBLOCK))
1472 break;
1473 count -= count1;
1474 }
Christoph Hellwig6b2f3d12009-10-27 11:05:28 +01001475 if (file->f_flags & O_DSYNC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 spin_lock_irq(&runtime->lock);
1477 while (runtime->avail != runtime->buffer_size) {
Ingo Molnarac6424b2017-06-20 12:06:13 +02001478 wait_queue_entry_t wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 unsigned int last_avail = runtime->avail;
Takashi Iwai5bed9132018-07-17 22:32:52 +02001480
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 init_waitqueue_entry(&wait, current);
1482 add_wait_queue(&runtime->sleep, &wait);
1483 set_current_state(TASK_INTERRUPTIBLE);
1484 spin_unlock_irq(&runtime->lock);
1485 timeout = schedule_timeout(30 * HZ);
1486 remove_wait_queue(&runtime->sleep, &wait);
1487 if (signal_pending(current))
1488 return result > 0 ? result : -ERESTARTSYS;
1489 if (runtime->avail == last_avail && !timeout)
1490 return result > 0 ? result : -EIO;
1491 spin_lock_irq(&runtime->lock);
1492 }
1493 spin_unlock_irq(&runtime->lock);
1494 }
1495 return result;
1496}
1497
Takashi Iwai5bed9132018-07-17 22:32:52 +02001498static __poll_t snd_rawmidi_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499{
Takashi Iwai48c9d412005-11-17 13:56:51 +01001500 struct snd_rawmidi_file *rfile;
1501 struct snd_rawmidi_runtime *runtime;
Al Viro680ef722017-07-02 23:27:36 -04001502 __poll_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
1504 rfile = file->private_data;
1505 if (rfile->input != NULL) {
1506 runtime = rfile->input->runtime;
1507 snd_rawmidi_input_trigger(rfile->input, 1);
1508 poll_wait(file, &runtime->sleep, wait);
1509 }
1510 if (rfile->output != NULL) {
1511 runtime = rfile->output->runtime;
1512 poll_wait(file, &runtime->sleep, wait);
1513 }
1514 mask = 0;
1515 if (rfile->input != NULL) {
1516 if (snd_rawmidi_ready(rfile->input))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001517 mask |= EPOLLIN | EPOLLRDNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 }
1519 if (rfile->output != NULL) {
1520 if (snd_rawmidi_ready(rfile->output))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001521 mask |= EPOLLOUT | EPOLLWRNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 }
1523 return mask;
1524}
1525
1526/*
1527 */
1528#ifdef CONFIG_COMPAT
1529#include "rawmidi_compat.c"
1530#else
1531#define snd_rawmidi_ioctl_compat NULL
1532#endif
1533
1534/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 */
1536
Takashi Iwai48c9d412005-11-17 13:56:51 +01001537static void snd_rawmidi_proc_info_read(struct snd_info_entry *entry,
1538 struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539{
Takashi Iwai48c9d412005-11-17 13:56:51 +01001540 struct snd_rawmidi *rmidi;
1541 struct snd_rawmidi_substream *substream;
1542 struct snd_rawmidi_runtime *runtime;
Takashi Iwai88a06d62020-12-06 09:35:27 +01001543 unsigned long buffer_size, avail, xruns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
1545 rmidi = entry->private_data;
1546 snd_iprintf(buffer, "%s\n\n", rmidi->name);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001547 mutex_lock(&rmidi->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 if (rmidi->info_flags & SNDRV_RAWMIDI_INFO_OUTPUT) {
Johannes Berg9244b2c2006-10-05 16:02:22 +02001549 list_for_each_entry(substream,
1550 &rmidi->streams[SNDRV_RAWMIDI_STREAM_OUTPUT].substreams,
1551 list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 snd_iprintf(buffer,
1553 "Output %d\n"
1554 " Tx bytes : %lu\n",
1555 substream->number,
1556 (unsigned long) substream->bytes);
1557 if (substream->opened) {
Clemens Ladisch7584af12009-11-10 10:14:04 +01001558 snd_iprintf(buffer,
1559 " Owner PID : %d\n",
1560 pid_vnr(substream->pid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 runtime = substream->runtime;
Takashi Iwai88a06d62020-12-06 09:35:27 +01001562 spin_lock_irq(&runtime->lock);
1563 buffer_size = runtime->buffer_size;
1564 avail = runtime->avail;
1565 spin_unlock_irq(&runtime->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 snd_iprintf(buffer,
1567 " Mode : %s\n"
1568 " Buffer size : %lu\n"
1569 " Avail : %lu\n",
1570 runtime->oss ? "OSS compatible" : "native",
Takashi Iwai88a06d62020-12-06 09:35:27 +01001571 buffer_size, avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 }
1573 }
1574 }
1575 if (rmidi->info_flags & SNDRV_RAWMIDI_INFO_INPUT) {
Johannes Berg9244b2c2006-10-05 16:02:22 +02001576 list_for_each_entry(substream,
1577 &rmidi->streams[SNDRV_RAWMIDI_STREAM_INPUT].substreams,
1578 list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 snd_iprintf(buffer,
1580 "Input %d\n"
1581 " Rx bytes : %lu\n",
1582 substream->number,
1583 (unsigned long) substream->bytes);
1584 if (substream->opened) {
Clemens Ladisch7584af12009-11-10 10:14:04 +01001585 snd_iprintf(buffer,
1586 " Owner PID : %d\n",
1587 pid_vnr(substream->pid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 runtime = substream->runtime;
Takashi Iwai88a06d62020-12-06 09:35:27 +01001589 spin_lock_irq(&runtime->lock);
1590 buffer_size = runtime->buffer_size;
1591 avail = runtime->avail;
1592 xruns = runtime->xruns;
1593 spin_unlock_irq(&runtime->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 snd_iprintf(buffer,
1595 " Buffer size : %lu\n"
1596 " Avail : %lu\n"
1597 " Overruns : %lu\n",
Takashi Iwai88a06d62020-12-06 09:35:27 +01001598 buffer_size, avail, xruns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 }
1600 }
1601 }
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001602 mutex_unlock(&rmidi->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603}
1604
1605/*
1606 * Register functions
1607 */
1608
Takashi Iwai5bed9132018-07-17 22:32:52 +02001609static const struct file_operations snd_rawmidi_f_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 .owner = THIS_MODULE,
1611 .read = snd_rawmidi_read,
1612 .write = snd_rawmidi_write,
1613 .open = snd_rawmidi_open,
1614 .release = snd_rawmidi_release,
Takashi Iwai02f48652010-04-13 11:49:04 +02001615 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 .poll = snd_rawmidi_poll,
1617 .unlocked_ioctl = snd_rawmidi_ioctl,
1618 .compat_ioctl = snd_rawmidi_ioctl_compat,
1619};
1620
Takashi Iwai48c9d412005-11-17 13:56:51 +01001621static int snd_rawmidi_alloc_substreams(struct snd_rawmidi *rmidi,
1622 struct snd_rawmidi_str *stream,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 int direction,
1624 int count)
1625{
Takashi Iwai48c9d412005-11-17 13:56:51 +01001626 struct snd_rawmidi_substream *substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 int idx;
1628
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 for (idx = 0; idx < count; idx++) {
Takashi Iwaica2c0962005-09-09 14:20:23 +02001630 substream = kzalloc(sizeof(*substream), GFP_KERNEL);
Takashi Iwaiec0e9932015-03-10 15:42:14 +01001631 if (!substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 return -ENOMEM;
1633 substream->stream = direction;
1634 substream->number = idx;
1635 substream->rmidi = rmidi;
1636 substream->pstr = stream;
1637 list_add_tail(&substream->list, &stream->substreams);
1638 stream->substream_count++;
1639 }
1640 return 0;
1641}
1642
Takashi Iwaiaee50122015-01-29 17:55:52 +01001643static void release_rawmidi_device(struct device *dev)
1644{
1645 kfree(container_of(dev, struct snd_rawmidi, dev));
1646}
1647
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648/**
1649 * snd_rawmidi_new - create a rawmidi instance
1650 * @card: the card instance
1651 * @id: the id string
1652 * @device: the device index
1653 * @output_count: the number of output streams
1654 * @input_count: the number of input streams
1655 * @rrawmidi: the pointer to store the new rawmidi instance
1656 *
1657 * Creates a new rawmidi instance.
1658 * Use snd_rawmidi_set_ops() to set the operators to the new instance.
1659 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001660 * Return: Zero if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 */
Takashi Iwai48c9d412005-11-17 13:56:51 +01001662int snd_rawmidi_new(struct snd_card *card, char *id, int device,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 int output_count, int input_count,
Takashi Iwai5bed9132018-07-17 22:32:52 +02001664 struct snd_rawmidi **rrawmidi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665{
Takashi Iwai48c9d412005-11-17 13:56:51 +01001666 struct snd_rawmidi *rmidi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 int err;
Takashi Iwaif15ee212020-01-03 09:16:20 +01001668 static const struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 .dev_free = snd_rawmidi_dev_free,
1670 .dev_register = snd_rawmidi_dev_register,
1671 .dev_disconnect = snd_rawmidi_dev_disconnect,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 };
1673
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001674 if (snd_BUG_ON(!card))
1675 return -ENXIO;
1676 if (rrawmidi)
1677 *rrawmidi = NULL;
Takashi Iwaica2c0962005-09-09 14:20:23 +02001678 rmidi = kzalloc(sizeof(*rmidi), GFP_KERNEL);
Takashi Iwaiec0e9932015-03-10 15:42:14 +01001679 if (!rmidi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 return -ENOMEM;
1681 rmidi->card = card;
1682 rmidi->device = device;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001683 mutex_init(&rmidi->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 init_waitqueue_head(&rmidi->open_wait);
Akinobu Mitac13893d2006-11-23 12:02:33 +01001685 INIT_LIST_HEAD(&rmidi->streams[SNDRV_RAWMIDI_STREAM_INPUT].substreams);
1686 INIT_LIST_HEAD(&rmidi->streams[SNDRV_RAWMIDI_STREAM_OUTPUT].substreams);
1687
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 if (id != NULL)
Joe Perches75b1a8f2021-01-04 09:17:34 -08001689 strscpy(rmidi->id, id, sizeof(rmidi->id));
Takashi Iwaiaee50122015-01-29 17:55:52 +01001690
1691 snd_device_initialize(&rmidi->dev, card);
1692 rmidi->dev.release = release_rawmidi_device;
1693 dev_set_name(&rmidi->dev, "midiC%iD%i", card->number, device);
1694
Takashi Iwai5bed9132018-07-17 22:32:52 +02001695 err = snd_rawmidi_alloc_substreams(rmidi,
1696 &rmidi->streams[SNDRV_RAWMIDI_STREAM_INPUT],
1697 SNDRV_RAWMIDI_STREAM_INPUT,
1698 input_count);
Takashi Iwai7fdc9b02018-07-17 22:45:50 +02001699 if (err < 0)
1700 goto error;
Takashi Iwai5bed9132018-07-17 22:32:52 +02001701 err = snd_rawmidi_alloc_substreams(rmidi,
1702 &rmidi->streams[SNDRV_RAWMIDI_STREAM_OUTPUT],
1703 SNDRV_RAWMIDI_STREAM_OUTPUT,
1704 output_count);
Takashi Iwai7fdc9b02018-07-17 22:45:50 +02001705 if (err < 0)
1706 goto error;
Takashi Iwai5bed9132018-07-17 22:32:52 +02001707 err = snd_device_new(card, SNDRV_DEV_RAWMIDI, rmidi, &ops);
Takashi Iwai7fdc9b02018-07-17 22:45:50 +02001708 if (err < 0)
1709 goto error;
1710
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001711 if (rrawmidi)
1712 *rrawmidi = rmidi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 return 0;
Takashi Iwai7fdc9b02018-07-17 22:45:50 +02001714
1715 error:
1716 snd_rawmidi_free(rmidi);
1717 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718}
Takashi Iwai6776a5d2014-02-27 16:00:17 +01001719EXPORT_SYMBOL(snd_rawmidi_new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
Takashi Iwai48c9d412005-11-17 13:56:51 +01001721static void snd_rawmidi_free_substreams(struct snd_rawmidi_str *stream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722{
Takashi Iwai48c9d412005-11-17 13:56:51 +01001723 struct snd_rawmidi_substream *substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724
1725 while (!list_empty(&stream->substreams)) {
Takashi Iwai48c9d412005-11-17 13:56:51 +01001726 substream = list_entry(stream->substreams.next, struct snd_rawmidi_substream, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 list_del(&substream->list);
1728 kfree(substream);
1729 }
1730}
1731
Takashi Iwai48c9d412005-11-17 13:56:51 +01001732static int snd_rawmidi_free(struct snd_rawmidi *rmidi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733{
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001734 if (!rmidi)
1735 return 0;
Takashi Iwaic4614822006-06-23 14:38:23 +02001736
1737 snd_info_free_entry(rmidi->proc_entry);
1738 rmidi->proc_entry = NULL;
1739 mutex_lock(&register_mutex);
1740 if (rmidi->ops && rmidi->ops->dev_unregister)
1741 rmidi->ops->dev_unregister(rmidi);
1742 mutex_unlock(&register_mutex);
1743
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 snd_rawmidi_free_substreams(&rmidi->streams[SNDRV_RAWMIDI_STREAM_INPUT]);
1745 snd_rawmidi_free_substreams(&rmidi->streams[SNDRV_RAWMIDI_STREAM_OUTPUT]);
1746 if (rmidi->private_free)
1747 rmidi->private_free(rmidi);
Takashi Iwaiaee50122015-01-29 17:55:52 +01001748 put_device(&rmidi->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 return 0;
1750}
1751
Takashi Iwai48c9d412005-11-17 13:56:51 +01001752static int snd_rawmidi_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753{
Takashi Iwai48c9d412005-11-17 13:56:51 +01001754 struct snd_rawmidi *rmidi = device->device_data;
Takashi Iwai5bed9132018-07-17 22:32:52 +02001755
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 return snd_rawmidi_free(rmidi);
1757}
1758
Takashi Iwai111b0cd2017-06-09 15:11:58 +02001759#if IS_ENABLED(CONFIG_SND_SEQUENCER)
Takashi Iwai48c9d412005-11-17 13:56:51 +01001760static void snd_rawmidi_dev_seq_free(struct snd_seq_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761{
Takashi Iwai48c9d412005-11-17 13:56:51 +01001762 struct snd_rawmidi *rmidi = device->private_data;
Takashi Iwai5bed9132018-07-17 22:32:52 +02001763
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 rmidi->seq_dev = NULL;
1765}
1766#endif
1767
Takashi Iwai48c9d412005-11-17 13:56:51 +01001768static int snd_rawmidi_dev_register(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769{
Clemens Ladischf87135f2005-11-20 14:06:59 +01001770 int err;
Takashi Iwai48c9d412005-11-17 13:56:51 +01001771 struct snd_info_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 char name[16];
Takashi Iwai48c9d412005-11-17 13:56:51 +01001773 struct snd_rawmidi *rmidi = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774
1775 if (rmidi->device >= SNDRV_RAWMIDI_DEVICES)
1776 return -ENOMEM;
Takashi Iwai7fdc9b02018-07-17 22:45:50 +02001777 err = 0;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001778 mutex_lock(&register_mutex);
Takashi Iwai7fdc9b02018-07-17 22:45:50 +02001779 if (snd_rawmidi_search(rmidi->card, rmidi->device))
1780 err = -EBUSY;
1781 else
1782 list_add_tail(&rmidi->list, &snd_rawmidi_devices);
Takashi Iwai816f3182016-08-30 14:45:46 +02001783 mutex_unlock(&register_mutex);
Takashi Iwai7fdc9b02018-07-17 22:45:50 +02001784 if (err < 0)
1785 return err;
1786
Takashi Iwai40a4b262015-01-30 08:34:58 +01001787 err = snd_register_device(SNDRV_DEVICE_TYPE_RAWMIDI,
1788 rmidi->card, rmidi->device,
1789 &snd_rawmidi_f_ops, rmidi, &rmidi->dev);
Takashi Iwaiaee50122015-01-29 17:55:52 +01001790 if (err < 0) {
1791 rmidi_err(rmidi, "unable to register\n");
Takashi Iwai7fdc9b02018-07-17 22:45:50 +02001792 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 }
Takashi Iwai7fdc9b02018-07-17 22:45:50 +02001794 if (rmidi->ops && rmidi->ops->dev_register) {
1795 err = rmidi->ops->dev_register(rmidi);
1796 if (err < 0)
1797 goto error_unregister;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 }
1799#ifdef CONFIG_SND_OSSEMUL
1800 rmidi->ossreg = 0;
1801 if ((int)rmidi->device == midi_map[rmidi->card->number]) {
1802 if (snd_register_oss_device(SNDRV_OSS_DEVICE_TYPE_MIDI,
Clemens Ladischf87135f2005-11-20 14:06:59 +01001803 rmidi->card, 0, &snd_rawmidi_f_ops,
Takashi Iwai80d7d772014-02-04 13:51:45 +01001804 rmidi) < 0) {
Takashi Iwaica20d292014-02-04 18:21:39 +01001805 rmidi_err(rmidi,
1806 "unable to register OSS rawmidi device %i:%i\n",
1807 rmidi->card->number, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 } else {
1809 rmidi->ossreg++;
1810#ifdef SNDRV_OSS_INFO_DEV_MIDI
1811 snd_oss_info_register(SNDRV_OSS_INFO_DEV_MIDI, rmidi->card->number, rmidi->name);
1812#endif
1813 }
1814 }
1815 if ((int)rmidi->device == amidi_map[rmidi->card->number]) {
1816 if (snd_register_oss_device(SNDRV_OSS_DEVICE_TYPE_MIDI,
Clemens Ladischf87135f2005-11-20 14:06:59 +01001817 rmidi->card, 1, &snd_rawmidi_f_ops,
Takashi Iwai80d7d772014-02-04 13:51:45 +01001818 rmidi) < 0) {
Takashi Iwaica20d292014-02-04 18:21:39 +01001819 rmidi_err(rmidi,
1820 "unable to register OSS rawmidi device %i:%i\n",
1821 rmidi->card->number, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 } else {
1823 rmidi->ossreg++;
1824 }
1825 }
1826#endif /* CONFIG_SND_OSSEMUL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 sprintf(name, "midi%d", rmidi->device);
1828 entry = snd_info_create_card_entry(rmidi->card, name, rmidi->card->proc_root);
1829 if (entry) {
1830 entry->private_data = rmidi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 entry->c.text.read = snd_rawmidi_proc_info_read;
1832 if (snd_info_register(entry) < 0) {
1833 snd_info_free_entry(entry);
1834 entry = NULL;
1835 }
1836 }
1837 rmidi->proc_entry = entry;
Takashi Iwai111b0cd2017-06-09 15:11:58 +02001838#if IS_ENABLED(CONFIG_SND_SEQUENCER)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 if (!rmidi->ops || !rmidi->ops->dev_register) { /* own registration mechanism */
1840 if (snd_seq_device_new(rmidi->card, rmidi->device, SNDRV_SEQ_DEV_ID_MIDISYNTH, 0, &rmidi->seq_dev) >= 0) {
1841 rmidi->seq_dev->private_data = rmidi;
1842 rmidi->seq_dev->private_free = snd_rawmidi_dev_seq_free;
1843 sprintf(rmidi->seq_dev->name, "MIDI %d-%d", rmidi->card->number, rmidi->device);
1844 snd_device_register(rmidi->card, rmidi->seq_dev);
1845 }
1846 }
1847#endif
1848 return 0;
Takashi Iwai7fdc9b02018-07-17 22:45:50 +02001849
1850 error_unregister:
1851 snd_unregister_device(&rmidi->dev);
1852 error:
1853 mutex_lock(&register_mutex);
1854 list_del(&rmidi->list);
1855 mutex_unlock(&register_mutex);
1856 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857}
1858
Takashi Iwai48c9d412005-11-17 13:56:51 +01001859static int snd_rawmidi_dev_disconnect(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860{
Takashi Iwai48c9d412005-11-17 13:56:51 +01001861 struct snd_rawmidi *rmidi = device->device_data;
Takashi Iwai0914f792012-10-16 16:43:39 +02001862 int dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001864 mutex_lock(&register_mutex);
Takashi Iwai0914f792012-10-16 16:43:39 +02001865 mutex_lock(&rmidi->open_mutex);
1866 wake_up(&rmidi->open_wait);
Clemens Ladischf87135f2005-11-20 14:06:59 +01001867 list_del_init(&rmidi->list);
Takashi Iwai0914f792012-10-16 16:43:39 +02001868 for (dir = 0; dir < 2; dir++) {
1869 struct snd_rawmidi_substream *s;
Takashi Iwai5bed9132018-07-17 22:32:52 +02001870
Takashi Iwai0914f792012-10-16 16:43:39 +02001871 list_for_each_entry(s, &rmidi->streams[dir].substreams, list) {
1872 if (s->runtime)
1873 wake_up(&s->runtime->sleep);
1874 }
1875 }
1876
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877#ifdef CONFIG_SND_OSSEMUL
1878 if (rmidi->ossreg) {
1879 if ((int)rmidi->device == midi_map[rmidi->card->number]) {
1880 snd_unregister_oss_device(SNDRV_OSS_DEVICE_TYPE_MIDI, rmidi->card, 0);
1881#ifdef SNDRV_OSS_INFO_DEV_MIDI
1882 snd_oss_info_unregister(SNDRV_OSS_INFO_DEV_MIDI, rmidi->card->number);
1883#endif
1884 }
1885 if ((int)rmidi->device == amidi_map[rmidi->card->number])
1886 snd_unregister_oss_device(SNDRV_OSS_DEVICE_TYPE_MIDI, rmidi->card, 1);
1887 rmidi->ossreg = 0;
1888 }
1889#endif /* CONFIG_SND_OSSEMUL */
Takashi Iwai40a4b262015-01-30 08:34:58 +01001890 snd_unregister_device(&rmidi->dev);
Takashi Iwai0914f792012-10-16 16:43:39 +02001891 mutex_unlock(&rmidi->open_mutex);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001892 mutex_unlock(&register_mutex);
Takashi Iwaic4614822006-06-23 14:38:23 +02001893 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894}
1895
1896/**
1897 * snd_rawmidi_set_ops - set the rawmidi operators
1898 * @rmidi: the rawmidi instance
1899 * @stream: the stream direction, SNDRV_RAWMIDI_STREAM_XXX
1900 * @ops: the operator table
1901 *
1902 * Sets the rawmidi operators for the given stream direction.
1903 */
Takashi Iwai48c9d412005-11-17 13:56:51 +01001904void snd_rawmidi_set_ops(struct snd_rawmidi *rmidi, int stream,
Takashi Iwai6ba79b82017-01-05 17:01:14 +01001905 const struct snd_rawmidi_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906{
Takashi Iwai48c9d412005-11-17 13:56:51 +01001907 struct snd_rawmidi_substream *substream;
Takashi Iwai5bed9132018-07-17 22:32:52 +02001908
Johannes Berg9244b2c2006-10-05 16:02:22 +02001909 list_for_each_entry(substream, &rmidi->streams[stream].substreams, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 substream->ops = ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911}
Takashi Iwai6776a5d2014-02-27 16:00:17 +01001912EXPORT_SYMBOL(snd_rawmidi_set_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913
1914/*
1915 * ENTRY functions
1916 */
1917
1918static int __init alsa_rawmidi_init(void)
1919{
1920
1921 snd_ctl_register_ioctl(snd_rawmidi_control_ioctl);
1922 snd_ctl_register_ioctl_compat(snd_rawmidi_control_ioctl);
1923#ifdef CONFIG_SND_OSSEMUL
1924 { int i;
1925 /* check device map table */
1926 for (i = 0; i < SNDRV_CARDS; i++) {
1927 if (midi_map[i] < 0 || midi_map[i] >= SNDRV_RAWMIDI_DEVICES) {
Takashi Iwaica20d292014-02-04 18:21:39 +01001928 pr_err("ALSA: rawmidi: invalid midi_map[%d] = %d\n",
1929 i, midi_map[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 midi_map[i] = 0;
1931 }
1932 if (amidi_map[i] < 0 || amidi_map[i] >= SNDRV_RAWMIDI_DEVICES) {
Takashi Iwaica20d292014-02-04 18:21:39 +01001933 pr_err("ALSA: rawmidi: invalid amidi_map[%d] = %d\n",
1934 i, amidi_map[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 amidi_map[i] = 1;
1936 }
1937 }
1938 }
1939#endif /* CONFIG_SND_OSSEMUL */
1940 return 0;
1941}
1942
1943static void __exit alsa_rawmidi_exit(void)
1944{
1945 snd_ctl_unregister_ioctl(snd_rawmidi_control_ioctl);
1946 snd_ctl_unregister_ioctl_compat(snd_rawmidi_control_ioctl);
1947}
1948
1949module_init(alsa_rawmidi_init)
1950module_exit(alsa_rawmidi_exit)