back to article BBC bypasses Linux kernel to make streaming videos flow

Back in September, The Register's networking desk chatted to a company called Teclo about the limitations of TCP performance in the Linux stack. That work, described here, included moving TCP/IP processing off to user-space to avoid the complex processing that the kernel has accumulated over the years. It's no surprise, then …

Page:

  1. Ticl

    Alternative title

    BBC programmers discover raw sockets.

    1. Warm Braw

      Re: Alternative title

      NO! This is precisely not what is being described.

      The performance problem is due to the buffer-allocation and copying that goes on in the kernel when receiving and transmitting packets via the LAN interface - this applies just as much to "raw" datagrams as to TCP/IP.

      There have been a few iterations around a solution, including PF_RING, but the real problem is that the generic Linux approach to device drivers doesn't really work with high-speed network devices. Worth reading up on Netmap for some more concrete details.

      The Linux networking stack is, well, sub-optimal, to put it kindly. Getting it all out of kernel space isn't really the answer in the long term, but it does show the kernel developers a way forward.

      EDIT: There is, incidentally, the question of whether TCP/IP is even the right protocol suite for this type of application (too small a window size, poor packet loss recovery), but the driver issues are independent of the high layer protocols...

      1. Doctor Syntax Silver badge

        Re: Alternative title

        "The Linux networking stack is, well, sub-optimal, to put it kindly."

        A general purpose OS - or general purpose H/W for that matter - isn't optimised for anything in particular. It has to be a jack of all trades balancing performance against security, ease of use, multi-tasking & whatever. If you want optimisation according to some specific criterion you use something special purpose. You want real time response you use a real time OS. You want to mine Bitcoins you use ASICs.

        1. Warm Braw

          Re: Alternative title

          True in general. However, it's not true that because you can't achieve optimal performance for a certain set of criteria that any improvement at all is impossible. There are a lot of ways in which a general purpose OS can reduce network processing overhead - virtual addresses and caches notwithstanding.

          These include better use of scatter/gather features of the NIC or DMA controllers, careful control of allocation and copying and not shunting data to and from user space when the ultimate source or destination is another driver (eg streaming from/to a network to/from a file). None of these would render any other part of the operating system less usable. Nor do they require any form of "real time" response.

          1. Doctor Syntax Silver badge

            Re: Alternative title

            "These include better use of scatter/gather features of the NIC or DMA "

            Which NIC or DMA?

            If you tie the S/W to specific H/W, e.g. a particular model of NIC then you lose the ability to plug in different H/W. If you provide for alternative H/W you end up with a modular structure which has its own overhead. I'm not saying that something which has grown at the rate the Linux kernel has is going to be the result of a whole series of ideal decisions (I can think of a few I disagree with) but if you try to do everything there are going to be trade-offs.

            1. Warm Braw

              Re: Alternative title

              >Which NIC or DMA?

              If your pick the right driver abstraction you can make use of hardware capabilities when they are available and fall back to something less performant if they aren't: this is well-trodden ground for operating system design. It can even simplify the overall design - it's a slightly different topic, but, for example, the driver model in NetBSD eliminates a lot of redundant architecture-specific code just by better abstracting the individual operations.

              If you pick the wrong abstraction, you can never take advantage of hardware acceleration. Some of the choices that have been made in Linux to date have their origins in the mists of Unix past and are not necessarily the right choice for the future. Software evolves over time and I simply don't accept any argument of the type it's too difficult/pointless/not invented here/everything is perfect.

      2. Roland6 Silver badge

        Re: Alternative title

        Nothing really new here!

        But then I have worked through the late 70's and early 80's developments in computing. It was the rise of cheap computers on the back of rapid advances in CPU performance that many functions that were handled by dedicated (and hence expensive) network adaptors (this is the real reason why the TLI library in Unix exists, it enabled an application to transfer data and hand off processing to the network adapter) were moved into the them lightly loaded workstation CPU. Similar design decisions lead to disc controller intelligence, graphics processing, modem processing ("soft modem") and other intelligent peripheral logic being moved into the CPU.

        Subsequently we have seen the resurrection of dedicated graphics processors and 'intelligent' disk I/O controllers, but not the resurrection of dedicated and intelligent network processors; it seems the BBC and friends have discovered a need for one.

        Interestingly, even with intelligent network protocol processors, performance was a big issue and any vendor looking seriously at high-speed networking always had to tweak the protocols so that they could be implemented in silicon - in fact protocols such as XTP, were developed that combined the functions of the network and transport layers; but these really upset the TCP/IP and protocol layering purists and so didn't garner much support... [So just another reason for not really bothering with IPv6.]

        1. Anonymous Coward
          Anonymous Coward

          Re: Alternative title

          Broadcast hardware to do the functions the bbc are playing with already exist on the market today, implemented in dedicated silicon from the likes of motorola and others in rack mount formats capable of handling any bitrate encoding and distribution you choose. Rackmount encoders, streamers, switching solutions, watermark insertion servers etc all done in dedicated silicon inside with just a little os to manage the asic config itself on some management plane with the heavy packet flow happening on dedicated fibre links.

          I'd be shocked if SKY or BT are shunting their streams about before distribution using ip running on a linux based computer enough for this to be a issue.

          1. Anonymous Coward
            Anonymous Coward

            Re: Alternative title

            "I'd be shocked if SKY or BT are shunting their streams about before distribution using ip running on a linux based computer enough for this to be a issue."

            You're likely to be surprised because they do, in fact many encoders and the like are really linux computers with dedicated encoder cores only if you are lucky and many still using off the shelf nics etc, The really expensive ones don't but they are really expensive...

            Ty the time you get away from the content preparation to the real business of content distribution where throughput is really large then you very are likely to be using COTS hardware where tricks like this could make a signfiicant different

    2. Anonymous Coward
      Anonymous Coward

      Re: Alternative title

      Why don't they just fix the Linux network stack so it has a proper modular architecture like Windows does (NDIS) ? TOE and similar hardware acceleration is way behind under Linux as it's a bolt on after-thought. This has been a long standing and widely known Linux weakness - and one that becomes more apparent as we move to ever faster network connections.

      1. anonymous boring coward Silver badge

        Re: Alternative title

        But.. That would mean BBC contributing to open source, and the common good. Surely, we can't have that?

        1. Frumious Bandersnatch

          Re: Alternative title

          BBC contributing to open source

          If that surprised you, then Dirac will probably completely shock you.

      2. Vath

        Re: Alternative title

        Oh come on, the Linux Network Stack could use some work but it's still a heck of a lot faster and much more sane than the pile of crud that is the Windows Network Stack.

        1. Anonymous Coward
          Anonymous Coward

          Faster than Windows?

          Is that still true? I know it was certainly true in the past, but presumably Microsoft has made some improvements to something in Windows while they were ruining the GUI. Anyone seen any benchmarks comparing TCP/IP performance on the latest Linux to Windows Server 2016?

        2. Anonymous Coward
          Anonymous Coward

          Re: Alternative title

          "the Linux Network Stack could use some work but it's still a heck of a lot faster and much more sane than the pile of crud that is the Windows Network Stack."

          Clearly you havn't tried using real world 10GB, 40GB and Mellanox type low latency connectivity. Windows is significantly faster than unmodified Linux - and more efficient - with significantly lower CPU use.

          1. Santa from Exeter

            Re: Alternative title @ AC

            I call bullshit. Mellanox cards are specifically designed to *not* use the kernel

            1. Anonymous Coward
              Anonymous Coward

              Re: Alternative title @ AC

              "I call bullshit. Mellanox cards are specifically designed to *not* use the kernel"

              You call wrongly. Mellanox cards can only support hardware offload by hacking the Linux kernel with a hardware specific modification to support this. On Windows they can just inject a filter driver at the right layer in the NDIS stack.

  2. websey

    This is why I love the bbc

    Now I know people have opinions on the licence fee etc

    But this is the BBC at its finest. Writing kernal bypasses to get better throughput.

    This is why I pay my licence fee for the few incredible moments in my lifetime where I can be proud of a public utility that I fund indirectly showing off the skills of their talented staff

    1. AMBxx Silver badge
      Flame

      Re: This is why I love the bbc

      Watching rugby on ITVPlayer at the weekend made me realise just how good the BBC's iPlayer is. Just need to privatise the BBC to spin off the technology arm as a pure internet broadcaster.

      1. anonymous boring coward Silver badge

        Re: This is why I love the bbc

        Sport at 30fps sourced from 50i? Possibly converted from 30fps again to display at 50Hz on your TV.

        Looks like shiit on any service.

        I suspect there is a whole generation now doesn't actually know what real TV is supposed to look like.

        1. Christopher W

          Re: This is why I love the bbc

          They're rolling out 50p on the iPlayer. It's been available for some 'channels' of content for a quite a while now. Go check out the Russian F1 Grand Prix highlights programme in HD - 2908 kbps of 50p.

          1. anonymous boring coward Silver badge

            Re: This is why I love the bbc

            I'll have a look, but I would be extremely surprised if any of my IPlayer capable devices supported outputting 50p to my TV or to any other display. So I guess it would be 50p displayed on 60p then.

            I don't think my Now TV puck or the Chrome Cast stick does 50 Hz. USA is all that matter, innit?

            Perhaps if I launch iPlayer on the HTPC (which I have forced to 50Hz).. Hurray, that's gonna be a lovely end user experience!

            1. Christopher W

              Re: This is why I love the bbc

              When most (all?) TV panels and their image processing run natively at 60 Hz, and all these widgets also output at 60 Hz... Just let one device do the fps resampling.

              My 60 Hz-native Samsung TV (admittedly old, but a good quality panel) does horrible things if you feed it 25 or 50 Hz, so it only gets fed by a PC through HDMI at 60 Hz. The NVIDIA GPU does an excellent job of interpolating iPlayer content.

              Resampling 50 -> 60 is easier than 60 -> 50 (+1 frame every 100 ms will be almost imperceptible...) I don't imagine pixel rise/fall lag can even really keep up with that unless you have a VERY expensive panel.

              I don't even think graphics cards do it this way anyway, a decent GPU should utilise some form of frame interpolation. TBH I'd rather have my GPU do this than my TV.

              1. anonymous boring coward Silver badge

                Re: This is why I love the bbc

                What, you have a TV that can't do 50Hz? And you are in a PAL country?

                I don't believe this to be true.

                You don't want any conversion from 50 to 60 Hz, period. No matter how fancy, or how "only once".

                1. Christopher W

                  Re: This is why I love the bbc

                  All TVs sold in the UK with flat panels have 60 Hz native panels. The image processing chip inside is internally interpolating the broadcast 50 Hz content to the panel's native refresh rate, irrespective of how you supply it with signal.

                  You need to spend orders of magnitude more - £3k, £6k - to get a panel which can natively run at 24, 25, 30 Hz (i.e, frames per second) without poorly done image processing. These are usually Grade 1 or Grade 2 broadcast panels like Sony's BVM and PVM series of broadcast monitors.

                  If you consider the image processing capable by a decent consumer GPU, versus the limited horsepower in your TV's silicon, I'd rather watch TV through my GPU (which I do thanks to an HDMI cap card) than watch it straight through the telly. TVs often do a a cheap bob deinterlace to get it to 50 Hz too, and then interpolate to 60.

                  And then, even being fed 50i, they can still go nuts and momentarily show progressive frames (which is incredibly jarring to watch when it happens) because it thinks it's showing film (25psf) content, until the image processing realises its mistake and reverts to TFF interlaced video.

                  1. Christopher W

                    Re: This is why I love the bbc

                    'All TVs' = 'all cheaper TVs'. Most important word in that sentence omitted. Sod's law.

                  2. TheVogon

                    Re: This is why I love the bbc

                    "All TVs sold in the UK with flat panels have 60 Hz native panels"

                    Not true of my Panasonic Plasmas or my various Samsung LCDs. They all run at a multiple of 50Hz.

                    So for instance my UE40D6530 runs natively at 400Hz.

              2. Anonymous Coward
                Anonymous Coward

                Re: This is why I love the bbc

                "When most (all?) TV panels and their image processing run natively at 60 Hz, and all these widgets also output at 60 Hz... Just let one device do the fps resampling."

                No they don't. Many run at 100Hz, 200Hz, 300HZ, and 400Hz as a quick hunt round panel specs tell me.

                If your panel is native 60Hz, it's likely a fairly crap one.

                Don't forget the majority of the world uses PAL or SECAM based solutions and that most of the world also uses 50Hz AC mains power.

                1. Christopher W

                  Re: This is why I love the bbc

                  Some (quite expensive) consumer sets will downscale internally to the panel's refresh rate whilst advertising a higher one.

                  There's a history of TV panels starting out (or being repurposed as) PC display panels - which will run at (probably) 60 Hz, unless they're more modern 100 or 120 Hz (...and even if they're advertised as 100, I'm not even sure they're natively 100 - quite possibly native 120 with some on-chip conversion!).

                  Taking this into consideration, 50 Hz countries are in the minority in light of global market forces which has always frustrated me. However you look at it, TVs and PC displays are made to a price point which doesn't usually include native support for 50 Hz and its higher rate multiples.

                  Also, consider the amount of legacy panels still in use in the UK - 720p or 'budget' 1080p panels in budget TVs which are now probably at least a decade old. They are all 60 Hz simply due to the economy of scale to manufacture one type of panel for worldwide use and throw a cheap deinterlacing and frame rate conversion algorithm in for non-NTSC markets.

                  Most people won't have a true 100 Hz panel in their house. People are still buying budget TVs en masse from Tesco for crying out loud, and those are all made-in-PRC specials which ALL use 60 Hz native panels.

                  As an aside, anything shy of a 600 Hz refresh rate is useless for true cross-standards use as it will always involve awkward, unequal frame rate conversion (and native capture at high, but not super-high, rates causes other issues with flicker from lighting etc). I agree with those who are frustrated that 600 Hz wasn't adopted as an UHD requirement. (600/24, 600/25 and 600/30 all leave no remainders, the first ideal refresh rate.)

                  http://www.rtings.com/tv/learn/fake-refresh-rates-samsung-clear-motion-rate-vs-sony-motionflow-vs-lg-trumotion has an interesting table showing fake vs. true panel rates. You may be surprised how many panels in models from big box manufacturers don't have refresh rates that match their advertised maximums.

                  1. Anonymous Coward
                    Anonymous Coward

                    Re: This is why I love the bbc

                    "PC display panels - which will run at (probably) 60 Hz"

                    Pretty much all of them also run at 75Hz without issue.

              3. anonymous boring coward Silver badge

                Re: This is why I love the bbc

                "(+1 frame every 100 ms will be almost imperceptible...)"

                No it isn't.

                It looks absolutely awful on anything that actually moves.

                That's 10 stutters per second.

                What makes people think this won't be visible, when we demand at least 24fps for film, and are used to 50 images (deinterlaced) from video?

                Not sure what nVidia GPU you use, but I have an AMD passively cooled one that does excellent vector adaptive deinterlacing of HD. But it doesn't do 50 -> 60 Hz conversion, because I have told it to output 50Hz to the TV. I'm pretty sure it wouldn't do a good job though (perhaps being helped botching things up by Windows).

            2. Anonymous Coward
              Anonymous Coward

              Re: This is why I love the bbc

              "I would be extremely surprised if any of my IPlayer capable devices supported outputting 50p to my TV or to any other display"

              I would be surprised if they didn't. Even if you are unfortunate enough to be in a region landed with inferior NTSC (Never Twice the Same Colour) broadcasts, supporting 1080p/50Hz is standard elsewhere - and technically simpler than supporting 60Hz.

              "So I guess it would be 50p displayed on 60p then."

              To do that, they have to slow it down to from 50Hz to 48Hz, and then do 3:2 pulldown, giving you a familiarly crap NTSC movie-like experience....

              1. anonymous boring coward Silver badge

                Re: This is why I love the bbc

                Well, my Chromestick and my Now TV puck really never switches from 60Hz.

                These are designed by USA people, who really only care if SOMETHING comes out on a PAL TV, not that it looks good. I bet every single film on Now TV, Amazon and Netflix is done with 3:2 (probably stored as such) and fed out to 60Hz devices. Hence we get 60Hz here too. We certainly don't get 24p films and 50Hz PAL video.

                Since the very same devices contain the iPlayer software, it too will use 60Hz. Apparently it would be a major disaster if the TV flickered for a second or so changing to 50Hz, according to US techies I have complained to.

          2. anonymous boring coward Silver badge

            Re: This is why I love the bbc

            I checked out the iPlayer Russian F1 GP, and it looked absolutely horrible using my Now TV (gen 2) puck.

            What device did you use to get 50p, if I may ask?

        2. Anonymous Coward
          Anonymous Coward

          Re: This is why I love the bbc

          "Sport at 30fps sourced from 50i? Possibly converted from 30fps again to display at 50Hz on your TV."

          No one sane is going to capture or broadcast at a non standard rate like 30Hz as it introduces judder.

          1080p/50 is recommended by the EBU for HDTV:

          https://tech.ebu.ch/docs/events/ibc11-ebutechnical/presentations/ibc11_10things_1080p50.pdf

          1. anonymous boring coward Silver badge

            Re: This is why I love the bbc

            We are talking about streaming TV, and the devices used to display such streams. Of course 50Hz is recommended, but the devices don't implement it. So any 50p stream will indeed be a judderfest. And they are.

            BBC makes films etc at 25p, so sure, low frame rates are used. Low frame rates don't cause annoying judder as such, it's temporal erros like pulldown/up that causes issues. Film has always been 24p and works just fine in a real projector.

            1. Christopher W

              Re: This is why I love the bbc

              Except to get a projector which natively supports 24 Hz, you'll have to flash a substantial wad of cash. Most projectors are internally 60 Hz, particularly if they're LCD or LCoS. Even then, all but the more expensive DLP projectors will likely do pulldown or interpolation - their internal image processing will just look nicer.

              1. anonymous boring coward Silver badge

                Re: This is why I love the bbc

                I forced my old Toshiba LCD TV to do 48Hz, so I could see judder-free 24p Bluray. Have you tried 48Hz?

                The TV didn't oficially support it, but it seems the PLLs could bend enough.

                Of course you need something that can output 48Hz for this. I fiddled with some utility under Windows to do this. This was in the early days when BD players were expensive, so I used a PC for BD.

              2. Anonymous Coward
                Anonymous Coward

                Re: This is why I love the bbc

                "Most projectors are internally 60 Hz"

                I just looked at tech specs of the 10 top sellers on Amazon. All of them support native 50Hz.

      2. fruitoftheloon
        Happy

        @AMBxx: Re: This is why I love the bbc

        AMBxx,

        I know not why, but here (mid-Devon), iplayer is shite (on various boxen/bits of kit), whilst Netflix and amazon prime are just fine...

        Ymdv.

        Cheers,

        Jay

    2. nematoad
      Unhappy

      Re: This is why I love the bbc

      I too love the BBC but I am surprised at their hypocrisy.

      They obviously have the devs and in-house knowledge to hack Linux so isn't it a pity that as far as their customers are concerned they don't recognise the fact that some of us actually use Linux on the desktop?

      The BBC has the facility in the iPlayer to allow users to download programmes for later consumption, all that is except users of Linux.

      Currently they are running a beta programme using HTML5, again for everyone except Linux.

      I have written to them on these subjects and have received a polite but firm reply to the effect that "We do not support Linux" Presumably not because it's too difficult but that they see no future in supporting the OS, yet they use the thing themselves.

      As I said, hypocrites.

      1. itzman

        Re: This is why I love the bbc

        Not hypocrites, just large and with various bits that dont talk to other bits

        1. Mike Pellatt

          Re: This is why I love the bbc

          just large and with various bits that dont talk to other bits

          Net result, the organisation says one thing and does another.

          Hypocrisy, n.:

          a pretense of having a virtuous character, moral or religious beliefs or principles, etc., that one does not really possess.

          I daresay that attribute in a human is derived from the same root cause - bits of the brain that ought to talk to each other but don't.

          Knowledge of the means by which a behaviour occurs doesn't alter the behaviour itself or its effect on others.

          Also known as "an explanation isn't an excuse"

      2. werdsmith Silver badge

        Re: This is why I love the bbc

        Well, the way it works is that when there is a vacuum somebody will write a perl script to fill it.

        1. Tom 7

          Re: This is why I love the bbc: when there is a vacuum somebody will write a perl script to fill it.

          get_iplayer is indeed in perl

      3. danbishop

        Re: This is why I love the bbc

        I'm using the HTML 5 beta on Linux?... If I recall correctly the HTML5 beta is restricted only by Browser. In fact Chrome on "Linux" (presumably Ubuntu) is listed as one of their test platforms...

        1. anonymous boring coward Silver badge

          Re: This is why I love the bbc

          I think it's very wrong of BBC to support a virus-like program like Chrome above open source browsers. If Firefox is lacking something, they should have provided that something and CONTRIBUTED to open source. Sure, Chrome is nice, but it's also a platform for Google to put its tentacles in your computer forever.

          Why isn't BBC more idealistsic? It's founded by a kind of tax after all (pay, or else..).

          1. bigtimehustler

            Re: This is why I love the bbc

            You do realize right that chrome is just the chromium open source project? Google add their own stuff onto certain cuts of the chromium project's work. There is nothing stopping you downloading chromium directly if you don't like the google additions. FF has become dog slow over the years, even with no plugins activated it starts up slower than chrome with plugins.

            1. anonymous boring coward Silver badge

              Re: This is why I love the bbc

              I'm no big Firefox fan, but initial startup time isn't a strong criteria for me when picking a browser.

              Chrome is not a lot like Chromium, but yes, Chromium is the open source part of Chrome.

              Firefox is a memory hog on a an epic scale, and the programmers involved can't see anything wrong with that. FAIL!

              But all Google products are massive resource-hogs too. It takes a lot of resources to spy continously on the users. For example, I doubled my Android phone's battery life by hunting down and disable all Google spying related stuff I could find.

            2. Dan 55 Silver badge

              Re: This is why I love the bbc

              It won't work with Chromium unless you install the DRM plugin.

Page:

POST COMMENT House rules

Not a member of The Register? Create a new account here.

  • Enter your comment

  • Add an icon

Anonymous cowards cannot choose their icon

Other stories you might like