[Bug 1198882] Re: __toString() which stores $this reference triggers segfault

2013-08-28 Thread Alexey Skryabin
** Description changed:

- DISTRIB_DESCRIPTION="Ubuntu 12.04.2 LTS"
- php --version
- PHP 5.3.10-1ubuntu3.6 with Suhosin-Patch 
+ Description:
+ Passing object with __toString() causes segfault in random script iteration. 
When casted to string beforehand, it runs OK.
  
+ Test case:
  Code as
  a = $this;
  return 'waa?';
  }
  }
  
  $a = new A;
  echo trim($a);
  echo trim($a->a);
  
  ?>
  crashes in CLI, and run as php mod in apache
+ 
+ Enviroment:
+ DISTRIB_DESCRIPTION="Ubuntu 12.04.2 LTS"
+ php --version
+ PHP 5.3.10-1ubuntu3.6 with Suhosin-Patch

** Changed in: php5 (Ubuntu)
   Status: Triaged => In Progress

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in Ubuntu.
https://bugs.launchpad.net/bugs/1198882

Title:
  __toString() which stores $this reference triggers segfault

To manage notifications about this bug go to:
https://bugs.launchpad.net/php/+bug/1198882/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1194940] Re: open-vm-dkms 2013.04.16-1098359-0ubuntu1: open-vm-tools kernel module failed to build [control.c:211:4: error: implicit declaration of function ‘create_proc_entry’]

2013-08-27 Thread Alexey Borzenkov
Only when I tried fixing it I realized how much stuff is failing:
dentry_operations.d_revalidate since 3.6, getname/putname since 3.7,
this would require more work than I anticipated... :(

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to open-vm-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1194940

Title:
  open-vm-dkms 2013.04.16-1098359-0ubuntu1: open-vm-tools kernel module
  failed to build [control.c:211:4: error: implicit declaration of
  function ‘create_proc_entry’]

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/open-vm-tools/+bug/1194940/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1194940] Re: open-vm-dkms 2013.04.16-1098359-0ubuntu1: open-vm-tools kernel module failed to build [control.c:211:4: error: implicit declaration of function ‘create_proc_entry’]

2013-08-27 Thread Alexey Borzenkov
For control.c it could be an easy fix, instead of create_proc_entry()
it's proc_create() now and there shouldn't be an assignment to proc_fops
(it's now a parameter to proc_create). An example of a compatibility
layer is here:

http://gerrit.openafs.org/#patch,sidebyside,9948,1,src/afs/LINUX/osi_compat.h

However, I just installed Saucy and it's Linux 3.11 now, with another
problem in vmhgfs/dir.c, because file_operations.readdir is now
file_operations.iterate with a serious change to the interface. :(

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to open-vm-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1194940

Title:
  open-vm-dkms 2013.04.16-1098359-0ubuntu1: open-vm-tools kernel module
  failed to build [control.c:211:4: error: implicit declaration of
  function ‘create_proc_entry’]

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/open-vm-tools/+bug/1194940/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1198882] Re: __toString() which stores $this reference triggers segfault

2013-08-14 Thread Alexey Skryabin
Bazaar merge directive file with patch, changelog and series

** Attachment added: "bug.bzr"
   
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/1198882/+attachment/3772517/+files/bug.bzr

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in Ubuntu.
https://bugs.launchpad.net/bugs/1198882

Title:
  __toString() which stores $this reference triggers segfault

To manage notifications about this bug go to:
https://bugs.launchpad.net/php/+bug/1198882/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1198882] Re: __toString() which stores $this reference triggers segfault

2013-08-14 Thread Alexey Skryabin
Archive with patch, series and changelog

** Attachment added: "bug.tgz"
   
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/1198882/+attachment/3772427/+files/bug.tgz

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in Ubuntu.
https://bugs.launchpad.net/bugs/1198882

Title:
  __toString() which stores $this reference triggers segfault

To manage notifications about this bug go to:
https://bugs.launchpad.net/php/+bug/1198882/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1198882] Re: __toString() which stores $this reference triggers segfault

2013-08-14 Thread Alexey Skryabin
This is tar.gz archive with new changelog, series and file with
patch(bug1198882.diff)

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in Ubuntu.
https://bugs.launchpad.net/bugs/1198882

Title:
  __toString() which stores $this reference triggers segfault

To manage notifications about this bug go to:
https://bugs.launchpad.net/php/+bug/1198882/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1198882] Re: __toString() which stores $this reference triggers segfault

2013-08-14 Thread Alexey Skryabin
libapache2-mod-php5 also does not contain the error in Saucy.
What should I do to help make a patch upstream in Precise? I have to make bzr 
send on some address or patch attached here enough?

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in Ubuntu.
https://bugs.launchpad.net/bugs/1198882

Title:
  __toString() which stores $this reference triggers segfault

To manage notifications about this bug go to:
https://bugs.launchpad.net/php/+bug/1198882/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1198882] Re: __toString() which stores $this reference triggers segfault

2013-08-02 Thread Alexey Skryabin
No, php-cli Saucy not contain this bug(libapache2-mod-php5 not tested yet)
patch rebuild with quilt, atach in message

** Patch added: "bug1198882.patch"
   
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/1198882/+attachment/3758041/+files/bug1198882.patch

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in Ubuntu.
https://bugs.launchpad.net/bugs/1198882

Title:
  __toString() which stores $this reference triggers segfault

To manage notifications about this bug go to:
https://bugs.launchpad.net/php/+bug/1198882/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1198882] Re: __toString() which stores $this reference triggers segfault

2013-08-02 Thread Alexey
I find fix bug on php git repo - 
http://git.php.net/?p=php-src.git;a=blob;f=Zend/zend_API.c;h=3b87145e6cd850b7c524ddac13ef19f6f43b4c62;hb=1ee93c83ff7278f09be64b496a208a1c453f8b7c
 and create patch file,but im not sure I designed the patch correctly. Test 
script work correct with this patch.
Patch file in atach.

** Patch added: "bug.patch"
   
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/1198882/+attachment/3757870/+files/bug.patch

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in Ubuntu.
https://bugs.launchpad.net/bugs/1198882

Title:
  __toString() which stores $this reference triggers segfault

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/1198882/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 977629] Re: smbd crashed with SIGABRT in rep_strlcpy()

2012-04-09 Thread Alexey
** Visibility changed to: Public

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in Ubuntu.
https://bugs.launchpad.net/bugs/977629

Title:
  smbd crashed with SIGABRT in rep_strlcpy()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/977629/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 717243] Re: vlan interface won't start with ifup, can be started manually

2011-04-28 Thread Alexey Toptygin
I have lost access to the hardware that this problem was happening on (I
no longer work at the company that owns the hardware), so I will not be
able to troubleshoot this further. You may want to close this bug as not
reproducible.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to vlan in Ubuntu.
https://bugs.launchpad.net/bugs/717243

Title:
  vlan interface won't start with ifup, can be started manually

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 668933] Re: autofs5 may fail if map contains utf8 characters

2011-04-22 Thread Alexey Loukianov
Well, generally speaking, yes, I can, but it would take a long time as
I'm not using Ubuntu and its derived distros like Linux Mint at home or
on any server I administer. Besides that I'm not sure that it should be
patched into distro package exactly as I had posted here as the solution
above was quick-n-dirty hack I had made in 5 minutes while being helping
one of my customers to resolve the problems they been having with
autofs5 + samba.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to autofs5 in Ubuntu.
https://bugs.launchpad.net/bugs/668933

Title:
  autofs5 may fail if map contains utf8 characters

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 717243] Re: vlan interface won't start with ifup, can be started manually

2011-03-21 Thread Alexey Toptygin
When I try your suggestion, I get:

$ sudo ifdown eth0.20
[sudo] password for alexeyt:
RTNETLINK answers: No such process
Internet Systems Consortium DHCP Client V3.1.3
Copyright 2004-2009 Internet Systems Consortium.
All rights reserved.
For info, please visit https://www.isc.org/software/dhcp/

Listening on LPF/eth0.20/00:1e:4f:b3:18:db
Sending on   LPF/eth0.20/00:1e:4f:b3:18:db
Sending on   Socket/fallback
DHCPRELEASE on eth0.20 to 10.10.20.1 port 67
send_packet: Network is unreachable
send_packet: please consult README file regarding broadcast address.
SIOCSIFFLAGS: Network is down
Removed VLAN -:eth0.20:-

$ sudo ifup eth0.20
Set name-type for VLAN subsystem. Should be visible in /proc/net/vlan/config
Added VLAN with VID == 20 to IF -:eth0:-
Internet Systems Consortium DHCP Client V3.1.3
Copyright 2004-2009 Internet Systems Consortium.
All rights reserved.
For info, please visit https://www.isc.org/software/dhcp/

SIOCSIFFLAGS: Network is down
SIOCSIFFLAGS: Network is down
Listening on LPF/eth0.20/00:1e:4f:b3:18:db
Sending on   LPF/eth0.20/00:1e:4f:b3:18:db
Sending on   Socket/fallback
DHCPDISCOVER on eth0.20 to 255.255.255.255 port 67 interval 3
send_packet: Network is down
receive_packet failed on eth0.20: Network is down
DHCPDISCOVER on eth0.20 to 255.255.255.255 port 67 interval 8
send_packet: Network is down
DHCPDISCOVER on eth0.20 to 255.255.255.255 port 67 interval 12
send_packet: Network is down
DHCPDISCOVER on eth0.20 to 255.255.255.255 port 67 interval 13
send_packet: Network is down
DHCPDISCOVER on eth0.20 to 255.255.255.255 port 67 interval 8
send_packet: Network is down
DHCPDISCOVER on eth0.20 to 255.255.255.255 port 67 interval 17
send_packet: Network is down
No DHCPOFFERS received.
No working leases in persistent database - sleeping.
RTNETLINK answers: Network is down
run-parts: /etc/network/if-up.d/avahi-autoipd exited with return code 2
ssh stop/waiting
ssh start/running, process 2076

I have 2 more data points: First, since I haven't removed any old
kernels since the problem began; I wanted to make sure that it's not a
kernel issue, so I rebooted with each of:

linux-image-2.6.35-23-generic
linux-image-2.6.35-24-generic
linux-image-2.6.35-25-generic
linux-image-2.6.35-27-generic
linux-image-2.6.35-28-generic

and I see the same symptoms under all of them.

Second, on one of the ~20 reboots since the problem started, the
interface came up OK and did not need to be started manually, so it
seems that the problem is intermittent.

Please let me know if I can do any more troubleshooting.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to vlan in ubuntu.
https://bugs.launchpad.net/bugs/717243

Title:
  vlan interface won't start with ifup, can be started manually

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 717243] Re: vlan interface won't start with ifup, can be started manually

2011-02-11 Thread Alexey Toptygin


-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to vlan in ubuntu.
https://bugs.launchpad.net/bugs/717243

Title:
  vlan interface won't start with ifup, can be started manually

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 717243] [NEW] vlan interface won't start with ifup, can be started manually

2011-02-11 Thread Alexey Toptygin
Public bug reported:

Binary package hint: vlan

After rebooting my system yesterday, my vlan interface did not come up.
I know that update-manager had been upgrading packages several times
since the last reboot before that, but I don't know which ones were
updated. I have this in /etc/network/interfaces:

auto lo
iface lo inet loopback

auto eth0.20
iface eth0.20 inet dhcp

this configuration had been working fine for several months before the
problem started. I see the following in syslog:

Feb 11 10:35:00 alexeyt dhclient: Internet Systems Consortium DHCP Client V3.1.3
Feb 11 10:35:00 alexeyt dhclient: Copyright 2004-2009 Internet Systems 
Consortium.
Feb 11 10:35:00 alexeyt dhclient: All rights reserved.
Feb 11 10:35:00 alexeyt dhclient: For info, please visit 
https://www.isc.org/software/dhcp/
Feb 11 10:35:00 alexeyt dhclient: 
Feb 11 10:35:00 alexeyt modem-manager: (net/eth0.20): could not get port's 
parent device
Feb 11 10:35:00 alexeyt NetworkManager[884]:  Unmanaged Device found; 
state CONNECTED forced. (see http://bugs.launchpad.net/bugs/191889)
Feb 11 10:35:00 alexeyt NetworkManager[884]:  Unmanaged Device found; 
state CONNECTED forced. (see http://bugs.launchpad.net/bugs/191889)
Feb 11 10:35:00 alexeyt NetworkManager[884]:  
/sys/devices/virtual/net/eth0.20: couldn't determine device driver; ignoring...
Feb 11 10:35:00 alexeyt dhclient: Listening on LPF/eth0.20/00:1e:4f:b3:18:db
Feb 11 10:35:00 alexeyt dhclient: Sending on   LPF/eth0.20/00:1e:4f:b3:18:db
Feb 11 10:35:00 alexeyt dhclient: Sending on   Socket/fallback
Feb 11 10:35:00 alexeyt dhclient: DHCPDISCOVER on eth0.20 to 255.255.255.255 
port 67 interval 3
Feb 11 10:35:00 alexeyt dhclient: send_packet: Network is down
Feb 11 10:35:00 alexeyt dhclient: receive_packet failed on eth0.20: Network is 
down
Feb 11 10:35:03 alexeyt dhclient: DHCPDISCOVER on eth0.20 to 255.255.255.255 
port 67 interval 4
Feb 11 10:35:03 alexeyt dhclient: send_packet: Network is down
Feb 11 10:35:07 alexeyt dhclient: DHCPDISCOVER on eth0.20 to 255.255.255.255 
port 67 interval 11
Feb 11 10:35:07 alexeyt dhclient: send_packet: Network is down
Feb 11 10:35:18 alexeyt dhclient: DHCPDISCOVER on eth0.20 to 255.255.255.255 
port 67 interval 18
Feb 11 10:35:18 alexeyt dhclient: send_packet: Network is down
Feb 11 10:35:36 alexeyt dhclient: DHCPDISCOVER on eth0.20 to 255.255.255.255 
port 67 interval 21
Feb 11 10:35:36 alexeyt dhclient: send_packet: Network is down
Feb 11 10:35:57 alexeyt dhclient: DHCPDISCOVER on eth0.20 to 255.255.255.255 
port 67 interval 4
Feb 11 10:35:57 alexeyt dhclient: send_packet: Network is down
Feb 11 10:36:01 alexeyt dhclient: No DHCPOFFERS received.
Feb 11 10:36:01 alexeyt dhclient: No working leases in persistent database - 
sleeping.

And indeed, if I do an 'ip link ls' in the time frame that dhclient3 is
trying to get a lease, I see that the interfaces are down:

$ ip link ls
1: lo:  mtu 16436 qdisc noqueue state UNKNOWN
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: eth0:  mtu 1500 qdisc pfifo_fast state DOWN qlen 1000
link/ether 00:1e:4f:b3:18:db brd ff:ff:ff:ff:ff:ff
3: eth0.20@eth0:  mtu 1500 qdisc noop state DOWN
link/ether 00:1e:4f:b3:18:db brd ff:ff:ff:ff:ff:ff

However, if I manually do:

sudo ifdown eth0.20
sudo ip link add link eth0 eth0.20 type vlan id 20
sudo ip link set eth0.20 up
sudo dhclient3 eth0.20

Then the interface comes up fine (I'm submitting this bug report through it :-)
Some package versions that might be interesting:

$ dpkg-query -l *linux-image* vlan ifupdown dhcp3-client |cat
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name Version
   Description
+++--=-==
ii  dhcp3-client 3.1.3-2ubuntu6 
   DHCP client
ii  ifupdown 0.6.10ubuntu3.1
   high level tools to configure network interfaces
un  linux-image   
   (no description available)
un  linux-image-2.6   
   (no description available)
ii  linux-image-2.6.35-22-generic2.6.35-22.35   
   Linux kernel image for version 2.6.35 on x86/x86_64
ii  linux-image-2.6.35-23-generic2.6.35-23.41
   Linux kernel image for version 2.6.35 on x86/x86_64
ii  linux-image-2.6.35-24-generic2.6.35-24.42   
   Linux kernel image for version 2.6.35 on x86/x86_64
ii  linux-image-2.6.35-25-generic2.6.35-25.44   
   Linux kernel image 

[Bug 668933] [NEW] autofs5 may fail if map contains utf8 characters

2010-10-30 Thread Alexey Loukianov
Public bug reported:

Binary package hint: autofs5

This bug is not in autofs itself, but instead is in smbclient.
Surely a separate bug report should be fired against smbclient but this bug may 
be relatively easy workarounded in autofs5 auto.smb/auto.cifs maps.

Problem with smbclient may be easily demonstrated by examining the
following output:

r...@linuxws03:/etc# LANG="en+US.UTF-8" smbclient -N -gL linuxws03
Domain=[WG] OS=[Unix] Server=[Samba 3.4.7]
Disk|print$|Printer Drivers
IPC|IPC$|IPC Service (linuxws03 server (Samba, Ubuntu))
Disk|документы|
Disk|documents|
Domain=[WG] OS=[Unix] Server=[Samba 3.4.7]
Server|WGOFFICE|Office Linux Server (Samba 3.0.9-1.3E.16)
Server|LINUXWS03|linuxws03 server (Samba, Ubuntu)
Workgroup|WG|WGOFFICE

r...@linuxws03:/etc# LANG="C" smbclient -N -gL linuxws03
Domain=[WG] OS=[Unix] Server=[Samba 3.4.7]
Disk|print$|Printer Drivers
IPC|IPC$|IPC Service (linuxws03 server (Samba, Ubuntu))
Disk|Disk|documents|
Domain=[WG] OS=[Unix] Server=[Samba 3.4.7]
Server|WGOFFICE|Office Linux Server (Samba 3.0.9-1.3E.16)
Server|LINUXWS03|linuxws03 server (Samba, Ubuntu)
Workgroup|WG|WGOFFICE

As you can see, the share named "документы" (this is russian word
meaning "documents") gets lost when smbclient is being executed with "C"
locale resulting in totally incorrect output "Disk|Disk|documents|" - in
fact this should be two lines, one for "Disk|документы|" somehow mangled
to be ASCII-friendly, and another one for "Disk|documents|". Yes, this
is a bug in smbclient that should be reported at a separate bug report.
To workaround this bug one may always use UFT-8 locale when running
smbclient and optionally converting the output using something like "
iconv -f utf8 -t ascii -c | grep -v 'Disk||' ".

My approach was for to modify auto.smb/auto.cifs by adding 'export
LANG="en_US.UTF-8"' to the top of the file in order to fetch correct
shares list. Then some modifications should be done to the awk script
parsing the output:

$SMBCLIENT $smbopts -gL $key 2>/dev/null| awk -v key="$key" -v 
opts="$mountopts" -F'|' -- '
BEGIN   { ORS=""; first=1; }
/Disk/  {
if (first) {
print opts
first=0
}
gsub(/ /, "\\ ", $2)
sub(/\$/, "\\$", $2)
print " \\\n\t \"/" $2 "\" \"://" key "/" $2 "\""
}
END {
if (!first)
print "\n"
else
exit 1
}
'

This would allow to mount shares with utf-8 names, including ones that
contain space characters in their names.

** Affects: autofs5 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: auto.cifs auto.smb autofs autofs5 smbclient utf8

-- 
autofs5 may fail if map contains utf8 characters
https://bugs.launchpad.net/bugs/668933
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to autofs5 in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 490484] Re: running 64bit client in 64bit host with intel crashes

2010-03-01 Thread Alexey Kotlyarov
I was able to install windows7 and just the reboot failed. It all works
in VirtualBox OSE though.

-- 
running 64bit client in 64bit host with intel crashes
https://bugs.launchpad.net/bugs/490484
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 500484] Re: libvirt conflicts with existing dnsmasq installation

2010-02-10 Thread Alexey Kotlyarov
Thank you for the explanation, I have indeed configured dnsmasq
incorrectly. My apologies.

** Changed in: libvirt (Ubuntu)
   Status: Incomplete => Invalid

-- 
libvirt conflicts with existing dnsmasq installation
https://bugs.launchpad.net/bugs/500484
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to libvirt in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 500484] Re: libvirt conflicts with existing dnsmasq installation

2010-02-09 Thread Alexey Kotlyarov
$ sudo netstat -apn | grep dnsmasq
tcp0  0 0.0.0.0:53  0.0.0.0:*   LISTEN  
6890/dnsmasq
tcp6   0  0 :::53   :::*LISTEN  
6890/dnsmasq
udp0  0 0.0.0.0:53  0.0.0.0:*   
6890/dnsmasq
udp6   0  0 :::53   :::*
6890/dnsmasq
unix  2  [ ] DGRAM199036890/dnsmasq

But that is the point: I need that port. Libvirt should not.

-- 
libvirt conflicts with existing dnsmasq installation
https://bugs.launchpad.net/bugs/500484
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to libvirt in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 54180] Re: [rfe] sshd ought to support 'none' cipher

2010-01-25 Thread Alexey Maximov
I want to see this in ubuntu 10.04, i need none cipher in my enterprise
env. please add "none" patch

-- 
[rfe] sshd ought to support 'none' cipher
https://bugs.launchpad.net/bugs/54180
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 262251] Re: phpize: configure:8184: error: possibly undefined macro: _LT_SET_OPTIONS

2010-01-11 Thread Shein Alexey
Got the same problem as Ryan Reynolds, trick from 
http://ubuntuforums.org/showthread.php?t=1377395 did its work :
run this one from php-gtk directory
$ cat /usr/share/aclocal/ltoptions.m4 /usr/share/aclocal/ltversion.m4 
/usr/share/aclocal/ltsugar.m4 /usr/share/aclocal/lt~obsolete.m4 >> aclocal.m4
after that run ./buildconf and etc.

-- 
phpize: configure:8184: error: possibly undefined macro: _LT_SET_OPTIONS
https://bugs.launchpad.net/bugs/262251
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 359177] Re: Strange or obsolete code in mysql initscript

2009-11-25 Thread Alexey Sveshnikov
Hi again.

The original point of this bug is that initscript have code for killing
MySQL but this code is disabled in rather strange way (by putting
log_end_msg 1, see the first post). I think this code should be disabled
in more obvioius way or removed at all.

-- 
Strange or obsolete code in mysql initscript
https://bugs.launchpad.net/bugs/359177
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 359177] Re: Strange or obsolete code in mysql initscript

2009-11-16 Thread Alexey Sveshnikov
Hi, David.

I think it's a bad idea to kill MySQL with -9 signal.
It's o.k. for MySQL instances with big key_buffer_size to stop within several 
minutes.
IMHO, it's better just to print that MySQL can't be stopped ant let user to 
decide what to do with it.

-- 
Strange or obsolete code in mysql initscript
https://bugs.launchpad.net/bugs/359177
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 359177] [NEW] Strange or obsolete code in mysql initscript

2009-04-10 Thread Alexey Sveshnikov
Public bug reported:

Hi.

There is several snippets in mysql init script, with 'log_end_msg 1',
call and some code after it.

'log_end_msg' returns it's argument as exit status. So 'log_end_msg 1'
will be intrepreted by bash as command that always fails. Option '-e' in
bash causes script to bail out in case of any error.

So in this fragment:


'stop')
  .
  log_daemon_msg "Stopping MySQL database server" "mysqld"
  if ! mysqld_status check_dead nowarn; then
set +e
shutdown_out=`$MYADMIN shutdown 2>&1`; r=$?
set -e
if [ "$r" -ne 0 ]; then
  log_end_msg 1

All futher code will never being executed:

  [ "$VERBOSE" != "no" ] && log_failure_msg "Error: $shutdown_out"  

  log_daemon_msg "Killing MySQL database server by signal" "mysqld"
  killall -15 mysqld
  ...

Moreover, 'VERBOSE' variable is undefined.

So, I think this code is a little strange one. By the way, I also think
that killing all mysqld processes is not very good idea too (MySQL
Enterprise Monitor, for example, runs it's own mysqld instance that
shouldn't be killed by this init script)

I can send a patch for it if it will be helpful.

** Affects: mysql-dfsg-5.0 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: init.d initscript log-end-msg mysqld

-- 
Strange or obsolete code in mysql initscript
https://bugs.launchpad.net/bugs/359177
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 286828] Re: CIFS share broken after upgrade from 8.04 -> 8.10

2008-11-18 Thread Alexey Mentat
Thanx a lot, Steve !

Upgrading Samba server upto 3.0.32 have solved the problem

But i think small "errata" notification should be written on this
trouble for future users.

-- 
CIFS share broken after upgrade from 8.04 -> 8.10
https://bugs.launchpad.net/bugs/286828
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 286828] Re: CIFS share broken after upgrade from 8.04 -> 8.10

2008-11-14 Thread Alexey Mentat
Yet another dump:

Display Internal CIFS Data Structures for Debugging
---
CIFS Version 1.54
Active VFS Requests: 0
Servers:
1) Name: x.x.x.x  Domain: ADMINO Mounts: 1 OS: Unix  
NOS: Samba 3.0.25a  Capability: 0x80f3fd
SMB session status: 1   TCP status: 1
Local Users To Server: 1 SecMode: 0x3 Req On Wire: 0
MIDs:

2) Name: y.y.y.y  Domain: ADMINO Mounts: 1 OS: Unix  
NOS: Samba 3.0.25a  Capability: 0x80f3fd
SMB session status: 1   TCP status: 1
Local Users To Server: 1 SecMode: 0x3 Req On Wire: 0
MIDs:

3) Name: z.z.z.z  Domain: ADMINO Mounts: 1 OS: Unix  
NOS: Samba 3.0.23d  Capability: 0x80f3fd
SMB session status: 1   TCP status: 1
Local Users To Server: 1 SecMode: 0x3 Req On Wire: 0
MIDs:

Shares:
1) \\x.x.x.x\share1 Uses: 1 Type: NTFS DevInfo: 0x0 Attributes: 0xb
PathComponentMax: 255 Status: 1 type: 0 
2) \\y.y.y.y\share2 Uses: 1 Type: NTFS DevInfo: 0x0 Attributes: 0xb
PathComponentMax: 255 Status: 1 type: 0 
3) \\z.z.z.z\share3 Uses: 1 Type: NTFS DevInfo: 0x0 Attributes: 0xb
PathComponentMax: 255 Status: 1 type: 0

-- 
CIFS share broken after upgrade from 8.04 -> 8.10
https://bugs.launchpad.net/bugs/286828
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 286828] Re: CIFS share broken after upgrade from 8.04 -> 8.10

2008-11-05 Thread Alexey Mentat
** Changed in: samba (Ubuntu)
   Status: New => Confirmed

-- 
CIFS share broken after upgrade from 8.04 -> 8.10
https://bugs.launchpad.net/bugs/286828
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 286828] Re: CIFS share broken after upgrade from 8.04 -> 8.10

2008-11-05 Thread Alexey Mentat
To clearify the problem:

After upgrading 8.04 --> 8.10, file writes via CIFS have been broken.
CIFS normally reads or creates files, but it fails to write into existing file.

To reproduce the problem: Try open in "midnight commander" or in
"leafpad" any file  via mounted cifs, make tiny changes and try to save.
You'll got the write error !

(sorry for double post)

-- 
CIFS share broken after upgrade from 8.04 -> 8.10
https://bugs.launchpad.net/bugs/286828
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 286828] Re: CIFS share broken after upgrade from 8.04 -> 8.10

2008-11-05 Thread Alexey Mentat
Here is an wireshark'd example of failed CIFS write

** Attachment added: "CIFS failed session"
   http://launchpadlibrarian.net/19375667/cifs%20fail%20sample

-- 
CIFS share broken after upgrade from 8.04 -> 8.10
https://bugs.launchpad.net/bugs/286828
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 286828] Re: CIFS share broken after upgrade from 8.04 -> 8.10

2008-10-31 Thread Alexey Mentat
I submit this problem - after upgrading 8.04->8.10, cifs mounted by
fstab fails to write.

//10.1.1.1/sm/mnt/share  cifs
defaults,iocharset=utf8,codepage=cp866,rw,username=user,password=password,uid=user1
0 0

I have tried "sudo echo 0 > /proc/fs/cifs/LinuxExtensionsEnabled"  with
no success.

-- 
CIFS share broken after upgrade from 8.04 -> 8.10
https://bugs.launchpad.net/bugs/286828
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs