aboutsummaryrefslogtreecommitdiffstats
path: root/ansible/roles/gsm-tester/tasks/main.yml
blob: a1fb6cd8db71e60bff44a05eb259a815c32b26cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
---
# gsm tester would only need the libraries, not the dev packages.
# But the name of the -dev packages are more stable over multiple release.

- name: update apt
  apt:
    cache_valid_time: 3600
    update_cache: yes

- name: install osmocom runtime dependencies
  apt:
    name:
      - build-essential
      - git
      - automake
      - libdbi-dev
      - libdbd-sqlite3
      - sqlite3
      - libsctp-dev
      - libortp-dev
      - libpcap-dev
      - libc-ares-dev
      - libtool
      - shtool
      - pkg-config
      - libtalloc-dev
      - libpcsclite-dev
      - libgnutls28-dev
      - libmnl-dev
      - libssl-dev
      - libczmq-dev
      - libsofia-sip-ua-glib-dev
      - libsqlite3-dev
      - libasound2-dev
      - liblua5.3-dev
      - lua-socket
  tags:
    - osmocom

# mdbus2 is not available in debian10. TODO: compile it for >9
- name: install mdbus2
  apt:
    name:
      - mdbus2
  when: ansible_distribution == 'Debian' and ansible_distribution_version <= '9'
  tags:
    - ofono
    - modem

- name: install srsLTE build-only dependencies
  apt:
    name:
      - cmake
      - libfftw3-dev
      - libmbedtls-dev
      - libboost-program-options-dev
      - libconfig++-dev
      - libsctp-dev
      - libpcsclite-dev
      - libuhd-dev
      - libczmq-dev
      - libsoapysdr-dev
  tags:
    - srs

- name: install srsLTE runtime extra dependencies (Debian)
  apt:
    name:
      - soapysdr-module-lms7
  when: ansible_distribution == 'Debian'
  tags:
    - srs

- name: install srsLTE runtime extra dependencies (Ubuntu)
  apt:
    name:
      - soapysdr0.6-module-lms7
  when: ansible_distribution == 'Ubuntu'
  tags:
    - srs

- name: install ofono build dependencies
  apt:
    name: ofono
    state: build-dep
  tags:
    - ofono
    - modem

- name: install libqmi-glib a dependency of sysmocom ofono
  apt:
    name: libqmi-glib-dev
  tags:
    - ofono
    - modem

- name: install uhub dependencies
  apt:
    name:
      - libusb-1.0-0-dev
  tags:
    - modem

- name: setup uhubctl repository
  git:
    repo: "https://github.com/mvp/uhubctl.git"
    dest: /root/uhubctl
    version: master
    clone: yes
    update: no
  tags:
    - modem

- name: build uhubctl
  shell: |
      make && \
      make install
  args:
    chdir: /root/uhubctl
    creates: /usr/sbin/uhubctl
  tags:
    - modem

# TODO: move this into restart-modems.d directory
- name: copy quad_modem_power_cycle.sh
  template:
    src: quad_modem_power_cycle.sh
    dest: /usr/local/bin/quad_modem_power_cycle.sh
    mode: 0755
  tags:
    - modem

- name: setup ofono repository
  git:
    repo: 'https://gitea.sysmocom.de/sysmocom/ofono'
    dest: /root/ofono
    version: osmo-gsm-tester
    clone: yes
    update: no
  tags:
    - ofono
    - modem

- name: build ofono
  shell: |
      ./bootstrap && \
      CFLAGS="-g" ./configure --disable-bluez4 && \
      CFLAGS="-g" make -j3 && \
      make install && \
      systemctl daemon-reload
  args:
    chdir: /root/ofono
    creates: /usr/local/sbin/ofonod
  tags:
    - ofono
    - modem

- name: ensure ofono is started
  service:
    name: ofono
    state: started
    enabled: yes
  tags:
    - ofono
    - modem

- name: install patchelf build dependencies
  apt:
    name:
      - autoconf
  tags:
    - patchelf
    - osmo-gsm-tester-proc

# patchelf 0.9 available in debian has bugs with certain binaries. Version 0.10
# fails on other binaries, so we need version 0.11 installed in /usr/local/bin
# (takes preference in PATH)
- name: setup patchelf v0.11 repository
  git:
    repo: 'https://github.com/NixOS/patchelf.git'
    dest: /root/patchelf
    version: "0.11"
    clone: yes
    update: no
  tags:
    - patchelf
    - osmo-gsm-tester-proc

- name: build patchelf v0.11
  shell: |
      autoreconf -fi && \
      ./configure --prefix=/usr/local && \
      make && \
      make install
  args:
    chdir: /root/patchelf
    creates: /usr/local/bin/patchelf
  tags:
    - patchelf
    - osmo-gsm-tester-proc

- name: install gsm tester dependencies (main)
  apt:
    name:
      - sqlite3
      - python3
      - python3-setuptools
      - python3-yaml
      - python3-mako
      - python3-gi
      - python3-watchdog
      - python3-numpy
      - python3-websocket
      - ofono
      - patchelf
      - libcap2-bin
      - python3-pip
      - udhcpc
  tags:
    - osmo-gsm-tester-main

- name: install gsm tester dependencies (proc)
  apt:
    name:
      - tcpdump
      - patchelf
      - libcap2-bin
      - iperf3
      - sudo
  tags:
    - osmo-gsm-tester-proc

- name: install gsm tester pip dependencies
  pip:
    name: "{{ item }}"
    executable: pip3
    editable: no
  with_items:
    - "git+https://github.com/podshumok/python-smpplib.git@master#egg=smpplib"
    - pydbus
    - pyusb
    - pysispm
  tags:
    - pip
    - osmo-gsm-tester-main

- name: create group osmo-gsm-tester
  group:
    name: osmo-gsm-tester
  tags:
    - osmo-gsm-tester-main
    - osmo-gsm-tester-proc

- name: Add jenkins user to osmo-gsm-tester group
  user:
    name: "{{ jenkins_user }}"
    groups: "{{ item }}"
    append: yes
    shell: /bin/bash
  with_items:
    - osmo-gsm-tester
  tags:
    - osmo-gsm-tester-main
    - osmo-gsm-tester-proc

- name: add jenkins user to systemd-journal and dialout groups
  user:
    name: "{{ jenkins_user }}"
    groups: "{{ item }}"
    append: yes
    shell: /bin/bash
  with_items:
    - systemd-journal
    - dialout
  tags:
    - osmo-gsm-tester-main

- name: setup state directory
  file:
    path: /var/tmp/osmo-gsm-tester/state
    state: directory
    group: osmo-gsm-tester
    mode: g+rwxs
  tags:
    - osmo-gsm-tester-main

- name: install acl
  apt:
    name: acl
  tags:
    - osmo-gsm-tester-main

# Ensure the group always has access to all files
- name: add acl to state directory
  acl:
    path: /var/tmp/osmo-gsm-tester/state
    state: present
    etype: group
    entity: osmo-gsm-tester
    default: yes
    permissions: rwx
  tags:
    - osmo-gsm-tester-main

- name: create trials directory
  file:
    path: /var/tmp/osmo-gsm-tester/trials
    state: directory
    group: osmo-gsm-tester
    mode: g+rwxs
  tags:
    - osmo-gsm-tester-main

- name: ensure tcpdump can be called by osmo-gsm-tester
  file:
    path: /usr/sbin/tcpdump
    group: osmo-gsm-tester
    mode: 0750
  tags:
    - osmo-gsm-tester-proc
    - tcpdump

- name: create a symlink for tcpdump
  file:
    src: /usr/sbin/tcpdump
    dest: /usr/local/bin/tcpdump
    state: link
  tags:
    - osmo-gsm-tester-proc
    - tcpdump

- name: add correct capabilities to tcpdump
  capabilities:
    path: /usr/sbin/tcpdump
    capability: cap_net_raw,cap_net_admin=eip
    state: present
  tags:
    - osmo-gsm-tester-proc
    - tcpdump

- name: allow core files for the group osmo-gsm-tester
  copy:
    content: "@osmo-gsm-tester - core unlimited"
    dest: /etc/security/limits.d/osmo-gsm-tester_allowcore.conf
  tags:
    - osmo-gsm-tester-proc

- name: allow rt priority for the group osmo-gsm-tester
  copy:
    content: "@osmo-gsm-tester - rtprio 99"
    dest: /etc/security/limits.d/osmo-gsm-tester_rtprio.conf
  tags:
    - osmo-gsm-tester-proc

- name: setup osmo-gsm-tester repository
  git:
    repo: 'https://gitea.osmocom.org/cellular-infrastructure/osmo-gsm-tester'
    dest: /root/osmo-gsm-tester
    version: master
    clone: yes
    update: no
  tags:
    - osmo-gsm-tester-proc

- name: Install osmo-gsm-tester script helpers to /usr/local/bin (PATH) (mkdir)
  file: path=/usr/local/bin state=directory

- name: Install osmo-gsm-tester script helpers to /usr/local/bin (PATH)
  shell: |
      cp utils/bin/*.sh /usr/local/bin/
  args:
    chdir: /root/osmo-gsm-tester
  tags:
    - osmo-gsm-tester-proc

- name: Install osmo-gsm-tester sudoers.d files to /etc/sudoers.d/ (PATH (mkdir)
  file: path=/etc/sudoers.d/ state=directory

- name: Install osmo-gsm-tester sudoers.d files to /etc/sudoers.d/ (PATH)
  shell: |
      cp utils/sudoers.d/* /etc/sudoers.d/
  args:
    chdir: /root/osmo-gsm-tester
  tags:
    - osmo-gsm-tester-proc

- name: Install dbus policy file to allow osmo-gsm-tester group to access ofono
  shell: |
      cp utils/dbus-1/* /etc/dbus-1/system.d/
  args:
    chdir: /root/osmo-gsm-tester
  tags:
    - ofono
    - modem

- name: logrotate limit filesizes to 10M
  copy:
    content: "maxsize 10M"
    dest: /etc/logrotate.d/maxsize
  tags:
    - osmo-gsm-tester-main

- name: install sispmctl (usb power socket)
  apt:
    name: sispmctl
  tags:
    - sispm

- name: allow group osmo-gsm-tester to access sispm devices
  copy:
    src: 60-sispmctl.rules
    dest: /etc/udev/rules.d/
  notify: restart udev
  tags:
    - sispm

- name: allow group osmo-gsm-tester to access LMS devices
  copy:
    src: 64-limesuite.rules
    dest: /etc/udev/rules.d/
  notify: restart udev
  tags:
    - lms

- name: use persistent naming for modem network interfaces
  copy:
    src: 70-net-setup-link-modems.rules
    dest: /etc/udev/rules.d/
  notify: restart udev
  tags:
    - modem

- name: create remote rundir directories
  file:
    path: "/osmo-gsm-tester-{{ item }}"
    state: directory
    group: osmo-gsm-tester
    mode: g+rwxs
  with_items:
    - srsenb
    - srsepc
    - srsue
    - trx
    - amarisoftenb
    - amarisoftepc
    - amarisoftue
  tags:
    - osmo-gsm-tester-proc
    - osmocom
    - srs

- name: avoid dhcpcd managing modem interfaces and racing with udev rename
  lineinfile:
    path: /etc/dhcpcd.conf
    regexp: '^denyinterfaces'
    line: 'denyinterfaces ww* r*'
  tags:
  tags:
    - osmo-gsm-tester-main
    - dhcpcd