All of lore.kernel.org
 help / color / mirror / Atom feed
* Is it ok if ModemManager process is killed AFTER network-interface is brought up and IP-Address assigned?
@ 2016-08-09  7:18 Ajay Garg
  2016-08-09  8:14 ` Greg KH
  0 siblings, 1 reply; 4+ messages in thread
From: Ajay Garg @ 2016-08-09  7:18 UTC (permalink / raw)
  To: linux-kernel, linux-usb

Hi All.

We are using Sierra's USB-to-WWAN driver on Ubuntu-14 for Sierra's
MC8090 modem, and we have a requirement wherein we need to have access
to the modem-serial-port (from our user-application that is).

Right now, we see that /usr/sbin/ModemManager is always connected to
/dev/ttyUSB3 (which means we cannot connect to the port from our
application at the same time, or even if we can, received-data will be
at best inconsistent).


We are thinking of the following ::

* Initially, let nmcli and ModemManager do their work, and let them
bring the WWAN interface up.

* Once this happens, we permanently-down the ModemManager from our
application-binary, thereby freeing up /dev/ttyUSB3.

* Thereafter, we are free to connect to /dev/ttyUSB3 from our
application, thereby using features like SMS-notification (+CMTI),
signal-strength (+CSQ), etc.



Does our approach make sense?
We will be grateful to any help.


Thanks and Regards,
Ajay

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Is it ok if ModemManager process is killed AFTER network-interface is brought up and IP-Address assigned?
  2016-08-09  7:18 Is it ok if ModemManager process is killed AFTER network-interface is brought up and IP-Address assigned? Ajay Garg
@ 2016-08-09  8:14 ` Greg KH
  2016-08-10  4:30   ` Ajay Garg
  2016-08-10 20:53   ` Pavel Machek
  0 siblings, 2 replies; 4+ messages in thread
From: Greg KH @ 2016-08-09  8:14 UTC (permalink / raw)
  To: Ajay Garg; +Cc: linux-kernel, linux-usb

On Tue, Aug 09, 2016 at 12:48:12PM +0530, Ajay Garg wrote:
> Hi All.
> 
> We are using Sierra's USB-to-WWAN driver on Ubuntu-14 for Sierra's
> MC8090 modem, and we have a requirement wherein we need to have access
> to the modem-serial-port (from our user-application that is).
> 
> Right now, we see that /usr/sbin/ModemManager is always connected to
> /dev/ttyUSB3 (which means we cannot connect to the port from our
> application at the same time, or even if we can, received-data will be
> at best inconsistent).
> 
> 
> We are thinking of the following ::
> 
> * Initially, let nmcli and ModemManager do their work, and let them
> bring the WWAN interface up.
> 
> * Once this happens, we permanently-down the ModemManager from our
> application-binary, thereby freeing up /dev/ttyUSB3.
> 
> * Thereafter, we are free to connect to /dev/ttyUSB3 from our
> application, thereby using features like SMS-notification (+CMTI),
> signal-strength (+CSQ), etc.
> 
> 
> 
> Does our approach make sense?
> We will be grateful to any help.

Why not ask the modem manager team about this?  The kernel doesn't care
what you do with the device links :)

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Is it ok if ModemManager process is killed AFTER network-interface is brought up and IP-Address assigned?
  2016-08-09  8:14 ` Greg KH
@ 2016-08-10  4:30   ` Ajay Garg
  2016-08-10 20:53   ` Pavel Machek
  1 sibling, 0 replies; 4+ messages in thread
From: Ajay Garg @ 2016-08-10  4:30 UTC (permalink / raw)
  To: Greg KH; +Cc: linux-kernel, linux-usb

Ok Greg :)

On Tue, Aug 9, 2016 at 1:44 PM, Greg KH <gregkh@linuxfoundation.org> wrote:
> On Tue, Aug 09, 2016 at 12:48:12PM +0530, Ajay Garg wrote:
>> Hi All.
>>
>> We are using Sierra's USB-to-WWAN driver on Ubuntu-14 for Sierra's
>> MC8090 modem, and we have a requirement wherein we need to have access
>> to the modem-serial-port (from our user-application that is).
>>
>> Right now, we see that /usr/sbin/ModemManager is always connected to
>> /dev/ttyUSB3 (which means we cannot connect to the port from our
>> application at the same time, or even if we can, received-data will be
>> at best inconsistent).
>>
>>
>> We are thinking of the following ::
>>
>> * Initially, let nmcli and ModemManager do their work, and let them
>> bring the WWAN interface up.
>>
>> * Once this happens, we permanently-down the ModemManager from our
>> application-binary, thereby freeing up /dev/ttyUSB3.
>>
>> * Thereafter, we are free to connect to /dev/ttyUSB3 from our
>> application, thereby using features like SMS-notification (+CMTI),
>> signal-strength (+CSQ), etc.
>>
>>
>>
>> Does our approach make sense?
>> We will be grateful to any help.
>
> Why not ask the modem manager team about this?  The kernel doesn't care
> what you do with the device links :)
>
> thanks,
>
> greg k-h



-- 
Regards,
Ajay

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Is it ok if ModemManager process is killed AFTER network-interface is brought up and IP-Address assigned?
  2016-08-09  8:14 ` Greg KH
  2016-08-10  4:30   ` Ajay Garg
@ 2016-08-10 20:53   ` Pavel Machek
  1 sibling, 0 replies; 4+ messages in thread
From: Pavel Machek @ 2016-08-10 20:53 UTC (permalink / raw)
  To: Greg KH; +Cc: Ajay Garg, linux-kernel, linux-usb

Hi!

> > We are using Sierra's USB-to-WWAN driver on Ubuntu-14 for Sierra's
> > MC8090 modem, and we have a requirement wherein we need to have access
> > to the modem-serial-port (from our user-application that is).
> > 
> > Right now, we see that /usr/sbin/ModemManager is always connected to
> > /dev/ttyUSB3 (which means we cannot connect to the port from our
> > application at the same time, or even if we can, received-data will be
> > at best inconsistent).
> > 
> > 
> > We are thinking of the following ::
> > 
> > * Initially, let nmcli and ModemManager do their work, and let them
> > bring the WWAN interface up.
> > 
> > * Once this happens, we permanently-down the ModemManager from our
> > application-binary, thereby freeing up /dev/ttyUSB3.
> > 
> > * Thereafter, we are free to connect to /dev/ttyUSB3 from our
> > application, thereby using features like SMS-notification (+CMTI),
> > signal-strength (+CSQ), etc.
> > 
> > 
> > 
> > Does our approach make sense?
> > We will be grateful to any help.
> 
> Why not ask the modem manager team about this?  The kernel doesn't care
> what you do with the device links :)

Arguably, kernel is doing its job pretty badly when it comes to modems.

1) it does not hide differences between different modems (nokia modem is network
protocol, some modems are single tty, some modems are multiple ttys, different AT
command sets...)

2) it does not allow userland applications to share a GSM modem in a reasonable way.
Being able to read signal strength while PPP is connected would be nice, for example.

Anyway, when kernel fails to do its job, there's often userland daemon that can do it.

ofono seems to be the cannonical one there, and it seems to do the job rather well.

So... I guess the original author should take a look at ofono.

										Pavel

-- 
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-08-10 20:53 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-08-09  7:18 Is it ok if ModemManager process is killed AFTER network-interface is brought up and IP-Address assigned? Ajay Garg
2016-08-09  8:14 ` Greg KH
2016-08-10  4:30   ` Ajay Garg
2016-08-10 20:53   ` Pavel Machek

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.