UnicodeEncodeError when creating user with non-ascii chars
| Affects | Status | Importance | Assigned to | Milestone | |
|---|---|---|---|---|---|
| cloud-init |
Fix Released
|
Medium
|
Unassigned | ||
| cloud-init (Ubuntu) |
Fix Released
|
Undecided
|
Unassigned | ||
| livecd-rootfs (Ubuntu) |
Fix Released
|
Undecided
|
Michael Hudson-Doyle | ||
Bug Description
I was testing subiquity, and at the user creation prompt typed in "André D'Silva" for the username, and just "andre" for the login.
The installer finished fine, but upon first login I couldn't login. Booting into rescue mode showed me that the user had not been created.
Checking cloud-init logs, I find the UnicodeEncodeError.
2018年02月22日 12:44:01,386 - __init__.py[DEBUG]: Adding user andre
2018年02月22日 12:44:01,387 - util.py[WARNING]: Failed to create user andre
2018年02月22日 12:44:01,387 - util.py[DEBUG]: Failed to create user andre
Traceback (most recent call last):
File "/usr/lib/
util.
File "/usr/lib/
env=env, shell=shell)
File "/usr/lib/
restore_
File "/usr/lib/
restore_
UnicodeEncodeError: 'ascii' codec can't encode character '\xe9' in position 4: ordinal not in range(128)
user-data contains this:
#cloud-config
hostname: sbqt
users:
- gecos: "Andr\xE9 D'Silva"
groups: [adm, cdrom, dip, lpadmin, plugdev, sambashare, debian-tor, libvirtd, lxd,
sudo]
lock-passwd: false
name: andre
passwd: 6ドル$UaxxahbQam4K
shell: /bin/bash
ssh_import_id: ['lp:ahasenack']
cloud-init is 17.2-34-
Related branches
- Steve Langasek (community): Approve
-
Diff: 35 lines (+17/-0) 2 files modifiedapidebian/changelog (+7/-0)
live-build/auto/build (+10/-0)
- Server Team CI bot: Approve (continuous-integration)
- Scott Moser: Pending requested
-
Diff: 371 lines (+141/-27) 10 files modifiedapicloudinit/config/cc_puppet.py (+40/-14)
cloudinit/config/cc_salt_minion.py (+9/-0)
cloudinit/sources/DataSourceGCE.py (+7/-8)
cloudinit/util.py (+7/-2)
debian/changelog (+13/-0)
doc/examples/cloud-config-chef.txt (+2/-2)
tests/cloud_tests/testcases/modules/salt_minion.py (+5/-0)
tests/cloud_tests/testcases/modules/salt_minion.yaml (+5/-0)
tests/unittests/test_datasource/test_gce.py (+19/-1)
tests/unittests/test_util.py (+34/-0)
- Server Team CI bot: Approve (continuous-integration)
- Ryan Harper: Approve
-
Diff: 72 lines (+40/-1) 2 files modifiedapicloudinit/util.py (+6/-1)
tests/unittests/test_util.py (+34/-0)
I think the issue is:
a.) there is no default locale set in the subiquity installed system.
b.) python3 subprocess is doing a 'decode' for each argument in the
command list.
python2 default encoding *is* supposed to be based on the environment [1],
but python3 default encoding is not. python3 is supposed to be utf-8.
In the trace above we are down in C code where it is clearly doing 'ascii'
encoding.
[1] https:/
[2] https:/
You can see the problem generally below. I only use 'json' as a convienent
way to pass in utf-8 characters. You can see that either unset LANG
or LANG=C causes the issue.
I guess I never thought that subprocess would be converting an argument
list of strings to bytes. That does make some sense.
So I think there are actually two changes:
a.) subiquity (via either curtin or cloud-init) should be setting a utf-8
default locale (all ubuntu generally do that). I'm not sure why the image
being installed didnt have one set.
b.) cloud-init's subp should probably just do the conversion to bytes
of whatever it gets as an argument list for the command, and always assume
that strings are to be encoded as utf-8.
$ cat go.py
#!/usr/bin/python3
import json, subprocess, sys
cmd = json.loads(
print("cmd=%s" % [x.encode("utf-8") for x in cmd])
subprocess.
# my default lang is en_US.utf-8
$ ./go.py '["echo", "Andr\u00e9 DSilva"]'
cmd=[b'echo', b'Andr\xc3\xa9 DSilva']
André DSilva
$ LANG=en_US.utf-8 ./go.py '["echo", "Andr\u00e9 DSilva"]'
cmd=[b'echo', b'Andr\xc3\xa9 DSilva']
André DSilva
$ env -u LANG ./go.py '["echo", "Andr\u00e9 DSilva"]'
cmd=[b'echo', b'Andr\xc3\xa9 DSilva']
Traceback (most recent call last):
File "./go.py", line 5, in <module>
subprocess.
File "/usr/lib/
retcode = call(*popenargs, **kwargs)
File "/usr/lib/
with Popen(*popenargs, **kwargs) as p:
File "/usr/lib/
restore_
File "/usr/lib/
restore_
UnicodeEncodeError: 'ascii' codec can't encode character '\xe9' in position 4: ordinal not in range(128)
$ LANG=C ./go.py '["echo", "Andr\u00e9 DSilva"]'
cmd=[b'echo', b'Andr\xc3\xa9 DSilva']
Traceback (most recent call last):
File "./go.py", line 5, in <module>
subprocess.
File "/usr/lib/
retcode = call(*popenargs, **kwargs)
File "/usr/lib/
with Popen(*popenargs, **kwargs) as p:
File "/usr/lib/
restore_
File "/usr/lib/
restore_
UnicodeEncodeError: 'ascii' codec can't encode character '\xe9' in position 4: ordinal not in range(128)
This bug was fixed in the package cloud-init - 18.1-5-
---------------
cloud-init (18.1-5-
* New upstream snapshot.
- GCE: fix reading of user-data that is not base64 encoded. (LP: #1752711)
- doc: fix chef install from apt packages example in RTD.
- Implement puppet 4 support [Romanos Skiadas] (LP: #1446804)
- subp: Fix subp usage with non-ascii characters when no system locale.
(LP: #1751051)
- salt: configure grains in grains file rather than in minion config.
[Daniel Wallace]
-- Chad Smith <email address hidden> 2018年3月01日 15:47:04 -0700
We need to make sure that the default locale when booting a subiquity image is C.UTF-8, not C. This probably needs fixing in livecd-rootfs and I don't think there are any code changes for subiquity.
This bug is believed to be fixed in cloud-init in 18.2. If this is still a problem for you, please make a comment and set the state back to New
Thank you.
Tracked in Github Issues as https:/