Howto to intercommunicate processes in different(remote) machines through DBus
Introduction
In this post I’m going to try to connect two processes in different machines through DBus. The method is a little bit complex, so be patient if you try.
Also is to advert that this has been the result of 3 days of tests (reference1). So maybe this method may be improved with time and use reference2.
Tools (The actors)
- dbus
- gabriel
- socat
- libssh
- SSH
- your apps
Debian official packages are dbus libssh-2 socat
gabriel is not part of Debian yet (but I’ve build one for myself)
Knowledge (Actors curriculum)
In this section I will describe the basics about the tools we are going to use.
DBus. Extracted from DBus page:
D-Bus is a message bus system, a simple way for applications to talk to one another. In addition to interprocess communication, D-Bus helps coordinate process lifecycle; it makes it simple and reliable to code a “single instance” application or daemon, and to launch applications and daemons on demand when their services are needed.
D-Bus supplies both a system daemon (for events such as “new hardware device added” or “printer queue changed”) and a per-user-login-session daemon (for general IPC needs among user applications). Also, the message bus is built on top of a general one-to-one message passing framework, which can be used by any two apps to communicate directly (without going through the message bus daemon). Currently the communicating applications are on one computer, or through unencrypted TCP/IP suitable for use behind a firewall with shared NFS home directories.
Gabriel is a simple utility to enable D-Bus clients to connect to a D-Bus daemon running on a remote machine, through SSH.
This is the main piece of this puzzle. If you are interested in understanding how it works you should take a look at socat and libssh. As I’ve had to take a look at code, and make some modifications, you should read it as a punishment.
Extracted from socat man page:
socat - Multipurpose relay (SOcket CAT)
socat is a command line based utility that establishes two bidirectional byte streams and transfers data between them. Because the streams can be constructed from a large set of different types of data sinks and sources (see address types), and because lots of address options may be applied to the streams, socat can be used for many different purposes. It might be one of the tools that one ‘has already needed´.
Libssh. Extracted from libssh page:
The SSH library was designed to be used by programmers needing a working SSH implementation by the mean of a library. The complete control of the client is made by the programmer. With libssh, you can remotely execute programs, transfer files, use a secure and transparent tunnel for your remote programs. With its Secure FTP implementation, you can play with remote files easily, without third-party programs others than libcrypto (from openssl).
You should know about SSH and about your application.
Architecture
Local host will run gabriel and your application.
Remove host will need a running SSH server, a running dbus server and will need socat installed and ready to use.
We need to run gabriel, that will act as a server that will connect our host to the remote host through SSH. After that gabriel will use this SSH connection to intercommunicate our local application with remote DBus applications by using socat.
Howto (Main action)
At the moment I’ve only achieved to connect a process using session-bus, I’m still testing until I get connection through system-bus which was my initial purpose.
After reading next information, you will be able to connect using session bus and system bus.
As I commented somewhere else, I’ve made some modifications on gabriel code. I needed some common parameters as SSH port (my virtualbox testing environment ), better help explanations or add a verbose output.
Gabriel establish a connection with the remote SSH and by socat commands it communicates with the remote DBus “environment”. You should administrate SSH parameters and Dbus parameters to gabriel.
user@machine:~/svn/gabriel/gabriel$ src/gabriel –help
Usage:
gabriel [OPTION...] - Gabriel
Help Options:
-?, –help Show help options
Application Options:
-h, –host=HOSTNAME Hostname or IP of the remote host
-p, –port-ssh=PORT-SSH SSH port on the remote host
-u, –username=USERNAME SSH username on the remote host
-w, –password=PASSWORD SSH password on the remote host
-m, –method=DBUS_TRANSPORT_METHOD The D-Bus transport method to use (TCP, UNIX, abstract-UNIX)
-b, –bind=HOSTNAME The bind-address to listen for D-Bus client connections on
-d, –bus-address=BUS_ADDRESS The DBus session bus address of the remote D-Bus daemon
-t, –port-tcp=PORT-TCP The TCP port to listen for DBus client connections on
-v, –verbose=VERBOSE Set verbosity level (3, 2, 1, 0, -1)=(packet,protocol,functions,important,none)
We have to put special attention to -d, –bus-address=BUS_ADDRESS because this info must be gotten from the REMOTE machine.
That address is the one used by processes to communicate through DBUS. It’s something “internal” and automatically done when you use DBus API/library. I’m going to show you where to get it.
DBUS_SESSION_BUS_ADDRESS, DBUS_SYSTEM_BUS_ADDRESS, DBUS_SYSTEM_BUS_DEFAULT_ADDRESS
Again, this info should be gotten from REMOTE machine.
At the moment I don’t know any nice command where to get this info.
We have two main options of DBus buses. System and Session (more info in DBus page).
If you need SESSION bus address, you can choose what it better fits you:
- You can can get it from process environment
- You can stole it from any other process suspicious from being involved in DBus activities…
- You can create your own dbus-daemon (which, actually, I don’t know if it uses it’s own BUS_ADDRESS)
If you need SYSTEM bus address, you can choose what it better fits you:
- You can can get it from process environment. If it’s not defined, take a look at /etc/dbus-1/system.conf where you should locate a string like <listen>unix:path=/var/run/dbus/system_bus_socket</listen>
- You can stole it from any other process suspicious from being involved in DBus activities…
Examples:
// C++ code
#include <stdio.h>
#include <stdlib.h>
char * env;
// env = getenv (”DBUS_SESSION_BUS_ADDRESS”);
env = getenv (”DBUS_SYSTEM_BUS_ADDRESS”);
if (env!=NULL){
cout << env << endl;
}
user@REMOTE-machine:~ $ grep -z BUS_ADDRESS /proc/2047/environ
HALD_RUNNER_DBUS_ADDRESS=unix:abstract=/var/run/hald/dbus-bonbZtoykd,guid=8b5aff565de0dc7c467fef414832dd98
This command gives you a dbus-daemon in your session with the one you can contact.
user@REMOTE-machine:~ $ dbus-daemon –session –print-address
unix:abstract=/tmp/dbus-j2npbTXDwD,guid=d69f66d43e354de5733e4a1a48335bd6
user@REMOTE-machine:~ $ grep unix /etc/dbus-1/system.conf
<listen>unix:path=/var/run/dbus/system_bus_socket</listen>
Howto (Main action): Back to local host
Those ugly unix:stri:ngs/asdkaj/numbers we have seen is what we need for -d, –bus-address=BUS_ADDRESS.
See a session example:
user@machine:~/svn/gabriel/gabriel$ src/gabriel -h localhost -p 2222 -d unix:abstract=/tmp/dbus-j2npbTXDwD,guid=d69f66d43e354de5733e4a1a48335bd6
Listening to D-Bus clients on: “unix:abstract=/tmp/gabriel”
bla ble blu bla
See a system example:
user@machine:~/svn/gabriel/gabriel$ src/gabriel -h localhost -p 2222 -d unix:path=/var/run/dbus/system_bus_socket
Listening to D-Bus clients on: “unix:abstract=/tmp/gabriel”
bla ble blu bla
The moment we have or gabriel server running we (may have nothing) need to set DBUS_XXX_BUS_ADDRESS. Many apps would use, or have, this environment variable to connect to a DBus instance and intercommunicate with other process.
This is is easy, DBUS_XXX_BUS_ADDRESS should be the address gabriel shows few instants after being launched.
When we have defined this environment variable (in command line) we can execute our app, and it will happily communicate with the remote DBus world.
Example:
user@machine:~/svn/dbusmm/trunk/examples/glib$ export DBUS_SESSION_BUS_ADDRESS=”unix:abstract=/tmp/gabriel”
user@machine:~/svn/dbusmm/trunk/examples/glib$ ./dbus-browser
dbus-browser is a program that uses a session bus.
Curiosity: DBus protocol messages interchanged
Modifying a couple of lines in gabriel can let you see DBus raw protocol messages. It’s a didactic info.
If you enable verbose code at least at level 2, you will get raw DBus protocol messages.
My modifications and hacks
Code will be publish under GLKM project page.
Links and references
- dbus site
- gabriel site
- socat site
- libssh site
- reference 1. (informational note, it had implied jumping into gabriel, libssh, and dbus code and testing with a virtualbox machine)
- reference 2. (personal note, take a look at “Securing traffic between two socat instances using SSL” article in socat page)
Te interesará:
Howto access a Virtualbox guest machine throught ssh (or how to port forwarding)
This is not an original article (see references), it’s just an archived one “por si las moscas”.
Introduction
By default, the network connection in Virtualbox is set to NAT, that is every packet coming from the Guest machine is modified so that it seems as it has come from the Host machine. In this way it’s easy for the Guest machine to connect to all the rest of the network (the Internet included) but nobody can start a connection with the Guest Machine since it’s hidden behind the Host one.
So, if you want to use a server service in your Guest machine (i.e. Apache or SSH) you have two choices:
- pass to Virtualbox Host network connection;
- make Virtualbox forward all the packets arriving to a certain port of the Host machine.
This article will describe how to do the latter, in particular in the case of the SSH server. This is an interesting case because it allows you to simulate very well a quite common condition: connecting to a remote LINUX headless machine.
We have a guest machine with a running SSH server which accepts connections on the TCP port 22.
Our goal is to make any packet arriving at a given TCP port (i.e. 2222) of the host machine, to be forwarded to the TCP port 22 of the guest machine.
Fortunately, there is Virtualbox command which permits to do it almost instantly: VBoxManage.
Configuration needed
In our case we will use Debian as the guest machine name (quote in case guest machine name contains spaces), here are the commands that you have to type in the host machine (real one) console as your user (if you use another user it will try to look for its virtual machines):
user@machine $ VBoxManage list vms
VirtualBox Command Line Management Interface Version 1.5.6_OSE
(C) 2005-2008 innotek GmbH
All rights reserved.
Name: debian
Guest OS: LINUX 2.6
UUID: 814e25f4-451e-4582-8d34-71a1cd437cdd
Config file: /mnt/extra/virtualizacion/virtualbox/debian/debian.xml
Memory size: 195MB
[...]
user@machine $ VBoxManage setextradata debian “VBoxInternal/Devices/pcnet/0/LUN#0/Config/ssh/HostPort” 2222
VirtualBox Command Line Management Interface Version 1.5.6_OSE
(C) 2005-2008 innotek GmbH
All rights reserved.
user@machine $ VBoxManage setextradata debian “VBoxInternal/Devices/pcnet/0/LUN#0/Config/ssh/GuestPort” 22
VirtualBox Command Line Management Interface Version 1.5.6_OSE
(C) 2005-2008 innotek GmbH
All rights reserved.
user@machine$ VBoxManage setextradata debian “VBoxInternal/Devices/pcnet/0/LUN#0/Config/ssh/Protocol” TCP
VirtualBox Command Line Management Interface Version 1.5.6_OSE
(C) 2005-2008 innotek GmbH
All rights reserved.
HostPort,GuestPort,Protocol are just string examples and can be changed without any consequence. Just remember your choices if you want to remove them later.
I guess you should be careful with pcnet substring, as maybe it should have something to see with your selected network card type.
Testing
Once you have typed the above commands, you need to close the guest machine (a reboot won’t be sufficient), restart it and then connect via SSH with:
anyuser@machine$ SSH -l >user< -p 2222 localhost
Replace localhost with the host machine IP address if you are connecting from another computer.
By the way, you can check which customizations have been already set for your Guest Machine with VBoxManage by typing:
user@machine$ VBoxManage getextradata debian enumerate
VirtualBox Command Line Management Interface Version 1.5.6_OSE
(C) 2005-2008 innotek GmbH
All rights reserved.
Key: GUI/LastWindowPostion, Value: 0,6,1028,820
Key: GUI/Fullscreen, Value: off
Key: GUI/AutoresizeGuest, Value: off
Key: GUI/LastCloseAction, Value: powerOff
Key: GUI/SaveMountedAtRuntime, Value: yes
Key: GUI/Seamless, Value: off
Key: VBoxInternal/Devices/pcnet/0/LUN#0/Config/ssh/HostPort, Value: 2222
Key: VBoxInternal/Devices/pcnet/0/LUN#0/Config/ssh/GuestPort, Value: 22
Key: VBoxInternal/Devices/pcnet/0/LUN#0/Config/ssh/Protocol, Value: TCP
or remove one, for example “VBoxInternal/Devices/pcnet/0/LUN#0/Config/ssh/GuestPort”, by setting it without any value:
user@machine$ VBoxManage setextradata “VBoxInternal/Devices/pcnet/0/LUN#0/Config/ssh/GuestPort”
Links and references
- an article about VirtualBox on doc.ubuntu-fr.org (which offers a slightly different solution)
- Howto access via SSH a Virtualbox guest machine.
Te interesará:
WHYFLOSS Madrid Conference 08
¿Cuándo?
En los días 8 y 9 del mes de Mayo se celebrará la cuarta edición de la WhyFLOSS Conference, con entrada libre y gratuita.
Con un importante apoyo de la Escuela de Informática de la Universidad Politécnica de Madrid, Campus Sur se presentarán conferencias variadas entorno a las tecnologías abiertas de IT.
Estarán colaborando en la IV edición del evento compañías como SUN, Red Hat, OpenBravo, Andago, SIE, Liferay, Opentia, Monolabs, Accenture, Avanzada7 y universidades como la UPM y la URJC, así como comunidades de proyectos como LibreSoft, OpenSolaris y FFII.
¿Dónde?
El evento se realizará en la Escuela de Informática de la Universidad Politécnica de Madrid. Se encuentra ubicada en el Campus Sur de la UPM en la carretera de Valencia Km. 7 en la Ciudad de Madrid (España).
Información de localización de la Whyfloss Madrid 2008
Calendario
DIA 1
9:30
Inauguración WHYFLOSS Conference 08.
Alejandro Sánchez Acosta, Neurowork
10:00
Open-Cities: el reto de la administración electrónica
Guillermo Pastor, Ándago Ingeniería S.L.
11:00
VII Programa Marco en la UE: FLOSS Include y FLOSS Metrics
Jesús Gonzalez Barahona, LibreSoft
12:00
Modelos de negocio basados en Asterisk (la plataforma de VoIP basada en Software Libre)
Juan Ignacio Cabrera, Avanzada 7
13:00
Clustering Computacional en CSIC
Raul Diaz Medina, Sistemas Informáticos Europeos S.L.
14:00
Descanso para comer
16:00
La implicación de la FFII en los estándares abiertos en Europa
Alberto Barrionuevo, Presidente de Foundation for a Free Information Infrastructure (FFII) / OPENTIA, S.L.
17:00
Caso de exito OpenSolaris en Accenture
David Galan Ortiz, Accenture Outsourcing
18:00
¿Es viable el software Open Source en la Industria? El caso de Red Hat LINUX y JBoss
Jesús González de Buitrago, Red-Hat
DIA 2
10:00
Evolución e influencia del Software Libre en los 10 últimos años
Juantomás García, Monolabs
11:00
Liferay Enterprise Portal: The project, the product, the community and how to extend it
Alvaro del Castillo San Félix, Liferay Inc.
12:00
Openbravo: las claves del éxito del desarrollo en las aplicaciones en software libre
Representative, OpenBravo Inc
13:00
Rocks: Distribucion para clusters computacionales
Jesús Espino García, Sistemas Informáticos Europeos
14:00
Descanso para comer
16:00
Seguridad en OpenSolaris
Victor M. Fernandez, SIA / OpenSolaris Hispano
17:00
Django: Framework MVC en Python
Jesús Espino García, Sistemas Informáticos Europeos
Notas personales (idem a la pasada edición):
- He de decir que conozco al organizador principal.
- Yo voy
Referencias y enlaces
- Puedes registrarte vía web
- Si desea colaborar en la difusión del evento puede seguir este enlace.
- Puede consultar el programa definitivo.
Te interesará:
A lo que diga el marca, lo mismo que lo que digan en misa
Ni puto caso.
Bueno, acabo de llegar a casa (mejor dicho a casa de mis padres) y lo primero, queridos lectores, ha sido reiniciar el servidor que se me ha quedado tarumba. No se si habrá sido por el disco duro o qué, no respondía ni al teclado, ni a las sysrequest ni na. Un fallo grave, porque como bien sabéis todos, a GNU/Linux estas cosas no le hace falta, y a una Debian menos.
A la cuestión que vamos, después de estos menesteres culinarios, es a un comunicado que acabo de leer en el boletín electrónico del Club Baloncesto Estudiantes. Mi club baloncestístico por excelencia, para los nuevos. No se puede resumir mucho pero os resalto lo fundamental:
El Club Estudiantes quiere mostrar su malestar con el diario deportivo Marca por sus informaciones publicadas hoy [...] referentes al encuentro correspondiente a la 16ª Jornada [...]. El artículo firmado por el periodista Jesús Sánchez (titulado `Atraco´ al León en el Madrid Arena) ataca duramente a la Liga ACB, a su estamento arbitral y fundamentalmente al Club Estudiantes, [...].
Como viene siendo habitual en los últimos meses, la parcialidad y la falta de rigor con la que el diario Marca trata la información del Club Estudiantes es impropia de un medio de comunicación de su prestigio. Este hecho se vio reflejado ayer en la comparecencia de prensa post partido del técnico visitante, ante la continua insistencia del periodista en que el arbitraje había sido vergonzoso.
[...]
Para poneros en situación, el Estudiantes en los instantes de redacción de esta entrada, se encuentra en penúltima posición de la liga ACB. Y con un juego lamentable hasta hace nada, añado.
Tras leer la noticia lo primero es ir a ver lo que tal periodista (aunque dudo que en esa redacción haya alguno y que además ejerza su profesión) ha dicho en el papelucho de ese llamado diario. Uno de esos que antiguamente usaban los obreros para envolverse el bocata y que ahora no vale ni para eso porque te puede dejar un olor fétido y repetitivo en la comida que para qué contaros.
Vaya por Buda, una lástima, en la edición publicada en Internet sobre el partido no se han dignado ni a publicarlo. Han tirado de agencia EFE y han colocado un artículo con este titular: “Los colegiales sumaron su tercera victoria consecutiva en casa“.
Si es que la prensa deportiva, perdón, siento el gravísimo error, la prensa-futbolera, de este país dejó de existir hace muchos años. Probablemente sean los mismos años que cuando empezó la guerra de televisiones. Aquella que trajo consigo tal cantidad de dineros que el resto de deportes dejó de importar en decenas de redacciones.
Podría decir más barbaridades, pero el texto que he resaltado del párrafo anterior creo que aclara suficientemente mi postura. Si no fuese por Internet y por portales como ACB.com o encancha.com, qué sería de la información baloncestística.
Aupa Estu. Ahora es la hora.
Referencias y enlaces:
- Comunicado oficial del Club Estudiantes para denunciar el trato del diario marca
- El vídeo demuestra la ilegalidad de la canasta leonesa
- [marca.com] Los colegiales sumaron su tercera victoria consecutiva en casa
Te interesará:
Una ola llamada GNU/Linux II (Segunda parte)
Continuación de Una ola llamada GNU/Linux I (Primera parte)
Algunas de las razones del éxito
[vivalinux.com.ar] El poder de LINUX
[opera.com] 2006: El Año de LINUX
[openaddict.com] five reasons why LINUX will eventually rule the world
Algunas de las empresas que impulsan el software libre
Si alguna vez pensaste que esto de LINUX era algo cutre, o que surgía de la nada, que se te quite de la cabeza. Mira quién paga a una buena parte de los desarrolladores e ingenieros de LINUX.
| Empresa | Porcentaje |
|---|---|
| (Desconocida/Gente por libre) | 25,0 % |
| Red Hat | 12,8 % |
| IBM | 7,4 % |
| Novell | 5,9 % |
| LINUX Foundation | 5,2 % |
| Intel | 3,6 % |
| Oracle | 2,5 % |
| 1,9 % | |
| Universidad de Aberdeen | 1,6 % |
| HP | 1,6 % |
| Qumranet | 1,4 % |
| Nokia | 1,3 % |
| SGI | 1,3 % |
| Astaro | 1,3 % |
| MIPS Technologies | 1,2 % |
| SANPeople | 1.1 % |
| Miracle LINUX | 0.9 % |
| MontaVista | 0.8 % |
| Broadcom | 0.8 % |
Fuente_ [lwn.net] Who wrote LINUX version 2.6.20?
[hp.com] HP sponsored and initiated open source projects
[linuxjuegos.com] Primeros drivers beta para las Creative X-Fi en GNU/Linux
[linuxjuegos.com] John Carmack confirma que Rage si tendrá versión para LINUX
Hasta Dell creó un DOS libre (no se sí de gratis o de abierto), [dell.com] FreeDOS.
No solo se queda, si no arrasa.
Etiquetas: adopción linux, empresas linux, Libre/copyleft, linux, paga linux, software, software libreTe interesará:
Una ola llamada GNU/Linux I (Primera parte)
Alguien lo dijo:
Primero nos ignoraron.
Luego nos negaron.
Ahora se unen a nosotros…
Lo que sigue a continuación es una recopilación de enlaces que he realizado poco a poco durante unos temas para hablar de algo que tendría que haber comentado hace más de un año pero aún no había hecho. Por curiosidad comento que mi anterior título era GNU/Linux se queda, pero lo veía ya un tanto antiguo.
Lo he divido en dos “capítulos” para que sea más fácil de digerir. A pesar de todo, se quedan muchas cosas fuera de rabioso interés.
Ya pasó la época en que se explicaban las bondades del mundo del software libre. Ahora toca mostrar a los que primero apostaron por esta corriente en el mundo de la administración y empresarial.
Algunos casos de administraciones
Extremadura usará ’software’ ‘libre en los 10.000 ordenadores de la administración
[hoy.es] Un estado de Malasia adopta el modelo extremeño de conocimiento y software libre
[europapress.es] El Ayuntamiento de Zaragoza cambiará el sistema operativo de sus ordenadores de Windows a LINUX
[territoriolibre.org] LINUX en las escuelas japonesas: ¡se lo advertimos!
[soleup] Encuentro con el Rector de la Universidad de Valladolid y Software Libre
Algunos casos de empresas
[vivalinux.com.ar] La mitad de las empresas migrará a LINUX a partir del 2007
[kriptopolis.org] Audi elige LINUX; Ford, Microsoft
[infoworld] Peugeot Citroën revs up 20,000 Suse LINUX desktopsl
[kriptopolis.org] BMW apuesta por LINUX y Xen
[techtarget.com] La bolsa de nueva york migra a UNIX y LINUX
[diaroti.com] LINUX es el sistema operativo preferido por Hollywood
[elpais.com] Dura competencia
No solo se queda, si no que es su momento.
Etiquetas: adopción linux, Libre/copyleft, linux, software, software libreTe interesará:
Howto set a proper framebuffer console resolution
Just a quick note.
If you what to change framebuffer resolution in you GRUB config file you are gonna like this table:
#VGA option
# vga=xxx sets the framebuffer console to a specific resolution.
Here is a table you can use so it can help you decide what resolution you want to use:
# 640×480 800×600 1024×768 1280×1024 1600×1200
# 256 colors (8b) 769 771 773 775 796
# 32K colors (15b) 784 787 790 793 797
# 64K colors (16b) 785 788 791 794 798
# 16M colors (24b) 786 789 792 795 799
Use example:
…
# defoptions=vga=791 resume=/dev/hda7
…
title Debian GNU/Linux, kernel 2.6.22-2-686
root (hd0,1)
kernel /boot/vmlinuz-2.6.22-2-686 root=/dev/hda2 ro vga=791
initrd /boot/initrd.img-2.6.22-2-686
…
I’ve got it pasted into my /boot/grub/menu.lst file.
Hey, anyone has tested grub2?
Etiquetas: boot, console, debian, framebuffer, grub, grub2, kernel, linux, menu.lstTe interesará:
Como montar archivos ISO, BIN, CUE, MDF, NRG e IMG en debian-linux
Una rica receta de verano…
ISO
Para montar una imagen ISO desde la línea de comandos quizás requieras permisos especiales (como ser superusuario).
usuario@maquina:~$ mount -t iso9660 -o loop archivo.iso /directorio/de/montaje
BIN y CUE
usuario@maquina:~$ aptitude install bchunk
usuario@maquina:~$ bchunk archivo.bin archivo.cue nuevonombre.iso
NRG (Nero Burning Rom)
usuario@maquina:~$ aptitude install nrg2iso
usuario@maquina:~$ nrg2iso archivo.nrg nuevoarchivo.iso
MDF y MDS
usuario@maquina:~$ aptitude install mdf2iso
usuario@maquina:~$ mdf2iso archivo.mdf nuevaimagen.iso
IMG
usuario@maquina:~$ aptitude install ccd2iso
usuario@maquina:~$ ccd2iso imagen.img imagen.iso
Descargas y enlaces
Etiquetas: BIN, CUE, debian, IMG, ISO, linux, MDF, NRGTe interesará:
Estos son los resultados para ...


Últimos comentarios