securing distributed systems with information flow control
play

Securing distributed systems with information flow control - PowerPoint PPT Presentation

Securing distributed systems with information flow control Nickolai Zeldovich Silas Boyd-Wickizer David Mazires Traditional web applications: lots of trusted (yellow) code HTTP User's Application User's browser front Database User's


  1. Securing distributed systems with information flow control Nickolai Zeldovich Silas Boyd-Wickizer David Mazières

  2. Traditional web applications: lots of trusted (yellow) code HTTP User's Application User's browser front Database User's code browser end browser ● Application is typically millions of lines of code ● Lots of third-party libraries from SourceForge ● Application has access to entire user database

  3. Traditional web applications: lots of trusted (yellow) code HTTP User's Application User's browser front Database User's code browser end browser ● Application is typically millions of lines of code ● Lots of third-party libraries from SourceForge ● Application has access to entire user database ● Result: any bug allows attacker to steal all data! – PayMaxx app code exposed 100,000 users' SSNs

  4. Recent work: information flow control ● Don't try to eliminate all application bugs ( hard !) ● OS'es like Asbestos, HiStar, Flume keep user data secure even if application is malicious – Track flow of user's data through system – Only send user's data to that user's browser – No need to audit/understand application code!

  5. Recent work: information flow control ● Don't try to eliminate all application bugs ( hard !) ● OS'es like Asbestos, HiStar, Flume keep user data secure even if application is malicious – Track flow of user's data through system – Only send user's data to that user's browser – No need to audit/understand application code! ● Limitation: works only on one machine – Web applications need multiple machines for scale

  6. This talk: extending information flow control to distributed systems ● Outline: – Review of information flow control (IFC) in an OS – Challenges in distributed IFC and our solution – Apps: web server, incremental deployment, ... ● Results: – Can control information flow in distributed system – Key idea: self-certifying category names – Enforce security of scalable web server in 6,000 lines

  7. Labels control information flow Label Label Label File A Process File B

  8. Labels control information flow Color is category of data (e.g. my files) Blue data can flow only to other blue objects Label Label Label File A Process File B

  9. Labels control information flow Color is category of data (e.g. my files) Blue data can flow only to other blue objects Label Label Label X File A Process File B X

  10. Labels control information flow Color is category of data (e.g. my files) Blue data can flow only to other blue objects Label Label Label X File A Process File B X

  11. Labels control information flow Color is category of data (e.g. my files) Blue data can flow only to other blue objects Owns blue data, can remove color (e.g. encrypt) Label Label Label File A Process File B

  12. Labels are egalitarian ● Any process can request a new category (color) – Gets ownership of that category ( ) – Uses category in labels to control information flow – Can grant ownership to others Label Label Label File A Process File B

  13. Traditional web server: lots of trusted (yellow) code HTTP User's front Application User's browser Database User's end code browser browser

  14. Information flow control: separate color for each user's data HTTP User's front Application Database User's browser User's end code browser browser

  15. Information flow control: track each user's data in app Application code HTTP User's front Application Database User's browser User's end code browser browser Application code

  16. Labels prevent application code from disclosing data onto network Application X code HTTP User's front Application Database User's browser User's end code browser browser Application X code

  17. Front-end uses ownership to send data only to user's browser Application X code HTTP User's front Application Database User's browser User's end code browser browser Application X code

  18. Front-end uses ownership to send data only to user's browser Application X code HTTP User's front Application Database User's browser User's end code browser browser Application X code ● What happens when the server gets overloaded?

  19. Limitation: OS alone cannot control information flow in distributed system Application X code X X HTTP User's front Application Database User's X X browser User's end code browser browser X X Application X code

  20. Distributed challenge: when to allow processes to communicate? ● Design goal: decentralized – no fully-trusted parts – (Not the usual meaning of decentralized IFC, or DIFC) HTTP Application Data front-end server server httpd App code Database ? ? ● Challenge: no equivalent of a fully-trusted OS kernel that can make all decisions

  21. High-level approach: encode labels in messages Each machine uses OS to enforce labels locally HTTP Application Data front-end server server httpd App code Database Message Message

  22. Problem: decentralized trust ● When can we trust the recipient with message? Attacker's HTTP Application Data machine front-end server server httpd App code Database X Message Message

  23. Solution: per-category trust ● DB trusts front-end, app servers with a particular user's data (e.g. messages labeled blue) ● But DB doesn't trust the app code... Attacker's HTTP Application Data machine front-end server server httpd App code Database X Message Message

  24. Exporters control information flow on each machine using local OS ● Database doesn't trust the app code, but trusts the app server's exporter to contain the app code Attacker's HTTP Application Data machine front-end server server httpd App code Database Exporter Exporter Exporter X Message Message

  25. Exporter's API exp_send( dest_host , dest_mbox , msg , label ) – Exporter provides interface to send datagrams – Message should only be sent if every category in label trusts the machine dest_host – How does the exporter check for this trust?

  26. Strawman: check trust by querying category owners Process (secret bit = 1) Exporter Category owner

  27. Strawman: check trust by querying category owners exp_send(host_x, msg) Process (secret bit = 1) Exporter ? ? Host X Category owner

  28. Strawman: check trust by querying category owners exp_send(host_x, msg) Process (secret bit = 1) Control msg: Exporter “can I send to host_x?” ? ? Host X Category owner

  29. Querying category owners creates a covert channel in API Process (secret bit = 1) X Exporter Attacker's host Host X Category owner

  30. Querying category owners creates a covert channel in API Process (secret bit = 1) X Exporter Attacker's host Host X Category owner

  31. Querying category owners creates a covert channel in API exp_send(host_x, msg) Process (secret bit = 1) X Exporter ? ? Attacker's host Host X Category owner

  32. Querying category owners creates a covert channel in API exp_send(host_x, msg) Process (secret bit = 1) X Control msg: Control msg: Exporter “can I send to “can I send to host_x?” host_x?” ? ? Attacker's host Host X Category owner

  33. Strawman 2: store trust in exporter Process (secret bit = 1) host_x Exporter host_y

  34. Strawman 2: store trust in exporter exp_send(host_x, msg) Process (secret bit = 1) host_x Exporter host_y ● Exporter sends no queries that could leak data

  35. Storing trust in exporter also creates a covert channel in API Colluding Process Process (secret bit = 1) X host_x Exporter Attacker's host Y

  36. Storing trust in exporter also creates a covert channel in API Colluding Process Process (secret bit = 1) exp_trust( , host_y) X host_x Exporter host_y Depends on Attacker's host Y value of the secret bit

  37. Storing trust in exporter also creates a covert channel in API Colluding Process Process (secret bit = 1) exp_send(host_y, msg) exp_trust( , host_y) X host_x Exporter host_y Depends on Depends on Depends on behavior of Attacker's host Y value of the value of the malicious secret bit secret bit process

  38. Problem: What to do with covert channels? ● Non-goal: eliminate all covert channels – Not practical ● Goal: avoid covert channels in interface – Allow trading off performance to mitigate covert channels without changing the API

  39. Solution: Self-certifying category names ● Categories named by public key ● Trust for a category defined by certificates signed by that category's private key ● Caller supplies all certificates to exp_send()

  40. Caller supplies all certificates needed by exporter exp_send( dest_host , dest_mbox , msg , label , certs ) Caller-supplied

  41. Caller supplies all certificates needed by exporter exp_send( dest_host , dest_mbox , msg , label , certs )   Mapping = Caller-supplied

  42. Caller supplies all certificates needed by exporter exp_send( dest_host , dest_mbox , msg , label , certs ) No covert channels   to determine trust: Mapping = ➔ No external Certificate communication host X  Can send to  ➔ No shared state Caller-supplied

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