namespaces for security
play

Namespaces for security Jake Edge, LWN.net, jake@lwn.net Embedded - PowerPoint PPT Presentation

Namespaces for security Jake Edge, LWN.net, jake@lwn.net Embedded Linux Conference, San Francisco February 21, 2013 What are we going to be talking about? Threats Effects Defenses Namespaces Types of namespaces Creating


  1. Namespaces for security Jake Edge, LWN.net, jake@lwn.net Embedded Linux Conference, San Francisco February 21, 2013

  2. What are we going to be talking about? ● Threats ● Effects ● Defenses ● Namespaces ● Types of namespaces ● Creating namespaces ● Using namespaces ● Examples February 21, 2013 Embedded Linux Conference 2013 Jake Edge, LWN.net

  3. What kinds of threats are we talking about? ● Mass attacks ● Network-facing services ● Network clients ● DNS cache poisoning ● Web application flaws ● Cross-site attacks ● ... February 21, 2013 Embedded Linux Conference 2013 Jake Edge, LWN.net

  4. What are the effects of typical attacks? ● Service account compromise – Can perform any action service could do ● Network, filesystems, processes ● Network access – Spam, DDoS, Botnet ● Filesystem access – Confidential information, config settings ● Process access – ptrace(), kill() ● Privilege escalation February 21, 2013 Embedded Linux Conference 2013 Jake Edge, LWN.net

  5. How do we normally avoid those threats? ● Unix permissions ● Users and groups ● Mandatory access control (MAC) ● Capabilities ( CAP_SYS_ADMIN, CAP_NET_ADMIN, ...) ● Seccomp sandbox ● ... February 21, 2013 Embedded Linux Conference 2013 Jake Edge, LWN.net

  6. Namespaces ● Mechanism to partition global resources ● Provides invisibility ● Lightweight virtualization ● Containers ● Testing, debugging ● Security February 21, 2013 Embedded Linux Conference 2013 Jake Edge, LWN.net

  7. Types of namespaces ● UTS – Unix timesharing (host and domain name) ● Mount ● Processes (PID) ● Inter-process communication (IPC) ● Networking ● User February 21, 2013 Embedded Linux Conference 2013 Jake Edge, LWN.net

  8. Namespace kernel configuration ● General setup → Namespaces support ● CONFIG_NAMESPACES, CONFIG_UTS_NS, CONFIG_NET_NS, ... ● As of 3.8, CONFIG_USER_NS depends on network filesystems being turned off February 21, 2013 Embedded Linux Conference 2013 Jake Edge, LWN.net

  9. Creating namespaces ● clone(), unshare(), setns() system calls ● CLONE_NEWNS, CLONE_NEWUTS, CLONE_NEWPID, CLONE_NEWNET, CLONE_NEWIPC, CLONE_NEWUSER ● clone() - starts a new process in new namespace(s) ● unshare() - creates new namespace(s) without a new process, adds current process to them ● setns() - join an existing namespace ● systemd-nspawn – useful for noodling with namespaces, source code is useful too February 21, 2013 Embedded Linux Conference 2013 Jake Edge, LWN.net

  10. PID and mount namespaces Root NS PIDs 1 37 Child NS 238 249 PIDs 1 init 444 /srv/sid 12 445 ps ax ... 999 ... / / /proc /tmp February 21, 2013 Embedded Linux Conference 2013 Jake Edge, LWN.net

  11. Using namespaces ● /proc/PID/ns/{mnt pid uts ipc net user} ● References the namespaces ● Can be passed to setns() February 21, 2013 Embedded Linux Conference 2013 Jake Edge, LWN.net

  12. Mount namespace propagation ● Shared, slave, and private mounts # mount --make-shared / # mount --make-private / ● Recursive variants # mount --make-rslave / ● Where do further mounts appear? ● Shared shares both directions, slave just in that direction, private doesn't share at all February 21, 2013 Embedded Linux Conference 2013 Jake Edge, LWN.net

  13. Examples ● Set up mount namespace to run update checker, allow RO access to libraries it needs and have private /tmp ● Run multiple instances of web application in separate PID namespaces – can't see others ● Combine mount and PID namespace to isolate web application (CMS in PHP, say) further ● Set up a network namespace to run httpd worker process – no access to the network if process is compromised ● Separate network namespaces for local network access vs. internet access – internet-based compromise can't access LAN ● ... February 21, 2013 Embedded Linux Conference 2013 Jake Edge, LWN.net

  14. Further reading ● Namespaces in operation series – http://lwn.net/Articles/531114/ ● Slides available on ELC site and at – http://lwn.net/talks/elc2013/ February 21, 2013 Embedded Linux Conference 2013 Jake Edge, LWN.net

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend