i3
display_version.c
Go to the documentation of this file.
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  * display_version.c: displays the running i3 version, runs as part of
8  * i3 --moreversion.
9  *
10  */
11 #include "all.h"
12 
13 #include <fcntl.h>
14 #include <time.h>
15 #include <unistd.h>
16 
19 
20 static int version_string(void *ctx, const unsigned char *val, size_t len) {
22  sasprintf(&human_readable_version, "%.*s", (int)len, val);
24  sasprintf(&loaded_config_file_name, "%.*s", (int)len, val);
25  return 1;
26 }
27 
28 static int version_map_key(void *ctx, const unsigned char *stringval, size_t stringlen) {
29  human_readable_key = (stringlen == strlen("human_readable") &&
30  strncmp((const char *)stringval, "human_readable", strlen("human_readable")) == 0);
31  loaded_config_file_name_key = (stringlen == strlen("loaded_config_file_name") &&
32  strncmp((const char *)stringval, "loaded_config_file_name", strlen("loaded_config_file_name")) == 0);
33  return 1;
34 }
35 
36 static yajl_callbacks version_callbacks = {
37  .yajl_string = version_string,
38  .yajl_map_key = version_map_key,
39 };
40 
41 /*
42  * Connects to i3 to find out the currently running version. Useful since it
43  * might be different from the version compiled into this binary (maybe the
44  * user didn’t correctly install i3 or forgot te restart it).
45  *
46  * The output looks like this:
47  * Running i3 version: 4.2-202-gb8e782c (2012-08-12, branch "next") (pid 14804)
48  *
49  * The i3 binary you just called: /home/michael/i3/i3
50  * The i3 binary you are running: /home/michael/i3/i3
51  *
52  */
54  if (getenv("DISPLAY") == NULL) {
55  fprintf(stderr, "\nYour DISPLAY environment variable is not set.\n");
56  fprintf(stderr, "Are you running i3 via SSH or on a virtual console?\n");
57  fprintf(stderr, "Try DISPLAY=:0 i3 --moreversion\n");
58  exit(EXIT_FAILURE);
59  }
60 
61  char *pid_from_atom = root_atom_contents("I3_PID", conn, conn_screen);
62  if (pid_from_atom == NULL) {
63  /* If I3_PID is not set, the running version is older than 4.2-200. */
64  printf("\nRunning version: < 4.2-200\n");
65  exit(EXIT_SUCCESS);
66  }
67 
68  /* Inform the user of what we are doing. While a single IPC request is
69  * really fast normally, in case i3 hangs, this will not terminate. */
70  printf("(Getting version from running i3, press ctrl-c to abort…)");
71  fflush(stdout);
72 
73  int sockfd = ipc_connect(NULL);
74  if (ipc_send_message(sockfd, 0, I3_IPC_MESSAGE_TYPE_GET_VERSION,
75  (uint8_t *)"") == -1)
76  err(EXIT_FAILURE, "IPC: write()");
77 
78  uint32_t reply_length;
79  uint32_t reply_type;
80  uint8_t *reply;
81  int ret;
82  if ((ret = ipc_recv_message(sockfd, &reply_type, &reply_length, &reply)) != 0) {
83  if (ret == -1)
84  err(EXIT_FAILURE, "IPC: read()");
85  exit(EXIT_FAILURE);
86  }
87 
88  if (reply_type != I3_IPC_MESSAGE_TYPE_GET_VERSION)
89  errx(EXIT_FAILURE, "Got reply type %d, but expected %d (GET_VERSION)", reply_type, I3_IPC_MESSAGE_TYPE_GET_VERSION);
90 
91  yajl_handle handle = yajl_alloc(&version_callbacks, NULL, NULL);
92 
93  yajl_status state = yajl_parse(handle, (const unsigned char *)reply, (int)reply_length);
94  if (state != yajl_status_ok)
95  errx(EXIT_FAILURE, "Could not parse my own reply. That's weird. reply is %.*s", (int)reply_length, reply);
96 
97  printf("\r\x1b[K");
98  printf("Running i3 version: %s (pid %s)\n", human_readable_version, pid_from_atom);
99 
101  struct stat sb;
102  time_t now;
103  char mtime[64];
104  printf("Loaded i3 config: %s", loaded_config_file_name);
105  if (stat(loaded_config_file_name, &sb) == -1) {
106  printf("\n");
107  ELOG("Cannot stat config file \"%s\"\n", loaded_config_file_name);
108  } else {
109  strftime(mtime, sizeof(mtime), "%c", localtime(&(sb.st_mtime)));
110  time(&now);
111  printf(" (Last modified: %s, %.f seconds ago)\n", mtime, difftime(now, sb.st_mtime));
112  }
113  }
114 
115 #ifdef __linux__
116  size_t destpath_size = 1024;
117  ssize_t linksize;
118  char *exepath;
119  char *destpath = smalloc(destpath_size);
120 
121  sasprintf(&exepath, "/proc/%d/exe", getpid());
122 
123  while ((linksize = readlink(exepath, destpath, destpath_size)) == (ssize_t)destpath_size) {
124  destpath_size = destpath_size * 2;
125  destpath = srealloc(destpath, destpath_size);
126  }
127  if (linksize == -1)
128  err(EXIT_FAILURE, "readlink(%s)", exepath);
129 
130  /* readlink() does not NULL-terminate strings, so we have to. */
131  destpath[linksize] = '\0';
132 
133  printf("\n");
134  printf("The i3 binary you just called: %s\n", destpath);
135 
136  free(exepath);
137  sasprintf(&exepath, "/proc/%s/exe", pid_from_atom);
138 
139  while ((linksize = readlink(exepath, destpath, destpath_size)) == (ssize_t)destpath_size) {
140  destpath_size = destpath_size * 2;
141  destpath = srealloc(destpath, destpath_size);
142  }
143  if (linksize == -1)
144  err(EXIT_FAILURE, "readlink(%s)", exepath);
145 
146  /* readlink() does not NULL-terminate strings, so we have to. */
147  destpath[linksize] = '\0';
148 
149  /* Check if "(deleted)" is the readlink result. If so, the running version
150  * does not match the file on disk. */
151  if (strstr(destpath, "(deleted)") != NULL)
152  printf("RUNNING BINARY DIFFERENT FROM BINARY ON DISK!\n");
153 
154  /* Since readlink() might put a "(deleted)" somewhere in the buffer and
155  * stripping that out seems hackish and ugly, we read the process’s argv[0]
156  * instead. */
157  free(exepath);
158  sasprintf(&exepath, "/proc/%s/cmdline", pid_from_atom);
159 
160  int fd;
161  if ((fd = open(exepath, O_RDONLY)) == -1)
162  err(EXIT_FAILURE, "open(%s)", exepath);
163  if (read(fd, destpath, sizeof(destpath)) == -1)
164  err(EXIT_FAILURE, "read(%s)", exepath);
165  close(fd);
166 
167  printf("The i3 binary you are running: %s\n", destpath);
168 
169  free(exepath);
170  free(destpath);
171 #endif
172 
173  yajl_free(handle);
174  free(reply);
175  free(pid_from_atom);
176 }
static cmdp_state state
static yajl_callbacks version_callbacks
static char * loaded_config_file_name
static int version_map_key(void *ctx, const unsigned char *stringval, size_t stringlen)
static int version_string(void *ctx, const unsigned char *val, size_t len)
static bool human_readable_key
static char * human_readable_version
static bool loaded_config_file_name_key
void display_running_version(void)
Connects to i3 to find out the currently running version.
int conn_screen
Definition: main.c:53
xcb_connection_t * conn
XCB connection and root screen.
Definition: main.c:51
static xcb_cursor_context_t * ctx
Definition: xcursor.c:19
void * smalloc(size_t size)
Safe-wrapper around malloc which exits if malloc returns NULL (meaning that there is no more memory a...
#define ELOG(fmt,...)
Definition: libi3.h:99
char * root_atom_contents(const char *atomname, xcb_connection_t *provided_conn, int screen)
Try to get the contents of the given atom (for example I3_SOCKET_PATH) from the X11 root window and r...
int ipc_recv_message(int sockfd, uint32_t *message_type, uint32_t *reply_length, uint8_t **reply)
Reads a message from the given socket file descriptor and stores its length (reply_length) as well as...
int sasprintf(char **strp, const char *fmt,...)
Safe-wrapper around asprintf which exits if it returns -1 (meaning that there is no more memory avail...
void * srealloc(void *ptr, size_t size)
Safe-wrapper around realloc which exits if realloc returns NULL (meaning that there is no more memory...
int ipc_connect(const char *socket_path)
Connects to the i3 IPC socket and returns the file descriptor for the socket.
int ipc_send_message(int sockfd, const uint32_t message_size, const uint32_t message_type, const uint8_t *payload)
Formats a message (payload) of the given size and type and sends it to i3 via the given socket file d...